vinquery 0.1.0 → 0.2.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/Gemfile.lock +2 -0
- data/lib/vinquery.rb +7 -16
- data/lib/vinquery/version.rb +1 -1
- data/lib/vinquery/vin_exploder/adapter.rb +36 -0
- data/spec/spec_helper.rb +5 -1
- data/spec/vin_exploder_adapter_spec.rb +42 -0
- data/spec/vinquery_spec.rb +7 -6
- data/spec/vinquery_test.xml +514 -847
- metadata +16 -2
data/Gemfile.lock
CHANGED
@@ -19,6 +19,7 @@ GEM
|
|
19
19
|
rspec-expectations (2.6.0)
|
20
20
|
diff-lcs (~> 1.1.2)
|
21
21
|
rspec-mocks (2.6.0)
|
22
|
+
vin_exploder (0.2.0)
|
22
23
|
webmock (1.6.4)
|
23
24
|
addressable (~> 2.2, > 2.2.5)
|
24
25
|
crack (>= 0.1.7)
|
@@ -28,5 +29,6 @@ PLATFORMS
|
|
28
29
|
|
29
30
|
DEPENDENCIES
|
30
31
|
rspec (>= 2.6.0)
|
32
|
+
vin_exploder (>= 0.2.0)
|
31
33
|
vinquery!
|
32
34
|
webmock (>= 1.6.4)
|
data/lib/vinquery.rb
CHANGED
@@ -2,7 +2,7 @@ require 'net/http'
|
|
2
2
|
require 'nokogiri'
|
3
3
|
|
4
4
|
class Vinquery
|
5
|
-
attr_reader :attributes, :
|
5
|
+
attr_reader :attributes, :errors
|
6
6
|
|
7
7
|
def self.get(vin, options={})
|
8
8
|
request = Vinquery.new options[:url], options[:access_code], options[:report_type]
|
@@ -19,14 +19,14 @@ class Vinquery
|
|
19
19
|
|
20
20
|
def fetch(vin)
|
21
21
|
# initialize http get with vin
|
22
|
-
url_s = "#{@url}?accessCode=#{@access_code}&vin=#{vin}&reportType=#{@report_type}"
|
22
|
+
url_s = "#{@url}?accessCode=#{@access_code}&vin=#{vin}&reportType=#{@report_type}&reducable=FALSE"
|
23
23
|
url = URI.parse(URI.escape(url_s))
|
24
24
|
begin
|
25
|
-
res =
|
25
|
+
res = Net::HTTP.get url
|
26
26
|
rescue Exception => e
|
27
27
|
xml = Nokogiri::XML::Builder.new do |doc|
|
28
28
|
doc.vin(:number => vin,:status => "FAILED") {
|
29
|
-
doc.message(:Key => "VinQuery unavailable", :Value => "Oops, it looks like our
|
29
|
+
doc.message(:Key => "VinQuery unavailable", :Value => "Oops, it looks like our VIN decoding database is down right now. Please try again later.")
|
30
30
|
}
|
31
31
|
end
|
32
32
|
res = xml.to_xml
|
@@ -37,15 +37,7 @@ class Vinquery
|
|
37
37
|
def parse(doc)
|
38
38
|
set_attributes doc
|
39
39
|
set_errors_hash doc
|
40
|
-
|
41
|
-
# @attributes[:make],
|
42
|
-
# @attributes[:model],
|
43
|
-
# @attributes[:year].to_i,
|
44
|
-
# @attributes[:body_style],
|
45
|
-
# @attributes[:driveline],
|
46
|
-
# @attributes[:engine_type],
|
47
|
-
# @vin_errors.values.first,
|
48
|
-
# @attributes)
|
40
|
+
attributes
|
49
41
|
end
|
50
42
|
|
51
43
|
def set_attributes(doc)
|
@@ -58,10 +50,9 @@ class Vinquery
|
|
58
50
|
end
|
59
51
|
|
60
52
|
def set_errors_hash(doc)
|
61
|
-
@errors =
|
53
|
+
@errors = []
|
62
54
|
@valid = doc.css('vin').first.attributes['status'].value == "SUCCESS"
|
63
|
-
|
64
|
-
@errors = {doc.css('message').first.attributes['key'].value => doc.css('message').first.attributes['value'].value} unless @valid
|
55
|
+
doc.css('message').each{|msg| @errors << {msg.attributes['key'].value => msg.attributes['value'].value} } unless @valid
|
65
56
|
end
|
66
57
|
|
67
58
|
def valid?
|
data/lib/vinquery/version.rb
CHANGED
@@ -0,0 +1,36 @@
|
|
1
|
+
require 'vin_exploder/abstract_adapter'
|
2
|
+
require 'vin_exploder/explosion'
|
3
|
+
require 'vinquery'
|
4
|
+
|
5
|
+
module VinExploder
|
6
|
+
|
7
|
+
module Decode
|
8
|
+
|
9
|
+
class VinqueryAdapter < AbstractAdapter
|
10
|
+
|
11
|
+
def initialize(options)
|
12
|
+
super
|
13
|
+
end
|
14
|
+
|
15
|
+
def explode(vin)
|
16
|
+
vq = fetch(vin)
|
17
|
+
hash = normalize(vq.attributes)
|
18
|
+
hash[:errors] = vq.errors
|
19
|
+
hash
|
20
|
+
end
|
21
|
+
|
22
|
+
|
23
|
+
def fetch(vin)
|
24
|
+
Vinquery.get(vin, @options)
|
25
|
+
end
|
26
|
+
|
27
|
+
def normalize(vq_hash)
|
28
|
+
# fuel_type = vq_hash[:engine_type].match(/(GAS|DIESEL|HYBRID)/)[0]
|
29
|
+
{:year => vq_hash.delete(:model_year)}.merge(vq_hash)
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
data/spec/spec_helper.rb
CHANGED
@@ -1,4 +1,9 @@
|
|
1
|
+
$:.unshift(File.dirname(__FILE__) + '/../lib')
|
1
2
|
require "rubygems"
|
3
|
+
if ENV["COVERAGE"]
|
4
|
+
require 'simplecov'
|
5
|
+
SimpleCov.start 'rails'
|
6
|
+
end
|
2
7
|
|
3
8
|
require "bundler"
|
4
9
|
Bundler.setup
|
@@ -7,7 +12,6 @@ Bundler.setup
|
|
7
12
|
require 'rspec'
|
8
13
|
require 'webmock/rspec'
|
9
14
|
|
10
|
-
$:.unshift(File.dirname(__FILE__) + '/../lib')
|
11
15
|
require 'vinquery'
|
12
16
|
|
13
17
|
RSpec.configure do |config|
|
@@ -0,0 +1,42 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'net/http'
|
3
|
+
require 'vinquery/vin_exploder/adapter'
|
4
|
+
|
5
|
+
module VinExploder
|
6
|
+
module Decode
|
7
|
+
|
8
|
+
describe VinqueryAdapter do
|
9
|
+
|
10
|
+
before(:each) do
|
11
|
+
|
12
|
+
@query = Vinquery.new 'http://www.vinlookupservice.com', 'access_code', 'report_type_2'
|
13
|
+
@adapter = VinqueryAdapter.new({})
|
14
|
+
@test_xml_data ||= File.new("#{File.dirname(__FILE__)}/vinquery_test.xml", "r").read
|
15
|
+
stub_request(:any, /.*vinlookupservice.*/).to_return(:body => @test_xml_data, :status => 200, :headers => { 'Content-Length' => @test_xml_data.length})
|
16
|
+
end
|
17
|
+
|
18
|
+
after(:each) do
|
19
|
+
WebMock.reset!
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'should make the call to VinQuery.com and return attributes on valid number' do
|
23
|
+
Vinquery.should_receive(:new){ @query }
|
24
|
+
hash = @adapter.explode('1G1ND52F14M587843')
|
25
|
+
hash[:make].should == 'Dodge'
|
26
|
+
hash[:errors].empty?.should == true
|
27
|
+
end
|
28
|
+
|
29
|
+
it 'should include an errors hash with an invalid vin number' do
|
30
|
+
res = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>\r\n<VINquery Version="1.0.0" Report_Type="BASIC" Date="2/19/2011">\r\n <VIN Number="ABCDEFGHIJKLMNOPQ" Status="FAILED">\r\n <Message Key="5" Value="Invalid VIN number: This VIN number contains invalid letters: I,O or Q." />\r\n </VIN>\r\n</VINquery>'
|
31
|
+
stub_request(:any, /.*invalidvin.*/).to_return(:body => res, :status => 200, :headers => { 'Content-Length' => res.length})
|
32
|
+
query = Vinquery.new('http://www.invalidvin.com', 'access_code', 'report_type_2')
|
33
|
+
Vinquery.should_receive(:new){ query }
|
34
|
+
hash = @adapter.explode('BAD_VIN')
|
35
|
+
hash[:errors].size.should == 1
|
36
|
+
hash[:errors].first['5'].should == 'Invalid VIN number: This VIN number contains invalid letters: I,O or Q.'
|
37
|
+
end
|
38
|
+
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
42
|
+
end
|
data/spec/vinquery_spec.rb
CHANGED
@@ -20,8 +20,9 @@ describe Vinquery do
|
|
20
20
|
it 'should return a set of vehicle attributes given a Nokogiri document' do
|
21
21
|
doc = Nokogiri::HTML(@test_xml_data)
|
22
22
|
@query.set_attributes(doc)
|
23
|
-
@query.attributes
|
24
|
-
@query.attributes.
|
23
|
+
# @query.attributes.each_pair{|k,v| puts "#{k} - #{v}"}
|
24
|
+
@query.attributes[:body_style].should == "CREW CAB PICKUP 4-DR"
|
25
|
+
@query.attributes.count.should == 169
|
25
26
|
end
|
26
27
|
|
27
28
|
it 'should recover from poorly or unexpected xml document' do
|
@@ -31,12 +32,12 @@ describe Vinquery do
|
|
31
32
|
end
|
32
33
|
end
|
33
34
|
|
34
|
-
describe '
|
35
|
+
describe '#set_errors_hash' do
|
35
36
|
it 'should give the reason for failure within an errors hash' do
|
36
37
|
doc = Nokogiri::HTML '<?xml version="1.0" encoding="utf-8" standalone="yes"?>\r\n<VINquery Version="1.0.0" Report_Type="BASIC" Date="2/19/2011">\r\n <VIN Number="ABCDEFGHIJKLMNOPQ" Status="FAILED">\r\n <Message Key="5" Value="Invalid VIN number: This VIN number contains invalid letters: I,O or Q." />\r\n </VIN>\r\n</VINquery>'
|
37
38
|
@query.set_errors_hash(doc)
|
38
39
|
@query.valid?.should == false
|
39
|
-
@query.errors.should == {"5" => "Invalid VIN number: This VIN number contains invalid letters: I,O or Q."}
|
40
|
+
@query.errors.should == [{"5" => "Invalid VIN number: This VIN number contains invalid letters: I,O or Q."}]
|
40
41
|
end
|
41
42
|
end
|
42
43
|
|
@@ -54,7 +55,7 @@ describe Vinquery do
|
|
54
55
|
doc = @query.fetch('')
|
55
56
|
doc.css('vin').first.attributes['status'].value.should == "FAILED"
|
56
57
|
doc.css('message').first.attributes['key'].value.should == "VinQuery unavailable"
|
57
|
-
doc.css('message').first.attributes['value'].value.should == "Oops, it looks like our
|
58
|
+
doc.css('message').first.attributes['value'].value.should == "Oops, it looks like our VIN decoding database is down right now. Please try again later."
|
58
59
|
end
|
59
60
|
end
|
60
61
|
|
@@ -75,7 +76,7 @@ describe Vinquery do
|
|
75
76
|
stub_request(:any, /.*fakeurl.*/).to_return(:body => @test_xml_data, :status => 200, :headers => { 'Content-Length' => @test_xml_data.length})
|
76
77
|
query = Vinquery.get('1G1ND52F14M587843', {:url => 'http://www.fakeurl.com', :access_code => 'access_code', :report_type => 'report_type_2'})
|
77
78
|
query.valid?.should == true
|
78
|
-
query.errors.should ==
|
79
|
+
query.errors.empty?.should == true
|
79
80
|
query.attributes.class.should equal(Hash)
|
80
81
|
end
|
81
82
|
|
data/spec/vinquery_test.xml
CHANGED
@@ -1,130 +1,131 @@
|
|
1
|
-
<?xml version="1.0"
|
2
|
-
<VINquery Version="1.0.0" Report_Type="EXTENDED" Date="6/
|
3
|
-
<VIN Number="
|
4
|
-
<Vehicle VINquery_Vehicle_ID="
|
5
|
-
<Item Key="VINquery_Vehicle_ID" Value="
|
6
|
-
<Item Key="Model Year" Value="
|
7
|
-
<Item Key="Make" Value="
|
8
|
-
<Item Key="Model" Value="
|
9
|
-
<Item Key="Trim Level" Value="
|
10
|
-
<Item Key="Manufactured in" Value="
|
11
|
-
<Item Key="Production Seq. Number" Value="
|
12
|
-
<Item Key="Body Style" Value="
|
13
|
-
<Item Key="Engine Type" Value="
|
14
|
-
<Item Key="
|
15
|
-
<Item Key="Transmission-
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<VINquery Version="1.0.0" Report_Type="EXTENDED" Date="6/20/2011">
|
3
|
+
<VIN Number="3D7LU38C83G854645" Status="SUCCESS">
|
4
|
+
<Vehicle VINquery_Vehicle_ID="25593" Model_Year="2003" Make="Dodge" Model="Ram 3500" Trim_Level="ST Quad Cab Long Bed 4WD">
|
5
|
+
<Item Key="VINquery_Vehicle_ID" Value="25593" Unit=""/>
|
6
|
+
<Item Key="Model Year" Value="2003" Unit=""/>
|
7
|
+
<Item Key="Make" Value="Dodge" Unit=""/>
|
8
|
+
<Item Key="Model" Value="Ram 3500" Unit=""/>
|
9
|
+
<Item Key="Trim Level" Value="ST Quad Cab Long Bed 4WD" Unit=""/>
|
10
|
+
<Item Key="Manufactured in" Value="MEXICO" Unit=""/>
|
11
|
+
<Item Key="Production Seq. Number" Value="854645" Unit=""/>
|
12
|
+
<Item Key="Body Style" Value="CREW CAB PICKUP 4-DR" Unit=""/>
|
13
|
+
<Item Key="Engine Type" Value="5.9L L6 OHV 24V TURBO DIESEL" Unit=""/>
|
14
|
+
<Item Key="Fuel Type" Value="DIESEL" Unit=""/>
|
15
|
+
<Item Key="Transmission-short" Value="4A | 5A | 5M | 6M" Unit=""/>
|
16
|
+
<Item Key="Transmission-long" Value="4-Speed Automatic | 5-Speed Automatic | 5-Speed Manual | 6-Speed Manual" Unit=""/>
|
16
17
|
<Item Key="Driveline" Value="4WD" Unit=""/>
|
17
|
-
<Item Key="Tank" Value="
|
18
|
+
<Item Key="Tank" Value="35.00" Unit="gallon"/>
|
18
19
|
<Item Key="Fuel Economy-city" Value="No data" Unit="miles/gallon"/>
|
19
20
|
<Item Key="Fuel Economy-highway" Value="No data" Unit="miles/gallon"/>
|
20
21
|
<Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit=""/>
|
21
22
|
<Item Key="Steering Type" Value="Recirc" Unit=""/>
|
22
23
|
<Item Key="Front Brake Type" Value="Disc" Unit=""/>
|
23
24
|
<Item Key="Rear Brake Type" Value="Disc" Unit=""/>
|
24
|
-
<Item Key="Turning Diameter" Value="
|
25
|
-
<Item Key="Front Suspension" Value="
|
25
|
+
<Item Key="Turning Diameter" Value="52.00" Unit="in."/>
|
26
|
+
<Item Key="Front Suspension" Value="Live" Unit=""/>
|
26
27
|
<Item Key="Rear Suspension" Value="Live" Unit=""/>
|
27
|
-
<Item Key="Front Spring Type" Value="
|
28
|
+
<Item Key="Front Spring Type" Value="Coil" Unit=""/>
|
28
29
|
<Item Key="Rear Spring Type" Value="Leaf" Unit=""/>
|
29
|
-
<Item Key="Tires" Value="
|
30
|
-
<Item Key="Front Headroom" Value="
|
31
|
-
<Item Key="Rear Headroom" Value="
|
30
|
+
<Item Key="Tires" Value="235/80R17" Unit=""/>
|
31
|
+
<Item Key="Front Headroom" Value="40.80" Unit="in."/>
|
32
|
+
<Item Key="Rear Headroom" Value="40.00" Unit="in."/>
|
32
33
|
<Item Key="Front Legroom" Value="41.00" Unit="in."/>
|
33
|
-
<Item Key="Rear Legroom" Value="
|
34
|
-
<Item Key="Front Shoulder Room" Value="
|
35
|
-
<Item Key="Rear Shoulder Room" Value="
|
36
|
-
<Item Key="Front Hip Room" Value="
|
37
|
-
<Item Key="Rear Hip Room" Value="
|
38
|
-
<Item Key="Interior Trim" Value="
|
39
|
-
<Item Key="Exterior Color" Value="Black | Black/
|
34
|
+
<Item Key="Rear Legroom" Value="36.40" Unit="in."/>
|
35
|
+
<Item Key="Front Shoulder Room" Value="67.00" Unit="in."/>
|
36
|
+
<Item Key="Rear Shoulder Room" Value="66.70" Unit="in."/>
|
37
|
+
<Item Key="Front Hip Room" Value="65.10" Unit="in."/>
|
38
|
+
<Item Key="Rear Hip Room" Value="64.60" Unit="in."/>
|
39
|
+
<Item Key="Interior Trim" Value="Dark Slate Gray Cloth Interior | Dark Slate Gray Vinyl Interior | Taupe Cloth Interior | Taupe Vinyl Interior" Unit=""/>
|
40
|
+
<Item Key="Exterior Color" Value="Atlantic Blue Pearlcoat | Atlantic Blue/Bright Silver Metallic | Black | Black/Bright Silver Metallic | Bright Silver Metallic | Bright White | Bright White/Bright Silver Metallic | Dark Garnet Red Pearlcoat | Dark Garnet Red Pearlcoat/Bright Silver Metallic | Flame Red | Flame Red/Bright Silver Metallic | Graphite Metallic | Graphite Metallic/Bright Silver Metallic | Light Almond Pearl Metallic | Light Almond Pearl Metallic/Bright Silver Metallic | Patriot Blue Pearlcoat | Patriot Blue Pearlcoat/Bright Silver Metallic | Timberline Green Pearlcoat | Timberline Green Pearlcoat/Bright Silver Metallic" Unit=""/>
|
40
41
|
<Item Key="Curb Weight-automatic" Value="No data" Unit="lbs"/>
|
41
|
-
<Item Key="Curb Weight-manual" Value="
|
42
|
-
<Item Key="Overall Length" Value="
|
43
|
-
<Item Key="Overall Width" Value="
|
44
|
-
<Item Key="Overall Height" Value="
|
45
|
-
<Item Key="Wheelbase" Value="
|
46
|
-
<Item Key="Ground Clearance" Value="
|
47
|
-
<Item Key="Track Front" Value="
|
48
|
-
<Item Key="Track Rear" Value="
|
49
|
-
<Item Key="Cargo Length" Value="
|
50
|
-
<Item Key="Width at Wheelwell" Value="
|
51
|
-
<Item Key="Width at Wall" Value="
|
52
|
-
<Item Key="Depth" Value="20.
|
42
|
+
<Item Key="Curb Weight-manual" Value="6705" Unit="lbs"/>
|
43
|
+
<Item Key="Overall Length" Value="249.70" Unit="in."/>
|
44
|
+
<Item Key="Overall Width" Value="96.00" Unit="in."/>
|
45
|
+
<Item Key="Overall Height" Value="78.40" Unit="in."/>
|
46
|
+
<Item Key="Wheelbase" Value="160.50" Unit="in."/>
|
47
|
+
<Item Key="Ground Clearance" Value="7.00" Unit="in."/>
|
48
|
+
<Item Key="Track Front" Value="69.70" Unit="in."/>
|
49
|
+
<Item Key="Track Rear" Value="75.80" Unit="in."/>
|
50
|
+
<Item Key="Cargo Length" Value="97.90" Unit="in."/>
|
51
|
+
<Item Key="Width at Wheelwell" Value="51.00" Unit="in."/>
|
52
|
+
<Item Key="Width at Wall" Value="66.40" Unit="in."/>
|
53
|
+
<Item Key="Depth" Value="20.20" Unit="in."/>
|
53
54
|
<Item Key="Standard Seating" Value="6" Unit=""/>
|
54
|
-
<Item Key="Optional Seating" Value="
|
55
|
-
<Item Key="Passenger Volume" Value="
|
55
|
+
<Item Key="Optional Seating" Value="No data" Unit=""/>
|
56
|
+
<Item Key="Passenger Volume" Value="121.10" Unit="cu.ft."/>
|
56
57
|
<Item Key="Cargo Volume" Value="No data" Unit="cu.ft."/>
|
57
|
-
<Item Key="Standard Towing" Value="
|
58
|
-
<Item Key="Maximum Towing" Value="
|
59
|
-
<Item Key="Standard Payload" Value="
|
60
|
-
<Item Key="Maximum Payload" Value="
|
61
|
-
<Item Key="Standard GVWR" Value="
|
62
|
-
<Item Key="Maximum GVWR" Value="
|
58
|
+
<Item Key="Standard Towing" Value="10150" Unit="lbs"/>
|
59
|
+
<Item Key="Maximum Towing" Value="15350" Unit="lbs"/>
|
60
|
+
<Item Key="Standard Payload" Value="4800" Unit="lbs"/>
|
61
|
+
<Item Key="Maximum Payload" Value="4800" Unit="lbs"/>
|
62
|
+
<Item Key="Standard GVWR" Value="11500" Unit="lbs"/>
|
63
|
+
<Item Key="Maximum GVWR" Value="12000" Unit="lbs"/>
|
63
64
|
<Item Key="Basic-duration" Value="36" Unit="month"/>
|
64
65
|
<Item Key="Basic-distance" Value="36,000" Unit="mile"/>
|
65
|
-
<Item Key="Powertrain-duration" Value="
|
66
|
-
<Item Key="Powertrain-distance" Value="
|
66
|
+
<Item Key="Powertrain-duration" Value="84" Unit="month"/>
|
67
|
+
<Item Key="Powertrain-distance" Value="70,000" Unit="mile"/>
|
67
68
|
<Item Key="Rust-duration" Value="60" Unit="month"/>
|
68
|
-
<Item Key="Rust-distance" Value="
|
69
|
-
<Item Key="MSRP" Value="$
|
70
|
-
<Item Key="Dealer Invoice" Value="$
|
71
|
-
<Item Key="Destination Charge" Value="
|
69
|
+
<Item Key="Rust-distance" Value="100,000" Unit="mile"/>
|
70
|
+
<Item Key="MSRP" Value="$31,570" Unit="USD"/>
|
71
|
+
<Item Key="Dealer Invoice" Value="$27,805" Unit="USD"/>
|
72
|
+
<Item Key="Destination Charge" Value="No data" Unit="USD"/>
|
72
73
|
<Item Key="Child Safety Door Locks" Value="N/A" Unit=""/>
|
73
|
-
<Item Key="Locking Pickup Truck Tailgate" Value="
|
74
|
-
<Item Key="Power Door Locks" Value="
|
75
|
-
<Item Key="Vehicle Anti-Theft" Value="
|
74
|
+
<Item Key="Locking Pickup Truck Tailgate" Value="N/A" Unit=""/>
|
75
|
+
<Item Key="Power Door Locks" Value="N/A" Unit=""/>
|
76
|
+
<Item Key="Vehicle Anti-Theft" Value="Opt." Unit=""/>
|
76
77
|
<Item Key="4WD/AWD" Value="Std." Unit=""/>
|
77
78
|
<Item Key="ABS Brakes" Value="Std." Unit=""/>
|
78
79
|
<Item Key="Automatic Load-Leveling" Value="N/A" Unit=""/>
|
79
80
|
<Item Key="Electronic Brake Assistance" Value="N/A" Unit=""/>
|
80
|
-
<Item Key="Limited Slip Differential" Value="
|
81
|
+
<Item Key="Limited Slip Differential" Value="Opt." Unit=""/>
|
81
82
|
<Item Key="Locking Differential" Value="N/A" Unit=""/>
|
82
|
-
<Item Key="Traction Control" Value="
|
83
|
+
<Item Key="Traction Control" Value="N/A" Unit=""/>
|
83
84
|
<Item Key="Vehicle Stability Control System" Value="N/A" Unit=""/>
|
84
85
|
<Item Key="Driver Airbag" Value="Std." Unit=""/>
|
85
86
|
<Item Key="Front Side Airbag" Value="N/A" Unit=""/>
|
86
87
|
<Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit=""/>
|
87
88
|
<Item Key="Passenger Airbag" Value="Std." Unit=""/>
|
88
|
-
<Item Key="Side Head Curtain Airbag" Value="
|
89
|
+
<Item Key="Side Head Curtain Airbag" Value="Opt." Unit=""/>
|
89
90
|
<Item Key="Second Row Side Airbag" Value="N/A" Unit=""/>
|
90
91
|
<Item Key="Second Row Side Airbag with Head Protection" Value="N/A" Unit=""/>
|
91
|
-
<Item Key="Electronic Parking Aid" Value="
|
92
|
+
<Item Key="Electronic Parking Aid" Value="N/A" Unit=""/>
|
92
93
|
<Item Key="First Aid Kit" Value="N/A" Unit=""/>
|
93
94
|
<Item Key="Trunk Anti-Trap Device" Value="N/A" Unit=""/>
|
94
|
-
<Item Key="Keyless Entry" Value="
|
95
|
-
<Item Key="Remote Ignition" Value="
|
95
|
+
<Item Key="Keyless Entry" Value="N/A" Unit=""/>
|
96
|
+
<Item Key="Remote Ignition" Value="N/A" Unit=""/>
|
96
97
|
<Item Key="Air Conditioning" Value="Std." Unit=""/>
|
97
|
-
<Item Key="Separate Driver/Front Passenger Climate Controls" Value="
|
98
|
-
<Item Key="Cruise Control" Value="
|
98
|
+
<Item Key="Separate Driver/Front Passenger Climate Controls" Value="N/A" Unit=""/>
|
99
|
+
<Item Key="Cruise Control" Value="Opt." Unit=""/>
|
99
100
|
<Item Key="Tachometer" Value="Std." Unit=""/>
|
100
|
-
<Item Key="Tilt Steering" Value="
|
101
|
-
<Item Key="Tilt Steering Column" Value="
|
101
|
+
<Item Key="Tilt Steering" Value="N/A" Unit=""/>
|
102
|
+
<Item Key="Tilt Steering Column" Value="N/A" Unit=""/>
|
102
103
|
<Item Key="Heated Steering Wheel" Value="N/A" Unit=""/>
|
103
|
-
<Item Key="Leather Steering Wheel" Value="
|
104
|
-
<Item Key="Steering Wheel Mounted Controls" Value="
|
104
|
+
<Item Key="Leather Steering Wheel" Value="N/A" Unit=""/>
|
105
|
+
<Item Key="Steering Wheel Mounted Controls" Value="N/A" Unit=""/>
|
105
106
|
<Item Key="Telescopic Steering Column" Value="N/A" Unit=""/>
|
106
|
-
<Item Key="Adjustable Foot Pedals" Value="
|
107
|
-
<Item Key="Genuine Wood Trim" Value="
|
108
|
-
<Item Key="Tire Pressure Monitor" Value="
|
109
|
-
<Item Key="Trip Computer" Value="
|
107
|
+
<Item Key="Adjustable Foot Pedals" Value="N/A" Unit=""/>
|
108
|
+
<Item Key="Genuine Wood Trim" Value="Opt." Unit=""/>
|
109
|
+
<Item Key="Tire Pressure Monitor" Value="N/A" Unit=""/>
|
110
|
+
<Item Key="Trip Computer" Value="N/A" Unit=""/>
|
110
111
|
<Item Key="AM/FM Radio" Value="Std." Unit=""/>
|
111
|
-
<Item Key="Cassette Player" Value="
|
112
|
-
<Item Key="CD Player" Value="
|
112
|
+
<Item Key="Cassette Player" Value="Std." Unit=""/>
|
113
|
+
<Item Key="CD Player" Value="Opt." Unit=""/>
|
113
114
|
<Item Key="CD Changer" Value="Opt." Unit=""/>
|
114
|
-
<Item Key="DVD Player" Value="
|
115
|
+
<Item Key="DVD Player" Value="N/A" Unit=""/>
|
115
116
|
<Item Key="Voice Activated Telephone" Value="N/A" Unit=""/>
|
116
|
-
<Item Key="Navigation Aid" Value="
|
117
|
+
<Item Key="Navigation Aid" Value="N/A" Unit=""/>
|
117
118
|
<Item Key="Second Row Sound Controls" Value="N/A" Unit=""/>
|
118
|
-
<Item Key="Subwoofer" Value="
|
119
|
-
<Item Key="Telematics System" Value="
|
120
|
-
<Item Key="Driver Multi-Adjustable Power Seat" Value="
|
119
|
+
<Item Key="Subwoofer" Value="N/A" Unit=""/>
|
120
|
+
<Item Key="Telematics System" Value="N/A" Unit=""/>
|
121
|
+
<Item Key="Driver Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
|
121
122
|
<Item Key="Front Cooled Seat" Value="N/A" Unit=""/>
|
122
|
-
<Item Key="Front Heated Seat" Value="
|
123
|
+
<Item Key="Front Heated Seat" Value="N/A" Unit=""/>
|
123
124
|
<Item Key="Front Power Lumbar Support" Value="N/A" Unit=""/>
|
124
|
-
<Item Key="Front Power Memory Seat" Value="
|
125
|
-
<Item Key="Front Split Bench Seat" Value="
|
126
|
-
<Item Key="Leather Seat" Value="
|
127
|
-
<Item Key="Passenger Multi-Adjustable Power Seat" Value="
|
125
|
+
<Item Key="Front Power Memory Seat" Value="N/A" Unit=""/>
|
126
|
+
<Item Key="Front Split Bench Seat" Value="Std." Unit=""/>
|
127
|
+
<Item Key="Leather Seat" Value="N/A" Unit=""/>
|
128
|
+
<Item Key="Passenger Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
|
128
129
|
<Item Key="Second Row Folding Seat" Value="Std." Unit=""/>
|
129
130
|
<Item Key="Second Row Heated Seat" Value="N/A" Unit=""/>
|
130
131
|
<Item Key="Second Row Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
|
@@ -132,169 +133,170 @@
|
|
132
133
|
<Item Key="Third Row Removable Seat" Value="N/A" Unit=""/>
|
133
134
|
<Item Key="Cargo Area Cover" Value="Opt." Unit=""/>
|
134
135
|
<Item Key="Cargo Area Tiedowns" Value="Std." Unit=""/>
|
135
|
-
<Item Key="Cargo Net" Value="
|
136
|
-
<Item Key="Load Bearing Exterior Rack" Value="
|
136
|
+
<Item Key="Cargo Net" Value="Opt." Unit=""/>
|
137
|
+
<Item Key="Load Bearing Exterior Rack" Value="Opt." Unit=""/>
|
137
138
|
<Item Key="Pickup Truck Bed Liner" Value="Opt." Unit=""/>
|
138
139
|
<Item Key="Power Sunroof" Value="N/A" Unit=""/>
|
139
140
|
<Item Key="Removable Top" Value="N/A" Unit=""/>
|
140
141
|
<Item Key="Manual Sunroof" Value="N/A" Unit=""/>
|
141
|
-
<Item Key="Automatic Headlights" Value="
|
142
|
+
<Item Key="Automatic Headlights" Value="N/A" Unit=""/>
|
142
143
|
<Item Key="Daytime Running Lights" Value="N/A" Unit=""/>
|
143
|
-
<Item Key="Fog Lights" Value="
|
144
|
+
<Item Key="Fog Lights" Value="Opt." Unit=""/>
|
144
145
|
<Item Key="High Intensity Discharge Headlights" Value="N/A" Unit=""/>
|
145
146
|
<Item Key="Pickup Truck Cargo Box Light" Value="Std." Unit=""/>
|
146
147
|
<Item Key="Running Boards" Value="Opt." Unit=""/>
|
147
148
|
<Item Key="Front Air Dam" Value="Std." Unit=""/>
|
148
149
|
<Item Key="Rear Spoiler" Value="N/A" Unit=""/>
|
149
|
-
<Item Key="Skid Plate" Value="
|
150
|
+
<Item Key="Skid Plate" Value="N/A" Unit=""/>
|
150
151
|
<Item Key="Splash Guards" Value="Opt." Unit=""/>
|
151
152
|
<Item Key="Wind Deflector for Convertibles" Value="N/A" Unit=""/>
|
152
153
|
<Item Key="Power Sliding Side Van Door" Value="N/A" Unit=""/>
|
153
154
|
<Item Key="Power Trunk Lid" Value="N/A" Unit=""/>
|
154
|
-
<Item Key="Alloy Wheels" Value="
|
155
|
-
<Item Key="Chrome Wheels" Value="
|
155
|
+
<Item Key="Alloy Wheels" Value="N/A" Unit=""/>
|
156
|
+
<Item Key="Chrome Wheels" Value="N/A" Unit=""/>
|
156
157
|
<Item Key="Full Size Spare Tire" Value="Std." Unit=""/>
|
157
158
|
<Item Key="Run Flat Tires" Value="N/A" Unit=""/>
|
158
159
|
<Item Key="Steel Wheels" Value="Std." Unit=""/>
|
159
|
-
<Item Key="Power Windows" Value="
|
160
|
+
<Item Key="Power Windows" Value="N/A" Unit=""/>
|
160
161
|
<Item Key="Electrochromic Exterior Rearview Mirror" Value="N/A" Unit=""/>
|
161
162
|
<Item Key="Glass Rear Window on Convertible" Value="N/A" Unit=""/>
|
162
|
-
<Item Key="Heated Exterior Mirror" Value="
|
163
|
-
<Item Key="Electrochromic Interior Rearview Mirror" Value="
|
164
|
-
<Item Key="Power Adjustable Exterior Mirror" Value="
|
165
|
-
<Item Key="Deep Tinted Glass" Value="
|
163
|
+
<Item Key="Heated Exterior Mirror" Value="N/A" Unit=""/>
|
164
|
+
<Item Key="Electrochromic Interior Rearview Mirror" Value="N/A" Unit=""/>
|
165
|
+
<Item Key="Power Adjustable Exterior Mirror" Value="N/A" Unit=""/>
|
166
|
+
<Item Key="Deep Tinted Glass" Value="N/A" Unit=""/>
|
166
167
|
<Item Key="Interval Wipers" Value="Std." Unit=""/>
|
167
168
|
<Item Key="Rain Sensing Wipers" Value="N/A" Unit=""/>
|
168
169
|
<Item Key="Rear Window Defogger" Value="N/A" Unit=""/>
|
169
170
|
<Item Key="Rear Wiper" Value="N/A" Unit=""/>
|
170
171
|
<Item Key="Sliding Rear Pickup Truck Window" Value="Opt." Unit=""/>
|
171
|
-
<Item Key="Tow Hitch Receiver" Value="
|
172
|
+
<Item Key="Tow Hitch Receiver" Value="Opt." Unit=""/>
|
172
173
|
<Item Key="Towing Preparation Package" Value="Std." Unit=""/>
|
173
174
|
</Vehicle>
|
174
|
-
<Vehicle VINquery_Vehicle_ID="
|
175
|
-
<Item Key="VINquery_Vehicle_ID" Value="
|
176
|
-
<Item Key="Model Year" Value="
|
177
|
-
<Item Key="Make" Value="
|
178
|
-
<Item Key="Model" Value="
|
179
|
-
<Item Key="Trim Level" Value="
|
180
|
-
<Item Key="Manufactured in" Value="
|
181
|
-
<Item Key="Production Seq. Number" Value="
|
182
|
-
<Item Key="Body Style" Value="
|
183
|
-
<Item Key="Engine Type" Value="
|
184
|
-
<Item Key="
|
185
|
-
<Item Key="Transmission-
|
175
|
+
<Vehicle VINquery_Vehicle_ID="25594" Model_Year="2003" Make="Dodge" Model="Ram 3500" Trim_Level="SLT Quad Cab Long Bed 4WD">
|
176
|
+
<Item Key="VINquery_Vehicle_ID" Value="25594" Unit=""/>
|
177
|
+
<Item Key="Model Year" Value="2003" Unit=""/>
|
178
|
+
<Item Key="Make" Value="Dodge" Unit=""/>
|
179
|
+
<Item Key="Model" Value="Ram 3500" Unit=""/>
|
180
|
+
<Item Key="Trim Level" Value="SLT Quad Cab Long Bed 4WD" Unit=""/>
|
181
|
+
<Item Key="Manufactured in" Value="MEXICO" Unit=""/>
|
182
|
+
<Item Key="Production Seq. Number" Value="854645" Unit=""/>
|
183
|
+
<Item Key="Body Style" Value="CREW CAB PICKUP 4-DR" Unit=""/>
|
184
|
+
<Item Key="Engine Type" Value="5.9L L6 OHV 24V TURBO DIESEL" Unit=""/>
|
185
|
+
<Item Key="Fuel Type" Value="DIESEL" Unit=""/>
|
186
|
+
<Item Key="Transmission-short" Value="4A | 5A | 5M | 6M" Unit=""/>
|
187
|
+
<Item Key="Transmission-long" Value="4-Speed Automatic | 5-Speed Automatic | 5-Speed Manual | 6-Speed Manual" Unit=""/>
|
186
188
|
<Item Key="Driveline" Value="4WD" Unit=""/>
|
187
|
-
<Item Key="Tank" Value="
|
189
|
+
<Item Key="Tank" Value="35.00" Unit="gallon"/>
|
188
190
|
<Item Key="Fuel Economy-city" Value="No data" Unit="miles/gallon"/>
|
189
191
|
<Item Key="Fuel Economy-highway" Value="No data" Unit="miles/gallon"/>
|
190
192
|
<Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit=""/>
|
191
193
|
<Item Key="Steering Type" Value="Recirc" Unit=""/>
|
192
194
|
<Item Key="Front Brake Type" Value="Disc" Unit=""/>
|
193
195
|
<Item Key="Rear Brake Type" Value="Disc" Unit=""/>
|
194
|
-
<Item Key="Turning Diameter" Value="52.
|
195
|
-
<Item Key="Front Suspension" Value="
|
196
|
+
<Item Key="Turning Diameter" Value="52.00" Unit="in."/>
|
197
|
+
<Item Key="Front Suspension" Value="Live" Unit=""/>
|
196
198
|
<Item Key="Rear Suspension" Value="Live" Unit=""/>
|
197
|
-
<Item Key="Front Spring Type" Value="
|
199
|
+
<Item Key="Front Spring Type" Value="Coil" Unit=""/>
|
198
200
|
<Item Key="Rear Spring Type" Value="Leaf" Unit=""/>
|
199
|
-
<Item Key="Tires" Value="
|
200
|
-
<Item Key="Front Headroom" Value="
|
201
|
-
<Item Key="Rear Headroom" Value="
|
201
|
+
<Item Key="Tires" Value="235/80R17" Unit=""/>
|
202
|
+
<Item Key="Front Headroom" Value="40.80" Unit="in."/>
|
203
|
+
<Item Key="Rear Headroom" Value="40.00" Unit="in."/>
|
202
204
|
<Item Key="Front Legroom" Value="41.00" Unit="in."/>
|
203
|
-
<Item Key="Rear Legroom" Value="
|
204
|
-
<Item Key="Front Shoulder Room" Value="
|
205
|
-
<Item Key="Rear Shoulder Room" Value="
|
206
|
-
<Item Key="Front Hip Room" Value="
|
207
|
-
<Item Key="Rear Hip Room" Value="
|
208
|
-
<Item Key="Interior Trim" Value="
|
209
|
-
<Item Key="Exterior Color" Value="Black | Black/
|
205
|
+
<Item Key="Rear Legroom" Value="36.40" Unit="in."/>
|
206
|
+
<Item Key="Front Shoulder Room" Value="67.00" Unit="in."/>
|
207
|
+
<Item Key="Rear Shoulder Room" Value="66.70" Unit="in."/>
|
208
|
+
<Item Key="Front Hip Room" Value="65.10" Unit="in."/>
|
209
|
+
<Item Key="Rear Hip Room" Value="64.60" Unit="in."/>
|
210
|
+
<Item Key="Interior Trim" Value="Dark Slate Gray Cloth Interior | Dark Slate Gray Leather Interior | Taupe Cloth Interior | Taupe Leather Interior" Unit=""/>
|
211
|
+
<Item Key="Exterior Color" Value="Atlantic Blue Pearlcoat | Atlantic Blue/Bright Silver Metallic | Black | Black/Bright Silver Metallic | Bright Silver Metallic | Bright White | Bright White/Bright Silver Metallic | Dark Garnet Red Pearlcoat | Dark Garnet Red Pearlcoat/Bright Silver Metallic | Flame Red | Flame Red/Bright Silver Metallic | Graphite Metallic | Graphite Metallic/Bright Silver Metallic | Light Almond Pearl Metallic | Light Almond Pearl Metallic/Bright Silver Metallic | Patriot Blue Pearlcoat | Patriot Blue Pearlcoat/Bright Silver Metallic | Timberline Green Pearlcoat | Timberline Green Pearlcoat/Bright Silver Metallic" Unit=""/>
|
210
212
|
<Item Key="Curb Weight-automatic" Value="No data" Unit="lbs"/>
|
211
|
-
<Item Key="Curb Weight-manual" Value="
|
212
|
-
<Item Key="Overall Length" Value="
|
213
|
-
<Item Key="Overall Width" Value="
|
214
|
-
<Item Key="Overall Height" Value="
|
215
|
-
<Item Key="Wheelbase" Value="
|
216
|
-
<Item Key="Ground Clearance" Value="
|
217
|
-
<Item Key="Track Front" Value="
|
218
|
-
<Item Key="Track Rear" Value="
|
219
|
-
<Item Key="Cargo Length" Value="
|
220
|
-
<Item Key="Width at Wheelwell" Value="
|
221
|
-
<Item Key="Width at Wall" Value="
|
222
|
-
<Item Key="Depth" Value="20.
|
213
|
+
<Item Key="Curb Weight-manual" Value="6805" Unit="lbs"/>
|
214
|
+
<Item Key="Overall Length" Value="249.70" Unit="in."/>
|
215
|
+
<Item Key="Overall Width" Value="96.00" Unit="in."/>
|
216
|
+
<Item Key="Overall Height" Value="78.40" Unit="in."/>
|
217
|
+
<Item Key="Wheelbase" Value="160.50" Unit="in."/>
|
218
|
+
<Item Key="Ground Clearance" Value="7.00" Unit="in."/>
|
219
|
+
<Item Key="Track Front" Value="69.70" Unit="in."/>
|
220
|
+
<Item Key="Track Rear" Value="75.80" Unit="in."/>
|
221
|
+
<Item Key="Cargo Length" Value="97.90" Unit="in."/>
|
222
|
+
<Item Key="Width at Wheelwell" Value="51.00" Unit="in."/>
|
223
|
+
<Item Key="Width at Wall" Value="66.40" Unit="in."/>
|
224
|
+
<Item Key="Depth" Value="20.20" Unit="in."/>
|
223
225
|
<Item Key="Standard Seating" Value="6" Unit=""/>
|
224
|
-
<Item Key="Optional Seating" Value="
|
225
|
-
<Item Key="Passenger Volume" Value="
|
226
|
+
<Item Key="Optional Seating" Value="No data" Unit=""/>
|
227
|
+
<Item Key="Passenger Volume" Value="121.10" Unit="cu.ft."/>
|
226
228
|
<Item Key="Cargo Volume" Value="No data" Unit="cu.ft."/>
|
227
|
-
<Item Key="Standard Towing" Value="
|
228
|
-
<Item Key="Maximum Towing" Value="
|
229
|
-
<Item Key="Standard Payload" Value="
|
230
|
-
<Item Key="Maximum Payload" Value="
|
231
|
-
<Item Key="Standard GVWR" Value="
|
232
|
-
<Item Key="Maximum GVWR" Value="
|
229
|
+
<Item Key="Standard Towing" Value="10050" Unit="lbs"/>
|
230
|
+
<Item Key="Maximum Towing" Value="15250" Unit="lbs"/>
|
231
|
+
<Item Key="Standard Payload" Value="4700" Unit="lbs"/>
|
232
|
+
<Item Key="Maximum Payload" Value="4700" Unit="lbs"/>
|
233
|
+
<Item Key="Standard GVWR" Value="11500" Unit="lbs"/>
|
234
|
+
<Item Key="Maximum GVWR" Value="12000" Unit="lbs"/>
|
233
235
|
<Item Key="Basic-duration" Value="36" Unit="month"/>
|
234
236
|
<Item Key="Basic-distance" Value="36,000" Unit="mile"/>
|
235
|
-
<Item Key="Powertrain-duration" Value="
|
236
|
-
<Item Key="Powertrain-distance" Value="
|
237
|
+
<Item Key="Powertrain-duration" Value="84" Unit="month"/>
|
238
|
+
<Item Key="Powertrain-distance" Value="70,000" Unit="mile"/>
|
237
239
|
<Item Key="Rust-duration" Value="60" Unit="month"/>
|
238
|
-
<Item Key="Rust-distance" Value="
|
239
|
-
<Item Key="MSRP" Value="$
|
240
|
-
<Item Key="Dealer Invoice" Value="$
|
241
|
-
<Item Key="Destination Charge" Value="
|
240
|
+
<Item Key="Rust-distance" Value="100,000" Unit="mile"/>
|
241
|
+
<Item Key="MSRP" Value="$32,770" Unit="USD"/>
|
242
|
+
<Item Key="Dealer Invoice" Value="$28,837" Unit="USD"/>
|
243
|
+
<Item Key="Destination Charge" Value="No data" Unit="USD"/>
|
242
244
|
<Item Key="Child Safety Door Locks" Value="N/A" Unit=""/>
|
243
|
-
<Item Key="Locking Pickup Truck Tailgate" Value="
|
245
|
+
<Item Key="Locking Pickup Truck Tailgate" Value="N/A" Unit=""/>
|
244
246
|
<Item Key="Power Door Locks" Value="Std." Unit=""/>
|
245
|
-
<Item Key="Vehicle Anti-Theft" Value="
|
247
|
+
<Item Key="Vehicle Anti-Theft" Value="N/A" Unit=""/>
|
246
248
|
<Item Key="4WD/AWD" Value="Std." Unit=""/>
|
247
249
|
<Item Key="ABS Brakes" Value="Std." Unit=""/>
|
248
250
|
<Item Key="Automatic Load-Leveling" Value="N/A" Unit=""/>
|
249
251
|
<Item Key="Electronic Brake Assistance" Value="N/A" Unit=""/>
|
250
|
-
<Item Key="Limited Slip Differential" Value="
|
252
|
+
<Item Key="Limited Slip Differential" Value="Opt." Unit=""/>
|
251
253
|
<Item Key="Locking Differential" Value="N/A" Unit=""/>
|
252
|
-
<Item Key="Traction Control" Value="
|
254
|
+
<Item Key="Traction Control" Value="N/A" Unit=""/>
|
253
255
|
<Item Key="Vehicle Stability Control System" Value="N/A" Unit=""/>
|
254
256
|
<Item Key="Driver Airbag" Value="Std." Unit=""/>
|
255
257
|
<Item Key="Front Side Airbag" Value="N/A" Unit=""/>
|
256
258
|
<Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit=""/>
|
257
259
|
<Item Key="Passenger Airbag" Value="Std." Unit=""/>
|
258
|
-
<Item Key="Side Head Curtain Airbag" Value="
|
260
|
+
<Item Key="Side Head Curtain Airbag" Value="Opt." Unit=""/>
|
259
261
|
<Item Key="Second Row Side Airbag" Value="N/A" Unit=""/>
|
260
262
|
<Item Key="Second Row Side Airbag with Head Protection" Value="N/A" Unit=""/>
|
261
|
-
<Item Key="Electronic Parking Aid" Value="
|
263
|
+
<Item Key="Electronic Parking Aid" Value="N/A" Unit=""/>
|
262
264
|
<Item Key="First Aid Kit" Value="N/A" Unit=""/>
|
263
265
|
<Item Key="Trunk Anti-Trap Device" Value="N/A" Unit=""/>
|
264
|
-
<Item Key="Keyless Entry" Value="
|
265
|
-
<Item Key="Remote Ignition" Value="
|
266
|
+
<Item Key="Keyless Entry" Value="Opt." Unit=""/>
|
267
|
+
<Item Key="Remote Ignition" Value="N/A" Unit=""/>
|
266
268
|
<Item Key="Air Conditioning" Value="Std." Unit=""/>
|
267
|
-
<Item Key="Separate Driver/Front Passenger Climate Controls" Value="
|
269
|
+
<Item Key="Separate Driver/Front Passenger Climate Controls" Value="N/A" Unit=""/>
|
268
270
|
<Item Key="Cruise Control" Value="Std." Unit=""/>
|
269
271
|
<Item Key="Tachometer" Value="Std." Unit=""/>
|
270
272
|
<Item Key="Tilt Steering" Value="Std." Unit=""/>
|
271
273
|
<Item Key="Tilt Steering Column" Value="Std." Unit=""/>
|
272
274
|
<Item Key="Heated Steering Wheel" Value="N/A" Unit=""/>
|
273
|
-
<Item Key="Leather Steering Wheel" Value="
|
275
|
+
<Item Key="Leather Steering Wheel" Value="Opt." Unit=""/>
|
274
276
|
<Item Key="Steering Wheel Mounted Controls" Value="Std." Unit=""/>
|
275
277
|
<Item Key="Telescopic Steering Column" Value="N/A" Unit=""/>
|
276
278
|
<Item Key="Adjustable Foot Pedals" Value="Opt." Unit=""/>
|
277
|
-
<Item Key="Genuine Wood Trim" Value="
|
278
|
-
<Item Key="Tire Pressure Monitor" Value="
|
279
|
+
<Item Key="Genuine Wood Trim" Value="Opt." Unit=""/>
|
280
|
+
<Item Key="Tire Pressure Monitor" Value="N/A" Unit=""/>
|
279
281
|
<Item Key="Trip Computer" Value="Std." Unit=""/>
|
280
282
|
<Item Key="AM/FM Radio" Value="Std." Unit=""/>
|
281
|
-
<Item Key="Cassette Player" Value="
|
283
|
+
<Item Key="Cassette Player" Value="Opt." Unit=""/>
|
282
284
|
<Item Key="CD Player" Value="Std." Unit=""/>
|
283
285
|
<Item Key="CD Changer" Value="Opt." Unit=""/>
|
284
|
-
<Item Key="DVD Player" Value="
|
286
|
+
<Item Key="DVD Player" Value="N/A" Unit=""/>
|
285
287
|
<Item Key="Voice Activated Telephone" Value="N/A" Unit=""/>
|
286
|
-
<Item Key="Navigation Aid" Value="
|
288
|
+
<Item Key="Navigation Aid" Value="N/A" Unit=""/>
|
287
289
|
<Item Key="Second Row Sound Controls" Value="N/A" Unit=""/>
|
288
|
-
<Item Key="Subwoofer" Value="
|
289
|
-
<Item Key="Telematics System" Value="
|
290
|
-
<Item Key="Driver Multi-Adjustable Power Seat" Value="
|
290
|
+
<Item Key="Subwoofer" Value="N/A" Unit=""/>
|
291
|
+
<Item Key="Telematics System" Value="N/A" Unit=""/>
|
292
|
+
<Item Key="Driver Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
|
291
293
|
<Item Key="Front Cooled Seat" Value="N/A" Unit=""/>
|
292
|
-
<Item Key="Front Heated Seat" Value="
|
294
|
+
<Item Key="Front Heated Seat" Value="N/A" Unit=""/>
|
293
295
|
<Item Key="Front Power Lumbar Support" Value="N/A" Unit=""/>
|
294
|
-
<Item Key="Front Power Memory Seat" Value="
|
295
|
-
<Item Key="Front Split Bench Seat" Value="
|
296
|
+
<Item Key="Front Power Memory Seat" Value="N/A" Unit=""/>
|
297
|
+
<Item Key="Front Split Bench Seat" Value="Std." Unit=""/>
|
296
298
|
<Item Key="Leather Seat" Value="Opt." Unit=""/>
|
297
|
-
<Item Key="Passenger Multi-Adjustable Power Seat" Value="
|
299
|
+
<Item Key="Passenger Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
|
298
300
|
<Item Key="Second Row Folding Seat" Value="Std." Unit=""/>
|
299
301
|
<Item Key="Second Row Heated Seat" Value="N/A" Unit=""/>
|
300
302
|
<Item Key="Second Row Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
|
@@ -302,27 +304,27 @@
|
|
302
304
|
<Item Key="Third Row Removable Seat" Value="N/A" Unit=""/>
|
303
305
|
<Item Key="Cargo Area Cover" Value="Opt." Unit=""/>
|
304
306
|
<Item Key="Cargo Area Tiedowns" Value="Std." Unit=""/>
|
305
|
-
<Item Key="Cargo Net" Value="
|
306
|
-
<Item Key="Load Bearing Exterior Rack" Value="
|
307
|
+
<Item Key="Cargo Net" Value="Opt." Unit=""/>
|
308
|
+
<Item Key="Load Bearing Exterior Rack" Value="Opt." Unit=""/>
|
307
309
|
<Item Key="Pickup Truck Bed Liner" Value="Opt." Unit=""/>
|
308
310
|
<Item Key="Power Sunroof" Value="N/A" Unit=""/>
|
309
311
|
<Item Key="Removable Top" Value="N/A" Unit=""/>
|
310
312
|
<Item Key="Manual Sunroof" Value="N/A" Unit=""/>
|
311
|
-
<Item Key="Automatic Headlights" Value="
|
313
|
+
<Item Key="Automatic Headlights" Value="N/A" Unit=""/>
|
312
314
|
<Item Key="Daytime Running Lights" Value="N/A" Unit=""/>
|
313
|
-
<Item Key="Fog Lights" Value="
|
315
|
+
<Item Key="Fog Lights" Value="Opt." Unit=""/>
|
314
316
|
<Item Key="High Intensity Discharge Headlights" Value="N/A" Unit=""/>
|
315
317
|
<Item Key="Pickup Truck Cargo Box Light" Value="Std." Unit=""/>
|
316
318
|
<Item Key="Running Boards" Value="Opt." Unit=""/>
|
317
319
|
<Item Key="Front Air Dam" Value="Std." Unit=""/>
|
318
320
|
<Item Key="Rear Spoiler" Value="N/A" Unit=""/>
|
319
|
-
<Item Key="Skid Plate" Value="
|
321
|
+
<Item Key="Skid Plate" Value="N/A" Unit=""/>
|
320
322
|
<Item Key="Splash Guards" Value="Opt." Unit=""/>
|
321
323
|
<Item Key="Wind Deflector for Convertibles" Value="N/A" Unit=""/>
|
322
324
|
<Item Key="Power Sliding Side Van Door" Value="N/A" Unit=""/>
|
323
325
|
<Item Key="Power Trunk Lid" Value="N/A" Unit=""/>
|
324
326
|
<Item Key="Alloy Wheels" Value="Opt." Unit=""/>
|
325
|
-
<Item Key="Chrome Wheels" Value="
|
327
|
+
<Item Key="Chrome Wheels" Value="N/A" Unit=""/>
|
326
328
|
<Item Key="Full Size Spare Tire" Value="Std." Unit=""/>
|
327
329
|
<Item Key="Run Flat Tires" Value="N/A" Unit=""/>
|
328
330
|
<Item Key="Steel Wheels" Value="Std." Unit=""/>
|
@@ -332,477 +334,138 @@
|
|
332
334
|
<Item Key="Heated Exterior Mirror" Value="Std." Unit=""/>
|
333
335
|
<Item Key="Electrochromic Interior Rearview Mirror" Value="Opt." Unit=""/>
|
334
336
|
<Item Key="Power Adjustable Exterior Mirror" Value="Std." Unit=""/>
|
335
|
-
<Item Key="Deep Tinted Glass" Value="
|
337
|
+
<Item Key="Deep Tinted Glass" Value="N/A" Unit=""/>
|
336
338
|
<Item Key="Interval Wipers" Value="Std." Unit=""/>
|
337
339
|
<Item Key="Rain Sensing Wipers" Value="N/A" Unit=""/>
|
338
|
-
<Item Key="Rear Window Defogger" Value="
|
340
|
+
<Item Key="Rear Window Defogger" Value="Opt." Unit=""/>
|
339
341
|
<Item Key="Rear Wiper" Value="N/A" Unit=""/>
|
340
342
|
<Item Key="Sliding Rear Pickup Truck Window" Value="Opt." Unit=""/>
|
341
|
-
<Item Key="Tow Hitch Receiver" Value="
|
342
|
-
<Item Key="Towing Preparation Package" Value="Std." Unit=""/>
|
343
|
-
</Vehicle>
|
344
|
-
<Vehicle VINquery_Vehicle_ID="38256" Model_Year="2009" Make="Ford" Model="F-350 SD" Trim_Level="Lariat SuperCab 4WD">
|
345
|
-
<Item Key="VINquery_Vehicle_ID" Value="38256" Unit=""/>
|
346
|
-
<Item Key="Model Year" Value="2009" Unit=""/>
|
347
|
-
<Item Key="Make" Value="Ford" Unit=""/>
|
348
|
-
<Item Key="Model" Value="F-350 SD" Unit=""/>
|
349
|
-
<Item Key="Trim Level" Value="Lariat SuperCab 4WD" Unit=""/>
|
350
|
-
<Item Key="Manufactured in" Value="UNITED STATES" Unit=""/>
|
351
|
-
<Item Key="Production Seq. Number" Value="B18840" Unit=""/>
|
352
|
-
<Item Key="Body Style" Value="EXTENDED CAB PICKUP 4-DR" Unit=""/>
|
353
|
-
<Item Key="Engine Type" Value="6.4L V8 OHV 32V TURBO DIESEL" Unit=""/>
|
354
|
-
<Item Key="Transmission-short" Value="5A | 6M" Unit=""/>
|
355
|
-
<Item Key="Transmission-long" Value="5-Speed Automatic | 6-Speed Manual" Unit=""/>
|
356
|
-
<Item Key="Driveline" Value="4WD" Unit=""/>
|
357
|
-
<Item Key="Tank" Value="30.50" Unit="gallon"/>
|
358
|
-
<Item Key="Fuel Economy-city" Value="No data" Unit="miles/gallon"/>
|
359
|
-
<Item Key="Fuel Economy-highway" Value="No data" Unit="miles/gallon"/>
|
360
|
-
<Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit=""/>
|
361
|
-
<Item Key="Steering Type" Value="Recirc" Unit=""/>
|
362
|
-
<Item Key="Front Brake Type" Value="Disc" Unit=""/>
|
363
|
-
<Item Key="Rear Brake Type" Value="Disc" Unit=""/>
|
364
|
-
<Item Key="Turning Diameter" Value="47.50" Unit="in."/>
|
365
|
-
<Item Key="Front Suspension" Value="Ind" Unit=""/>
|
366
|
-
<Item Key="Rear Suspension" Value="Live" Unit=""/>
|
367
|
-
<Item Key="Front Spring Type" Value="Leaf" Unit=""/>
|
368
|
-
<Item Key="Rear Spring Type" Value="Leaf" Unit=""/>
|
369
|
-
<Item Key="Tires" Value="275/70R18" Unit=""/>
|
370
|
-
<Item Key="Front Headroom" Value="41.40" Unit="in."/>
|
371
|
-
<Item Key="Rear Headroom" Value="38.40" Unit="in."/>
|
372
|
-
<Item Key="Front Legroom" Value="41.00" Unit="in."/>
|
373
|
-
<Item Key="Rear Legroom" Value="31.80" Unit="in."/>
|
374
|
-
<Item Key="Front Shoulder Room" Value="68.00" Unit="in."/>
|
375
|
-
<Item Key="Rear Shoulder Room" Value="68.10" Unit="in."/>
|
376
|
-
<Item Key="Front Hip Room" Value="67.60" Unit="in."/>
|
377
|
-
<Item Key="Rear Hip Room" Value="67.30" Unit="in."/>
|
378
|
-
<Item Key="Interior Trim" Value="Camel Leather Interior | Ebony Leather Interior | Medium Stone Leather Interior" Unit=""/>
|
379
|
-
<Item Key="Exterior Color" Value="Black | Black/Brilliant Silver Metallic | Black/Pueblo Gold Metallic | Brilliant Silver Metallic | Dark Blue Pearl Metallic | Dark Blue Pearl Metallic/Brilliant Silver Metallic | Dark Blue Pearl Metallic/Pueblo Gold Metallic | Dark Stone Metallic | Dark Stone Metallic/Pueblo Gold Metallic | Forest Green Metallic | Forest Green Metallic/Brilliant Silver Metallic | Forest Green Metallic/Pueblo Gold Metallic | Oxford White | Oxford White/Brilliant Silver Metallic | Oxford White/Pueblo Gold Metallic | Pueblo Gold Metallic | Pueblo Gold Metallic/Black | Red | Royal Red Metallic | Royal Red Metallic/Black | Royal Red Metallic/Brilliant Silver Metallic | Royal Red Metallic/Pueblo Gold Metallic | Sterling Grey Metallic | Sterling Grey Metallic/Black" Unit=""/>
|
380
|
-
<Item Key="Curb Weight-automatic" Value="No data" Unit="lbs"/>
|
381
|
-
<Item Key="Curb Weight-manual" Value="6523" Unit="lbs"/>
|
382
|
-
<Item Key="Overall Length" Value="231.80" Unit="in."/>
|
383
|
-
<Item Key="Overall Width" Value="79.90" Unit="in."/>
|
384
|
-
<Item Key="Overall Height" Value="80.60" Unit="in."/>
|
385
|
-
<Item Key="Wheelbase" Value="141.80" Unit="in."/>
|
386
|
-
<Item Key="Ground Clearance" Value="No data" Unit="in."/>
|
387
|
-
<Item Key="Track Front" Value="68.40" Unit="in."/>
|
388
|
-
<Item Key="Track Rear" Value="68.10" Unit="in."/>
|
389
|
-
<Item Key="Cargo Length" Value="81.80" Unit="in."/>
|
390
|
-
<Item Key="Width at Wheelwell" Value="50.90" Unit="in."/>
|
391
|
-
<Item Key="Width at Wall" Value="63.90" Unit="in."/>
|
392
|
-
<Item Key="Depth" Value="20.10" Unit="in."/>
|
393
|
-
<Item Key="Standard Seating" Value="6" Unit=""/>
|
394
|
-
<Item Key="Optional Seating" Value="5" Unit=""/>
|
395
|
-
<Item Key="Passenger Volume" Value="No data" Unit="cu.ft."/>
|
396
|
-
<Item Key="Cargo Volume" Value="No data" Unit="cu.ft."/>
|
397
|
-
<Item Key="Standard Towing" Value="5000" Unit="lbs"/>
|
398
|
-
<Item Key="Maximum Towing" Value="16800" Unit="lbs"/>
|
399
|
-
<Item Key="Standard Payload" Value="No data" Unit="lbs"/>
|
400
|
-
<Item Key="Maximum Payload" Value="4070" Unit="lbs"/>
|
401
|
-
<Item Key="Standard GVWR" Value="10600" Unit="lbs"/>
|
402
|
-
<Item Key="Maximum GVWR" Value="11200" 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="$39,145" Unit="USD"/>
|
410
|
-
<Item Key="Dealer Invoice" Value="$35,940" Unit="USD"/>
|
411
|
-
<Item Key="Destination Charge" Value="$975" Unit="USD"/>
|
412
|
-
<Item Key="Child Safety Door Locks" Value="N/A" Unit=""/>
|
413
|
-
<Item Key="Locking Pickup Truck Tailgate" Value="Std." 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="Std." 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="Opt." Unit=""/>
|
421
|
-
<Item Key="Locking Differential" Value="N/A" Unit=""/>
|
422
|
-
<Item Key="Traction Control" Value="Opt." Unit=""/>
|
423
|
-
<Item Key="Vehicle Stability Control System" Value="N/A" Unit=""/>
|
424
|
-
<Item Key="Driver Airbag" Value="Std." Unit=""/>
|
425
|
-
<Item Key="Front Side Airbag" Value="N/A" 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="N/A" 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="Std." Unit=""/>
|
432
|
-
<Item Key="First Aid Kit" Value="N/A" Unit=""/>
|
433
|
-
<Item Key="Trunk Anti-Trap Device" Value="N/A" Unit=""/>
|
434
|
-
<Item Key="Keyless Entry" Value="Std." Unit=""/>
|
435
|
-
<Item Key="Remote Ignition" Value="Opt." Unit=""/>
|
436
|
-
<Item Key="Air Conditioning" Value="Std." Unit=""/>
|
437
|
-
<Item Key="Separate Driver/Front Passenger Climate Controls" Value="Std." 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="Opt." 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="Opt." Unit=""/>
|
454
|
-
<Item Key="DVD Player" Value="Opt." 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="Std." Unit=""/>
|
460
|
-
<Item Key="Driver Multi-Adjustable Power Seat" Value="Std." Unit=""/>
|
461
|
-
<Item Key="Front Cooled Seat" Value="N/A" Unit=""/>
|
462
|
-
<Item Key="Front Heated Seat" Value="Std." Unit=""/>
|
463
|
-
<Item Key="Front Power Lumbar Support" Value="N/A" Unit=""/>
|
464
|
-
<Item Key="Front Power Memory Seat" Value="Opt." Unit=""/>
|
465
|
-
<Item Key="Front Split Bench Seat" Value="Opt." Unit=""/>
|
466
|
-
<Item Key="Leather Seat" Value="Std." Unit=""/>
|
467
|
-
<Item Key="Passenger Multi-Adjustable Power Seat" Value="Std." 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="Opt." Unit=""/>
|
474
|
-
<Item Key="Cargo Area Tiedowns" Value="Std." Unit=""/>
|
475
|
-
<Item Key="Cargo Net" Value="N/A" Unit=""/>
|
476
|
-
<Item Key="Load Bearing Exterior Rack" Value="N/A" Unit=""/>
|
477
|
-
<Item Key="Pickup Truck Bed Liner" Value="Opt." Unit=""/>
|
478
|
-
<Item Key="Power Sunroof" Value="N/A" Unit=""/>
|
479
|
-
<Item Key="Removable Top" Value="N/A" Unit=""/>
|
480
|
-
<Item Key="Manual Sunroof" Value="N/A" Unit=""/>
|
481
|
-
<Item Key="Automatic Headlights" Value="Std." Unit=""/>
|
482
|
-
<Item Key="Daytime Running Lights" Value="N/A" 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="Std." Unit=""/>
|
486
|
-
<Item Key="Running Boards" Value="Opt." Unit=""/>
|
487
|
-
<Item Key="Front Air Dam" Value="Std." Unit=""/>
|
488
|
-
<Item Key="Rear Spoiler" Value="N/A" Unit=""/>
|
489
|
-
<Item Key="Skid Plate" Value="Opt." 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="Std." 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="Std." Unit=""/>
|
503
|
-
<Item Key="Electrochromic Interior Rearview Mirror" Value="Std." Unit=""/>
|
504
|
-
<Item Key="Power Adjustable Exterior Mirror" Value="Std." Unit=""/>
|
505
|
-
<Item Key="Deep Tinted Glass" Value="Std." 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="N/A" Unit=""/>
|
509
|
-
<Item Key="Rear Wiper" Value="N/A" Unit=""/>
|
510
|
-
<Item Key="Sliding Rear Pickup Truck Window" Value="Std." Unit=""/>
|
511
|
-
<Item Key="Tow Hitch Receiver" Value="Std." Unit=""/>
|
343
|
+
<Item Key="Tow Hitch Receiver" Value="Opt." Unit=""/>
|
512
344
|
<Item Key="Towing Preparation Package" Value="Std." Unit=""/>
|
513
345
|
</Vehicle>
|
514
|
-
<Vehicle VINquery_Vehicle_ID="
|
515
|
-
<Item Key="VINquery_Vehicle_ID" Value="
|
516
|
-
<Item Key="Model Year" Value="
|
517
|
-
<Item Key="Make" Value="
|
518
|
-
<Item Key="Model" Value="
|
519
|
-
<Item Key="Trim Level" Value="
|
520
|
-
<Item Key="Manufactured in" Value="
|
521
|
-
<Item Key="Production Seq. Number" Value="
|
522
|
-
<Item Key="Body Style" Value="
|
523
|
-
<Item Key="Engine Type" Value="
|
524
|
-
<Item Key="
|
525
|
-
<Item Key="Transmission-
|
346
|
+
<Vehicle VINquery_Vehicle_ID="25596" Model_Year="2003" Make="Dodge" Model="Ram 3500" Trim_Level="ST Quad Cab Short Bed 4WD">
|
347
|
+
<Item Key="VINquery_Vehicle_ID" Value="25596" Unit=""/>
|
348
|
+
<Item Key="Model Year" Value="2003" Unit=""/>
|
349
|
+
<Item Key="Make" Value="Dodge" Unit=""/>
|
350
|
+
<Item Key="Model" Value="Ram 3500" Unit=""/>
|
351
|
+
<Item Key="Trim Level" Value="ST Quad Cab Short Bed 4WD" Unit=""/>
|
352
|
+
<Item Key="Manufactured in" Value="MEXICO" Unit=""/>
|
353
|
+
<Item Key="Production Seq. Number" Value="854645" Unit=""/>
|
354
|
+
<Item Key="Body Style" Value="CREW CAB PICKUP 4-DR" Unit=""/>
|
355
|
+
<Item Key="Engine Type" Value="5.9L L6 OHV 24V TURBO DIESEL" Unit=""/>
|
356
|
+
<Item Key="Fuel Type" Value="DIESEL" Unit=""/>
|
357
|
+
<Item Key="Transmission-short" Value="4A | 5M | 6M" Unit=""/>
|
358
|
+
<Item Key="Transmission-long" Value="4-Speed Automatic | 5-Speed Manual | 6-Speed Manual" Unit=""/>
|
526
359
|
<Item Key="Driveline" Value="4WD" Unit=""/>
|
527
|
-
<Item Key="Tank" Value="
|
360
|
+
<Item Key="Tank" Value="34.00" Unit="gallon"/>
|
528
361
|
<Item Key="Fuel Economy-city" Value="No data" Unit="miles/gallon"/>
|
529
362
|
<Item Key="Fuel Economy-highway" Value="No data" Unit="miles/gallon"/>
|
530
363
|
<Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit=""/>
|
531
364
|
<Item Key="Steering Type" Value="Recirc" Unit=""/>
|
532
365
|
<Item Key="Front Brake Type" Value="Disc" Unit=""/>
|
533
366
|
<Item Key="Rear Brake Type" Value="Disc" Unit=""/>
|
534
|
-
<Item Key="Turning Diameter" Value="
|
535
|
-
<Item Key="Front Suspension" Value="
|
367
|
+
<Item Key="Turning Diameter" Value="48.90" Unit="in."/>
|
368
|
+
<Item Key="Front Suspension" Value="Live" Unit=""/>
|
536
369
|
<Item Key="Rear Suspension" Value="Live" Unit=""/>
|
537
|
-
<Item Key="Front Spring Type" Value="
|
370
|
+
<Item Key="Front Spring Type" Value="Coil" Unit=""/>
|
538
371
|
<Item Key="Rear Spring Type" Value="Leaf" Unit=""/>
|
539
|
-
<Item Key="Tires" Value="
|
540
|
-
<Item Key="Front Headroom" Value="
|
541
|
-
<Item Key="Rear Headroom" Value="
|
372
|
+
<Item Key="Tires" Value="265/70R17" Unit=""/>
|
373
|
+
<Item Key="Front Headroom" Value="40.80" Unit="in."/>
|
374
|
+
<Item Key="Rear Headroom" Value="40.00" Unit="in."/>
|
542
375
|
<Item Key="Front Legroom" Value="41.00" Unit="in."/>
|
543
|
-
<Item Key="Rear Legroom" Value="
|
544
|
-
<Item Key="Front Shoulder Room" Value="
|
545
|
-
<Item Key="Rear Shoulder Room" Value="
|
546
|
-
<Item Key="Front Hip Room" Value="
|
547
|
-
<Item Key="Rear Hip Room" Value="
|
548
|
-
<Item Key="Interior Trim" Value="
|
549
|
-
<Item Key="Exterior Color" Value="
|
376
|
+
<Item Key="Rear Legroom" Value="36.40" Unit="in."/>
|
377
|
+
<Item Key="Front Shoulder Room" Value="67.00" Unit="in."/>
|
378
|
+
<Item Key="Rear Shoulder Room" Value="66.70" Unit="in."/>
|
379
|
+
<Item Key="Front Hip Room" Value="65.10" Unit="in."/>
|
380
|
+
<Item Key="Rear Hip Room" Value="64.60" Unit="in."/>
|
381
|
+
<Item Key="Interior Trim" Value="Dark Slate Gray Cloth Interior | Dark Slate Gray Vinyl Interior | Taupe Cloth Interior | Taupe Vinyl Interior" Unit=""/>
|
382
|
+
<Item Key="Exterior Color" Value="Atlantic Blue Pearlcoat | Atlantic Blue/Bright Silver Metallic | Black | Black/Bright Silver Metallic | Bright Silver Metallic | Bright White | Bright White/Bright Silver Metallic | Dark Garnet Red Pearlcoat | Dark Garnet Red Pearlcoat/Bright Silver Metallic | Flame Red | Flame Red/Bright Silver Metallic | Graphite Metallic | Graphite Metallic/Bright Silver Metallic | Light Almond Pearl Metallic | Light Almond Pearl Metallic/Bright Silver Metallic | Patriot Blue Pearlcoat | Patriot Blue Pearlcoat/Bright Silver Metallic | Timberline Green Pearlcoat | Timberline Green Pearlcoat/Bright Silver Metallic" Unit=""/>
|
550
383
|
<Item Key="Curb Weight-automatic" Value="No data" Unit="lbs"/>
|
551
|
-
<Item Key="Curb Weight-manual" Value="
|
552
|
-
<Item Key="Overall Length" Value="
|
384
|
+
<Item Key="Curb Weight-manual" Value="6868" Unit="lbs"/>
|
385
|
+
<Item Key="Overall Length" Value="227.70" Unit="in."/>
|
553
386
|
<Item Key="Overall Width" Value="79.90" Unit="in."/>
|
554
|
-
<Item Key="Overall Height" Value="
|
555
|
-
<Item Key="Wheelbase" Value="
|
556
|
-
<Item Key="Ground Clearance" Value="
|
557
|
-
<Item Key="Track Front" Value="
|
558
|
-
<Item Key="Track Rear" Value="68.
|
559
|
-
<Item Key="Cargo Length" Value="
|
560
|
-
<Item Key="Width at Wheelwell" Value="
|
561
|
-
<Item Key="Width at Wall" Value="
|
562
|
-
<Item Key="Depth" Value="20.
|
387
|
+
<Item Key="Overall Height" Value="79.20" Unit="in."/>
|
388
|
+
<Item Key="Wheelbase" Value="140.50" Unit="in."/>
|
389
|
+
<Item Key="Ground Clearance" Value="8.50" Unit="in."/>
|
390
|
+
<Item Key="Track Front" Value="69.70" Unit="in."/>
|
391
|
+
<Item Key="Track Rear" Value="68.20" Unit="in."/>
|
392
|
+
<Item Key="Cargo Length" Value="75.90" Unit="in."/>
|
393
|
+
<Item Key="Width at Wheelwell" Value="51.00" Unit="in."/>
|
394
|
+
<Item Key="Width at Wall" Value="66.40" Unit="in."/>
|
395
|
+
<Item Key="Depth" Value="20.20" Unit="in."/>
|
563
396
|
<Item Key="Standard Seating" Value="6" Unit=""/>
|
564
|
-
<Item Key="Optional Seating" Value="
|
565
|
-
<Item Key="Passenger Volume" Value="
|
397
|
+
<Item Key="Optional Seating" Value="No data" Unit=""/>
|
398
|
+
<Item Key="Passenger Volume" Value="121.10" Unit="cu.ft."/>
|
566
399
|
<Item Key="Cargo Volume" Value="No data" Unit="cu.ft."/>
|
567
|
-
<Item Key="Standard Towing" Value="
|
568
|
-
<Item Key="Maximum Towing" Value="
|
569
|
-
<Item Key="Standard Payload" Value="
|
570
|
-
<Item Key="Maximum Payload" Value="
|
571
|
-
<Item Key="Standard GVWR" Value="
|
572
|
-
<Item Key="Maximum GVWR" Value="
|
400
|
+
<Item Key="Standard Towing" Value="12000" Unit="lbs"/>
|
401
|
+
<Item Key="Maximum Towing" Value="15850" Unit="lbs"/>
|
402
|
+
<Item Key="Standard Payload" Value="3030" Unit="lbs"/>
|
403
|
+
<Item Key="Maximum Payload" Value="3030" Unit="lbs"/>
|
404
|
+
<Item Key="Standard GVWR" Value="9900" Unit="lbs"/>
|
405
|
+
<Item Key="Maximum GVWR" Value="9900" Unit="lbs"/>
|
573
406
|
<Item Key="Basic-duration" Value="36" Unit="month"/>
|
574
407
|
<Item Key="Basic-distance" Value="36,000" Unit="mile"/>
|
575
|
-
<Item Key="Powertrain-duration" Value="
|
576
|
-
<Item Key="Powertrain-distance" Value="
|
408
|
+
<Item Key="Powertrain-duration" Value="84" Unit="month"/>
|
409
|
+
<Item Key="Powertrain-distance" Value="70,000" Unit="mile"/>
|
577
410
|
<Item Key="Rust-duration" Value="60" Unit="month"/>
|
578
|
-
<Item Key="Rust-distance" Value="
|
579
|
-
<Item Key="MSRP" Value="$
|
580
|
-
<Item Key="Dealer Invoice" Value="$
|
581
|
-
<Item Key="Destination Charge" Value="
|
411
|
+
<Item Key="Rust-distance" Value="100,000" Unit="mile"/>
|
412
|
+
<Item Key="MSRP" Value="$34,710" Unit="USD"/>
|
413
|
+
<Item Key="Dealer Invoice" Value="$30,506" Unit="USD"/>
|
414
|
+
<Item Key="Destination Charge" Value="No data" Unit="USD"/>
|
582
415
|
<Item Key="Child Safety Door Locks" Value="N/A" Unit=""/>
|
583
|
-
<Item Key="Locking Pickup Truck Tailgate" Value="
|
584
|
-
<Item Key="Power Door Locks" Value="
|
585
|
-
<Item Key="Vehicle Anti-Theft" Value="
|
416
|
+
<Item Key="Locking Pickup Truck Tailgate" Value="N/A" Unit=""/>
|
417
|
+
<Item Key="Power Door Locks" Value="N/A" Unit=""/>
|
418
|
+
<Item Key="Vehicle Anti-Theft" Value="Opt." Unit=""/>
|
586
419
|
<Item Key="4WD/AWD" Value="Std." Unit=""/>
|
587
420
|
<Item Key="ABS Brakes" Value="Std." Unit=""/>
|
588
421
|
<Item Key="Automatic Load-Leveling" Value="N/A" Unit=""/>
|
589
422
|
<Item Key="Electronic Brake Assistance" Value="N/A" Unit=""/>
|
590
423
|
<Item Key="Limited Slip Differential" Value="Opt." Unit=""/>
|
591
424
|
<Item Key="Locking Differential" Value="N/A" Unit=""/>
|
592
|
-
<Item Key="Traction Control" Value="
|
425
|
+
<Item Key="Traction Control" Value="N/A" Unit=""/>
|
593
426
|
<Item Key="Vehicle Stability Control System" Value="N/A" Unit=""/>
|
594
427
|
<Item Key="Driver Airbag" Value="Std." Unit=""/>
|
595
428
|
<Item Key="Front Side Airbag" Value="N/A" Unit=""/>
|
596
429
|
<Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit=""/>
|
597
430
|
<Item Key="Passenger Airbag" Value="Std." Unit=""/>
|
598
|
-
<Item Key="Side Head Curtain Airbag" Value="
|
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="Std." Unit=""/>
|
602
|
-
<Item Key="First Aid Kit" Value="N/A" Unit=""/>
|
603
|
-
<Item Key="Trunk Anti-Trap Device" Value="N/A" Unit=""/>
|
604
|
-
<Item Key="Keyless Entry" Value="Std." Unit=""/>
|
605
|
-
<Item Key="Remote Ignition" Value="Opt." Unit=""/>
|
606
|
-
<Item Key="Air Conditioning" Value="Std." Unit=""/>
|
607
|
-
<Item Key="Separate Driver/Front Passenger Climate Controls" Value="Std." 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="Std." 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="Opt." 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="Opt." Unit=""/>
|
624
|
-
<Item Key="DVD Player" Value="Opt." 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="Std." Unit=""/>
|
630
|
-
<Item Key="Driver Multi-Adjustable Power Seat" Value="Std." Unit=""/>
|
631
|
-
<Item Key="Front Cooled Seat" Value="N/A" Unit=""/>
|
632
|
-
<Item Key="Front Heated Seat" Value="Std." Unit=""/>
|
633
|
-
<Item Key="Front Power Lumbar Support" Value="N/A" Unit=""/>
|
634
|
-
<Item Key="Front Power Memory Seat" Value="Opt." Unit=""/>
|
635
|
-
<Item Key="Front Split Bench Seat" Value="Opt." Unit=""/>
|
636
|
-
<Item Key="Leather Seat" Value="Std." Unit=""/>
|
637
|
-
<Item Key="Passenger Multi-Adjustable Power Seat" Value="Std." 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="Opt." Unit=""/>
|
644
|
-
<Item Key="Cargo Area Tiedowns" Value="Std." Unit=""/>
|
645
|
-
<Item Key="Cargo Net" Value="N/A" Unit=""/>
|
646
|
-
<Item Key="Load Bearing Exterior Rack" Value="N/A" Unit=""/>
|
647
|
-
<Item Key="Pickup Truck Bed Liner" Value="Opt." Unit=""/>
|
648
|
-
<Item Key="Power Sunroof" Value="N/A" Unit=""/>
|
649
|
-
<Item Key="Removable Top" Value="N/A" Unit=""/>
|
650
|
-
<Item Key="Manual Sunroof" Value="N/A" Unit=""/>
|
651
|
-
<Item Key="Automatic Headlights" Value="Std." Unit=""/>
|
652
|
-
<Item Key="Daytime Running Lights" Value="N/A" 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="Std." Unit=""/>
|
656
|
-
<Item Key="Running Boards" Value="Opt." Unit=""/>
|
657
|
-
<Item Key="Front Air Dam" Value="Std." Unit=""/>
|
658
|
-
<Item Key="Rear Spoiler" Value="N/A" Unit=""/>
|
659
|
-
<Item Key="Skid Plate" Value="Opt." 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="Std." 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="Std." Unit=""/>
|
673
|
-
<Item Key="Electrochromic Interior Rearview Mirror" Value="Std." Unit=""/>
|
674
|
-
<Item Key="Power Adjustable Exterior Mirror" Value="Std." Unit=""/>
|
675
|
-
<Item Key="Deep Tinted Glass" Value="Std." 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="N/A" Unit=""/>
|
679
|
-
<Item Key="Rear Wiper" Value="N/A" Unit=""/>
|
680
|
-
<Item Key="Sliding Rear Pickup Truck Window" Value="Std." Unit=""/>
|
681
|
-
<Item Key="Tow Hitch Receiver" Value="Std." Unit=""/>
|
682
|
-
<Item Key="Towing Preparation Package" Value="Std." Unit=""/>
|
683
|
-
</Vehicle>
|
684
|
-
<Vehicle VINquery_Vehicle_ID="38272" Model_Year="2009" Make="Ford" Model="F-350 SD" Trim_Level="XL SuperCab 4WD">
|
685
|
-
<Item Key="VINquery_Vehicle_ID" Value="38272" Unit=""/>
|
686
|
-
<Item Key="Model Year" Value="2009" Unit=""/>
|
687
|
-
<Item Key="Make" Value="Ford" Unit=""/>
|
688
|
-
<Item Key="Model" Value="F-350 SD" Unit=""/>
|
689
|
-
<Item Key="Trim Level" Value="XL SuperCab 4WD" Unit=""/>
|
690
|
-
<Item Key="Manufactured in" Value="UNITED STATES" Unit=""/>
|
691
|
-
<Item Key="Production Seq. Number" Value="B18840" Unit=""/>
|
692
|
-
<Item Key="Body Style" Value="EXTENDED CAB PICKUP 4-DR" Unit=""/>
|
693
|
-
<Item Key="Engine Type" Value="6.4L V8 OHV 32V TURBO DIESEL" Unit=""/>
|
694
|
-
<Item Key="Transmission-short" Value="5A | 6M" Unit=""/>
|
695
|
-
<Item Key="Transmission-long" Value="5-Speed Automatic | 6-Speed Manual" Unit=""/>
|
696
|
-
<Item Key="Driveline" Value="4WD" Unit=""/>
|
697
|
-
<Item Key="Tank" Value="30.50" Unit="gallon"/>
|
698
|
-
<Item Key="Fuel Economy-city" Value="No data" Unit="miles/gallon"/>
|
699
|
-
<Item Key="Fuel Economy-highway" Value="No data" Unit="miles/gallon"/>
|
700
|
-
<Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit=""/>
|
701
|
-
<Item Key="Steering Type" Value="Recirc" Unit=""/>
|
702
|
-
<Item Key="Front Brake Type" Value="Disc" Unit=""/>
|
703
|
-
<Item Key="Rear Brake Type" Value="Disc" Unit=""/>
|
704
|
-
<Item Key="Turning Diameter" Value="47.50" Unit="in."/>
|
705
|
-
<Item Key="Front Suspension" Value="Ind" Unit=""/>
|
706
|
-
<Item Key="Rear Suspension" Value="Live" Unit=""/>
|
707
|
-
<Item Key="Front Spring Type" Value="Leaf" Unit=""/>
|
708
|
-
<Item Key="Rear Spring Type" Value="Leaf" Unit=""/>
|
709
|
-
<Item Key="Tires" Value="245/75R17" Unit=""/>
|
710
|
-
<Item Key="Front Headroom" Value="41.40" Unit="in."/>
|
711
|
-
<Item Key="Rear Headroom" Value="38.40" Unit="in."/>
|
712
|
-
<Item Key="Front Legroom" Value="41.00" Unit="in."/>
|
713
|
-
<Item Key="Rear Legroom" Value="31.80" Unit="in."/>
|
714
|
-
<Item Key="Front Shoulder Room" Value="68.00" Unit="in."/>
|
715
|
-
<Item Key="Rear Shoulder Room" Value="68.10" Unit="in."/>
|
716
|
-
<Item Key="Front Hip Room" Value="67.60" Unit="in."/>
|
717
|
-
<Item Key="Rear Hip Room" Value="67.30" Unit="in."/>
|
718
|
-
<Item Key="Interior Trim" Value="Camel Cloth Interior | Camel Vinyl Interior | Medium Stone Cloth Interior | Medium Stone Vinyl Interior" Unit=""/>
|
719
|
-
<Item Key="Exterior Color" Value="Black | Brilliant Silver Metallic | Dark Blue Pearl Metallic | Dark Stone Metallic | Forest Green Metallic | Oxford White | Pueblo Gold Metallic | Red | Royal Red Metallic | Sterling Grey Metallic" Unit=""/>
|
720
|
-
<Item Key="Curb Weight-automatic" Value="No data" Unit="lbs"/>
|
721
|
-
<Item Key="Curb Weight-manual" Value="6523" Unit="lbs"/>
|
722
|
-
<Item Key="Overall Length" Value="231.80" Unit="in."/>
|
723
|
-
<Item Key="Overall Width" Value="79.90" Unit="in."/>
|
724
|
-
<Item Key="Overall Height" Value="80.60" Unit="in."/>
|
725
|
-
<Item Key="Wheelbase" Value="141.80" Unit="in."/>
|
726
|
-
<Item Key="Ground Clearance" Value="No data" Unit="in."/>
|
727
|
-
<Item Key="Track Front" Value="68.40" Unit="in."/>
|
728
|
-
<Item Key="Track Rear" Value="68.10" Unit="in."/>
|
729
|
-
<Item Key="Cargo Length" Value="81.80" Unit="in."/>
|
730
|
-
<Item Key="Width at Wheelwell" Value="50.90" Unit="in."/>
|
731
|
-
<Item Key="Width at Wall" Value="63.90" Unit="in."/>
|
732
|
-
<Item Key="Depth" Value="20.10" Unit="in."/>
|
733
|
-
<Item Key="Standard Seating" Value="6" Unit=""/>
|
734
|
-
<Item Key="Optional Seating" Value="5" Unit=""/>
|
735
|
-
<Item Key="Passenger Volume" Value="No data" Unit="cu.ft."/>
|
736
|
-
<Item Key="Cargo Volume" Value="No data" Unit="cu.ft."/>
|
737
|
-
<Item Key="Standard Towing" Value="5000" Unit="lbs"/>
|
738
|
-
<Item Key="Maximum Towing" Value="16800" Unit="lbs"/>
|
739
|
-
<Item Key="Standard Payload" Value="No data" Unit="lbs"/>
|
740
|
-
<Item Key="Maximum Payload" Value="4070" Unit="lbs"/>
|
741
|
-
<Item Key="Standard GVWR" Value="10200" Unit="lbs"/>
|
742
|
-
<Item Key="Maximum GVWR" Value="11200" Unit="lbs"/>
|
743
|
-
<Item Key="Basic-duration" Value="36" Unit="month"/>
|
744
|
-
<Item Key="Basic-distance" Value="36,000" Unit="mile"/>
|
745
|
-
<Item Key="Powertrain-duration" Value="60" Unit="month"/>
|
746
|
-
<Item Key="Powertrain-distance" Value="60,000" Unit="mile"/>
|
747
|
-
<Item Key="Rust-duration" Value="60" Unit="month"/>
|
748
|
-
<Item Key="Rust-distance" Value="Unlimited" Unit="mile"/>
|
749
|
-
<Item Key="MSRP" Value="$31,430" Unit="USD"/>
|
750
|
-
<Item Key="Dealer Invoice" Value="$28,997" Unit="USD"/>
|
751
|
-
<Item Key="Destination Charge" Value="$975" Unit="USD"/>
|
752
|
-
<Item Key="Child Safety Door Locks" Value="N/A" Unit=""/>
|
753
|
-
<Item Key="Locking Pickup Truck Tailgate" Value="Std." Unit=""/>
|
754
|
-
<Item Key="Power Door Locks" Value="Opt." Unit=""/>
|
755
|
-
<Item Key="Vehicle Anti-Theft" Value="Std." Unit=""/>
|
756
|
-
<Item Key="4WD/AWD" Value="Std." Unit=""/>
|
757
|
-
<Item Key="ABS Brakes" Value="Std." Unit=""/>
|
758
|
-
<Item Key="Automatic Load-Leveling" Value="N/A" Unit=""/>
|
759
|
-
<Item Key="Electronic Brake Assistance" Value="N/A" Unit=""/>
|
760
|
-
<Item Key="Limited Slip Differential" Value="Opt." Unit=""/>
|
761
|
-
<Item Key="Locking Differential" Value="N/A" Unit=""/>
|
762
|
-
<Item Key="Traction Control" Value="Opt." Unit=""/>
|
763
|
-
<Item Key="Vehicle Stability Control System" Value="N/A" Unit=""/>
|
764
|
-
<Item Key="Driver Airbag" Value="Std." Unit=""/>
|
765
|
-
<Item Key="Front Side Airbag" Value="N/A" Unit=""/>
|
766
|
-
<Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit=""/>
|
767
|
-
<Item Key="Passenger Airbag" Value="Std." Unit=""/>
|
768
|
-
<Item Key="Side Head Curtain Airbag" Value="N/A" Unit=""/>
|
431
|
+
<Item Key="Side Head Curtain Airbag" Value="Opt." Unit=""/>
|
769
432
|
<Item Key="Second Row Side Airbag" Value="N/A" Unit=""/>
|
770
433
|
<Item Key="Second Row Side Airbag with Head Protection" Value="N/A" Unit=""/>
|
771
434
|
<Item Key="Electronic Parking Aid" Value="N/A" Unit=""/>
|
772
435
|
<Item Key="First Aid Kit" Value="N/A" Unit=""/>
|
773
436
|
<Item Key="Trunk Anti-Trap Device" Value="N/A" Unit=""/>
|
774
|
-
<Item Key="Keyless Entry" Value="
|
775
|
-
<Item Key="Remote Ignition" Value="
|
437
|
+
<Item Key="Keyless Entry" Value="N/A" Unit=""/>
|
438
|
+
<Item Key="Remote Ignition" Value="N/A" Unit=""/>
|
776
439
|
<Item Key="Air Conditioning" Value="Std." Unit=""/>
|
777
440
|
<Item Key="Separate Driver/Front Passenger Climate Controls" Value="N/A" Unit=""/>
|
778
441
|
<Item Key="Cruise Control" Value="Opt." Unit=""/>
|
779
442
|
<Item Key="Tachometer" Value="Std." Unit=""/>
|
780
|
-
<Item Key="Tilt Steering" Value="
|
781
|
-
<Item Key="Tilt Steering Column" Value="
|
443
|
+
<Item Key="Tilt Steering" Value="N/A" Unit=""/>
|
444
|
+
<Item Key="Tilt Steering Column" Value="N/A" Unit=""/>
|
782
445
|
<Item Key="Heated Steering Wheel" Value="N/A" Unit=""/>
|
783
446
|
<Item Key="Leather Steering Wheel" Value="N/A" Unit=""/>
|
784
|
-
<Item Key="Steering Wheel Mounted Controls" Value="
|
447
|
+
<Item Key="Steering Wheel Mounted Controls" Value="N/A" Unit=""/>
|
785
448
|
<Item Key="Telescopic Steering Column" Value="N/A" Unit=""/>
|
786
449
|
<Item Key="Adjustable Foot Pedals" Value="N/A" Unit=""/>
|
787
|
-
<Item Key="Genuine Wood Trim" Value="
|
788
|
-
<Item Key="Tire Pressure Monitor" Value="
|
789
|
-
<Item Key="Trip Computer" Value="
|
450
|
+
<Item Key="Genuine Wood Trim" Value="Opt." Unit=""/>
|
451
|
+
<Item Key="Tire Pressure Monitor" Value="N/A" Unit=""/>
|
452
|
+
<Item Key="Trip Computer" Value="N/A" Unit=""/>
|
790
453
|
<Item Key="AM/FM Radio" Value="Std." Unit=""/>
|
791
|
-
<Item Key="Cassette Player" Value="
|
454
|
+
<Item Key="Cassette Player" Value="Std." Unit=""/>
|
792
455
|
<Item Key="CD Player" Value="Opt." Unit=""/>
|
793
|
-
<Item Key="CD Changer" Value="
|
456
|
+
<Item Key="CD Changer" Value="Opt." Unit=""/>
|
794
457
|
<Item Key="DVD Player" Value="N/A" Unit=""/>
|
795
458
|
<Item Key="Voice Activated Telephone" Value="N/A" Unit=""/>
|
796
|
-
<Item Key="Navigation Aid" Value="
|
459
|
+
<Item Key="Navigation Aid" Value="N/A" Unit=""/>
|
797
460
|
<Item Key="Second Row Sound Controls" Value="N/A" Unit=""/>
|
798
461
|
<Item Key="Subwoofer" Value="N/A" Unit=""/>
|
799
|
-
<Item Key="Telematics System" Value="
|
462
|
+
<Item Key="Telematics System" Value="N/A" Unit=""/>
|
800
463
|
<Item Key="Driver Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
|
801
464
|
<Item Key="Front Cooled Seat" Value="N/A" Unit=""/>
|
802
465
|
<Item Key="Front Heated Seat" Value="N/A" Unit=""/>
|
803
466
|
<Item Key="Front Power Lumbar Support" Value="N/A" Unit=""/>
|
804
467
|
<Item Key="Front Power Memory Seat" Value="N/A" Unit=""/>
|
805
|
-
<Item Key="Front Split Bench Seat" Value="
|
468
|
+
<Item Key="Front Split Bench Seat" Value="Std." Unit=""/>
|
806
469
|
<Item Key="Leather Seat" Value="N/A" Unit=""/>
|
807
470
|
<Item Key="Passenger Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
|
808
471
|
<Item Key="Second Row Folding Seat" Value="Std." Unit=""/>
|
@@ -812,21 +475,21 @@
|
|
812
475
|
<Item Key="Third Row Removable Seat" Value="N/A" Unit=""/>
|
813
476
|
<Item Key="Cargo Area Cover" Value="Opt." Unit=""/>
|
814
477
|
<Item Key="Cargo Area Tiedowns" Value="Std." Unit=""/>
|
815
|
-
<Item Key="Cargo Net" Value="
|
816
|
-
<Item Key="Load Bearing Exterior Rack" Value="
|
478
|
+
<Item Key="Cargo Net" Value="Opt." Unit=""/>
|
479
|
+
<Item Key="Load Bearing Exterior Rack" Value="Opt." Unit=""/>
|
817
480
|
<Item Key="Pickup Truck Bed Liner" Value="Opt." Unit=""/>
|
818
481
|
<Item Key="Power Sunroof" Value="N/A" Unit=""/>
|
819
482
|
<Item Key="Removable Top" Value="N/A" Unit=""/>
|
820
483
|
<Item Key="Manual Sunroof" Value="N/A" Unit=""/>
|
821
484
|
<Item Key="Automatic Headlights" Value="N/A" Unit=""/>
|
822
485
|
<Item Key="Daytime Running Lights" Value="N/A" Unit=""/>
|
823
|
-
<Item Key="Fog Lights" Value="
|
486
|
+
<Item Key="Fog Lights" Value="Opt." Unit=""/>
|
824
487
|
<Item Key="High Intensity Discharge Headlights" Value="N/A" Unit=""/>
|
825
488
|
<Item Key="Pickup Truck Cargo Box Light" Value="Std." Unit=""/>
|
826
489
|
<Item Key="Running Boards" Value="Opt." Unit=""/>
|
827
490
|
<Item Key="Front Air Dam" Value="Std." Unit=""/>
|
828
491
|
<Item Key="Rear Spoiler" Value="N/A" Unit=""/>
|
829
|
-
<Item Key="Skid Plate" Value="
|
492
|
+
<Item Key="Skid Plate" Value="N/A" Unit=""/>
|
830
493
|
<Item Key="Splash Guards" Value="Opt." Unit=""/>
|
831
494
|
<Item Key="Wind Deflector for Convertibles" Value="N/A" Unit=""/>
|
832
495
|
<Item Key="Power Sliding Side Van Door" Value="N/A" Unit=""/>
|
@@ -836,144 +499,145 @@
|
|
836
499
|
<Item Key="Full Size Spare Tire" Value="Std." Unit=""/>
|
837
500
|
<Item Key="Run Flat Tires" Value="N/A" Unit=""/>
|
838
501
|
<Item Key="Steel Wheels" Value="Std." Unit=""/>
|
839
|
-
<Item Key="Power Windows" Value="
|
502
|
+
<Item Key="Power Windows" Value="N/A" Unit=""/>
|
840
503
|
<Item Key="Electrochromic Exterior Rearview Mirror" Value="N/A" Unit=""/>
|
841
504
|
<Item Key="Glass Rear Window on Convertible" Value="N/A" Unit=""/>
|
842
|
-
<Item Key="Heated Exterior Mirror" Value="
|
505
|
+
<Item Key="Heated Exterior Mirror" Value="N/A" Unit=""/>
|
843
506
|
<Item Key="Electrochromic Interior Rearview Mirror" Value="N/A" Unit=""/>
|
844
|
-
<Item Key="Power Adjustable Exterior Mirror" Value="
|
507
|
+
<Item Key="Power Adjustable Exterior Mirror" Value="N/A" Unit=""/>
|
845
508
|
<Item Key="Deep Tinted Glass" Value="N/A" Unit=""/>
|
846
509
|
<Item Key="Interval Wipers" Value="Std." Unit=""/>
|
847
510
|
<Item Key="Rain Sensing Wipers" Value="N/A" Unit=""/>
|
848
511
|
<Item Key="Rear Window Defogger" Value="N/A" Unit=""/>
|
849
512
|
<Item Key="Rear Wiper" Value="N/A" Unit=""/>
|
850
|
-
<Item Key="Sliding Rear Pickup Truck Window" Value="
|
851
|
-
<Item Key="Tow Hitch Receiver" Value="
|
513
|
+
<Item Key="Sliding Rear Pickup Truck Window" Value="Opt." Unit=""/>
|
514
|
+
<Item Key="Tow Hitch Receiver" Value="Opt." Unit=""/>
|
852
515
|
<Item Key="Towing Preparation Package" Value="Std." Unit=""/>
|
853
516
|
</Vehicle>
|
854
|
-
<Vehicle VINquery_Vehicle_ID="
|
855
|
-
<Item Key="VINquery_Vehicle_ID" Value="
|
856
|
-
<Item Key="Model Year" Value="
|
857
|
-
<Item Key="Make" Value="
|
858
|
-
<Item Key="Model" Value="
|
859
|
-
<Item Key="Trim Level" Value="
|
860
|
-
<Item Key="Manufactured in" Value="
|
861
|
-
<Item Key="Production Seq. Number" Value="
|
862
|
-
<Item Key="Body Style" Value="
|
863
|
-
<Item Key="Engine Type" Value="
|
864
|
-
<Item Key="
|
865
|
-
<Item Key="Transmission-
|
517
|
+
<Vehicle VINquery_Vehicle_ID="25597" Model_Year="2003" Make="Dodge" Model="Ram 3500" Trim_Level="SLT Quad Cab Short Bed 4WD">
|
518
|
+
<Item Key="VINquery_Vehicle_ID" Value="25597" Unit=""/>
|
519
|
+
<Item Key="Model Year" Value="2003" Unit=""/>
|
520
|
+
<Item Key="Make" Value="Dodge" Unit=""/>
|
521
|
+
<Item Key="Model" Value="Ram 3500" Unit=""/>
|
522
|
+
<Item Key="Trim Level" Value="SLT Quad Cab Short Bed 4WD" Unit=""/>
|
523
|
+
<Item Key="Manufactured in" Value="MEXICO" Unit=""/>
|
524
|
+
<Item Key="Production Seq. Number" Value="854645" Unit=""/>
|
525
|
+
<Item Key="Body Style" Value="CREW CAB PICKUP 4-DR" Unit=""/>
|
526
|
+
<Item Key="Engine Type" Value="5.9L L6 OHV 24V TURBO DIESEL" Unit=""/>
|
527
|
+
<Item Key="Fuel Type" Value="DIESEL" Unit=""/>
|
528
|
+
<Item Key="Transmission-short" Value="4A | 5M | 6M" Unit=""/>
|
529
|
+
<Item Key="Transmission-long" Value="4-Speed Automatic | 5-Speed Manual | 6-Speed Manual" Unit=""/>
|
866
530
|
<Item Key="Driveline" Value="4WD" Unit=""/>
|
867
|
-
<Item Key="Tank" Value="
|
531
|
+
<Item Key="Tank" Value="34.00" Unit="gallon"/>
|
868
532
|
<Item Key="Fuel Economy-city" Value="No data" Unit="miles/gallon"/>
|
869
533
|
<Item Key="Fuel Economy-highway" Value="No data" Unit="miles/gallon"/>
|
870
534
|
<Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit=""/>
|
871
535
|
<Item Key="Steering Type" Value="Recirc" Unit=""/>
|
872
536
|
<Item Key="Front Brake Type" Value="Disc" Unit=""/>
|
873
537
|
<Item Key="Rear Brake Type" Value="Disc" Unit=""/>
|
874
|
-
<Item Key="Turning Diameter" Value="
|
875
|
-
<Item Key="Front Suspension" Value="
|
538
|
+
<Item Key="Turning Diameter" Value="48.90" Unit="in."/>
|
539
|
+
<Item Key="Front Suspension" Value="Live" Unit=""/>
|
876
540
|
<Item Key="Rear Suspension" Value="Live" Unit=""/>
|
877
|
-
<Item Key="Front Spring Type" Value="
|
541
|
+
<Item Key="Front Spring Type" Value="Coil" Unit=""/>
|
878
542
|
<Item Key="Rear Spring Type" Value="Leaf" Unit=""/>
|
879
|
-
<Item Key="Tires" Value="
|
880
|
-
<Item Key="Front Headroom" Value="
|
881
|
-
<Item Key="Rear Headroom" Value="
|
543
|
+
<Item Key="Tires" Value="265/70R17" Unit=""/>
|
544
|
+
<Item Key="Front Headroom" Value="40.80" Unit="in."/>
|
545
|
+
<Item Key="Rear Headroom" Value="40.00" Unit="in."/>
|
882
546
|
<Item Key="Front Legroom" Value="41.00" Unit="in."/>
|
883
|
-
<Item Key="Rear Legroom" Value="
|
884
|
-
<Item Key="Front Shoulder Room" Value="
|
885
|
-
<Item Key="Rear Shoulder Room" Value="
|
886
|
-
<Item Key="Front Hip Room" Value="
|
887
|
-
<Item Key="Rear Hip Room" Value="
|
888
|
-
<Item Key="Interior Trim" Value="
|
889
|
-
<Item Key="Exterior Color" Value="
|
547
|
+
<Item Key="Rear Legroom" Value="36.40" Unit="in."/>
|
548
|
+
<Item Key="Front Shoulder Room" Value="67.00" Unit="in."/>
|
549
|
+
<Item Key="Rear Shoulder Room" Value="66.70" Unit="in."/>
|
550
|
+
<Item Key="Front Hip Room" Value="65.10" Unit="in."/>
|
551
|
+
<Item Key="Rear Hip Room" Value="64.60" Unit="in."/>
|
552
|
+
<Item Key="Interior Trim" Value="Dark Slate Gray Cloth Interior | Dark Slate Gray Leather Interior | Taupe Cloth Interior | Taupe Leather Interior" Unit=""/>
|
553
|
+
<Item Key="Exterior Color" Value="Atlantic Blue Pearlcoat | Atlantic Blue/Bright Silver Metallic | Black | Black/Bright Silver Metallic | Bright Silver Metallic | Bright White | Bright White/Bright Silver Metallic | Dark Garnet Red Pearlcoat | Dark Garnet Red Pearlcoat/Bright Silver Metallic | Flame Red | Flame Red/Bright Silver Metallic | Graphite Metallic | Graphite Metallic/Bright Silver Metallic | Light Almond Pearl Metallic | Light Almond Pearl Metallic/Bright Silver Metallic | Patriot Blue Pearlcoat | Patriot Blue Pearlcoat/Bright Silver Metallic | Timberline Green Pearlcoat | Timberline Green Pearlcoat/Bright Silver Metallic" Unit=""/>
|
890
554
|
<Item Key="Curb Weight-automatic" Value="No data" Unit="lbs"/>
|
891
|
-
<Item Key="Curb Weight-manual" Value="
|
892
|
-
<Item Key="Overall Length" Value="
|
555
|
+
<Item Key="Curb Weight-manual" Value="6968" Unit="lbs"/>
|
556
|
+
<Item Key="Overall Length" Value="227.70" Unit="in."/>
|
893
557
|
<Item Key="Overall Width" Value="79.90" Unit="in."/>
|
894
|
-
<Item Key="Overall Height" Value="
|
895
|
-
<Item Key="Wheelbase" Value="
|
896
|
-
<Item Key="Ground Clearance" Value="
|
897
|
-
<Item Key="Track Front" Value="
|
898
|
-
<Item Key="Track Rear" Value="68.
|
899
|
-
<Item Key="Cargo Length" Value="
|
900
|
-
<Item Key="Width at Wheelwell" Value="
|
901
|
-
<Item Key="Width at Wall" Value="
|
902
|
-
<Item Key="Depth" Value="20.
|
558
|
+
<Item Key="Overall Height" Value="79.20" Unit="in."/>
|
559
|
+
<Item Key="Wheelbase" Value="140.50" Unit="in."/>
|
560
|
+
<Item Key="Ground Clearance" Value="8.50" Unit="in."/>
|
561
|
+
<Item Key="Track Front" Value="69.70" Unit="in."/>
|
562
|
+
<Item Key="Track Rear" Value="68.20" Unit="in."/>
|
563
|
+
<Item Key="Cargo Length" Value="75.90" Unit="in."/>
|
564
|
+
<Item Key="Width at Wheelwell" Value="51.00" Unit="in."/>
|
565
|
+
<Item Key="Width at Wall" Value="66.40" Unit="in."/>
|
566
|
+
<Item Key="Depth" Value="20.20" Unit="in."/>
|
903
567
|
<Item Key="Standard Seating" Value="6" Unit=""/>
|
904
|
-
<Item Key="Optional Seating" Value="
|
905
|
-
<Item Key="Passenger Volume" Value="
|
568
|
+
<Item Key="Optional Seating" Value="No data" Unit=""/>
|
569
|
+
<Item Key="Passenger Volume" Value="121.10" Unit="cu.ft."/>
|
906
570
|
<Item Key="Cargo Volume" Value="No data" Unit="cu.ft."/>
|
907
|
-
<Item Key="Standard Towing" Value="
|
908
|
-
<Item Key="Maximum Towing" Value="
|
909
|
-
<Item Key="Standard Payload" Value="
|
910
|
-
<Item Key="Maximum Payload" Value="
|
911
|
-
<Item Key="Standard GVWR" Value="
|
912
|
-
<Item Key="Maximum GVWR" Value="
|
571
|
+
<Item Key="Standard Towing" Value="11900" Unit="lbs"/>
|
572
|
+
<Item Key="Maximum Towing" Value="15750" Unit="lbs"/>
|
573
|
+
<Item Key="Standard Payload" Value="2930" Unit="lbs"/>
|
574
|
+
<Item Key="Maximum Payload" Value="2930" Unit="lbs"/>
|
575
|
+
<Item Key="Standard GVWR" Value="9900" Unit="lbs"/>
|
576
|
+
<Item Key="Maximum GVWR" Value="9900" Unit="lbs"/>
|
913
577
|
<Item Key="Basic-duration" Value="36" Unit="month"/>
|
914
578
|
<Item Key="Basic-distance" Value="36,000" Unit="mile"/>
|
915
|
-
<Item Key="Powertrain-duration" Value="
|
916
|
-
<Item Key="Powertrain-distance" Value="
|
579
|
+
<Item Key="Powertrain-duration" Value="84" Unit="month"/>
|
580
|
+
<Item Key="Powertrain-distance" Value="70,000" Unit="mile"/>
|
917
581
|
<Item Key="Rust-duration" Value="60" Unit="month"/>
|
918
|
-
<Item Key="Rust-distance" Value="
|
919
|
-
<Item Key="MSRP" Value="$
|
920
|
-
<Item Key="Dealer Invoice" Value="$
|
921
|
-
<Item Key="Destination Charge" Value="
|
582
|
+
<Item Key="Rust-distance" Value="100,000" Unit="mile"/>
|
583
|
+
<Item Key="MSRP" Value="$35,910" Unit="USD"/>
|
584
|
+
<Item Key="Dealer Invoice" Value="$31,538" Unit="USD"/>
|
585
|
+
<Item Key="Destination Charge" Value="No data" Unit="USD"/>
|
922
586
|
<Item Key="Child Safety Door Locks" Value="N/A" Unit=""/>
|
923
|
-
<Item Key="Locking Pickup Truck Tailgate" Value="
|
924
|
-
<Item Key="Power Door Locks" Value="
|
925
|
-
<Item Key="Vehicle Anti-Theft" Value="
|
587
|
+
<Item Key="Locking Pickup Truck Tailgate" Value="N/A" Unit=""/>
|
588
|
+
<Item Key="Power Door Locks" Value="Std." Unit=""/>
|
589
|
+
<Item Key="Vehicle Anti-Theft" Value="N/A" Unit=""/>
|
926
590
|
<Item Key="4WD/AWD" Value="Std." Unit=""/>
|
927
591
|
<Item Key="ABS Brakes" Value="Std." Unit=""/>
|
928
592
|
<Item Key="Automatic Load-Leveling" Value="N/A" Unit=""/>
|
929
593
|
<Item Key="Electronic Brake Assistance" Value="N/A" Unit=""/>
|
930
594
|
<Item Key="Limited Slip Differential" Value="Opt." Unit=""/>
|
931
595
|
<Item Key="Locking Differential" Value="N/A" Unit=""/>
|
932
|
-
<Item Key="Traction Control" Value="
|
596
|
+
<Item Key="Traction Control" Value="N/A" Unit=""/>
|
933
597
|
<Item Key="Vehicle Stability Control System" Value="N/A" Unit=""/>
|
934
598
|
<Item Key="Driver Airbag" Value="Std." Unit=""/>
|
935
599
|
<Item Key="Front Side Airbag" Value="N/A" Unit=""/>
|
936
600
|
<Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit=""/>
|
937
601
|
<Item Key="Passenger Airbag" Value="Std." Unit=""/>
|
938
|
-
<Item Key="Side Head Curtain Airbag" Value="
|
602
|
+
<Item Key="Side Head Curtain Airbag" Value="Opt." Unit=""/>
|
939
603
|
<Item Key="Second Row Side Airbag" Value="N/A" Unit=""/>
|
940
604
|
<Item Key="Second Row Side Airbag with Head Protection" Value="N/A" Unit=""/>
|
941
605
|
<Item Key="Electronic Parking Aid" Value="N/A" Unit=""/>
|
942
606
|
<Item Key="First Aid Kit" Value="N/A" Unit=""/>
|
943
607
|
<Item Key="Trunk Anti-Trap Device" Value="N/A" Unit=""/>
|
944
608
|
<Item Key="Keyless Entry" Value="Opt." Unit=""/>
|
945
|
-
<Item Key="Remote Ignition" Value="
|
609
|
+
<Item Key="Remote Ignition" Value="N/A" Unit=""/>
|
946
610
|
<Item Key="Air Conditioning" Value="Std." Unit=""/>
|
947
611
|
<Item Key="Separate Driver/Front Passenger Climate Controls" Value="N/A" Unit=""/>
|
948
|
-
<Item Key="Cruise Control" Value="
|
612
|
+
<Item Key="Cruise Control" Value="Std." Unit=""/>
|
949
613
|
<Item Key="Tachometer" Value="Std." Unit=""/>
|
950
|
-
<Item Key="Tilt Steering" Value="
|
951
|
-
<Item Key="Tilt Steering Column" Value="
|
614
|
+
<Item Key="Tilt Steering" Value="Std." Unit=""/>
|
615
|
+
<Item Key="Tilt Steering Column" Value="Std." Unit=""/>
|
952
616
|
<Item Key="Heated Steering Wheel" Value="N/A" Unit=""/>
|
953
|
-
<Item Key="Leather Steering Wheel" Value="
|
954
|
-
<Item Key="Steering Wheel Mounted Controls" Value="
|
617
|
+
<Item Key="Leather Steering Wheel" Value="Opt." Unit=""/>
|
618
|
+
<Item Key="Steering Wheel Mounted Controls" Value="Std." Unit=""/>
|
955
619
|
<Item Key="Telescopic Steering Column" Value="N/A" Unit=""/>
|
956
|
-
<Item Key="Adjustable Foot Pedals" Value="
|
957
|
-
<Item Key="Genuine Wood Trim" Value="
|
958
|
-
<Item Key="Tire Pressure Monitor" Value="
|
620
|
+
<Item Key="Adjustable Foot Pedals" Value="Opt." Unit=""/>
|
621
|
+
<Item Key="Genuine Wood Trim" Value="Opt." Unit=""/>
|
622
|
+
<Item Key="Tire Pressure Monitor" Value="N/A" Unit=""/>
|
959
623
|
<Item Key="Trip Computer" Value="Std." Unit=""/>
|
960
624
|
<Item Key="AM/FM Radio" Value="Std." Unit=""/>
|
961
|
-
<Item Key="Cassette Player" Value="
|
962
|
-
<Item Key="CD Player" Value="
|
963
|
-
<Item Key="CD Changer" Value="
|
625
|
+
<Item Key="Cassette Player" Value="Opt." Unit=""/>
|
626
|
+
<Item Key="CD Player" Value="Std." Unit=""/>
|
627
|
+
<Item Key="CD Changer" Value="Opt." Unit=""/>
|
964
628
|
<Item Key="DVD Player" Value="N/A" Unit=""/>
|
965
629
|
<Item Key="Voice Activated Telephone" Value="N/A" Unit=""/>
|
966
|
-
<Item Key="Navigation Aid" Value="
|
630
|
+
<Item Key="Navigation Aid" Value="N/A" Unit=""/>
|
967
631
|
<Item Key="Second Row Sound Controls" Value="N/A" Unit=""/>
|
968
632
|
<Item Key="Subwoofer" Value="N/A" Unit=""/>
|
969
|
-
<Item Key="Telematics System" Value="
|
633
|
+
<Item Key="Telematics System" Value="N/A" Unit=""/>
|
970
634
|
<Item Key="Driver Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
|
971
635
|
<Item Key="Front Cooled Seat" Value="N/A" Unit=""/>
|
972
636
|
<Item Key="Front Heated Seat" Value="N/A" Unit=""/>
|
973
637
|
<Item Key="Front Power Lumbar Support" Value="N/A" Unit=""/>
|
974
638
|
<Item Key="Front Power Memory Seat" Value="N/A" Unit=""/>
|
975
|
-
<Item Key="Front Split Bench Seat" Value="
|
976
|
-
<Item Key="Leather Seat" Value="
|
639
|
+
<Item Key="Front Split Bench Seat" Value="Std." Unit=""/>
|
640
|
+
<Item Key="Leather Seat" Value="Opt." Unit=""/>
|
977
641
|
<Item Key="Passenger Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
|
978
642
|
<Item Key="Second Row Folding Seat" Value="Std." Unit=""/>
|
979
643
|
<Item Key="Second Row Heated Seat" Value="N/A" Unit=""/>
|
@@ -982,115 +646,116 @@
|
|
982
646
|
<Item Key="Third Row Removable Seat" Value="N/A" Unit=""/>
|
983
647
|
<Item Key="Cargo Area Cover" Value="Opt." Unit=""/>
|
984
648
|
<Item Key="Cargo Area Tiedowns" Value="Std." Unit=""/>
|
985
|
-
<Item Key="Cargo Net" Value="
|
986
|
-
<Item Key="Load Bearing Exterior Rack" Value="
|
649
|
+
<Item Key="Cargo Net" Value="Opt." Unit=""/>
|
650
|
+
<Item Key="Load Bearing Exterior Rack" Value="Opt." Unit=""/>
|
987
651
|
<Item Key="Pickup Truck Bed Liner" Value="Opt." Unit=""/>
|
988
652
|
<Item Key="Power Sunroof" Value="N/A" Unit=""/>
|
989
653
|
<Item Key="Removable Top" Value="N/A" Unit=""/>
|
990
654
|
<Item Key="Manual Sunroof" Value="N/A" Unit=""/>
|
991
655
|
<Item Key="Automatic Headlights" Value="N/A" Unit=""/>
|
992
656
|
<Item Key="Daytime Running Lights" Value="N/A" Unit=""/>
|
993
|
-
<Item Key="Fog Lights" Value="
|
657
|
+
<Item Key="Fog Lights" Value="Opt." Unit=""/>
|
994
658
|
<Item Key="High Intensity Discharge Headlights" Value="N/A" Unit=""/>
|
995
659
|
<Item Key="Pickup Truck Cargo Box Light" Value="Std." Unit=""/>
|
996
660
|
<Item Key="Running Boards" Value="Opt." Unit=""/>
|
997
661
|
<Item Key="Front Air Dam" Value="Std." Unit=""/>
|
998
662
|
<Item Key="Rear Spoiler" Value="N/A" Unit=""/>
|
999
|
-
<Item Key="Skid Plate" Value="
|
663
|
+
<Item Key="Skid Plate" Value="N/A" Unit=""/>
|
1000
664
|
<Item Key="Splash Guards" Value="Opt." Unit=""/>
|
1001
665
|
<Item Key="Wind Deflector for Convertibles" Value="N/A" Unit=""/>
|
1002
666
|
<Item Key="Power Sliding Side Van Door" Value="N/A" Unit=""/>
|
1003
667
|
<Item Key="Power Trunk Lid" Value="N/A" Unit=""/>
|
1004
|
-
<Item Key="Alloy Wheels" Value="
|
1005
|
-
<Item Key="Chrome Wheels" Value="
|
668
|
+
<Item Key="Alloy Wheels" Value="Opt." Unit=""/>
|
669
|
+
<Item Key="Chrome Wheels" Value="Std." Unit=""/>
|
1006
670
|
<Item Key="Full Size Spare Tire" Value="Std." Unit=""/>
|
1007
671
|
<Item Key="Run Flat Tires" Value="N/A" Unit=""/>
|
1008
672
|
<Item Key="Steel Wheels" Value="Std." Unit=""/>
|
1009
|
-
<Item Key="Power Windows" Value="
|
673
|
+
<Item Key="Power Windows" Value="Std." Unit=""/>
|
1010
674
|
<Item Key="Electrochromic Exterior Rearview Mirror" Value="N/A" Unit=""/>
|
1011
675
|
<Item Key="Glass Rear Window on Convertible" Value="N/A" Unit=""/>
|
1012
|
-
<Item Key="Heated Exterior Mirror" Value="
|
1013
|
-
<Item Key="Electrochromic Interior Rearview Mirror" Value="
|
1014
|
-
<Item Key="Power Adjustable Exterior Mirror" Value="
|
676
|
+
<Item Key="Heated Exterior Mirror" Value="Std." Unit=""/>
|
677
|
+
<Item Key="Electrochromic Interior Rearview Mirror" Value="Opt." Unit=""/>
|
678
|
+
<Item Key="Power Adjustable Exterior Mirror" Value="Std." Unit=""/>
|
1015
679
|
<Item Key="Deep Tinted Glass" Value="N/A" Unit=""/>
|
1016
680
|
<Item Key="Interval Wipers" Value="Std." Unit=""/>
|
1017
681
|
<Item Key="Rain Sensing Wipers" Value="N/A" Unit=""/>
|
1018
|
-
<Item Key="Rear Window Defogger" Value="
|
682
|
+
<Item Key="Rear Window Defogger" Value="Opt." Unit=""/>
|
1019
683
|
<Item Key="Rear Wiper" Value="N/A" Unit=""/>
|
1020
|
-
<Item Key="Sliding Rear Pickup Truck Window" Value="
|
1021
|
-
<Item Key="Tow Hitch Receiver" Value="
|
684
|
+
<Item Key="Sliding Rear Pickup Truck Window" Value="Opt." Unit=""/>
|
685
|
+
<Item Key="Tow Hitch Receiver" Value="Opt." Unit=""/>
|
1022
686
|
<Item Key="Towing Preparation Package" Value="Std." Unit=""/>
|
1023
687
|
</Vehicle>
|
1024
|
-
<Vehicle VINquery_Vehicle_ID="
|
1025
|
-
<Item Key="VINquery_Vehicle_ID" Value="
|
1026
|
-
<Item Key="Model Year" Value="
|
1027
|
-
<Item Key="Make" Value="
|
1028
|
-
<Item Key="Model" Value="
|
1029
|
-
<Item Key="Trim Level" Value="
|
1030
|
-
<Item Key="Manufactured in" Value="
|
1031
|
-
<Item Key="Production Seq. Number" Value="
|
1032
|
-
<Item Key="Body Style" Value="
|
1033
|
-
<Item Key="Engine Type" Value="
|
1034
|
-
<Item Key="
|
1035
|
-
<Item Key="Transmission-
|
688
|
+
<Vehicle VINquery_Vehicle_ID="25598" Model_Year="2003" Make="Dodge" Model="Ram 3500" Trim_Level="Laramie Quad Cab Long Bed 4WD">
|
689
|
+
<Item Key="VINquery_Vehicle_ID" Value="25598" Unit=""/>
|
690
|
+
<Item Key="Model Year" Value="2003" Unit=""/>
|
691
|
+
<Item Key="Make" Value="Dodge" Unit=""/>
|
692
|
+
<Item Key="Model" Value="Ram 3500" Unit=""/>
|
693
|
+
<Item Key="Trim Level" Value="Laramie Quad Cab Long Bed 4WD" Unit=""/>
|
694
|
+
<Item Key="Manufactured in" Value="MEXICO" Unit=""/>
|
695
|
+
<Item Key="Production Seq. Number" Value="854645" Unit=""/>
|
696
|
+
<Item Key="Body Style" Value="CREW CAB PICKUP 4-DR" Unit=""/>
|
697
|
+
<Item Key="Engine Type" Value="5.9L L6 OHV 24V TURBO DIESEL" Unit=""/>
|
698
|
+
<Item Key="Fuel Type" Value="DIESEL" Unit=""/>
|
699
|
+
<Item Key="Transmission-short" Value="4A | 5A | 5M | 6M" Unit=""/>
|
700
|
+
<Item Key="Transmission-long" Value="4-Speed Automatic | 5-Speed Automatic | 5-Speed Manual | 6-Speed Manual" Unit=""/>
|
1036
701
|
<Item Key="Driveline" Value="4WD" Unit=""/>
|
1037
|
-
<Item Key="Tank" Value="
|
702
|
+
<Item Key="Tank" Value="35.00" Unit="gallon"/>
|
1038
703
|
<Item Key="Fuel Economy-city" Value="No data" Unit="miles/gallon"/>
|
1039
704
|
<Item Key="Fuel Economy-highway" Value="No data" Unit="miles/gallon"/>
|
1040
705
|
<Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit=""/>
|
1041
706
|
<Item Key="Steering Type" Value="Recirc" Unit=""/>
|
1042
707
|
<Item Key="Front Brake Type" Value="Disc" Unit=""/>
|
1043
708
|
<Item Key="Rear Brake Type" Value="Disc" Unit=""/>
|
1044
|
-
<Item Key="Turning Diameter" Value="
|
1045
|
-
<Item Key="Front Suspension" Value="
|
709
|
+
<Item Key="Turning Diameter" Value="52.00" Unit="in."/>
|
710
|
+
<Item Key="Front Suspension" Value="Live" Unit=""/>
|
1046
711
|
<Item Key="Rear Suspension" Value="Live" Unit=""/>
|
1047
|
-
<Item Key="Front Spring Type" Value="
|
712
|
+
<Item Key="Front Spring Type" Value="Coil" Unit=""/>
|
1048
713
|
<Item Key="Rear Spring Type" Value="Leaf" Unit=""/>
|
1049
|
-
<Item Key="Tires" Value="
|
1050
|
-
<Item Key="Front Headroom" Value="
|
1051
|
-
<Item Key="Rear Headroom" Value="
|
714
|
+
<Item Key="Tires" Value="235/80R17" Unit=""/>
|
715
|
+
<Item Key="Front Headroom" Value="40.80" Unit="in."/>
|
716
|
+
<Item Key="Rear Headroom" Value="40.00" Unit="in."/>
|
1052
717
|
<Item Key="Front Legroom" Value="41.00" Unit="in."/>
|
1053
|
-
<Item Key="Rear Legroom" Value="
|
1054
|
-
<Item Key="Front Shoulder Room" Value="
|
1055
|
-
<Item Key="Rear Shoulder Room" Value="
|
1056
|
-
<Item Key="Front Hip Room" Value="
|
1057
|
-
<Item Key="Rear Hip Room" Value="
|
1058
|
-
<Item Key="Interior Trim" Value="
|
1059
|
-
<Item Key="Exterior Color" Value="
|
718
|
+
<Item Key="Rear Legroom" Value="36.40" Unit="in."/>
|
719
|
+
<Item Key="Front Shoulder Room" Value="67.00" Unit="in."/>
|
720
|
+
<Item Key="Rear Shoulder Room" Value="66.70" Unit="in."/>
|
721
|
+
<Item Key="Front Hip Room" Value="65.10" Unit="in."/>
|
722
|
+
<Item Key="Rear Hip Room" Value="64.60" Unit="in."/>
|
723
|
+
<Item Key="Interior Trim" Value="Dark Slate Gray Leather Interior | Taupe Leather Interior" Unit=""/>
|
724
|
+
<Item Key="Exterior Color" Value="Atlantic Blue Pearlcoat | Atlantic Blue/Bright Silver Metallic | Black | Black/Bright Silver Metallic | Bright Silver Metallic | Bright White | Bright White/Bright Silver Metallic | Dark Garnet Red Pearlcoat | Dark Garnet Red Pearlcoat/Bright Silver Metallic | Flame Red | Flame Red/Bright Silver Metallic | Graphite Metallic | Graphite Metallic/Bright Silver Metallic | Light Almond Pearl Metallic | Light Almond Pearl Metallic/Bright Silver Metallic | Patriot Blue Pearlcoat | Patriot Blue Pearlcoat/Bright Silver Metallic | Timberline Green Pearlcoat | Timberline Green Pearlcoat/Bright Silver Metallic" Unit=""/>
|
1060
725
|
<Item Key="Curb Weight-automatic" Value="No data" Unit="lbs"/>
|
1061
|
-
<Item Key="Curb Weight-manual" Value="
|
1062
|
-
<Item Key="Overall Length" Value="
|
1063
|
-
<Item Key="Overall Width" Value="
|
1064
|
-
<Item Key="Overall Height" Value="
|
1065
|
-
<Item Key="Wheelbase" Value="
|
1066
|
-
<Item Key="Ground Clearance" Value="
|
1067
|
-
<Item Key="Track Front" Value="
|
1068
|
-
<Item Key="Track Rear" Value="
|
1069
|
-
<Item Key="Cargo Length" Value="
|
1070
|
-
<Item Key="Width at Wheelwell" Value="
|
1071
|
-
<Item Key="Width at Wall" Value="
|
1072
|
-
<Item Key="Depth" Value="20.
|
726
|
+
<Item Key="Curb Weight-manual" Value="6805" Unit="lbs"/>
|
727
|
+
<Item Key="Overall Length" Value="249.70" Unit="in."/>
|
728
|
+
<Item Key="Overall Width" Value="96.00" Unit="in."/>
|
729
|
+
<Item Key="Overall Height" Value="78.40" Unit="in."/>
|
730
|
+
<Item Key="Wheelbase" Value="160.50" Unit="in."/>
|
731
|
+
<Item Key="Ground Clearance" Value="7.00" Unit="in."/>
|
732
|
+
<Item Key="Track Front" Value="69.70" Unit="in."/>
|
733
|
+
<Item Key="Track Rear" Value="75.80" Unit="in."/>
|
734
|
+
<Item Key="Cargo Length" Value="97.90" Unit="in."/>
|
735
|
+
<Item Key="Width at Wheelwell" Value="51.00" Unit="in."/>
|
736
|
+
<Item Key="Width at Wall" Value="66.40" Unit="in."/>
|
737
|
+
<Item Key="Depth" Value="20.20" Unit="in."/>
|
1073
738
|
<Item Key="Standard Seating" Value="6" Unit=""/>
|
1074
|
-
<Item Key="Optional Seating" Value="
|
1075
|
-
<Item Key="Passenger Volume" Value="
|
739
|
+
<Item Key="Optional Seating" Value="No data" Unit=""/>
|
740
|
+
<Item Key="Passenger Volume" Value="121.10" Unit="cu.ft."/>
|
1076
741
|
<Item Key="Cargo Volume" Value="No data" Unit="cu.ft."/>
|
1077
|
-
<Item Key="Standard Towing" Value="
|
1078
|
-
<Item Key="Maximum Towing" Value="
|
1079
|
-
<Item Key="Standard Payload" Value="
|
1080
|
-
<Item Key="Maximum Payload" Value="
|
1081
|
-
<Item Key="Standard GVWR" Value="
|
1082
|
-
<Item Key="Maximum GVWR" Value="
|
742
|
+
<Item Key="Standard Towing" Value="10050" Unit="lbs"/>
|
743
|
+
<Item Key="Maximum Towing" Value="15250" Unit="lbs"/>
|
744
|
+
<Item Key="Standard Payload" Value="4700" Unit="lbs"/>
|
745
|
+
<Item Key="Maximum Payload" Value="4700" Unit="lbs"/>
|
746
|
+
<Item Key="Standard GVWR" Value="11500" Unit="lbs"/>
|
747
|
+
<Item Key="Maximum GVWR" Value="12000" Unit="lbs"/>
|
1083
748
|
<Item Key="Basic-duration" Value="36" Unit="month"/>
|
1084
749
|
<Item Key="Basic-distance" Value="36,000" Unit="mile"/>
|
1085
|
-
<Item Key="Powertrain-duration" Value="
|
1086
|
-
<Item Key="Powertrain-distance" Value="
|
750
|
+
<Item Key="Powertrain-duration" Value="84" Unit="month"/>
|
751
|
+
<Item Key="Powertrain-distance" Value="70,000" Unit="mile"/>
|
1087
752
|
<Item Key="Rust-duration" Value="60" Unit="month"/>
|
1088
|
-
<Item Key="Rust-distance" Value="
|
1089
|
-
<Item Key="MSRP" Value="$
|
1090
|
-
<Item Key="Dealer Invoice" Value="$33,
|
1091
|
-
<Item Key="Destination Charge" Value="
|
753
|
+
<Item Key="Rust-distance" Value="100,000" Unit="mile"/>
|
754
|
+
<Item Key="MSRP" Value="$37,705" Unit="USD"/>
|
755
|
+
<Item Key="Dealer Invoice" Value="$33,180" Unit="USD"/>
|
756
|
+
<Item Key="Destination Charge" Value="No data" Unit="USD"/>
|
1092
757
|
<Item Key="Child Safety Door Locks" Value="N/A" Unit=""/>
|
1093
|
-
<Item Key="Locking Pickup Truck Tailgate" Value="
|
758
|
+
<Item Key="Locking Pickup Truck Tailgate" Value="N/A" Unit=""/>
|
1094
759
|
<Item Key="Power Door Locks" Value="Std." Unit=""/>
|
1095
760
|
<Item Key="Vehicle Anti-Theft" Value="Std." Unit=""/>
|
1096
761
|
<Item Key="4WD/AWD" Value="Std." Unit=""/>
|
@@ -1099,52 +764,52 @@
|
|
1099
764
|
<Item Key="Electronic Brake Assistance" Value="N/A" Unit=""/>
|
1100
765
|
<Item Key="Limited Slip Differential" Value="Opt." Unit=""/>
|
1101
766
|
<Item Key="Locking Differential" Value="N/A" Unit=""/>
|
1102
|
-
<Item Key="Traction Control" Value="
|
767
|
+
<Item Key="Traction Control" Value="N/A" Unit=""/>
|
1103
768
|
<Item Key="Vehicle Stability Control System" Value="N/A" Unit=""/>
|
1104
769
|
<Item Key="Driver Airbag" Value="Std." Unit=""/>
|
1105
770
|
<Item Key="Front Side Airbag" Value="N/A" Unit=""/>
|
1106
771
|
<Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit=""/>
|
1107
772
|
<Item Key="Passenger Airbag" Value="Std." Unit=""/>
|
1108
|
-
<Item Key="Side Head Curtain Airbag" Value="
|
773
|
+
<Item Key="Side Head Curtain Airbag" Value="Opt." Unit=""/>
|
1109
774
|
<Item Key="Second Row Side Airbag" Value="N/A" Unit=""/>
|
1110
775
|
<Item Key="Second Row Side Airbag with Head Protection" Value="N/A" Unit=""/>
|
1111
|
-
<Item Key="Electronic Parking Aid" Value="
|
776
|
+
<Item Key="Electronic Parking Aid" Value="N/A" Unit=""/>
|
1112
777
|
<Item Key="First Aid Kit" Value="N/A" Unit=""/>
|
1113
778
|
<Item Key="Trunk Anti-Trap Device" Value="N/A" Unit=""/>
|
1114
779
|
<Item Key="Keyless Entry" Value="Std." Unit=""/>
|
1115
|
-
<Item Key="Remote Ignition" Value="
|
780
|
+
<Item Key="Remote Ignition" Value="N/A" Unit=""/>
|
1116
781
|
<Item Key="Air Conditioning" Value="Std." Unit=""/>
|
1117
|
-
<Item Key="Separate Driver/Front Passenger Climate Controls" Value="
|
782
|
+
<Item Key="Separate Driver/Front Passenger Climate Controls" Value="Std." Unit=""/>
|
1118
783
|
<Item Key="Cruise Control" Value="Std." Unit=""/>
|
1119
784
|
<Item Key="Tachometer" Value="Std." Unit=""/>
|
1120
785
|
<Item Key="Tilt Steering" Value="Std." Unit=""/>
|
1121
786
|
<Item Key="Tilt Steering Column" Value="Std." Unit=""/>
|
1122
787
|
<Item Key="Heated Steering Wheel" Value="N/A" Unit=""/>
|
1123
|
-
<Item Key="Leather Steering Wheel" Value="
|
788
|
+
<Item Key="Leather Steering Wheel" Value="Std." Unit=""/>
|
1124
789
|
<Item Key="Steering Wheel Mounted Controls" Value="Std." Unit=""/>
|
1125
790
|
<Item Key="Telescopic Steering Column" Value="N/A" Unit=""/>
|
1126
|
-
<Item Key="Adjustable Foot Pedals" Value="
|
1127
|
-
<Item Key="Genuine Wood Trim" Value="
|
1128
|
-
<Item Key="Tire Pressure Monitor" Value="
|
791
|
+
<Item Key="Adjustable Foot Pedals" Value="Std." Unit=""/>
|
792
|
+
<Item Key="Genuine Wood Trim" Value="Opt." Unit=""/>
|
793
|
+
<Item Key="Tire Pressure Monitor" Value="N/A" Unit=""/>
|
1129
794
|
<Item Key="Trip Computer" Value="Std." Unit=""/>
|
1130
795
|
<Item Key="AM/FM Radio" Value="Std." Unit=""/>
|
1131
|
-
<Item Key="Cassette Player" Value="
|
796
|
+
<Item Key="Cassette Player" Value="Opt." Unit=""/>
|
1132
797
|
<Item Key="CD Player" Value="Std." Unit=""/>
|
1133
|
-
<Item Key="CD Changer" Value="
|
798
|
+
<Item Key="CD Changer" Value="Std." Unit=""/>
|
1134
799
|
<Item Key="DVD Player" Value="N/A" Unit=""/>
|
1135
800
|
<Item Key="Voice Activated Telephone" Value="N/A" Unit=""/>
|
1136
|
-
<Item Key="Navigation Aid" Value="
|
801
|
+
<Item Key="Navigation Aid" Value="N/A" Unit=""/>
|
1137
802
|
<Item Key="Second Row Sound Controls" Value="N/A" Unit=""/>
|
1138
803
|
<Item Key="Subwoofer" Value="N/A" Unit=""/>
|
1139
|
-
<Item Key="Telematics System" Value="
|
1140
|
-
<Item Key="Driver Multi-Adjustable Power Seat" Value="
|
804
|
+
<Item Key="Telematics System" Value="N/A" Unit=""/>
|
805
|
+
<Item Key="Driver Multi-Adjustable Power Seat" Value="Std." Unit=""/>
|
1141
806
|
<Item Key="Front Cooled Seat" Value="N/A" Unit=""/>
|
1142
|
-
<Item Key="Front Heated Seat" Value="
|
807
|
+
<Item Key="Front Heated Seat" Value="Opt." Unit=""/>
|
1143
808
|
<Item Key="Front Power Lumbar Support" Value="N/A" Unit=""/>
|
1144
809
|
<Item Key="Front Power Memory Seat" Value="N/A" Unit=""/>
|
1145
810
|
<Item Key="Front Split Bench Seat" Value="Std." Unit=""/>
|
1146
|
-
<Item Key="Leather Seat" Value="
|
1147
|
-
<Item Key="Passenger Multi-Adjustable Power Seat" Value="
|
811
|
+
<Item Key="Leather Seat" Value="Std." Unit=""/>
|
812
|
+
<Item Key="Passenger Multi-Adjustable Power Seat" Value="Std." Unit=""/>
|
1148
813
|
<Item Key="Second Row Folding Seat" Value="Std." Unit=""/>
|
1149
814
|
<Item Key="Second Row Heated Seat" Value="N/A" Unit=""/>
|
1150
815
|
<Item Key="Second Row Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
|
@@ -1152,27 +817,27 @@
|
|
1152
817
|
<Item Key="Third Row Removable Seat" Value="N/A" Unit=""/>
|
1153
818
|
<Item Key="Cargo Area Cover" Value="Opt." Unit=""/>
|
1154
819
|
<Item Key="Cargo Area Tiedowns" Value="Std." Unit=""/>
|
1155
|
-
<Item Key="Cargo Net" Value="
|
1156
|
-
<Item Key="Load Bearing Exterior Rack" Value="
|
820
|
+
<Item Key="Cargo Net" Value="Opt." Unit=""/>
|
821
|
+
<Item Key="Load Bearing Exterior Rack" Value="Opt." Unit=""/>
|
1157
822
|
<Item Key="Pickup Truck Bed Liner" Value="Opt." Unit=""/>
|
1158
823
|
<Item Key="Power Sunroof" Value="N/A" Unit=""/>
|
1159
824
|
<Item Key="Removable Top" Value="N/A" Unit=""/>
|
1160
825
|
<Item Key="Manual Sunroof" Value="N/A" Unit=""/>
|
1161
|
-
<Item Key="Automatic Headlights" Value="
|
826
|
+
<Item Key="Automatic Headlights" Value="N/A" Unit=""/>
|
1162
827
|
<Item Key="Daytime Running Lights" Value="N/A" Unit=""/>
|
1163
|
-
<Item Key="Fog Lights" Value="
|
828
|
+
<Item Key="Fog Lights" Value="Std." Unit=""/>
|
1164
829
|
<Item Key="High Intensity Discharge Headlights" Value="N/A" Unit=""/>
|
1165
830
|
<Item Key="Pickup Truck Cargo Box Light" Value="Std." Unit=""/>
|
1166
831
|
<Item Key="Running Boards" Value="Opt." Unit=""/>
|
1167
832
|
<Item Key="Front Air Dam" Value="Std." Unit=""/>
|
1168
833
|
<Item Key="Rear Spoiler" Value="N/A" Unit=""/>
|
1169
|
-
<Item Key="Skid Plate" Value="
|
834
|
+
<Item Key="Skid Plate" Value="Std." Unit=""/>
|
1170
835
|
<Item Key="Splash Guards" Value="Opt." Unit=""/>
|
1171
836
|
<Item Key="Wind Deflector for Convertibles" Value="N/A" Unit=""/>
|
1172
837
|
<Item Key="Power Sliding Side Van Door" Value="N/A" Unit=""/>
|
1173
838
|
<Item Key="Power Trunk Lid" Value="N/A" Unit=""/>
|
1174
|
-
<Item Key="Alloy Wheels" Value="
|
1175
|
-
<Item Key="Chrome Wheels" Value="
|
839
|
+
<Item Key="Alloy Wheels" Value="N/A" Unit=""/>
|
840
|
+
<Item Key="Chrome Wheels" Value="Opt." Unit=""/>
|
1176
841
|
<Item Key="Full Size Spare Tire" Value="Std." Unit=""/>
|
1177
842
|
<Item Key="Run Flat Tires" Value="N/A" Unit=""/>
|
1178
843
|
<Item Key="Steel Wheels" Value="Std." Unit=""/>
|
@@ -1180,87 +845,88 @@
|
|
1180
845
|
<Item Key="Electrochromic Exterior Rearview Mirror" Value="N/A" Unit=""/>
|
1181
846
|
<Item Key="Glass Rear Window on Convertible" Value="N/A" Unit=""/>
|
1182
847
|
<Item Key="Heated Exterior Mirror" Value="Std." Unit=""/>
|
1183
|
-
<Item Key="Electrochromic Interior Rearview Mirror" Value="
|
848
|
+
<Item Key="Electrochromic Interior Rearview Mirror" Value="Std." Unit=""/>
|
1184
849
|
<Item Key="Power Adjustable Exterior Mirror" Value="Std." Unit=""/>
|
1185
850
|
<Item Key="Deep Tinted Glass" Value="Std." Unit=""/>
|
1186
851
|
<Item Key="Interval Wipers" Value="Std." Unit=""/>
|
1187
852
|
<Item Key="Rain Sensing Wipers" Value="N/A" Unit=""/>
|
1188
|
-
<Item Key="Rear Window Defogger" Value="
|
853
|
+
<Item Key="Rear Window Defogger" Value="Opt." Unit=""/>
|
1189
854
|
<Item Key="Rear Wiper" Value="N/A" Unit=""/>
|
1190
|
-
<Item Key="Sliding Rear Pickup Truck Window" Value="
|
1191
|
-
<Item Key="Tow Hitch Receiver" Value="
|
855
|
+
<Item Key="Sliding Rear Pickup Truck Window" Value="Std." Unit=""/>
|
856
|
+
<Item Key="Tow Hitch Receiver" Value="Opt." Unit=""/>
|
1192
857
|
<Item Key="Towing Preparation Package" Value="Std." Unit=""/>
|
1193
858
|
</Vehicle>
|
1194
|
-
<Vehicle VINquery_Vehicle_ID="
|
1195
|
-
<Item Key="VINquery_Vehicle_ID" Value="
|
1196
|
-
<Item Key="Model Year" Value="
|
1197
|
-
<Item Key="Make" Value="
|
1198
|
-
<Item Key="Model" Value="
|
1199
|
-
<Item Key="Trim Level" Value="
|
1200
|
-
<Item Key="Manufactured in" Value="
|
1201
|
-
<Item Key="Production Seq. Number" Value="
|
1202
|
-
<Item Key="Body Style" Value="
|
1203
|
-
<Item Key="Engine Type" Value="
|
1204
|
-
<Item Key="
|
1205
|
-
<Item Key="Transmission-
|
859
|
+
<Vehicle VINquery_Vehicle_ID="25599" Model_Year="2003" Make="Dodge" Model="Ram 3500" Trim_Level="Laramie Quad Cab Short Bed 4WD">
|
860
|
+
<Item Key="VINquery_Vehicle_ID" Value="25599" Unit=""/>
|
861
|
+
<Item Key="Model Year" Value="2003" Unit=""/>
|
862
|
+
<Item Key="Make" Value="Dodge" Unit=""/>
|
863
|
+
<Item Key="Model" Value="Ram 3500" Unit=""/>
|
864
|
+
<Item Key="Trim Level" Value="Laramie Quad Cab Short Bed 4WD" Unit=""/>
|
865
|
+
<Item Key="Manufactured in" Value="MEXICO" Unit=""/>
|
866
|
+
<Item Key="Production Seq. Number" Value="854645" Unit=""/>
|
867
|
+
<Item Key="Body Style" Value="CREW CAB PICKUP 4-DR" Unit=""/>
|
868
|
+
<Item Key="Engine Type" Value="5.9L L6 OHV 24V TURBO DIESEL" Unit=""/>
|
869
|
+
<Item Key="Fuel Type" Value="DIESEL" Unit=""/>
|
870
|
+
<Item Key="Transmission-short" Value="4A | 5M | 6M" Unit=""/>
|
871
|
+
<Item Key="Transmission-long" Value="4-Speed Automatic | 5-Speed Manual | 6-Speed Manual" Unit=""/>
|
1206
872
|
<Item Key="Driveline" Value="4WD" Unit=""/>
|
1207
|
-
<Item Key="Tank" Value="
|
873
|
+
<Item Key="Tank" Value="34.00" Unit="gallon"/>
|
1208
874
|
<Item Key="Fuel Economy-city" Value="No data" Unit="miles/gallon"/>
|
1209
875
|
<Item Key="Fuel Economy-highway" Value="No data" Unit="miles/gallon"/>
|
1210
876
|
<Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit=""/>
|
1211
877
|
<Item Key="Steering Type" Value="Recirc" Unit=""/>
|
1212
878
|
<Item Key="Front Brake Type" Value="Disc" Unit=""/>
|
1213
879
|
<Item Key="Rear Brake Type" Value="Disc" Unit=""/>
|
1214
|
-
<Item Key="Turning Diameter" Value="
|
1215
|
-
<Item Key="Front Suspension" Value="
|
880
|
+
<Item Key="Turning Diameter" Value="48.90" Unit="in."/>
|
881
|
+
<Item Key="Front Suspension" Value="Live" Unit=""/>
|
1216
882
|
<Item Key="Rear Suspension" Value="Live" Unit=""/>
|
1217
|
-
<Item Key="Front Spring Type" Value="
|
883
|
+
<Item Key="Front Spring Type" Value="Coil" Unit=""/>
|
1218
884
|
<Item Key="Rear Spring Type" Value="Leaf" Unit=""/>
|
1219
|
-
<Item Key="Tires" Value="
|
1220
|
-
<Item Key="Front Headroom" Value="
|
1221
|
-
<Item Key="Rear Headroom" Value="
|
885
|
+
<Item Key="Tires" Value="265/70R17" Unit=""/>
|
886
|
+
<Item Key="Front Headroom" Value="40.80" Unit="in."/>
|
887
|
+
<Item Key="Rear Headroom" Value="40.00" Unit="in."/>
|
1222
888
|
<Item Key="Front Legroom" Value="41.00" Unit="in."/>
|
1223
|
-
<Item Key="Rear Legroom" Value="
|
1224
|
-
<Item Key="Front Shoulder Room" Value="
|
1225
|
-
<Item Key="Rear Shoulder Room" Value="
|
1226
|
-
<Item Key="Front Hip Room" Value="
|
1227
|
-
<Item Key="Rear Hip Room" Value="
|
1228
|
-
<Item Key="Interior Trim" Value="
|
1229
|
-
<Item Key="Exterior Color" Value="
|
889
|
+
<Item Key="Rear Legroom" Value="36.40" Unit="in."/>
|
890
|
+
<Item Key="Front Shoulder Room" Value="67.00" Unit="in."/>
|
891
|
+
<Item Key="Rear Shoulder Room" Value="66.70" Unit="in."/>
|
892
|
+
<Item Key="Front Hip Room" Value="65.10" Unit="in."/>
|
893
|
+
<Item Key="Rear Hip Room" Value="64.60" Unit="in."/>
|
894
|
+
<Item Key="Interior Trim" Value="Dark Slate Gray Leather Interior | Taupe Leather Interior" Unit=""/>
|
895
|
+
<Item Key="Exterior Color" Value="Atlantic Blue Pearlcoat | Atlantic Blue/Bright Silver Metallic | Black | Black/Bright Silver Metallic | Bright Silver Metallic | Bright White | Bright White/Bright Silver Metallic | Dark Garnet Red Pearlcoat | Dark Garnet Red Pearlcoat/Bright Silver Metallic | Flame Red | Flame Red/Bright Silver Metallic | Graphite Metallic | Graphite Metallic/Bright Silver Metallic | Light Almond Pearl Metallic | Light Almond Pearl Metallic/Bright Silver Metallic | Patriot Blue Pearlcoat | Patriot Blue Pearlcoat/Bright Silver Metallic | Timberline Green Pearlcoat | Timberline Green Pearlcoat/Bright Silver Metallic" Unit=""/>
|
1230
896
|
<Item Key="Curb Weight-automatic" Value="No data" Unit="lbs"/>
|
1231
|
-
<Item Key="Curb Weight-manual" Value="
|
1232
|
-
<Item Key="Overall Length" Value="
|
897
|
+
<Item Key="Curb Weight-manual" Value="6968" Unit="lbs"/>
|
898
|
+
<Item Key="Overall Length" Value="227.70" Unit="in."/>
|
1233
899
|
<Item Key="Overall Width" Value="79.90" Unit="in."/>
|
1234
|
-
<Item Key="Overall Height" Value="
|
1235
|
-
<Item Key="Wheelbase" Value="
|
1236
|
-
<Item Key="Ground Clearance" Value="
|
1237
|
-
<Item Key="Track Front" Value="
|
1238
|
-
<Item Key="Track Rear" Value="68.
|
1239
|
-
<Item Key="Cargo Length" Value="
|
1240
|
-
<Item Key="Width at Wheelwell" Value="
|
1241
|
-
<Item Key="Width at Wall" Value="
|
1242
|
-
<Item Key="Depth" Value="20.
|
900
|
+
<Item Key="Overall Height" Value="79.20" Unit="in."/>
|
901
|
+
<Item Key="Wheelbase" Value="140.50" Unit="in."/>
|
902
|
+
<Item Key="Ground Clearance" Value="8.50" Unit="in."/>
|
903
|
+
<Item Key="Track Front" Value="69.70" Unit="in."/>
|
904
|
+
<Item Key="Track Rear" Value="68.20" Unit="in."/>
|
905
|
+
<Item Key="Cargo Length" Value="75.90" Unit="in."/>
|
906
|
+
<Item Key="Width at Wheelwell" Value="51.00" Unit="in."/>
|
907
|
+
<Item Key="Width at Wall" Value="66.40" Unit="in."/>
|
908
|
+
<Item Key="Depth" Value="20.20" Unit="in."/>
|
1243
909
|
<Item Key="Standard Seating" Value="6" Unit=""/>
|
1244
|
-
<Item Key="Optional Seating" Value="
|
1245
|
-
<Item Key="Passenger Volume" Value="
|
910
|
+
<Item Key="Optional Seating" Value="No data" Unit=""/>
|
911
|
+
<Item Key="Passenger Volume" Value="121.10" Unit="cu.ft."/>
|
1246
912
|
<Item Key="Cargo Volume" Value="No data" Unit="cu.ft."/>
|
1247
|
-
<Item Key="Standard Towing" Value="
|
1248
|
-
<Item Key="Maximum Towing" Value="
|
1249
|
-
<Item Key="Standard Payload" Value="
|
1250
|
-
<Item Key="Maximum Payload" Value="
|
1251
|
-
<Item Key="Standard GVWR" Value="
|
1252
|
-
<Item Key="Maximum GVWR" Value="
|
913
|
+
<Item Key="Standard Towing" Value="11900" Unit="lbs"/>
|
914
|
+
<Item Key="Maximum Towing" Value="15750" Unit="lbs"/>
|
915
|
+
<Item Key="Standard Payload" Value="2930" Unit="lbs"/>
|
916
|
+
<Item Key="Maximum Payload" Value="2930" Unit="lbs"/>
|
917
|
+
<Item Key="Standard GVWR" Value="9900" Unit="lbs"/>
|
918
|
+
<Item Key="Maximum GVWR" Value="9900" Unit="lbs"/>
|
1253
919
|
<Item Key="Basic-duration" Value="36" Unit="month"/>
|
1254
920
|
<Item Key="Basic-distance" Value="36,000" Unit="mile"/>
|
1255
|
-
<Item Key="Powertrain-duration" Value="
|
1256
|
-
<Item Key="Powertrain-distance" Value="
|
921
|
+
<Item Key="Powertrain-duration" Value="84" Unit="month"/>
|
922
|
+
<Item Key="Powertrain-distance" Value="70,000" Unit="mile"/>
|
1257
923
|
<Item Key="Rust-duration" Value="60" Unit="month"/>
|
1258
|
-
<Item Key="Rust-distance" Value="
|
1259
|
-
<Item Key="MSRP" Value="$
|
1260
|
-
<Item Key="Dealer Invoice" Value="$
|
1261
|
-
<Item Key="Destination Charge" Value="
|
924
|
+
<Item Key="Rust-distance" Value="100,000" Unit="mile"/>
|
925
|
+
<Item Key="MSRP" Value="$40,845" Unit="USD"/>
|
926
|
+
<Item Key="Dealer Invoice" Value="$35,881" Unit="USD"/>
|
927
|
+
<Item Key="Destination Charge" Value="No data" Unit="USD"/>
|
1262
928
|
<Item Key="Child Safety Door Locks" Value="N/A" Unit=""/>
|
1263
|
-
<Item Key="Locking Pickup Truck Tailgate" Value="
|
929
|
+
<Item Key="Locking Pickup Truck Tailgate" Value="N/A" Unit=""/>
|
1264
930
|
<Item Key="Power Door Locks" Value="Std." Unit=""/>
|
1265
931
|
<Item Key="Vehicle Anti-Theft" Value="Std." Unit=""/>
|
1266
932
|
<Item Key="4WD/AWD" Value="Std." Unit=""/>
|
@@ -1269,52 +935,52 @@
|
|
1269
935
|
<Item Key="Electronic Brake Assistance" Value="N/A" Unit=""/>
|
1270
936
|
<Item Key="Limited Slip Differential" Value="Opt." Unit=""/>
|
1271
937
|
<Item Key="Locking Differential" Value="N/A" Unit=""/>
|
1272
|
-
<Item Key="Traction Control" Value="
|
938
|
+
<Item Key="Traction Control" Value="N/A" Unit=""/>
|
1273
939
|
<Item Key="Vehicle Stability Control System" Value="N/A" Unit=""/>
|
1274
940
|
<Item Key="Driver Airbag" Value="Std." Unit=""/>
|
1275
941
|
<Item Key="Front Side Airbag" Value="N/A" Unit=""/>
|
1276
942
|
<Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit=""/>
|
1277
943
|
<Item Key="Passenger Airbag" Value="Std." Unit=""/>
|
1278
|
-
<Item Key="Side Head Curtain Airbag" Value="
|
944
|
+
<Item Key="Side Head Curtain Airbag" Value="Opt." Unit=""/>
|
1279
945
|
<Item Key="Second Row Side Airbag" Value="N/A" Unit=""/>
|
1280
946
|
<Item Key="Second Row Side Airbag with Head Protection" Value="N/A" Unit=""/>
|
1281
|
-
<Item Key="Electronic Parking Aid" Value="
|
947
|
+
<Item Key="Electronic Parking Aid" Value="N/A" Unit=""/>
|
1282
948
|
<Item Key="First Aid Kit" Value="N/A" Unit=""/>
|
1283
949
|
<Item Key="Trunk Anti-Trap Device" Value="N/A" Unit=""/>
|
1284
950
|
<Item Key="Keyless Entry" Value="Std." Unit=""/>
|
1285
|
-
<Item Key="Remote Ignition" Value="
|
951
|
+
<Item Key="Remote Ignition" Value="N/A" Unit=""/>
|
1286
952
|
<Item Key="Air Conditioning" Value="Std." Unit=""/>
|
1287
|
-
<Item Key="Separate Driver/Front Passenger Climate Controls" Value="
|
953
|
+
<Item Key="Separate Driver/Front Passenger Climate Controls" Value="Std." Unit=""/>
|
1288
954
|
<Item Key="Cruise Control" Value="Std." Unit=""/>
|
1289
955
|
<Item Key="Tachometer" Value="Std." Unit=""/>
|
1290
956
|
<Item Key="Tilt Steering" Value="Std." Unit=""/>
|
1291
957
|
<Item Key="Tilt Steering Column" Value="Std." Unit=""/>
|
1292
958
|
<Item Key="Heated Steering Wheel" Value="N/A" Unit=""/>
|
1293
|
-
<Item Key="Leather Steering Wheel" Value="
|
959
|
+
<Item Key="Leather Steering Wheel" Value="Std." Unit=""/>
|
1294
960
|
<Item Key="Steering Wheel Mounted Controls" Value="Std." Unit=""/>
|
1295
961
|
<Item Key="Telescopic Steering Column" Value="N/A" Unit=""/>
|
1296
|
-
<Item Key="Adjustable Foot Pedals" Value="
|
1297
|
-
<Item Key="Genuine Wood Trim" Value="
|
1298
|
-
<Item Key="Tire Pressure Monitor" Value="
|
962
|
+
<Item Key="Adjustable Foot Pedals" Value="Std." Unit=""/>
|
963
|
+
<Item Key="Genuine Wood Trim" Value="Opt." Unit=""/>
|
964
|
+
<Item Key="Tire Pressure Monitor" Value="N/A" Unit=""/>
|
1299
965
|
<Item Key="Trip Computer" Value="Std." Unit=""/>
|
1300
966
|
<Item Key="AM/FM Radio" Value="Std." Unit=""/>
|
1301
|
-
<Item Key="Cassette Player" Value="
|
967
|
+
<Item Key="Cassette Player" Value="Opt." Unit=""/>
|
1302
968
|
<Item Key="CD Player" Value="Std." Unit=""/>
|
1303
|
-
<Item Key="CD Changer" Value="
|
969
|
+
<Item Key="CD Changer" Value="Std." Unit=""/>
|
1304
970
|
<Item Key="DVD Player" Value="N/A" Unit=""/>
|
1305
971
|
<Item Key="Voice Activated Telephone" Value="N/A" Unit=""/>
|
1306
|
-
<Item Key="Navigation Aid" Value="
|
972
|
+
<Item Key="Navigation Aid" Value="N/A" Unit=""/>
|
1307
973
|
<Item Key="Second Row Sound Controls" Value="N/A" Unit=""/>
|
1308
974
|
<Item Key="Subwoofer" Value="N/A" Unit=""/>
|
1309
|
-
<Item Key="Telematics System" Value="
|
1310
|
-
<Item Key="Driver Multi-Adjustable Power Seat" Value="
|
975
|
+
<Item Key="Telematics System" Value="N/A" Unit=""/>
|
976
|
+
<Item Key="Driver Multi-Adjustable Power Seat" Value="Std." Unit=""/>
|
1311
977
|
<Item Key="Front Cooled Seat" Value="N/A" Unit=""/>
|
1312
|
-
<Item Key="Front Heated Seat" Value="
|
978
|
+
<Item Key="Front Heated Seat" Value="Opt." Unit=""/>
|
1313
979
|
<Item Key="Front Power Lumbar Support" Value="N/A" Unit=""/>
|
1314
980
|
<Item Key="Front Power Memory Seat" Value="N/A" Unit=""/>
|
1315
981
|
<Item Key="Front Split Bench Seat" Value="Std." Unit=""/>
|
1316
|
-
<Item Key="Leather Seat" Value="
|
1317
|
-
<Item Key="Passenger Multi-Adjustable Power Seat" Value="
|
982
|
+
<Item Key="Leather Seat" Value="Std." Unit=""/>
|
983
|
+
<Item Key="Passenger Multi-Adjustable Power Seat" Value="Std." Unit=""/>
|
1318
984
|
<Item Key="Second Row Folding Seat" Value="Std." Unit=""/>
|
1319
985
|
<Item Key="Second Row Heated Seat" Value="N/A" Unit=""/>
|
1320
986
|
<Item Key="Second Row Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
|
@@ -1322,44 +988,45 @@
|
|
1322
988
|
<Item Key="Third Row Removable Seat" Value="N/A" Unit=""/>
|
1323
989
|
<Item Key="Cargo Area Cover" Value="Opt." Unit=""/>
|
1324
990
|
<Item Key="Cargo Area Tiedowns" Value="Std." Unit=""/>
|
1325
|
-
<Item Key="Cargo Net" Value="
|
1326
|
-
<Item Key="Load Bearing Exterior Rack" Value="
|
991
|
+
<Item Key="Cargo Net" Value="Opt." Unit=""/>
|
992
|
+
<Item Key="Load Bearing Exterior Rack" Value="Opt." Unit=""/>
|
1327
993
|
<Item Key="Pickup Truck Bed Liner" Value="Opt." Unit=""/>
|
1328
994
|
<Item Key="Power Sunroof" Value="N/A" Unit=""/>
|
1329
995
|
<Item Key="Removable Top" Value="N/A" Unit=""/>
|
1330
996
|
<Item Key="Manual Sunroof" Value="N/A" Unit=""/>
|
1331
|
-
<Item Key="Automatic Headlights" Value="
|
997
|
+
<Item Key="Automatic Headlights" Value="N/A" Unit=""/>
|
1332
998
|
<Item Key="Daytime Running Lights" Value="N/A" Unit=""/>
|
1333
|
-
<Item Key="Fog Lights" Value="
|
999
|
+
<Item Key="Fog Lights" Value="Std." Unit=""/>
|
1334
1000
|
<Item Key="High Intensity Discharge Headlights" Value="N/A" Unit=""/>
|
1335
1001
|
<Item Key="Pickup Truck Cargo Box Light" Value="Std." Unit=""/>
|
1336
1002
|
<Item Key="Running Boards" Value="Opt." Unit=""/>
|
1337
1003
|
<Item Key="Front Air Dam" Value="Std." Unit=""/>
|
1338
1004
|
<Item Key="Rear Spoiler" Value="N/A" Unit=""/>
|
1339
|
-
<Item Key="Skid Plate" Value="
|
1005
|
+
<Item Key="Skid Plate" Value="Std." Unit=""/>
|
1340
1006
|
<Item Key="Splash Guards" Value="Opt." Unit=""/>
|
1341
1007
|
<Item Key="Wind Deflector for Convertibles" Value="N/A" Unit=""/>
|
1342
1008
|
<Item Key="Power Sliding Side Van Door" Value="N/A" Unit=""/>
|
1343
1009
|
<Item Key="Power Trunk Lid" Value="N/A" Unit=""/>
|
1344
|
-
<Item Key="Alloy Wheels" Value="
|
1345
|
-
<Item Key="Chrome Wheels" Value="
|
1010
|
+
<Item Key="Alloy Wheels" Value="Std." Unit=""/>
|
1011
|
+
<Item Key="Chrome Wheels" Value="Opt." Unit=""/>
|
1346
1012
|
<Item Key="Full Size Spare Tire" Value="Std." Unit=""/>
|
1347
1013
|
<Item Key="Run Flat Tires" Value="N/A" Unit=""/>
|
1348
|
-
<Item Key="Steel Wheels" Value="
|
1014
|
+
<Item Key="Steel Wheels" Value="N/A" Unit=""/>
|
1349
1015
|
<Item Key="Power Windows" Value="Std." Unit=""/>
|
1350
1016
|
<Item Key="Electrochromic Exterior Rearview Mirror" Value="N/A" Unit=""/>
|
1351
1017
|
<Item Key="Glass Rear Window on Convertible" Value="N/A" Unit=""/>
|
1352
1018
|
<Item Key="Heated Exterior Mirror" Value="Std." Unit=""/>
|
1353
|
-
<Item Key="Electrochromic Interior Rearview Mirror" Value="
|
1019
|
+
<Item Key="Electrochromic Interior Rearview Mirror" Value="Std." Unit=""/>
|
1354
1020
|
<Item Key="Power Adjustable Exterior Mirror" Value="Std." Unit=""/>
|
1355
1021
|
<Item Key="Deep Tinted Glass" Value="Std." Unit=""/>
|
1356
1022
|
<Item Key="Interval Wipers" Value="Std." Unit=""/>
|
1357
1023
|
<Item Key="Rain Sensing Wipers" Value="N/A" Unit=""/>
|
1358
|
-
<Item Key="Rear Window Defogger" Value="
|
1024
|
+
<Item Key="Rear Window Defogger" Value="Opt." Unit=""/>
|
1359
1025
|
<Item Key="Rear Wiper" Value="N/A" Unit=""/>
|
1360
|
-
<Item Key="Sliding Rear Pickup Truck Window" Value="
|
1361
|
-
<Item Key="Tow Hitch Receiver" Value="
|
1026
|
+
<Item Key="Sliding Rear Pickup Truck Window" Value="Std." Unit=""/>
|
1027
|
+
<Item Key="Tow Hitch Receiver" Value="Opt." Unit=""/>
|
1362
1028
|
<Item Key="Towing Preparation Package" Value="Std." Unit=""/>
|
1363
1029
|
</Vehicle>
|
1364
1030
|
</VIN>
|
1031
|
+
<style/>
|
1365
1032
|
</VINquery>
|