File size: 120,498 Bytes
0a09242 |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 |
[
{
"start": 0.0,
"end": 12.32,
"text": " All right, everyone, welcome back."
},
{
"start": 12.32,
"end": 13.32,
"text": " I'm John Lincove."
},
{
"start": 13.32,
"end": 14.56,
"text": " I'm Jennifer Stockberger."
},
{
"start": 14.56,
"end": 15.88,
"text": " I'm Joe Vasslack."
},
{
"start": 15.88,
"end": 21.56,
"text": " And this week we're going to be talking about the Jeep Compass, which is right now the"
},
{
"start": 21.56,
"end": 28.16,
"text": " only small SUV in the Jeep lineup because both the Renegade and Cherokee were dropped"
},
{
"start": 28.16,
"end": 29.16,
"text": " previously."
},
{
"start": 29.16,
"end": 35.44,
"text": " So, the Compass has to do double duty as a compact SUV as well as a subcompact SUV."
},
{
"start": 35.44,
"end": 40.28,
"text": " You may be wondering why we're talking about it because in 2023 there are actually some"
},
{
"start": 40.28,
"end": 41.28,
"text": " changes."
},
{
"start": 41.28,
"end": 45.28,
"text": " So, yeah, there were some thoughts of the Compass going away."
},
{
"start": 45.28,
"end": 49.04,
"text": " There were plans for a redesigned one."
},
{
"start": 49.04,
"end": 53.72,
"text": " So in 2023, Jeep gave the Compass a 200 horsepower, two liter turbocharged four cylinder"
},
{
"start": 53.72,
"end": 58.36,
"text": " engine, paired it with a B2B automatic transmission and gave it standard all-wheel drive."
},
{
"start": 58.36,
"end": 61.519999999999996,
"text": " So, not every SUV in that category gets standard all-wheel drives."
},
{
"start": 61.519999999999996,
"end": 63.08,
"text": " That's sort of like a selling point for them."
},
{
"start": 63.08,
"end": 65.28,
"text": " Some of that category don't get all-wheel drive at all."
},
{
"start": 65.28,
"end": 66.28,
"text": " That's true."
},
{
"start": 66.28,
"end": 69.36,
"text": " The subcompact category, yep, a lot of them are front only."
},
{
"start": 69.36,
"end": 73.72,
"text": " So like I was saying, there is going to be a next generation Compass, but it's based on"
},
{
"start": 73.72,
"end": 79.6,
"text": " a global platform, the Lantis, the parent company of Alpha Romeo, Mouserade and Jeep, Chrysler,"
},
{
"start": 79.6,
"end": 80.6,
"text": " et cetera."
},
{
"start": 80.6,
"end": 84.24,
"text": " But that's not coming to North American until 2026."
},
{
"start": 84.24,
"end": 86.16,
"text": " The rest of the world is going to see it in 2025."
},
{
"start": 86.16,
"end": 91.72,
"text": " So we've said, you know what, with used car content that we have on Consumer Reports,"
},
{
"start": 91.72,
"end": 97.08,
"text": " .org, and in our magazine, and also just having updated ratings, time to test the Compass"
},
{
"start": 97.08,
"end": 98.36,
"text": " with that new power train."
},
{
"start": 98.36,
"end": 105.24,
"text": " But Joe, in our pre-meeting, you were talking a little bit about it as the Compass gets"
},
{
"start": 105.24,
"end": 107.16,
"text": " this kind of halo effect, right?"
},
{
"start": 107.16,
"end": 108.16,
"text": " Yeah."
},
{
"start": 108.16,
"end": 109.16,
"text": " And it's common."
},
{
"start": 109.16,
"end": 110.16,
"text": " Yeah."
},
{
"start": 110.16,
"end": 115.72,
"text": " So I think, yeah, you feel like you're buying into the Jeep brand, the lifestyle, the"
},
{
"start": 116.16,
"end": 117.2,
"text": " driving experience."
},
{
"start": 117.2,
"end": 118.2,
"text": " Right."
},
{
"start": 118.2,
"end": 123.6,
"text": " And so when you're expecting to be driving something similar to a Jeep Grand Cherokee that"
},
{
"start": 123.6,
"end": 130.96,
"text": " actually drive pretty nice, rides well, steering is good, good power, power delivery."
},
{
"start": 130.96,
"end": 131.96,
"text": " Yeah, attractive."
},
{
"start": 131.96,
"end": 132.96,
"text": " Yeah, yeah, yeah."
},
{
"start": 132.96,
"end": 133.96,
"text": " Yeah."
},
{
"start": 133.96,
"end": 135.96,
"text": " Best selling Jeep Grand Cherokee."
},
{
"start": 135.96,
"end": 136.96,
"text": " Yeah, that's your soul."
},
{
"start": 136.96,
"end": 137.96,
"text": " Oh, okay."
},
{
"start": 137.96,
"end": 138.96,
"text": " All right."
},
{
"start": 138.96,
"end": 139.96,
"text": " You got that."
},
{
"start": 139.96,
"end": 140.96,
"text": " Okay."
},
{
"start": 140.96,
"end": 144.44,
"text": " So yeah, you kind of, you're led to it to believe that you might be buying, you know,"
},
{
"start": 144.44,
"end": 149.6,
"text": " something that drives similar to a Grand Cherokee, but in this case, it's, it's, well,"
},
{
"start": 149.6,
"end": 151.16,
"text": " it's not the case here."
},
{
"start": 151.16,
"end": 155.84,
"text": " But on the, similar circumstances, we talked about the X1 or the X2 when you think you're"
},
{
"start": 155.84,
"end": 162.24,
"text": " getting an X3 or you're getting an X5 drivability or that, you know, driving experience, it's,"
},
{
"start": 162.24,
"end": 163.24,
"text": " it's not there."
},
{
"start": 163.24,
"end": 165.68,
"text": " It's just, you know, you're, you're kind of buying the badge."
},
{
"start": 165.68,
"end": 166.68,
"text": " Yeah, certainly."
},
{
"start": 166.68,
"end": 170.56,
"text": " I mean, we've seen it, you know, not just from BMW, but we've seen it in a lot of our,"
},
{
"start": 170.56,
"end": 176.72,
"text": " the reliability data, you know, you get the entry level model when the luxury and particularly"
},
{
"start": 176.72,
"end": 182.6,
"text": " goes down, you know, and they can't be both affordable and super comfortable."
},
{
"start": 182.6,
"end": 183.6,
"text": " And that's not reliability."
},
{
"start": 183.6,
"end": 187.72,
"text": " We've also just seen those, those lower end models just have had poor reliability."
},
{
"start": 187.72,
"end": 190.72,
"text": " The luxury effect doesn't scale down very well."
},
{
"start": 190.72,
"end": 191.72,
"text": " No."
},
{
"start": 191.72,
"end": 192.72,
"text": " So yeah."
},
{
"start": 192.72,
"end": 193.72,
"text": " Or in this case, the Jeep effect."
},
{
"start": 193.72,
"end": 194.72,
"text": " Right."
},
{
"start": 194.72,
"end": 195.72,
"text": " Right."
},
{
"start": 195.72,
"end": 196.72,
"text": " Right."
},
{
"start": 196.72,
"end": 198.72,
"text": " You know, and it's got all the little logos and a little Sasquatch and the little Jeep crawling"
},
{
"start": 198.72,
"end": 203.6,
"text": " in the Easter eggs, if you will, but Easter eggs don't make a good vehicle, you know."
},
{
"start": 203.6,
"end": 206.28,
"text": " But you know, there are a number of positives with it."
},
{
"start": 206.28,
"end": 209.72,
"text": " You know, it's, we like hard controls to the climate system, you know, too many people"
},
{
"start": 209.72,
"end": 212.92,
"text": " or too many manufacturers throwing them into the touchscreen."
},
{
"start": 212.92,
"end": 216.68,
"text": " Audio controls in the back of the steering wheel, Jeep, Stellantis Chrysler, I mean, you"
},
{
"start": 216.68,
"end": 217.76,
"text": " know, it's across the brand."
},
{
"start": 217.76,
"end": 220.2,
"text": " They do that really well, I think, in a number of, yeah, like that."
},
{
"start": 220.2,
"end": 224.6,
"text": " Like one of my favorite parts of the controls in Stellantis products."
},
{
"start": 224.6,
"end": 225.6,
"text": " Yeah."
},
{
"start": 225.6,
"end": 226.6,
"text": " And they've done it for years."
},
{
"start": 226.6,
"end": 227.6,
"text": " Yeah."
},
{
"start": 227.6,
"end": 229.16,
"text": " They perfected."
},
{
"start": 229.16,
"end": 231.51999999999998,
"text": " What's your guys' opinion on passing power?"
},
{
"start": 231.51999999999998,
"end": 232.68,
"text": " You know, you're driven it."
},
{
"start": 232.68,
"end": 236.16,
"text": " You know, it's, it's sometimes you get little, you know, peakyness and such."
},
{
"start": 236.16,
"end": 236.95999999999998,
"text": " We could talk about that."
},
{
"start": 236.95999999999998,
"end": 241.56,
"text": " But does it have the oomph to get down the road when you're cruising along?"
},
{
"start": 241.56,
"end": 244.76,
"text": " You know, sometimes it's big delays, etc."
},
{
"start": 244.76,
"end": 245.76,
"text": " Yes."
},
{
"start": 245.76,
"end": 251.95999999999998,
"text": " So, so first of all, in comparison to other vehicles, it's not a super powerful power train,"
},
{
"start": 251.95999999999998,
"end": 256.24,
"text": " but compared to the outgoing compass so much better."
},
{
"start": 256.24,
"end": 260.48,
"text": " Again, you said this went to a turbo, etc."
},
{
"start": 260.48,
"end": 265.72,
"text": " That to me makes this a much more livable vehicle because you do have the power."
},
{
"start": 265.72,
"end": 269.92,
"text": " We used words like, um, laxed a days of cold response."
},
{
"start": 269.92,
"end": 273.0,
"text": " So it was just mediocre power."
},
{
"start": 273.0,
"end": 274.8,
"text": " It does, it's fine now."
},
{
"start": 274.8,
"end": 279.68,
"text": " Again, it's not going to blow you away, but this is much more power than the outgoing"
},
{
"start": 279.68,
"end": 281.72,
"text": " and much, much better."
},
{
"start": 281.72,
"end": 287.32000000000005,
"text": " And this compass, the old compass was the lowest rated and we're talking a road test"
},
{
"start": 287.32000000000005,
"end": 293.36,
"text": " score, not reliability and safety and all that, but road test score in this class."
},
{
"start": 293.36,
"end": 294.36,
"text": " Yeah."
},
{
"start": 294.36,
"end": 295.36,
"text": " So it didn't do very well."
},
{
"start": 295.36,
"end": 297.56,
"text": " So it had, had room to move for sure."
},
{
"start": 297.56,
"end": 298.56,
"text": " Absolutely."
},
{
"start": 298.56,
"end": 299.56,
"text": " You agreed."
},
{
"start": 299.56,
"end": 301.56,
"text": " The old 2.4 was kind of a dog."
},
{
"start": 301.56,
"end": 302.56,
"text": " Yeah."
},
{
"start": 302.56,
"end": 303.56,
"text": " Yeah."
},
{
"start": 303.56,
"end": 304.56,
"text": " Sure."
},
{
"start": 304.56,
"end": 305.48,
"text": " When did, yeah, I agree with what everything Jen said."
},
{
"start": 305.48,
"end": 308.84000000000003,
"text": " It does, you know, it's an improvement on power, especially mid range."
},
{
"start": 308.84,
"end": 313.56,
"text": " I think it does, you know, for most people and daily driving it as enough power for what"
},
{
"start": 313.56,
"end": 314.56,
"text": " you need."
},
{
"start": 314.56,
"end": 317.52,
"text": " I mean, we're kind of now with EVs and everything."
},
{
"start": 317.52,
"end": 322.2,
"text": " Everything's so fast today that when you jump in a car that, you know, is an improvement"
},
{
"start": 322.2,
"end": 327.12,
"text": " on the past, it still feels slow and right Harrison, but that being said, it's still"
},
{
"start": 327.12,
"end": 331.35999999999996,
"text": " adequate for today and, you know, most, most driving situations."
},
{
"start": 331.35999999999996,
"end": 335.15999999999997,
"text": " The transmission is where things start to, you know, get hung up and that's when you"
},
{
"start": 335.15999999999997,
"end": 336.15999999999997,
"text": " start."
},
{
"start": 336.15999999999997,
"end": 337.15999999999997,
"text": " It's the power delivery."
},
{
"start": 337.48,
"end": 342.76000000000005,
"text": " Not getting the power when you need it or when you want it, especially in rolling"
},
{
"start": 342.76000000000005,
"end": 347.96000000000004,
"text": " stops, traffic, you're trying to pull out and maybe timing that is kind of crucial and"
},
{
"start": 347.96000000000004,
"end": 353.0,
"text": " sometimes that delayed downshift, they'll throw you off and leave you a little stranded."
},
{
"start": 353.0,
"end": 354.0,
"text": " Yeah."
},
{
"start": 354.0,
"end": 360.72,
"text": " We do see that often with these small turbo fours, even if it's got a hybrid, a powertrain"
},
{
"start": 360.72,
"end": 365.08000000000004,
"text": " or it's a plug-in hybrid, you know, there is a odd transition in many vehicles where"
},
{
"start": 365.08,
"end": 366.08,
"text": " we're continuing."
},
{
"start": 366.08,
"end": 367.84,
"text": " It's not a one time thing."
},
{
"start": 367.84,
"end": 370.59999999999997,
"text": " And it is that rolling stop, Joe, you hit the nail on the head."
},
{
"start": 370.59999999999997,
"end": 374.4,
"text": " It's that rolling stop where you then start again and it goes, Oh, man, what did you do?"
},
{
"start": 374.4,
"end": 376.15999999999997,
"text": " I don't know where I'm supposed to be."
},
{
"start": 376.15999999999997,
"end": 382.32,
"text": " One other thing on this car, too, transmission-related power delivery related is the stop start system."
},
{
"start": 382.32,
"end": 389.12,
"text": " I am often tempted or physically do shut off the start stops when they're very delayed,"
},
{
"start": 389.12,
"end": 391.88,
"text": " they're tugging on my steering wheel, whatever it is."
},
{
"start": 391.88,
"end": 392.88,
"text": " This is really done."
},
{
"start": 392.88,
"end": 395.03999999999996,
"text": " Well, I had no temptation to shut down."
},
{
"start": 395.08000000000004,
"end": 397.28000000000003,
"text": " Shut off that stop start system in this car."
},
{
"start": 397.28000000000003,
"end": 400.12,
"text": " Yeah, it seems like kicks in and quickly, too."
},
{
"start": 400.12,
"end": 401.12,
"text": " Yes."
},
{
"start": 401.12,
"end": 405.0,
"text": " You don't have that delay, you don't feel as if you, you know, you have to torque the wheel"
},
{
"start": 405.0,
"end": 406.40000000000003,
"text": " just to get the engine going."
},
{
"start": 406.40000000000003,
"end": 413.12,
"text": " The other thing, too, on the power delivery is I am always judging how comfortable am I"
},
{
"start": 413.12,
"end": 416.64000000000004,
"text": " jumping out into already moving traffic."
},
{
"start": 416.64000000000004,
"end": 420.24,
"text": " And there are many cars where I'm like, this is a little disconcerting, not going to"
},
{
"start": 420.24,
"end": 421.88,
"text": " do that or I'm going to leave a lot more."
},
{
"start": 421.88,
"end": 424.28,
"text": " I did not have that in this new compass."
},
{
"start": 424.28,
"end": 427.2,
"text": " Would have likely absolutely had it in the old."
},
{
"start": 427.2,
"end": 431.88,
"text": " Car I drove in today, we won't talk about it, but it's up in the, it's probably $70,000"
},
{
"start": 431.88,
"end": 433.2,
"text": " range, as of e6."
},
{
"start": 433.2,
"end": 437.56,
"text": " And yeah, it's what I was, you know, if you back out, it's very, very troublesome with"
},
{
"start": 437.56,
"end": 442.0,
"text": " that, but also just pulling out into traffic and you're nosing out, especially trying"
},
{
"start": 442.0,
"end": 443.0,
"text": " to get the kids to school."
},
{
"start": 443.0,
"end": 446.12,
"text": " So there's a lot of people going the same direction and you try to pull through that, I don't"
},
{
"start": 446.12,
"end": 448.96,
"text": " want to be hung out when people are going 50 miles an hour, cut forwards."
},
{
"start": 448.96,
"end": 450.88,
"text": " You want to jump into that and go, oh shoot."
},
{
"start": 450.88,
"end": 451.88,
"text": " Yep."
},
{
"start": 451.88,
"end": 452.88,
"text": " I can't get up to speed."
},
{
"start": 452.88,
"end": 453.88,
"text": " Yeah."
},
{
"start": 453.88,
"end": 454.88,
"text": " For sure."
},
{
"start": 454.88,
"end": 456.44,
"text": " A couple other places that we really like, you know, we've talked about the stop start."
},
{
"start": 456.44,
"end": 460.68,
"text": " You connect, it's not necessarily riding on its laurels, but it was a good system for"
},
{
"start": 460.68,
"end": 461.68,
"text": " years."
},
{
"start": 461.68,
"end": 465.28,
"text": " It's, you know, we've seen some, some other systems maybe score better."
},
{
"start": 465.28,
"end": 470.52,
"text": " But we do like the fact that on the home screen, a, it's got a nice ability to move with"
},
{
"start": 470.52,
"end": 475.44,
"text": " this touch and drag tiles in or features in, so you have a, a, a favorite area."
},
{
"start": 475.44,
"end": 478.6,
"text": " But also just that screen, thankfully, yeah, it's so big."
},
{
"start": 478.6,
"end": 479.6,
"text": " It's a shape forward."
},
{
"start": 479.6,
"end": 485.72,
"text": " It, it, it, it's not cluttered unlike recent small SUVs like the Alpharmate, the, the"
},
{
"start": 485.72,
"end": 487.44,
"text": " Tonale and the Dodge Hornet."
},
{
"start": 487.44,
"end": 488.44,
"text": " Yeah."
},
{
"start": 488.44,
"end": 491.48,
"text": " Very small screen, you know, very cluttered, very hard to operate."
},
{
"start": 491.48,
"end": 492.48,
"text": " Yeah."
},
{
"start": 492.48,
"end": 498.72,
"text": " And especially when you have a choppy ride and you're trying to land on the icons, yeah,"
},
{
"start": 498.72,
"end": 501.28000000000003,
"text": " having more real estate is very nice."
},
{
"start": 501.28000000000003,
"end": 504.08000000000004,
"text": " Well, you know, and with that joke, does it have a choppy ride?"
},
{
"start": 504.08000000000004,
"end": 505.08000000000004,
"text": " Yeah."
},
{
"start": 505.08000000000004,
"end": 506.08000000000004,
"text": " I'm hosting here."
},
{
"start": 506.08000000000004,
"end": 508.28000000000003,
"text": " Hey, hey, hey, hey, if you want to take the scene, that's really cool."
},
{
"start": 509.28,
"end": 512.0799999999999,
"text": " Joe, tell us about the two-firm and bouncy ride."
},
{
"start": 512.0799999999999,
"end": 513.36,
"text": " I know what you do."
},
{
"start": 513.36,
"end": 515.6,
"text": " So yeah, that's pretty much it."
},
{
"start": 515.6,
"end": 520.0799999999999,
"text": " In general, primary ride and body control is pretty good."
},
{
"start": 520.0799999999999,
"end": 523.4399999999999,
"text": " Most, you know, especially on just your normal smooth roads, everything's fine."
},
{
"start": 523.4399999999999,
"end": 528.52,
"text": " But until you challenge it with some broken pavement, potholes, you know, road joints,"
},
{
"start": 528.52,
"end": 533.12,
"text": " stuff like that, you're going to get, it gets broken up and you get some rattles and"
},
{
"start": 533.12,
"end": 534.12,
"text": " vibrations."
},
{
"start": 534.52,
"end": 539.2,
"text": " But yeah, it's secondary ride is definitely fall short when it comes to broken roads."
},
{
"start": 539.2,
"end": 542.84,
"text": " And when you say body motions, I mean, just for people who may not speak our lingo, is"
},
{
"start": 542.84,
"end": 550.0,
"text": " it body lead or is the vertigling, the vertical bouncing, any sort of like, yes, side to"
},
{
"start": 550.0,
"end": 552.36,
"text": " side jostling, stuff like that stays well control."
},
{
"start": 552.36,
"end": 553.88,
"text": " It has a firmer edge."
},
{
"start": 553.88,
"end": 559.2,
"text": " So usually when you find, you know, vehicles that ride a little on the firmer side, usually"
},
{
"start": 559.2,
"end": 564.5600000000001,
"text": " they seem to have pretty good body control or, yeah, primary ride, but, you know, which"
},
{
"start": 564.5600000000001,
"end": 570.08,
"text": " this does, but usually, you know, secondary ride, especially, you know, on those broken"
},
{
"start": 570.08,
"end": 574.2800000000001,
"text": " pavement, some of these back roads, it starts to get pretty busy and choppy."
},
{
"start": 574.2800000000001,
"end": 579.6400000000001,
"text": " I use the word unsettled with repetitive disturbance as like potholes or rough road,"
},
{
"start": 579.6400000000001,
"end": 580.6400000000001,
"text": " it gets unsettled."
},
{
"start": 580.6400000000001,
"end": 581.6400000000001,
"text": " Yeah."
},
{
"start": 581.6400000000001,
"end": 582.6400000000001,
"text": " But you're right."
},
{
"start": 582.6400000000001,
"end": 584.12,
"text": " Normal, if you're on relatively smooth road, it's fine."
},
{
"start": 584.12,
"end": 585.12,
"text": " Yeah."
},
{
"start": 585.12,
"end": 588.24,
"text": " So the initial impact, okay, it's when it's really broken up and it has to do a lot of"
},
{
"start": 588.24,
"end": 589.24,
"text": " stuff."
},
{
"start": 589.24,
"end": 590.24,
"text": " Yeah, I don't know."
},
{
"start": 590.24,
"end": 591.24,
"text": " Yeah, I don't know."
},
{
"start": 591.24,
"end": 596.08,
"text": " Most people really, you know, critique the ride as harsh as we do, but when you're, you"
},
{
"start": 596.08,
"end": 600.32,
"text": " know, stacking against all these competitors, it's definitely an outlier."
},
{
"start": 600.32,
"end": 601.32,
"text": " Yeah."
},
{
"start": 601.32,
"end": 602.64,
"text": " Definitely a livable car."
},
{
"start": 602.64,
"end": 605.96,
"text": " You touched on something else, John, when you were talking about you connect to is one"
},
{
"start": 605.96,
"end": 611.2,
"text": " thing I noticed, and this is a pretty, pretty good price point for this compass is tailor"
},
{
"start": 611.2,
"end": 613.92,
"text": " ability, which you said, and shortcuts."
},
{
"start": 613.92,
"end": 619.4,
"text": " So there's some niceties in this compass that I think you don't always get at this price"
},
{
"start": 619.4,
"end": 620.4,
"text": " point."
},
{
"start": 620.4,
"end": 621.4,
"text": " So I was like, oh, isn't that nice?"
},
{
"start": 621.4,
"end": 622.8,
"text": " I can have a tile of shortcuts."
},
{
"start": 622.8,
"end": 623.8,
"text": " Right."
},
{
"start": 623.8,
"end": 627.04,
"text": " Isn't this nice that I've heated steering wheel, heated seats?"
},
{
"start": 627.04,
"end": 628.04,
"text": " There were some."
},
{
"start": 628.04,
"end": 631.56,
"text": " I was like, oh, these are some, you know, I was just talking to a colleague of ours and"
},
{
"start": 631.56,
"end": 632.56,
"text": " Yonkers."
},
{
"start": 632.56,
"end": 635.76,
"text": " And what they said to me is, I need a list."
},
{
"start": 635.76,
"end": 637.52,
"text": " They wanted to shop by amenities."
},
{
"start": 637.52,
"end": 639.36,
"text": " They didn't care what the brand was."
},
{
"start": 639.36,
"end": 641.7199999999999,
"text": " They didn't care what the powertrain was."
},
{
"start": 641.72,
"end": 643.96,
"text": " That's the best car I can get."
},
{
"start": 643.96,
"end": 644.96,
"text": " Heated seats in."
},
{
"start": 644.96,
"end": 647.24,
"text": " What's the best car I can get?"
},
{
"start": 647.24,
"end": 648.24,
"text": " Apple car play."
},
{
"start": 648.24,
"end": 653.4,
"text": " I was like, I've never thought that, you know, we live and breathe the brand and model."
},
{
"start": 653.4,
"end": 654.4,
"text": " Right."
},
{
"start": 654.4,
"end": 657.28,
"text": " But this person just wanted heated seats in a heated steering wheel."
},
{
"start": 657.28,
"end": 661.12,
"text": " It was very interesting to hear someone saying, I know it'll get me there."
},
{
"start": 661.12,
"end": 663.28,
"text": " What I want the livability site daily."
},
{
"start": 663.28,
"end": 665.4,
"text": " They're going to hold on to it for a long time."
},
{
"start": 665.4,
"end": 670.0,
"text": " They want to have something that lives with their first stains."
},
{
"start": 670.0,
"end": 671.0,
"text": " What's that lifestyle?"
},
{
"start": 671.32,
"end": 674.6,
"text": " Well, you know, it's features, you know, you talk about that, but it's also features such"
},
{
"start": 674.6,
"end": 676.68,
"text": " as, you know, the aforementioned world will drive."
},
{
"start": 676.68,
"end": 680.12,
"text": " But also some like blind spot warning and rear cross traffic warning."
},
{
"start": 680.12,
"end": 681.12,
"text": " Standard."
},
{
"start": 681.12,
"end": 686.0,
"text": " You're not getting, you're not getting that on a, you know, I mean,"
},
{
"start": 686.0,
"end": 690.68,
"text": " Toyota RAV4, not Subaru Farser, not, you know, so these are some, you know, vehicles"
},
{
"start": 690.68,
"end": 692.4,
"text": " that score high in our road tests."
},
{
"start": 692.4,
"end": 693.4,
"text": " Yeah."
},
{
"start": 693.4,
"end": 694.4,
"text": " And they have good reliability."
},
{
"start": 694.4,
"end": 695.4,
"text": " So they score high."
},
{
"start": 695.4,
"end": 697.72,
"text": " They, you know, they get those added points, but they do get knocked because they don't"
},
{
"start": 697.72,
"end": 698.72,
"text": " have those standard equipment."
},
{
"start": 698.72,
"end": 699.72,
"text": " Correct."
},
{
"start": 699.72,
"end": 702.96,
"text": " So they'll get extra points when we test it and score it."
},
{
"start": 702.96,
"end": 703.96,
"text": " Yeah."
},
{
"start": 703.96,
"end": 707.1600000000001,
"text": " Some of the other things we found just in our, in our first drive and stuff about it, such"
},
{
"start": 707.1600000000001,
"end": 709.32,
"text": " as C, comfort and fit and finish."
},
{
"start": 709.32,
"end": 713.08,
"text": " Yeah, it has some niceties for sure."
},
{
"start": 713.08,
"end": 719.0,
"text": " You do feel, I always go back to, do you feel you're getting what you paid for?"
},
{
"start": 719.0,
"end": 720.0,
"text": " And I think you do."
},
{
"start": 720.0,
"end": 721.0,
"text": " I think you do in this guy."
},
{
"start": 721.0,
"end": 723.8000000000001,
"text": " It has some stitching, has some padded surfaces."
},
{
"start": 723.8000000000001,
"end": 726.64,
"text": " Some of the touch surfaces are not padded oddly."
},
{
"start": 726.64,
"end": 727.64,
"text": " Yeah."
},
{
"start": 727.64,
"end": 731.68,
"text": " Like they'll pad the front of the dash, but not the door handle or, so it's an interesting"
},
{
"start": 731.68,
"end": 734.8,
"text": " mix, but you do get that sense when you get in."
},
{
"start": 734.8,
"end": 737.96,
"text": " Like, oh, I've gotten something for my $30,000."
},
{
"start": 737.96,
"end": 738.96,
"text": " Yeah, it's got."
},
{
"start": 738.96,
"end": 743.52,
"text": " We do have a limited, we're testing a limited trim, which is one of the, you know, the"
},
{
"start": 743.52,
"end": 747.36,
"text": " high, it's kind of the highest because the other high trim that's only a few hundred"
},
{
"start": 747.36,
"end": 749.36,
"text": " dollars more is an off-road."
},
{
"start": 749.36,
"end": 750.36,
"text": " Yeah, trail hawks."
},
{
"start": 750.36,
"end": 752.2,
"text": " So that's more of the luxury trim."
},
{
"start": 752.2,
"end": 755.08,
"text": " It's like a luxury and it's a, it's a very nichey vehicle."
},
{
"start": 755.08,
"end": 760.1600000000001,
"text": " I mean, looks aside, people aren't going off-road a ton, particularly in a compass."
},
{
"start": 760.1600000000001,
"end": 764.72,
"text": " Again, features you might not get in other vehicles at this price point."
},
{
"start": 764.72,
"end": 765.72,
"text": " Certainly."
},
{
"start": 765.72,
"end": 766.72,
"text": " Yeah."
},
{
"start": 766.72,
"end": 769.12,
"text": " You know, we did see a couple of things, Joe."
},
{
"start": 769.12,
"end": 772.5600000000001,
"text": " A couple of other things that were, you know, maybe, maybe not particularly great."
},
{
"start": 772.5600000000001,
"end": 779.9200000000001,
"text": " So the engine, the engine's noisy and even though 200 horsepower, it's an improvement"
},
{
"start": 779.9200000000001,
"end": 783.6800000000001,
"text": " from the 180, you're still kind of, you'll find moments where you maybe feel like you're"
},
{
"start": 783.68,
"end": 787.7199999999999,
"text": " ringing its neck like getting onto an on-ramp or, you know, heavy acceleration."
},
{
"start": 787.7199999999999,
"end": 792.28,
"text": " And that's when you'll notice some of that, you know, there's coarseness in the engine"
},
{
"start": 792.28,
"end": 799.0,
"text": " and some vibrations under acceleration and, yeah, it could be more refined."
},
{
"start": 799.0,
"end": 805.2399999999999,
"text": " I said, it's almost when you first start it, even from the moment you power on, it's,"
},
{
"start": 805.2399999999999,
"end": 807.2399999999999,
"text": " it's pretty rough even just sitting there at idle."
},
{
"start": 807.2399999999999,
"end": 810.0,
"text": " It's almost, I wrote, almost diesel like sounding."
},
{
"start": 810.0,
"end": 811.0,
"text": " Yeah, yeah."
},
{
"start": 811.0,
"end": 812.0,
"text": " There's some clatter too."
},
{
"start": 812.0,
"end": 816.8,
"text": " So you start it and I would be remiss if I didn't say my turbo whistle."
},
{
"start": 816.8,
"end": 820.84,
"text": " You know immediately that you have a turbo now because you can hear it."
},
{
"start": 820.84,
"end": 826.64,
"text": " It almost seems like it's enhanced for some reason to feel sound sporty or sound, but"
},
{
"start": 826.64,
"end": 827.64,
"text": " it's not."
},
{
"start": 827.64,
"end": 828.64,
"text": " Yeah."
},
{
"start": 828.64,
"end": 831.48,
"text": " And I don't know why they would enhance that if, if, if, if, if, it did."
},
{
"start": 831.48,
"end": 832.96,
"text": " It's, it's just really omnipresent."
},
{
"start": 832.96,
"end": 835.0,
"text": " I guess it's the, it's the word."
},
{
"start": 835.0,
"end": 841.52,
"text": " You know, we found that the seat was something where everyone said, it's okay, but, yeah."
},
{
"start": 841.52,
"end": 844.72,
"text": " You know, I didn't think that it was narrow enough."
},
{
"start": 844.72,
"end": 846.72,
"text": " I didn't think it was firm enough."
},
{
"start": 846.72,
"end": 849.88,
"text": " You know, lumbar pressure point, you know, there wasn't side bolstering."
},
{
"start": 849.88,
"end": 853.04,
"text": " So really mixed opinions on the seat that's, that's, that's something if you're going"
},
{
"start": 853.04,
"end": 857.72,
"text": " to go drive it, really make sure they're, you know, test it and, and we'll get down the"
},
{
"start": 857.72,
"end": 860.52,
"text": " road to recommending or not recommending, you know, when we test the car."
},
{
"start": 860.52,
"end": 864.0,
"text": " But, you know, with anything, make sure that you're, the people who are going to be driving"
},
{
"start": 864.0,
"end": 868.3199999999999,
"text": " it actually really sitting the seat, not just one person because it, every seat doesn't"
},
{
"start": 868.3199999999999,
"end": 870.0,
"text": " fit this, fit, everyone the same way."
},
{
"start": 870.0,
"end": 873.84,
"text": " I have a question on this seat in particular, head restraint."
},
{
"start": 873.84,
"end": 878.2,
"text": " It is very, from safe, for safety reasons, it's really good."
},
{
"start": 878.2,
"end": 879.52,
"text": " It is very far forward."
},
{
"start": 879.52,
"end": 880.52,
"text": " It pronounced it."
},
{
"start": 880.52,
"end": 881.52,
"text": " It's very pronounced."
},
{
"start": 881.52,
"end": 885.12,
"text": " I kind of liked it because it's, it is very comfortable."
},
{
"start": 885.12,
"end": 886.44,
"text": " It's got some give to it."
},
{
"start": 886.44,
"end": 891.36,
"text": " And it, the closer that head restraint can be from a safety standpoint, from a rear impact,"
},
{
"start": 891.36,
"end": 893.28,
"text": " the better, but it's present."
},
{
"start": 893.28,
"end": 899.36,
"text": " I found myself reclining a bit more than I normally do to kind of get it away a little bit."
},
{
"start": 899.36,
"end": 903.88,
"text": " So I like, I like to know Joe's opinion because Joe, you sit much more reclined than I do."
},
{
"start": 903.88,
"end": 906.64,
"text": " I sit much more vertical and then, you know, I sit right as well."
},
{
"start": 906.64,
"end": 910.44,
"text": " I get in a car after you and then, yeah, we'll see how, so how was it for you?"
},
{
"start": 910.44,
"end": 917.64,
"text": " So I'm kind of fine with a much more tightly knit, you know, with confined spaces or in a tight,"
},
{
"start": 917.64,
"end": 918.64,
"text": " you know, cockpit."
},
{
"start": 918.64,
"end": 920.88,
"text": " So I don't mind feeling snugged in."
},
{
"start": 920.88,
"end": 921.88,
"text": " I like that."
},
{
"start": 921.88,
"end": 926.04,
"text": " As long as I can reach it, especially as, as if I can reach everything, that's almost"
},
{
"start": 926.04,
"end": 928.84,
"text": " more important to me when I have all the controls within reach."
},
{
"start": 928.84,
"end": 932.9200000000001,
"text": " So I'm going to adjust the ability, rather than feeling the confinement, right?"
},
{
"start": 932.9200000000001,
"end": 936.72,
"text": " So father is me, father me as much, but I felt the head restrained."
},
{
"start": 936.72,
"end": 937.72,
"text": " Yeah."
},
{
"start": 937.72,
"end": 941.1600000000001,
"text": " I think if you get used to it, but, and you know, this is, and you can't push it forward."
},
{
"start": 941.1600000000001,
"end": 945.52,
"text": " Some of them, you know, they have the adjustability vertically and on the horizontal plane."
},
{
"start": 945.52,
"end": 949.96,
"text": " This one you can't, but it really, I guess the only thing you could say is people might"
},
{
"start": 949.96,
"end": 955.0,
"text": " naturally raise it high so that the lower part, which isn't as pronounced, rests there"
},
{
"start": 955.0,
"end": 956.36,
"text": " and then is at the feeding it."
},
{
"start": 956.36,
"end": 962.5,
"text": " And, and we've brought up here just anecdotally male, female, if you've got a ponytail or"
},
{
"start": 962.5,
"end": 965.72,
"text": " a barette or something, you're going to feel that it's, it's going to funny."
},
{
"start": 965.72,
"end": 966.72,
"text": " It's going to be a lot of damage."
},
{
"start": 966.72,
"end": 967.72,
"text": " Yeah, back to that."
},
{
"start": 967.72,
"end": 968.72,
"text": " Yeah, you're going to hit it."
},
{
"start": 968.72,
"end": 971.76,
"text": " In terms of the head restrained for me, I never have issues with any of them."
},
{
"start": 971.76,
"end": 977.32,
"text": " I never am coming either leaning back or however if you're saying that, but yeah, position"
},
{
"start": 977.32,
"end": 980.5600000000001,
"text": " and all that stuff, not really an issue, but yeah, I never run into issues with the head"
},
{
"start": 980.5600000000001,
"end": 982.24,
"text": " restrained, like some of you."
},
{
"start": 982.24,
"end": 983.24,
"text": " Because you're reclined, probably."
},
{
"start": 983.24,
"end": 984.24,
"text": " Yeah."
},
{
"start": 984.24,
"end": 988.44,
"text": " There's a couple of other places we, we dinged it in our, again, our first drive evaluation."
},
{
"start": 988.44,
"end": 990.0,
"text": " We put 2000 miles on it."
},
{
"start": 990.0,
"end": 993.2,
"text": " We break it in, break in the engine, break in the tires."
},
{
"start": 993.2,
"end": 994.36,
"text": " Inconsistent fit and finish."
},
{
"start": 994.36,
"end": 997.44,
"text": " For as nice as it is, that's what I would say."
},
{
"start": 997.44,
"end": 1004.48,
"text": " The turn signal, the stock quality is very plasticgy, cheap feeling or reward."
},
{
"start": 1004.48,
"end": 1007.84,
"text": " It feels almost as if you're going to snap it off."
},
{
"start": 1007.84,
"end": 1008.84,
"text": " The sound for the directional."
},
{
"start": 1008.84,
"end": 1011.6800000000001,
"text": " This isn't something that's going to kill the score or whatever."
},
{
"start": 1011.6800000000001,
"end": 1012.6800000000001,
"text": " It is funny."
},
{
"start": 1012.76,
"end": 1013.76,
"text": " It's worse."
},
{
"start": 1013.76,
"end": 1017.64,
"text": " It's, you know, I said, you know when you break a relay in an old car and it gets really"
},
{
"start": 1017.64,
"end": 1018.64,
"text": " good."
},
{
"start": 1018.64,
"end": 1019.64,
"text": " Yes."
},
{
"start": 1019.64,
"end": 1020.64,
"text": " Yes."
},
{
"start": 1020.64,
"end": 1021.64,
"text": " I went, oh my gosh."
},
{
"start": 1021.64,
"end": 1022.64,
"text": " I thought I had a light bulb out."
},
{
"start": 1022.64,
"end": 1023.64,
"text": " Yes."
},
{
"start": 1023.64,
"end": 1024.6399999999999,
"text": " Yes."
},
{
"start": 1024.6399999999999,
"end": 1025.6399999999999,
"text": " So loud."
},
{
"start": 1025.6399999999999,
"end": 1026.6399999999999,
"text": " It's been a still-antissing thing."
},
{
"start": 1026.6399999999999,
"end": 1029.8,
"text": " A couple of other, the recent cars have that, the same sound."
},
{
"start": 1029.8,
"end": 1034.6399999999999,
"text": " What's also kind of maddening is that if you do the soft D10 to just blink for three, you"
},
{
"start": 1034.6399999999999,
"end": 1039.56,
"text": " know, to use its three turns, three blinks so you can change the lane instead of turning"
},
{
"start": 1039.56,
"end": 1041.36,
"text": " it all the way, it does like for five or six."
},
{
"start": 1041.36,
"end": 1042.36,
"text": " So you're trying to just extra."
},
{
"start": 1042.4399999999998,
"end": 1043.4399999999998,
"text": " Go back and score."
},
{
"start": 1043.4399999999998,
"end": 1044.4399999999998,
"text": " You think you'd left it on."
},
{
"start": 1044.4399999999998,
"end": 1045.4399999999998,
"text": " Exactly."
},
{
"start": 1045.4399999999998,
"end": 1046.4399999999998,
"text": " And don't leave it on with that sound."
},
{
"start": 1046.4399999999998,
"end": 1048.4399999999998,
"text": " It's so loud and annoying."
},
{
"start": 1048.4399999999998,
"end": 1049.4399999999998,
"text": " Weird little logos."
},
{
"start": 1049.4399999999998,
"end": 1051.9199999999998,
"text": " I mean, going back to the whole thing with the Easter eggs."
},
{
"start": 1051.9199999999998,
"end": 1055.4799999999998,
"text": " There's these tiny little logos that look identical for open and close with the vents."
},
{
"start": 1055.4799999999998,
"end": 1056.4799999999998,
"text": " Yeah."
},
{
"start": 1056.4799999999998,
"end": 1059.56,
"text": " So if you're going to spend all the time doing Easter eggs, put a logo on it that you can"
},
{
"start": 1059.56,
"end": 1060.56,
"text": " read."
},
{
"start": 1060.56,
"end": 1061.56,
"text": " Yeah."
},
{
"start": 1061.56,
"end": 1064.28,
"text": " It's minor, but it's sort of like, these are little things."
},
{
"start": 1064.28,
"end": 1065.28,
"text": " These are just little things."
},
{
"start": 1065.28,
"end": 1066.28,
"text": " Would you say it?"
},
{
"start": 1066.28,
"end": 1069.32,
"text": " It looks better than it behaves in terms of fit and finish."
},
{
"start": 1069.32,
"end": 1073.6399999999999,
"text": " You get a good sense when you get in, but when you start to use it, maybe isn't as great"
},
{
"start": 1073.6399999999999,
"end": 1074.6399999999999,
"text": " as it looks."
},
{
"start": 1074.6399999999999,
"end": 1078.96,
"text": " I'm actually okay with it."
},
{
"start": 1078.96,
"end": 1082.9199999999998,
"text": " If the turn signal sound was normal, I'd be okay with it."
},
{
"start": 1082.9199999999998,
"end": 1085.6,
"text": " That's just kind of a little over the top."
},
{
"start": 1085.6,
"end": 1090.1599999999999,
"text": " But one thing here that has been near universal, the backup camera."
},
{
"start": 1090.1599999999999,
"end": 1091.1599999999999,
"text": " Yeah."
},
{
"start": 1091.1599999999999,
"end": 1093.1599999999999,
"text": " Joe, give us a moment."
},
{
"start": 1093.1599999999999,
"end": 1094.1599999999999,
"text": " Yeah."
},
{
"start": 1094.1599999999999,
"end": 1095.1599999999999,
"text": " So what's going on with that?"
},
{
"start": 1095.1599999999999,
"end": 1096.48,
"text": " I feel like it's got sunglasses on or something."
},
{
"start": 1096.48,
"end": 1098.48,
"text": " When you go into the first, yeah, exactly."
},
{
"start": 1098.48,
"end": 1099.48,
"text": " At night, that's..."
},
{
"start": 1099.48,
"end": 1100.48,
"text": " Tell me the same."
},
{
"start": 1100.48,
"end": 1101.48,
"text": " I won't."
},
{
"start": 1101.48,
"end": 1104.96,
"text": " Very, very poor nighttime performance."
},
{
"start": 1104.96,
"end": 1105.96,
"text": " Yeah."
},
{
"start": 1105.96,
"end": 1107.96,
"text": " You feel like you can't rely on it."
},
{
"start": 1107.96,
"end": 1113.1200000000001,
"text": " So you get back to traditional mirrors and actually maybe checking before you get in your"
},
{
"start": 1113.1200000000001,
"end": 1114.1200000000001,
"text": " vehicle."
},
{
"start": 1114.1200000000001,
"end": 1115.1200000000001,
"text": " That's what I do."
},
{
"start": 1115.1200000000001,
"end": 1116.1200000000001,
"text": " Yeah."
},
{
"start": 1116.1200000000001,
"end": 1121.24,
"text": " There's definitely some performance issues there, which I would assume is an equipment thing"
},
{
"start": 1121.24,
"end": 1123.24,
"text": " that could be..."
},
{
"start": 1123.24,
"end": 1124.96,
"text": " That would be an interesting thing to find out."
},
{
"start": 1124.96,
"end": 1125.96,
"text": " What is it?"
},
{
"start": 1125.96,
"end": 1127.8,
"text": " It's just low quality cameras and software."
},
{
"start": 1127.8,
"end": 1133.8,
"text": " I mean, our first drive on consumerports.org, there's an image that one of the testers took"
},
{
"start": 1133.8,
"end": 1136.12,
"text": " from their drive at night."
},
{
"start": 1136.12,
"end": 1140.24,
"text": " We were joking about it in the sense of you have to ride your brake pedal to illuminate"
},
{
"start": 1140.24,
"end": 1144.72,
"text": " whatever you can behind and maybe bounce it off the house or building behind just to"
},
{
"start": 1144.72,
"end": 1147.24,
"text": " get some kind of depth perception."
},
{
"start": 1147.24,
"end": 1148.24,
"text": " No."
},
{
"start": 1148.24,
"end": 1149.24,
"text": " To see anything."
},
{
"start": 1149.24,
"end": 1153.3999999999999,
"text": " Because you're literally blind and it's extra checking, extra checking."
},
{
"start": 1153.3999999999999,
"end": 1157.36,
"text": " And cameras in general, forward, rearward, I've gotten so good."
},
{
"start": 1157.36,
"end": 1158.36,
"text": " Yeah."
},
{
"start": 1158.36,
"end": 1159.36,
"text": " That this one kind of stands out."
},
{
"start": 1159.36,
"end": 1160.36,
"text": " Yeah, it really does stand out."
},
{
"start": 1160.36,
"end": 1161.6799999999998,
"text": " It's not a good way."
},
{
"start": 1161.6799999999998,
"end": 1164.9199999999998,
"text": " So how does this sell and kind of why?"
},
{
"start": 1164.9199999999998,
"end": 1169.0,
"text": " I mean, it's not a RAV4, it's not a Honda CRV in those numbers."
},
{
"start": 1169.0,
"end": 1170.4799999999998,
"text": " Those are some big sellers."
},
{
"start": 1170.4799999999998,
"end": 1171.4799999999998,
"text": " Yep."
},
{
"start": 1171.4799999999998,
"end": 1173.32,
"text": " What about Compass and in the Jeep world?"
},
{
"start": 1173.32,
"end": 1177.4799999999998,
"text": " So one thing is I think this price point is necessary."
},
{
"start": 1177.4799999999998,
"end": 1180.36,
"text": " It's such a big segment and there's such a range of prices."
},
{
"start": 1180.36,
"end": 1185.24,
"text": " I mean, if you look at the Toyota RAV4 Prime, which is the top rated in that category,"
},
{
"start": 1185.24,
"end": 1189.0,
"text": " it's $18,000 more than this Compass."
},
{
"start": 1189.0,
"end": 1192.36,
"text": " And I really think this is a necessary place to be."
},
{
"start": 1192.36,
"end": 1197.1200000000001,
"text": " It will be the lowest priced for that compact SUV category."
},
{
"start": 1197.1200000000001,
"end": 1203.24,
"text": " And I think we need it for new drivers, first time buyers, teen drivers, I think it's"
},
{
"start": 1203.24,
"end": 1205.2,
"text": " a really necessary price point."
},
{
"start": 1205.2,
"end": 1212.64,
"text": " With that said, this is a crazy competitive segment just to give you a sense of the 32"
},
{
"start": 1212.64,
"end": 1216.8400000000001,
"text": " currently rated compact SUVs that consumer reports has rated."
},
{
"start": 1216.8400000000001,
"end": 1221.8400000000001,
"text": " Twenty-six of them admitted some of them are powertrain variants of the same model are"
},
{
"start": 1221.8400000000001,
"end": 1222.8400000000001,
"text": " recommended."
},
{
"start": 1222.8400000000001,
"end": 1226.4,
"text": " There's only a handful that are not."
},
{
"start": 1226.4,
"end": 1229.2,
"text": " So that just tells you a lot of attention is paid."
},
{
"start": 1229.2,
"end": 1232.8400000000001,
"text": " And we're talking things like you said, RAV4, CRV, said."
},
{
"start": 1232.8400000000001,
"end": 1233.8400000000001,
"text": " And they do so."
},
{
"start": 1233.8400000000001,
"end": 1238.1200000000001,
"text": " Some get close price point, equinox, forest or Tucson Sportage."
},
{
"start": 1238.12,
"end": 1244.8799999999999,
"text": " But again, these are some really high volume, very high attention from the manufacturers"
},
{
"start": 1244.8799999999999,
"end": 1247.4399999999998,
"text": " to what those models do and how they operate."
},
{
"start": 1247.4399999999998,
"end": 1249.08,
"text": " So it's a tough place to be."
},
{
"start": 1249.08,
"end": 1252.8,
"text": " And in those numbers, I don't have your, you know, that, I don't have the ratings list"
},
{
"start": 1252.8,
"end": 1256.7199999999998,
"text": " that you're looking at, but remember, forest, superfarser, redesigned, Chevrolet equinox"
},
{
"start": 1256.7199999999998,
"end": 1258.08,
"text": " redesigned this year as well."
},
{
"start": 1258.08,
"end": 1262.1599999999999,
"text": " So I mean, you know, two more who may not even be in those numbers because we've taken"
},
{
"start": 1262.1599999999999,
"end": 1265.28,
"text": " out of the ratings because we're in the midst of testing or finishing testing on those"
},
{
"start": 1265.28,
"end": 1266.28,
"text": " or just got them in."
},
{
"start": 1266.28,
"end": 1267.28,
"text": " So."
},
{
"start": 1267.28,
"end": 1269.6,
"text": " Like you said, crazy competitive."
},
{
"start": 1269.6,
"end": 1273.08,
"text": " I'll touch on something might be a little weird though."
},
{
"start": 1273.08,
"end": 1278.72,
"text": " So that's almost, that's the numbers you gave 81% of the vehicles recommended."
},
{
"start": 1278.72,
"end": 1279.72,
"text": " Yep."
},
{
"start": 1279.72,
"end": 1281.2,
"text": " So what does that mean for us here at CR?"
},
{
"start": 1281.2,
"end": 1283.6,
"text": " Does it mean time to re-evaluate ratings?"
},
{
"start": 1283.6,
"end": 1287.2,
"text": " You know, and we've had that in other categories."
},
{
"start": 1287.2,
"end": 1290.72,
"text": " You know, it used to be family sedans and large sedans."
},
{
"start": 1290.72,
"end": 1292.32,
"text": " Now those categories are shrinking though."
},
{
"start": 1292.32,
"end": 1296.36,
"text": " We recommend I think every family's stand, we've tested, we're testing this in auto now."
},
{
"start": 1296.36,
"end": 1300.8799999999999,
"text": " Hyundai, it's not a, but now that there's so many small SUVs, compact SUVs, what does"
},
{
"start": 1300.8799999999999,
"end": 1303.4399999999998,
"text": " that mean for our testing or scoring?"
},
{
"start": 1303.4399999999998,
"end": 1305.4799999999998,
"text": " Well, I would do the counter."
},
{
"start": 1305.4799999999998,
"end": 1309.7199999999998,
"text": " So when we set, here's what's required to be recommended."
},
{
"start": 1309.7199999999998,
"end": 1312.3999999999999,
"text": " You know, I think, yes, that scale."
},
{
"start": 1312.3999999999999,
"end": 1314.6,
"text": " And we have up to that scale in the past."
},
{
"start": 1314.6,
"end": 1315.6,
"text": " Certainly."
},
{
"start": 1315.6,
"end": 1316.6,
"text": " Over time."
},
{
"start": 1316.6,
"end": 1317.8799999999999,
"text": " But we apply that on the universe of cars."
},
{
"start": 1317.8799999999999,
"end": 1323.9199999999998,
"text": " This just shows to me this class again is where everybody's putting their time, their"
},
{
"start": 1323.9199999999998,
"end": 1325.08,
"text": " money, their volume."
},
{
"start": 1325.08,
"end": 1326.6799999999998,
"text": " Yeah, it's so competitive."
},
{
"start": 1326.6799999999998,
"end": 1329.3999999999999,
"text": " No one's really, no one sleeps here at the in-ness segment."
},
{
"start": 1329.3999999999999,
"end": 1330.3999999999999,
"text": " Yeah."
},
{
"start": 1330.3999999999999,
"end": 1335.6399999999999,
"text": " It just shows you how much attention's being paid where it's just everything's so competitive"
},
{
"start": 1335.6399999999999,
"end": 1337.1599999999999,
"text": " that that's the focus."
},
{
"start": 1337.1599999999999,
"end": 1338.1599999999999,
"text": " Yep."
},
{
"start": 1338.1599999999999,
"end": 1341.6399999999999,
"text": " And not as much on the larger or sometimes whatever segments there is out there, but these"
},
{
"start": 1341.6399999999999,
"end": 1346.9199999999998,
"text": " high volume, it's just crucial to have, you know, be that competitive."
},
{
"start": 1346.9199999999998,
"end": 1349.24,
"text": " Large pickups, there's no question there's volume there."
},
{
"start": 1349.24,
"end": 1350.24,
"text": " Sure."
},
{
"start": 1350.24,
"end": 1352.76,
"text": " But they're never going to meet the balance that these vehicles do."
},
{
"start": 1352.76,
"end": 1353.76,
"text": " Yeah."
},
{
"start": 1353.76,
"end": 1354.76,
"text": " Definitely."
},
{
"start": 1354.76,
"end": 1356.28,
"text": " And you're talking about your look at, I mean, it's interesting."
},
{
"start": 1356.28,
"end": 1359.68,
"text": " You look at where our plug-in hybrids, for example, playing, they're playing right in"
},
{
"start": 1359.68,
"end": 1360.68,
"text": " that segment."
},
{
"start": 1360.68,
"end": 1361.68,
"text": " Yeah."
},
{
"start": 1361.68,
"end": 1365.44,
"text": " And the most, you know, most of the offerings in the SUVs, not the bigger, not, and certainly"
},
{
"start": 1365.44,
"end": 1367.4,
"text": " not the subcompact."
},
{
"start": 1367.4,
"end": 1370.4,
"text": " So certainly, certainly competitive vehicle."
},
{
"start": 1370.4,
"end": 1377.16,
"text": " Joe, if you want to wean yourself off the Jeep brand because, you know, you've bought"
},
{
"start": 1377.16,
"end": 1380.64,
"text": " a renegade, a compass, a grand Cherokee, you know, whatever, your family is a Jeep,"
},
{
"start": 1380.64,
"end": 1383.4,
"text": " you know, and there are a lot of people there, you know, I'm a Ford guy."
},
{
"start": 1383.4,
"end": 1386.48,
"text": " I'm a Jeep guy, whatever a gal."
},
{
"start": 1386.48,
"end": 1388.3200000000002,
"text": " What would you say outside the Wrangler?"
},
{
"start": 1388.3200000000002,
"end": 1392.1200000000001,
"text": " Being before you leave you off the Biar Wrangler, then you can leave the Jeep brand."
},
{
"start": 1392.1200000000001,
"end": 1393.1200000000001,
"text": " That's okay."
},
{
"start": 1393.1200000000001,
"end": 1394.1200000000001,
"text": " I think that's the whole point."
},
{
"start": 1394.1200000000001,
"end": 1395.1200000000001,
"text": " What are you doing?"
},
{
"start": 1395.1200000000001,
"end": 1396.1200000000001,
"text": " You're getting a track."
},
{
"start": 1396.1200000000001,
"end": 1397.1200000000001,
"text": " Yeah."
},
{
"start": 1397.1200000000001,
"end": 1398.1200000000001,
"text": " Yeah."
},
{
"start": 1398.1200000000001,
"end": 1403.72,
"text": " So, yeah, that's a tough one because I guess it's something you're going to have to just"
},
{
"start": 1403.72,
"end": 1404.72,
"text": " either give in."
},
{
"start": 1404.72,
"end": 1407.6000000000001,
"text": " I think I'm just going to go with something."
},
{
"start": 1407.6000000000001,
"end": 1408.6000000000001,
"text": " I don't know."
},
{
"start": 1408.6000000000001,
"end": 1412.24,
"text": " You move into, you know, the, you're get a RAV or you get a CRV."
},
{
"start": 1412.24,
"end": 1417.0,
"text": " There's not really, you know, I don't think you need to think too much about it."
},
{
"start": 1417.0,
"end": 1418.48,
"text": " I don't know."
},
{
"start": 1418.48,
"end": 1422.8,
"text": " It's tough because it comes down to what your intentions were, where your intentions"
},
{
"start": 1422.8,
"end": 1429.48,
"text": " to buy a Jeep, to have a Jeep, or your intentions to buy a Jeep compass to have a small compact"
},
{
"start": 1429.48,
"end": 1430.56,
"text": " SUV."
},
{
"start": 1430.56,
"end": 1436.96,
"text": " If that's the case, then you go for the RAV, you go for the Forester, you go for the CRV,"
},
{
"start": 1436.96,
"end": 1442.68,
"text": " you're in a hybrid variant if you're looking to save some fuel economy."
},
{
"start": 1442.68,
"end": 1446.72,
"text": " But yeah, if you are looking for the Jeep experience, I see you go all in and you get a"
},
{
"start": 1446.72,
"end": 1450.24,
"text": " Wrangler and you really enjoy your, you know, the misery."
},
{
"start": 1450.24,
"end": 1452.32,
"text": " The fudge is, I love it."
},
{
"start": 1452.32,
"end": 1453.8,
"text": " Yeah, the fun and the misery, right?"
},
{
"start": 1453.8,
"end": 1454.96,
"text": " It's a jackele and hide."
},
{
"start": 1454.96,
"end": 1459.16,
"text": " You know, that vehicle doesn't come without big compromise."
},
{
"start": 1459.16,
"end": 1460.16,
"text": " Yeah."
},
{
"start": 1460.16,
"end": 1464.44,
"text": " And I think most of the owners that stick with them know that and, you know, I love the,"
},
{
"start": 1464.44,
"end": 1465.44,
"text": " I love the Wrangler."
},
{
"start": 1465.56,
"end": 1472.0,
"text": " Yeah, when we have a Wrangler or the Gladiator, you know, super fun."
},
{
"start": 1472.0,
"end": 1473.68,
"text": " Always glad to put the keys back on the wall."
},
{
"start": 1473.68,
"end": 1474.68,
"text": " Yeah."
},
{
"start": 1474.68,
"end": 1476.88,
"text": " You know, after I have to drive on the highway or something like that."
},
{
"start": 1476.88,
"end": 1477.88,
"text": " Yeah."
},
{
"start": 1477.88,
"end": 1478.88,
"text": " So that's where I'm at."
},
{
"start": 1478.88,
"end": 1484.76,
"text": " If you're going to stay with Jeep, I think you're okay now with this compass."
},
{
"start": 1484.76,
"end": 1485.76,
"text": " Yeah."
},
{
"start": 1485.76,
"end": 1489.92,
"text": " If you're wanting to wean off of Jeep, but stay in this segment, I would say go with"
},
{
"start": 1489.92,
"end": 1494.56,
"text": " something like an Equinox because I'm assuming you don't have the 44 grand for the, for"
},
{
"start": 1494.56,
"end": 1495.56,
"text": " the R4 prime."
},
{
"start": 1495.56,
"end": 1496.56,
"text": " Right."
},
{
"start": 1496.56,
"end": 1499.32,
"text": " So I would say Equinox Sportage Tucson."
},
{
"start": 1499.32,
"end": 1504.8,
"text": " I find it interesting with the, you know, Jeep's always just been this, it's in second off road,"
},
{
"start": 1504.8,
"end": 1507.08,
"text": " off road, off road, off road, will not just off road, off road."
},
{
"start": 1507.08,
"end": 1509.52,
"text": " And everyone else is like, uh, super market."
},
{
"start": 1509.52,
"end": 1510.52,
"text": " Yeah."
},
{
"start": 1510.52,
"end": 1512.24,
"text": " They're all carry the kids around."
},
{
"start": 1512.24,
"end": 1517.12,
"text": " And it's as if this compass is like, okay, yeah, we have the version that can do that."
},
{
"start": 1517.12,
"end": 1518.12,
"text": " Yeah."
},
{
"start": 1518.12,
"end": 1521.6399999999999,
"text": " But the rest of this, it looks like it, but it's, it's a little more of a, I want to say"
},
{
"start": 1521.64,
"end": 1525.68,
"text": " mainstream in the sense of, it's not promising so much that."
},
{
"start": 1525.68,
"end": 1532.2800000000002,
"text": " Whereas right, farrester, Rav4, now they all have a wilderness outdoorsy, whatever trim"
},
{
"start": 1532.2800000000002,
"end": 1534.2800000000002,
"text": " as if they are, they're okay."
},
{
"start": 1534.2800000000002,
"end": 1537.64,
"text": " Well, we're going to fill in there and, and, and go for that small little segment and"
},
{
"start": 1537.64,
"end": 1538.64,
"text": " try to pull away."
},
{
"start": 1538.64,
"end": 1542.72,
"text": " So you could go for one of those, but is it a poser?"
},
{
"start": 1542.72,
"end": 1543.72,
"text": " Yeah."
},
{
"start": 1543.72,
"end": 1547.72,
"text": " You know, if you go for the farrester top out, dorsi trim, or you're like, you just wanted"
},
{
"start": 1547.72,
"end": 1550.1200000000001,
"text": " a Jeep and you went with a Subaru."
},
{
"start": 1550.1200000000001,
"end": 1551.1200000000001,
"text": " Yeah."
},
{
"start": 1551.12,
"end": 1556.4399999999998,
"text": " So online we have a first drive of the Jeep Compass and it's getting up to 2000 miles, so"
},
{
"start": 1556.4399999999998,
"end": 1557.4399999999998,
"text": " it'll be in test soon."
},
{
"start": 1557.4399999999998,
"end": 1561.6399999999999,
"text": " So hopefully in a few, a few weeks, a month, we'll have a full ratings on it and we'll see"
},
{
"start": 1561.6399999999999,
"end": 1567.36,
"text": " where it falls into that now 32 vehicle list of small SUVs."
},
{
"start": 1567.36,
"end": 1569.7199999999998,
"text": " So the first show we answer audience questions."
},
{
"start": 1569.7199999999998,
"end": 1575.32,
"text": " The, the new thing that we've been doing is if you submit a question to CR.org slash"
},
{
"start": 1575.32,
"end": 1581.08,
"text": " talking cars and we choose it, you will get one of these."
},
{
"start": 1581.08,
"end": 1583.32,
"text": " Well, it hurts."
},
{
"start": 1583.32,
"end": 1589.24,
"text": " Not the one off my back because it's a little old, but yes, we will mail you some CR swag."
},
{
"start": 1589.24,
"end": 1590.6,
"text": " We will mail you a CR shirt."
},
{
"start": 1590.6,
"end": 1597.04,
"text": " So send your questions by going to CR.org slash talking cars, video questions, text"
},
{
"start": 1597.04,
"end": 1599.24,
"text": " questions, whatever the format that we'll accept."
},
{
"start": 1599.24,
"end": 1603.3999999999999,
"text": " Anyhow, the first question we've got who will get a t-shirt coming in the mail soon is"
},
{
"start": 1603.3999999999999,
"end": 1604.3999999999999,
"text": " from Jerry."
},
{
"start": 1604.3999999999999,
"end": 1605.3999999999999,
"text": " Lucky Jerry."
},
{
"start": 1605.3999999999999,
"end": 1606.3999999999999,
"text": " Lucky Jerry."
},
{
"start": 1606.3999999999999,
"end": 1610.84,
"text": " Jerry says, I recently purchased a set of new tires from my 2002 Toyota Echo and was offered"
},
{
"start": 1610.84,
"end": 1615.4399999999998,
"text": " at SIPING, a process that involves cutting thin, perpendicular slits into the tire tread"
},
{
"start": 1615.4399999999998,
"end": 1617.52,
"text": " to enhance traction and wet conditions."
},
{
"start": 1617.52,
"end": 1621.6,
"text": " I'm also told it can improve braking distance and handling when cornering."
},
{
"start": 1621.6,
"end": 1624.56,
"text": " Even though I'd never heard of it, I went ahead and did it, but now I'm wondering if"
},
{
"start": 1624.56,
"end": 1628.8799999999999,
"text": " there are any downsides and if it can affect the tire manufacturer's warranty."
},
{
"start": 1628.8799999999999,
"end": 1636.6799999999998,
"text": " So Jerry, not only did I start at CR in 2002, so your Echo is as old as my 10 year here."
},
{
"start": 1636.6799999999998,
"end": 1637.6799999999998,
"text": " That's it."
},
{
"start": 1637.6799999999998,
"end": 1638.6799999999998,
"text": " That's why I was saying."
},
{
"start": 1638.6799999999998,
"end": 1639.6799999999998,
"text": " Yeah."
},
{
"start": 1639.68,
"end": 1641.3200000000002,
"text": " We got to love the little Echo member."
},
{
"start": 1641.3200000000002,
"end": 1643.8400000000001,
"text": " We used it for a child seat car for a long time."
},
{
"start": 1643.8400000000001,
"end": 1645.5600000000002,
"text": " We had it at Little Red, Echo, it was cute."
},
{
"start": 1645.5600000000002,
"end": 1646.72,
"text": " I do, we're full."
},
{
"start": 1646.72,
"end": 1653.64,
"text": " So Jerry, so typically this action of SIPING, which is exactly right, it's the cutting"
},
{
"start": 1653.64,
"end": 1662.0,
"text": " into your existing tread of slits, additional slits or SIPES, where we typically have heard"
},
{
"start": 1662.0,
"end": 1666.04,
"text": " the advantages is for winter traction, which is why people are doing it."
},
{
"start": 1666.04,
"end": 1673.3999999999999,
"text": " We're getting more biting edge, which is enhancing your winter, both snow and ice grip."
},
{
"start": 1673.3999999999999,
"end": 1678.6399999999999,
"text": " I haven't heard Jerry, I'll be honest, the improvement in wet conditions."
},
{
"start": 1678.6399999999999,
"end": 1685.76,
"text": " And nor have I heard an improvement in handling and cornering because when you take that block,"
},
{
"start": 1685.76,
"end": 1692.56,
"text": " that rubber block and you now cut into it, it is now a more squirmy rubber block."
},
{
"start": 1692.56,
"end": 1698.9199999999998,
"text": " So that is going against handling and cornering grip or breaking distance grip."
},
{
"start": 1698.9199999999998,
"end": 1702.08,
"text": " So I just want to throw that out there."
},
{
"start": 1702.08,
"end": 1707.84,
"text": " The other element, when you say, can it void my manufacturer's warranty, certainly on a"
},
{
"start": 1707.84,
"end": 1710.2,
"text": " treadware warranty."
},
{
"start": 1710.2,
"end": 1715.32,
"text": " The good thing is, typically not many people are making claims on their treadware warranties."
},
{
"start": 1715.32,
"end": 1721.44,
"text": " They're getting close to or what they wanted, unless they've done something like SIPING,"
},
{
"start": 1721.44,
"end": 1724.3200000000002,
"text": " unfortunately, in this case, that can alter it dramatically."
},
{
"start": 1724.3200000000002,
"end": 1729.48,
"text": " I'm hoping that doesn't happen for you, Jerry, in the future."
},
{
"start": 1729.48,
"end": 1736.76,
"text": " So I would say, if you're looking for enhanced winter, which it doesn't sound necessarily,"
},
{
"start": 1736.76,
"end": 1741.56,
"text": " like that was what Jerry was after, get a winter set or an all-weather set, if that's"
},
{
"start": 1741.56,
"end": 1742.56,
"text": " what you needed."
},
{
"start": 1742.56,
"end": 1747.72,
"text": " On an echo, it's not an expensive tire, what we were talking maybe a 14 inch on that"
},
{
"start": 1747.72,
"end": 1748.72,
"text": " 2002 echo."
},
{
"start": 1748.72,
"end": 1752.8,
"text": " It's not the big investment that it might be on, say, a 20 inch or an 18 inch."
},
{
"start": 1752.8,
"end": 1753.8,
"text": " Yeah, I mean, it's money."
},
{
"start": 1753.8,
"end": 1754.8,
"text": " It comes on so many cars today."
},
{
"start": 1754.8,
"end": 1755.8,
"text": " It is money."
},
{
"start": 1755.8,
"end": 1757.32,
"text": " It is an investment."
},
{
"start": 1757.32,
"end": 1762.88,
"text": " Get an inexpensive steel wheel, put the winter tire on it if you're keeping this car."
},
{
"start": 1762.88,
"end": 1765.48,
"text": " I don't want to scare you, Jerry, you're probably fine."
},
{
"start": 1765.48,
"end": 1767.32,
"text": " You probably will get some enhanced winter."
},
{
"start": 1767.32,
"end": 1773.6000000000001,
"text": " I'm not sure where you live, but yeah, you have not voided any manufacturer warranty in"
},
{
"start": 1773.6000000000001,
"end": 1777.88,
"text": " terms of durability, but likely any claims to treadware you would have."
},
{
"start": 1777.88,
"end": 1778.88,
"text": " Yeah."
},
{
"start": 1778.88,
"end": 1784.44,
"text": " And hopefully it gives you some benefit, but I would not expect that benefit in non-winter"
},
{
"start": 1784.44,
"end": 1785.44,
"text": " conditions."
},
{
"start": 1785.44,
"end": 1788.6000000000001,
"text": " Especially if it's an extra cost that they're going to add on there."
},
{
"start": 1788.6000000000001,
"end": 1789.6000000000001,
"text": " Correct."
},
{
"start": 1789.6000000000001,
"end": 1791.8000000000002,
"text": " It has to take rubber off your tire."
},
{
"start": 1791.8000000000002,
"end": 1792.8000000000002,
"text": " Right, right, right."
},
{
"start": 1792.8000000000002,
"end": 1793.8000000000002,
"text": " Pretty much, yeah."
},
{
"start": 1793.8000000000002,
"end": 1794.8000000000002,
"text": " Yeah."
},
{
"start": 1794.8000000000002,
"end": 1798.3200000000002,
"text": " And especially a much more affordable in the realm of tires."
},
{
"start": 1798.3200000000002,
"end": 1799.3200000000002,
"text": " Yeah."
},
{
"start": 1799.3200000000002,
"end": 1805.3200000000002,
"text": " It's almost as if that was a profit place just because it's such a low cost tire, again,"
},
{
"start": 1805.3200000000002,
"end": 1807.0,
"text": " in the realm of tires."
},
{
"start": 1807.0,
"end": 1813.48,
"text": " And again, siping is intended to be a better value for getting winter grip than the winter"
},
{
"start": 1813.48,
"end": 1816.84,
"text": " tire investment, but I think there's more downsides than positives."
},
{
"start": 1816.84,
"end": 1817.84,
"text": " There you go, Jerry."
},
{
"start": 1817.84,
"end": 1820.44,
"text": " Let us know if you can send us send us a little more information."
},
{
"start": 1820.44,
"end": 1823.88,
"text": " It'll be interesting to find out, particularly where you live."
},
{
"start": 1823.88,
"end": 1827.44,
"text": " We're going to go to our second question, jet from Bud Lake, New Jersey."
},
{
"start": 1827.44,
"end": 1829.6,
"text": " I know Bud Lake because I grew up in New Jersey."
},
{
"start": 1829.6,
"end": 1832.64,
"text": " I am 16 years old and I just got my learners permit."
},
{
"start": 1832.64,
"end": 1836.36,
"text": " I don't take my tests for my provisional license until next year, but I was looking at"
},
{
"start": 1836.36,
"end": 1839.3999999999999,
"text": " cars on the use car marketplace on CR.org."
},
{
"start": 1839.3999999999999,
"end": 1841.56,
"text": " And I wanted any suggestions you might have."
},
{
"start": 1841.56,
"end": 1845.36,
"text": " I was thinking of use cars across between $5,000 to $10,000."
},
{
"start": 1845.36,
"end": 1849.9199999999998,
"text": " And I want it to be safe, reliable, easy to drive, easy to see out of, gets decent fuel"
},
{
"start": 1849.9199999999998,
"end": 1852.1599999999999,
"text": " economy and is in decent shape."
},
{
"start": 1852.1599999999999,
"end": 1855.4399999999998,
"text": " I was thinking of a small sedan hatchback or possibly a small SUV."
},
{
"start": 1855.4399999999998,
"end": 1858.12,
"text": " Thank you for your help and keep on talking cars."
},
{
"start": 1858.12,
"end": 1862.4399999999998,
"text": " So while we can't help you necessarily the decent shape, but certainly want to find something"
},
{
"start": 1862.4399999999998,
"end": 1864.32,
"text": " we can decent shape especially on a budget."
},
{
"start": 1864.48,
"end": 1870.4399999999998,
"text": " Joe, we're going to go to Jen first just because she and loads of the, so much of the team car list."
},
{
"start": 1870.4399999999998,
"end": 1871.4399999999998,
"text": " I'm not offended."
},
{
"start": 1871.4399999999998,
"end": 1871.96,
"text": " Yeah."
},
{
"start": 1871.96,
"end": 1878.48,
"text": " So, yes, for, for jet, we create every year a best cars for young drivers and it really"
},
{
"start": 1878.48,
"end": 1881.3999999999999,
"text": " does leverage some of what Jen's saying here."
},
{
"start": 1881.3999999999999,
"end": 1885.8799999999999,
"text": " These are vehicles that are, we work with the insurance institute for highway safety."
},
{
"start": 1885.8799999999999,
"end": 1891.32,
"text": " So safe, not just in safety aspects of our performance tests like breaking and hand emergency"
},
{
"start": 1891.32,
"end": 1893.6399999999999,
"text": " handling, but in crash worthiness."
},
{
"start": 1893.64,
"end": 1898.1200000000001,
"text": " These are cars that have become top safety picks by the insurance institute for highway"
},
{
"start": 1898.1200000000001,
"end": 1901.8400000000001,
"text": " safety based on their crash performance, their accident avoidance performance."
},
{
"start": 1901.8400000000001,
"end": 1907.48,
"text": " We combine that with our reliability data and performance data and create kind of this"
},
{
"start": 1907.48,
"end": 1910.16,
"text": " best of the best list."
},
{
"start": 1910.16,
"end": 1913.96,
"text": " One key element jet that I do want to say this regardless of whether you use our list"
},
{
"start": 1913.96,
"end": 1917.88,
"text": " or not, look for a vehicle with electronic stability control."
},
{
"start": 1917.88,
"end": 1921.0800000000002,
"text": " If you get one safety feature, make sure it's that one."
},
{
"start": 1921.08,
"end": 1927.6399999999999,
"text": " All of the vehicles in our lists have that and why you see differences in model year from"
},
{
"start": 1927.6399999999999,
"end": 1930.48,
"text": " that list is because of the reliability data."
},
{
"start": 1930.48,
"end": 1935.0,
"text": " These are the best of the best years for reliability."
},
{
"start": 1935.0,
"end": 1940.08,
"text": " My pick for you based on everything you listed and because it has the most model years."
},
{
"start": 1940.08,
"end": 1943.24,
"text": " So it should make your shopping easier is a Toyota Prius."
},
{
"start": 1943.24,
"end": 1950.4399999999998,
"text": " A used Prius, you can go anywhere from 2015 and forward and it is on that list 10 years"
},
{
"start": 1950.44,
"end": 1955.96,
"text": " to pick from hatchback, safe, reliable and certainly great fuel economy."
},
{
"start": 1955.96,
"end": 1956.96,
"text": " Right."
},
{
"start": 1956.96,
"end": 1958.2,
"text": " And we not showy but a great car."
},
{
"start": 1958.2,
"end": 1964.4,
"text": " We went and looked at and not a specific year, but we took a 10 year old Prius that had"
},
{
"start": 1964.4,
"end": 1966.8400000000001,
"text": " a belief 200,000 miles away."
},
{
"start": 1966.8400000000001,
"end": 1973.16,
"text": " We did a tune up so we just did what the scheduled required maidens, maybe an oxygen sensor,"
},
{
"start": 1973.16,
"end": 1974.16,
"text": " change the oil."
},
{
"start": 1974.16,
"end": 1977.92,
"text": " Then we ran it through our test and it's fuel economy dropped by a mile per gallon."
},
{
"start": 1977.92,
"end": 1978.92,
"text": " Yes."
},
{
"start": 1978.92,
"end": 1983.2,
"text": " I didn't know that was going to suggest that so I don't have that number in front of me."
},
{
"start": 1983.2,
"end": 1987.04,
"text": " But if you look it up, the battery was still strong 10 years later."
},
{
"start": 1987.04,
"end": 1988.04,
"text": " Yes."
},
{
"start": 1988.04,
"end": 1990.52,
"text": " A lot of people were shy of oh, the batteries are going to fail."
},
{
"start": 1990.52,
"end": 1991.52,
"text": " It has not materialized."
},
{
"start": 1991.52,
"end": 1993.4,
"text": " The Prius batteries fail."
},
{
"start": 1993.4,
"end": 1994.4,
"text": " Yes."
},
{
"start": 1994.4,
"end": 1995.92,
"text": " I did the testing I think on that."
},
{
"start": 1995.92,
"end": 1996.92,
"text": " Oh, that's great."
},
{
"start": 1996.92,
"end": 1997.92,
"text": " Yeah."
},
{
"start": 1997.92,
"end": 1999.72,
"text": " So it was someone we were looking for."
},
{
"start": 1999.72,
"end": 2000.72,
"text": " It wasn't our car."
},
{
"start": 2000.72,
"end": 2004.24,
"text": " It was someone who just had one and they was well maintained enough and it did well."
},
{
"start": 2004.24,
"end": 2005.72,
"text": " Joe, what's your suggestion?"
},
{
"start": 2005.72,
"end": 2013.1200000000001,
"text": " So I'd pick a 2014 Honda Civic and I think that encompasses everything he's asking for"
},
{
"start": 2013.1200000000001,
"end": 2017.04,
"text": " here as well as it's decent and off-looking."
},
{
"start": 2017.04,
"end": 2020.56,
"text": " Are you saying my Prius is not?"
},
{
"start": 2020.56,
"end": 2021.56,
"text": " Yes."
},
{
"start": 2021.56,
"end": 2024.3600000000001,
"text": " So if you want to impress your friend, don't get it."
},
{
"start": 2024.3600000000001,
"end": 2025.3600000000001,
"text": " Don't get it."
},
{
"start": 2025.3600000000001,
"end": 2026.3600000000001,
"text": " You go with the Civic."
},
{
"start": 2026.3600000000001,
"end": 2028.3600000000001,
"text": " But yeah, that's my choice."
},
{
"start": 2028.3600000000001,
"end": 2033.04,
"text": " And honestly, after looking at that, I spoke with Jen and realized that it was one that's"
},
{
"start": 2033.04,
"end": 2034.04,
"text": " on the list."
},
{
"start": 2034.04,
"end": 2037.24,
"text": " It was an actual 2014, so I stick with that."
},
{
"start": 2037.24,
"end": 2042.32,
"text": " It seems like that that era is a really good era because I was looking at the 2013 Mazda"
},
{
"start": 2042.32,
"end": 2043.32,
"text": " 3 or Toyota Corolla."
},
{
"start": 2043.32,
"end": 2044.32,
"text": " Yeah."
},
{
"start": 2044.32,
"end": 2045.32,
"text": " I had two because I was a huge eye-catching issue."
},
{
"start": 2045.32,
"end": 2046.32,
"text": " I like Mazda 3."
},
{
"start": 2046.32,
"end": 2047.32,
"text": " I really do."
},
{
"start": 2047.32,
"end": 2052.04,
"text": " You know, that's an era where it was just super sported drive but it also was big enough."
},
{
"start": 2052.04,
"end": 2054.56,
"text": " It wasn't as slick."
},
{
"start": 2054.56,
"end": 2059.7599999999998,
"text": " If you're not a teen though, we do have lists that's a little more of a wider range because"
},
{
"start": 2059.7599999999998,
"end": 2062.88,
"text": " again, five to $10,000."
},
{
"start": 2062.88,
"end": 2065.36,
"text": " Do you used to be able to get a $12,000 new car?"
},
{
"start": 2065.36,
"end": 2068.52,
"text": " You know, a Nissan Versa or a Versa No."
},
{
"start": 2068.52,
"end": 2070.36,
"text": " There were cars that were $12,000 new."
},
{
"start": 2070.36,
"end": 2071.36,
"text": " That's gone."
},
{
"start": 2071.36,
"end": 2075.8,
"text": " So if you want to look for something in that budget, you can find our use car lists at"
},
{
"start": 2075.8,
"end": 2079.7200000000003,
"text": " consumerreports.org and we have best under $10,000."
},
{
"start": 2079.7200000000003,
"end": 2084.6,
"text": " Best under $5,000 because, yeah, you know, new car prices are still up in the $47,000,"
},
{
"start": 2084.6,
"end": 2085.6,
"text": " $48,000 rate."
},
{
"start": 2085.6,
"end": 2086.6,
"text": " It's crazy."
},
{
"start": 2086.6,
"end": 2087.6,
"text": " Yeah."
},
{
"start": 2087.6,
"end": 2088.1,
"text": " Jet, hope that works for you."
},
{
"start": 2088.1,
"end": 2089.4,
"text": " Let us know what you choose."
},
{
"start": 2089.4,
"end": 2091.2400000000002,
"text": " And we're going to go to our final question."
},
{
"start": 2091.2400000000002,
"end": 2094.6800000000003,
"text": " It was from Daniel who's also going to get a t-shirt."
},
{
"start": 2094.6800000000003,
"end": 2099.4,
"text": " Daniel says, I can't believe I've been watching talking cars for over 10 years, neither can"
},
{
"start": 2099.4,
"end": 2100.4,
"text": " we."
},
{
"start": 2100.4,
"end": 2102.12,
"text": " Still enjoying it."
},
{
"start": 2102.12,
"end": 2104.88,
"text": " My question is, what is your favorite part of the test track?"
},
{
"start": 2104.88,
"end": 2107.88,
"text": " Sending a fun car through the twisties, hitting a three-digit speed on the main straight"
},
{
"start": 2107.88,
"end": 2108.88,
"text": " away."
},
{
"start": 2108.88,
"end": 2111.88,
"text": " The Rock Hill seems like a playground for car enthusiasts."
},
{
"start": 2111.88,
"end": 2113.12,
"text": " Joe, you're on the track at the hot."
},
{
"start": 2113.12,
"end": 2114.12,
"text": " Yeah, I think so."
},
{
"start": 2114.12,
"end": 2116.0,
"text": " You have the answer, my question."
},
{
"start": 2116.0,
"end": 2121.12,
"text": " So it's pretty much those three in giving, you know, what vehicle you're testing."
},
{
"start": 2121.12,
"end": 2122.84,
"text": " So manual transmission car."
},
{
"start": 2122.84,
"end": 2124.84,
"text": " Yeah, what are your cars doing?"
},
{
"start": 2124.84,
"end": 2126.24,
"text": " Yeah, doing acceleration."
},
{
"start": 2126.24,
"end": 2130.12,
"text": " Like recently we had the Mustang with the manual transmission, the Z, the manual, doing"
},
{
"start": 2130.12,
"end": 2133.4,
"text": " acceleration testing on that's fun because it's a challenge."
},
{
"start": 2133.4,
"end": 2137.48,
"text": " And you know, you get some wheel spin and yeah, it's a challenge."
},
{
"start": 2137.48,
"end": 2143.68,
"text": " And, you know, there's a bit of an adrenaline rush shooting down the straight away."
},
{
"start": 2143.68,
"end": 2146.08,
"text": " Joe comes by in that Mustang."
},
{
"start": 2146.08,
"end": 2147.3599999999997,
"text": " Wide open throttle."
},
{
"start": 2147.3599999999997,
"end": 2149.12,
"text": " It literally sounds like an airplane."
},
{
"start": 2149.12,
"end": 2150.44,
"text": " Take a look."
},
{
"start": 2150.44,
"end": 2154.2799999999997,
"text": " There are, yeah, sitting in here in this bushy with this big echoey room, you know, you"
},
{
"start": 2154.2799999999997,
"end": 2161.18,
"text": " would hear the Corvette, you would hear that Audi R8 V10 that we had borrowed right from"
},
{
"start": 2161.18,
"end": 2163.64,
"text": " Audi, you know, some stuff like that."
},
{
"start": 2163.64,
"end": 2168.56,
"text": " Then you have the Ford F-150 Lightning that you hear a rush of air just go flying up."
},
{
"start": 2168.56,
"end": 2169.56,
"text": " Exactly."
},
{
"start": 2169.72,
"end": 2174.0,
"text": " That's a little different experience, which sometimes it's pretty fun."
},
{
"start": 2174.0,
"end": 2179.72,
"text": " Some of these EVs that do zero to 60 and like three seconds flat, yeah, practically."
},
{
"start": 2179.72,
"end": 2183.2,
"text": " And yeah, you ever get a little, I'm a more afraid to catch you."
},
{
"start": 2183.2,
"end": 2184.92,
"text": " Ever get a little nervous?"
},
{
"start": 2184.92,
"end": 2185.92,
"text": " Are you really enjoying this?"
},
{
"start": 2185.92,
"end": 2190.08,
"text": " The only time maybe during acceleration is sometimes we're pushing the straight away"
},
{
"start": 2190.08,
"end": 2194.7999999999997,
"text": " where you're getting into braking because these EVs are going so fast on the 500 meter"
},
{
"start": 2194.7999999999997,
"end": 2197.36,
"text": " where we stop the test ends."
},
{
"start": 2197.36,
"end": 2201.76,
"text": " But at that mark, you're going so fast, you're into the brakes where that starts to,"
},
{
"start": 2201.76,
"end": 2204.76,
"text": " because it's 5,000 plus horsepower."
},
{
"start": 2204.76,
"end": 2205.92,
"text": " Yeah, push ahead."
},
{
"start": 2205.92,
"end": 2210.48,
"text": " And you're really, yeah, you're applying some pretty heavy braking at that point."
},
{
"start": 2210.48,
"end": 2213.0,
"text": " But so far, they've put up with it."
},
{
"start": 2213.0,
"end": 2217.2000000000003,
"text": " Yeah, other than that, then it's track handling going around the handling course."
},
{
"start": 2217.2000000000003,
"end": 2220.92,
"text": " And that's, you know, mostly it's always fun to take any car around the course at its"
},
{
"start": 2220.92,
"end": 2222.32,
"text": " limit, even if it's a truck."
},
{
"start": 2222.32,
"end": 2227.2400000000002,
"text": " It's kind of funny to see, you know, how things, sometimes it's clumsy or sometimes"
},
{
"start": 2227.24,
"end": 2229.2,
"text": " you know, they actually impress you."
},
{
"start": 2229.2,
"end": 2231.56,
"text": " So that's always fun to do that."
},
{
"start": 2231.56,
"end": 2233.56,
"text": " But yeah, it varies rock hill."
},
{
"start": 2233.56,
"end": 2236.9599999999996,
"text": " It's nice when you have, say you have like a cool SUV that rolls in."
},
{
"start": 2236.9599999999996,
"end": 2241.9199999999996,
"text": " We have the Land Cruiser and vehicles that are designed for stuff like that."
},
{
"start": 2241.9199999999996,
"end": 2243.8799999999997,
"text": " It's some, that's pretty fun."
},
{
"start": 2243.8799999999997,
"end": 2248.3999999999996,
"text": " Not as enjoyable when you take a vehicle like a truck up it with low range that, you know,"
},
{
"start": 2248.3999999999996,
"end": 2253.08,
"text": " it can make it up it, but it's some not necessarily its purpose."
},
{
"start": 2253.08,
"end": 2256.24,
"text": " It's capable, but that's not its purpose."
},
{
"start": 2256.24,
"end": 2259.6,
"text": " Um, yeah, no, Jen."
},
{
"start": 2259.6,
"end": 2267.9599999999996,
"text": " It's similar, but I, to me, it's that it's not just a playground for enthusiasts, but it's"
},
{
"start": 2267.9599999999996,
"end": 2269.68,
"text": " a playground for testing."
},
{
"start": 2269.68,
"end": 2277.8799999999997,
"text": " Like there are so many things that our facility allows us to do in a safe controlled that"
},
{
"start": 2277.8799999999997,
"end": 2284.3599999999997,
"text": " so many other automotive journalists can never do like a rock hill, like going full wide"
},
{
"start": 2284.36,
"end": 2288.48,
"text": " open throttle to the quarter mile, like things that you just can't do and you should"
},
{
"start": 2288.48,
"end": 2290.52,
"text": " never do on normal roads."
},
{
"start": 2290.52,
"end": 2293.52,
"text": " And we get to do that every single day."
},
{
"start": 2293.52,
"end": 2297.32,
"text": " And the, the other thing when you first, when I first read the question, I'm like, it's"
},
{
"start": 2297.32,
"end": 2298.7200000000003,
"text": " really a beautiful place."
},
{
"start": 2298.7200000000003,
"end": 2299.7200000000003,
"text": " Yeah."
},
{
"start": 2299.7200000000003,
"end": 2306.7200000000003,
"text": " Like if you guys could step outside here today with the fall foliage and the trees, we're"
},
{
"start": 2306.7200000000003,
"end": 2311.98,
"text": " so spoiled of this balance of yeah, we're in here typing and writing and doing child"
},
{
"start": 2311.98,
"end": 2313.46,
"text": " seats and all that."
},
{
"start": 2313.46,
"end": 2318.58,
"text": " Some days, but when we can go out there and we're typically out there in good weather, sometimes"
},
{
"start": 2318.58,
"end": 2322.22,
"text": " we're out there in the snow, but we're really fortunate."
},
{
"start": 2322.22,
"end": 2325.66,
"text": " I feel really fortunate to have this no balance."
},
{
"start": 2325.66,
"end": 2329.14,
"text": " If you like outside, this is a great job and a great place to be."
},
{
"start": 2329.14,
"end": 2332.7400000000002,
"text": " So, you know, so on top of that, it, one of the really interesting things and I think"
},
{
"start": 2332.7400000000002,
"end": 2338.54,
"text": " we have it on our YouTube page is that telephonic hazard shot pictures of the northern lights"
},
{
"start": 2338.54,
"end": 2339.54,
"text": " that we had."
},
{
"start": 2339.54,
"end": 2343.38,
"text": " We have no ambient light around here at all, which is why you were doing the headlight"
},
{
"start": 2343.38,
"end": 2344.38,
"text": " testing."
},
{
"start": 2344.38,
"end": 2347.62,
"text": " We had headlight engineers from the manufacturer say, we would kill to have this facility."
},
{
"start": 2347.62,
"end": 2349.86,
"text": " Yeah, we don't have big spots and all that stuff."
},
{
"start": 2349.86,
"end": 2353.54,
"text": " I remember Dave saying during COVID that he was here and there's like no planes flying"
},
{
"start": 2353.54,
"end": 2358.38,
"text": " over and it's really silent and dark, you know, and then you, you know, there's coyotes"
},
{
"start": 2358.38,
"end": 2359.7,
"text": " that come in through the fence line."
},
{
"start": 2359.7,
"end": 2362.54,
"text": " There's deer that come in through, you know, you go around the track and you just see"
},
{
"start": 2362.54,
"end": 2364.22,
"text": " deer out there just munching away."
},
{
"start": 2364.22,
"end": 2367.02,
"text": " They're used to us were alert enough to watch for them."
},
{
"start": 2367.02,
"end": 2369.1,
"text": " So yeah, total park like setting."
},
{
"start": 2369.7799999999997,
"end": 2373.2599999999998,
"text": " I mean, I was going to be flipping and be like, oh, the part of the track, I like the"
},
{
"start": 2373.2599999999998,
"end": 2376.7,
"text": " best when we bring the pizza truck out and park it outside."
},
{
"start": 2376.7,
"end": 2378.02,
"text": " Which we do sometimes."
},
{
"start": 2378.02,
"end": 2379.98,
"text": " It is to joys point."
},
{
"start": 2379.98,
"end": 2383.06,
"text": " I mean, I haven't gotten the drive on in here as much because we've ramped up so much"
},
{
"start": 2383.06,
"end": 2384.06,
"text": " of our testing."
},
{
"start": 2384.06,
"end": 2387.7,
"text": " You know, it used to be that it was, it was, it was a little more open."
},
{
"start": 2387.7,
"end": 2388.86,
"text": " We weren't testing as many vehicles."
},
{
"start": 2388.86,
"end": 2392.9,
"text": " We weren't doing eight ass, you know, it pays, you know, we, it's just, there's so many"
},
{
"start": 2392.9,
"end": 2395.02,
"text": " things going on at the same time."
},
{
"start": 2395.42,
"end": 2400.1,
"text": " But I do remember taking, we had a Porsche here and doing on the straight away."
},
{
"start": 2400.1,
"end": 2405.7,
"text": " I think I, I was like, I'm six, you know, like, and you get into that 500 foot point."
},
{
"start": 2405.7,
"end": 2407.98,
"text": " You're saying, that's, that's a fence."
},
{
"start": 2407.98,
"end": 2409.46,
"text": " It's not a catch fence, like a race track."
},
{
"start": 2409.46,
"end": 2410.98,
"text": " You know, it's not a sand trap."
},
{
"start": 2410.98,
"end": 2412.22,
"text": " It's grass and it's wet."
},
{
"start": 2412.22,
"end": 2417.66,
"text": " It like, I remember that one, but also just little things like we've done Jim Connough,"
},
{
"start": 2417.66,
"end": 2421.1,
"text": " you know, we've done auto cross and stuff like that."
},
{
"start": 2421.1,
"end": 2423.94,
"text": " The ability to do that is super cool as well."
},
{
"start": 2423.94,
"end": 2428.46,
"text": " So, and the fact that we're able to do the street survival class with, with team drivers,"
},
{
"start": 2428.46,
"end": 2432.94,
"text": " with young drivers, you know, we have a facility that is, is safe and facility that's, that's"
},
{
"start": 2432.94,
"end": 2433.94,
"text": " big enough to do all that."
},
{
"start": 2433.94,
"end": 2434.94,
"text": " Right."
},
{
"start": 2434.94,
"end": 2436.94,
"text": " It's our parking lot with light stanchions in the middle of it or something like that."
},
{
"start": 2436.94,
"end": 2439.5,
"text": " So I think, I mean, those are, those are all the cool aspects of it."
},
{
"start": 2439.5,
"end": 2442.7400000000002,
"text": " We just had a neat thing when Ryan and Gordon finished it."
},
{
"start": 2442.7400000000002,
"end": 2447.3,
"text": " The, like you say, the auto cross when they finished their tire wet handling, they left"
},
{
"start": 2447.3,
"end": 2450.14,
"text": " to the wedded auto cross really."
},
{
"start": 2450.14,
"end": 2455.66,
"text": " And let other members of our team go out and just try it because you, like you say, the"
},
{
"start": 2455.66,
"end": 2459.5,
"text": " cars go through quickly and there's more people who need them for different aspects."
},
{
"start": 2459.5,
"end": 2464.9,
"text": " And not everybody gets to get in and experience some of that stuff like we used to in the past."
},
{
"start": 2464.9,
"end": 2465.9,
"text": " So it's great."
},
{
"start": 2465.9,
"end": 2469.3399999999997,
"text": " That exact day we were doing the Lexus GX first try video."
},
{
"start": 2469.3399999999997,
"end": 2470.3399999999997,
"text": " Yeah."
},
{
"start": 2470.3399999999997,
"end": 2473.22,
"text": " So I didn't get to do that because we were using another part of the track."
},
{
"start": 2473.22,
"end": 2475.3799999999997,
"text": " So yeah, it is, it's an impressive facility."
},
{
"start": 2475.3799999999997,
"end": 2476.3799999999997,
"text": " It is."
},
{
"start": 2476.3799999999997,
"end": 2479.42,
"text": " To your point, many manufacturers come and do are impressed by it."
},
{
"start": 2479.42,
"end": 2480.42,
"text": " Next."
},
{
"start": 2480.42,
"end": 2481.58,
"text": " So that'll do it for this episode."
},
{
"start": 2481.58,
"end": 2486.1800000000003,
"text": " As always, if you want to get one of these shirts, you want to send, you want to go to"
},
{
"start": 2486.1800000000003,
"end": 2489.62,
"text": " cr.org slash talking cars and submit your question."
},
{
"start": 2489.62,
"end": 2491.1800000000003,
"text": " Thanks for watching and we'll see you next time."
}
] |