-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathautodata1.sql
More file actions
1758 lines (1688 loc) · 134 KB
/
autodata1.sql
File metadata and controls
1758 lines (1688 loc) · 134 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.5.4.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jan 14, 2025 at 06:46 PM
-- Server version: 5.7.11
-- PHP Version: 5.6.18
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `autodata1`
--
-- --------------------------------------------------------
--
-- Table structure for table `car_fuse_box`
--
CREATE TABLE `car_fuse_box` (
`id` int(11) NOT NULL,
`marke_name` enum('BMW','Hyundai','Toyota','Ford','Chevrolet','Nissan','Volkswagen','Kia','Honda','Mazda','Acura','Alfa Romeo','Audi','Buick','BYD','Cadillac','Chery','Chrysler','Citroen','Dodge / Ram','Fiat','GAC','Genesis','GMC','Holden','Hummer','Infiniti','Isuzu','Jaguar','Jeep','Lancia','Land Rover','Lexus','Lincoln','Mahindra','Mercedes-Benz','Mercury','MINI','Mitsubishi','Nio','Oldsmobile','Opel / Vauxhall','Peugeot','Pontiac','Porsche','Renault','Saab','Saturn','Scion','SEAT / Cupra','Skoda','Smart','Subaru','Suzuki','Tesla','Volvo') NOT NULL,
`marke_image` varchar(255) NOT NULL,
`model_name` varchar(255) NOT NULL,
`description1` text,
`description2` text,
`description3` text,
`image_path1` varchar(255) DEFAULT NULL,
`image_path2` varchar(255) DEFAULT NULL,
`image_path3` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `car_fuse_box`
--
INSERT INTO `car_fuse_box` (`id`, `marke_name`, `marke_image`, `model_name`, `description1`, `description2`, `description3`, `image_path1`, `image_path2`, `image_path3`) VALUES
(1, 'BMW', 'images/logos/BMW.png', 'BMW 1-series (E81E82E87E88; 2004-2013)', 'Open the glove compartment, remove the damper (arrow 1) from the lower holder by applying forward pressure, disengage the glove compartment by pressing on both tabs (arrows 2) and fold it down.', 'Description of BMW 1 Series - Feature 3', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/BMW/BMW 1-series (E81E82E87E88; 2004-2013)/Fuse Box Location.png', 'images/car_fuse_box/BMW/BMW 1-series (E81E82E87E88; 2004-2013)/Fuse box diagram (Type 1).png', 'images/car_fuse_box/BMW/BMW 1-series (E81E82E87E88; 2004-2013)/Fuse box diagram (Type 2).png'),
(2, 'Hyundai', 'images/logos/hyundai.png', 'Hyundai Accent', 'Description of Hyundai Accent - Feature 1', 'Description of Hyundai Accent - Feature 2', 'Description of Hyundai Accent - Feature 3', 'images/ECUMODELS/Hyundai/image1.jpg', 'images/car_fuse_box/Hyundai/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(3, 'Hyundai', 'images/logos/hyundai.png', 'Hyundai Accent', 'Description of Hyundai Accent - Feature 1', 'Description of Hyundai Accent - Feature 2', 'Description of Hyundai Accent - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/Hyundai/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(4, 'BMW', 'images/logos/BMW.png', 'BMW 1-Series (F20F21; 2012-2017)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(5, 'BMW', 'images/logos/BMW.png', 'BMW 1-series (E81E82E87E88; 2004-2013)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(6, 'BMW', 'images/logos/BMW.png', 'BMW 1-Series (F20F21; 2012-2017)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(7, 'BMW', 'images/logos/BMW.png', 'BMW 1-series (E81E82E87E88; 2004-2013)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(8, 'BMW', 'images/logos/BMW.png', 'BMW 1-Series (F20F21; 2012-2017)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(9, 'BMW', 'images/logos/BMW.png', 'BMW 1-series (E81E82E87E88; 2004-2013)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(10, 'BMW', 'images/logos/BMW.png', 'BMW 1-Series (F20F21; 2012-2017)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(11, 'BMW', 'images/logos/BMW.png', 'BMW 1-series (E81E82E87E88; 2004-2013)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(12, 'BMW', 'images/logos/BMW.png', 'BMW 1-Series (F20F21; 2012-2017)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(13, 'BMW', 'images/logos/BMW.png', 'BMW 1-series (E81E82E87E88; 2004-2013)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(14, 'BMW', 'images/logos/BMW.png', 'BMW 1-Series (F20F21; 2012-2017)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(15, 'BMW', 'images/logos/BMW.png', 'BMW 1-series (E81E82E87E88; 2004-2013)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(16, 'BMW', 'images/logos/BMW.png', 'BMW 1-Series (F20F21; 2012-2017)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(17, 'BMW', 'images/logos/BMW.png', 'BMW 1-series (E81E82E87E88; 2004-2013)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(18, 'BMW', 'images/logos/BMW.png', 'BMW 1-Series (F20F21; 2012-2017)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(19, 'BMW', 'images/logos/BMW.png', 'BMW 1-Series (F20F21; 2012-2017)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(20, 'BMW', 'images/logos/BMW.png', 'BMW 1-series (E81E82E87E88; 2004-2013)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(21, 'BMW', 'images/logos/BMW.png', 'BMW 1-Series (F20F21; 2012-2017)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(22, 'BMW', 'images/logos/BMW.png', 'BMW 1-series (E81E82E87E88; 2004-2013)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(23, 'BMW', 'images/logos/BMW.png', 'BMW 1-Series (F20F21; 2012-2017)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(24, 'BMW', 'images/logos/BMW.png', 'BMW 1-series (E81E82E87E88; 2004-2013)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(25, 'BMW', 'images/logos/BMW.png', 'BMW 1-Series (F20F21; 2012-2017)', 'Description of BMW 1 Series - Feature 1', 'Description of BMW 1 Series - Feature 2', 'Description of BMW 1 Series - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/BMW/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(26, 'Toyota', 'images/logos/Toyota.png', 'Hyundai Accent', 'Description of Hyundai Accent - Feature 1', 'Description of Hyundai Accent - Feature 2', 'Description of Hyundai Accent - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/Hyundai/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(27, 'Ford', 'images/logos/Ford.png', 'Hyundai Accent', 'Description of Hyundai Accent - Feature 1', 'Description of Hyundai Accent - Feature 2', 'Description of Hyundai Accent - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/Hyundai/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(28, 'Chevrolet', 'images/logos/Chevrolet.png', 'Hyundai Accent', 'Description of Hyundai Accent - Feature 1', 'Description of Hyundai Accent - Feature 2', 'Description of Hyundai Accent - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/Hyundai/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(29, 'Nissan', 'images/logos/nissan.png', 'Hyundai Accent', 'Description of Hyundai Accent - Feature 1', 'Description of Hyundai Accent - Feature 2', 'Description of Hyundai Accent - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/Hyundai/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(30, 'Volkswagen', 'images/logos/volkswagen.png', 'Hyundai Accent', 'Description of Hyundai Accent - Feature 1', 'Description of Hyundai Accent - Feature 2', 'Description of Hyundai Accent - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/Hyundai/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(31, 'Kia', 'images/logos/kia-1.png', 'Hyundai Accent', 'Description of Hyundai Accent - Feature 1', 'Description of Hyundai Accent - Feature 2', 'Description of Hyundai Accent - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/Hyundai/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(32, 'Honda', 'images/logos/honda.png', 'Hyundai Accent', 'Description of Hyundai Accent - Feature 1', 'Description of Hyundai Accent - Feature 2', 'Description of Hyundai Accent - Feature 3', 'images/ECUMODELS/Hyundai/image1.jpg', 'images/car_fuse_box/Hyundai/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(33, 'Mazda', 'images/logos/mazda-1.png', 'Hyundai Accent', 'Description of Hyundai Accent - Feature 1', 'Description of Hyundai Accent - Feature 2', 'Description of Hyundai Accent - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/Hyundai/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(34, 'Acura', 'images/logos/Acura.png', 'Hyundai Accent', 'Description of Hyundai Accent - Feature 1', 'Description of Hyundai Accent - Feature 2', 'Description of Hyundai Accent - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/Hyundai/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg'),
(35, 'Alfa Romeo', 'images/logos/alfaromeo.png', 'Hyundai Accent', 'Description of Hyundai Accent - Feature 1', 'Description of Hyundai Accent - Feature 2', 'Description of Hyundai Accent - Feature 3', 'images/car_fuse_box/Hyundai/image1.jpg', 'images/car_fuse_box/Hyundai/image2.jpg', 'images/car_fuse_box/Hyundai/image3.jpg');
-- --------------------------------------------------------
--
-- Table structure for table `ecu_models`
--
CREATE TABLE `ecu_models` (
`model_id` int(11) NOT NULL,
`marke` varchar(255) NOT NULL,
`model_name` varchar(255) NOT NULL,
`model_description` text NOT NULL,
`image_path` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `ecu_models`
--
INSERT INTO `ecu_models` (`model_id`, `marke`, `model_name`, `model_description`, `image_path`) VALUES
(1, 'BMW', 'Bosch BMS 4.6', 'Bosch BMS 4.6', 'images/ECUMODELS/BMW/Bosch BMS 4.6.JPG'),
(2, 'BMW', 'Bosch EDC15C35', 'Bosch EDC15C35', 'images/ECUMODELS/BMW/Bosch EDC15C35.jpg'),
(35, 'Alfa-Romeo', 'Bosch EDC15C5', 'Bosch EDC15C5', 'images/ECUMODELS/Alfa-Romeo/Bosch EDC15C5.JPG'),
(36, 'Alfa-Romeo', 'Bosch EDC15C7', 'Bosch EDC15C7', 'images/ECUMODELS/Alfa-Romeo/Bosch EDC15C7.JPG'),
(37, 'Alfa-Romeo', 'Bosch EDC16C39', 'Bosch EDC16C39', 'images/ECUMODELS/Alfa-Romeo/Bosch EDC16C39.JPG'),
(38, 'Alfa-Romeo', 'Bosch EDC16C8', 'Bosch EDC16C8', 'images/ECUMODELS/Alfa-Romeo/Bosch EDC16C8.JPG'),
(39, 'Alfa-Romeo', 'Bosch EDC17C49', 'Bosch EDC17C49', 'images/ECUMODELS/Alfa-Romeo/Bosch EDC17C49.JPG'),
(40, 'Alfa-Romeo', 'Bosch ME 2.1', 'Bosch ME 2.1', 'images/ECUMODELS/Alfa-Romeo/Bosch ME 2.1.JPG'),
(41, 'Alfa-Romeo', 'Bosch ME 7.3.1', 'Bosch ME 7.3.1', 'images/ECUMODELS/Alfa-Romeo/Bosch ME 7.3.1.JPG'),
(42, 'Alfa-Romeo', 'Bosch ME 7.9.10', 'Bosch ME 7.9.10', 'images/ECUMODELS/Alfa-Romeo/Bosch ME 7.9.10.JPG'),
(43, 'Alfa-Romeo', 'Bosch MED 7.1.1', 'Bosch MED 7.1.1', 'images/ECUMODELS/Alfa-Romeo/Bosch MED 7.1.1.JPG'),
(44, 'Alfa-Romeo', 'EDC15C7', 'EDC15C7', 'images/ECUMODELS/Alfa-Romeo/EDC15C7.JPG'),
(45, 'Alfa-Romeo', 'M155', 'M155', 'images/ECUMODELS/Alfa-Romeo/M155.JPG'),
(46, 'BMW', 'Bosch EDC16C31', 'Bosch EDC16C31', 'images/ECUMODELS/BMW/Bosch EDC16C31.JPG'),
(47, 'BMW', 'Bosch EDC17C06', 'Bosch EDC17C06', 'images/ECUMODELS/BMW/Bosch EDC17C06.JPG'),
(48, 'BMW', 'Bosch EDC17C41', 'Bosch EDC17C41', 'images/ECUMODELS/BMW/Bosch EDC17C41.JPG'),
(49, 'BMW', 'Bosch EDC17CP02', 'Bosch EDC17CP02', 'images/ECUMODELS/BMW/Bosch EDC17CP02.JPG'),
(50, 'BMW', 'Bosch EDC17CP09', 'Bosch EDC17CP09', 'images/ECUMODELS/BMW/Bosch EDC17CP09.JPG'),
(51, 'BMW', 'Bosch EDC17CP45', 'Bosch EDC17CP45', 'images/ECUMODELS/BMW/Bosch EDC17CP45.JPG'),
(52, 'BMW', 'Bosch EDC17CP50', 'Bosch EDC17CP50', 'images/ECUMODELS/BMW/Bosch EDC17CP50.JPG'),
(53, 'BMW', 'Bosch M 5.2', 'Bosch M 5.2', 'images/ECUMODELS/BMW/Bosch M 5.2.JPG'),
(54, 'BMW', 'Bosch M5.2.1', 'Bosch M5.2.1', 'images/ECUMODELS/BMW/Bosch M5.2.1.JPG'),
(55, 'BMW', 'Bosch ME 7.2', 'Bosch ME 7.2', 'images/ECUMODELS/BMW/Bosch ME 7.2.JPG'),
(56, 'BMW', 'Bosch ME 9.24', 'Bosch ME 9.24', 'images/ECUMODELS/BMW/Bosch ME 9.24.JPG'),
(57, 'BMW', 'Bosch MEVD 17X', 'Bosch MEVD 17X', 'images/ECUMODELS/BMW/Bosch MEVD 17X.JPG'),
(58, 'BMW', 'Siemens DDE 3', 'Siemens DDE 3', 'images/ECUMODELS/BMW/Siemens DDE 3.JPG'),
(59, 'BMW', 'Siemens DDE 4', 'Siemens DDE 4', 'images/ECUMODELS/BMW/Siemens DDE 4.JPG'),
(60, 'BMW', 'Siemens MS41', 'Siemens MS41', 'images/ECUMODELS/BMW/Siemens MS41.JPG'),
(61, 'BMW', 'Siemens MS42', 'Siemens MS42', 'images/ECUMODELS/BMW/Siemens MS42.JPG'),
(62, 'BMW', 'Siemens MS43', 'Siemens MS43', 'images/ECUMODELS/BMW/Siemens MS43.JPG'),
(63, 'BMW', 'Siemens MSDMSV 8x', 'Siemens MSDMSV 8x', 'images/ECUMODELS/BMW/Siemens MSDMSV 8x.JPG'),
(64, 'BMW', 'Siemens MSx 70', 'Siemens MSx 70', 'images/ECUMODELS/BMW/Siemens MSx 70.JPG'),
(65, 'Chevrolet', 'Bosch EDC17C18', 'Bosch EDC17C18', 'images/ECUMODELS/Chevrolet/Bosch EDC17C18.JPG'),
(66, 'Chrysler', 'Bosch ME 2.8.1', 'Bosch ME 2.8.1', 'images/ECUMODELS/Chrysler/Bosch ME 2.8.1.JPG'),
(67, 'Citroen', 'Bosch EDC15C2', 'Description of Bosch EDC15C2', 'images/ECUMODELS/Citroen/Bosch EDC15C2.jpg'),
(68, 'Citroen', 'Bosch EDC16C34', 'Description of Bosch EDC16C34', 'images/ECUMODELS/Citroen/Bosch EDC16C34.jpg'),
(69, 'Citroen', 'Bosch EDC17C10', 'Description of Bosch EDC17C10', 'images/ECUMODELS/Citroen/Bosch EDC17C10.jpg'),
(70, 'Citroen', 'Bosch EDC17CP11', 'Description of Bosch EDC17CP11', 'images/ECUMODELS/Citroen/Bosch EDC17CP11.jpg'),
(71, 'Citroen', 'Bosch ME 7.4.5', 'Description of Bosch ME 7.4.5', 'images/ECUMODELS/Citroen/Bosch ME 7.4.5.jpg'),
(72, 'Citroen', 'Bosch MED 17.4 v2', 'Description of Bosch MED 17.4 v2', 'images/ECUMODELS/Citroen/Bosch MED 17.4 v2.jpg'),
(73, 'Citroen', 'Bosch MED 17.4', 'Description of Bosch MED 17.4', 'images/ECUMODELS/Citroen/Bosch MED 17.4.jpg'),
(74, 'Citroen', 'BSI valeo', 'Description of BSI valeo', 'images/ECUMODELS/Citroen/BSI valeo.jpg'),
(75, 'Citroen', 'Citroen Siemens SID805806', 'Description of Citroen Siemens SID805806', 'images/ECUMODELS/Citroen/Citroen Siemens SID805806.jpg'),
(76, 'Citroen', 'Continental SID 807', 'Description of Continental SID 807', 'images/ECUMODELS/Citroen/Continental SID 807.jpg'),
(77, 'Citroen', 'Continental SID208v2', 'Description of Continental SID208v2', 'images/ECUMODELS/Citroen/Continental SID208v2.jpg'),
(78, 'Citroen', 'Delphi DCM 1.2', 'Description of Delphi DCM 1.2', 'images/ECUMODELS/Citroen/Delphi DCM 1.2.jpg'),
(79, 'Citroen', 'Delphi DCM 3.4', 'Description of Delphi DCM 3.4', 'images/ECUMODELS/Citroen/Delphi DCM 3.4.jpg'),
(80, 'Citroen', 'Sagem 3000', 'Description of Sagem 3000', 'images/ECUMODELS/Citroen/Sagem 3000.jpg'),
(81, 'Citroen', 'Siemens SID 801', 'Description of Siemens SID 801', 'images/ECUMODELS/Citroen/Siemens SID 801.jpg'),
(82, 'Citroen', 'Siemens SID 803', 'Description of Siemens SID 803', 'images/ECUMODELS/Citroen/Siemens SID 803.jpg'),
(83, 'Citroen', 'Siemens SIM 210', 'Description of Siemens SIM 210', 'images/ECUMODELS/Citroen/Siemens SIM 210.jpg'),
(84, 'Citroen', 'Visteon DCU 102', 'Description of Visteon DCU 102', 'images/ECUMODELS/Citroen/Visteon DCU 102.jpg'),
(85, 'Fiat', 'Bosch EDC17C49', 'Description of Bosch EDC17C49', 'images/ECUMODELS/Fiat/Bosch EDC17C49.jpg'),
(86, 'Fiat', 'Bosch ME 2.1', 'Description of Bosch ME 2.1', 'images/ECUMODELS/Fiat/Bosch ME 2.1.jpg'),
(87, 'Fiat', 'Bosch ME 7.9.10', 'Description of Bosch ME 7.9.10', 'images/ECUMODELS/Fiat/Bosch ME 7.9.10.jpg'),
(88, 'Fiat', 'Magneti Marelli IAW 4SF', 'Description of Magneti Marelli IAW 4SF', 'images/ECUMODELS/Fiat/Magneti Marelli IAW 4SF.jpg'),
(89, 'Fiat', 'Magneti Marelli IAW 59F', 'Description of Magneti Marelli IAW 59F', 'images/ECUMODELS/Fiat/Magneti Marelli IAW 59F.jpg'),
(90, 'Ford', 'Bosch EDC16C34', 'Description of Bosch EDC16C34', 'images/ECUMODELS/Ford/Bosch EDC16C34.jpg'),
(91, 'Ford', 'Bosch EDC17C42', 'Description of Bosch EDC17C42', 'images/ECUMODELS/Ford/Bosch EDC17C42.jpg'),
(92, 'Ford', 'Bosch ME 9.0', 'Description of Bosch ME 9.0', 'images/ECUMODELS/Ford/Bosch ME 9.0.jpg'),
(93, 'Ford', 'Bosch MED 17.0', 'Description of Bosch MED 17.0', 'images/ECUMODELS/Ford/Bosch MED 17.0.jpg'),
(94, 'Ford', 'Continental SID 208', 'Description of Continental SID 208', 'images/ECUMODELS/Ford/Continental SID 208.jpg'),
(95, 'Ford', 'Continental SID 807', 'Description of Continental SID 807', 'images/ECUMODELS/Ford/Continental SID 807.jpg'),
(96, 'Ford', 'Continental SID208v2', 'Description of Continental SID208v2', 'images/ECUMODELS/Ford/Continental SID208v2.jpg'),
(97, 'Ford', 'Delphi (Focus)', 'Description of Delphi (Focus)', 'images/ECUMODELS/Ford/Delphi (Focus).jpg'),
(98, 'Ford', 'Siemens EMS 2102', 'Description of Siemens EMS 2102', 'images/ECUMODELS/Ford/Siemens EMS 2102.jpg'),
(99, 'Ford', 'Siemens EMS 2103', 'Description of Siemens EMS 2103', 'images/ECUMODELS/Ford/Siemens EMS 2103.jpg'),
(100, 'Ford', 'Siemens SID 206', 'Description of Siemens SID 206', 'images/ECUMODELS/Ford/Siemens SID 206.jpg'),
(101, 'Ford', 'Siemens SIM 210', 'Description of Siemens SIM 210', 'images/ECUMODELS/Ford/Siemens SIM 210.jpg'),
(102, 'Ford', 'Visteon DCU 204', 'Description of Visteon DCU 204', 'images/ECUMODELS/Ford/Visteon DCU 204.jpg'),
(103, 'Ford', 'Visteon DCU101', 'Description of Visteon DCU101', 'images/ECUMODELS/Ford/Visteon DCU101.jpg'),
(104, 'Ford', 'Visteon DCU102', 'Description of Visteon DCU102', 'images/ECUMODELS/Ford/Visteon DCU102.jpg'),
(105, 'Ford', 'Visteon DCU104', 'Description of Visteon DCU104', 'images/ECUMODELS/Ford/Visteon DCU104.jpg'),
(106, 'Honda', 'Bosch EDC16C4', 'Description of Bosch EDC16C4', 'images/ECUMODELS/Honda/Bosch EDC16C4.jpg'),
(107, 'Honda', 'Bosch EDC17CP06', 'Description of Bosch EDC17CP06', 'images/ECUMODELS/Honda/Bosch EDC17CP06.jpg'),
(108, 'Honda', 'Bosch EDC17CP16', 'Description of Bosch EDC17CP16', 'images/ECUMODELS/Honda/Bosch EDC17CP16.jpg'),
(109, 'Honda', 'Bosch EDC17CP50', 'Description of Bosch EDC17CP50', 'images/ECUMODELS/Honda/Bosch EDC17CP50.jpg'),
(110, 'Honda', 'Bosch ME 7.9.3', 'Description of Bosch ME 7.9.3', 'images/ECUMODELS/Honda/Bosch ME 7.9.3.jpg'),
(111, 'Hyundai', 'Bosch EDC15C7', 'Description of Bosch EDC15C7', 'images/ECUMODELS/Hyundai/Bosch EDC15C7.jpg'),
(112, 'Hyundai', 'Bosch EDC17C08', 'Description of Bosch EDC17C08', 'images/ECUMODELS/Hyundai/Bosch EDC17C08.jpg'),
(113, 'Hyundai', 'Bosch EDC17CP14', 'Description of Bosch EDC17CP14', 'images/ECUMODELS/Hyundai/Bosch EDC17CP14.jpg'),
(114, 'Iveco', 'Bosch EDC16C8-C39', 'Description of Bosch EDC16C8-C39', 'images/ECUMODELS/Iveco/Bosch EDC16C8 - C39.jpg'),
(115, 'Iveco', 'Bosch EDC17CP52', 'Description of Bosch EDC17CP52', 'images/ECUMODELS/Iveco/Bosch EDC17CP52.jpg'),
(116, 'Iveco', 'EDC17CV41', 'Description of EDC17CV41', 'images/ECUMODELS/Iveco/EDC17CV41.jpg'),
(117, 'Jeep', 'Bosch EDC17CP27', 'Description of Bosch EDC17CP27', 'images/ECUMODELS/Jeep/Bosch EDC17CP27.jpg'),
(118, 'Kia', 'Bosch EDC15C2', 'Description of Bosch EDC15C2', 'images/ECUMODELS/Kia/Bosch EDC15C2.jpg'),
(119, 'Kia', 'Bosch EDC17C08', 'Description of Bosch EDC17C08', 'images/ECUMODELS/Kia/Bosch EDC17C08.jpg'),
(120, 'Kia', 'Bosch EDC17CP14', 'Description of Bosch EDC17CP14', 'images/ECUMODELS/Kia/Bosch EDC17CP14.jpg'),
(121, 'Kia', 'Bosch M7.9.8', 'Description of Bosch M7.9.8', 'images/ECUMODELS/Kia/Bosch M7.9.8.jpg'),
(122, 'Kia', 'MG7.9.8', 'Description of MG7.9.8', 'images/ECUMODELS/Kia/MG7.9.8.jpg'),
(123, 'Lancia', 'Bosch EDC17C49', 'Description of Bosch EDC17C49', 'images/ECUMODELS/Lancia/Bosch EDC17C49.jpg'),
(124, 'Lancia', 'Bosch ME 2.1', 'Description of Bosch ME 2.1', 'images/ECUMODELS/Lancia/Bosch ME 2.1.jpg'),
(125, 'Lancia', 'Bosch ME 7.3.1', 'Description of Bosch ME 7.3.1', 'images/ECUMODELS/Lancia/Bosch ME 7.3.1.jpg'),
(126, 'Lancia', 'Bosch ME 7.9.10', 'Description of Bosch ME 7.9.10', 'images/ECUMODELS/Lancia/Bosch ME 7.9.10.jpg'),
(127, 'Mercedes', 'Bosch EDC15C5', 'Description of Bosch EDC15C5', 'images/ECUMODELS/Mercedes/Bosch EDC15C5.jpg'),
(128, 'Mercedes', 'Bosch EDC15C6', 'Description of Bosch EDC15C6', 'images/ECUMODELS/Mercedes/Bosch EDC15C6.jpg'),
(129, 'Mercedes', 'Bosch EDC16C32 CP31', 'Description of Bosch EDC16C32 CP31', 'images/ECUMODELS/Mercedes/Bosch EDC16C32 CP31.jpg'),
(130, 'Mercedes', 'Bosch EDC16CP36', 'Description of Bosch EDC16CP36', 'images/ECUMODELS/Mercedes/Bosch EDC16CP36 - .jpg'),
(131, 'Mercedes', 'Bosch EDC17CP01', 'Description of Bosch EDC17CP01', 'images/ECUMODELS/Mercedes/Bosch EDC17CP01.jpg'),
(132, 'Mercedes', 'Bosch EDC17CP10', 'Description of Bosch EDC17CP10', 'images/ECUMODELS/Mercedes/Bosch EDC17CP10.jpg'),
(133, 'Mercedes', 'Bosch EDC17CP46', 'Description of Bosch EDC17CP46', 'images/ECUMODELS/Mercedes/Bosch EDC17CP46.jpg'),
(134, 'Mercedes', 'Bosch ME 2.0', 'Description of Bosch ME 2.0', 'images/ECUMODELS/Mercedes/Bosch ME 2.0.jpg'),
(135, 'Mercedes', 'Bosch ME 2.7.1', 'Description of Bosch ME 2.7.1', 'images/ECUMODELS/Mercedes/Bosch ME 2.7.1.jpg'),
(136, 'Mercedes', 'Bosch ME 2.7.2', 'Description of Bosch ME 2.7.2', 'images/ECUMODELS/Mercedes/Bosch ME 2.7.2.jpg'),
(137, 'Mercedes', 'Bosch ME 2.8', 'Description of Bosch ME 2.8', 'images/ECUMODELS/Mercedes/Bosch ME 2.8.jpg'),
(138, 'Mercedes', 'Bosch ME 9.7', 'Description of Bosch ME 9.7', 'images/ECUMODELS/Mercedes/Bosch ME 9.7.jpg'),
(139, 'Mercedes', 'Bosch MED17.7.1', 'Description of Bosch MED17.7.1', 'images/ECUMODELS/Mercedes/Bosch MED17.7.1.jpg'),
(140, 'Mercedes', 'Delphi crd hw50.05', 'Description of Delphi crd hw50.05', 'images/ECUMODELS/Mercedes/Delphi crd hw50.05.jpg'),
(141, 'Mercedes', 'MED17.7.3.1', 'Description of MED17.7.3.1', 'images/ECUMODELS/Mercedes/MED17.7.3.1.jpg'),
(142, 'Mercedes', 'Siemens SIM 4 LE', 'Description of Siemens SIM 4 LE', 'images/ECUMODELS/Mercedes/Siemens SIM 4 LE.jpg'),
(143, 'Mercedes', 'Siemens SIM 266', 'Description of Siemens SIM 266', 'images/ECUMODELS/Mercedes/Siemens SIM 266.jpg'),
(144, 'Opel', 'Bosch EDC15C13', 'Description of Bosch EDC15C13', 'images/ECUMODELS/Opel/Bosch EDC15C13.jpg'),
(145, 'Opel', 'Bosch EDC15M', 'Description of Bosch EDC15M', 'images/ECUMODELS/Opel/Bosch EDC15M.jpg'),
(146, 'Opel', 'Bosch EDC17C18', 'Description of Bosch EDC17C18', 'images/ECUMODELS/Opel/Bosch EDC17C18.jpg'),
(147, 'Opel', 'Bosch EDC17C19', 'Description of Bosch EDC17C19', 'images/ECUMODELS/Opel/Bosch EDC17C19.jpg'),
(148, 'Opel', 'Bosch EDC17C42', 'Description of Bosch EDC17C42', 'images/ECUMODELS/Opel/Bosch EDC17C42.jpg'),
(149, 'Opel', 'Bosch EDC17C59', 'Description of Bosch EDC17C59', 'images/ECUMODELS/Opel/Bosch EDC17C59.jpg'),
(150, 'Opel', 'Bosch ME 1.5.5', 'Description of Bosch ME 1.5.5', 'images/ECUMODELS/Opel/Bosch ME 1.5.5.jpg'),
(151, 'Opel', 'Bosch ME 3.1.1', 'Description of Bosch ME 3.1.1', 'images/ECUMODELS/Opel/Bosch ME 3.1.1.jpg'),
(152, 'Opel', 'Bosch ME 7.6.1', 'Description of Bosch ME 7.6.1', 'images/ECUMODELS/Opel/Bosch ME 7.6.1.jpg'),
(153, 'Opel', 'Bosch ME 7.6.4', 'Description of Bosch ME 7.6.4', 'images/ECUMODELS/Opel/Bosch ME 7.6.4.jpg'),
(154, 'Opel', 'Bosch ME 9.0', 'Description of Bosch ME 9.0', 'images/ECUMODELS/Opel/Bosch ME 9.0.jpg'),
(155, 'Opel', 'Bosch ME 9.6', 'Description of Bosch ME 9.6', 'images/ECUMODELS/Opel/Bosch ME 9.6.jpg'),
(156, 'Opel', 'Bosch ME 9.6 v2', 'Description of Bosch ME 9.6 v2', 'images/ECUMODELS/Opel/Bosch ME 9.6 v2.jpg'),
(157, 'Opel', 'Delphi HSFI 2.1', 'Description of Delphi HSFI 2.1', 'images/ECUMODELS/Opel/Delphi HSFI 2.1.jpg'),
(158, 'Opel', 'Delphi HSFI 2.4', 'Description of Delphi HSFI 2.4', 'images/ECUMODELS/Opel/Delphi HSFI 2.4.jpg'),
(159, 'Opel', 'Delphi HSFI 2.5', 'Description of Delphi HSFI 2.5', 'images/ECUMODELS/Opel/Delphi HSFI 2.5.jpg'),
(160, 'Opel', 'Delphi HSFI C', 'Description of Delphi HSFI C', 'images/ECUMODELS/Opel/Delphi HSFI C.jpg'),
(161, 'Opel', 'Denso DEC30', 'Description of Denso DEC30', 'images/ECUMODELS/Opel/Denso DEC30.jpg'),
(162, 'Opel', 'Denso ECU', 'Description of Denso ECU', 'images/ECUMODELS/Opel/Denso ECU.jpg'),
(163, 'Opel', 'Magneti Marelli MJD 610', 'Description of Magneti Marelli MJD 610', 'images/ECUMODELS/Opel/Magneti Marelli MJD 610.jpg'),
(164, 'Opel', 'PSG16', 'Description of PSG16', 'images/ECUMODELS/Opel/PSG16.jpg'),
(165, 'Opel', 'PSG16-', 'Description of PSG16-', 'images/ECUMODELS/Opel/PSG16-.jpg'),
(166, 'Peugeot', 'Bosch EDC15C2', 'Description of Bosch EDC15C2', 'images/ECUMODELS/Peugeot/Bosch EDC15C2.jpg'),
(167, 'Peugeot', 'Bosch EDC15C7', 'Description of Bosch EDC15C7', 'images/ECUMODELS/Peugeot/Bosch EDC15C7.jpg'),
(168, 'Peugeot', 'Bosch EDC16C34', 'Description of Bosch EDC16C34', 'images/ECUMODELS/Peugeot/Bosch EDC16C34.jpg'),
(169, 'Peugeot', 'Bosch ME 7.4.4', 'Description of Bosch ME 7.4.4', 'images/ECUMODELS/Peugeot/Bosch ME 7.4.4.jpg'),
(170, 'Peugeot', 'Bosch MED 17.4', 'Description of Bosch MED 17.4', 'images/ECUMODELS/Peugeot/Bosch MED 17.4.jpg'),
(171, 'Peugeot', 'Bosch MED 17.4 v2', 'Description of Bosch MED 17.4 v2', 'images/ECUMODELS/Peugeot/Bosch MED 17.4 v2.jpg'),
(172, 'Peugeot', 'Continental SID 208v2', 'Description of Continental SID 208v2', 'images/ECUMODELS/Peugeot/Continental SID 208v2.jpg'),
(173, 'Peugeot', 'Continental SID 807', 'Description of Continental SID 807', 'images/ECUMODELS/Peugeot/Continental SID 807.jpg'),
(174, 'Peugeot', 'Delphi DCM 1.2', 'Description of Delphi DCM 1.2', 'images/ECUMODELS/Peugeot/Delphi DCM 1.2.jpg'),
(175, 'Peugeot', 'Delphi DCM 3.4', 'Description of Delphi DCM 3.4', 'images/ECUMODELS/Peugeot/Delphi DCM 3.4.jpg'),
(176, 'Peugeot', 'Magneti Marelli IAW 6LPB', 'Description of Magneti Marelli IAW 6LPB', 'images/ECUMODELS/Peugeot/Magneti Marelli IAW 6LPB.jpg'),
(177, 'Peugeot', 'Siemens SID 201', 'Description of Siemens SID 201', 'images/ECUMODELS/Peugeot/Siemens SID 201.jpg'),
(178, 'Peugeot', 'Siemens SID 801', 'Description of Siemens SID 801', 'images/ECUMODELS/Peugeot/Siemens SID 801.jpg'),
(179, 'Peugeot', 'Siemens SID 803', 'Description of Siemens SID 803', 'images/ECUMODELS/Peugeot/Siemens SID 803.jpg'),
(180, 'Peugeot', 'Siemens SIM 210', 'Description of Siemens SIM 210', 'images/ECUMODELS/Peugeot/Siemens SIM 210.jpg'),
(181, 'Peugeot', 'Visteon DCU 102', 'Description of Visteon DCU 102', 'images/ECUMODELS/Peugeot/Visteon DCU 102.jpg'),
(182, 'Porsche', 'Bosch EDC17CP14', 'Description of Bosch EDC17CP14', 'images/ECUMODELS/Porsche/Bosch EDC17CP14.jpg'),
(183, 'Porsche', 'Bosch EDC17CP44 v1', 'Description of Bosch EDC17CP44 v1', 'images/ECUMODELS/Porsche/Bosch EDC17CP44 v1.jpg'),
(184, 'Porsche', 'Bosch EDC17CP44 v1-', 'Description of Bosch EDC17CP44 v1-', 'images/ECUMODELS/Porsche/Bosch EDC17CP44 v1-.jpg'),
(185, 'Porsche', 'Bosch EDC17CP44 v2', 'Description of Bosch EDC17CP44 v2', 'images/ECUMODELS/Porsche/Bosch EDC17CP44 v2.jpg'),
(186, 'Porsche', 'Bosch EDC17CP44 v2-', 'Description of Bosch EDC17CP44 v2-', 'images/ECUMODELS/Porsche/Bosch EDC17CP44 v2-.jpg'),
(187, 'Porsche', 'Siemens SDI 4', 'Description of Siemens SDI 4', 'images/ECUMODELS/Porsche/Siemens SDI 4.jpg'),
(188, 'Renault', 'Bosch EDC15C2', 'Description of Bosch EDC15C2', 'images/ECUMODELS/Renault/Bosch EDC15C2.jpg'),
(189, 'Renault', 'Bosch EDC15C3', 'Description of Bosch EDC15C3', 'images/ECUMODELS/Renault/Bosch EDC15C3.jpg'),
(190, 'Renault', 'Bosch EDC16CP33', 'Description of Bosch EDC16CP33', 'images/ECUMODELS/Renault/Bosch EDC16CP33.jpg'),
(191, 'Renault', 'Bosch EDC17C11', 'Description of Bosch EDC17C11', 'images/ECUMODELS/Renault/Bosch EDC17C11.jpg'),
(192, 'Renault', 'Bosch ME 7.4.5', 'Description of Bosch ME 7.4.5', 'images/ECUMODELS/Renault/Bosch ME 7.4.5.jpg'),
(193, 'Renault', 'Continental SID 807', 'Description of Continental SID 807', 'images/ECUMODELS/Renault/Continental SID 807.jpg'),
(194, 'Renault', 'Delphi DCM 1.2', 'Description of Delphi DCM 1.2', 'images/ECUMODELS/Renault/Delphi DCM 1.2.jpg'),
(195, 'Renault', 'EDC16CP33', 'Description of EDC16CP33', 'images/ECUMODELS/Renault/EDC16CP33.jpg'),
(196, 'Renault', 'Sagem 3000', 'Description of Sagem 3000', 'images/ECUMODELS/Renault/Sagem 3000.jpg'),
(197, 'Renault', 'Siemens Fenix 5', 'Description of Siemens Fenix 5', 'images/ECUMODELS/Renault/Siemens Fenix 5.jpg'),
(198, 'Renault', 'Siemens SID 301', 'Description of Siemens SID 301', 'images/ECUMODELS/Renault/Siemens SID 301.jpg'),
(199, 'Renault', 'Siemens SIM 210', 'Description of Siemens SIM 210', 'images/ECUMODELS/Renault/Siemens SIM 210.jpg'),
(200, 'Renault', 'Simens Sirius32', 'Description of Simens Sirius32', 'images/ECUMODELS/Renault/Simens Sirius32.jpg'),
(201, 'Saab', 'Bosch ME 9.6', 'Description of Bosch ME 9.6', 'images/ECUMODELS/Saab/Bosch ME 9.6.jpg'),
(202, 'Smart', 'Bosch ME 7.7.0', 'Description of Bosch ME 7.7.0', 'images/ECUMODELS/Smart/Bosch ME 7.7.0.jpg'),
(203, 'Smart', 'Bosch MEG 1', 'Description of Bosch MEG 1', 'images/ECUMODELS/Smart/Bosch MEG 1.jpg'),
(204, 'Suzuki', 'Bosch VME 17', 'Description of Bosch VME 17', 'images/ECUMODELS/Suzuki/Bosch VME 17.jpg'),
(205, 'Suzuki', 'Denso 33920-62J3', 'Description of Denso 33920-62J3', 'images/ECUMODELS/Suzuki/Denso 33920-62J3.jpg'),
(206, 'Toyota', 'Bosch EDC17CP07', 'Description of Bosch EDC17CP07', 'images/ECUMODELS/Toyota/Bosch EDC17CP07.jpg'),
(207, 'Toyota', 'Bosch ME 7.9.9', 'Description of Bosch ME 7.9.9', 'images/ECUMODELS/Toyota/Bosch ME 7.9.9.jpg'),
(208, 'VAG', '028 906 021 xx MSA12 and MSA15.5', 'Description', 'images/ECUMODELS/VAG/028 906 021 xx MSA12 and MSA15.5.jpg'),
(209, 'VAG', 'Magneti Marelli IAW4BV', 'Description', 'images/ECUMODELS/VAG/Magneti Marelli IAW4BV.jpg'),
(210, 'VAG', 'Bosch EDC15C4', 'Description', 'images/ECUMODELS/VAG/Bosch EDC15C4.jpg'),
(211, 'VAG', 'Magneti Marelli IAW4TV', 'Description', 'images/ECUMODELS/VAG/Magneti Marelli IAW4TV.jpg'),
(212, 'VAG', 'Bosch EDC15P', 'Description', 'images/ECUMODELS/VAG/Bosch EDC15P.jpg'),
(213, 'VAG', 'Siemens PPD 1', 'Description', 'images/ECUMODELS/VAG/Siemens PPD 1.jpg'),
(214, 'VAG', 'Bosch EDC15VM', 'Description', 'images/ECUMODELS/VAG/Bosch EDC15VM.jpg'),
(215, 'VAG', 'Siemens Simos 2.4', 'Description', 'images/ECUMODELS/VAG/Siemens Simos 2.4.jpg'),
(216, 'VAG', 'Bosch EDC17C46 v2', 'Description', 'images/ECUMODELS/VAG/Bosch EDC17C46 v2.jpg'),
(217, 'VAG', 'Siemens Simos 3.3', 'Description', 'images/ECUMODELS/VAG/Siemens Simos 3.3.jpg'),
(218, 'VAG', 'Bosch EDC17C46', 'Description', 'images/ECUMODELS/VAG/Bosch EDC17C46.jpg'),
(219, 'VAG', 'Siemens Simos 3PG', 'Description', 'images/ECUMODELS/VAG/Siemens Simos 3PG.jpg'),
(220, 'VAG', 'Bosch EDC17C54', 'Description', 'images/ECUMODELS/VAG/Bosch EDC17C54.jpg'),
(221, 'VAG', 'Siemens Simos 6.22', 'Description', 'images/ECUMODELS/VAG/Siemens Simos 6.22.jpg'),
(222, 'VAG', 'Bosch EDC17CP04 CAN', 'Description', 'images/ECUMODELS/VAG/Bosch EDC17CP04 CAN.jpg'),
(223, 'VAG', 'Siemens Simos 7.1', 'Description', 'images/ECUMODELS/VAG/Siemens Simos 7.1.jpg'),
(224, 'VAG', 'Bosch EDC17CP04 K-Line', 'Description', 'images/ECUMODELS/VAG/Bosch EDC17CP04 K-Line.jpg'),
(225, 'VAG', 'Simens Simos 2.4', 'Description', 'images/ECUMODELS/VAG/Simens Simos 2.4.jpg'),
(226, 'VAG', 'Bosch EDC17CP14', 'Description', 'images/ECUMODELS/VAG/Bosch EDC17CP14.jpg'),
(227, 'VAG', 'Simos PCR2.1', 'Description', 'images/ECUMODELS/VAG/Simos PCR2.1.jpg'),
(228, 'VAG', 'Bosch EDC17CP20', 'Description', 'images/ECUMODELS/VAG/Bosch EDC17CP20.jpg'),
(229, 'VAG', 'Bosch EDC17CP24', 'Description', 'images/ECUMODELS/VAG/Bosch EDC17CP24.jpg'),
(230, 'VAG', 'Bosch EDC17CP44 v1', 'Description', 'images/ECUMODELS/VAG/Bosch EDC17CP44 v1.jpg'),
(231, 'VAG', 'Bosch EDC17CP44 v2', 'Description', 'images/ECUMODELS/VAG/Bosch EDC17CP44 v2.jpg'),
(232, 'VAG', 'Bosch EDC17U01', 'Description', 'images/ECUMODELS/VAG/Bosch EDC17U01.jpg'),
(233, 'VAG', 'Bosch EDC17005', 'Description', 'images/ECUMODELS/VAG/Bosch EDC17005.jpg'),
(234, 'VAG', 'Bosch M 3.8.3', 'Description', 'images/ECUMODELS/VAG/Bosch M 3.8.3.jpg'),
(235, 'VAG', 'Bosch ME 7.1.1 v2', 'Description', 'images/ECUMODELS/VAG/Bosch ME 7.1.1 v2.jpg'),
(236, 'VAG', 'Bosch ME 7.1.1', 'Description', 'images/ECUMODELS/VAG/Bosch ME 7.1.1.jpg'),
(237, 'VAG', 'Bosch ME 7.5.10', 'Description', 'images/ECUMODELS/VAG/Bosch ME 7.5.10.jpg'),
(238, 'VAG', 'Bosch MED 7.1.1', 'Description', 'images/ECUMODELS/VAG/Bosch MED 7.1.1.jpg'),
(239, 'VAG', 'Bosch MED 9.5.1', 'Description', 'images/ECUMODELS/VAG/Bosch MED 9.5.1.jpg'),
(240, 'VAG', 'Bosch MED 17.1', 'Description', 'images/ECUMODELS/VAG/Bosch MED 17.1.jpg'),
(241, 'VAG', 'Bosch MED 17.5.2', 'Description', 'images/ECUMODELS/VAG/Bosch MED 17.5.2.jpg'),
(242, 'VAG', 'Bosch MED 17.5.2-', 'Description', 'images/ECUMODELS/VAG/Bosch MED 17.5.2-.jpg'),
(243, 'VAG', 'Bosch MED 17.5.5', 'Description', 'images/ECUMODELS/VAG/Bosch MED 17.5.5.jpg'),
(244, 'VAG', 'Bosch MED 17.5.25', 'Description', 'images/ECUMODELS/VAG/Bosch MED 17.5.25.jpg'),
(245, 'VAG', 'Bosch MED 17.5', 'Description', 'images/ECUMODELS/VAG/Bosch MED 17.5.jpg'),
(246, 'VAG', 'Bosch MED 17.50.20', 'Description', 'images/ECUMODELS/VAG/Bosch MED 17.50.20.jpg'),
(247, 'VAG', 'EDC17C46', 'Description', 'images/ECUMODELS/VAG/EDC17C46.jpg'),
(248, 'VAG', 'Magneti Marelli 4HV', 'Description', 'images/ECUMODELS/VAG/Magneti Marelli 4HV.jpg'),
(249, 'Volvo', 'Bosch EDC16C31-7', 'Description of Bosch EDC16C31-7', 'images/ECUMODELS/Volvo/Bosch EDC16C31-7.jpg'),
(250, 'Volvo', 'Bosch EDC17CP22', 'Description of Bosch EDC17CP22', 'images/ECUMODELS/Volvo/Bosch EDC17CP22.jpg'),
(251, 'Volvo', 'Bosch EDC17CP48', 'Description of Bosch EDC17CP48', 'images/ECUMODELS/Volvo/Bosch EDC17CP48.jpg'),
(252, 'Volvo', 'Bosch MED 17', 'Description of Bosch MED 17', 'images/ECUMODELS/Volvo/Bosch MED 17.jpg'),
(253, 'Volvo', 'Continental SID 807', 'Description of Continental SID 807', 'images/ECUMODELS/Volvo/Continental SID 807.jpg'),
(254, 'Volvo', 'Siemens SID 206', 'Description of Siemens SID 206', 'images/ECUMODELS/Volvo/Siemens SID 206.jpg'),
(255, 'Volvo', 'Siemens SID 803', 'Description of Siemens SID 803', 'images/ECUMODELS/Volvo/Siemens SID 803.jpg');
-- --------------------------------------------------------
--
-- Table structure for table `makes`
--
CREATE TABLE `makes` (
`make_id` int(11) NOT NULL,
`make_name` varchar(255) NOT NULL,
`logo_path` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `makes`
--
INSERT INTO `makes` (`make_id`, `make_name`, `logo_path`) VALUES
(1, 'BMW', 'images/logos/bmw.png'),
(2, 'Hyundai', 'images/logos/hyundai.png'),
(3, 'Toyota', 'images/logos/toyota.png'),
(4, 'abarth', 'images/logos/abarth.png'),
(5, 'Acura', 'images/logos/Acura.png'),
(6, 'alfaromeo', 'images/logos/alfaromeo.png'),
(7, 'Aston-Martin', 'images/logos/Aston-Martin.png'),
(8, 'Audi', 'images/logos/Audi.png'),
(9, 'bentley', 'images/logos/bentley.png'),
(10, 'Buick', 'images/logos/Buick.png'),
(11, 'Cadillac', 'images/logos/Cadillac.png'),
(12, 'Chevrolet', 'images/logos/Chevrolet.png'),
(13, 'chrysler', 'images/logos/chrysler.png'),
(14, 'Citroen_izmostock', 'images/logos/Citroen_izmostock.png'),
(15, 'Dacia', 'images/logos/Dacia.png'),
(16, 'Dodge', 'images/logos/Dodge.png'),
(17, 'Ferrari', 'images/logos/Ferrari.png'),
(18, 'fiat', 'images/logos/fiat-1.png'),
(19, 'Ford', 'images/logos/Ford.png'),
(20, 'gmc', 'images/logos/gmc.png'),
(21, 'honda', 'images/logos/honda.png'),
(22, 'Hummer', 'images/logos/Hummer.png'),
(23, 'infinity', 'images/logos/infinity.png'),
(24, 'Isuzu', 'images/logos/Isuzu.png'),
(25, 'Jaguar', 'images/logos/Jaguar.png'),
(26, 'Jeep', 'images/logos/Jeep.png'),
(27, 'kia', 'images/logos/kia-1.png'),
(28, 'Lamborghini', 'images/logos/Lamborghini.png'),
(29, 'lancia', 'images/logos/lancia-1.png'),
(30, 'landrover', 'images/logos/landrover.png'),
(31, 'Lexus', 'images/logos/Lexus.png'),
(32, 'Lincoln', 'images/logos/Lincoln.png'),
(33, 'Lotus', 'images/logos/Lotus.png'),
(34, 'maserati', 'images/logos/maserati.png'),
(35, 'mazda', 'images/logos/mazda-1.png'),
(36, 'Mercedes-Benz', 'images/logos/Mercedes-Benz.png'),
(37, 'Mercury', 'images/logos/Mercury.png'),
(38, 'Mini', 'images/logos/Mini.png'),
(39, 'Mitsubishi', 'images/logos/Mitsubishi.png'),
(40, 'Nissan', 'images/logos/Nissan.png'),
(41, 'Opel', 'images/logos/Opel.png'),
(42, 'Peugeot', 'images/logos/Peugeot.png'),
(43, 'Pontiac', 'images/logos/Pontiac.png'),
(44, 'Porsche', 'images/logos/Porsche.png'),
(45, 'Ram', 'images/logos/Ram.png'),
(46, 'Renault', 'images/logos/Renault.png'),
(47, 'Saab', 'images/logos/Saab.png'),
(48, 'Saturn', 'images/logos/Saturn.png'),
(49, 'Scion', 'images/logos/Scion.png'),
(50, 'Seat', 'images/logos/Seat.png'),
(51, 'Skoda', 'images/logos/Skoda.png'),
(52, 'Smart', 'images/logos/Smart.png'),
(53, 'SsangYong', 'images/logos/SsangYong-1.png'),
(54, 'Subaru', 'images/logos/Subaru.png'),
(55, 'Suzuki', 'images/logos/Suzuki.png'),
(56, 'Tesla', 'images/logos/Tesla.png'),
(57, 'Volkswagen', 'images/logos/Volkswagen.png'),
(58, 'Volvo', 'images/logos/Volvo-1.png'),
(59, 'wiesmann', 'images/logos/wiesmann.png');
-- --------------------------------------------------------
--
-- Table structure for table `models`
--
CREATE TABLE `models` (
`model_id` int(11) NOT NULL,
`make_id` int(11) NOT NULL,
`model_name` varchar(255) NOT NULL,
`image_path` varchar(255) DEFAULT NULL,
`image_path_HDPH` varchar(255) DEFAULT NULL,
`image_path_ECUPEN` varchar(255) DEFAULT NULL,
`image_path_FUSEBL` varchar(255) DEFAULT NULL,
`image_path_ALL VEWS` varchar(255) DEFAULT NULL,
`image_path_LPDF` varchar(255) DEFAULT NULL,
`image_path_PARTPDF` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `models`
--
INSERT INTO `models` (`model_id`, `make_id`, `model_name`, `image_path`, `image_path_HDPH`, `image_path_ECUPEN`, `image_path_FUSEBL`, `image_path_ALL VEWS`, `image_path_LPDF`, `image_path_PARTPDF`) VALUES
(1, 1, '1', 'images/cars/BMW/1.svgz', '', '', '', NULL, NULL, NULL),
(2, 1, '2', 'images/cars/BMW/2.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(3, 1, '3', 'images/cars/BMW/3.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(4, 1, '4', 'images/cars/BMW/4.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(5, 1, '5', 'images/cars/BMW/5.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(6, 1, '6', 'images/cars/BMW/6.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(7, 1, '7', 'images/cars/BMW/7.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(8, 1, '8', 'images/cars/BMW/8.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(9, 1, '1500-2000', 'images/cars/BMW/1500-2000.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(10, 1, '1502-2002', 'images/cars/BMW/1502-2002.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(11, 1, '2 Active Tourer', 'images/cars/BMW/2 Active Tourer.svgz', '', '', '', NULL, NULL, NULL),
(12, 1, 'X1', 'images/cars/BMW/X1.svgz', '', '', '', NULL, NULL, NULL),
(13, 1, 'X2', 'images/cars/BMW/X2.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(14, 1, 'X3', 'images/cars/BMW/X3.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(15, 1, 'X4', 'images/cars/BMW/X4.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(16, 1, 'X5', 'images/cars/BMW/X5.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(17, 1, 'X6', 'images/cars/BMW/X6.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(18, 1, 'X7', 'images/cars/BMW/X7.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(19, 1, 'Z1', 'images/cars/BMW/Z1.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(20, 1, 'Z3', 'images/cars/BMW/Z3.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(21, 1, 'Z4', 'images/cars/BMW/Z4.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(22, 1, 'Z8', 'images/cars/BMW/Z8.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(23, 1, 'i3', 'images/cars/BMW/i3.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(24, 1, 'i4', 'images/cars/BMW/i4.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(25, 1, 'i8', 'images/cars/BMW/i8.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(26, 1, 'iX', 'images/cars/BMW/iX.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(27, 1, 'iX1', 'images/cars/BMW/iX1.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(28, 1, 'iX3', 'images/cars/BMW/iX3.svgz', NULL, NULL, NULL, NULL, NULL, NULL),
(30, 2, 'Accent', 'images/cars/hyundai/Hyundai-Accent-V-Hatchback_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(31, 2, 'Alcazar', 'images/cars/hyundai/Hyundai-Alcazar_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(32, 2, 'Atos', 'images/cars/hyundai/Hyundai-Atos_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(33, 2, 'Aura', 'images/cars/hyundai/no.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(34, 2, 'Avante', 'images/cars/hyundai/Hyundai-Avante_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(35, 2, 'Bayon', 'images/cars/hyundai/Hyundai-Bayon-facelift-2024_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(36, 2, 'Casper', 'images/cars/hyundai/Hyundai-Casper_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(37, 2, 'Celesta', 'images/cars/hyundai/Hyundai-Celesta-Station-Wagon_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(38, 2, 'Centennial', 'images/cars/hyundai/Hyundai-Centennial_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(39, 2, 'Coupe', 'images/cars/hyundai/Hyundai-Coupe-II-GK_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(40, 2, 'Dynasty', 'images/cars/hyundai/Hyundai-Dynasty_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(41, 2, 'Elantra', 'images/cars/hyundai/Hyundai-Elantra-VII-CN7-facelift-2023_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(42, 2, 'EON', 'images/cars/hyundai/Hyundai-EON_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(43, 2, 'Equus', 'images/cars/hyundai/Hyundai-Equus-VI_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(44, 2, 'Exter', 'images/cars/hyundai/no.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(45, 2, 'Galloper', 'images/cars/hyundai/Hyundai-Galloper-II_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(46, 2, 'Genesis', 'images/cars/hyundai/Genesis.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(47, 2, 'Getz', 'images/cars/hyundai/Hyundai-Getz_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(48, 2, 'Grandeur/Azera', 'images/cars/hyundai/Hyundai-Grandeur-Azera-VII-GN7_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(49, 2, 'H-1', 'images/cars/hyundai/Hyundai-H-1-II-Cargo-facelift-2018_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(50, 2, 'i10', 'images/cars/hyundai/Hyundai-i10-III-facelift-2023_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(51, 2, 'i20', 'images/cars/hyundai/Hyundai-i20-III-facelift-2023_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(52, 2, 'i30', 'images/cars/hyundai/Hyundai-i30-III-CW-facelift-2024_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(53, 2, 'i40', 'images/cars/hyundai/Hyundai-i40-Combi-facelift-2018_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(54, 2, 'Inster', 'images/cars/hyundai/Hyundai-INSTER_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(55, 2, 'IONIQ', 'images/cars/hyundai/Hyundai-IONIQ-facelift-2019_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(56, 2, 'IONIQ 5', 'images/cars/hyundai/Hyundai-IONIQ-5-facelift-2024_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(57, 2, 'IONIQ 9', 'images/cars/hyundai/Hyundai-IONIQ-9_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(58, 2, 'ix20', 'images/cars/hyundai/ix20.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(59, 2, 'ix25/Creta', 'images/cars/hyundai/Hyundai-ix25_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(60, 2, 'ix35', 'images/cars/hyundai/Hyundai-ix35-FCEV_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(61, 2, 'ix55', 'images/cars/hyundai/Hyundai-ix55_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(62, 2, 'Kona', 'images/cars/hyundai/Hyundai-Kona-II_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(63, 2, 'Lafesta', 'images/cars/hyundai/Hyundai-Lafesta_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(64, 2, 'Lantra', 'images/cars/hyundai/Hyundai-Lantra_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(65, 2, 'Lavita', 'images/cars/hyundai/Lavita.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(66, 2, 'Le-Fil-Rouge', 'images/cars/hyundai/Hyundai-Le-Fil-Rouge-Concept_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(67, 2, 'Matrix', 'images/cars/hyundai/Hyundai-Matrix_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(68, 2, 'nexo', 'images/cars/hyundai/hyundai-nexo_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(69, 2, 'NF', 'images/cars/hyundai/NF.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(70, 2, 'Palisade', 'images/cars/hyundai/Hyundai-Palisade-facelift-2022_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(71, 2, 'Pony', 'images/cars/hyundai/Hyundai-Pony-excel-Hatchback-X-2_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(72, 2, 'Reina', 'images/cars/hyundai/Hyundai-Reina_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(73, 2, 'S-Coupe', 'images/cars/hyundai/Hyundai-S-Coupe-SLC_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(74, 2, 'Santa-Cruz', 'images/cars/hyundai/Hyundai-Santa-Cruz_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(75, 2, 'Santa-Fe', 'images/cars/hyundai/Hyundai-Santa-Fe-V-MX5_thumb_1.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(76, 2, 'Santamo', 'images/cars/hyundai/no.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(77, 2, 'Santro', 'images/cars/hyundai/no.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(78, 2, 'Solaris', 'images/cars/hyundai/hyundai-solaris-i-sedan-facelift-2014_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(79, 2, 'Sonata', 'images/cars/hyundai/Hyundai-Sonata-VIII-DN8-facelift-2023_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(80, 2, 'Stellar', 'images/cars/hyundai/Hyundai-Stellar_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(81, 2, 'Terracan', 'images/cars/hyundai/Hyundai-Terracan_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(82, 2, 'Tiburon', 'images/cars/hyundai/Hyundai-Tiburon-II_thumb (1).jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(83, 2, 'Trajet', 'images/cars/hyundai/Hyundai-Trajet-FO_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(84, 2, 'Tucson', 'images/cars/hyundai/Hyundai-Tucson-IV-facelift-2024_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(85, 2, 'Tuscani', 'images/cars/hyundai/Hyundai-Tuscani-II_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(86, 2, 'Veloster', 'images/cars/hyundai/hyundai-veloster-n_thumb_1.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(87, 2, 'Venue', 'images/cars/hyundai/Hyundai-Venue_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(88, 2, 'Veracruz', 'images/cars/hyundai/Hyundai-Veracruz_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(89, 2, 'Verna', 'images/cars/hyundai/Hyundai-Verna-V-facelift-2020_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(90, 2, 'Xcent', 'images/cars/hyundai/no.jpg', NULL, NULL, NULL, NULL, NULL, NULL),
(91, 2, 'XG', 'images/cars/hyundai/Hyundai-XG_thumb.jpg', NULL, NULL, NULL, NULL, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `model_versions`
--
CREATE TABLE `model_versions` (
`version_id` int(11) NOT NULL,
`model_id` int(11) DEFAULT NULL,
`year` text,
`version_name` text,
`version_name_2` text,
`version_name_3` text,
`version_name_4` text,
`version_name_5` text,
`version_name_6` text,
`version_name_7` text,
`version_name_8` text,
`version_name_9` text,
`version_name_10` text,
`version_name_11` text,
`version_name_12` text,
`version_name_13` text,
`version_name_14` text,
`version_name_15` text,
`version_name_16` text,
`version_name_17` text,
`version_name_18` text,
`version_name_19` text,
`version_name_20` text
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `model_versions`
--
INSERT INTO `model_versions` (`version_id`, `model_id`, `year`, `version_name`, `version_name_2`, `version_name_3`, `version_name_4`, `version_name_5`, `version_name_6`, `version_name_7`, `version_name_8`, `version_name_9`, `version_name_10`, `version_name_11`, `version_name_12`, `version_name_13`, `version_name_14`, `version_name_15`, `version_name_16`, `version_name_17`, `version_name_18`, `version_name_19`, `version_name_20`) VALUES
(2, 1, '2007 - 2011 BMW 1 Series', '1212121', '1.6 116i code moteur : N43 B16A/AA', '2.0 116d', '2.0 118d', '2.0 118i', '2.0 120d', '2.0 120i', '2.0 123d', '3.0 125i', '3.0 130i', '3.0 135i', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `obd_codes`
--
CREATE TABLE `obd_codes` (
`id` int(11) NOT NULL,
`code` varchar(50) NOT NULL,
`description` text,
`moreinfo` text,
`imgpath` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `obd_codes`
--
INSERT INTO `obd_codes` (`id`, `code`, `description`, `moreinfo`, `imgpath`) VALUES
(1, 'P001', 'Camshaft Position Timing Over-Advanced or System Performance', 'This code indicates that the camshaft timing is over-advanced.', 'images/cars/BMW/BMW_1-Series_118d_M_Sport.jpg'),
(2, 'P002', 'Camshaft Position Timing Over-Retarded', 'This code indicates that the camshaft timing is over-retarded.', 'images/cars/hyundai/Hyundai-Accent-V-Hatchback_thumb.jpg'),
(3, 'P0000', 'No trouble code', NULL, NULL),
(4, 'P0001', 'Fuel Volume Regulator Control Circuit / Open', NULL, NULL),
(5, 'P0002', 'Fuel Volume Regulator Control Circuit Range/Performance', NULL, NULL),
(6, 'P0003', 'Fuel Volume Regulator Control Circuit Low', NULL, NULL),
(7, 'P0004', 'Fuel Volume Regulator Control Circuit High', NULL, NULL),
(8, 'P0005', 'Fuel Shutoff Valve Control Circuit / Open', NULL, NULL),
(9, 'P0006', 'Fuel Shutoff Valve Control Circuit Low', NULL, NULL),
(10, 'P0007', 'Fuel Shutoff Valve Control Circuit High', NULL, NULL),
(11, 'P0008', 'Engine Position System Performance - Bank 2', NULL, NULL),
(12, 'P0009', 'Engine Position System Performance - Bank 2', NULL, NULL),
(13, 'P0010', 'Intake Camshaft Position Actuator Circuit / Open (Bank 2)', NULL, NULL),
(14, 'P0011', 'Intake Camshaft Position Timing - Over-Advanced (Bank 2)', NULL, NULL),
(15, 'P0012', 'Intake Camshaft Position Timing - Over-Retarded (Bank 2)', NULL, NULL),
(16, 'P0013', 'Exhaust Camshaft Position Actuator Circuit / Open (Bank 2)', NULL, NULL),
(17, 'P0014', 'Exhaust Camshaft Position Timing - Over-Advanced (Bank 2)', NULL, NULL),
(18, 'P0015', 'Exhaust Camshaft Position Timing - Over-Retarded (Bank 2)', NULL, NULL),
(19, 'P0016', 'Crankshaft Position Camshaft Position Correlation Bank 2 Sensor A', NULL, NULL),
(20, 'P0017', 'Crankshaft Position Camshaft Position Correlation Bank 2 Sensor B', NULL, NULL),
(21, 'P0018', 'Crankshaft Position Camshaft Position Correlation Bank 2 Sensor A', NULL, NULL),
(22, 'P0019', 'Crankshaft Position Camshaft Position Correlation Bank 2 Sensor B', NULL, NULL),
(23, 'P0020', 'Intake Camshaft Position Actuator Circuit / Open (Bank 2)', NULL, NULL),
(24, 'P0021', 'Intake Camshaft Position Timing - Over-Advanced (Bank 2)', NULL, NULL),
(25, 'P0022', 'Intake Camshaft Position Timing - Over-Retarded (Bank 2)', NULL, NULL),
(26, 'P0023', 'Exhaust Camshaft Position Actuator Circuit / Open (Bank 2)', NULL, NULL),
(27, 'P0024', 'Exhaust Camshaft Position Timing - Over-Advanced (Bank 2)', NULL, NULL),
(28, 'P0025', 'Exhaust Camshaft Position Timing - Over-Retarded (Bank 2)', NULL, NULL),
(29, 'P0026', 'Intake Valve Control Solenoid Circuit Range/Performance (Bank 2)', NULL, NULL),
(30, 'P0027', 'Exhaust Valve Control Solenoid Circuit Range/Performance (Bank 2)', NULL, NULL),
(31, 'P0028', 'Intake Valve Control Solenoid Circuit Range/Performance (Bank 2)', NULL, NULL),
(32, 'P0029', 'Exhaust Valve Control Solenoid Circuit Range/Performance (Bank 2)', NULL, NULL),
(33, 'P0030', 'Heated Oxygen Sensor (H02S) Heater Control Circuit Bank 2 Sensor 1', NULL, NULL),
(34, 'P0031', 'Heated Oxygen Sensor (HO2S) Heater Circuit Low Voltage Bank 2 Sensor 1', NULL, NULL),
(35, 'P0032', 'Heated Oxygen Sensor (HO2S) Heater Circuit High Voltage Bank 2 Sensor 1', NULL, NULL),
(36, 'P0033', 'Turbo/Super Charger Bypass Valve Control Circuit / Open', NULL, NULL),
(37, 'P0034', 'Turbo/Super Charger Bypass Valve Control Circuit Low', NULL, NULL),
(38, 'P0035', 'Turbo/Super Charger Bypass Valve Control Circuit High', NULL, NULL),
(39, 'P0036', 'Heated Oxygen Sensor (HO2S) Heater Control Circuit Bank 2 Sensor 2', NULL, NULL),
(40, 'P0037', 'Heated Oxygen Sensor (HO2S) Heater Circuit Low Voltage Bank 2 Sensor 2', NULL, NULL),
(41, 'P0038', 'Heated Oxygen Sensor (HO2S) Heater Circuit High Voltage Bank 2 Sensor 2', NULL, NULL),
(42, 'P0039', 'Turbo/Super Charger Bypass Valve Control Circuit Range/Performance', NULL, NULL),
(43, 'P0040', 'Oxygen Sensor Signals Swapped Bank 2 Sensor 1 / Bank 2 Sensor 1', NULL, NULL),
(44, 'P0041', 'Oxygen Sensor Signals Swapped Bank 2 Sensor 2 / Bank 2 Sensor 2', NULL, NULL),
(45, 'P0042', 'HO2S Heater Control Circuit (Bank 2, Sensor 3)', NULL, NULL),
(46, 'P0043', 'HO2S Heater Control Circuit Low (Bank 2, Sensor 3)', NULL, NULL),
(47, 'P0044', 'HO2S Heater Control Circuit High (Bank 2, Sensor 3)', NULL, NULL),
(48, 'P0046', 'Turbo/Super Charger Boost Control Solenoid Circuit / Open', NULL, NULL),
(49, 'P0046', 'Turbo/Super Charger Boost Control Solenoid Circuit Range/Performance', NULL, NULL),
(50, 'P0047', 'Turbo/Super Charger Boost Control Solenoid Circuit Low', NULL, NULL),
(51, 'P0048', 'Turbo/Super Charger Boost Control Solenoid Circuit High', NULL, NULL),
(52, 'P0049', 'Turbo/Super Charger Turbine Overspeed', NULL, NULL),
(53, 'P0050', 'Heated Oxygen Sensor (HO2S) Heater Circuit Bank 2 Sensor 1', NULL, NULL),
(54, 'P0051', 'Heated Oxygen Sensor (HO2S) Heater Circuit Low Voltage Bank 2 Sensor 1', NULL, NULL),
(55, 'P0052', 'Heated Oxygen Sensor (HO2S) Heater Circuit High Voltage Bank 2 Sensor 1', NULL, NULL),
(56, 'P0053', 'HO2S Heater Resistance Bank 2 Sensor 1 (PCM)', NULL, NULL),
(57, 'P0054', 'HO2S Heater Resistance Bank 2 Sensor 2 (PCM)', NULL, NULL),
(58, 'P0055', 'HO2S Heater Resistance Bank 2 Sensor 3 (PCM)', NULL, NULL),
(59, 'P0056', 'Heated Oxygen Sensor (HO2S) Heater Circuit Bank 2 Sensor 2', NULL, NULL),
(60, 'P0057', 'Heated Oxygen Sensor (HO2S) Heater Circuit Low Voltage Bank 2 Sensor 2', NULL, NULL),
(61, 'P0058', 'Heated Oxygen Sensor (HO2S) Heater Circuit High Voltage Bank 2 Sensor 2', NULL, NULL),
(62, 'P0059', 'HO2S Heater Resistance (Bank 2, Sensor 1)', NULL, NULL),
(63, 'P0060', 'HO2S Heater Resistance (Bank 2, Sensor 2)', NULL, NULL),
(64, 'P0061', 'HO2S Heater Resistance (Bank 2, Sensor 3)', NULL, NULL),
(65, 'P0062', 'HO2S Heater Control Circuit (Bank 2, Sensor 3)', NULL, NULL),
(66, 'P0063', 'HO2S Heater Control Circuit Low (Bank 2, Sensor 3)', NULL, NULL),
(67, 'P0064', 'HO2S Heater Control Circuit High (Bank 2, Sensor 3)', NULL, NULL),
(68, 'P0065', 'Air Assisted Injector Control Range/Performance', NULL, NULL),
(69, 'P0066', 'Air Assisted Injector Control Circuit or Circuit Low', NULL, NULL),
(70, 'P0067', 'Air Assisted Injector Control Circuit or Circuit High', NULL, NULL),
(71, 'P0068', 'MAP / MAF - Throttle Position Correlation', NULL, NULL),
(72, 'P0069', 'MAP - Barometric Pressure Correlation', NULL, NULL),
(73, 'P0070', 'Ambient Air Temperature Sensor Circuit', NULL, NULL),
(74, 'P0071', 'Ambient Air Temperature Sensor Range/Performance', NULL, NULL),
(75, 'P0072', 'Ambient Air Temperature Sensor Circuit Low Input', NULL, NULL),
(76, 'P0073', 'Ambient Air Temperature Sensor Circuit High Input', NULL, NULL),
(77, 'P0074', 'Ambient Air Temperature Sensor Circuit Intermittent/Erratic', NULL, NULL),
(78, 'P0075', 'Intake Valve Control Circuit (Bank 2)', NULL, NULL),
(79, 'P0076', 'Intake Valve Control Circuit Low (Bank 2)', NULL, NULL),
(80, 'P0077', 'Intake Valve Control Circuit High (Bank 2)', NULL, NULL),
(81, 'P0078', 'Exhaust Valve Control Circuit (Bank 2)', NULL, NULL),
(82, 'P0079', 'Exhaust Valve Control Circuit Low (Bank 2)', NULL, NULL),
(83, 'P0080', 'Exhaust Valve Control Circuit High (Bank 2)', NULL, NULL),
(84, 'P0081', 'Intake Valve Control Circuit (Bank 2)', NULL, NULL),
(85, 'P0082', 'Intake Valve Control Circuit Low (Bank 2)', NULL, NULL),
(86, 'P0083', 'Intake Valve Control Circuit High (Bank 2)', NULL, NULL),
(87, 'P0084', 'Exhaust Valve Control Circuit (Bank 2)', NULL, NULL),
(88, 'P0085', 'Exhaust Valve Control Circuit Low (Bank 2)', NULL, NULL),
(89, 'P0086', 'Exhaust Valve Control Circuit High (Bank 2)', NULL, NULL),
(90, 'P0087', 'Fuel Rail/System Pressure - Too Low', NULL, NULL),
(91, 'P0088', 'Fuel Rail/System Pressure - Too High', NULL, NULL),
(92, 'P0089', 'Fuel Pressure Regulator Performance', NULL, NULL),
(93, 'P0090', 'Fuel Pressure Regulator Control Circuit', NULL, NULL),
(94, 'P0091', 'Fuel Pressure Regulator Control Circuit Low', NULL, NULL),
(95, 'P0092', 'Fuel Pressure Regulator Control Circuit High', NULL, NULL),
(96, 'P0093', 'Fuel System Leak Detected - Large Leak', NULL, NULL),
(97, 'P0094', 'Fuel System Leak Detected - Small Leak', NULL, NULL),
(98, 'P0095', 'Intake Air Temperature Sensor 2 Circuit', NULL, NULL),
(99, 'P0096', 'Intake Air Temperature Sensor 2 Circuit Range/Performance', NULL, NULL),
(100, 'P0097', 'Intake Air Temperature Sensor 2 Circuit Low Input', NULL, NULL),
(101, 'P0098', 'Intake Air Temperature Sensor 2 Circuit High Input', NULL, NULL),
(102, 'P0099', 'Intake Air Temperature Sensor 2 Circuit Intermittent/Erratic', NULL, NULL),
(103, 'P0100', 'Mass or Volume Air flow Circuit Malfunction', NULL, NULL),
(104, 'P0098', 'Intake Air Temperature Sensor 2 Circuit High Input', NULL, NULL),
(105, 'P0099', 'Intake Air Temperature Sensor 2 Circuit Intermittent/Erratic', NULL, NULL),
(106, 'P0100', 'Mass or Volume Air flow Circuit Malfunction', NULL, NULL),
(107, 'P0101', 'Mass or Volume Air flow Circuit Range/Performance Problem', NULL, NULL),
(108, 'P0102', 'Mass or Volume Air Flow Circuit low Input', NULL, NULL),
(109, 'P0103', 'Mass or Volume Air flow Circuit High Input', NULL, NULL),
(110, 'P0104', 'Mass or Volume Air flow Circuit Intermittent', NULL, NULL),
(111, 'P0105', 'Manifold Absolute Pressure/Barometric Pressure Circuit Malfunction', NULL, NULL),
(112, 'P0106', 'Manifold Absolute Pressure/Barometric Pressure Circuit Range/Performance Problem', NULL, NULL),
(113, 'P0107', 'Manifold Absolute Pressure/Barometric Pressure Circuit Low Input', NULL, NULL),
(114, 'P0108', 'Manifold Absolute Pressure/Barometric Pressure Circuit High Input', NULL, NULL),
(115, 'P0109', 'Manifold Absolute Pressure/Barometric Pressure Circuit Intermittent', NULL, NULL),
(116, 'P0110', 'Intake Air Temperature Circuit Malfunction', NULL, NULL),
(117, 'P0111', 'Intake Air Temperature Circuit Range/Performance Problem', NULL, NULL),
(118, 'P0112', 'Intake Air Temperature Circuit Low Input', NULL, NULL),
(119, 'P0113', 'Intake Air Temperature Circuit High Input', NULL, NULL),
(120, 'P0114', 'Intake Air Temperature Circuit Intermittent', NULL, NULL),
(121, 'P0115', 'Engine Coolant Temperature Circuit Malfunction', NULL, NULL),
(122, 'P0116', 'Engine Coolant Temperature Circuit Range/Performance Problem', NULL, NULL),
(123, 'P0117', 'Engine Coolant Temperature Circuit Low Input', NULL, NULL),
(124, 'P0118', 'Engine Coolant Temperature Circuit High Input', NULL, NULL),
(125, 'P0119', 'Engine Coolant Temperature Circuit Intermittent', NULL, NULL),
(126, 'P0120', 'Throttle Pedal Position Sensor/Switch A Circuit Malfunction', NULL, NULL),
(127, 'P0121', 'Throttle/Pedal Position Sensor/Switch A Circuit Range/Performance Problem', NULL, NULL),
(128, 'P0122', 'Throttle/Pedal Position Sensor/Switch A Circuit Low Input', NULL, NULL),
(129, 'P0123', 'Throttle/Pedal Position Sensor/Switch A Circuit High Input', NULL, NULL),
(130, 'P0124', 'Throttle/Pedal Position Sensor/Switch A Circuit Intermittent', NULL, NULL),
(131, 'P0125', 'Insufficient Coolant Temperature for Closed Loop Fuel Control', NULL, NULL),
(132, 'P0126', 'Insufficient Coolant Temperature for Stable Operation', NULL, NULL),
(133, 'P0127', 'Intake Air Temperature Too High', NULL, NULL),
(134, 'P0128', 'Coolant Thermostat (Coolant Temp Below Thermostat Regulating Temperature)', NULL, NULL),
(135, 'P0129', 'Barometric Pressure Too Low', NULL, NULL),
(136, 'P0130', 'O2 Sensor Circuit Malfunction (Bank 2 Sensor 1)', NULL, NULL),
(137, 'P0131', 'O2 Sensor Circuit Low Voltage (Bank 2 Sensor 1)', NULL, NULL),
(138, 'P0132', 'O2 Sensor Circuit High Voltage (Bank 2 Sensor 1)', NULL, NULL),
(139, 'P0133', 'O2 Sensor Circuit Slow Response (Bank 2 Sensor 1)', NULL, NULL),
(140, 'P0134', 'O2 Sensor Circuit No Activity Detected (Bank 2 Sensor 1)', NULL, NULL),
(141, 'P0135', 'O2 Sensor Heater Circuit Malfunction (Bank 2 Sensor 1)', NULL, NULL),
(142, 'P0136', 'O2 Sensor Circuit Malfunction (Bank 1 Sensor 2)', NULL, NULL),
(143, 'P0137', 'O2 Sensor Circuit Low Voltage (Bank 1 Sensor 2)', NULL, NULL),
(144, 'P0138', 'O2 Sensor Circuit High Voltage (Bank 1 Sensor 2)', NULL, NULL),
(145, 'P0139', 'O2 Sensor Circuit Slow Response (Bank 1 Sensor 2)', NULL, NULL),
(146, 'P0140', 'O2 Sensor Circuit No Activity Detected (Bank 2 Sensor 2)', NULL, NULL),
(147, 'P0141', 'O2 Sensor Heater Circuit Malfunction (Bank 2 Sensor 2)', NULL, NULL),
(148, 'P0142', 'O2 Sensor Circuit Malfunction (Bank 2 Sensor 3)', NULL, NULL),
(149, 'P0143', 'O2 Sensor Circuit Low Voltage (Bank 2 Sensor 3)', NULL, NULL),
(150, 'P0144', 'O2 Sensor Circuit High Voltage (Bank 2 Sensor 3)', NULL, NULL),
(151, 'P0145', 'O2 Sensor Circuit Slow Response (Bank 2 Sensor 3)', NULL, NULL),
(152, 'P0146', 'O2 Sensor Circuit No Activity Detected (Bank 2 Sensor 3)', NULL, NULL),
(153, 'P0147', 'O2 Sensor Heater Circuit Malfunction (Bank 2 Sensor 3)', NULL, NULL),
(154, 'P0148', 'Fuel Delivery Error', NULL, NULL),
(155, 'P0149', 'Fuel Timing Error', NULL, NULL),
(156, 'P0150', 'O2 Sensor Circuit Malfunction (Bank 2 Sensor 1)', NULL, NULL),
(157, 'P0151', 'O2 Sensor Circuit Low Voltage (Bank 2 Sensor 1)', NULL, NULL),
(158, 'P0152', 'O2 Sensor Circuit High Voltage (Bank 2 Sensor 1)', NULL, NULL),
(159, 'P0153', 'O2 Sensor Circuit Slow Response (Bank 2 Sensor 1)', NULL, NULL),
(160, 'P0154', 'O2 Sensor Circuit No Activity Detected (Bank 2 Sensor 1)', NULL, NULL),
(161, 'P0155', 'O2 Sensor Heater Circuit Malfunction (Bank 2 Sensor 1)', NULL, NULL),
(162, 'P0156', 'O2 Sensor Circuit Malfunction (Bank 2 Sensor 2)', NULL, NULL),
(163, 'P0157', 'O2 Sensor Circuit Low Voltage (Bank 2 Sensor 2)', NULL, NULL),
(164, 'P0158', 'O2 Sensor Circuit High Voltage (Bank 2 Sensor 2)', NULL, NULL),
(165, 'P0159', 'O2 Sensor Circuit Slow Response (Bank 2 Sensor 2)', NULL, NULL),
(166, 'P0160', 'O2 Sensor Circuit No Activity Detected (Bank 2 Sensor 2)', NULL, NULL),
(167, 'P0161', 'O2 Sensor Heater Circuit Malfunction (Bank 2 Sensor 2)', NULL, NULL),
(168, 'P0162', 'O2 Sensor Circuit Malfunction (Bank 2 Sensor 3)', NULL, NULL),
(169, 'P0163', 'O2 Sensor Circuit Low Voltage (Bank 2 Sensor 3)', NULL, NULL),
(170, 'P0164', 'O2 Sensor Circuit High Voltage (Bank 2 Sensor 3)', NULL, NULL),
(171, 'P0165', 'O2 Sensor Circuit Slow Response (Bank 2 Sensor 3)', NULL, NULL),
(172, 'P0166', 'O2 Sensor Circuit No Activity Detected (Bank 2 Sensor 3)', NULL, NULL),
(173, 'P0167', 'O2 Sensor Heater Circuit Malfunction (Bank 2 Sensor 3)', NULL, NULL),
(174, 'P0169', 'Incorrect Fuel Composition', NULL, NULL),
(175, 'P0170', 'Fuel Trim Malfunction (Bank 2)', NULL, NULL),
(176, 'P0171', 'System Too Lean (Bank 2)', NULL, NULL),
(177, 'P0172', 'System Too Rich (Bank 2)', NULL, NULL),
(178, 'P0173', 'Fuel Trim Malfunction (Bank 2)', NULL, NULL),
(179, 'P0174', 'System Too Lean (Bank 2)', NULL, NULL),
(180, 'P0175', 'System Too Rich (Bank 2)', NULL, NULL),
(181, 'P0176', 'Fuel Composition Sensor Circuit Malfunction', NULL, NULL),
(182, 'P0177', 'Fuel Composition Sensor Circuit Range/Performance', NULL, NULL),
(183, 'P0178', 'Fuel Composition Sensor Circuit Low Input', NULL, NULL),
(184, 'P0179', 'Fuel Composition Sensor Circuit High Input', NULL, NULL),
(185, 'P0180', 'Fuel Temperature Sensor A Circuit Malfunction', NULL, NULL),
(186, 'P0181', 'Fuel Temperature Sensor A Circuit Performance', NULL, NULL),
(187, 'P0182', 'Fuel Temperature Sensor A Circuit low Input', NULL, NULL),
(188, 'P0183', 'Fuel Temperature Sensor A Circuit Intermittent', NULL, NULL),
(189, 'P0184', 'Fuel Temperature Sensor A Circuit Intermittent', NULL, NULL),
(190, 'P0185', 'Fuel Temperature Sensor B Circuit Malfunction', NULL, NULL),
(191, 'P0186', 'Fuel Temperature Sensor B Circuit Range/Performance', NULL, NULL),
(192, 'P0187', 'Fuel Temperature Sensor B Circuit Low Input', NULL, NULL),
(193, 'P0188', 'Fuel Temperature Sensor B Circuit High Input', NULL, NULL),
(194, 'P0189', 'Fuel Temperature Sensor B Circuit Intermittent', NULL, NULL),
(195, 'P0190', 'Fuel Rail Pressure Sensor Circuit Malfunction', NULL, NULL),
(196, 'P0191', 'Fuel Rail Pressure Sensor Circuit Range/Performance', NULL, NULL),
(197, 'P0192', 'Fuel Rail Pressure Sensor Circuit Low Input', NULL, NULL),
(198, 'P0193', 'Fuel Rail Pressure Sensor Circuit High Input', NULL, NULL),
(199, 'P0194', 'Fuel Rail Pressure Sensor Circuit Intermittent', NULL, NULL),
(200, 'P0195', 'Engine Oil Temperature Sensor Malfunction', NULL, NULL),
(201, 'P0196', 'Engine Oil Temperature Sensor Range/Performance', NULL, NULL),
(202, 'P0197', 'Engine Oil Temperature Sensor Low Input', NULL, NULL),
(203, 'P0198', 'Engine Oil Temperature Sensor High', NULL, NULL),
(204, 'P0199', 'Engine Oil Temperature Sensor Intermittent', NULL, NULL),
(205, 'P0200', 'Injector Circuit Malfunction', NULL, NULL),
(206, 'P0201', 'Injector Circuit Malfunction - Cylinder 1', NULL, NULL),
(207, 'P0202', 'Injector Circuit Malfunction - Cylinder 2', NULL, NULL),
(208, 'P0203', 'Injector Circuit Malfunction - Cylinder 3', NULL, NULL),
(209, 'P0204', 'Injector Circuit Malfunction - Cylinder 4', NULL, NULL),
(210, 'P0205', 'Injector Circuit Malfunction - Cylinder 5', NULL, NULL),
(211, 'P0206', 'Injector Circuit Malfunction - Cylinder 6', NULL, NULL),
(212, 'P0207', 'Injector Circuit Malfunction - Cylinder 7', NULL, NULL),
(213, 'P0208', 'Injector Circuit Malfunction - Cylinder 8', NULL, NULL),
(214, 'P0209', 'Injector Circuit Malfunction - Cylinder 9', NULL, NULL),
(215, 'P0210', 'Injector Circuit Malfunction - Cylinder 10', NULL, NULL),
(216, 'P0211', 'Injector Circuit Malfunction - Cylinder 11', NULL, NULL),
(217, 'P0212', 'Injector Circuit Malfunction - Cylinder 12', NULL, NULL),
(218, 'P0213', 'Cold Start Injector 1 Malfunction', NULL, NULL),
(219, 'P0214', 'Cold Start Injector 2 Malfunction', NULL, NULL),
(220, 'P0215', 'Engine Shutoff Solenoid Malfunction', NULL, NULL),
(221, 'P0216', 'Injection Timing Control Circuit Malfunction', NULL, NULL),
(222, 'P0217', 'Engine Overtemp Condition', NULL, NULL),
(223, 'P0218', 'Transmission Over Temperature Condition', NULL, NULL),
(224, 'P0219', 'Engine Over Speed Condition', NULL, NULL),
(225, 'P0220', 'Throttle/Pedal Position Sensor/Switch B Circuit Malfunction', NULL, NULL),
(226, 'P0221', 'Throttle/Pedal Position Sensor/Switch B Circuit Range/Performance Problem', NULL, NULL),
(227, 'P0222', 'Throttle/Pedal Position Sensor/Switch B Circuit Low Input', NULL, NULL),
(228, 'P0223', 'Throttle/Pedal Position Sensor/Switch B Circuit High Input', NULL, NULL),
(229, 'P0224', 'Throttle/Pedal Position Sensor/Switch B Circuit Intermittent', NULL, NULL),
(230, 'P0225', 'Throttle/Pedal Position Sensor/Switch C Circuit Malfunction', NULL, NULL),
(231, 'P0226', 'Throttle/Pedal Position Sensor/Switch C Circuit Range/Performance Problem', NULL, NULL),
(232, 'P0227', 'Throttle/Pedal Position Sensor/Switch C Circuit Low Input', NULL, NULL),
(233, 'P0228', 'Throttle/Pedal Position Sensor/Switch C Circuit High Input', NULL, NULL),
(234, 'P0229', 'Throttle/Pedal Position Sensor/Switch C Circuit Intermittent', NULL, NULL),
(235, 'P0230', 'Fuel Pump Primary Circuit Malfunction', NULL, NULL),
(236, 'P0231', 'Fuel Pump Secondary Circuit Low', NULL, NULL),
(237, 'P0232', 'Fuel Pump Secondary Circuit Intermittent', NULL, NULL),
(238, 'P0233', 'Fuel Pump Secondary Circuit Intermittent', NULL, NULL),
(239, 'P0234', 'Engine Overboost Condition', NULL, NULL),
(240, 'P0235', 'Turbocharger Boost Sensor A Circuit Malfunction', NULL, NULL),
(241, 'P0236', 'Turbocharger Boost Sensor A Circuit Range/Performance.', NULL, NULL),
(242, 'P0237', 'Turbocharger Boost Sensor A Circuit Low', NULL, NULL),
(243, 'P0238', 'Turbocharger Boost Sensor A Circuit High', NULL, NULL),
(244, 'P0239', 'Turbocharger Boost Sensor B Circuit Malfunction', NULL, NULL),
(245, 'P0240', 'Turbocharger Boost Sensor B Circuit Range/Performance', NULL, NULL),
(246, 'P0241', 'Turbocharger Boost Sensor B Circuit Low', NULL, NULL),
(247, 'P0242', 'Turbocharger Boost Sensor B Circuit High', NULL, NULL),
(248, 'P0243', 'Turbocharger Wastegate Solenoid A Malfunction', NULL, NULL),
(249, 'P0244', 'Turbocharger Wastegate Solenoid A Range/Performance', NULL, NULL),
(250, 'P0245', 'Turbocharger Wastegate Solenoid A low', NULL, NULL),
(251, 'P0246', 'Turbocharger Wastegate Solenoid A High', NULL, NULL),
(252, 'P0247', 'Turbocharger Wastegate Solenoid B Malfunction', NULL, NULL),
(253, 'P0248', 'Turbocharger Wastegate Solenoid B Range/Performance', NULL, NULL),
(254, 'P0249', 'Turbocharger Wastegate Solenoid B Low', NULL, NULL),
(255, 'P0250', 'Turbocharger Wastegate Solenoid B High', NULL, NULL),
(256, 'P0251', 'Injection Pump Fuel Metering Control A Malfunction (Cam/Rotor/Injector)', NULL, NULL),
(257, 'P0252', 'Injection Pump Fuel Metering Control A Range/Performance (Cam/Rotor/Injector)', NULL, NULL),
(258, 'P0253', 'Injection Pump Fuel Metering Control A Low (Cam/Rotor/Injector)', NULL, NULL),
(259, 'P0254', 'Injection Pump Fuel Metering Control A High (Cam/Rotor/Injector)', NULL, NULL),
(260, 'P0255', 'Injection Pump Fuel Metering Control A Intermittent (Cam/Rotor/Injector)', NULL, NULL),
(261, 'P0256', 'Injection Pump Fuel Metering Control B Malfunction (Cam/Rotor/Injector)', NULL, NULL),
(262, 'P0257', 'Injection Pump Fuel Metering Control B Low (Cam/Rotor/Injector)', NULL, NULL),
(263, 'P0258', 'Injection Pump Fuel Metering Control B Low (Cam/Rotor/Injector)', NULL, NULL),
(264, 'P0259', 'Injection lump Fuel Metering Control B High (Cam/Rotor/Injector)', NULL, NULL),
(265, 'P0260', 'Injection Pump Fuel Metering Control B Intermittent (Cam/Rotor/Injector)', NULL, NULL),
(266, 'P0261', 'Cylinder 1 Injector Circuit Low', NULL, NULL),
(267, 'P0262', 'Cylinder 1 Injector Circuit High', NULL, NULL),
(268, 'P0263', 'Cylinder 1 Contribution/Balance Fault', NULL, NULL),
(269, 'P0264', 'Cylinder 2 Injector Circuit Low', NULL, NULL),
(270, 'P0265', 'Cylinder 2 Injector Circuit High', NULL, NULL),
(271, 'P0266', 'Cylinder 2 Contribution/Balance Fault', NULL, NULL),
(272, 'P0267', 'Cylinder 3 Injector Circuit Low', NULL, NULL),
(273, 'P0268', 'Cylinder 3 Injector Circuit High', NULL, NULL),
(274, 'P0269', 'Cylinder 3 Contribution/Balance Fault', NULL, NULL),
(275, 'P0270', 'Cylinder 4 Injector Circuit Low', NULL, NULL),
(276, 'P0271', 'Cylinder 4 Injector Circuit High', NULL, NULL),
(277, 'P0272', 'Cylinder 4 Contribution/Balance Fault', NULL, NULL),
(278, 'P0273', 'Cylinder 5 Injector Circuit Low', NULL, NULL),
(279, 'P0274', 'Cylinder 5 Injector Circuit High', NULL, NULL),
(280, 'P0275', 'Cylinder 5 Contribution/Balance Fault', NULL, NULL),
(281, 'P0276', 'Cylinder 6 Injector Circuit Low', NULL, NULL),
(282, 'P0277', 'Cylinder 6 Injector Circuit High', NULL, NULL),
(283, 'P0278', 'Cylinder 6 Contribution/Balance Fault', NULL, NULL),
(284, 'P0279', 'Cylinder 7 Injector Circuit Low', NULL, NULL),
(285, 'P0280', 'Cylinder 7 Injector Circuit High', NULL, NULL),
(286, 'P0281', 'Cylinder 7 Contribution/Balance Fault', NULL, NULL),
(287, 'P0282', 'Cylinder 8 Injector Circuit Low', NULL, NULL),
(288, 'P0283', 'Cylinder 8 Injector Circuit High', NULL, NULL),
(289, 'P0284', 'Cylinder 8 Contribution/Balance Fault', NULL, NULL),
(290, 'P0285', 'Cylinder 9 Injector Circuit Low', NULL, NULL),
(291, 'P0286', 'Cylinder 9 Injector Circuit High', NULL, NULL),
(292, 'P0287', 'Cylinder 9 Contribution/Balance Fault', NULL, NULL),
(293, 'P0288', 'Cylinder 10 Injector Circuit Low', NULL, NULL),
(294, 'P0289', 'Cylinder 10 Injector Circuit High', NULL, NULL),
(295, 'P0290', 'Cylinder 10 Contribution/Balance Fault', NULL, NULL),
(296, 'P0291', 'Cylinder 11 Injector Circuit Low', NULL, NULL),
(297, 'P0292', 'Cylinder 11 Injector Circuit High', NULL, NULL),
(298, 'P0293', 'Cylinder 11 Contribution/Balance Fault', NULL, NULL),
(299, 'P0294', 'Cylinder 12 Injector Circuit Low', NULL, NULL),
(300, 'P0295', 'Cylinder 12 Injector Circuit High', NULL, NULL),
(301, 'P0296', 'Cylinder 12 Contribution/Balance Fault', NULL, NULL),
(302, 'P0297', 'Vehicle Overspeed Condition', NULL, NULL),
(303, 'P0298', 'Engine Oil Over Temperature', NULL, NULL),
(304, 'P0299', 'Turbo / Super Charger Underboost', NULL, NULL),
(305, 'P0300', 'Random/Multiple Cylinder Misfire Detected', NULL, NULL),
(306, 'P0301', 'Cylinder 1 Misfire Detected', NULL, NULL),
(307, 'P0302', 'Cylinder 2 Misfire Detected', NULL, NULL),
(308, 'P0303', 'Cylinder 3 Misfire Detected', NULL, NULL),
(309, 'P0304', 'Cylinder 4 Misfire Detected', NULL, NULL),
(310, 'P0305', 'Cylinder 5 Misfire Detected', NULL, NULL),
(311, 'P0306', 'Cylinder 6 Misfire Detected', NULL, NULL),
(312, 'P0307', 'Cylinder 7 Misfire Detected', NULL, NULL),
(313, 'P0308', 'Cylinder 8 Misfire Detected', NULL, NULL),
(314, 'P0309', 'Cylinder 9 Misfire Detected', NULL, NULL),
(315, 'P0310', 'Cylinder 10 Misfire Detected', NULL, NULL),
(316, 'P0311', 'Cylinder 11 Misfire Detected', NULL, NULL),
(317, 'P0312', 'Cylinder 12 Misfire Detected', NULL, NULL),
(318, 'P0313', 'Misfire Detected with Low Fuel', NULL, NULL),
(319, 'P0314', 'Single Cylinder Misfire (Cylinder not Specified)', NULL, NULL),
(320, 'P0315', 'Crankshaft Position System Variation Not Learned', NULL, NULL),
(321, 'P0316', 'Misfire Detected On Startup (First 1000 Revolutions)', NULL, NULL),
(322, 'P0317', 'Rough Road Hardware Not Present', NULL, NULL),
(323, 'P0318', 'Rough Road Sensor A Signal Circuit', NULL, NULL),
(324, 'P0319', 'Rough Road Sensor B Signal Circuit', NULL, NULL),
(325, 'P0320', 'Ignition/Distributor Engine Speed Input Circuit Malfunction', NULL, NULL),
(326, 'P0321', 'Ignition/Distributor Engine Speed Input Circuit Range/Performance', NULL, NULL),
(327, 'P0322', 'Ignition/Distributor Engine Speed Input Circuit No Signal', NULL, NULL),
(328, 'P0323', 'Ignition/Distributor Engine Speed Input Circuit Intermittent', NULL, NULL),
(329, 'P0324', 'Single Cylinder Misfire (Cylinder not Specified)', NULL, NULL),
(330, 'P0325', 'Knock Sensor 1 Circuit (Bank 2 or Single Sensor)', NULL, NULL),
(331, 'P0326', 'Knock Sensor 1 Circuit Range/Performance (Bank 2 or Single Sensor)', NULL, NULL),
(332, 'P0327', 'Knock Sensor 1 Circuit low Input (Bank 2 or Single Sensor)', NULL, NULL),
(333, 'P0328', 'Knock Sensor 1 Circuit High Input (Bank 2 or Single Sensor)', NULL, NULL),
(334, 'P0329', 'Knock Sensor 1 Circuit Input Intermittent (Bank 2 or Single Sensor)', NULL, NULL),
(335, 'P0330', 'Knock Sensor 2 Circuit (Bank 2)', NULL, NULL),
(336, 'P0331', 'Knock Sensor 2 Circuit Range/Performance (Bank 2)', NULL, NULL),
(337, 'P0332', 'Knock Sensor 2 Circuit Low Input (Bank 2)', NULL, NULL),
(338, 'P0333', 'Knock Sensor 2 Circuit High Input (Bank 2)', NULL, NULL),
(339, 'P0334', 'Knock Sensor 2 Circuit Input Intermittent (Bank 2)', NULL, NULL),
(340, 'P0335', 'Crankshaft Position Sensor A Circuit Malfunction', NULL, NULL),
(341, 'P0336', 'Crankshaft Position Sensor A Circuit Range/Performance', NULL, NULL),
(342, 'P0337', 'Crankshaft Position Sensor A Circuit Low Input', NULL, NULL),
(343, 'P0338', 'Crankshaft Position Sensor A Circuit High Input', NULL, NULL),
(344, 'P0339', 'Crankshaft Position Sensor A Circuit Intermittent', NULL, NULL),
(345, 'P0340', 'Camshaft Position Sensor Circuit Malfunction', NULL, NULL),
(346, 'P0341', 'Camshaft Position Sensor Circuit Range/Performance', NULL, NULL),
(347, 'P0342', 'Camshaft Position Sensor Circuit Low Input', NULL, NULL),
(348, 'P0343', 'Camshaft Position Sensor Circuit High Input', NULL, NULL),
(349, 'P0344', 'Camshaft Position Sensor Circuit Intermittent', NULL, NULL),
(350, 'P0345', 'Camshaft Position Sensor A Circuit (Bank 2)', NULL, NULL),
(351, 'P0346', 'Camshaft Position Sensor A Circuit Range/Performance (Bank 2)', NULL, NULL),
(352, 'P0347', 'Camshaft Position Sensor A Circuit Low Input (Bank 2)', NULL, NULL),
(353, 'P0348', 'Camshaft Position Sensor A Circuit High Input (Bank 2)', NULL, NULL),
(354, 'P0349', 'Camshaft Position Sensor A Circuit Intermittent (Bank 2)', NULL, NULL),
(355, 'P0350', 'Ignition Coil Primary/Secondary Circuit Malfunction', NULL, NULL),
(356, 'P0351', 'Ignition Coil A Primary/Secondary Circuit Malfunction', NULL, NULL),
(357, 'P0352', 'Ignition Coil B Primary/Secondary Circuit Malfunction', NULL, NULL),
(358, 'P0353', 'Ignition Coil C Primary/Secondary Circuit Malfunction', NULL, NULL),
(359, 'P0354', 'Ignition Coil D Primary/Secondary Circuit Malfunction', NULL, NULL),
(360, 'P0355', 'Ignition Coil E Primary/Secondary Circuit Malfunction', NULL, NULL),
(361, 'P0356', 'Ignition Coil F Primary/Secondary Circuit Malfunction', NULL, NULL),
(362, 'P0357', 'Ignition Coil G Primary/Secondary Circuit Malfunction', NULL, NULL),
(363, 'P0358', 'Ignition Coil H Primary/Secondary Circuit Malfunction', NULL, NULL),
(364, 'P0359', 'Ignition Coil I Primary/Secondary Circuit Malfunction', NULL, NULL),
(365, 'P0360', 'Ignition Coil J Primary/Secondary Circuit Malfunction', NULL, NULL),
(366, 'P0361', 'Ignition Coil K Primary/Secondary Circuit Malfunction', NULL, NULL),
(367, 'P0362', 'Ignition Coil L Primary/Secondary Circuit Malfunction', NULL, NULL),
(368, 'P0363', 'Misfire Detected - Fueling Disabled', NULL, NULL),
(369, 'P0364', 'Ignition Coil L Primary/Secondary Circuit', NULL, NULL),
(370, 'P0365', 'Camshaft Position Sensor B Circuit (Bank 2)', NULL, NULL),
(371, 'P0366', 'Camshaft Position Sensor B Circuit Range/Performance (Bank 2)', NULL, NULL),
(372, 'P0367', 'Camshaft Position Sensor B Circuit Low Input (Bank 2)', NULL, NULL),
(373, 'P0368', 'Camshaft Position Sensor B Circuit High Input (Bank 2)', NULL, NULL),
(374, 'P0369', 'Camshaft Position Sensor B Circuit Intermittent (Bank 2)', NULL, NULL),
(375, 'P0370', 'Timing Reference High Resolution Signal A Malfunction', NULL, NULL),
(376, 'P0371', 'Timing Reference High Resolution Signal A Too Many Pulses', NULL, NULL),
(377, 'P0372', 'Timing Reference High Resolution Signal A Too Few Pulses', NULL, NULL),
(378, 'P0373', 'Timing Reference High Resolution Signal A Intermittent/Erratic Pulses', NULL, NULL),
(379, 'P0374', 'Timing Reference High Resolution Signal A No Pulses', NULL, NULL),
(380, 'P0375', 'Timing Reference High Resolution Signal B Malfunction', NULL, NULL),
(381, 'P0376', 'Timing Reference High Resolution Signal B Too Many Pulses', NULL, NULL),
(382, 'P0377', 'Timing Reference High Resolution Signal B Too Few Pulses', NULL, NULL),
(383, 'P0378', 'Timing Reference High Resolution Signal B Intermittent/Erratic Pulses', NULL, NULL),
(384, 'P0379', 'Timing Reference High Resolution Signal B No Pulses', NULL, NULL),
(385, 'P0380', 'Glow Plug/Heater Circuit A Malfunction', NULL, NULL),
(386, 'P0381', 'Glow Plug/Heater Indicator Circuit Malfunction', NULL, NULL),
(387, 'P0382', 'Glow Plug/Heater Circuit B Malfunction', NULL, NULL),
(388, 'P0383', 'Glow Plug/Heater Indicator Circuit', NULL, NULL),
(389, 'P0384', 'Glow Plug/Heater Circuit B', NULL, NULL),
(390, 'P0385', 'Crankshaft Position Sensor B Circuit Malfunction', NULL, NULL),
(391, 'P0386', 'Crankshaft Position Sensor B Circuit Range/Performance', NULL, NULL),
(392, 'P0387', 'Crankshaft Position Sensor B Circuit Low Input', NULL, NULL),
(393, 'P0388', 'Crankshaft Position Sensor B Circuit High Input', NULL, NULL),
(394, 'P0389', 'Crankshaft Position Sensor B Circuit Intermittent', NULL, NULL),
(395, 'P0390', 'Camshaft Position Sensor B Circuit (Bank 2)', NULL, NULL),
(396, 'P0391', 'Camshaft Position Sensor B Circuit Range/Performance (Bank 2)', NULL, NULL),
(397, 'P0392', 'Camshaft Position Sensor B Circuit Low Input (Bank 2)', NULL, NULL),
(398, 'P0393', 'Camshaft Position Sensor B Circuit High Input (Bank 2)', NULL, NULL),
(399, 'P0394', 'Camshaft Position Sensor B Circuit Intermittent (Bank 2)', NULL, NULL),
(400, 'P0395', 'Camshaft Position Sensor B Circuit High Input (Bank 2)', NULL, NULL),
(401, 'P0396', 'Camshaft Position Sensor B Circuit Intermittent (Bank 2)', NULL, NULL),
(402, 'P0400', 'Exhaust Gas Recirculation Flow Malfunction', NULL, NULL),
(403, 'P0401', 'Exhaust Gas Recirculation Flow Insufficient Detected', NULL, NULL),
(404, 'P0402', 'Exhaust Gas Recirculation Flow Excessive Detected', NULL, NULL),
(405, 'P0403', 'Exhaust Gas Recirculation Circuit Malfunction', NULL, NULL),
(406, 'P0404', 'Exhaust Gas Recirculation Circuit Range/Performance', NULL, NULL),
(407, 'P0405', 'Exhaust Gas Recirculation Sensor A Circuit Low', NULL, NULL),
(408, 'P0406', 'Exhaust Gas Recirculation Sensor A Circuit High', NULL, NULL),
(409, 'P0407', 'Exhaust Gas Recirculation Sensor B Circuit Low', NULL, NULL),
(410, 'P0408', 'Exhaust Gas Recirculation Sensor B Circuit High', NULL, NULL),
(411, 'P0409', 'Exhaust Gas Recirculation Sensor A Circuit', NULL, NULL),
(412, 'P0410', 'Secondary Air Injection System Malfunction', NULL, NULL),
(413, 'P0411', 'Secondary Air Injection System Incorrect Flow Detected', NULL, NULL),
(414, 'P0412', 'Secondary Air Injection System Switching Valve A Circuit Malfunction', NULL, NULL),
(415, 'P0413', 'Secondary Air Injection System Switching Valve A Circuit Open', NULL, NULL),
(416, 'P0414', 'Secondary Air Injection System Switching Valve A Circuit Shorted', NULL, NULL),
(417, 'P0415', 'Secondary Air Injection System Switching Valve B Circuit Malfunction', NULL, NULL),
(418, 'P0416', 'Secondary Air Injection System Switching Valve B Circuit Open', NULL, NULL),
(419, 'P0417', 'Secondary Air Injection System Switching Valve B Circuit Shorted', NULL, NULL),
(420, 'P0418', 'Secondary Air Injection System Relay A circuit Malfunction', NULL, NULL),
(421, 'P0419', 'Secondary Air Injection System Relay B Circuit Malfunction', NULL, NULL),
(422, 'P0420', 'Catalyst System Efficiency Below Threshold (Bank 1)', NULL, NULL),
(423, 'P0421', 'Warm Up Catalyst Efficiency Below Threshold (Bank 1)', NULL, NULL),
(424, 'P0422', 'Main Catalyst Efficiency Below Threshold (Bank 1)', NULL, NULL),
(425, 'P0423', 'Heated Catalyst Efficiency Below Threshold (Bank 1)', NULL, NULL),