vin_query 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/.gitignore ADDED
@@ -0,0 +1,6 @@
1
+ .DS_Store
2
+ pkg/*
3
+ rdoc/*
4
+ *.gem
5
+ .bundle
6
+ Gemfile.lock
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color --format documentation
data/.travis.yml ADDED
@@ -0,0 +1,10 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 1.9.2
5
+ - jruby-18mode
6
+ - jruby-19mode
7
+ - rbx-18mode
8
+ - rbx-19mode
9
+ - 1.8.7
10
+ - ree
data/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
1
+ ## v 1.0.0 (2013-02-05)
2
+
3
+ - Initial public release
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
4
+
5
+ gem 'rake'
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Jonathan Underwood
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,56 @@
1
+ # VinQuery
2
+
3
+ [![Build Status](https://travis-ci.org/jyunderwood/vin_query.png?branch=master)](https://travis-ci.org/jyunderwood/vin_query)
4
+
5
+ A ruby library for fetching and parsing VIN information from vinquery.com, a vehicle identification number decoding service.
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'vin_query'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ gem install vin_query
22
+
23
+ ## Usage
24
+
25
+ Pass in the URL and access code provided by vinquery.com as well as the report type you want (defaults to report type '2' -- the extended report type).
26
+
27
+ Note, A VinQuery::Query class has an array of trim levels. This is due to the VinQuery service returning a array of possible trim levels for certain makes/models.
28
+
29
+ ```ruby
30
+ query = VinQuery.get('1C3CC4FB8AN236750', {
31
+ :url => 'vinquery-url-here',
32
+ :access_code => 'access-code-here',
33
+ :report_type => 'report-type-here' })
34
+
35
+ query.valid? # => true
36
+
37
+ # Note, trim_levels will always be an array. Empty, or otherwise.
38
+ vehicle = query.trim_levels.first
39
+
40
+ vehicle.attributes[:make] # => Chrysler
41
+ vehicle.attributes[:model] # => Sebring
42
+ vehicle.attributes[:trim_level] # => Sedan Touring
43
+ vehicle.attributes[:fuel_economy_city] # => 21
44
+ ```
45
+
46
+ ## Contributing
47
+
48
+ 1. Fork it
49
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
50
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
51
+ 4. Push to the branch (`git push origin my-new-feature`)
52
+ 5. Create new Pull Request
53
+
54
+ ## License
55
+
56
+ Licensed under the MIT License.
data/Rakefile ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env rake
2
+ require 'bundler/gem_tasks'
3
+ require 'rspec/core/rake_task'
4
+
5
+ RSpec::Core::RakeTask.new(:spec)
6
+
7
+ task :default => :spec
data/lib/vin_query.rb ADDED
@@ -0,0 +1,14 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require 'vin_query/version'
3
+
4
+ require 'vin_query/exceptions'
5
+ require 'vin_query/trim_level'
6
+ require 'vin_query/query'
7
+
8
+ module VinQuery
9
+ extend self
10
+
11
+ def get(vin, options={})
12
+ VinQuery::Query.new(vin, options).get
13
+ end
14
+ end
@@ -0,0 +1,12 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ module VinQuery
4
+ class Error < StandardError
5
+ end
6
+
7
+ class ParseError < Error
8
+ end
9
+
10
+ class ValidationError < Error
11
+ end
12
+ end
@@ -0,0 +1,83 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require 'net/http'
3
+ require 'nokogiri'
4
+
5
+ module VinQuery
6
+ class Query
7
+ attr_reader :url, :trim_levels
8
+
9
+ def initialize(vin, options={})
10
+ url = options[:url]
11
+ access_code = options[:access_code]
12
+ report_type = 2 || options[:report_type]
13
+
14
+ @trim_levels = []
15
+ @url = "#{url}?accessCode=#{access_code}&vin=#{vin}&reportType=#{report_type}"
16
+ end
17
+
18
+ def valid?
19
+ @valid
20
+ end
21
+
22
+ def validate(xml)
23
+ doc = Nokogiri::XML xml
24
+
25
+ if doc.xpath('//VINquery/VIN').size == 0
26
+ raise ValidationError
27
+ end
28
+
29
+ vin = doc.xpath('//VINquery/VIN').first
30
+
31
+ if vin.attributes['Status'].to_s == 'SUCCESS'
32
+ @valid = true
33
+ else
34
+ @valid = false
35
+ end
36
+ end
37
+
38
+ def parse(xml)
39
+ doc = Nokogiri::XML xml
40
+ vin = doc.xpath('//VINquery/VIN').first
41
+
42
+ if doc.xpath('//VINquery/VIN/Vehicle').size == 0
43
+ raise ParseError
44
+ end
45
+
46
+ doc.xpath('//VINquery/VIN/Vehicle').each do |v|
47
+ vehicle = {}
48
+
49
+ v.xpath('Item').each do |a|
50
+ key = a.attributes['Key'].to_s.
51
+ downcase.
52
+ gsub('/', '_').
53
+ gsub(' ', '_').
54
+ gsub('-', '_').
55
+ gsub('.', '').
56
+ to_sym
57
+
58
+ if a.attributes['Unit'].to_s.length == 0
59
+ vehicle[key] = a.attributes['Value'].to_s
60
+ else
61
+ vehicle[key] = "#{a.attributes['Value'].to_s} #{a.attributes['Unit'].to_s}"
62
+ end
63
+ end
64
+
65
+ @trim_levels.push(VinQuery::TrimLevel.new(vin.attributes['Number'].to_s, vehicle))
66
+ end
67
+ end
68
+
69
+ def get
70
+ xml = fetch @url
71
+
72
+ if validate xml
73
+ parse xml
74
+ end
75
+ end
76
+
77
+ private
78
+
79
+ def fetch(url)
80
+ Net::HTTP.get(URI.parse(url))
81
+ end
82
+ end
83
+ end
@@ -0,0 +1,17 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ module VinQuery
4
+ class TrimLevel
5
+ attr_reader :attributes, :trim_level, :vin
6
+
7
+ def initialize(vin, attributes)
8
+ @vin = vin
9
+ @attributes = attributes
10
+ @trim_level = attributes[:trim_level]
11
+ end
12
+
13
+ def to_s
14
+ "#{@vin} - #{@trim_level}"
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,5 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ module VinQuery
4
+ VERSION = '1.0.0'
5
+ end
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="yes"?>
2
+ <VINquery version="1.0.0" report_type="EXTENDED" Date="5/28/2006">
3
+ <VIN Number="3N1AB6AP3BL654433" Status="FAILED">
4
+ <Message Key="3" Value="Invalid VIN number: This VIN number did not pass checksum test."/>
5
+ </VIN>
6
+ </VINquery>
@@ -0,0 +1,685 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="yes"?>
2
+ <VINquery Version="1.0.0" Report_Type="EXTENDED" Date="10/22/2012">
3
+ <VIN Number="3N1AB6AP3BL654433" Status="SUCCESS">
4
+ <Vehicle VINquery_Vehicle_ID="41689" Model_Year="2011" Make="Nissan" Model="Sentra" Trim_Level="2.0">
5
+ <Item Key="VINquery_Vehicle_ID" Value="41689" Unit="" />
6
+ <Item Key="Model Year" Value="2011" Unit="" />
7
+ <Item Key="Make" Value="Nissan" Unit="" />
8
+ <Item Key="Model" Value="Sentra" Unit="" />
9
+ <Item Key="Trim Level" Value="2.0" Unit="" />
10
+ <Item Key="Manufactured in" Value="MEXICO" Unit="" />
11
+ <Item Key="Production Seq. Number" Value="654433" Unit="" />
12
+ <Item Key="Body Style" Value="SEDAN 4-DR" Unit="" />
13
+ <Item Key="Engine Type" Value="2.0L L4 DOHC 16V" Unit="" />
14
+ <Item Key="Transmission-short" Value="CVT" Unit="" />
15
+ <Item Key="Transmission-long" Value="Continuously Variable Transmission" Unit="" />
16
+ <Item Key="Driveline" Value="FWD" Unit="" />
17
+ <Item Key="Tank" Value="14.50" Unit="gallon" />
18
+ <Item Key="Fuel Economy-city" Value="24 - 27" Unit="miles/gallon" />
19
+ <Item Key="Fuel Economy-highway" Value="31 - 34" Unit="miles/gallon" />
20
+ <Item Key="Anti-Brake System" Value="Non-ABS | 4-Wheel ABS" Unit="" />
21
+ <Item Key="Steering Type" Value="R&amp;P" Unit="" />
22
+ <Item Key="Front Brake Type" Value="Disc" Unit="" />
23
+ <Item Key="Rear Brake Type" Value="Drum" Unit="" />
24
+ <Item Key="Turning Diameter" Value="35.40" Unit="in." />
25
+ <Item Key="Front Suspension" Value="Ind" Unit="" />
26
+ <Item Key="Rear Suspension" Value="Semi" Unit="" />
27
+ <Item Key="Front Spring Type" Value="Coil" Unit="" />
28
+ <Item Key="Rear Spring Type" Value="Coil" Unit="" />
29
+ <Item Key="Tires" Value="205/60R15" Unit="" />
30
+ <Item Key="Front Headroom" Value="40.60" Unit="in." />
31
+ <Item Key="Rear Headroom" Value="37.30" Unit="in." />
32
+ <Item Key="Front Legroom" Value="42.40" Unit="in." />
33
+ <Item Key="Rear Legroom" Value="34.50" Unit="in." />
34
+ <Item Key="Front Shoulder Room" Value="56.90" Unit="in." />
35
+ <Item Key="Rear Shoulder Room" Value="55.10" Unit="in." />
36
+ <Item Key="Front Hip Room" Value="54.10" Unit="in." />
37
+ <Item Key="Rear Hip Room" Value="53.00" Unit="in." />
38
+ <Item Key="Interior Trim" Value="Beige Cloth Interior | Charcoal Cloth Interior" Unit="" />
39
+ <Item Key="Exterior Color" Value="Aspen White Pearl | Blue Onyx Metallic | Brilliant Silver Metallic | Magnetic Gray Metallic | Red Brick Pearl | Super Black" Unit="" />
40
+ <Item Key="Curb Weight-automatic" Value="2948" Unit="lbs" />
41
+ <Item Key="Curb Weight-manual" Value="2873" Unit="lbs" />
42
+ <Item Key="Overall Length" Value="179.80" Unit="in." />
43
+ <Item Key="Overall Width" Value="70.50" Unit="in." />
44
+ <Item Key="Overall Height" Value="59.50" Unit="in." />
45
+ <Item Key="Wheelbase" Value="105.70" Unit="in." />
46
+ <Item Key="Ground Clearance" Value="5.60" Unit="in." />
47
+ <Item Key="Track Front" Value="59.80" Unit="in." />
48
+ <Item Key="Track Rear" Value="60.80" Unit="in." />
49
+ <Item Key="Cargo Length" Value="No data" Unit="in." />
50
+ <Item Key="Width at Wheelwell" Value="No data" Unit="in." />
51
+ <Item Key="Width at Wall" Value="No data" Unit="in." />
52
+ <Item Key="Depth" Value="No data" Unit="in." />
53
+ <Item Key="Standard Seating" Value="5" Unit="" />
54
+ <Item Key="Optional Seating" Value="No data" Unit="" />
55
+ <Item Key="Passenger Volume" Value="97.40" Unit="cu.ft." />
56
+ <Item Key="Cargo Volume" Value="13.10" Unit="cu.ft." />
57
+ <Item Key="Standard Towing" Value="No data" Unit="lbs" />
58
+ <Item Key="Maximum Towing" Value="No data" Unit="lbs" />
59
+ <Item Key="Standard Payload" Value="No data" Unit="lbs" />
60
+ <Item Key="Maximum Payload" Value="No data" Unit="lbs" />
61
+ <Item Key="Standard GVWR" Value="No data" Unit="lbs" />
62
+ <Item Key="Maximum GVWR" Value="No data" Unit="lbs" />
63
+ <Item Key="Basic-duration" Value="36" Unit="month" />
64
+ <Item Key="Basic-distance" Value="36,000" Unit="mile" />
65
+ <Item Key="Powertrain-duration" Value="60" Unit="month" />
66
+ <Item Key="Powertrain-distance" Value="60,000" Unit="mile" />
67
+ <Item Key="Rust-duration" Value="60" Unit="month" />
68
+ <Item Key="Rust-distance" Value="Unlimited" Unit="mile" />
69
+ <Item Key="MSRP" Value="$15,840" Unit="USD" />
70
+ <Item Key="Dealer Invoice" Value="$15,196" Unit="USD" />
71
+ <Item Key="Destination Charge" Value="$760" Unit="USD" />
72
+ <Item Key="Child Safety Door Locks" Value="Std." Unit="" />
73
+ <Item Key="Locking Pickup Truck Tailgate" Value="N/A" Unit="" />
74
+ <Item Key="Power Door Locks" Value="Std." Unit="" />
75
+ <Item Key="Vehicle Anti-Theft" Value="Std." Unit="" />
76
+ <Item Key="4WD/AWD" Value="N/A" Unit="" />
77
+ <Item Key="ABS Brakes" Value="Std." Unit="" />
78
+ <Item Key="Automatic Load-Leveling" Value="N/A" Unit="" />
79
+ <Item Key="Electronic Brake Assistance" Value="N/A" Unit="" />
80
+ <Item Key="Limited Slip Differential" Value="N/A" Unit="" />
81
+ <Item Key="Locking Differential" Value="N/A" Unit="" />
82
+ <Item Key="Traction Control" Value="Std." Unit="" />
83
+ <Item Key="Vehicle Stability Control System" Value="Std." Unit="" />
84
+ <Item Key="Driver Airbag" Value="Std." Unit="" />
85
+ <Item Key="Front Side Airbag" Value="Std." Unit="" />
86
+ <Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit="" />
87
+ <Item Key="Passenger Airbag" Value="Std." Unit="" />
88
+ <Item Key="Side Head Curtain Airbag" Value="Std." Unit="" />
89
+ <Item Key="Second Row Side Airbag" Value="N/A" Unit="" />
90
+ <Item Key="Second Row Side Airbag with Head Protection" Value="N/A" Unit="" />
91
+ <Item Key="Electronic Parking Aid" Value="N/A" Unit="" />
92
+ <Item Key="First Aid Kit" Value="Opt." Unit="" />
93
+ <Item Key="Trunk Anti-Trap Device" Value="Std." Unit="" />
94
+ <Item Key="Keyless Entry" Value="Opt." Unit="" />
95
+ <Item Key="Remote Ignition" Value="N/A" Unit="" />
96
+ <Item Key="Air Conditioning" Value="Std." Unit="" />
97
+ <Item Key="Separate Driver/Front Passenger Climate Controls" Value="N/A" Unit="" />
98
+ <Item Key="Cruise Control" Value="N/A" Unit="" />
99
+ <Item Key="Tachometer" Value="Std." Unit="" />
100
+ <Item Key="Tilt Steering" Value="Std." Unit="" />
101
+ <Item Key="Tilt Steering Column" Value="Std." Unit="" />
102
+ <Item Key="Heated Steering Wheel" Value="N/A" Unit="" />
103
+ <Item Key="Leather Steering Wheel" Value="N/A" Unit="" />
104
+ <Item Key="Steering Wheel Mounted Controls" Value="N/A" Unit="" />
105
+ <Item Key="Telescopic Steering Column" Value="N/A" Unit="" />
106
+ <Item Key="Adjustable Foot Pedals" Value="N/A" Unit="" />
107
+ <Item Key="Genuine Wood Trim" Value="N/A" Unit="" />
108
+ <Item Key="Tire Pressure Monitor" Value="Std." Unit="" />
109
+ <Item Key="Trip Computer" Value="N/A" Unit="" />
110
+ <Item Key="AM/FM Radio" Value="Std." Unit="" />
111
+ <Item Key="Cassette Player" Value="N/A" Unit="" />
112
+ <Item Key="CD Player" Value="Std." Unit="" />
113
+ <Item Key="CD Changer" Value="N/A" Unit="" />
114
+ <Item Key="DVD Player" Value="N/A" Unit="" />
115
+ <Item Key="Voice Activated Telephone" Value="N/A" Unit="" />
116
+ <Item Key="Navigation Aid" Value="Opt." Unit="" />
117
+ <Item Key="Second Row Sound Controls" Value="N/A" Unit="" />
118
+ <Item Key="Subwoofer" Value="N/A" Unit="" />
119
+ <Item Key="Telematics System" Value="N/A" Unit="" />
120
+ <Item Key="Driver Multi-Adjustable Power Seat" Value="N/A" Unit="" />
121
+ <Item Key="Front Cooled Seat" Value="N/A" Unit="" />
122
+ <Item Key="Front Heated Seat" Value="N/A" Unit="" />
123
+ <Item Key="Front Power Lumbar Support" Value="N/A" Unit="" />
124
+ <Item Key="Front Power Memory Seat" Value="N/A" Unit="" />
125
+ <Item Key="Front Split Bench Seat" Value="N/A" Unit="" />
126
+ <Item Key="Leather Seat" Value="N/A" Unit="" />
127
+ <Item Key="Passenger Multi-Adjustable Power Seat" Value="N/A" Unit="" />
128
+ <Item Key="Second Row Folding Seat" Value="Std." Unit="" />
129
+ <Item Key="Second Row Heated Seat" Value="N/A" Unit="" />
130
+ <Item Key="Second Row Multi-Adjustable Power Seat" Value="N/A" Unit="" />
131
+ <Item Key="Second Row Removable Seat" Value="N/A" Unit="" />
132
+ <Item Key="Third Row Removable Seat" Value="N/A" Unit="" />
133
+ <Item Key="Cargo Area Cover" Value="N/A" Unit="" />
134
+ <Item Key="Cargo Area Tiedowns" Value="N/A" Unit="" />
135
+ <Item Key="Cargo Net" Value="N/A" Unit="" />
136
+ <Item Key="Load Bearing Exterior Rack" Value="N/A" Unit="" />
137
+ <Item Key="Pickup Truck Bed Liner" Value="N/A" Unit="" />
138
+ <Item Key="Power Sunroof" Value="N/A" Unit="" />
139
+ <Item Key="Removable Top" Value="N/A" Unit="" />
140
+ <Item Key="Manual Sunroof" Value="N/A" Unit="" />
141
+ <Item Key="Automatic Headlights" Value="Std." Unit="" />
142
+ <Item Key="Daytime Running Lights" Value="Std." Unit="" />
143
+ <Item Key="Fog Lights" Value="N/A" Unit="" />
144
+ <Item Key="High Intensity Discharge Headlights" Value="N/A" Unit="" />
145
+ <Item Key="Pickup Truck Cargo Box Light" Value="N/A" Unit="" />
146
+ <Item Key="Running Boards" Value="N/A" Unit="" />
147
+ <Item Key="Front Air Dam" Value="Std." Unit="" />
148
+ <Item Key="Rear Spoiler" Value="Opt." Unit="" />
149
+ <Item Key="Skid Plate" Value="N/A" Unit="" />
150
+ <Item Key="Splash Guards" Value="Opt." Unit="" />
151
+ <Item Key="Wind Deflector for Convertibles" Value="N/A" Unit="" />
152
+ <Item Key="Power Sliding Side Van Door" Value="N/A" Unit="" />
153
+ <Item Key="Power Trunk Lid" Value="N/A" Unit="" />
154
+ <Item Key="Alloy Wheels" Value="N/A" Unit="" />
155
+ <Item Key="Chrome Wheels" Value="N/A" Unit="" />
156
+ <Item Key="Full Size Spare Tire" Value="N/A" Unit="" />
157
+ <Item Key="Run Flat Tires" Value="N/A" Unit="" />
158
+ <Item Key="Steel Wheels" Value="Std." Unit="" />
159
+ <Item Key="Power Windows" Value="Std." Unit="" />
160
+ <Item Key="Electrochromic Exterior Rearview Mirror" Value="N/A" Unit="" />
161
+ <Item Key="Glass Rear Window on Convertible" Value="N/A" Unit="" />
162
+ <Item Key="Heated Exterior Mirror" Value="N/A" Unit="" />
163
+ <Item Key="Electrochromic Interior Rearview Mirror" Value="Opt." Unit="" />
164
+ <Item Key="Power Adjustable Exterior Mirror" Value="N/A" Unit="" />
165
+ <Item Key="Deep Tinted Glass" Value="N/A" Unit="" />
166
+ <Item Key="Interval Wipers" Value="Std." Unit="" />
167
+ <Item Key="Rain Sensing Wipers" Value="N/A" Unit="" />
168
+ <Item Key="Rear Window Defogger" Value="Std." Unit="" />
169
+ <Item Key="Rear Wiper" Value="N/A" Unit="" />
170
+ <Item Key="Sliding Rear Pickup Truck Window" Value="N/A" Unit="" />
171
+ <Item Key="Tow Hitch Receiver" Value="N/A" Unit="" />
172
+ <Item Key="Towing Preparation Package" Value="N/A" Unit="" />
173
+ </Vehicle>
174
+ <Vehicle VINquery_Vehicle_ID="41690" Model_Year="2011" Make="Nissan" Model="Sentra" Trim_Level="2.0 S">
175
+ <Item Key="VINquery_Vehicle_ID" Value="41690" Unit="" />
176
+ <Item Key="Model Year" Value="2011" Unit="" />
177
+ <Item Key="Make" Value="Nissan" Unit="" />
178
+ <Item Key="Model" Value="Sentra" Unit="" />
179
+ <Item Key="Trim Level" Value="2.0 S" Unit="" />
180
+ <Item Key="Manufactured in" Value="MEXICO" Unit="" />
181
+ <Item Key="Production Seq. Number" Value="654433" Unit="" />
182
+ <Item Key="Body Style" Value="SEDAN 4-DR" Unit="" />
183
+ <Item Key="Engine Type" Value="2.0L L4 DOHC 16V" Unit="" />
184
+ <Item Key="Transmission-short" Value="CVT | 6M" Unit="" />
185
+ <Item Key="Transmission-long" Value="Continuously Variable Transmission | 6-Speed Manual" Unit="" />
186
+ <Item Key="Driveline" Value="FWD" Unit="" />
187
+ <Item Key="Tank" Value="14.50" Unit="gallon" />
188
+ <Item Key="Fuel Economy-city" Value="27" Unit="miles/gallon" />
189
+ <Item Key="Fuel Economy-highway" Value="34" Unit="miles/gallon" />
190
+ <Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit="" />
191
+ <Item Key="Steering Type" Value="R&amp;P" Unit="" />
192
+ <Item Key="Front Brake Type" Value="Disc" Unit="" />
193
+ <Item Key="Rear Brake Type" Value="Drum" Unit="" />
194
+ <Item Key="Turning Diameter" Value="35.40" Unit="in." />
195
+ <Item Key="Front Suspension" Value="Ind" Unit="" />
196
+ <Item Key="Rear Suspension" Value="Semi" Unit="" />
197
+ <Item Key="Front Spring Type" Value="Coil" Unit="" />
198
+ <Item Key="Rear Spring Type" Value="Coil" Unit="" />
199
+ <Item Key="Tires" Value="205/55R16" Unit="" />
200
+ <Item Key="Front Headroom" Value="40.60" Unit="in." />
201
+ <Item Key="Rear Headroom" Value="37.30" Unit="in." />
202
+ <Item Key="Front Legroom" Value="42.40" Unit="in." />
203
+ <Item Key="Rear Legroom" Value="34.50" Unit="in." />
204
+ <Item Key="Front Shoulder Room" Value="56.90" Unit="in." />
205
+ <Item Key="Rear Shoulder Room" Value="55.10" Unit="in." />
206
+ <Item Key="Front Hip Room" Value="54.10" Unit="in." />
207
+ <Item Key="Rear Hip Room" Value="53.00" Unit="in." />
208
+ <Item Key="Interior Trim" Value="Beige Cloth Interior | Charcoal Cloth Interior" Unit="" />
209
+ <Item Key="Exterior Color" Value="Aspen White Pearl | Blue Onyx Metallic | Brilliant Silver Metallic | Espresso Black Metallic | Magnetic Gray Metallic | Red Brick Pearl | Super Black" Unit="" />
210
+ <Item Key="Curb Weight-automatic" Value="2983" Unit="lbs" />
211
+ <Item Key="Curb Weight-manual" Value="No data" Unit="lbs" />
212
+ <Item Key="Overall Length" Value="179.80" Unit="in." />
213
+ <Item Key="Overall Width" Value="70.50" Unit="in." />
214
+ <Item Key="Overall Height" Value="59.50" Unit="in." />
215
+ <Item Key="Wheelbase" Value="105.70" Unit="in." />
216
+ <Item Key="Ground Clearance" Value="5.70" Unit="in." />
217
+ <Item Key="Track Front" Value="59.80" Unit="in." />
218
+ <Item Key="Track Rear" Value="60.80" Unit="in." />
219
+ <Item Key="Cargo Length" Value="No data" Unit="in." />
220
+ <Item Key="Width at Wheelwell" Value="No data" Unit="in." />
221
+ <Item Key="Width at Wall" Value="No data" Unit="in." />
222
+ <Item Key="Depth" Value="No data" Unit="in." />
223
+ <Item Key="Standard Seating" Value="5" Unit="" />
224
+ <Item Key="Optional Seating" Value="No data" Unit="" />
225
+ <Item Key="Passenger Volume" Value="97.70" Unit="cu.ft." />
226
+ <Item Key="Cargo Volume" Value="13.10" Unit="cu.ft." />
227
+ <Item Key="Standard Towing" Value="No data" Unit="lbs" />
228
+ <Item Key="Maximum Towing" Value="No data" Unit="lbs" />
229
+ <Item Key="Standard Payload" Value="No data" Unit="lbs" />
230
+ <Item Key="Maximum Payload" Value="No data" Unit="lbs" />
231
+ <Item Key="Standard GVWR" Value="No data" Unit="lbs" />
232
+ <Item Key="Maximum GVWR" Value="No data" Unit="lbs" />
233
+ <Item Key="Basic-duration" Value="36" Unit="month" />
234
+ <Item Key="Basic-distance" Value="36,000" Unit="mile" />
235
+ <Item Key="Powertrain-duration" Value="60" Unit="month" />
236
+ <Item Key="Powertrain-distance" Value="60,000" Unit="mile" />
237
+ <Item Key="Rust-duration" Value="60" Unit="month" />
238
+ <Item Key="Rust-distance" Value="Unlimited" Unit="mile" />
239
+ <Item Key="MSRP" Value="$17,770" Unit="USD" />
240
+ <Item Key="Dealer Invoice" Value="$16,576" Unit="USD" />
241
+ <Item Key="Destination Charge" Value="$760" Unit="USD" />
242
+ <Item Key="Child Safety Door Locks" Value="Std." Unit="" />
243
+ <Item Key="Locking Pickup Truck Tailgate" Value="N/A" Unit="" />
244
+ <Item Key="Power Door Locks" Value="Std." Unit="" />
245
+ <Item Key="Vehicle Anti-Theft" Value="Std." Unit="" />
246
+ <Item Key="4WD/AWD" Value="N/A" Unit="" />
247
+ <Item Key="ABS Brakes" Value="Std." Unit="" />
248
+ <Item Key="Automatic Load-Leveling" Value="N/A" Unit="" />
249
+ <Item Key="Electronic Brake Assistance" Value="N/A" Unit="" />
250
+ <Item Key="Limited Slip Differential" Value="N/A" Unit="" />
251
+ <Item Key="Locking Differential" Value="N/A" Unit="" />
252
+ <Item Key="Traction Control" Value="Std." Unit="" />
253
+ <Item Key="Vehicle Stability Control System" Value="Std." Unit="" />
254
+ <Item Key="Driver Airbag" Value="Std." Unit="" />
255
+ <Item Key="Front Side Airbag" Value="Std." Unit="" />
256
+ <Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit="" />
257
+ <Item Key="Passenger Airbag" Value="Std." Unit="" />
258
+ <Item Key="Side Head Curtain Airbag" Value="Std." Unit="" />
259
+ <Item Key="Second Row Side Airbag" Value="N/A" Unit="" />
260
+ <Item Key="Second Row Side Airbag with Head Protection" Value="N/A" Unit="" />
261
+ <Item Key="Electronic Parking Aid" Value="N/A" Unit="" />
262
+ <Item Key="First Aid Kit" Value="Opt." Unit="" />
263
+ <Item Key="Trunk Anti-Trap Device" Value="Std." Unit="" />
264
+ <Item Key="Keyless Entry" Value="Std." Unit="" />
265
+ <Item Key="Remote Ignition" Value="N/A" Unit="" />
266
+ <Item Key="Air Conditioning" Value="Std." Unit="" />
267
+ <Item Key="Separate Driver/Front Passenger Climate Controls" Value="N/A" Unit="" />
268
+ <Item Key="Cruise Control" Value="Std." Unit="" />
269
+ <Item Key="Tachometer" Value="Std." Unit="" />
270
+ <Item Key="Tilt Steering" Value="Std." Unit="" />
271
+ <Item Key="Tilt Steering Column" Value="Std." Unit="" />
272
+ <Item Key="Heated Steering Wheel" Value="N/A" Unit="" />
273
+ <Item Key="Leather Steering Wheel" Value="Opt." Unit="" />
274
+ <Item Key="Steering Wheel Mounted Controls" Value="Std." Unit="" />
275
+ <Item Key="Telescopic Steering Column" Value="N/A" Unit="" />
276
+ <Item Key="Adjustable Foot Pedals" Value="N/A" Unit="" />
277
+ <Item Key="Genuine Wood Trim" Value="N/A" Unit="" />
278
+ <Item Key="Tire Pressure Monitor" Value="Std." Unit="" />
279
+ <Item Key="Trip Computer" Value="Std." Unit="" />
280
+ <Item Key="AM/FM Radio" Value="Std." Unit="" />
281
+ <Item Key="Cassette Player" Value="N/A" Unit="" />
282
+ <Item Key="CD Player" Value="Std." Unit="" />
283
+ <Item Key="CD Changer" Value="N/A" Unit="" />
284
+ <Item Key="DVD Player" Value="N/A" Unit="" />
285
+ <Item Key="Voice Activated Telephone" Value="N/A" Unit="" />
286
+ <Item Key="Navigation Aid" Value="Opt." Unit="" />
287
+ <Item Key="Second Row Sound Controls" Value="N/A" Unit="" />
288
+ <Item Key="Subwoofer" Value="Opt." Unit="" />
289
+ <Item Key="Telematics System" Value="N/A" Unit="" />
290
+ <Item Key="Driver Multi-Adjustable Power Seat" Value="N/A" Unit="" />
291
+ <Item Key="Front Cooled Seat" Value="N/A" Unit="" />
292
+ <Item Key="Front Heated Seat" Value="N/A" Unit="" />
293
+ <Item Key="Front Power Lumbar Support" Value="N/A" Unit="" />
294
+ <Item Key="Front Power Memory Seat" Value="N/A" Unit="" />
295
+ <Item Key="Front Split Bench Seat" Value="N/A" Unit="" />
296
+ <Item Key="Leather Seat" Value="N/A" Unit="" />
297
+ <Item Key="Passenger Multi-Adjustable Power Seat" Value="N/A" Unit="" />
298
+ <Item Key="Second Row Folding Seat" Value="Std." Unit="" />
299
+ <Item Key="Second Row Heated Seat" Value="N/A" Unit="" />
300
+ <Item Key="Second Row Multi-Adjustable Power Seat" Value="N/A" Unit="" />
301
+ <Item Key="Second Row Removable Seat" Value="N/A" Unit="" />
302
+ <Item Key="Third Row Removable Seat" Value="N/A" Unit="" />
303
+ <Item Key="Cargo Area Cover" Value="N/A" Unit="" />
304
+ <Item Key="Cargo Area Tiedowns" Value="Opt." Unit="" />
305
+ <Item Key="Cargo Net" Value="Opt." Unit="" />
306
+ <Item Key="Load Bearing Exterior Rack" Value="N/A" Unit="" />
307
+ <Item Key="Pickup Truck Bed Liner" Value="N/A" Unit="" />
308
+ <Item Key="Power Sunroof" Value="N/A" Unit="" />
309
+ <Item Key="Removable Top" Value="N/A" Unit="" />
310
+ <Item Key="Manual Sunroof" Value="N/A" Unit="" />
311
+ <Item Key="Automatic Headlights" Value="Std." Unit="" />
312
+ <Item Key="Daytime Running Lights" Value="Std." Unit="" />
313
+ <Item Key="Fog Lights" Value="N/A" Unit="" />
314
+ <Item Key="High Intensity Discharge Headlights" Value="N/A" Unit="" />
315
+ <Item Key="Pickup Truck Cargo Box Light" Value="N/A" Unit="" />
316
+ <Item Key="Running Boards" Value="N/A" Unit="" />
317
+ <Item Key="Front Air Dam" Value="Std." Unit="" />
318
+ <Item Key="Rear Spoiler" Value="Std." Unit="" />
319
+ <Item Key="Skid Plate" Value="N/A" Unit="" />
320
+ <Item Key="Splash Guards" Value="Opt." Unit="" />
321
+ <Item Key="Wind Deflector for Convertibles" Value="N/A" Unit="" />
322
+ <Item Key="Power Sliding Side Van Door" Value="N/A" Unit="" />
323
+ <Item Key="Power Trunk Lid" Value="N/A" Unit="" />
324
+ <Item Key="Alloy Wheels" Value="N/A" Unit="" />
325
+ <Item Key="Chrome Wheels" Value="N/A" Unit="" />
326
+ <Item Key="Full Size Spare Tire" Value="N/A" Unit="" />
327
+ <Item Key="Run Flat Tires" Value="N/A" Unit="" />
328
+ <Item Key="Steel Wheels" Value="Std." Unit="" />
329
+ <Item Key="Power Windows" Value="Std." Unit="" />
330
+ <Item Key="Electrochromic Exterior Rearview Mirror" Value="N/A" Unit="" />
331
+ <Item Key="Glass Rear Window on Convertible" Value="N/A" Unit="" />
332
+ <Item Key="Heated Exterior Mirror" Value="N/A" Unit="" />
333
+ <Item Key="Electrochromic Interior Rearview Mirror" Value="Opt." Unit="" />
334
+ <Item Key="Power Adjustable Exterior Mirror" Value="Std." Unit="" />
335
+ <Item Key="Deep Tinted Glass" Value="N/A" Unit="" />
336
+ <Item Key="Interval Wipers" Value="Std." Unit="" />
337
+ <Item Key="Rain Sensing Wipers" Value="N/A" Unit="" />
338
+ <Item Key="Rear Window Defogger" Value="Std." Unit="" />
339
+ <Item Key="Rear Wiper" Value="N/A" Unit="" />
340
+ <Item Key="Sliding Rear Pickup Truck Window" Value="N/A" Unit="" />
341
+ <Item Key="Tow Hitch Receiver" Value="N/A" Unit="" />
342
+ <Item Key="Towing Preparation Package" Value="N/A" Unit="" />
343
+ </Vehicle>
344
+ <Vehicle VINquery_Vehicle_ID="41691" Model_Year="2011" Make="Nissan" Model="Sentra" Trim_Level="2.0 SL">
345
+ <Item Key="VINquery_Vehicle_ID" Value="41691" Unit="" />
346
+ <Item Key="Model Year" Value="2011" Unit="" />
347
+ <Item Key="Make" Value="Nissan" Unit="" />
348
+ <Item Key="Model" Value="Sentra" Unit="" />
349
+ <Item Key="Trim Level" Value="2.0 SL" Unit="" />
350
+ <Item Key="Manufactured in" Value="MEXICO" Unit="" />
351
+ <Item Key="Production Seq. Number" Value="654433" Unit="" />
352
+ <Item Key="Body Style" Value="SEDAN 4-DR" Unit="" />
353
+ <Item Key="Engine Type" Value="2.0L L4 DOHC 16V" Unit="" />
354
+ <Item Key="Transmission-short" Value="CVT" Unit="" />
355
+ <Item Key="Transmission-long" Value="Continuously Variable Transmission" Unit="" />
356
+ <Item Key="Driveline" Value="FWD" Unit="" />
357
+ <Item Key="Tank" Value="14.50" Unit="gallon" />
358
+ <Item Key="Fuel Economy-city" Value="27" Unit="miles/gallon" />
359
+ <Item Key="Fuel Economy-highway" Value="34" Unit="miles/gallon" />
360
+ <Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit="" />
361
+ <Item Key="Steering Type" Value="R&amp;P" Unit="" />
362
+ <Item Key="Front Brake Type" Value="Disc" Unit="" />
363
+ <Item Key="Rear Brake Type" Value="Drum" Unit="" />
364
+ <Item Key="Turning Diameter" Value="35.40" Unit="in." />
365
+ <Item Key="Front Suspension" Value="Ind" Unit="" />
366
+ <Item Key="Rear Suspension" Value="Semi" Unit="" />
367
+ <Item Key="Front Spring Type" Value="Coil" Unit="" />
368
+ <Item Key="Rear Spring Type" Value="Coil" Unit="" />
369
+ <Item Key="Tires" Value="205/55R16" Unit="" />
370
+ <Item Key="Front Headroom" Value="40.60" Unit="in." />
371
+ <Item Key="Rear Headroom" Value="37.30" Unit="in." />
372
+ <Item Key="Front Legroom" Value="42.40" Unit="in." />
373
+ <Item Key="Rear Legroom" Value="34.50" Unit="in." />
374
+ <Item Key="Front Shoulder Room" Value="56.90" Unit="in." />
375
+ <Item Key="Rear Shoulder Room" Value="55.10" Unit="in." />
376
+ <Item Key="Front Hip Room" Value="54.10" Unit="in." />
377
+ <Item Key="Rear Hip Room" Value="53.00" Unit="in." />
378
+ <Item Key="Interior Trim" Value="Beige Cloth Interior | Beige Leather Interior | Charcoal Cloth Interior | Charcoal Leather Interior" Unit="" />
379
+ <Item Key="Exterior Color" Value="Aspen White Pearl | Blue Onyx Metallic | Brilliant Silver Metallic | Espresso Black Metallic | Magnetic Gray Metallic | Red Brick Pearl | Super Black" Unit="" />
380
+ <Item Key="Curb Weight-automatic" Value="2978" Unit="lbs" />
381
+ <Item Key="Curb Weight-manual" Value="No data" Unit="lbs" />
382
+ <Item Key="Overall Length" Value="179.80" Unit="in." />
383
+ <Item Key="Overall Width" Value="70.50" Unit="in." />
384
+ <Item Key="Overall Height" Value="59.50" Unit="in." />
385
+ <Item Key="Wheelbase" Value="105.70" Unit="in." />
386
+ <Item Key="Ground Clearance" Value="5.70" Unit="in." />
387
+ <Item Key="Track Front" Value="59.80" Unit="in." />
388
+ <Item Key="Track Rear" Value="60.80" Unit="in." />
389
+ <Item Key="Cargo Length" Value="No data" Unit="in." />
390
+ <Item Key="Width at Wheelwell" Value="No data" Unit="in." />
391
+ <Item Key="Width at Wall" Value="No data" Unit="in." />
392
+ <Item Key="Depth" Value="No data" Unit="in." />
393
+ <Item Key="Standard Seating" Value="5" Unit="" />
394
+ <Item Key="Optional Seating" Value="No data" Unit="" />
395
+ <Item Key="Passenger Volume" Value="97.70" Unit="cu.ft." />
396
+ <Item Key="Cargo Volume" Value="13.10" Unit="cu.ft." />
397
+ <Item Key="Standard Towing" Value="No data" Unit="lbs" />
398
+ <Item Key="Maximum Towing" Value="No data" Unit="lbs" />
399
+ <Item Key="Standard Payload" Value="No data" Unit="lbs" />
400
+ <Item Key="Maximum Payload" Value="No data" Unit="lbs" />
401
+ <Item Key="Standard GVWR" Value="No data" Unit="lbs" />
402
+ <Item Key="Maximum GVWR" Value="No data" Unit="lbs" />
403
+ <Item Key="Basic-duration" Value="36" Unit="month" />
404
+ <Item Key="Basic-distance" Value="36,000" Unit="mile" />
405
+ <Item Key="Powertrain-duration" Value="60" Unit="month" />
406
+ <Item Key="Powertrain-distance" Value="60,000" Unit="mile" />
407
+ <Item Key="Rust-duration" Value="60" Unit="month" />
408
+ <Item Key="Rust-distance" Value="Unlimited" Unit="mile" />
409
+ <Item Key="MSRP" Value="$19,170" Unit="USD" />
410
+ <Item Key="Dealer Invoice" Value="$17,879" Unit="USD" />
411
+ <Item Key="Destination Charge" Value="$760" Unit="USD" />
412
+ <Item Key="Child Safety Door Locks" Value="Std." Unit="" />
413
+ <Item Key="Locking Pickup Truck Tailgate" Value="N/A" Unit="" />
414
+ <Item Key="Power Door Locks" Value="Std." Unit="" />
415
+ <Item Key="Vehicle Anti-Theft" Value="Std." Unit="" />
416
+ <Item Key="4WD/AWD" Value="N/A" Unit="" />
417
+ <Item Key="ABS Brakes" Value="Std." Unit="" />
418
+ <Item Key="Automatic Load-Leveling" Value="N/A" Unit="" />
419
+ <Item Key="Electronic Brake Assistance" Value="N/A" Unit="" />
420
+ <Item Key="Limited Slip Differential" Value="N/A" Unit="" />
421
+ <Item Key="Locking Differential" Value="N/A" Unit="" />
422
+ <Item Key="Traction Control" Value="Std." Unit="" />
423
+ <Item Key="Vehicle Stability Control System" Value="Std." Unit="" />
424
+ <Item Key="Driver Airbag" Value="Std." Unit="" />
425
+ <Item Key="Front Side Airbag" Value="Std." Unit="" />
426
+ <Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit="" />
427
+ <Item Key="Passenger Airbag" Value="Std." Unit="" />
428
+ <Item Key="Side Head Curtain Airbag" Value="Std." Unit="" />
429
+ <Item Key="Second Row Side Airbag" Value="N/A" Unit="" />
430
+ <Item Key="Second Row Side Airbag with Head Protection" Value="N/A" Unit="" />
431
+ <Item Key="Electronic Parking Aid" Value="Opt." Unit="" />
432
+ <Item Key="First Aid Kit" Value="Opt." Unit="" />
433
+ <Item Key="Trunk Anti-Trap Device" Value="Std." Unit="" />
434
+ <Item Key="Keyless Entry" Value="Std." Unit="" />
435
+ <Item Key="Remote Ignition" Value="N/A" Unit="" />
436
+ <Item Key="Air Conditioning" Value="Std." Unit="" />
437
+ <Item Key="Separate Driver/Front Passenger Climate Controls" Value="N/A" Unit="" />
438
+ <Item Key="Cruise Control" Value="Std." Unit="" />
439
+ <Item Key="Tachometer" Value="Std." Unit="" />
440
+ <Item Key="Tilt Steering" Value="Std." Unit="" />
441
+ <Item Key="Tilt Steering Column" Value="Std." Unit="" />
442
+ <Item Key="Heated Steering Wheel" Value="N/A" Unit="" />
443
+ <Item Key="Leather Steering Wheel" Value="Std." Unit="" />
444
+ <Item Key="Steering Wheel Mounted Controls" Value="Std." Unit="" />
445
+ <Item Key="Telescopic Steering Column" Value="N/A" Unit="" />
446
+ <Item Key="Adjustable Foot Pedals" Value="N/A" Unit="" />
447
+ <Item Key="Genuine Wood Trim" Value="N/A" Unit="" />
448
+ <Item Key="Tire Pressure Monitor" Value="Std." Unit="" />
449
+ <Item Key="Trip Computer" Value="Std." Unit="" />
450
+ <Item Key="AM/FM Radio" Value="Std." Unit="" />
451
+ <Item Key="Cassette Player" Value="N/A" Unit="" />
452
+ <Item Key="CD Player" Value="Std." Unit="" />
453
+ <Item Key="CD Changer" Value="N/A" Unit="" />
454
+ <Item Key="DVD Player" Value="N/A" Unit="" />
455
+ <Item Key="Voice Activated Telephone" Value="N/A" Unit="" />
456
+ <Item Key="Navigation Aid" Value="Opt." Unit="" />
457
+ <Item Key="Second Row Sound Controls" Value="N/A" Unit="" />
458
+ <Item Key="Subwoofer" Value="Opt." Unit="" />
459
+ <Item Key="Telematics System" Value="N/A" Unit="" />
460
+ <Item Key="Driver Multi-Adjustable Power Seat" Value="N/A" Unit="" />
461
+ <Item Key="Front Cooled Seat" Value="N/A" Unit="" />
462
+ <Item Key="Front Heated Seat" Value="Opt." Unit="" />
463
+ <Item Key="Front Power Lumbar Support" Value="N/A" Unit="" />
464
+ <Item Key="Front Power Memory Seat" Value="N/A" Unit="" />
465
+ <Item Key="Front Split Bench Seat" Value="N/A" Unit="" />
466
+ <Item Key="Leather Seat" Value="Opt." Unit="" />
467
+ <Item Key="Passenger Multi-Adjustable Power Seat" Value="N/A" Unit="" />
468
+ <Item Key="Second Row Folding Seat" Value="Std." Unit="" />
469
+ <Item Key="Second Row Heated Seat" Value="N/A" Unit="" />
470
+ <Item Key="Second Row Multi-Adjustable Power Seat" Value="N/A" Unit="" />
471
+ <Item Key="Second Row Removable Seat" Value="N/A" Unit="" />
472
+ <Item Key="Third Row Removable Seat" Value="N/A" Unit="" />
473
+ <Item Key="Cargo Area Cover" Value="N/A" Unit="" />
474
+ <Item Key="Cargo Area Tiedowns" Value="Std." Unit="" />
475
+ <Item Key="Cargo Net" Value="Std." Unit="" />
476
+ <Item Key="Load Bearing Exterior Rack" Value="N/A" Unit="" />
477
+ <Item Key="Pickup Truck Bed Liner" Value="N/A" Unit="" />
478
+ <Item Key="Power Sunroof" Value="Opt." Unit="" />
479
+ <Item Key="Removable Top" Value="N/A" Unit="" />
480
+ <Item Key="Manual Sunroof" Value="Opt." Unit="" />
481
+ <Item Key="Automatic Headlights" Value="Std." Unit="" />
482
+ <Item Key="Daytime Running Lights" Value="Std." Unit="" />
483
+ <Item Key="Fog Lights" Value="Std." Unit="" />
484
+ <Item Key="High Intensity Discharge Headlights" Value="N/A" Unit="" />
485
+ <Item Key="Pickup Truck Cargo Box Light" Value="N/A" Unit="" />
486
+ <Item Key="Running Boards" Value="N/A" Unit="" />
487
+ <Item Key="Front Air Dam" Value="Std." Unit="" />
488
+ <Item Key="Rear Spoiler" Value="Std." Unit="" />
489
+ <Item Key="Skid Plate" Value="N/A" Unit="" />
490
+ <Item Key="Splash Guards" Value="Opt." Unit="" />
491
+ <Item Key="Wind Deflector for Convertibles" Value="N/A" Unit="" />
492
+ <Item Key="Power Sliding Side Van Door" Value="N/A" Unit="" />
493
+ <Item Key="Power Trunk Lid" Value="N/A" Unit="" />
494
+ <Item Key="Alloy Wheels" Value="Std." Unit="" />
495
+ <Item Key="Chrome Wheels" Value="N/A" Unit="" />
496
+ <Item Key="Full Size Spare Tire" Value="N/A" Unit="" />
497
+ <Item Key="Run Flat Tires" Value="N/A" Unit="" />
498
+ <Item Key="Steel Wheels" Value="N/A" Unit="" />
499
+ <Item Key="Power Windows" Value="Std." Unit="" />
500
+ <Item Key="Electrochromic Exterior Rearview Mirror" Value="N/A" Unit="" />
501
+ <Item Key="Glass Rear Window on Convertible" Value="N/A" Unit="" />
502
+ <Item Key="Heated Exterior Mirror" Value="N/A" Unit="" />
503
+ <Item Key="Electrochromic Interior Rearview Mirror" Value="Opt." Unit="" />
504
+ <Item Key="Power Adjustable Exterior Mirror" Value="Std." Unit="" />
505
+ <Item Key="Deep Tinted Glass" Value="N/A" Unit="" />
506
+ <Item Key="Interval Wipers" Value="Std." Unit="" />
507
+ <Item Key="Rain Sensing Wipers" Value="N/A" Unit="" />
508
+ <Item Key="Rear Window Defogger" Value="Std." Unit="" />
509
+ <Item Key="Rear Wiper" Value="N/A" Unit="" />
510
+ <Item Key="Sliding Rear Pickup Truck Window" Value="N/A" Unit="" />
511
+ <Item Key="Tow Hitch Receiver" Value="N/A" Unit="" />
512
+ <Item Key="Towing Preparation Package" Value="N/A" Unit="" />
513
+ </Vehicle>
514
+ <Vehicle VINquery_Vehicle_ID="41692" Model_Year="2011" Make="Nissan" Model="Sentra" Trim_Level="2.0 SR">
515
+ <Item Key="VINquery_Vehicle_ID" Value="41692" Unit="" />
516
+ <Item Key="Model Year" Value="2011" Unit="" />
517
+ <Item Key="Make" Value="Nissan" Unit="" />
518
+ <Item Key="Model" Value="Sentra" Unit="" />
519
+ <Item Key="Trim Level" Value="2.0 SR" Unit="" />
520
+ <Item Key="Manufactured in" Value="MEXICO" Unit="" />
521
+ <Item Key="Production Seq. Number" Value="654433" Unit="" />
522
+ <Item Key="Body Style" Value="SEDAN 4-DR" Unit="" />
523
+ <Item Key="Engine Type" Value="2.0L L4 DOHC 16V" Unit="" />
524
+ <Item Key="Transmission-short" Value="CVT" Unit="" />
525
+ <Item Key="Transmission-long" Value="Continuously Variable Transmission" Unit="" />
526
+ <Item Key="Driveline" Value="FWD" Unit="" />
527
+ <Item Key="Tank" Value="14.50" Unit="gallon" />
528
+ <Item Key="Fuel Economy-city" Value="27" Unit="miles/gallon" />
529
+ <Item Key="Fuel Economy-highway" Value="34" Unit="miles/gallon" />
530
+ <Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit="" />
531
+ <Item Key="Steering Type" Value="R&amp;P" Unit="" />
532
+ <Item Key="Front Brake Type" Value="Disc" Unit="" />
533
+ <Item Key="Rear Brake Type" Value="Drum" Unit="" />
534
+ <Item Key="Turning Diameter" Value="35.40" Unit="in." />
535
+ <Item Key="Front Suspension" Value="Ind" Unit="" />
536
+ <Item Key="Rear Suspension" Value="Semi" Unit="" />
537
+ <Item Key="Front Spring Type" Value="Coil" Unit="" />
538
+ <Item Key="Rear Spring Type" Value="Coil" Unit="" />
539
+ <Item Key="Tires" Value="205/55R16" Unit="" />
540
+ <Item Key="Front Headroom" Value="40.60" Unit="in." />
541
+ <Item Key="Rear Headroom" Value="37.30" Unit="in." />
542
+ <Item Key="Front Legroom" Value="42.40" Unit="in." />
543
+ <Item Key="Rear Legroom" Value="34.50" Unit="in." />
544
+ <Item Key="Front Shoulder Room" Value="56.90" Unit="in." />
545
+ <Item Key="Rear Shoulder Room" Value="55.10" Unit="in." />
546
+ <Item Key="Front Hip Room" Value="54.10" Unit="in." />
547
+ <Item Key="Rear Hip Room" Value="53.00" Unit="in." />
548
+ <Item Key="Interior Trim" Value="Charcoal Cloth Interior" Unit="" />
549
+ <Item Key="Exterior Color" Value="Aspen White Pearl | Brilliant Silver Metallic | Lava Red Metallic | Metallic Blue | Super Black" Unit="" />
550
+ <Item Key="Curb Weight-automatic" Value="2983" Unit="lbs" />
551
+ <Item Key="Curb Weight-manual" Value="No data" Unit="lbs" />
552
+ <Item Key="Overall Length" Value="180.10" Unit="in." />
553
+ <Item Key="Overall Width" Value="70.50" Unit="in." />
554
+ <Item Key="Overall Height" Value="59.50" Unit="in." />
555
+ <Item Key="Wheelbase" Value="105.70" Unit="in." />
556
+ <Item Key="Ground Clearance" Value="5.70" Unit="in." />
557
+ <Item Key="Track Front" Value="59.80" Unit="in." />
558
+ <Item Key="Track Rear" Value="60.80" Unit="in." />
559
+ <Item Key="Cargo Length" Value="No data" Unit="in." />
560
+ <Item Key="Width at Wheelwell" Value="No data" Unit="in." />
561
+ <Item Key="Width at Wall" Value="No data" Unit="in." />
562
+ <Item Key="Depth" Value="No data" Unit="in." />
563
+ <Item Key="Standard Seating" Value="5" Unit="" />
564
+ <Item Key="Optional Seating" Value="No data" Unit="" />
565
+ <Item Key="Passenger Volume" Value="97.70" Unit="cu.ft." />
566
+ <Item Key="Cargo Volume" Value="13.10" Unit="cu.ft." />
567
+ <Item Key="Standard Towing" Value="No data" Unit="lbs" />
568
+ <Item Key="Maximum Towing" Value="No data" Unit="lbs" />
569
+ <Item Key="Standard Payload" Value="No data" Unit="lbs" />
570
+ <Item Key="Maximum Payload" Value="No data" Unit="lbs" />
571
+ <Item Key="Standard GVWR" Value="No data" Unit="lbs" />
572
+ <Item Key="Maximum GVWR" Value="No data" Unit="lbs" />
573
+ <Item Key="Basic-duration" Value="36" Unit="month" />
574
+ <Item Key="Basic-distance" Value="36,000" Unit="mile" />
575
+ <Item Key="Powertrain-duration" Value="60" Unit="month" />
576
+ <Item Key="Powertrain-distance" Value="60,000" Unit="mile" />
577
+ <Item Key="Rust-duration" Value="60" Unit="month" />
578
+ <Item Key="Rust-distance" Value="Unlimited" Unit="mile" />
579
+ <Item Key="MSRP" Value="$17,770" Unit="USD" />
580
+ <Item Key="Dealer Invoice" Value="$16,576" Unit="USD" />
581
+ <Item Key="Destination Charge" Value="$760" Unit="USD" />
582
+ <Item Key="Child Safety Door Locks" Value="Std." Unit="" />
583
+ <Item Key="Locking Pickup Truck Tailgate" Value="N/A" Unit="" />
584
+ <Item Key="Power Door Locks" Value="Std." Unit="" />
585
+ <Item Key="Vehicle Anti-Theft" Value="Std." Unit="" />
586
+ <Item Key="4WD/AWD" Value="N/A" Unit="" />
587
+ <Item Key="ABS Brakes" Value="Std." Unit="" />
588
+ <Item Key="Automatic Load-Leveling" Value="N/A" Unit="" />
589
+ <Item Key="Electronic Brake Assistance" Value="N/A" Unit="" />
590
+ <Item Key="Limited Slip Differential" Value="N/A" Unit="" />
591
+ <Item Key="Locking Differential" Value="N/A" Unit="" />
592
+ <Item Key="Traction Control" Value="Std." Unit="" />
593
+ <Item Key="Vehicle Stability Control System" Value="Std." Unit="" />
594
+ <Item Key="Driver Airbag" Value="Std." Unit="" />
595
+ <Item Key="Front Side Airbag" Value="Std." Unit="" />
596
+ <Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit="" />
597
+ <Item Key="Passenger Airbag" Value="Std." Unit="" />
598
+ <Item Key="Side Head Curtain Airbag" Value="Std." Unit="" />
599
+ <Item Key="Second Row Side Airbag" Value="N/A" Unit="" />
600
+ <Item Key="Second Row Side Airbag with Head Protection" Value="N/A" Unit="" />
601
+ <Item Key="Electronic Parking Aid" Value="N/A" Unit="" />
602
+ <Item Key="First Aid Kit" Value="Opt." Unit="" />
603
+ <Item Key="Trunk Anti-Trap Device" Value="Std." Unit="" />
604
+ <Item Key="Keyless Entry" Value="Std." Unit="" />
605
+ <Item Key="Remote Ignition" Value="N/A" Unit="" />
606
+ <Item Key="Air Conditioning" Value="Std." Unit="" />
607
+ <Item Key="Separate Driver/Front Passenger Climate Controls" Value="N/A" Unit="" />
608
+ <Item Key="Cruise Control" Value="Std." Unit="" />
609
+ <Item Key="Tachometer" Value="Std." Unit="" />
610
+ <Item Key="Tilt Steering" Value="Std." Unit="" />
611
+ <Item Key="Tilt Steering Column" Value="Std." Unit="" />
612
+ <Item Key="Heated Steering Wheel" Value="N/A" Unit="" />
613
+ <Item Key="Leather Steering Wheel" Value="Opt." Unit="" />
614
+ <Item Key="Steering Wheel Mounted Controls" Value="Std." Unit="" />
615
+ <Item Key="Telescopic Steering Column" Value="N/A" Unit="" />
616
+ <Item Key="Adjustable Foot Pedals" Value="N/A" Unit="" />
617
+ <Item Key="Genuine Wood Trim" Value="N/A" Unit="" />
618
+ <Item Key="Tire Pressure Monitor" Value="Std." Unit="" />
619
+ <Item Key="Trip Computer" Value="Std." Unit="" />
620
+ <Item Key="AM/FM Radio" Value="Std." Unit="" />
621
+ <Item Key="Cassette Player" Value="N/A" Unit="" />
622
+ <Item Key="CD Player" Value="Std." Unit="" />
623
+ <Item Key="CD Changer" Value="N/A" Unit="" />
624
+ <Item Key="DVD Player" Value="N/A" Unit="" />
625
+ <Item Key="Voice Activated Telephone" Value="N/A" Unit="" />
626
+ <Item Key="Navigation Aid" Value="Opt." Unit="" />
627
+ <Item Key="Second Row Sound Controls" Value="N/A" Unit="" />
628
+ <Item Key="Subwoofer" Value="Opt." Unit="" />
629
+ <Item Key="Telematics System" Value="N/A" Unit="" />
630
+ <Item Key="Driver Multi-Adjustable Power Seat" Value="N/A" Unit="" />
631
+ <Item Key="Front Cooled Seat" Value="N/A" Unit="" />
632
+ <Item Key="Front Heated Seat" Value="N/A" Unit="" />
633
+ <Item Key="Front Power Lumbar Support" Value="N/A" Unit="" />
634
+ <Item Key="Front Power Memory Seat" Value="N/A" Unit="" />
635
+ <Item Key="Front Split Bench Seat" Value="N/A" Unit="" />
636
+ <Item Key="Leather Seat" Value="N/A" Unit="" />
637
+ <Item Key="Passenger Multi-Adjustable Power Seat" Value="N/A" Unit="" />
638
+ <Item Key="Second Row Folding Seat" Value="Std." Unit="" />
639
+ <Item Key="Second Row Heated Seat" Value="N/A" Unit="" />
640
+ <Item Key="Second Row Multi-Adjustable Power Seat" Value="N/A" Unit="" />
641
+ <Item Key="Second Row Removable Seat" Value="N/A" Unit="" />
642
+ <Item Key="Third Row Removable Seat" Value="N/A" Unit="" />
643
+ <Item Key="Cargo Area Cover" Value="N/A" Unit="" />
644
+ <Item Key="Cargo Area Tiedowns" Value="Opt." Unit="" />
645
+ <Item Key="Cargo Net" Value="Opt." Unit="" />
646
+ <Item Key="Load Bearing Exterior Rack" Value="N/A" Unit="" />
647
+ <Item Key="Pickup Truck Bed Liner" Value="N/A" Unit="" />
648
+ <Item Key="Power Sunroof" Value="Opt." Unit="" />
649
+ <Item Key="Removable Top" Value="N/A" Unit="" />
650
+ <Item Key="Manual Sunroof" Value="Opt." Unit="" />
651
+ <Item Key="Automatic Headlights" Value="Std." Unit="" />
652
+ <Item Key="Daytime Running Lights" Value="Std." Unit="" />
653
+ <Item Key="Fog Lights" Value="Std." Unit="" />
654
+ <Item Key="High Intensity Discharge Headlights" Value="N/A" Unit="" />
655
+ <Item Key="Pickup Truck Cargo Box Light" Value="N/A" Unit="" />
656
+ <Item Key="Running Boards" Value="N/A" Unit="" />
657
+ <Item Key="Front Air Dam" Value="Std." Unit="" />
658
+ <Item Key="Rear Spoiler" Value="Std." Unit="" />
659
+ <Item Key="Skid Plate" Value="N/A" Unit="" />
660
+ <Item Key="Splash Guards" Value="Opt." Unit="" />
661
+ <Item Key="Wind Deflector for Convertibles" Value="N/A" Unit="" />
662
+ <Item Key="Power Sliding Side Van Door" Value="N/A" Unit="" />
663
+ <Item Key="Power Trunk Lid" Value="N/A" Unit="" />
664
+ <Item Key="Alloy Wheels" Value="Std." Unit="" />
665
+ <Item Key="Chrome Wheels" Value="N/A" Unit="" />
666
+ <Item Key="Full Size Spare Tire" Value="N/A" Unit="" />
667
+ <Item Key="Run Flat Tires" Value="N/A" Unit="" />
668
+ <Item Key="Steel Wheels" Value="N/A" Unit="" />
669
+ <Item Key="Power Windows" Value="Std." Unit="" />
670
+ <Item Key="Electrochromic Exterior Rearview Mirror" Value="N/A" Unit="" />
671
+ <Item Key="Glass Rear Window on Convertible" Value="N/A" Unit="" />
672
+ <Item Key="Heated Exterior Mirror" Value="N/A" Unit="" />
673
+ <Item Key="Electrochromic Interior Rearview Mirror" Value="Opt." Unit="" />
674
+ <Item Key="Power Adjustable Exterior Mirror" Value="Std." Unit="" />
675
+ <Item Key="Deep Tinted Glass" Value="N/A" Unit="" />
676
+ <Item Key="Interval Wipers" Value="Std." Unit="" />
677
+ <Item Key="Rain Sensing Wipers" Value="N/A" Unit="" />
678
+ <Item Key="Rear Window Defogger" Value="Std." Unit="" />
679
+ <Item Key="Rear Wiper" Value="N/A" Unit="" />
680
+ <Item Key="Sliding Rear Pickup Truck Window" Value="N/A" Unit="" />
681
+ <Item Key="Tow Hitch Receiver" Value="N/A" Unit="" />
682
+ <Item Key="Towing Preparation Package" Value="N/A" Unit="" />
683
+ </Vehicle>
684
+ </VIN>
685
+ </VINquery>