summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/fivefilters/readability.php/test/test-pages/nytimes-4/source.html
blob: 81a2a68c3f3ac148dcb0009755791714bf1b71ab (plain)
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
<!DOCTYPE html>
<html lang="en" itemid="https://www.nytimes.com/2018/09/25/business/economy/us-government-debt-interest.html" itemtype="http://schema.org/NewsArticle" itemscope="true" class="story" xmlns:og="http://opengraphprotocol.org/schema/" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
        <meta charset="utf-8" />
        <title data-rh="true">
            As Debt Rises, the Government Will Soon Spend More on Interest Than on the Military - The New York Times
        </title>
        <meta data-rh="true" itemprop="inLanguage" content="en-US" />
        <meta data-rh="true" property="article:published" itemprop="datePublished" content="2018-09-25T21:28:31.000Z" />
        <meta data-rh="true" property="article:modified" itemprop="dateModified" content="2018-09-28T13:09:07.032Z" />
        <meta data-rh="true" http-equiv="Content-Language" content="en" />
        <meta data-rh="true" name="robots" content="noarchive" />
        <meta data-rh="true" name="articleid" itemprop="identifier" content="100000006102576" />
        <meta data-rh="true" name="nyt_uri" itemprop="identifier" content="nyt://article/5563b851-3a8e-58f7-8f67-0716698cebaa" />
        <meta data-rh="true" name="pubp_event_id" itemprop="identifier" content="pubp://event/98755cd27ffd446db9ef9870a3fb9db8" />
        <meta data-rh="true" name="description" itemprop="description" content="Tax cuts, spending increases and higher interest rates could make it harder to respond to future recessions and deal with other needs." />
        <meta data-rh="true" name="image" itemprop="image" content="https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/15DEBTS01-facebookJumbo.jpg" />
        <meta data-rh="true" name="byl" content="By Nelson D. Schwartz" />
        <meta data-rh="true" name="thumbnail" itemprop="thumbnailUrl" content="https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/15DEBTS01-thumbStandard.jpg" />
        <meta data-rh="true" name="news_keywords" content="US National Debt,Federal Budget,US Politics,Donald Trump,Interest rate,US Military,US Economy,Federal Taxes,US Dollar,Recession and Depression,Congressional Budget Office,Federal Reserve" />
        <meta data-rh="true" name="pdate" content="20180925" />
        <meta data-rh="true" property="og:url" content="https://www.nytimes.com/2018/09/25/business/economy/us-government-debt-interest.html" />
        <meta data-rh="true" property="og:type" content="article" />
        <meta data-rh="true" property="og:title" content="As Debt Rises, the Government Will Soon Spend More on Interest Than on the Military" />
        <meta data-rh="true" property="og:image" content="https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/15DEBTS01-facebookJumbo.jpg" />
        <meta data-rh="true" property="og:description" content="Tax cuts, spending increases and higher interest rates could make it harder to respond to future recessions and deal with other needs." />
        <meta data-rh="true" property="twitter:url" content="https://www.nytimes.com/2018/09/25/business/economy/us-government-debt-interest.html" />
        <meta data-rh="true" property="twitter:title" content="As Debt Rises, the Government Will Soon Spend More on Interest Than on the Military" />
        <meta data-rh="true" property="twitter:description" content="Tax cuts, spending increases and higher interest rates could make it harder to respond to future recessions and deal with other needs." />
        <meta data-rh="true" property="twitter:image" content="https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/15DEBTS01-videoSixteenByNineJumbo1600.jpg" />
        <meta data-rh="true" property="twitter:image:alt" content="Interest payments on the federal debt could surpass the Defense Department budget in 2023." />
        <meta data-rh="true" property="twitter:card" content="summary_large_image" />
        <meta data-rh="true" property="article:section" itemprop="articleSection" content="Business" />
        <meta data-rh="true" property="article:tag" content="National Debt (US)" />
        <meta data-rh="true" property="article:tag" content="Federal Budget (US)" />
        <meta data-rh="true" property="article:tag" content="United States Politics and Government" />
        <meta data-rh="true" property="article:tag" content="Trump, Donald J" />
        <meta data-rh="true" property="article:tag" content="Interest Rates" />
        <meta data-rh="true" property="article:tag" content="United States Defense and Military Forces" />
        <meta data-rh="true" property="article:tag" content="United States Economy" />
        <meta data-rh="true" property="article:tag" content="Federal Taxes (US)" />
        <meta data-rh="true" property="article:tag" content="US Dollar (Currency)" />
        <meta data-rh="true" property="article:tag" content="Recession and Depression" />
        <meta data-rh="true" property="article:tag" content="Congressional Budget Office" />
        <meta data-rh="true" property="article:tag" content="Federal Reserve System" />
        <meta data-rh="true" name="CG" content="business" />
        <meta data-rh="true" name="SCG" content="economy" />
        <meta data-rh="true" name="CN" content="" />
        <meta data-rh="true" name="CT" content="" />
        <meta data-rh="true" name="PT" content="article" />
        <meta data-rh="true" name="PST" content="News" />
        <meta data-rh="true" name="genre" itemprop="genre" content="News" />
        <meta data-rh="true" name="url" itemprop="url" content="https://www.nytimes.com/2018/09/25/business/economy/us-government-debt-interest.html" />
        <meta data-rh="true" name="msapplication-starturl" content="https://www.nytimes.com" />
        <meta data-rh="true" property="al:android:url" content="nytimes://reader/id/100000006102576" />
        <meta data-rh="true" property="al:android:package" content="com.nytimes.android" />
        <meta data-rh="true" property="al:android:app_name" content="NYTimes" />
        <meta data-rh="true" name="twitter:app:name:googleplay" content="NYTimes" />
        <meta data-rh="true" name="twitter:app:id:googleplay" content="com.nytimes.android" />
        <meta data-rh="true" name="twitter:app:url:googleplay" content="nytimes://reader/id/100000006102576" />
        <meta data-rh="true" property="al:iphone:url" content="nytimes://www.nytimes.com/2018/09/25/business/economy/us-government-debt-interest.html" />
        <meta data-rh="true" property="al:iphone:app_store_id" content="284862083" />
        <meta data-rh="true" property="al:iphone:app_name" content="NYTimes" />
        <meta data-rh="true" property="al:ipad:url" content="nytimes://www.nytimes.com/2018/09/25/business/economy/us-government-debt-interest.html" />
        <meta data-rh="true" property="al:ipad:app_store_id" content="357066198" />
        <meta data-rh="true" property="al:ipad:app_name" content="NYTimes" />
        <script>
        <![CDATA[

        (function() {
        var gqlUrl = 'https://samizdat-graphql.nytimes.com/graphql/v2';
        try {
        var URLparams = window.location.search.slice(1).split('&');
        var qs = URLparams.reduce(function(acc, cur){
        if (cur.split('=')[0] === 'ip-override'){
          return ('?' + cur);
        }
        return acc;
        }, '');
        gqlUrl = gqlUrl + qs;
        }
        catch (e) {
        console.warn(e);
        }
        var xhr = new XMLHttpRequest();
        xhr.withCredentials = true;
        xhr.open('POST', gqlUrl, true);
        xhr.setRequestHeader('Content-Type', 'application/json');
        xhr.setRequestHeader('nyt-app-type', 'project-vi');
        xhr.setRequestHeader('nyt-app-version', '0.0.3');
        xhr.setRequestHeader('nyt-token',   'MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlYOpRoYg5X01qAqNyBDM32EI/E77nkFzd2rrVjhdi/VAZfBIrPayyYykIIN+d5GMImm3wg6CmTTkBo7ixmwd7Xv24QSDpjuX0gQ1eqxOEWZ0FHWZWkh4jfLcwqkgKmfHJuvOctEiE/Wic5Qrle323SMDKF8sAqClv8VKA8hyrXHbPDAlAaxq3EPOGjJqpHEdWNVg2S0pN62NSmSudT/ap/BqZf7FqsI2cUxv2mUKzmyy+rYwbhd8TRgj1kFprNOaldrluO4dXjubJIY4qEyJY5Dc/F03sGED4AiGBPVYtPh8zscG64yJJ9Njs1ReyUCSX4jYmxoZOnO+6GfXE0s2xQIDAQAB');
        xhr.send('{"operationName":"UserQuery","variables":{},"query":"   query UserQuery {     user {       __typename       profile {         displayName       }       userInfo {         regiId         entitlements         demographics {           emailSubscriptions           wat           bundleSubscriptions {             bundle             inGrace             promotion             source           }         }       }       subscriptionDetails {         graceStartDate         graceEndDate         isFreeTrial         hasQueuedSub         startDate         endDate         status         entitlements       }     }   } "}');
        window.userXhrObject = xhr;
        })();

        ]]>
        </script>
        <script>
        <![CDATA[
        window.vi = window.vi || {};
        window.vi.env = Object.freeze({"JKIDD_PATH":"https://a.nytimes.com/svc/nyt/data-layer","ET2_URL":"https://a.et.nytimes.com","WEDDINGS_PATH":"https://content.api.nytimes.com","GDPR_PATH":"https://us-central1-nyt-wfvi-prd.cloudfunctions.net/gdpr-email-form","ABRA_ET_URL":"//et.nytimes.com","NODE_ENV":"production","SENTRY_SAMPLE_RATE":"10","EXPERIMENTAL_ROUTE_PREFIX":"","ENVIRONMENT":"prd","RELEASE":"3e64731fc0cf7fc3a5426ede69c85fe494706439","AUTH_HOST":"https://myaccount.nytimes.com","SWG_PUBLICATION_ID":"nytimes.com"});
        ]]>
        </script>
        <script>
        <![CDATA[
        window.swgUserInfoXhrObject = new XMLHttpRequest();
        ]]>
        </script>
        <script>
        <![CDATA[
        document.domain = 'nytimes.com';
        ]]>
        </script>
        <script>
        <![CDATA[
        var userAgent = window.navigator.userAgent || window.navigator.vendor || window.opera;
        var  inAndroid = userAgent.indexOf('nyt_android') !== -1;
        var  iniOS = userAgent.indexOf('nytios') !== -1;
        if (inAndroid || iniOS) document.documentElement.classList.add('NYTApp');
        ]]>
        </script>
        <script>
        <![CDATA[
        !function(r,e){var i,a,c,p,s,l=[],
        u="object"==typeof r.navigator&&r.navigator.sendBeacon?"beacon":"polybeacon";function f(){var e,t,
        n=r.crypto||r.msCrypto;if(n)t=n.getRandomValues(new Uint8Array(18));else for(t=[];t.length<18;
        )t.push(256*Math.random()^255&(e=e||+new Date)),e=Math.floor(e/256);return btoa(
        String.fromCharCode.apply(String,t)).replace(/\+/g,"-").replace(/\//g,"_")}if(r.nyt_et)try{
        console.warn("et2 snippet should only load once per page")}catch(e){}else r.nyt_et=function(){var e,
        t,n=arguments;function o(){l.length&&(function(e,t){if("beacon"===u)return r.navigator.sendBeacon(e,
        t);var n="function"==typeof XMLHttpRequest?new XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP")
        ;n.open("POST",e),n.withCredentials=!0,n.setRequestHeader("Accept","*/*"),
        "string"==typeof t?n.setRequestHeader("Content-Type","text/plain;charset=UTF-8"
        ):"[object Blob]"==={}.toString.call(t)&&t.type&&n.setRequestHeader("Content-Type",t.type);try{
        n.send(t)}catch(e){}}(i+"/track",JSON.stringify(l)),l.length=0,clearTimeout(s),s=null)}if(
        "string"==typeof n[0]&&/init/.test(n[0])&&(c=f(),"init"==n[0]&&!a)){if(a=f(),
        "string"!=typeof n[1]||!/^http/.test(n[1]))throw new Error("init must include an et host url")
        ;i=String(n[1]).replace(/\/$/,""),"string"==typeof n[2]&&(p=n[2])}e=n[n.length-1],
        i&&"object"==typeof e&&(t="page"==e.subject?c:f(),e.sourceApp&&(p=e.sourceApp),e.sourceApp=p,l.push(
        {context_id:a,pageview_id:c,event_id:t,client_lib:"cfc97c2",sourceApp:p,how:u,client_ts:+new Date,
        data:JSON.parse(JSON.stringify(e))}),"send"==n[0]||t==c?o():s||(s=setTimeout(o,5500)))},
        r.nyt_et.get_pageview_id=function(){return c}}(window);
        ;
        nyt_et('init', "https://a.et.nytimes.com", "nyt-vi",
        {
        subject: 'page',
        assetUrl: (document.querySelector('link[rel=canonical]') || {}).href,
        url: location.href,
        referrer: document.referrer || void 0,
        client_tz_offset: (new Date).getTimezoneOffset(),
        sourceApp: "nyt-vi",
        });
        ]]>
        </script>
        <script>
        <![CDATA[
        var NYTD = NYTD || {};
        NYTD.PageViewId = {};
        NYTD.PageViewId.update = function() {
        NYTD.PageViewId.current = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
        const r = (Math.random() * 16) | 0;
        const v = c === 'x' ? r : (r & 0x3) | 0x8;
        return v.toString(16);
        });
        return NYTD.PageViewId.current;
        };
        NYTD.PageViewId.update();
        ]]>
        </script>
        <script>
        <![CDATA[
        100*Math.random()<=vi.env.SENTRY_SAMPLE_RATE?(window.INSTALL_RAVEN=!0,window.nyt_errors={ravenInstalled:!1,list:[],tags:[]},window.onerror=function(n,r,o,w,i){if(!window.nyt_errors.ravenInstalled){var t={err:i,data:{}};window.nyt_errors.list.push(t)}}):window.INSTALL_RAVEN=!1;
        ]]>
        </script>
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
        <link rel="shortcut icon" href="/vi-assets/static-assets/favicon-4bf96cb6a1093748bf5b3c429accb9b4.ico" />
        <link rel="apple-touch-icon" href="/vi-assets/static-assets/apple-touch-icon-319373aaf4524d94d38aa599c56b8655.png" />
        <link rel="apple-touch-icon-precomposed" sizes="144×144" href="/vi-assets/static-assets/ios-ipad-144x144-319373aaf4524d94d38aa599c56b8655.png" />
        <link rel="apple-touch-icon-precomposed" sizes="114×114" href="/vi-assets/static-assets/ios-iphone-114x144-61d373c43aa8365d3940c5f1135f4597.png" />
        <link rel="apple-touch-icon-precomposed" href="/vi-assets/static-assets/ios-default-homescreen-57x57-7cccbfb151c7db793e92ea58c30b9e72.png" />
        <meta property="fb:app_id" content="9869919170" />
        <meta name="twitter:site" value="@nytimes" />
        <script>
        <![CDATA[
        var NYTD=NYTD||{};NYTD.Abra=function(t){"use strict";function e(t){var e=r[t];return e&&e[1]||null}function n(t,e){if(t){var n,r,o=e[0],i=e[1],c=0,u=0;if(1!==i.length||4294967296!==i[0])for(n=a(t+" "+o)>>>0,c=0,u=0;r=i[c++];)if(n<(u+=r[0]))return r}}function a(t){for(var e,n,a,r,o,i,c,u=0,l=0,s=[],f=[e=1732584193,n=4023233417,~e,~n,3285377520],h=[],p=t.length;l<=p;)h[l>>2]|=(l<p?t.charCodeAt(l):128)<<8*(3-l++%4);for(h[c=p+8>>2|15]=p<<3;u<=c;u+=16){for(e=f,l=0;l<80;e=[0|[(i=((t=e[0])<<5|t>>>27)+e[4]+(s[l]=l<16?~~h[u+l]:i<<1|i>>>31)+1518500249)+((n=e[1])&(a=e[2])|~n&(r=e[3])),o=i+(n^a^r)+341275144,i+(n&a|n&r|a&r)+882459459,o+1535694389][0|l++/20],t,n<<30|n>>>2,a,r])i=s[l-3]^s[l-8]^s[l-14]^s[l-16];for(l=5;l;)f[--l]=f[l]+e[l]|0}return f[0]}var r,o={};return t.dataLayer=t.dataLayer||[],e.init=function(e){var a,o,i,c,u,l,s,f,h,p,d=[],v=[],m=(t.document.cookie.match(/(?:^|;) *nyt-a=([^;]*)/)||[])[1],g=(t.document.cookie.match(/(?:^|;) *ab7=([^;]*)/)||[])[1],b=(t.location.search.match(/(?:^\?|&)abra=([^&]*)/)||[])[1];if(r)throw new Error("can't init twice");for(r={},u=(decodeURIComponent(g||"")+"&"+decodeURIComponent(b||"")).split("&"),a=u.length-1;a>=0;a--)l=u[a].split("="),l.length<2||(s=l[0])&&!r[s]&&(f=l[1]||null,r[s]=[,f,1],f&&d.push(s+"="+f),v.push({test:s,variant:f||"0"}));for(a=0;a<e.length;a++)i=e[a],(o=i[0])in r||(c=n(m,i)||[],c[0],h=c[1],p=!!c[2],r[o]=c,h&&d.push(o.replace(/[^\w-]/g)+"="+(""+h).replace(/[^\w-]/g)),p&&v.push({test:o,variant:h||"0"}));d.length&&t.document.documentElement.setAttribute("data-nyt-ab",d.join(" ")),v.length&&t.dataLayer.push({event:"ab-alloc",allocs:v})},e.reportExposure=function(e,n){if(!o[e]){o[e]=1;var a=r[e];if(a){var i=a[1];a[2]&&t.dataLayer.push({event:"ab-expose",abtest:{test:e,variant:i||"0"}})}n&&t.setTimeout(function(){n(null)},0)}},e}(this);;
        NYTD.Abra.init([["WP_Platform",[[4294967296,"vi",0]]],["vi-ads-et",[[257698038,"2_remainder",1],[4037269258,null,0]]],["messaging-optimizely",[[4294967296,"1",0]]],["PER_MoreIn_AU_NZ",[[858993460,"0_control",1],[858993459,"1_au_top_stories",1],[858993459,"2_au_section_front",1],[858993459,"3_au_most_popular",1],[858993459,"4_editors_picks",1]]],["PER_MoreIn_World",[[85899346,"0_control",1],[85899346,"1_au_top_stories",1],[85899346,"2_au_section_front",1],[85899346,"3_au_most_popular",1],[85899346,"4_editors_picks",1],[3865470566,null,0]]],["PER_Vi_Personalization",[[429496730,"0_control",1],[429496730,"1_personalized_best",1],[3435973836,"2_personalized",1]]],["PER_Vi_Personalization_Ramp",[[4294967296,"0_per_on",0]]],["PER_vi_personalization_story_trending",[[858993460,"0_trending_trending",1],[429496729,"1_trending_popular",1],[429496730,"2_trending_als",1],[429496729,"3_popular_trending",1],[429496730,"4_popular_popular",1],[429496730,"5_popular_als",1],[429496729,"6_recommended_trending",1],[429496730,"7_recommended_popular",1],[429496729,"8_recommended_als",1]]],["STORY_bn_disco",[[1431655766,"0_control",1],[1431655765,"1_interactive1",1],[1431655765,"2_interactive2",1]]],["STORY_comment_btn",[[1073741824,"0_default",1],[1073741824,"1_bab",1],[2147483648,null,0]]],["STORY_relatedLinks",[[4294967296,"0",0]]],["STORY_EP_Recirc",[[1431655766,"0_control",1],[1431655765,"1_picksAboveMore",1],[1431655765,"2_picksBelowMore",1]]],["AD_MPC-355",[[1460288881,"0_control",1],[1417339208,"1_adslotwhitelist",1],[1417339207,"2_adslotunblock",1]]],["STORY_newsletter",[[1417339208,"0_control",1],[1417339208,"1_footertop",1],[1460288880,"2_ccol",1]]],["DTI_ET2",[[4294967296,"on",0]]],["STORY_Survey",[[4037269259,"0_control",1],[85899346,"1_question1",1],[85899346,"2_question2",1],[85899345,"3_question3",1]]],["HOMEPAGE_midterms",[[85899346,"0_default",1],[4209067950,"1_midterms",1]]],["dfp_lazy_load_api",[[4294968,"0_control",1],[4294967,"1",1],[4286377361,null,0]]],["medianet_toggle",[[4294967296,"0_default",1]]],["STORY_Packaging",[[858993460,"0_control",1],[858993459,"1",1],[858993459,"2",1],[858993459,"3",1],[858993459,"4",1]]],["MKT_incognito_msg_0918",[[644245095,"0_inline_sub",1],[644245094,"1_inline_app",1],[644245095,"2_expanded_sub",1],[644245094,"3_expanded_app",1],[644245094,"4_trunct_regi",1],[429496730,"5_survey",1],[644245094,null,0]]],["MKT_Redbird_Intl",[[613566757,"0_Control",1],[613566757,"1_GW2_FT_CC",1],[613566756,"2_GW2_FT_NoCC",1],[613566757,"3_GW2_Regi",1],[613566756,"4_GW3_FT_CC",1],[613566757,"5_GW3_FT_NoCC",1],[613566756,"6_GW3_Regi",1]]],["MKT_abandonment_1118",[[1431655766,"0_control",1],[1431655765,"1_clarity",1],[1431655765,"2_urgency",1]]],["MKT_Redbird_US",[[128849019,"0_Control",1],[128849019,"1_GW2_FT_CC",1],[128849019,"2_GW2_FT_NoCC",1],[128849019,"3_GW2_Regi",1],[128849019,"4_GW3_FT_CC",1],[128849019,"5_GW3_FT_NoCC",1],[128849019,"6_GW3_Regi",1],[3393024163,"Outside_Redbird",0]]],["MKT_wcm_dfp_propensity_price",[[12025909,"0",1],[12025908,"1",1],[12025909,"2",1],[12025908,"3",1],[12025909,"4",1],[12025908,"5",1],[12025909,"6",1],[12025908,"7",1],[12025908,"8",1],[12025909,"9",1],[12025908,"10",1],[12025909,"11",1],[12025908,"12",1],[12025909,"13",1],[12025908,"14",1],[12025908,"15",1],[12025909,"16",1],[12025908,"17",1],[12025909,"18",1],[12025908,"19",1],[12025909,"20",1],[12025908,"21",1],[12025908,"22",1],[12025909,"23",1],[12025908,"24",1],[12025909,"25",1],[12025908,"26",1],[12025909,"27",1],[12025908,"28",1],[12025908,"29",1],[12025909,"30",1],[12025908,"31",1],[12025909,"32",1],[12025908,"33",1],[12025909,"34",1],[12025908,"35",1],[12025908,"36",1],[12025909,"37",1],[12025908,"38",1],[12025909,"39",1],[12025908,"40",1],[12025909,"41",1],[12025908,"42",1],[12025908,"43",1],[12025909,"44",1],[12025908,"45",1],[12025909,"46",1],[12025908,"47",1],[12025909,"48",1],[12025908,"49",1],[12025908,"50",1],[12025909,"51",1],[12025908,"52",1],[12025909,"53",1],[12025908,"54",1],[12025909,"55",1],[12025908,"56",1],[12025908,"57",1],[12025909,"58",1],[12025908,"59",1],[12025909,"60",1],[12025908,"61",1],[12025909,"62",1],[12025908,"63",1],[12025908,"64",1],[12025909,"65",1],[12025908,"66",1],[12025909,"67",1],[12025908,"68",1],[12025909,"69",1],[12025908,"70",1],[12025908,"71",1],[12025909,"72",1],[12025908,"73",1],[12025909,"74",1],[12025908,"75",1],[12025909,"76",1],[12025908,"77",1],[12025908,"78",1],[12025909,"79",1],[12025908,"80",1],[12025909,"81",1],[12025908,"82",1],[12025909,"83",1],[12025908,"84",1],[12025908,"85",1],[12025909,"86",1],[12025908,"87",1],[12025909,"88",1],[12025908,"89",1],[12025909,"90",1],[12025908,"91",1],[12025908,"92",1],[12025909,"93",1],[12025908,"94",1],[12025909,"95",1],[12025908,"96",1],[12025909,"97",1],[12025908,"98",1],[12025908,"99",1],[12025909,"100",1],[12025908,"101",1],[12025909,"102",1],[12025908,"103",1],[12025909,"104",1],[12025908,"105",1],[12025908,"106",1],[12025909,"107",1],[12025908,"108",1],[12025909,"109",1],[12025908,"110",1],[12025909,"111",1],[12025908,"112",1],[12025908,"113",1],[12025909,"114",1],[12025908,"115",1],[12025909,"116",1],[12025908,"117",1],[12025909,"118",1],[12025908,"119",1],[12025908,"120",1],[12025909,"121",1],[12025908,"122",1],[12025909,"123",1],[12025908,"124",1],[12025909,"125",1],[12025908,"126",1],[12025908,"127",1],[12025909,"128",1],[12025908,"129",1],[12025909,"130",1],[12025908,"131",1],[12025909,"132",1],[12025908,"133",1],[12025908,"134",1],[12025909,"135",1],[12025908,"136",1],[12025909,"137",1],[12025908,"138",1],[12025909,"139",1],[12025908,"140",1],[12025908,"141",1],[12025909,"142",1],[12025908,"143",1],[3006477,"0",1],[3006477,"1",1],[3006478,"2",1],[3006477,"3",1],[3006477,"4",1],[3006477,"5",1],[3006477,"6",1],[3006477,"7",1],[3006477,"8",1],[3006477,"9",1],[3006477,"10",1],[3006478,"11",1],[3006477,"12",1],[3006477,"13",1],[3006477,"14",1],[3006477,"15",1],[3006477,"16",1],[3006477,"17",1],[3006477,"18",1],[3006477,"19",1],[3006477,"20",1],[3006478,"21",1],[3006477,"22",1],[3006477,"23",1],[3006477,"24",1],[3006477,"25",1],[3006477,"26",1],[3006477,"27",1],[3006477,"28",1],[3006477,"29",1],[3006478,"30",1],[3006477,"31",1],[3006477,"32",1],[3006477,"33",1],[3006477,"34",1],[3006477,"35",1],[3006477,"36",1],[3006477,"37",1],[3006477,"38",1],[3006478,"39",1],[3006477,"40",1],[3006477,"41",1],[3006477,"42",1],[3006477,"43",1],[3006477,"44",1],[3006477,"45",1],[3006477,"46",1],[3006477,"47",1],[3006478,"48",1],[3006477,"49",1],[3006477,"50",1],[3006477,"51",1],[3006477,"52",1],[3006477,"53",1],[3006477,"54",1],[3006477,"55",1],[3006477,"56",1],[3006477,"57",1],[3006478,"58",1],[3006477,"59",1],[3006477,"60",1],[3006477,"61",1],[3006477,"62",1],[3006477,"63",1],[3006477,"64",1],[3006477,"65",1],[3006477,"66",1],[3006478,"67",1],[3006477,"68",1],[3006477,"69",1],[3006477,"70",1],[3006477,"71",1],[3006477,"72",1],[3006477,"73",1],[3006477,"74",1],[3006477,"75",1],[3006478,"76",1],[3006477,"77",1],[3006477,"78",1],[3006477,"79",1],[3006477,"80",1],[3006477,"81",1],[3006477,"82",1],[3006477,"83",1],[3006477,"84",1],[3006477,"85",1],[3006478,"86",1],[3006477,"87",1],[3006477,"88",1],[3006477,"89",1],[3006477,"90",1],[3006477,"91",1],[3006477,"92",1],[3006477,"93",1],[3006477,"94",1],[3006478,"95",1],[3006477,"96",1],[3006477,"97",1],[3006477,"98",1],[3006477,"99",1],[3006477,"100",1],[3006477,"101",1],[3006477,"102",1],[3006477,"103",1],[3006478,"104",1],[3006477,"105",1],[3006477,"106",1],[3006477,"107",1],[3006477,"108",1],[3006477,"109",1],[3006477,"110",1],[3006477,"111",1],[3006477,"112",1],[3006477,"113",1],[3006478,"114",1],[3006477,"115",1],[3006477,"116",1],[3006477,"117",1],[3006477,"118",1],[3006477,"119",1],[3006477,"120",1],[3006477,"121",1],[3006477,"122",1],[3006478,"123",1],[3006477,"124",1],[3006477,"125",1],[3006477,"126",1],[3006477,"127",1],[3006477,"128",1],[3006477,"129",1],[3006477,"130",1],[3006477,"131",1],[3006478,"132",1],[3006477,"133",1],[3006477,"134",1],[3006477,"135",1],[3006477,"136",1],[3006477,"137",1],[3006477,"138",1],[3006477,"139",1],[3006477,"140",1],[3006477,"141",1],[3006478,"142",1],[3006477,"143",1],[42949673,"144",1],[2104533975,"outside_propensity",0]]],["ON_app_dl_mobile_0119",[[1431655766,"0_control",1],[1431655765,"1_appdl",1],[1431655765,"2_pill",1]]],["ON_app_dl_desktop_0119",[[4294967296,null,0]]],["ON_simplified_1218",[[4294967296,null,0]]],["DFP_house_conversion",[[2147483648,"0_control",1],[2147483648,"1_psa",1]]],["MKT_gwlp_cta_0118",[[715541552,"0_ctahidden",1],[715541552,"1_ctaexposed",1],[715541551,"3_ctaexposed_offer",1],[2148342641,null,0]]],["FREEX_FT_Reassure",[[858993460,"0_control",1],[858993459,"1_no_cc_copy",1],[858993459,"2_unlimited_access",1],[858993459,"3_free_weeks",1],[858993459,"4_continue_reading",1]]],["FREEX_Gateway_Stories",[[1431655766,"0_Control",1],[1431655765,"1_More_Section",1],[1431655765,"3_Extra",1]]],["RET_ingrace_truncator_0219",[[1431655766,"0_Grace_Control",1],[1431655765,"1_Grace_DismissableTruncator",1],[1431655765,"2_Grace_NonDismissableTruncator",1]]],["MKT_dfp_ocean_messaging",[[1431655766,"0_control",0],[1431655765,"1_relevance",0],[1431655765,"2_breadth",0]]],["HL_sample",[[2147483648,"0",1],[2147483648,"1",1]]]],"//et.nytimes.com");
        ]]>
        </script>
        <link data-rh="true" rel="alternate" itemprop="mainEntityOfPage" hreflang="en-US" href="https://www.nytimes.com/2018/09/25/business/economy/us-government-debt-interest.html" />
        <link data-rh="true" rel="canonical" href="https://www.nytimes.com/2018/09/25/business/economy/us-government-debt-interest.html" />
        <link data-rh="true" rel="alternate" href="android-app://com.nytimes.android/nytimes/reader/id/100000006102576" />
        <link data-rh="true" rel="amphtml" href="https://www.nytimes.com/2018/09/25/business/economy/us-government-debt-interest.amp.html" />
        <link data-rh="true" rel="alternate" type="application/json+oembed" href="https://www.nytimes.com/svc/oembed/json/?url=https%3A%2F%2Fwww.nytimes.com%2F2018%2F09%2F25%2Fbusiness%2Feconomy%2Fus-government-debt-interest.html" title="As Debt Rises, the Government Will Soon Spend More on Interest Than on the Military" />
        <script data-rh="true">
        <![CDATA[
        if (typeof testCookie === 'undefined') {
        var testCookie = function (name) {
        var match = document.cookie.match(new RegExp(name + '=([^;]+)'));
        if (match) return match[1];
        }
        }
        ]]>
        </script>
        <script data-rh="true">
        <![CDATA[
        if (window.NYTD.Abra('dfp_story_toggle') !== '1_block') {

        if (testCookie('nyt-gdpr') !== '1') {
        var gptScript = document.createElement('script');
        gptScript.async = 'async';
        gptScript.src = '//www.googletagservices.com/tag/js/gpt.js';
        document.head.appendChild(gptScript);
        }
        }
        ]]>
        </script>
        <script data-rh="true">
        <![CDATA[
        if (window.NYTD.Abra('dfp_story_toggle') !== '1_block') {

        var googletag = googletag || {};
        googletag.cmd = googletag.cmd || [];

        if (testCookie('nyt-gdpr') == '1') {
        googletag.cmd.push(function() {
        googletag.pubads().setRequestNonPersonalizedAds(1);
        });
        }
        }
        ]]>
        </script>
        <script data-rh="true">
        <![CDATA[
        (function() {
        var getScripts = function() {
        if (window.NYTD.Abra('medianet_toggle') !== '1_block') {
        var readCookie = function(name) {
        match = document.cookie.match(new RegExp(name + '=([^;]+)'));
        if (match) return match[1];
        }
        // Allows media.net if user is not from EEA
        if (readCookie('nyt-gdpr') !== '1') {
        // Allows media.net only if prebid testing is not on
        if (!readCookie('ab7') || readCookie('ab7') !== 'vi-prebid-header=1') {
        var mediaScript = document.createElement("script");
        var cid = '8CU2553YN';
        var domain = 'www.nytimes.com';
        if (window.innerWidth < 600) {
        cid = '8CULO58R6';
        }
        mediaScript.async = true;
        mediaScript.src="https://contextual.media.net/bidexchange.js?cid="+cid+"&dn="+domain+"&https=1";
        document.head.appendChild(mediaScript);
        }
        }

        }
        if (window.NYTD.Abra('medianet_toggle') !== '1_block') {
        var mediaNetCID = '8CU2553YN';
        if (window.innerWidth < 600) {
        mediaNetCID = '8CULO58R6';
        }
        window.advBidxc = window.advBidxc || {};window.advBidxc.renderAd = function() {};
        window.advBidxc.startTime = new Date().getTime(); window.advBidxc.customerId = {mediaNetCID: mediaNetCID};
        window.advBidxc.misc = {"isGptDisabled": 1};

        }
        if (window.NYTD.Abra('amazon_toggle') !== '1_block') {

        !function(a9,a,p,s,t,A,g){if(a[a9])return;
        function q(c,r){a[a9]._Q.push([c,r])}a[a9]={
        init:function(){q("i",arguments)},
        fetchBids:function(){q("f",arguments)},
        setDisplayBids:function(){},
        targetingKeys:function(){return[]},_Q:[]};
        A=p.createElement(s);
        A.async=!0;
        A.src=t;
        g=p.getElementsByTagName(s)[0];
        g.parentNode.insertBefore(A,g)}
        ("apstag",window,document,"script","//c.amazon-adsystem.com/aax2/apstag.js");
        apstag.init({
        pubID: '3030',
        adServer: 'googletag',
        params: {
        si_section: 'business'
        }
        });

        }
        if (window.NYTD.Abra('index_toggle') !== '1_block') {

        var indexScript = document.createElement("script");
        indexScript.async = 'async';
        indexScript.src="https://js-sec.indexww.com/ht/p/183760-179626133031071.js";
        document.head.appendChild(indexScript);

        };
        };
        if (window.NYTD.Abra('DFP_prioritize_defer') !== null && window.NYTD.Abra('DFP_prioritize_defer').indexOf('hb') !== -1 && window.NYTD.Abra('MKT_Redbird_US') === 'Outside_Redbird') {
        var scriptAdded = false;
        window.googletag = window.googletag || {};
        window.googletag.cmd = window.googletag.cmd || [];
        window.googletag.cmd.push(function() {
        window.googletag.pubads().addEventListener('slotOnload', function(e) {
          if (e.slot && typeof e.slot.getSlotElementId === 'function' && e.slot.getSlotElementId() === 'top' && !scriptAdded) {
            getScripts();
            scriptAdded = true;
          }
        });
        });
        setTimeout(function() {
        if (!scriptAdded) {
          getScripts();
          scriptAdded = true;
        }
        }, 10000);
        } else {
        getScripts();
        }
        }());
        ]]>
        </script>
        <script data-rh="true">
        <![CDATA[
        if (window.NYTD.Abra('vi-ads-et') || (window.NYTD.Abra('DFP_prioritize_defer') !== null && window.NYTD.Abra('MKT_Redbird_US') === 'Outside_Redbird')) {
        window.addEventListener('beforeunload', function(e) {
        function measureExit() {
        try {
        var time;
        if (performance) {
        performance.mark('exit-event');
        performance.measure('visit-time', 'responseStart', 'exit-event');
        time = performance.getEntriesByName('visit-time')[0].duration;
        }
        return time;
        } catch (err) {
        // move on
        }
        };

        var etUrl = 'https://et.nytimes.com/';
        var data = 'url=' + window.location.href +
        '&referrer=' + document.referrer +
        '&subject=module-interactions' +
        '&moduleData=%7B%22module%22%3A%22nyt-vi-exit-pixel%22%2C%22eventName%22%3A%22Impression%22%2C%22action%22%3A%22Impression%22%2C%22mData%22%3A%22' + measureExit() + '%22%7D' +
        '&page_view_id=' + window.NYTD.PageViewId.current +
        '&sourceApp=nyt-vi&instant=1' +
        '&_=' + Date.now();
        if ('sendBeacon' in navigator) {
        navigator.sendBeacon(etUrl, data);
        }
        });
        }
        ]]>
        </script>
        <script data-rh="true">
        <![CDATA[
        if ((window.NYTD.Abra('DFP_prioritize_defer') !== null && window.NYTD.Abra('MKT_Redbird_US') === 'Outside_Redbird') && !(testCookie('nyt-gdpr') === '1' && testCookie('NYT-T') === 'out')) {

        var noop=function(){return{}},noopArr=function(){return[]},performance=window.performance||{};performance.mark=performance.mark||noop,performance.measure=performance.measure||noop,performance.getEntriesByName=performance.getEntriesByName||noopArr,performance.getEntriesByType=performance.getEntriesByType||noopArr;var ADF={isRefresh:!1,isDisplayed:!1,isManualRefresh:window.performance&&window.performance.navigation&&1===window.performance.navigation.type,observer:null,trackEvent:function(e){var t={module:"top",action:"ad-impression"};window.Object.keys(e).forEach(function(r){t[r]=e[r]});var r=document.createElement("img"),n="https://et.nytimes.com/pixel?url="+encodeURIComponent(window.location.href)+"&referrer="+document.referrer+"&subject=module-interactions&page_view_id="+window.NYTD.PageViewId.current+"&moduleData="+encodeURIComponent(window.JSON.stringify(t))+"&sourceApp=nyt-vi&instant=1&_="+Date.now();r.src=n,r.style.cssText="position: absolute; z-index: -999999; left: -1000px; top: -1000px;",document.body&&document.body.appendChild(r)},trackTimeCalled:function(e,t){performance.timing&&performance.timing.responseStart&&t.setTargeting("request_time",(Date.now()-performance.timing.responseStart).toString());var r="top-timeCalled";performance.mark(r),performance.measure(e,"responseStart",r);var n=performance.getEntriesByName(e).pop();n&&this.trackEvent({eventName:"timeCalled",moduleDetail:Math.round(n.duration)})},getDeviceType:function(){var e="tablet",t="desktop",r="smartphone";return window.matchMedia("(min-width: 740px)").matches&&(r=e),window.matchMedia("(min-width: 1150px)").matches&&(r=t),r},getAbraDfpVariants:function(){var e=window.document.documentElement.getAttribute("data-nyt-ab");return e?e.split(" ").reduce(function(e,t){var r=t.split("="),n=r[0].toLowerCase(),o=r[1];return(n.indexOf("dfp")>-1||n.indexOf("redbird")>-1)&&e.push(n+"_"+o),e},[]):""},getSub:function(e,t){var r=e&&e.demographics,n=r&&r.emailSubscriptions,o=r&&r.bundleSubscriptions;if(r&&o&&t&&(t.sub="reg",n&&n.length&&(t.em=n.toString().toLowerCase()),r.wat&&(t.wat=r.wat.toLowerCase()),o&&o.length&&o[0].bundle)){var i=o[0];t.sub=i.bundle.toLowerCase(),i.source&&(t.subsrc=i.source.toLowerCase()),i.promotion&&(t.subprm=i.promotion),i.in_grace&&(t.grace=i.in_grace.toString())}return t},getUserInfo:function(){var e=window.userInfoXhrObject&&""!==window.userInfoXhrObject.responseText&&window.JSON.parse(window.userInfoXhrObject.responseText).data||null,t=null;return e&&e.user&&(t=e.user.userInfo?{demographics:e.user.userInfo.demographics}:{}),t},getViewport:function(e){var t={smartphone:"small",tablet:"medium",desktop:"large"};return e?t[e]:t.desktop},getTargeting:function(e,t){var r=this.getUserInfo();r?e=this.getSub(r,e):e.sub="anon",1===testCookie("nyt-gdpr")&&(e.gdprUser=!0);var n=testCookie("NYT-T");return n&&"out"===n.toLowerCase()&&(e.noTracking=!0),"/"===location.pathname&&(e.topref=document.referrer,this.isManualRefresh&&(e.refresh="manual")),e.aid=testCookie("nyt-a")||"",e.abra_dfp=this.getAbraDfpVariants(),e.page_view_id=window.NYTD.PageViewId.current,e.vp=this.getViewport(t),e},defineAd:function(e,t){var r=window.googletag.defineSlot(t,[],e);if(r){var n="top-timeDefined";performance.mark(n),performance.measure(e,"responseStart",n);var o=performance.getEntriesByName(e).pop();o&&this.trackEvent({eventName:"timeDefined",moduleDetail:Math.round(o.duration)})}return r},observeAd:function(e,t){var r=document.getElementById(e);if(this.observer)this.observer.unobserve(r),this.observer.observe(r);else{window.IntersectionObserver.prototype.POLL_INTERVAL=1e3;var n=new IntersectionObserver(function(n,o){n[0].isIntersecting&&(this.trackTimeCalled(e,t),this.isRefresh&&this.isDisplayed?window.googletag.pubads().refresh([t]):(window.googletag.display(t),this.isDisplayed=!0),o.unobserve(r))}.bind(this),{root:null,rootMargin:"400px",threshold:0});n.observe(r),this.observer=n}},callAd:function(e,t){void 0!==window.IntersectionObserver&&this.isManualRefresh?this.observeAd(e,t):(this.trackTimeCalled(e,t),window.googletag.display(e),this.isDisplayed=!0)},createTopAd:function(e,t){var r="top",n=this.getDeviceType();if("smartphone"!==n){var o=this.defineAd(r,t);if(o){var i=window.googletag.sizeMapping().addSize([970,0],["fluid",[728,90],[970,90],[970,250],[1605,300]]).addSize([728,0],["fluid",[728,90],[300,250],[1605,300]]).addSize([0,0],["fluid",[300,250],[300,420]]).build();o.defineSizeMapping(i);var a=this.getTargeting(e,n);window.Object.keys(a).forEach(function(e){o.setTargeting(e,a[e])}),o.addService(window.googletag.pubads()),window.googletag.enableServices(),this.callAd(r,o),window.googletag.pubads().addEventListener("slotRenderEnded",function(e){if(e.slot.getSlotElementId()===r){var t="top-timeRendered";performance.mark(t),performance.measure(r,"top-timeCalled",t);var n=performance.getEntriesByName(r).pop();n&&this.trackEvent({eventName:"timeRendered",moduleDetail:Math.round(n.duration)}),e.isEmpty&&(document.getElementById(r).parentNode.style.display="none")}}.bind(this)),window.googletag.pubads().addEventListener("slotOnload",function(e){if(e.slot.getSlotElementId()===r){var t="top-timeLoaded";performance.mark(t),performance.measure(r,"top-timeCalled",t);var n=performance.getEntriesByName(r).pop();n&&this.trackEvent({eventName:"timeLoaded",moduleDetail:Math.round(n.duration)})}}.bind(this)),window.googletag.pubads().addEventListener("impressionViewable",function(e){if(e.slot.getSlotElementId()===r){var t="top-timeViewed";performance.mark(t),performance.measure(r,"top-timeCalled",t);var n=performance.getEntriesByName(r).pop();n&&this.trackEvent({eventName:"timeViewed",moduleDetail:Math.round(n.duration)})}}.bind(this)),document.addEventListener("topAdRefresh",function(e){o.setTargeting("page_view_id",window.NYTD.PageViewId.current),o.setTargeting("refresh",e.detail),this.isRefresh=!0,void 0!==window.IntersectionObserver?this.observeAd(r,o):(this.trackTimeCalled(r,o),window.googletag.pubads().refresh([o]))}.bind(this))}}}};
        window.googletag = window.googletag || {};
        window.googletag.cmd = window.googletag.cmd || [];
        window.googletag.cmd.push(ADF.createTopAd.bind(ADF, {"div":"top","gpt-beta":"vqwdtftx","pos":"top","sov":null,"test":"projectvi","ver":"vi","hasVideo":false,"template":"article","si_section":"business","plat":"web","auth":"nelsondschwartz","typ":"art,oak","edn":"us","des":"nationaldebtus,federalbudgetus,unitedstatespoliticsandgovernm,interestrates,unitedstatesdefenseandmilitary,unitedstateseconomy,federaltaxesus,usdollarcurrency,recessionanddepression","per":"trumpdonaldj","org":"congressionalbudgetoffice,federalreservesystem","coll":"politics,economy,business,amp","id":"100000006102576","als_test":"1551234976794","brandsensitive":"false","ledemedsz":"none","prop":"nyt","section":"business","artlen":"long","emotions":"fear,optimistic,interest,informed,hate,not_selfconfident,not_happiness,not_adventurous,not_inthemoodtospend,not_boredom,not_indulgent,not_nostalgic,not_love,not_amused,not_inspired","gscat":"neg_mastercard,gs_politics,gs_economy,gs_economy_misc,gs_finance,gs_politics_misc,gs_politics_american,gs_finance_loans,neg_hearts,gs_finance_tax,gv_safe"}, '/29390238/nyt/business/economy'));

        }
        ]]>
        </script>
        <link rel="stylesheet" href="/vi-assets/static-assets/global-42db6c8821fec0e2b3837b2ea2ece8fe.css" />
        <style>
        <![CDATA[
        .css-1dv1kvn{border:0;-webkit-clip:rect(0 0 0 0);clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;}.css-nuvmzp{font-size:14.25px;font-family:nyt-franklin,helvetica,arial,sans-serif;font-weight:700;text-transform:uppercase;-webkit-letter-spacing:0.7px;-moz-letter-spacing:0.7px;-ms-letter-spacing:0.7px;letter-spacing:0.7px;line-height:19px;}.css-nuvmzp:hover{-webkit-text-decoration:underline;text-decoration:underline;}.css-1gz70xg{border-left:1px solid #ccc;color:#326891;height:12px;margin-left:8px;padding-left:8px;}.css-9e9ivx{display:none;font-size:10px;margin-left:auto;text-transform:uppercase;}.hasLinks .css-9e9ivx{display:block;}@media (min-width:740px){.hasLinks .css-9e9ivx{margin:none;position:absolute;right:20px;}}@media (min-width:1024px){.hasLinks .css-9e9ivx{display:none;}}.css-2bwtzy{display:inline-block;padding:6px 4px 4px;margin-bottom:12px;font-size:12px;border-radius:3px;-webkit-transition:background 0.6s ease;transition:background 0.6s ease;}.css-2bwtzy:hover{background-color:#f7f7f7;}.css-6n7j50{display:inline;}.css-1kj7lfb{display:none;}@media (min-width:1024px){.css-1kj7lfb{display:inline-block;margin-right:7px;}}.css-10m9xeu{display:block;width:16px;height:16px;}.css-vz7hjd{border:0;-webkit-clip:rect(0 0 0 0);clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;}.css-1fe7a5q{display:inline-block;height:16px;vertical-align:sub;width:16px;}.css-1rn5q1r{border:0;-webkit-clip:rect(0 0 0 0);clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;border-radius:3px;cursor:pointer;font-family:nyt-franklin,helvetica,arial,sans-serif;-webkit-transition:ease 0.6s;transition:ease 0.6s;background-color:transparent;color:#000;font-size:11px;font-weight:700;-webkit-letter-spacing:0.02em;-moz-letter-spacing:0.02em;-ms-letter-spacing:0.02em;letter-spacing:0.02em;padding:7px 9px 9px;background:#fff;display:inline-block;left:44px;text-transform:uppercase;-webkit-transition:none;transition:none;}.css-1rn5q1r:active,.css-1rn5q1r:focus{-webkit-clip:auto;clip:auto;overflow:visible;width:auto;height:auto;}.css-1rn5q1r::-moz-focus-inner{padding:0;border:0;}.css-1rn5q1r:-moz-focusring{outline:1px dotted;}.css-1rn5q1r:disabled,.css-1rn5q1r.disabled{opacity:0.5;cursor:default;}.css-1rn5q1r:active,.css-1rn5q1r.active{background-color:#f7f7f7;}@media (min-width:740px){.css-1rn5q1r:hover{background-color:#f7f7f7;}}.css-1rn5q1r:focus{margin-top:3px;padding:8px 8px 6px;}@media (min-width:1024px){.css-1rn5q1r{left:112px;}}.css-10488qs{display:none;}@media (min-width:1024px){.css-10488qs{display:inline-block;position:relative;}}.css-1iruc8t{list-style:none;margin:0;padding:0;}.css-1ropbjl::before{background-color:$white;border-bottom:1px solid #e2e2e2;border-top:2px solid #e2e2e2;content:'';display:block;height:1px;margin-top:0;}@media (min-width:1150px){.css-1ropbjl{margin:0 auto;max-width:1200px;padding:0 3% 9px;}}.NYTApp .css-1ropbjl{display:none;}@media print{.css-1ropbjl{display:none;}}.css-uw59u{padding:0 20px;}@media (min-width:740px){.css-uw59u{padding:0 3%;}}@media (min-width:1150px){.css-uw59u{padding:0;}}.css-jxzr5i{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row;-ms-flex-flow:row;flex-flow:row;}.css-oylsik{display:block;height:44px;vertical-align:middle;width:184px;}.css-1otr2jl{margin:18px 0 0 auto;}.css-1c8n994{color:#6288a5;font-family:nyt-franklin;font-size:11px;font-style:normal;font-weight:400;line-height:11px;-webkit-text-decoration:none;text-decoration:none;}.css-qtw155{display:block;}@media (min-width:1150px){.css-qtw155{display:none;}}.css-v0l3hm{display:none;}@media (min-width:1150px){.css-v0l3hm{display:block;}}.css-g4gku8{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-top:10px;min-width:600px;}.css-1rr4qq7{-webkit-flex:1;-ms-flex:1;flex:1;}.css-6xhk3s{border-left:1px solid #e2e2e2;-webkit-flex:1;-ms-flex:1;flex:1;padding-left:15px;}.css-rxqrcl{color:#333;font-size:13px;font-weight:700;font-family:nyt-franklin;height:25px;line-height:15px;margin:0;text-transform:uppercase;width:150px;}.css-tj0ten{margin-bottom:5px;white-space:nowrap;}.css-tj0ten:last-child{margin-bottom:10px;}.css-ist4u3.desktop{display:none;}@media (min-width:740px){.css-ist4u3.desktop{display:block;}.css-ist4u3.smartphone{display:none;}}.css-1gprdgz{list-style:none;margin:0;padding:0;-webkit-columns:2;columns:2;padding:0 0 15px;}.css-10t7hia{height:34px;line-height:34px;list-style-type:none;}.css-10t7hia.desktop{display:none;}@media (min-width:740px){.css-10t7hia.desktop{display:block;}.css-10t7hia.smartphone{display:none;}}.css-mzqdl{color:#333;display:block;font-family:nyt-franklin;font-size:15px;font-weight:500;height:34px;line-height:34px;-webkit-text-decoration:none;text-decoration:none;text-transform:capitalize;}.css-kwpx34{color:#000;display:inline-block;font-family:nyt-franklin;-webkit-text-decoration:none;text-decoration:none;text-transform:capitalize;width:150px;font-size:14px;font-weight:500;height:23px;line-height:16px;}.css-kwpx34:hover{cursor:pointer;-webkit-text-decoration:underline;text-decoration:underline;}body.dark .css-kwpx34{color:#fff;}.css-1k2cjfc{color:#000;display:inline-block;font-family:nyt-franklin;-webkit-text-decoration:none;text-decoration:none;text-transform:capitalize;width:150px;font-size:16px;font-weight:700;height:25px;line-height:15px;padding-bottom:0;}.css-1k2cjfc:hover{cursor:pointer;-webkit-text-decoration:underline;text-decoration:underline;}body.dark .css-1k2cjfc{color:#fff;}.css-1vhk1ks{color:#000;display:inline-block;font-family:nyt-franklin;-webkit-text-decoration:none;text-decoration:none;text-transform:capitalize;width:150px;font-size:11px;font-weight:500;height:23px;line-height:21px;}.css-1vhk1ks:hover{cursor:pointer;-webkit-text-decoration:underline;text-decoration:underline;}body.dark .css-1vhk1ks{color:#fff;}.css-6td9kr{list-style:none;margin:0;padding:0;border-top:1px solid #e2e2e2;margin-top:2px;padding-top:10px;}.css-r5ic95{display:inline-block;height:13px;width:13px;margin-right:7px;vertical-align:middle;}.css-15uy5yv{border-top:1px solid #ebebeb;padding-top:9px;}.css-1p8nkc0{color:#999;font-family:nyt-franklin,helvetica,arial,sans-serif;padding:10px 0;-webkit-text-decoration:none;text-decoration:none;white-space:nowrap;}.css-1p8nkc0:hover{-webkit-text-decoration:underline;text-decoration:underline;}.css-1hyfx7x{display:none;}@-webkit-keyframes animation-f8wsfj{0%{opacity:1;}50%{opacity:0;}100%{opacity:0;}}@keyframes animation-f8wsfj{0%{opacity:1;}50%{opacity:0;}100%{opacity:0;}}@-webkit-keyframes animation-mhvv8m{0%{opacity:0;}50%{opacity:0;}100%{opacity:1;}}@keyframes animation-mhvv8m{0%{opacity:0;}50%{opacity:0;}100%{opacity:1;}}.css-qremme{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:32px;background:#333;box-shadow:0 2.5px 5px rgba(0,0,0,0.25);border-radius:101px;z-index:1000000101;}@media (min-width:768px){.css-qremme{height:35px;}}.css-1f85ym4{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;padding:0 13px 0 17px;background-color:transparent;color:#fff;font-family:nyt-franklin,helvetica,arial,sans-serif;font-weight:700;font-size:0.875rem;line-height:0.875rem;}@media (min-width:768px){.css-1f85ym4{font-size:0.9375rem;line-height:0.9375rem;}}.css-7inim5{border:0.5px solid #ccc;height:60%;}.css-133m5b6{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;padding:0 16px 0 13px;background-color:transparent;}.css-133m5b6 svg{fill:none;}.css-133m5b6 svg path{stroke-width:2px;-webkit-transform:translate(10.57px,-1.46px);-ms-transform:translate(10.57px,-1.46px);transform:translate(10.57px,-1.46px);}.css-1lc20wh{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;position:fixed;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;width:100vw;bottom:2.5vh;-webkit-transform:translateY(75px);-ms-transform:translateY(75px);transform:translateY(75px);}.css-1lc20wh.shown{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);-webkit-transition:200ms -webkit-transform ease-in-out;-webkit-transition:200ms transform ease-in-out;transition:200ms transform ease-in-out;}@media print{.css-1lc20wh{display:none;}}@-webkit-keyframes animation-1m9j9gf{from{background-color:#f7f7f5;}to{background-color:transparent;}}@keyframes animation-1m9j9gf{from{background-color:#f7f7f5;}to{background-color:transparent;}}.css-1g7m0tk{color:#326891;}.css-1g7m0tk:visited{color:#326891;}.sizeSmall .css-bsn42l{width:50%;}@media (min-width:600px){.sizeSmall .css-bsn42l{width:300px;}}@media (min-width:1440px){.sizeSmall .css-bsn42l{width:300px;}}@media (max-width:600px){.sizeSmall .css-bsn42l{width:50%;}}.sizeSmall.sizeSmallNoCaption .css-bsn42l{margin-left:auto;margin-right:auto;}@media (min-width:740px){.sizeSmall.layoutVertical .css-bsn42l{max-width:250px;}}@media (min-width:1024px){.sizeSmall.layoutVertical .css-bsn42l{width:250px;}}@media (max-width:740px){.sizeSmall.layoutVertical .css-bsn42l{max-width:250px;}}@media (min-width:740px){.sizeSmall.layoutHorizontal .css-bsn42l{max-width:300px;}}@media (min-width:1024px){.sizeSmall.layoutHorizontal .css-bsn42l{width:300px;}}@media (max-width:740px){.sizeSmall.layoutHorizontal .css-bsn42l{max-width:300px;}}@media (min-width:600px){.sizeMedium.layoutVertical.verticalVideo .css-bsn42l{width:310px;}}.css-11cwn6f{width:100%;vertical-align:top;}.css-11cwn6f img{width:100%;vertical-align:top;}.css-d8bdto{color:#999;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;font-family:nyt-franklin,helvetica,arial,sans-serif;font-size:17px;margin-bottom:5px;}@media print{.css-d8bdto{display:none;}}.css-y8aj3r{padding:0;}.css-60hakz{color:#999;display:inline;margin-right:16px;padding:10px 0;width:100%;}.css-60hakz a{-webkit-text-decoration:none;text-decoration:none;}@media (max-width:659px){.css-60hakz:nth-of-type(3),.css-60hakz:nth-of-type(4){display:none;}}.css-60hakz:last-of-type{margin-right:0;}.css-i29ckm{width:calc(100% - 40px);max-width:600px;margin:1.5rem auto 2rem;}@media (min-width:1440px){.css-i29ckm{width:600px;max-width:600px;}}@media (min-width:600px){.css-i29ckm{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}}@media (max-width:600px){.css-i29ckm .facebook,.css-i29ckm .twitter,.css-i29ckm .email{display:inline-block;}}.css-1ri25x2{display:none;}@media (min-width:740px){.css-1ri25x2{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:16px;height:31px;}}@media (min-width:1024px){.css-1ri25x2{display:none;}}.css-12fr9lp{height:23px;margin-top:6px;}.css-1hfdzay{display:none;}@media (min-width:1024px){.css-1hfdzay{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-top:0;}}.css-k008qs{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}.css-eqw76k{display:none;}@media (min-width:740px){.css-eqw76k{position:fixed;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;opacity:0;z-index:1;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;width:100%;height:32.063px;background:white;padding:5px 0 5px 0;top:0;text-align:center;font-family:'nyt-cheltenham';box-shadow:rgba(0,0,0,0.08) 0 0 5px 1px;border-bottom:1px solid #e2e2e2;}}.css-m6xlts{margin-left:20px;margin-right:20px;max-width:1605px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;position:relative;width:100%;}@media (min-width:1360px){.css-m6xlts{margin-left:20px;margin-right:20px;}}@media (min-width:1780px){.css-m6xlts{margin-left:auto;margin-right:auto;}}.css-1ahhg7f{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;max-width:1605px;overflow:hidden;position:absolute;width:56%;margin-left:calc((100% - 56%) / 2);}@media (min-width:1024px){.css-1ahhg7f{width:56%;margin-left:calc((100% - 56%) / 2);}}@media (min-width:1024px){.css-1ahhg7f{width:53%;margin-left:calc((100% - 53%) / 2);}}.css-rs6kf8{font-family:nyt-cheltenham-small,georgia,'times new roman';font-weight:700;font-size:13px;-webkit-letter-spacing:0.015em;-moz-letter-spacing:0.015em;-ms-letter-spacing:0.015em;letter-spacing:0.015em;font-weight:400;margin-top:10.5px;margin-right:auto;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.css-17xtcya{font-family:nyt-franklin,helvetica,arial,sans-serif;font-weight:700;font-size:12.5px;text-transform:uppercase;-webkit-letter-spacing:0;-moz-letter-spacing:0;-ms-letter-spacing:0;letter-spacing:0;margin-top:12.5px;margin-bottom:auto;margin-left:auto;white-space:nowrap;}.css-17xtcya:hover{-webkit-text-decoration:underline;text-decoration:underline;}.css-x15j1o{display:inline-block;padding-left:7px;padding-right:7px;font-size:13px;margin-top:10px;margin-bottom:auto;color:#ccc;}.css-19gb6gw{margin-top:auto;margin-bottom:auto;margin-left:auto;background-color:white;z-index:50;box-shadow:-14px 2px 7px -2px rgba(255,255,255,0.7);}@media (min-width:740px){.css-1iwv8en{margin-top:1px;}}@media (min-width:1024px){.css-1iwv8en{margin-top:0;}}.css-1sy8kpn{display:none;}@media (min-width:765px){.css-1sy8kpn{background-color:#f7f7f7;border-bottom:1px solid #f3f3f3;display:block;padding-bottom:15px;padding-top:15px;margin:0;min-height:90px;}}@media print{.css-1sy8kpn{display:none;}}.css-19vbshk{color:#ccc;display:none;font-family:nyt-franklin,helvetica,arial,sans-serif;font-size:0.5625rem;font-weight:300;-webkit-letter-spacing:0.05rem;-moz-letter-spacing:0.05rem;-ms-letter-spacing:0.05rem;letter-spacing:0.05rem;line-height:0.5625rem;margin-left:auto;text-align:center;text-transform:uppercase;}@media (min-width:600px){.css-19vbshk{display:inline-block;}}.css-19vbshk p{margin-bottom:auto;margin-right:7px;margin-top:auto;text-transform:none;}.css-l9onyx{color:#ccc;font-family:nyt-franklin,helvetica,arial,sans-serif;font-size:0.5625rem;font-weight:300;-webkit-letter-spacing:0.05rem;-moz-letter-spacing:0.05rem;-ms-letter-spacing:0.05rem;letter-spacing:0.05rem;line-height:0.5625rem;margin-bottom:9px;text-align:center;text-transform:uppercase;}@-webkit-keyframes animation-b7n1on{0%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);}100%{-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);}}@keyframes animation-b7n1on{0%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);}100%{-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);}}.css-1rj8to8{display:inline-block;line-height:1em;}.css-1rj8to8 .css-0{-webkit-text-decoration:none;text-decoration:none;display:inline-block;}.css-4w91ra{display:inline-block;padding-left:3px;}.css-1rjzas3{font-family:nyt-imperial,georgia,'times new roman',times,serif;font-style:italic;font-size:1.0625rem;line-height:1.5rem;width:calc(100% - 40px);max-width:600px;margin:0 auto 0.75rem;margin-top:1rem;}@media (min-width:740px){.css-1rjzas3{font-size:1.1875rem;line-height:1.75rem;margin-bottom:1.25rem;}}@media (min-width:1440px){.css-1rjzas3{width:600px;max-width:600px;}}@media print{.css-1rjzas3{margin-left:0;margin-right:0;width:100%;max-width:100%;}}.css-acwcvw{margin-bottom:1rem;}@-webkit-keyframes animation-1egl8em{from{opacity:0;-webkit-transform:translate3d(0,13%,0);-ms-transform:translate3d(0,13%,0);transform:translate3d(0,13%,0);}to{opacity:1;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}}@keyframes animation-1egl8em{from{opacity:0;-webkit-transform:translate3d(0,13%,0);-ms-transform:translate3d(0,13%,0);transform:translate3d(0,13%,0);}to{opacity:1;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}}.css-vdv0al{font-family:nyt-franklin,helvetica,arial,sans-serif;font-size:0.75rem;line-height:1rem;width:calc(100% - 40px);max-width:600px;margin:0 auto 1em;color:#999;}.css-vdv0al a{color:#999;-webkit-text-decoration:none;text-decoration:none;}.css-vdv0al a:hover{-webkit-text-decoration:underline;text-decoration:underline;}@media (min-width:1440px){.css-vdv0al{width:600px;max-width:600px;}}@media print{.css-vdv0al{margin-left:0;margin-right:0;width:100%;max-width:100%;}}@media print{.css-vdv0al span{display:none;}}.css-1i2y565 .e6idgb70 + .e1h9rw200{margin-top:0;}.css-1i2y565 .eoo0vm40 + .e1gnsphs0{margin-top:-0.3em;}.css-1i2y565 .e6idgb70 + .eoo0vm40{margin-top:0;}.css-1i2y565 .eoo0vm40 + figure{margin-top:1.2rem;}.css-1i2y565 .e1gnsphs0 + figure{margin-top:1.2rem;}.css-o6xoe7{display:none;}@media (min-width:1024px){.css-o6xoe7{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-right:0;margin-left:auto;width:130px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}}@media (min-width:1150px){.css-o6xoe7{width:210px;}}@media print{.css-o6xoe7{display:none;}}.css-1fanzo5{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin-bottom:1rem;}@media (min-width:1024px){.css-1fanzo5{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;height:100%;width:945px;margin-left:auto;margin-right:auto;}}@media (min-width:1150px){.css-1fanzo5{width:1110px;margin-left:auto;margin-right:auto;}}@media (min-width:1280px){.css-1fanzo5{width:1170px;}}@media (min-width:1440px){.css-1fanzo5{width:1200px;}}@media print{.css-1fanzo5{margin-left:0;margin-right:0;width:100%;max-width:100%;}}@media print{.css-1fanzo5{margin-bottom:1em;display:block;}}.css-53u6y8{margin-left:auto;margin-right:auto;width:100%;}@media (min-width:1024px){.css-53u6y8{margin-left:calc((100% - 600px) / 2);margin-right:0;width:600px;}}@media (min-width:1440px){.css-53u6y8{max-width:600px;width:600px;margin-left:calc((100% - 600px) / 2);}}@media print{.css-53u6y8{margin-left:0;margin-right:0;width:100%;max-width:100%;}}.css-z3e15g{position:fixed;opacity:0;-webkit-scroll-events:none;-moz-scroll-events:none;-ms-scroll-events:none;scroll-events:none;top:0;left:0;bottom:0;right:0;-webkit-transition:opacity 0.2s;transition:opacity 0.2s;background-color:#fff;pointer-events:none;}.css-cl76n0{margin:0 0 1rem;}.css-1vs7yia{color:#666;font-family:nyt-imperial,georgia,'times new roman',times,serif;font-size:0.9375rem;line-height:1.25rem;}.css-irejme{margin:10px auto 20px;max-width:100%;line-height:0;}.css-1ct2c9h{margin:0;display:inline;color:#888;font-family:nyt-imperial,georgia,'times new roman',times,serif;font-size:0.75rem;line-height:1rem;-webkit-letter-spacing:0.01em;-moz-letter-spacing:0.01em;-ms-letter-spacing:0.01em;letter-spacing:0.01em;}@media (min-width:1150px){.css-1ct2c9h{font-size:0.8125rem;line-height:1.0625rem;}}.css-1ct2c9h:not(:last-child):after{content:'•';color:#e2e2e2;margin:0 10px 0 10px;font-size:10px;white-space:no-wrap;}.css-13nfagi{margin:2.3125rem auto;width:calc(100% - 20px);max-width:600px;}@media (min-width:340px) and (max-width:630px){.css-13nfagi{width:calc(100% - 40px);}}@media (min-width:1440px){.css-13nfagi{max-width:630px;}}@-webkit-keyframes animation-1b9egsl{0%{-webkit-transform:rotate(20deg);-ms-transform:rotate(20deg);transform:rotate(20deg);}100%{-webkit-transform:rotate(380deg);-ms-transform:rotate(380deg);transform:rotate(380deg);}}@keyframes animation-1b9egsl{0%{-webkit-transform:rotate(20deg);-ms-transform:rotate(20deg);transform:rotate(20deg);}100%{-webkit-transform:rotate(380deg);-ms-transform:rotate(380deg);transform:rotate(380deg);}}@-webkit-keyframes animation-1c5cfvc{0%{-webkit-transform:translate(0px,0px) scale(1,1) translate(0px,0px);-ms-transform:translate(0px,0px) scale(1,1) translate(0px,0px);transform:translate(0px,0px) scale(1,1) translate(0px,0px);}25%{-webkit-transform:translate(0px,0px) scale(1,0.95) translate(0px,0px);-ms-transform:translate(0px,0px) scale(1,0.95) translate(0px,0px);transform:translate(0px,0px) scale(1,0.95) translate(0px,0px);}50%{-webkit-transform:translate(0px,0px) scale(1,0.9) translate(0px,0px);-ms-transform:translate(0px,0px) scale(1,0.9) translate(0px,0px);transform:translate(0px,0px) scale(1,0.9) translate(0px,0px);}75%{-webkit-transform:translate(0px,0px) scale(1,0.95) translate(0px,0px);-ms-transform:translate(0px,0px) scale(1,0.95) translate(0px,0px);transform:translate(0px,0px) scale(1,0.95) translate(0px,0px);}100%{-webkit-transform:translate(0px,0px) scale(1,1) translate(0px,0px);-ms-transform:translate(0px,0px) scale(1,1) translate(0px,0px);transform:translate(0px,0px) scale(1,1) translate(0px,0px);}}@keyframes animation-1c5cfvc{0%{-webkit-transform:translate(0px,0px) scale(1,1) translate(0px,0px);-ms-transform:translate(0px,0px) scale(1,1) translate(0px,0px);transform:translate(0px,0px) scale(1,1) translate(0px,0px);}25%{-webkit-transform:translate(0px,0px) scale(1,0.95) translate(0px,0px);-ms-transform:translate(0px,0px) scale(1,0.95) translate(0px,0px);transform:translate(0px,0px) scale(1,0.95) translate(0px,0px);}50%{-webkit-transform:translate(0px,0px) scale(1,0.9) translate(0px,0px);-ms-transform:translate(0px,0px) scale(1,0.9) translate(0px,0px);transform:translate(0px,0px) scale(1,0.9) translate(0px,0px);}75%{-webkit-transform:translate(0px,0px) scale(1,0.95) translate(0px,0px);-ms-transform:translate(0px,0px) scale(1,0.95) translate(0px,0px);transform:translate(0px,0px) scale(1,0.95) translate(0px,0px);}100%{-webkit-transform:translate(0px,0px) scale(1,1) translate(0px,0px);-ms-transform:translate(0px,0px) scale(1,1) translate(0px,0px);transform:translate(0px,0px) scale(1,1) translate(0px,0px);}}@-webkit-keyframes animation-htgkrt{0%{-webkit-transform:translate(0px,0px) translate(0px,0px) translate(0px,0px);-ms-transform:translate(0px,0px) translate(0px,0px) translate(0px,0px);transform:translate(0px,0px) translate(0px,0px) translate(0px,0px);}25%{-webkit-transform:translate(0px,0px) translate(0px,0px) translate(0px,5px);-ms-transform:translate(0px,0px) translate(0px,0px) translate(0px,5px);transform:translate(0px,0px) translate(0px,0px) translate(0px,5px);}50%{-webkit-transform:translate(0px,0px) translate(0px,0px) translate(0px,10px);-ms-transform:translate(0px,0px) translate(0px,0px) translate(0px,10px);transform:translate(0px,0px) translate(0px,0px) translate(0px,10px);}75%{-webkit-transform:translate(0px,0px) translate(0px,0px) translate(0px,5px);-ms-transform:translate(0px,0px) translate(0px,0px) translate(0px,5px);transform:translate(0px,0px) translate(0px,0px) translate(0px,5px);}100%{-webkit-transform:translate(0px,0px) translate(0px,0px) translate(0px,0px);-ms-transform:translate(0px,0px) translate(0px,0px) translate(0px,0px);transform:translate(0px,0px) translate(0px,0px) translate(0px,0px);}}@keyframes animation-htgkrt{0%{-webkit-transform:translate(0px,0px) translate(0px,0px) translate(0px,0px);-ms-transform:translate(0px,0px) translate(0px,0px) translate(0px,0px);transform:translate(0px,0px) translate(0px,0px) translate(0px,0px);}25%{-webkit-transform:translate(0px,0px) translate(0px,0px) translate(0px,5px);-ms-transform:translate(0px,0px) translate(0px,0px) translate(0px,5px);transform:translate(0px,0px) translate(0px,0px) translate(0px,5px);}50%{-webkit-transform:translate(0px,0px) translate(0px,0px) translate(0px,10px);-ms-transform:translate(0px,0px) translate(0px,0px) translate(0px,10px);transform:translate(0px,0px) translate(0px,0px) translate(0px,10px);}75%{-webkit-transform:translate(0px,0px) translate(0px,0px) translate(0px,5px);-ms-transform:translate(0px,0px) translate(0px,0px) translate(0px,5px);transform:translate(0px,0px) translate(0px,0px) translate(0px,5px);}100%{-webkit-transform:translate(0px,0px) translate(0px,0px) translate(0px,0px);-ms-transform:translate(0px,0px) translate(0px,0px) translate(0px,0px);transform:translate(0px,0px) translate(0px,0px) translate(0px,0px);}}@-webkit-keyframes animation-e64et{0%{-webkit-transform:translate(11.329999923706055px,0px) scale(1,0.95) translate(-11.329999923706055px,0px);-ms-transform:translate(11.329999923706055px,0px) scale(1,0.95) translate(-11.329999923706055px,0px);transform:translate(11.329999923706055px,0px) scale(1,0.95) translate(-11.329999923706055px,0px);}25%{-webkit-transform:translate(11.329999923706055px,0px) scale(1,1) translate(-11.329999923706055px,0px);-ms-transform:translate(11.329999923706055px,0px) scale(1,1) translate(-11.329999923706055px,0px);transform:translate(11.329999923706055px,0px) scale(1,1) translate(-11.329999923706055px,0px);}50%{-webkit-transform:translate(11.329999923706055px,0px) scale(1,0.95) translate(-11.329999923706055px,0px);-ms-transform:translate(11.329999923706055px,0px) scale(1,0.95) translate(-11.329999923706055px,0px);transform:translate(11.329999923706055px,0px) scale(1,0.95) translate(-11.329999923706055px,0px);}75%{-webkit-transform:translate(11.329999923706055px,0px) scale(1,0.9) translate(-11.329999923706055px,0px);-ms-transform:translate(11.329999923706055px,0px) scale(1,0.9) translate(-11.329999923706055px,0px);transform:translate(11.329999923706055px,0px) scale(1,0.9) translate(-11.329999923706055px,0px);}100%{-webkit-transform:translate(11.329999923706055px,0px) scale(1,0.95) translate(-11.329999923706055px,0px);-ms-transform:translate(11.329999923706055px,0px) scale(1,0.95) translate(-11.329999923706055px,0px);transform:translate(11.329999923706055px,0px) scale(1,0.95) translate(-11.329999923706055px,0px);}}@keyframes animation-e64et{0%{-webkit-transform:translate(11.329999923706055px,0px) scale(1,0.95) translate(-11.329999923706055px,0px);-ms-transform:translate(11.329999923706055px,0px) scale(1,0.95) translate(-11.329999923706055px,0px);transform:translate(11.329999923706055px,0px) scale(1,0.95) translate(-11.329999923706055px,0px);}25%{-webkit-transform:translate(11.329999923706055px,0px) scale(1,1) translate(-11.329999923706055px,0px);-ms-transform:translate(11.329999923706055px,0px) scale(1,1) translate(-11.329999923706055px,0px);transform:translate(11.329999923706055px,0px) scale(1,1) translate(-11.329999923706055px,0px);}50%{-webkit-transform:translate(11.329999923706055px,0px) scale(1,0.95) translate(-11.329999923706055px,0px);-ms-transform:translate(11.329999923706055px,0px) scale(1,0.95) translate(-11.329999923706055px,0px);transform:translate(11.329999923706055px,0px) scale(1,0.95) translate(-11.329999923706055px,0px);}75%{-webkit-transform:translate(11.329999923706055px,0px) scale(1,0.9) translate(-11.329999923706055px,0px);-ms-transform:translate(11.329999923706055px,0px) scale(1,0.9) translate(-11.329999923706055px,0px);transform:translate(11.329999923706055px,0px) scale(1,0.9) translate(-11.329999923706055px,0px);}100%{-webkit-transform:translate(11.329999923706055px,0px) scale(1,0.95) translate(-11.329999923706055px,0px);-ms-transform:translate(11.329999923706055px,0px) scale(1,0.95) translate(-11.329999923706055px,0px);transform:translate(11.329999923706055px,0px) scale(1,0.95) translate(-11.329999923706055px,0px);}}@-webkit-keyframes animation-9zaqp9{0%{-webkit-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,5px);-ms-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,5px);transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,5px);}25%{-webkit-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,0px);-ms-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,0px);transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,0px);}50%{-webkit-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,5px);-ms-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,5px);transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,5px);}75%{-webkit-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,10px);-ms-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,10px);transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,10px);}100%{-webkit-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,5px);-ms-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,5px);transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,5px);}}@keyframes animation-9zaqp9{0%{-webkit-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,5px);-ms-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,5px);transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,5px);}25%{-webkit-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,0px);-ms-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,0px);transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,0px);}50%{-webkit-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,5px);-ms-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,5px);transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,5px);}75%{-webkit-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,10px);-ms-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,10px);transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,10px);}100%{-webkit-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,5px);-ms-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,5px);transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,5px);}}@-webkit-keyframes animation-16fq4rz{0%{-webkit-transform:translate(22.670000076293945px,0px) scale(1,0.9) translate(-22.670000076293945px,0px);-ms-transform:translate(22.670000076293945px,0px) scale(1,0.9) translate(-22.670000076293945px,0px);transform:translate(22.670000076293945px,0px) scale(1,0.9) translate(-22.670000076293945px,0px);}25%{-webkit-transform:translate(22.670000076293945px,0px) scale(1,0.95) translate(-22.670000076293945px,0px);-ms-transform:translate(22.670000076293945px,0px) scale(1,0.95) translate(-22.670000076293945px,0px);transform:translate(22.670000076293945px,0px) scale(1,0.95) translate(-22.670000076293945px,0px);}50%{-webkit-transform:translate(22.670000076293945px,0px) scale(1,1) translate(-22.670000076293945px,0px);-ms-transform:translate(22.670000076293945px,0px) scale(1,1) translate(-22.670000076293945px,0px);transform:translate(22.670000076293945px,0px) scale(1,1) translate(-22.670000076293945px,0px);}75%{-webkit-transform:translate(22.670000076293945px,0px) scale(1,0.95) translate(-22.670000076293945px,0px);-ms-transform:translate(22.670000076293945px,0px) scale(1,0.95) translate(-22.670000076293945px,0px);transform:translate(22.670000076293945px,0px) scale(1,0.95) translate(-22.670000076293945px,0px);}100%{-webkit-transform:translate(22.670000076293945px,0px) scale(1,0.9) translate(-22.670000076293945px,0px);-ms-transform:translate(22.670000076293945px,0px) scale(1,0.9) translate(-22.670000076293945px,0px);transform:translate(22.670000076293945px,0px) scale(1,0.9) translate(-22.670000076293945px,0px);}}@keyframes animation-16fq4rz{0%{-webkit-transform:translate(22.670000076293945px,0px) scale(1,0.9) translate(-22.670000076293945px,0px);-ms-transform:translate(22.670000076293945px,0px) scale(1,0.9) translate(-22.670000076293945px,0px);transform:translate(22.670000076293945px,0px) scale(1,0.9) translate(-22.670000076293945px,0px);}25%{-webkit-transform:translate(22.670000076293945px,0px) scale(1,0.95) translate(-22.670000076293945px,0px);-ms-transform:translate(22.670000076293945px,0px) scale(1,0.95) translate(-22.670000076293945px,0px);transform:translate(22.670000076293945px,0px) scale(1,0.95) translate(-22.670000076293945px,0px);}50%{-webkit-transform:translate(22.670000076293945px,0px) scale(1,1) translate(-22.670000076293945px,0px);-ms-transform:translate(22.670000076293945px,0px) scale(1,1) translate(-22.670000076293945px,0px);transform:translate(22.670000076293945px,0px) scale(1,1) translate(-22.670000076293945px,0px);}75%{-webkit-transform:translate(22.670000076293945px,0px) scale(1,0.95) translate(-22.670000076293945px,0px);-ms-transform:translate(22.670000076293945px,0px) scale(1,0.95) translate(-22.670000076293945px,0px);transform:translate(22.670000076293945px,0px) scale(1,0.95) translate(-22.670000076293945px,0px);}100%{-webkit-transform:translate(22.670000076293945px,0px) scale(1,0.9) translate(-22.670000076293945px,0px);-ms-transform:translate(22.670000076293945px,0px) scale(1,0.9) translate(-22.670000076293945px,0px);transform:translate(22.670000076293945px,0px) scale(1,0.9) translate(-22.670000076293945px,0px);}}@-webkit-keyframes animation-1kjk1j2{0%{-webkit-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,10px);-ms-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,10px);transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,10px);}25%{-webkit-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,5px);-ms-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,5px);transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,5px);}50%{-webkit-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,0px);-ms-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,0px);transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,0px);}75%{-webkit-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,5px);-ms-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,5px);transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,5px);}100%{-webkit-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,10px);-ms-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,10px);transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,10px);}}@keyframes animation-1kjk1j2{0%{-webkit-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,10px);-ms-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,10px);transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,10px);}25%{-webkit-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,5px);-ms-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,5px);transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,5px);}50%{-webkit-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,0px);-ms-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,0px);transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,0px);}75%{-webkit-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,5px);-ms-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,5px);transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,5px);}100%{-webkit-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,10px);-ms-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,10px);transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,10px);}}@-webkit-keyframes animation-88g286{0%{-webkit-transform:translate(34px,0px) translate(-34px,0px) translate(0px,5px);-ms-transform:translate(34px,0px) translate(-34px,0px) translate(0px,5px);transform:translate(34px,0px) translate(-34px,0px) translate(0px,5px);}25%{-webkit-transform:translate(34px,0px) translate(-34px,0px) translate(0px,10px);-ms-transform:translate(34px,0px) translate(-34px,0px) translate(0px,10px);transform:translate(34px,0px) translate(-34px,0px) translate(0px,10px);}50%{-webkit-transform:translate(34px,0px) translate(-34px,0px) translate(0px,5px);-ms-transform:translate(34px,0px) translate(-34px,0px) translate(0px,5px);transform:translate(34px,0px) translate(-34px,0px) translate(0px,5px);}75%{-webkit-transform:translate(34px,0px) translate(-34px,0px) translate(0px,0px);-ms-transform:translate(34px,0px) translate(-34px,0px) translate(0px,0px);transform:translate(34px,0px) translate(-34px,0px) translate(0px,0px);}100%{-webkit-transform:translate(34px,0px) translate(-34px,0px) translate(0px,5px);-ms-transform:translate(34px,0px) translate(-34px,0px) translate(0px,5px);transform:translate(34px,0px) translate(-34px,0px) translate(0px,5px);}}@keyframes animation-88g286{0%{-webkit-transform:translate(34px,0px) translate(-34px,0px) translate(0px,5px);-ms-transform:translate(34px,0px) translate(-34px,0px) translate(0px,5px);transform:translate(34px,0px) translate(-34px,0px) translate(0px,5px);}25%{-webkit-transform:translate(34px,0px) translate(-34px,0px) translate(0px,10px);-ms-transform:translate(34px,0px) translate(-34px,0px) translate(0px,10px);transform:translate(34px,0px) translate(-34px,0px) translate(0px,10px);}50%{-webkit-transform:translate(34px,0px) translate(-34px,0px) translate(0px,5px);-ms-transform:translate(34px,0px) translate(-34px,0px) translate(0px,5px);transform:translate(34px,0px) translate(-34px,0px) translate(0px,5px);}75%{-webkit-transform:translate(34px,0px) translate(-34px,0px) translate(0px,0px);-ms-transform:translate(34px,0px) translate(-34px,0px) translate(0px,0px);transform:translate(34px,0px) translate(-34px,0px) translate(0px,0px);}100%{-webkit-transform:translate(34px,0px) translate(-34px,0px) translate(0px,5px);-ms-transform:translate(34px,0px) translate(-34px,0px) translate(0px,5px);transform:translate(34px,0px) translate(-34px,0px) translate(0px,5px);}}@-webkit-keyframes animation-12yx39b{0%{-webkit-transform:translate(34px,0px) scale(1,0.95) translate(-34px,0px);-ms-transform:translate(34px,0px) scale(1,0.95) translate(-34px,0px);transform:translate(34px,0px) scale(1,0.95) translate(-34px,0px);}25%{-webkit-transform:translate(34px,0px) scale(1,0.9) translate(-34px,0px);-ms-transform:translate(34px,0px) scale(1,0.9) translate(-34px,0px);transform:translate(34px,0px) scale(1,0.9) translate(-34px,0px);}50%{-webkit-transform:translate(34px,0px) scale(1,0.95) translate(-34px,0px);-ms-transform:translate(34px,0px) scale(1,0.95) translate(-34px,0px);transform:translate(34px,0px) scale(1,0.95) translate(-34px,0px);}75%{-webkit-transform:translate(34px,0px) scale(1,1) translate(-34px,0px);-ms-transform:translate(34px,0px) scale(1,1) translate(-34px,0px);transform:translate(34px,0px) scale(1,1) translate(-34px,0px);}100%{-webkit-transform:translate(34px,0px) scale(1,0.95) translate(-34px,0px);-ms-transform:translate(34px,0px) scale(1,0.95) translate(-34px,0px);transform:translate(34px,0px) scale(1,0.95) translate(-34px,0px);}}@keyframes animation-12yx39b{0%{-webkit-transform:translate(34px,0px) scale(1,0.95) translate(-34px,0px);-ms-transform:translate(34px,0px) scale(1,0.95) translate(-34px,0px);transform:translate(34px,0px) scale(1,0.95) translate(-34px,0px);}25%{-webkit-transform:translate(34px,0px) scale(1,0.9) translate(-34px,0px);-ms-transform:translate(34px,0px) scale(1,0.9) translate(-34px,0px);transform:translate(34px,0px) scale(1,0.9) translate(-34px,0px);}50%{-webkit-transform:translate(34px,0px) scale(1,0.95) translate(-34px,0px);-ms-transform:translate(34px,0px) scale(1,0.95) translate(-34px,0px);transform:translate(34px,0px) scale(1,0.95) translate(-34px,0px);}75%{-webkit-transform:translate(34px,0px) scale(1,1) translate(-34px,0px);-ms-transform:translate(34px,0px) scale(1,1) translate(-34px,0px);transform:translate(34px,0px) scale(1,1) translate(-34px,0px);}100%{-webkit-transform:translate(34px,0px) scale(1,0.95) translate(-34px,0px);-ms-transform:translate(34px,0px) scale(1,0.95) translate(-34px,0px);transform:translate(34px,0px) scale(1,0.95) translate(-34px,0px);}}@-webkit-keyframes animation-4hu8jm{0%{-webkit-transform:translate(0px,0px) scale(1,0.85) translate(0px,0px);-ms-transform:translate(0px,0px) scale(1,0.85) translate(0px,0px);transform:translate(0px,0px) scale(1,0.85) translate(0px,0px);}33.33%{-webkit-transform:translate(0px,0px) scale(1,0.9) translate(0px,0px);-ms-transform:translate(0px,0px) scale(1,0.9) translate(0px,0px);transform:translate(0px,0px) scale(1,0.9) translate(0px,0px);}100%{-webkit-transform:translate(0px,0px) scale(1,0.1) translate(0px,0px);-ms-transform:translate(0px,0px) scale(1,0.1) translate(0px,0px);transform:translate(0px,0px) scale(1,0.1) translate(0px,0px);}}@keyframes animation-4hu8jm{0%{-webkit-transform:translate(0px,0px) scale(1,0.85) translate(0px,0px);-ms-transform:translate(0px,0px) scale(1,0.85) translate(0px,0px);transform:translate(0px,0px) scale(1,0.85) translate(0px,0px);}33.33%{-webkit-transform:translate(0px,0px) scale(1,0.9) translate(0px,0px);-ms-transform:translate(0px,0px) scale(1,0.9) translate(0px,0px);transform:translate(0px,0px) scale(1,0.9) translate(0px,0px);}100%{-webkit-transform:translate(0px,0px) scale(1,0.1) translate(0px,0px);-ms-transform:translate(0px,0px) scale(1,0.1) translate(0px,0px);transform:translate(0px,0px) scale(1,0.1) translate(0px,0px);}}@-webkit-keyframes animation-1wqz2f4{0%{-webkit-transform:translate(0px,0px) translate(0px,0px) translate(0px,15px);-ms-transform:translate(0px,0px) translate(0px,0px) translate(0px,15px);transform:translate(0px,0px) translate(0px,0px) translate(0px,15px);}33.33%{-webkit-transform:translate(0px,0px) translate(0px,0px) translate(0px,10px);-ms-transform:translate(0px,0px) translate(0px,0px) translate(0px,10px);transform:translate(0px,0px) translate(0px,0px) translate(0px,10px);}100%{-webkit-transform:translate(0px,0px) translate(0px,0px) translate(0px,30px);-ms-transform:translate(0px,0px) translate(0px,0px) translate(0px,30px);transform:translate(0px,0px) translate(0px,0px) translate(0px,30px);}}@keyframes animation-1wqz2f4{0%{-webkit-transform:translate(0px,0px) translate(0px,0px) translate(0px,15px);-ms-transform:translate(0px,0px) translate(0px,0px) translate(0px,15px);transform:translate(0px,0px) translate(0px,0px) translate(0px,15px);}33.33%{-webkit-transform:translate(0px,0px) translate(0px,0px) translate(0px,10px);-ms-transform:translate(0px,0px) translate(0px,0px) translate(0px,10px);transform:translate(0px,0px) translate(0px,0px) translate(0px,10px);}100%{-webkit-transform:translate(0px,0px) translate(0px,0px) translate(0px,30px);-ms-transform:translate(0px,0px) translate(0px,0px) translate(0px,30px);transform:translate(0px,0px) translate(0px,0px) translate(0px,30px);}}@-webkit-keyframes animation-yl3z84{0%{-webkit-transform:translate(11.329999923706055px,0px) scale(1,0.85) translate(-11.329999923706055px,0px);-ms-transform:translate(11.329999923706055px,0px) scale(1,0.85) translate(-11.329999923706055px,0px);transform:translate(11.329999923706055px,0px) scale(1,0.85) translate(-11.329999923706055px,0px);}33.33%{-webkit-transform:translate(11.329999923706055px,0px) scale(1,0.9) translate(-11.329999923706055px,0px);-ms-transform:translate(11.329999923706055px,0px) scale(1,0.9) translate(-11.329999923706055px,0px);transform:translate(11.329999923706055px,0px) scale(1,0.9) translate(-11.329999923706055px,0px);}100%{-webkit-transform:translate(11.329999923706055px,0px) scale(1,0.1) translate(-11.329999923706055px,0px);-ms-transform:translate(11.329999923706055px,0px) scale(1,0.1) translate(-11.329999923706055px,0px);transform:translate(11.329999923706055px,0px) scale(1,0.1) translate(-11.329999923706055px,0px);}}@keyframes animation-yl3z84{0%{-webkit-transform:translate(11.329999923706055px,0px) scale(1,0.85) translate(-11.329999923706055px,0px);-ms-transform:translate(11.329999923706055px,0px) scale(1,0.85) translate(-11.329999923706055px,0px);transform:translate(11.329999923706055px,0px) scale(1,0.85) translate(-11.329999923706055px,0px);}33.33%{-webkit-transform:translate(11.329999923706055px,0px) scale(1,0.9) translate(-11.329999923706055px,0px);-ms-transform:translate(11.329999923706055px,0px) scale(1,0.9) translate(-11.329999923706055px,0px);transform:translate(11.329999923706055px,0px) scale(1,0.9) translate(-11.329999923706055px,0px);}100%{-webkit-transform:translate(11.329999923706055px,0px) scale(1,0.1) translate(-11.329999923706055px,0px);-ms-transform:translate(11.329999923706055px,0px) scale(1,0.1) translate(-11.329999923706055px,0px);transform:translate(11.329999923706055px,0px) scale(1,0.1) translate(-11.329999923706055px,0px);}}@-webkit-keyframes animation-1q3gjvc{0%{-webkit-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,15px);-ms-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,15px);transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,15px);}33.33%{-webkit-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,10px);-ms-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,10px);transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,10px);}100%{-webkit-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,30px);-ms-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,30px);transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,30px);}}@keyframes animation-1q3gjvc{0%{-webkit-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,15px);-ms-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,15px);transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,15px);}33.33%{-webkit-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,10px);-ms-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,10px);transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,10px);}100%{-webkit-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,30px);-ms-transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,30px);transform:translate(11.329999923706055px,0px) translate(-11.329999923706055px,0px) translate(0px,30px);}}@-webkit-keyframes animation-nc39ev{0%{-webkit-transform:translate(22.670000076293945px,0px) scale(1,0.85) translate(-22.670000076293945px,0px);-ms-transform:translate(22.670000076293945px,0px) scale(1,0.85) translate(-22.670000076293945px,0px);transform:translate(22.670000076293945px,0px) scale(1,0.85) translate(-22.670000076293945px,0px);}33.33%{-webkit-transform:translate(22.670000076293945px,0px) scale(1,0.9) translate(-22.670000076293945px,0px);-ms-transform:translate(22.670000076293945px,0px) scale(1,0.9) translate(-22.670000076293945px,0px);transform:translate(22.670000076293945px,0px) scale(1,0.9) translate(-22.670000076293945px,0px);}100%{-webkit-transform:translate(22.670000076293945px,0px) scale(1,0.1) translate(-22.670000076293945px,0px);-ms-transform:translate(22.670000076293945px,0px) scale(1,0.1) translate(-22.670000076293945px,0px);transform:translate(22.670000076293945px,0px) scale(1,0.1) translate(-22.670000076293945px,0px);}}@keyframes animation-nc39ev{0%{-webkit-transform:translate(22.670000076293945px,0px) scale(1,0.85) translate(-22.670000076293945px,0px);-ms-transform:translate(22.670000076293945px,0px) scale(1,0.85) translate(-22.670000076293945px,0px);transform:translate(22.670000076293945px,0px) scale(1,0.85) translate(-22.670000076293945px,0px);}33.33%{-webkit-transform:translate(22.670000076293945px,0px) scale(1,0.9) translate(-22.670000076293945px,0px);-ms-transform:translate(22.670000076293945px,0px) scale(1,0.9) translate(-22.670000076293945px,0px);transform:translate(22.670000076293945px,0px) scale(1,0.9) translate(-22.670000076293945px,0px);}100%{-webkit-transform:translate(22.670000076293945px,0px) scale(1,0.1) translate(-22.670000076293945px,0px);-ms-transform:translate(22.670000076293945px,0px) scale(1,0.1) translate(-22.670000076293945px,0px);transform:translate(22.670000076293945px,0px) scale(1,0.1) translate(-22.670000076293945px,0px);}}@-webkit-keyframes animation-amd09y{0%{-webkit-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,15px);-ms-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,15px);transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,15px);}33.33%{-webkit-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,10px);-ms-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,10px);transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,10px);}100%{-webkit-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,30px);-ms-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,30px);transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,30px);}}@keyframes animation-amd09y{0%{-webkit-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,15px);-ms-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,15px);transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,15px);}33.33%{-webkit-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,10px);-ms-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,10px);transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,10px);}100%{-webkit-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,30px);-ms-transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,30px);transform:translate(22.670000076293945px,0px) translate(-22.670000076293945px,0px) translate(0px,30px);}}@-webkit-keyframes animation-ru1vxe{0%{-webkit-transform:translate(34px,0px) translate(-34px,0px) translate(0px,15px);-ms-transform:translate(34px,0px) translate(-34px,0px) translate(0px,15px);transform:translate(34px,0px) translate(-34px,0px) translate(0px,15px);}33.33%{-webkit-transform:translate(34px,0px) translate(-34px,0px) translate(0px,10px);-ms-transform:translate(34px,0px) translate(-34px,0px) translate(0px,10px);transform:translate(34px,0px) translate(-34px,0px) translate(0px,10px);}100%{-webkit-transform:translate(34px,0px) translate(-34px,0px) translate(0px,30px);-ms-transform:translate(34px,0px) translate(-34px,0px) translate(0px,30px);transform:translate(34px,0px) translate(-34px,0px) translate(0px,30px);}}@keyframes animation-ru1vxe{0%{-webkit-transform:translate(34px,0px) translate(-34px,0px) translate(0px,15px);-ms-transform:translate(34px,0px) translate(-34px,0px) translate(0px,15px);transform:translate(34px,0px) translate(-34px,0px) translate(0px,15px);}33.33%{-webkit-transform:translate(34px,0px) translate(-34px,0px) translate(0px,10px);-ms-transform:translate(34px,0px) translate(-34px,0px) translate(0px,10px);transform:translate(34px,0px) translate(-34px,0px) translate(0px,10px);}100%{-webkit-transform:translate(34px,0px) translate(-34px,0px) translate(0px,30px);-ms-transform:translate(34px,0px) translate(-34px,0px) translate(0px,30px);transform:translate(34px,0px) translate(-34px,0px) translate(0px,30px);}}@-webkit-keyframes animation-ajnadh{0%{-webkit-transform:translate(34px,0px) scale(1,0.85) translate(-34px,0px);-ms-transform:translate(34px,0px) scale(1,0.85) translate(-34px,0px);transform:translate(34px,0px) scale(1,0.85) translate(-34px,0px);}33.33%{-webkit-transform:translate(34px,0px) scale(1,0.9) translate(-34px,0px);-ms-transform:translate(34px,0px) scale(1,0.9) translate(-34px,0px);transform:translate(34px,0px) scale(1,0.9) translate(-34px,0px);}100%{-webkit-transform:translate(34px,0px) scale(1,0.1) translate(-34px,0px);-ms-transform:translate(34px,0px) scale(1,0.1) translate(-34px,0px);transform:translate(34px,0px) scale(1,0.1) translate(-34px,0px);}}@keyframes animation-ajnadh{0%{-webkit-transform:translate(34px,0px) scale(1,0.85) translate(-34px,0px);-ms-transform:translate(34px,0px) scale(1,0.85) translate(-34px,0px);transform:translate(34px,0px) scale(1,0.85) translate(-34px,0px);}33.33%{-webkit-transform:translate(34px,0px) scale(1,0.9) translate(-34px,0px);-ms-transform:translate(34px,0px) scale(1,0.9) translate(-34px,0px);transform:translate(34px,0px) scale(1,0.9) translate(-34px,0px);}100%{-webkit-transform:translate(34px,0px) scale(1,0.1) translate(-34px,0px);-ms-transform:translate(34px,0px) scale(1,0.1) translate(-34px,0px);transform:translate(34px,0px) scale(1,0.1) translate(-34px,0px);}}.css-1baulvz{display:inline-block;}.css-79elbk{position:relative;}.css-v89234{overflow:hidden;height:100%;}@media print{.css-13lpfd6{margin-bottom:15px;}}@media (min-width:1024px){.css-13lpfd6{position:fixed;width:100%;top:0;left:0;z-index:200;background-color:#fff;border-bottom:none;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}}@media (min-width:1024px){.css-1bymuyk{position:relative;border-bottom:1px solid #e2e2e2;}}.css-1waixk9{background:#fff;border-bottom:1px solid #e2e2e2;height:36px;padding:8px 15px 3px;position:relative;}@media (min-width:740px){.css-1waixk9{background:#fff;padding:10px 15px 6px;}}@media (min-width:1024px){.css-1waixk9{background:transparent;border-bottom:0;padding:4px 15px 2px;}}@media print{.css-1waixk9{background:transparent;}}@media (min-width:740px){}@media (min-width:1024px){.css-1waixk9{margin:0 auto;max-width:1605px;}}.css-1f7ibof{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:space-around;-webkit-justify-content:space-around;-ms-flex-pack:space-around;justify-content:space-around;left:10px;position:absolute;}@media (min-width:1024px){}@media print{.css-1f7ibof{display:none;}}.css-l2ztic{border-radius:3px;cursor:pointer;font-family:nyt-franklin,helvetica,arial,sans-serif;-webkit-transition:ease 0.6s;transition:ease 0.6s;background-color:transparent;color:#000;font-size:11px;font-weight:700;-webkit-letter-spacing:0.02em;-moz-letter-spacing:0.02em;-ms-letter-spacing:0.02em;letter-spacing:0.02em;padding:7px 9px 9px;border:0;padding:8px 9px;text-transform:uppercase;}.css-l2ztic.hidden{opacity:0;visibility:hidden;}.css-l2ztic.hidden:focus{opacity:1;}.css-l2ztic::-moz-focus-inner{padding:0;border:0;}.css-l2ztic:-moz-focusring{outline:1px dotted;}.css-l2ztic:disabled,.css-l2ztic.disabled{opacity:0.5;cursor:default;}.css-l2ztic:active,.css-l2ztic.active{background-color:#f7f7f7;}@media (min-width:740px){.css-l2ztic:hover{background-color:#f7f7f7;}}@media (min-width:1024px){.css-l2ztic{display:none;}}.css-19lv58h{border-radius:3px;cursor:pointer;font-family:nyt-franklin,helvetica,arial,sans-serif;-webkit-transition:ease 0.6s;transition:ease 0.6s;-webkit-appearance:button;-moz-appearance:button;appearance:button;background-color:#fff;border:1px solid #ebebeb;color:#333;display:inline-block;font-size:11px;font-weight:500;-webkit-letter-spacing:0.02em;-moz-letter-spacing:0.02em;-ms-letter-spacing:0.02em;letter-spacing:0.02em;line-height:13px;margin:0;padding:8px 9px;text-transform:uppercase;vertical-align:middle;display:none;}.css-19lv58h::-moz-focus-inner{padding:0;border:0;}.css-19lv58h:-moz-focusring{outline:1px dotted;}.css-19lv58h:disabled,.css-19lv58h.disabled{opacity:0.5;cursor:default;}.css-19lv58h:active,.css-19lv58h.active{background-color:#f7f7f7;}@media (min-width:740px){.css-19lv58h:hover{background-color:#f7f7f7;}}@media (min-width:1024px){.css-19lv58h{border:0;display:inline-block;margin-right:8px;}}.css-mgtjo2{border-radius:3px;cursor:pointer;font-family:nyt-franklin,helvetica,arial,sans-serif;-webkit-transition:ease 0.6s;transition:ease 0.6s;background-color:transparent;color:#000;font-size:11px;font-weight:700;-webkit-letter-spacing:0.02em;-moz-letter-spacing:0.02em;-ms-letter-spacing:0.02em;letter-spacing:0.02em;padding:7px 9px 9px;border:0;}.css-mgtjo2::-moz-focus-inner{padding:0;border:0;}.css-mgtjo2:-moz-focusring{outline:1px dotted;}.css-mgtjo2:disabled,.css-mgtjo2.disabled{opacity:0.5;cursor:default;}.css-mgtjo2:active,.css-mgtjo2.active{background-color:#f7f7f7;}@media (min-width:740px){.css-mgtjo2:hover{background-color:#f7f7f7;}}.css-mgtjo2.activeSearchButton{background-color:#f7f7f7;}@media (min-width:1024px){.css-mgtjo2{padding:8px 9px 9px;}}.css-1wr3we4{display:none;}@media (min-width:1024px){.css-1wr3we4{display:block;position:absolute;left:105px;line-height:19px;top:10px;}}.css-10698na{text-align:center;}@media (min-width:740px){.css-10698na{padding-top:0;}}@media (min-width:1024px){}@media print{.css-10698na a[href]::after{content:'';}.css-10698na svg{fill:black;}}.css-nhjhh0{display:block;width:189px;height:26px;margin:5px auto 0;}@media (min-width:740px){.css-nhjhh0{width:225px;height:31px;margin:4px auto 0;}}@media (min-width:1024px){.css-nhjhh0{width:195px;height:26px;margin:6px auto 0;}}.css-o2c64h{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:space-around;-webkit-justify-content:space-around;-ms-flex-pack:space-around;justify-content:space-around;position:absolute;right:10px;top:9px;}@media (min-width:1024px){.css-o2c64h{top:4px;}}@media print{.css-o2c64h{display:none;}}.css-1bnxwmn{border-radius:3px;cursor:pointer;font-family:nyt-franklin,helvetica,arial,sans-serif;-webkit-transition:ease 0.6s;transition:ease 0.6s;background-color:#6288a5;border:1px solid #326891;color:#fff;font-size:11px;font-weight:700;-webkit-letter-spacing:0.05em;-moz-letter-spacing:0.05em;-ms-letter-spacing:0.05em;letter-spacing:0.05em;line-height:11px;padding:8px 9px 6px;text-transform:uppercase;}.css-1bnxwmn::-moz-focus-inner{padding:0;border:0;}.css-1bnxwmn:-moz-focusring{outline:1px dotted;}.css-1bnxwmn:disabled,.css-1bnxwmn.disabled{opacity:0.5;cursor:default;}@media (min-width:740px){.css-1bnxwmn:hover{background-color:#326891;}}@media (min-width:1024px){.css-1bnxwmn{padding:11px 12px 8px;}}.css-1bnxwmn:hover{border:1px solid #326891;}.css-1nkps6a{height:100%;display:none;}.css-1i8g3m4{border-radius:3px;cursor:pointer;font-family:nyt-franklin,helvetica,arial,sans-serif;-webkit-transition:ease 0.6s;transition:ease 0.6s;background-color:transparent;color:#000;font-size:11px;font-weight:700;-webkit-letter-spacing:0.02em;-moz-letter-spacing:0.02em;-ms-letter-spacing:0.02em;letter-spacing:0.02em;padding:7px 9px 9px;border:0;display:block;}.css-1i8g3m4.hidden{opacity:0;visibility:hidden;}.css-1i8g3m4.hidden:focus{opacity:1;}.css-1i8g3m4::-moz-focus-inner{padding:0;border:0;}.css-1i8g3m4:-moz-focusring{outline:1px dotted;}.css-1i8g3m4:disabled,.css-1i8g3m4.disabled{opacity:0.5;cursor:default;}.css-1i8g3m4:active,.css-1i8g3m4.active{background-color:#f7f7f7;}@media (min-width:740px){.css-1i8g3m4:hover{background-color:#f7f7f7;}}@media (min-width:740px){.css-1i8g3m4{border:none;line-height:13px;padding:9px 9px 12px;}}@media (min-width:1024px){.css-1i8g3m4{display:none;}}@media (min-width:1150px){}.css-3qijnq{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;font-family:nyt-franklin,helvetica,arial,sans-serif;font-size:11px;-webkit-box-pack:space-around;-webkit-justify-content:space-around;-ms-flex-pack:space-around;justify-content:space-around;padding:13px 20px 12px;}@media (min-width:740px){.css-3qijnq{position:relative;}}@media (min-width:1024px){.css-3qijnq{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;border:none;padding:0;height:0;-webkit-transform:translateY(42px);-ms-transform:translateY(42px);transform:translateY(42px);}}@media print{.css-3qijnq{display:none;}}.css-uqyvli{color:#121212;font-size:13px;font-family:nyt-franklin,helvetica,arial,sans-serif;display:none;width:auto;}@media (min-width:740px){.css-uqyvli{text-align:center;width:100%;}}@media (min-width:1024px){.css-uqyvli{font-size:12px;margin-bottom:10px;width:auto;}}.css-1uqjmks{color:#121212;font-size:12px;font-family:nyt-franklin,helvetica,arial,sans-serif;font-weight:500;display:none;}@media (min-width:740px){.css-1uqjmks{margin:0;position:absolute;left:20px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;top:0;bottom:0;}}@media (min-width:1024px){.css-1uqjmks{display:none;}}.css-1bvtpon{display:none;}@media (min-width:1024px){}.css-l72opv{color:#999;display:inline;margin-right:16px;padding:10px 0;width:100%;position:relative;right:3px;}.css-l72opv a{-webkit-text-decoration:none;text-decoration:none;}@media (max-width:659px){.css-l72opv:nth-of-type(3),.css-l72opv:nth-of-type(4){display:none;}}.css-l72opv:last-of-type{margin-right:0;}.css-4skfbu{color:#999;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;font-family:nyt-franklin,helvetica,arial,sans-serif;font-size:17px;margin-bottom:5px;margin-bottom:0;}@media print{.css-4skfbu{display:none;}}.css-1fcn4th{color:#999;display:inline;margin-right:16px;padding:10px 0;width:100%;}.css-1fcn4th a{-webkit-text-decoration:none;text-decoration:none;}@media (max-width:659px){.css-1fcn4th:nth-of-type(3),.css-1fcn4th:nth-of-type(4){display:none;}}.css-1fcn4th:last-of-type{margin-right:0;}@media (max-width:1150px){.css-1fcn4th:nth-of-type(1),.css-1fcn4th:nth-of-type(2),.css-1fcn4th:nth-of-type(3){display:none;}}.css-13zu7ev{display:inline-block;height:15px;vertical-align:middle;width:15px;background-color:#eee;border:1px #eee solid;border-radius:100%;padding:5px;width:14px;height:14px;}.css-13zu7ev.facebook{background-image:url(/vi-assets/static-assets/icon-fb-circle-2ec7780140bd9e8e8398bbcdf5661569.svg);}.css-13zu7ev.twitter{background-image:url(/vi-assets/static-assets/icon-twitter-circle-fc7c2748f5613c68963a0df203bffc05.svg);}.css-13zu7ev.email{background-image:url(/vi-assets/static-assets/icon-share-email-circle-a2acce7e23b21d47bb606b628a6c7e34.svg);}.css-13zu7ev.link{background-image:url(/vi-assets/static-assets/icon-share-permalink-circle-3ff3876a106221ee493d9542c0895863.svg);}.css-13zu7ev.linkedin{background-image:url(/vi-assets/static-assets/icon-share-linkedin-circle-4d7bcf236c5f3a086738746f41f46f7b.svg);}.css-13zu7ev.whatsapp{background-image:url(/vi-assets/static-assets/icon-whatsapp-video-a9503bf2b3c73111106c496d3ebc8c67.svg);}.css-13zu7ev.reddit{background-image:url(/vi-assets/static-assets/icon-share-reddit-f882338200fd1971b767627fa5f60124.svg);}.css-13zu7ev:hover{background-color:#fff;border:1px solid #ccc;}.css-f7l8cz{display:inline-block;height:15px;vertical-align:middle;width:15px;bottom:5px;position:relative;width:14px;height:14px;bottom:4px;}.css-f7l8cz.facebook{background-image:url(/vi-assets/static-assets/icon-fb-circle-2ec7780140bd9e8e8398bbcdf5661569.svg);}.css-f7l8cz.twitter{background-image:url(/vi-assets/static-assets/icon-twitter-circle-fc7c2748f5613c68963a0df203bffc05.svg);}.css-f7l8cz.email{background-image:url(/vi-assets/static-assets/icon-share-email-circle-a2acce7e23b21d47bb606b628a6c7e34.svg);}.css-f7l8cz.link{background-image:url(/vi-assets/static-assets/icon-share-permalink-circle-3ff3876a106221ee493d9542c0895863.svg);}.css-f7l8cz.linkedin{background-image:url(/vi-assets/static-assets/icon-share-linkedin-circle-4d7bcf236c5f3a086738746f41f46f7b.svg);}.css-f7l8cz.whatsapp{background-image:url(/vi-assets/static-assets/icon-whatsapp-video-a9503bf2b3c73111106c496d3ebc8c67.svg);}.css-f7l8cz.reddit{background-image:url(/vi-assets/static-assets/icon-share-reddit-f882338200fd1971b767627fa5f60124.svg);}.css-16ogagc{background:transparent;display:inline-block;height:20px;width:20px;background-color:#eee;border:1px #eee solid;border-radius:100%;padding:5px;width:27px;height:27px;}.css-16ogagc.hidden{opacity:0;visibility:hidden;}.css-16ogagc.hidden:focus{opacity:1;}.css-16ogagc:hover{background-color:#fff;border:1px solid #ccc;}.css-1vxca1d{position:relative;margin:0 auto;}@media (min-width:600px){.css-1vxca1d{margin:0 auto 20px;}}.css-1vxca1d .relatedcoverage + .recirculation{margin-top:20px;}.css-1vxca1d .wrap + .recirculation{margin-top:20px;}@media (min-width:1024px){.css-1vxca1d{padding-top:40px;}}.css-17ai7jg{color:#666;font-family:nyt-imperial,georgia,'times new roman',times,serif;margin:10px 20px 0;text-align:left;}.css-17ai7jg a{color:#326891;-webkit-text-decoration:none;text-decoration:none;}.css-17ai7jg a:hover,.css-17ai7jg a:focus{-webkit-text-decoration:underline;text-decoration:underline;}@media (min-width:600px){.css-17ai7jg{margin-left:0;}}.sizeSmall .css-17ai7jg{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;width:calc(50% - 15px);margin:auto 0 15px 15px;}@media (min-width:600px){.sizeSmall .css-17ai7jg{width:260px;margin-left:15px;}}@media (min-width:740px){.sizeSmall .css-17ai7jg{margin-left:15px;}}@media (min-width:1440px){.sizeSmall .css-17ai7jg{width:330px;margin-left:15px;}}@media (max-width:600px){.sizeSmall .css-17ai7jg{margin:auto 0 0 15px;}}.sizeSmall.sizeSmallNoCaption .css-17ai7jg{margin-left:auto;margin-right:auto;margin-top:10px;}.sizeMedium .css-17ai7jg{max-width:900px;}.sizeMedium.layoutVertical.verticalVideo .css-17ai7jg{margin-left:0;margin-right:0;}@media (min-width:600px){.sizeMedium.layoutVertical.verticalVideo .css-17ai7jg{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;width:255px;margin:auto 0 15px 15px;}}@media (min-width:1440px){.sizeMedium.layoutVertical.verticalVideo .css-17ai7jg{width:325px;}}.sizeLarge .css-17ai7jg{max-width:none;}@media (min-width:600px){.sizeLarge .css-17ai7jg{margin-left:20px;}}@media (min-width:740px){.sizeLarge .css-17ai7jg{margin-left:20px;max-width:900px;}}@media (min-width:1024px){.sizeLarge .css-17ai7jg{margin-left:0;max-width:720px;}}@media (min-width:1440px){.sizeLarge .css-17ai7jg{margin-left:0;max-width:900px;}}@media (min-width:740px){.sizeLarge.layoutVertical .css-17ai7jg{margin-left:0;}}.sizeFull .css-17ai7jg{margin-left:20px;}@media (min-width:600px){.sizeFull .css-17ai7jg{max-width:900px;}}@media (min-width:740px){.sizeFull .css-17ai7jg{max-width:900px;}}@media (min-width:1440px){.sizeFull .css-17ai7jg{max-width:900px;}}@media print{.css-17ai7jg{display:none;}}.css-8i9d0s{margin-right:7px;color:#666;font-family:nyt-imperial,georgia,'times new roman',times,serif;font-size:0.875rem;line-height:1.125rem;}@media (min-width:740px){.css-8i9d0s{font-size:0.9375rem;line-height:1.25rem;}}.css-8i9d0s strong{font-weight:700;}.css-8i9d0s em{font-style:italic;}.css-8i9d0s a{color:#326891;}.css-8i9d0s a:visited{color:#326891;}.css-xt80pu{width:100%;width:calc(100% - 40px);max-width:600px;margin-left:20px;margin-right:20px;}@media (min-width:600px){.css-xt80pu{margin-left:auto;margin-right:auto;}}@media (min-width:1024px){.css-xt80pu{width:600px;}}@media (min-width:1440px){.css-xt80pu{width:600px;max-width:600px;}}@media print{.css-xt80pu{margin-left:0;margin-right:0;width:100%;max-width:100%;}}.css-17xsp6v{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:15px;width:100%;}.css-16vrk19{display:inline-block;-webkit-letter-spacing:0.02em;-moz-letter-spacing:0.02em;-ms-letter-spacing:0.02em;letter-spacing:0.02em;font-size:0.875rem;line-height:1.125rem;margin:0;font-family:nyt-franklin,helvetica,arial,sans-serif;font-weight:700;color:#121212;}@media (min-width:740px){.css-16vrk19{font-size:0.9375rem;line-height:1.25rem;}}.css-1riqqik{display:inline;color:#333;}.css-1riqqik span{-webkit-text-decoration:underline;text-decoration:underline;-webkit-text-decoration-color:#ccc;text-decoration-color:#ccc;}.css-1riqqik span:hover,.css-1riqqik span:focus{-webkit-text-decoration:none;text-decoration:none;}.css-1w5cs23{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}.css-1w5cs23 li{list-style:none;}.css-qddhf4{font-family:nyt-franklin,helvetica,arial,sans-serif;font-weight:500;color:#333;-webkit-letter-spacing:0.02em;-moz-letter-spacing:0.02em;-ms-letter-spacing:0.02em;letter-spacing:0.02em;font-size:0.8125rem;line-height:1.125rem;margin-bottom:1rem;margin-bottom:0;margin-top:0;}.css-4brsb6{display:inline-block;height:15px;vertical-align:middle;width:15px;background-color:#eee;border:1px #eee solid;border-radius:100%;padding:5px;width:15px;height:15px;}.css-4brsb6.facebook{background-image:url(/vi-assets/static-assets/icon-fb-circle-2ec7780140bd9e8e8398bbcdf5661569.svg);}.css-4brsb6.twitter{background-image:url(/vi-assets/static-assets/icon-twitter-circle-fc7c2748f5613c68963a0df203bffc05.svg);}.css-4brsb6.email{background-image:url(/vi-assets/static-assets/icon-share-email-circle-a2acce7e23b21d47bb606b628a6c7e34.svg);}.css-4brsb6.link{background-image:url(/vi-assets/static-assets/icon-share-permalink-circle-3ff3876a106221ee493d9542c0895863.svg);}.css-4brsb6.linkedin{background-image:url(/vi-assets/static-assets/icon-share-linkedin-circle-4d7bcf236c5f3a086738746f41f46f7b.svg);}.css-4brsb6.whatsapp{background-image:url(/vi-assets/static-assets/icon-whatsapp-video-a9503bf2b3c73111106c496d3ebc8c67.svg);}.css-4brsb6.reddit{background-image:url(/vi-assets/static-assets/icon-share-reddit-f882338200fd1971b767627fa5f60124.svg);}.css-4brsb6:hover{background-color:#fff;border:1px solid #ccc;}.css-uhuo44{display:inline-block;height:15px;vertical-align:middle;width:15px;bottom:5px;position:relative;width:15px;height:15px;bottom:4px;}.css-uhuo44.facebook{background-image:url(/vi-assets/static-assets/icon-fb-circle-2ec7780140bd9e8e8398bbcdf5661569.svg);}.css-uhuo44.twitter{background-image:url(/vi-assets/static-assets/icon-twitter-circle-fc7c2748f5613c68963a0df203bffc05.svg);}.css-uhuo44.email{background-image:url(/vi-assets/static-assets/icon-share-email-circle-a2acce7e23b21d47bb606b628a6c7e34.svg);}.css-uhuo44.link{background-image:url(/vi-assets/static-assets/icon-share-permalink-circle-3ff3876a106221ee493d9542c0895863.svg);}.css-uhuo44.linkedin{background-image:url(/vi-assets/static-assets/icon-share-linkedin-circle-4d7bcf236c5f3a086738746f41f46f7b.svg);}.css-uhuo44.whatsapp{background-image:url(/vi-assets/static-assets/icon-whatsapp-video-a9503bf2b3c73111106c496d3ebc8c67.svg);}.css-uhuo44.reddit{background-image:url(/vi-assets/static-assets/icon-share-reddit-f882338200fd1971b767627fa5f60124.svg);}.css-1ygdjhk{margin-bottom:0.75rem;font-family:nyt-imperial,georgia,'times new roman',times,serif;font-size:1.0625rem;line-height:1.5rem;margin-left:20px;margin-right:20px;width:calc(100% - 40px);max-width:600px;}@media (min-width:740px){.css-1ygdjhk{margin-bottom:1.25rem;}}.css-1ygdjhk .css-1g7m0tk{-webkit-text-decoration:underline;text-decoration:underline;}.css-1ygdjhk .css-1g7m0tk:hover,.css-1ygdjhk .css-1g7m0tk:focus{-webkit-text-decoration:none;text-decoration:none;}@media (min-width:740px){.css-1ygdjhk{font-size:1.1875rem;line-height:1.8125rem;}}.css-1ygdjhk:first-child{margin-top:0;}.css-1ygdjhk:last-child{margin-bottom:0;}@media (min-width:600px){.css-1ygdjhk{margin-left:auto;margin-right:auto;}}@media (min-width:1024px){.css-1ygdjhk{margin-left:0;margin-right:0;width:100%;max-width:100%;}}@media print{.css-1ygdjhk{margin-left:0;margin-right:0;width:100%;max-width:100%;}}.css-1505tg{color:#121212;font-family:nyt-cheltenham,georgia,'times new roman',times,serif;font-weight:600;font-size:1.625rem;line-height:1.875rem;margin-left:20px;margin-right:20px;width:calc(100% - 40px);max-width:600px;margin:30px 20px 0.75rem;text-align:left;}@media (min-width:740px){.css-1505tg{font-size:1.75rem;line-height:2.125rem;}}.css-1505tg .css-1g7m0tk{border-bottom:1px solid #6288a5;-webkit-text-decoration:none;text-decoration:none;}.css-1505tg .css-1g7m0tk:hover,.css-1505tg .css-1g7m0tk:focus{border-bottom:1px solid #b3c4ca;-webkit-text-decoration:none;text-decoration:none;}.css-1505tg:first-child{margin-top:0;}.css-1505tg:last-child{margin-bottom:0;}@media (min-width:600px){.css-1505tg{margin-left:auto;margin-right:auto;}}@media (min-width:1024px){.css-1505tg{margin-left:0;margin-right:0;width:100%;max-width:100%;}}@media print{.css-1505tg{margin-left:0;margin-right:0;width:100%;max-width:100%;}}@media (min-width:740px){.css-1505tg{margin-top:35px;margin-left:auto;margin-right:auto;margin-bottom:1.25rem;}}@media print{.css-1505tg{margin-left:0;margin-right:0;width:100%;max-width:100%;}}.css-1kwfo8p{color:#999;display:inline;margin-right:16px;padding:10px 0;width:100%;width:calc(100% - 40px);max-width:600px;}.css-1kwfo8p a{-webkit-text-decoration:none;text-decoration:none;}@media (max-width:659px){.css-1kwfo8p:nth-of-type(3),.css-1kwfo8p:nth-of-type(4){display:none;}}.css-1kwfo8p:last-of-type{margin-right:0;}.css-1kwfo8p:nth-of-type(1),.css-1kwfo8p:nth-of-type(2),.css-1kwfo8p:nth-of-type(3),.css-1kwfo8p:nth-of-type(4){display:inline;}@media (min-width:600px){.css-1kwfo8p{width:330px;}}.css-ar1l6a{color:#999;display:inline;margin-right:16px;padding:10px 0;width:100%;}.css-ar1l6a a{-webkit-text-decoration:none;text-decoration:none;}@media (max-width:659px){.css-ar1l6a:nth-of-type(3),.css-ar1l6a:nth-of-type(4){display:none;}}.css-ar1l6a:last-of-type{margin-right:0;}.css-ar1l6a:nth-of-type(1),.css-ar1l6a:nth-of-type(2),.css-ar1l6a:nth-of-type(3),.css-ar1l6a:nth-of-type(4){display:inline;}.css-1ede5it{background-color:#f7f7f7;border-bottom:1px solid #f3f3f3;border-top:1px solid #f3f3f3;margin:37px auto;padding-bottom:30px;padding-top:12px;text-align:center;margin-top:60px;}@media (min-width:740px){.css-1ede5it{margin:43px auto;}}@media print{.css-1ede5it{display:none;}}@media (min-width:740px){.css-1ede5it{margin-bottom:0;margin-top:0;}}.css-mn5hq9{cursor:pointer;margin:0;border-top:1px solid #ebebeb;color:#333;font-family:nyt-franklin;font-size:13px;font-weight:700;height:44px;-webkit-letter-spacing:0.04rem;-moz-letter-spacing:0.04rem;-ms-letter-spacing:0.04rem;letter-spacing:0.04rem;line-height:44px;text-transform:uppercase;}.accordionExpanded .css-mn5hq9{color:#b3b3b3;}.css-1qmnftd{font-size:11px;text-align:center;}@media (max-width:600px){.css-1qmnftd{padding-bottom:25px;}}@media (min-width:600px){.css-1qmnftd{padding-bottom:25px;}}@media (min-width:1024px){.css-1qmnftd{padding:0 3% 9px;}}@media (min-width:1150px){.css-1qmnftd{margin:0 auto;max-width:1200px;}}.NYTApp .css-1qmnftd{display:none;}@media print{.css-1qmnftd{display:none;}}.css-1ho5u4o{list-style:none;margin:0 0 15px;padding:0;}@media (min-width:600px){.css-1ho5u4o{display:inline-block;}}.css-13o0c9t{list-style:none;line-height:8px;margin:0 0 35px;padding:0;}@media (min-width:600px){.css-13o0c9t{display:inline-block;}}.css-1yo489b{display:inline-block;line-height:20px;padding:0 10px;}.css-1yo489b:first-child{border-left:none;}.css-1yo489b.desktop{display:none;}@media (min-width:740px){.css-1yo489b.smartphone{display:none;}.css-1yo489b.desktop{display:inline-block;}}.css-z6dj7x{font-style:normal;font-stretch:normal;margin-bottom:1.6rem;color:#333;font-family:nyt-cheltenham,georgia,'times new roman',times,serif;font-weight:300;-webkit-letter-spacing:0.005em;-moz-letter-spacing:0.005em;-ms-letter-spacing:0.005em;letter-spacing:0.005em;font-size:1.25rem;line-height:1.5625rem;text-align:left;margin:0 20px 1.6rem;width:calc(100% - 40px);max-width:600px;margin-left:20px;margin-right:20px;}@media (min-width:740px){.css-z6dj7x{font-size:1.375rem;line-height:1.75rem;}}@media (min-width:600px){.css-z6dj7x{margin-left:auto;margin-right:auto;}}@media (min-width:1024px){.css-z6dj7x{width:600px;}}@media (min-width:1440px){.css-z6dj7x{width:600px;max-width:600px;}}@media print{.css-z6dj7x{margin-left:0;margin-right:0;width:100%;max-width:100%;}}.css-1a48zt4{opacity:1;-webkit-transition:opacity 0.3s 0.2s;transition:opacity 0.3s 0.2s;}.css-1b4fpzk{margin:37px auto;margin-top:20px !important;margin-bottom:32px;}.css-1b4fpzk strong{font-weight:700;}.css-1b4fpzk em{font-style:italic;}.css-1b4fpzk.sizeSmall{width:calc(100% - 40px);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}@media (min-width:600px){.css-1b4fpzk.sizeSmall{max-width:600px;margin-left:auto;margin-right:auto;}}@media (min-width:1024px){.css-1b4fpzk.sizeSmall{width:100%;}}@media (min-width:1440px){.css-1b4fpzk.sizeSmall{max-width:600px;}}.css-1b4fpzk.sizeSmall.sizeSmallNoCaption{display:block;}@media print{.css-1b4fpzk.sizeSmall.sizeSmallNoCaption{display:none;}}.css-1b4fpzk.sizeMedium{width:100%;max-width:600px;margin-right:auto;margin-left:auto;}@media (min-width:600px){.css-1b4fpzk.sizeMedium{width:calc(100% - 40px);}}@media (min-width:740px){.css-1b4fpzk.sizeMedium{max-width:600px;}}@media (min-width:1440px){.css-1b4fpzk.sizeMedium{max-width:720px;}}@media (min-width:600px){.css-1b4fpzk.sizeMedium.layoutVertical{width:420px;}}@media (min-width:1440px){.css-1b4fpzk.sizeMedium.layoutVertical{width:480px;}}.css-1b4fpzk.sizeMedium.layoutVertical.verticalVideo{width:calc(100% - 40px);}@media (min-width:600px){.css-1b4fpzk.sizeMedium.layoutVertical.verticalVideo{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:600px;}}@media (min-width:1440px){.css-1b4fpzk.sizeMedium.layoutVertical.verticalVideo{width:600px;}}.css-1b4fpzk.sizeLarge{width:100%;max-width:1200px;margin-left:auto;margin-right:auto;}@media (min-width:600px){.css-1b4fpzk.sizeLarge{width:auto;}}@media (min-width:740px){.css-1b4fpzk.sizeLarge.layoutVertical{width:600px;}.css-1b4fpzk.sizeLarge.layoutVertical.verticalVideo{width:600px;}}@media (min-width:1024px){.css-1b4fpzk.sizeLarge{width:945px;}}@media (min-width:1440px){.css-1b4fpzk.sizeLarge{width:1200px;}.css-1b4fpzk.sizeLarge.layoutVertical{width:720px;}.css-1b4fpzk.sizeLarge.layoutVertical.verticalVideo{width:600px;}}@media (min-width:600px){.css-1b4fpzk{margin:43px auto;}}@media print{.css-1b4fpzk{display:none;}}@media (min-width:740px){.css-1b4fpzk{margin-top:25px !important;}}.css-1nwzsjy{display:inline-block;color:#888;font-family:nyt-imperial,georgia,'times new roman',times,serif;line-height:1.125rem;-webkit-letter-spacing:0.01em;-moz-letter-spacing:0.01em;-ms-letter-spacing:0.01em;letter-spacing:0.01em;font-size:0.75rem;}@media (min-width:740px){.css-1nwzsjy{font-size:0.75rem;}}@media (min-width:1150px){.css-1nwzsjy{font-size:0.8125rem;}}@media (min-width:600px){.sizeSmall.sizeSmallNoCaption .css-1nwzsjy{margin-left:5px;}}@media (min-width:1024px){.sizeSmall.sizeSmallNoCaption .css-1nwzsjy{margin-left:5px;}}@media (min-width:1440px){.sizeSmall.sizeSmallNoCaption .css-1nwzsjy{margin-left:40px;}}@media (max-width:600px){.sizeSmall.sizeSmallNoCaption .css-1nwzsjy{margin-left:-8px;}}@media print{.css-1nwzsjy{display:none;}}.css-1ly73wi{position:absolute;width:1px;height:1px;margin:-1px;padding:0;border:0;-webkit-clip:rect(0 0 0 0);clip:rect(0 0 0 0);overflow:hidden;}.css-wg1cha{margin-left:20px;margin-right:20px;}@media (min-width:600px){.css-wg1cha{width:calc(100% - 40px);max-width:600px;margin:1.5rem auto 1em;}}@media (min-width:1440px){.css-wg1cha{width:600px;max-width:600px;margin:1.5rem auto 1em;}}.css-x8f8u9{font-family:nyt-franklin,helvetica,arial,sans-serif;color:#333;font-size:0.9375rem;line-height:1.25rem;font-family:nyt-franklin,helvetica,arial,sans-serif;color:#333;font-size:0.9375rem;line-height:1.25rem;}.css-x8f8u9 p{margin-bottom:0.75rem;}.css-x8f8u9 a,.css-x8f8u9 a:visited{color:#326891;-webkit-text-decoration:underline;text-decoration:underline;}.css-x8f8u9 a:hover,.css-x8f8u9 a:focus{color:#326891;}@media print{.css-x8f8u9{margin-left:0;margin-right:0;width:100%;max-width:100%;}}@media (min-width:740px){.css-x8f8u9{font-size:1rem;line-height:1.375rem;}}.css-x8f8u9 p{margin-bottom:0.75rem;}.css-x8f8u9 a,.css-x8f8u9 a:visited{color:#326891;-webkit-text-decoration:underline;text-decoration:underline;}.css-x8f8u9 a:hover,.css-x8f8u9 a:focus{color:#326891;}@media print{.css-x8f8u9{margin-left:0;margin-right:0;width:100%;max-width:100%;}}.css-rlzall{width:100%;margin:0 auto;height:auto;max-width:600px;min-width:300px;}.css-rlzall .e13l8dds0 h1{color:#121212;font-family:nyt-cheltenham,georgia,'times new roman',times,serif;font-weight:700;font-style:italic;font-size:1.8125rem;line-height:2.125rem;}@media (min-width:740px){.css-rlzall .e13l8dds0 h1{font-size:2.25rem;line-height:2.5rem;}}.css-rlzall .e13l8dds0 h2{color:#121212;font-family:nyt-cheltenham,georgia,'times new roman',times,serif;font-weight:600;font-size:1.625rem;line-height:1.875rem;}@media (min-width:740px){.css-rlzall .e13l8dds0 h2{font-size:1.75rem;line-height:2.125rem;}}.css-rlzall .e13l8dds0 h2 .css-1g7m0tk{border-bottom:1px solid #6288a5;-webkit-text-decoration:none;text-decoration:none;}.css-rlzall .e13l8dds0 h2 .css-1g7m0tk:hover,.css-rlzall .e13l8dds0 h2 .css-1g7m0tk:focus{border-bottom:1px solid #b3c4ca;-webkit-text-decoration:none;text-decoration:none;}.css-rlzall .e13l8dds0 h3{margin-bottom:0.75rem;color:#333;font-family:nyt-franklin;font-weight:700;font-size:1.0625rem;line-height:1.5rem;}@media (min-width:740px){.css-rlzall .e13l8dds0 h3{margin-bottom:0.9375rem;}}@media (min-width:740px){.css-rlzall .e13l8dds0 h3{font-size:1.1875rem;line-height:1.75rem;}}.css-rlzall .e13l8dds0 p{margin-bottom:0.75rem;font-family:nyt-imperial,georgia,'times new roman',times,serif;font-size:1.0625rem;line-height:1.5rem;}@media (min-width:740px){.css-rlzall .e13l8dds0 p{margin-bottom:1.25rem;}}.css-rlzall .e13l8dds0 p .css-1g7m0tk{-webkit-text-decoration:underline;text-decoration:underline;}.css-rlzall .e13l8dds0 p .css-1g7m0tk:hover,.css-rlzall .e13l8dds0 p .css-1g7m0tk:focus{-webkit-text-decoration:none;text-decoration:none;}@media (min-width:740px){.css-rlzall .e13l8dds0 p{font-size:1.1875rem;line-height:1.8125rem;}}.css-rlzall .e13l8dds0 ul{list-style:none;}.css-rlzall .e13l8dds0 li{margin-bottom:1rem;list-style:disc;padding-left:0;margin-left:20px;}.css-rlzall .e13l8dds0 a{font-family:nyt-imperial,georgia,'times new roman',times,serif;color:#326891;-webkit-text-decoration:underline;text-decoration:underline;}.css-rlzall .e13l8dds0 a:visited{color:#326891;}.css-rlzall .e13l8dds0 a:hover,.css-rlzall .e13l8dds0 a:focus{-webkit-text-decoration:none;text-decoration:none;}.css-rlzall .e13l8dds0 video,.css-rlzall .e13l8dds0 img,.css-rlzall .e13l8dds0 iframe{margin:0;padding:0;border:0;}.css-17ih8de{box-sizing:border-box;vertical-align:top;}.css-1ukm2ij{font-size:1rem;line-height:1.25rem;font-family:nyt-franklin,helvetica,arial,sans-serif;font-weight:700;color:#333;}.css-15g2oxy{margin-top:1rem;}.css-i9gxme{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}.css-1yil5bp{font-family:nyt-franklin,helvetica,arial,sans-serif;font-weight:500;color:#333;-webkit-letter-spacing:0.02em;-moz-letter-spacing:0.02em;-ms-letter-spacing:0.02em;letter-spacing:0.02em;font-size:0.8125rem;line-height:1.125rem;margin-bottom:1rem;}@-webkit-keyframes animation-7y3qfv{0%{opacity:0;}10%,90%{opacity:1;}100%{opacity:0;}}@keyframes animation-7y3qfv{0%{opacity:0;}10%,90%{opacity:1;}100%{opacity:0;}}.css-103xxh4{margin-top:0.3125rem;}.css-103xxh4 .e6idgb70{margin-top:1.875rem;color:#121212;font-weight:700;line-height:0.75rem;margin-bottom:0.625rem;}@media print{.css-103xxh4 .e6idgb70{margin-left:0;margin-right:0;width:100%;max-width:100%;}}.css-103xxh4 .e1h9rw200{margin-bottom:1rem;margin-bottom:10px;}.css-103xxh4 .e1wiw3jv0{color:#333;}.css-103xxh4 .e16638kd0{width:auto;margin-bottom:0;margin-left:0;display:inline-block;}.css-103xxh4 .euiyums0{margin-bottom:20px;color:#121212;}@media print{.css-103xxh4 .euiyums0{margin-left:0;margin-right:0;width:100%;max-width:100%;}}@media (min-width:600px){.css-103xxh4{margin-top:0.9375rem;}}@media (min-width:1024px){.css-103xxh4{margin-top:2.8125rem;}}.css-2tpadd{color:#121212;font-family:nyt-cheltenham,georgia,'times new roman',times,serif;font-weight:700;font-style:italic;font-size:1.8125rem;line-height:2.125rem;margin:0 20px 1rem;position:relative;text-align:left;width:calc(100% - 40px);max-width:600px;margin-left:20px;margin-right:20px;}@media (min-width:740px){.css-2tpadd{font-size:2.25rem;line-height:2.5rem;}}@media (min-width:600px){.css-2tpadd{margin-left:auto;margin-right:auto;}}@media print{.css-2tpadd{margin-left:0;margin-right:0;width:100%;max-width:100%;}}@media (min-width:600px){.css-2tpadd{margin-left:auto;margin-right:auto;}}@media (min-width:1024px){.css-2tpadd{width:600px;}}@media (min-width:1440px){.css-2tpadd{width:600px;max-width:600px;}}@media print{.css-2tpadd{margin-left:0;margin-right:0;width:100%;max-width:100%;}}.css-tmydge{margin:0.5rem 0 1.5rem;padding-top:0.5rem;width:calc(100% - 40px);max-width:600px;margin-left:20px;margin-right:20px;}.css-tmydge:before{content:'';display:block;width:100%;margin-bottom:0.5rem;border-bottom:1px solid #e2e2e2;}.css-tmydge:after{content:'';display:block;width:100%;margin-top:0.5rem;border-bottom:1px solid #e2e2e2;}.css-tmydge .e16ij5yr6{border-top:none;}.css-tmydge:before{width:50%;}.css-tmydge .epkadsg0{display:inline-block;margin-right:0.35rem;text-transform:uppercase;-webkit-letter-spacing:0.03rem;-moz-letter-spacing:0.03rem;-ms-letter-spacing:0.03rem;letter-spacing:0.03rem;font-size:0.875rem;line-height:1.125rem;}.css-tmydge .epkadsg1{display:inline;}@media (min-width:600px){.css-tmydge{margin-left:auto;margin-right:auto;}}@media (min-width:1024px){.css-tmydge{width:600px;}}@media (min-width:1440px){.css-tmydge{width:600px;max-width:600px;}}@media print{.css-tmydge{margin-left:0;margin-right:0;width:100%;max-width:100%;}}.css-113dckd{margin-bottom:1rem;}.css-113dckd .e16638kd0{color:#999;margin-top:5px;margin-bottom:0;display:inline-block;font-size:0.75rem;line-height:1.0625rem;}.css-113dckd:hover .e16ij5yr2,.css-113dckd:visited .e16ij5yr2{color:#326891;}.css-ty8is0{font-size:1.1875rem;line-height:1.4375rem;font-family:nyt-cheltenham,georgia,'times new roman',times,serif;font-weight:500;color:#121212;margin-right:10px;display:inline;-webkit-text-decoration:underline;text-decoration:underline;color:#326891;font-family:nyt-imperial,georgia,'times new roman',times,serif;font-size:1.0625rem;line-height:1.5rem;font-weight:400;}.css-ty8is0:hover,.css-ty8is0:focus{-webkit-text-decoration:none;text-decoration:none;}.css-77hcv{display:none;}@-webkit-keyframes animation-g7rb99{0%{-webkit-transform:scale(1) rotate(0);-ms-transform:scale(1) rotate(0);transform:scale(1) rotate(0);}100%{-webkit-transform:scale(1.05) rotate(-90deg);-ms-transform:scale(1.05) rotate(-90deg);transform:scale(1.05) rotate(-90deg);}}@keyframes animation-g7rb99{0%{-webkit-transform:scale(1) rotate(0);-ms-transform:scale(1) rotate(0);transform:scale(1) rotate(0);}100%{-webkit-transform:scale(1.05) rotate(-90deg);-ms-transform:scale(1.05) rotate(-90deg);transform:scale(1.05) rotate(-90deg);}}@-webkit-keyframes animation-m6999o{100%{-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;}}@keyframes animation-m6999o{100%{-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;}}
        ]]>
        </style>
        <script>
        <![CDATA[
        window.__emotion = ["0","1dv1kvn","nuvmzp","1gz70xg","9e9ivx","2bwtzy","6n7j50","1kj7lfb","10m9xeu","vz7hjd","1fe7a5q","1rn5q1r","10488qs","1iruc8t","1ropbjl","uw59u","jxzr5i","oylsik","1otr2jl","1c8n994","qtw155","v0l3hm","g4gku8","1rr4qq7","6xhk3s","rxqrcl","tj0ten","ist4u3","1gprdgz","10t7hia","mzqdl","kwpx34","1k2cjfc","1vhk1ks","6td9kr","r5ic95","15uy5yv","1p8nkc0","1hyfx7x","f8wsfj","mhvv8m","qremme","1f85ym4","7inim5","133m5b6","1lc20wh","1m9j9gf","1g7m0tk","bsn42l","11cwn6f","d8bdto","y8aj3r","60hakz","i29ckm","1ri25x2","12fr9lp","1hfdzay","k008qs","eqw76k","m6xlts","1ahhg7f","rs6kf8","17xtcya","x15j1o","19gb6gw","1iwv8en","1sy8kpn","19vbshk","l9onyx","b7n1on","1rj8to8","4w91ra","1rjzas3","acwcvw","1egl8em","vdv0al","1i2y565","o6xoe7","1fanzo5","53u6y8","z3e15g","cl76n0","1vs7yia","irejme","1ct2c9h","13nfagi","1b9egsl","1c5cfvc","htgkrt","e64et","9zaqp9","16fq4rz","1kjk1j2","88g286","12yx39b","4hu8jm","1wqz2f4","yl3z84","1q3gjvc","nc39ev","amd09y","ru1vxe","ajnadh","1baulvz","79elbk","v89234","13lpfd6","1bymuyk","1waixk9","1f7ibof","l2ztic","19lv58h","mgtjo2","1wr3we4","10698na","nhjhh0","o2c64h","1bnxwmn","1nkps6a","1i8g3m4","3qijnq","uqyvli","1uqjmks","1bvtpon","l72opv","4skfbu","1fcn4th","13zu7ev","f7l8cz","16ogagc","1vxca1d","1rk3iho","17ai7jg","8i9d0s","xt80pu","17xsp6v","16vrk19","1riqqik","1w5cs23","qddhf4","4brsb6","uhuo44","1ygdjhk","1505tg","1kwfo8p","ar1l6a","1ede5it","mn5hq9","1qmnftd","1ho5u4o","13o0c9t","1yo489b","z6dj7x","1a48zt4","1b4fpzk","1nwzsjy","1ly73wi","wg1cha","x8f8u9","rlzall","17ih8de","1ukm2ij","15g2oxy","i9gxme","1yil5bp","7y3qfv","103xxh4","2tpadd","tmydge","113dckd","ty8is0","77hcv","g7rb99","m6999o"]
        ]]>
        </script>
        <script>
        <![CDATA[
        (function () { var _f=function(t,e,n){var a=window,A=document,o=function(t){var e=A.createElement("style");e.appendChild(A.createTextNode(t)),A.querySelector("head").appendChild(e)},r=function(t,e,n,a,A){var r=new XMLHttpRequest;r.open("GET",t,!0),r.onreadystatechange=function(){if(4===r.readyState&&200===r.status){o(r.responseText);try{localStorage.setItem("nyt-fontFormat",e),localStorage.setItem(a,n)}catch(t){return}localStorage.setItem(A,r.responseText)}return!0},r.send(null)},c=function(e,n){var A;try{A=localStorage.getItem("nyt-fontFormat")}catch(t){}A||(A=function(){if(!("FontFace"in a))return!1;var t=new FontFace("t",'url("data:application/font-woff2;base64,d09GMgABAAAAAADcAAoAAAAAAggAAACWAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAABk4ALAoUNAE2AiQDCAsGAAQgBSAHIBtvAcieB3aD8wURQ+TZazbRE9HvF5vde4KCYGhiCgq/NKPF0i6UIsZynbP+Xi9Ng+XLbNlmNz/xIBBqq61FIQRJhC/+QA/08PJQJ3sK5TZFMlWzC/iK5GUN40psgqvxwBjBOg6JUSJ7ewyKE2AAaXZrfUB4v+hze37ugJ9d+DeYqiDwVgCawviwVFGnuttkLqIMGivmDg") format("woff2")',{});return t.load().catch(function(){}),"loading"==t.status||"loaded"==t.status}()?"woff2":"woff");for(var c=0;c<e.length;c++){var i=e[c],l="shared"!==i?"-"+i:"",d="nyt-fontHash"+l,s="nyt-fontFace"+l,f=t[i][A],u=localStorage.getItem(d),g=localStorage.getItem(s);if(u===f.hash&&g)o(g);else{var h=function(t,e,n,a,A){return function(){r(t,e,n,a,A)}}(f.url,A,f.hash,d,s);n?h():document.addEventListener("DOMContentLoaded",h)}}};c(e),window.addEventListener("load",function(){c(n,!0)})};;_f.apply(null, [{"shared":{"woff":{"hash":"f2adc73415c5bbb437e993c14559e70e","url":"/vi-assets/static-assets/shared-woff.fonts-f2adc73415c5bbb437e993c14559e70e.css"},"woff2":{"hash":"22b34a6a6fd840943496b658184afdd3","url":"/vi-assets/static-assets/shared-woff2.fonts-22b34a6a6fd840943496b658184afdd3.css"}},"story":{"woff":{"hash":"d5c4f7d33f59d401af5121eb86eade0d","url":"/vi-assets/static-assets/story-woff.fonts-d5c4f7d33f59d401af5121eb86eade0d.css"},"woff2":{"hash":"8cda51537d027e0df92bea96a094bfe3","url":"/vi-assets/static-assets/story-woff2.fonts-8cda51537d027e0df92bea96a094bfe3.css"}},"opinion":{"woff":{"hash":"dfc5106c9c0aaa76688687e664474b04","url":"/vi-assets/static-assets/opinion-woff.fonts-dfc5106c9c0aaa76688687e664474b04.css"},"woff2":{"hash":"e2b27ff317927dfd77bdd429409627e0","url":"/vi-assets/static-assets/opinion-woff2.fonts-e2b27ff317927dfd77bdd429409627e0.css"}},"tmag":{"woff":{"hash":"4634f3c7ddebb9113b69d4578d9a0ba0","url":"/vi-assets/static-assets/tmag-woff.fonts-4634f3c7ddebb9113b69d4578d9a0ba0.css"},"woff2":{"hash":"8622c93c260fa93b229b7249df708fb1","url":"/vi-assets/static-assets/tmag-woff2.fonts-8622c93c260fa93b229b7249df708fb1.css"}},"mag":{"woff":{"hash":"109e6d301ed49c8078086b5892696adf","url":"/vi-assets/static-assets/mag-woff.fonts-109e6d301ed49c8078086b5892696adf.css"},"woff2":{"hash":"fb42c728dc70cc4ef6010a60cb10b0bd","url":"/vi-assets/static-assets/mag-woff2.fonts-fb42c728dc70cc4ef6010a60cb10b0bd.css"}},"well":{"woff":{"hash":"f0e613b89006e99b4622d88aa5563a81","url":"/vi-assets/static-assets/well-woff.fonts-f0e613b89006e99b4622d88aa5563a81.css"},"woff2":{"hash":"77806b85de524283fe742b916c9d0ee4","url":"/vi-assets/static-assets/well-woff2.fonts-77806b85de524283fe742b916c9d0ee4.css"}}},["shared","story"],["opinion","tmag","mag","well"]]); })();
        (function() {
        var thisHour = (new Date()).getHours();
        var styles = '[data-timezone][data-timezone~="' + thisHour +'"] { display: block }';
        var s = document.createElement('style');
        s.innerHTML = styles;
        document.head.appendChild(s);
        })();

        !function(){if('PerformanceLongTaskTiming' in window){var g=window.__tti={e:[]};
        g.o=new PerformanceObserver(function(l){g.e=g.e.concat(l.getEntries())});
        g.o.observe({entryTypes:['longtask']})}}();


        !function(n,e){var t,o,i,c=[],f={passive:!0,capture:!0},r=new Date,a="pointerup",u="pointercancel";function p(n,c){t||(t=c,o=n,i=new Date,w(e),s())}function s(){o>=0&&o<i-r&&(c.forEach(function(n){n(o,t)}),c=[])}function l(t){if(t.cancelable){var o=(t.timeStamp>1e12?new Date:performance.now())-t.timeStamp;"pointerdown"==t.type?function(t,o){function i(){p(t,o),r()}function c(){r()}function r(){e(a,i,f),e(u,c,f)}n(a,i,f),n(u,c,f)}(o,t):p(o,t)}}function w(n){["click","mousedown","keydown","touchstart","pointerdown"].forEach(function(e){n(e,l,f)})}w(n),self.perfMetrics=self.perfMetrics||{},self.perfMetrics.onFirstInputDelay=function(n){c.push(n),s()}}(addEventListener,removeEventListener);

        try {
        var observer = new window.PerformanceObserver(function (list) {
        var entries = list.getEntries();

        for (var i = 0; i < entries.length; i += 1) {
        var entry = entries[i];
        var performance = {};

        performance[entry.name] = Math.round(entry.startTime + entry.duration);
        (window.dataLayer = window.dataLayer || []).push({
        event: "performance",
        pageview: {
          performance: performance
        }
        });
        }
        });
        observer.observe({
        entryTypes: ["paint"]
        });
        } catch (e) {}
        ]]>
        </script>
        <style>
        <![CDATA[
        [data-timezone] { display: none }
        ]]>
        </style>
        <style type="text/css" media="screen,print">
        /*<![CDATA[*/
        #g-0916-biz-web-DEBT-CHART-1-box .g-artboard {
                margin:0 auto;
        }
        #g-0916-biz-web-DEBT-CHART-1-box .g-artboard p {
                margin:0;
        }
        .g-aiAbs {
                position:absolute;
        }
        .g-aiImg {
                display:block;
                width:100% !important;
        }
        .g-aiSymbol {
                position: absolute;
                box-sizing: border-box;
        }
        .g-aiPointText p { white-space: nowrap; }
        #g-0916-biz-web-DEBT-CHART-1-Artboard_2 {
                position:relative;
                overflow:hidden;
                width:600px;
        }
        #g-0916-biz-web-DEBT-CHART-1-Artboard_2 p {
                font-family:nyt-franklin,arial,helvetica,sans-serif;
                font-weight:700;
                font-size:13px;
                line-height:18px;
                height:auto;
                filter:alpha(opacity=100);
                -ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
                opacity:1;
                letter-spacing:0em;
                text-align:left;
                color:rgb(51,51,51);
                text-transform:none;
                padding-bottom:0;
                padding-top:0;
                mix-blend-mode:normal;
                font-style:normal;
        }
        #g-0916-biz-web-DEBT-CHART-1-Artboard_2 .g-pstyle0 {
                line-height:16px;
                height:16px;
                text-align:center;
        }
        #g-0916-biz-web-DEBT-CHART-1-Artboard_2 .g-pstyle1 {
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-1-Artboard_2 .g-pstyle2 {
                font-weight:500;
                height:18px;
                text-align:right;
        }
        #g-0916-biz-web-DEBT-CHART-1-Artboard_2 .g-pstyle3 {
                font-weight:500;
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-1-Artboard_2 .g-pstyle4 {
                font-weight:500;
                height:18px;
                text-align:center;
        }
        #g-0916-biz-web-DEBT-CHART-1-Artboard_3 {
                position:relative;
                overflow:hidden;
                width:300px;
        }
        #g-0916-biz-web-DEBT-CHART-1-Artboard_3 p {
                font-family:nyt-franklin,arial,helvetica,sans-serif;
                font-weight:700;
                font-size:13px;
                line-height:18px;
                height:auto;
                filter:alpha(opacity=100);
                -ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
                opacity:1;
                letter-spacing:0em;
                text-align:left;
                color:rgb(51,51,51);
                text-transform:none;
                padding-bottom:0;
                padding-top:0;
                mix-blend-mode:normal;
                font-style:normal;
        }
        #g-0916-biz-web-DEBT-CHART-1-Artboard_3 .g-pstyle0 {
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-1-Artboard_3 .g-pstyle1 {
                font-weight:500;
                height:18px;
                text-align:right;
        }
        #g-0916-biz-web-DEBT-CHART-1-Artboard_3 .g-pstyle2 {
                font-weight:500;
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-1-Artboard_3 .g-pstyle3 {
                line-height:16px;
                height:16px;
                text-align:center;
        }
        #g-0916-biz-web-DEBT-CHART-1-Artboard_3 .g-pstyle4 {
                font-weight:500;
                height:18px;
                text-align:center;
        }

        /*]]>*/
        </style>
        <style type="text/css" media="screen,print">
        /*<![CDATA[*/
        #g-0916-biz-web-DEBT-CHART-2-box .g-artboard {
                margin:0 auto;
        }
        #g-0916-biz-web-DEBT-CHART-2-box .g-artboard p {
                margin:0;
        }
        .g-aiAbs {
                position:absolute;
        }
        .g-aiImg {
                display:block;
                width:100% !important;
        }
        .g-aiSymbol {
                position: absolute;
                box-sizing: border-box;
        }
        .g-aiPointText p { white-space: nowrap; }
        #g-0916-biz-web-DEBT-CHART-2-Artboard_2 {
                position:relative;
                overflow:hidden;
                width:600px;
        }
        #g-0916-biz-web-DEBT-CHART-2-Artboard_2 p {
                font-family:nyt-franklin,arial,helvetica,sans-serif;
                font-weight:700;
                font-size:13px;
                line-height:18px;
                height:auto;
                filter:alpha(opacity=100);
                -ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
                opacity:1;
                letter-spacing:0em;
                text-align:left;
                color:rgb(51,51,51);
                text-transform:none;
                padding-bottom:0;
                padding-top:0;
                mix-blend-mode:normal;
                font-style:normal;
        }
        #g-0916-biz-web-DEBT-CHART-2-Artboard_2 .g-pstyle0 {
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-2-Artboard_2 .g-pstyle1 {
                font-weight:500;
                height:18px;
                text-align:right;
        }
        #g-0916-biz-web-DEBT-CHART-2-Artboard_2 .g-pstyle2 {
                font-weight:500;
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-2-Artboard_2 .g-pstyle3 {
                font-weight:500;
                font-size:11px;
                height:18px;
                text-align:center;
        }
        #g-0916-biz-web-DEBT-CHART-2-Artboard_2 .g-pstyle4 {
                font-weight:500;
                font-size:11px;
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-2-Artboard_2 .g-pstyle5 {
                font-weight:500;
                height:18px;
                text-align:center;
        }
        #g-0916-biz-web-DEBT-CHART-2-Artboard_3 {
                position:relative;
                overflow:hidden;
                width:300px;
        }
        #g-0916-biz-web-DEBT-CHART-2-Artboard_3 p {
                font-family:nyt-franklin,arial,helvetica,sans-serif;
                font-weight:700;
                font-size:13px;
                line-height:18px;
                height:auto;
                filter:alpha(opacity=100);
                -ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
                opacity:1;
                letter-spacing:0em;
                text-align:left;
                color:rgb(51,51,51);
                text-transform:none;
                padding-bottom:0;
                padding-top:0;
                mix-blend-mode:normal;
                font-style:normal;
        }
        #g-0916-biz-web-DEBT-CHART-2-Artboard_3 .g-pstyle0 {
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-2-Artboard_3 .g-pstyle1 {
                font-weight:500;
                height:18px;
                text-align:right;
        }
        #g-0916-biz-web-DEBT-CHART-2-Artboard_3 .g-pstyle2 {
                font-weight:500;
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-2-Artboard_3 .g-pstyle3 {
                font-weight:500;
                font-size:11px;
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-2-Artboard_3 .g-pstyle4 {
                font-weight:500;
                height:18px;
                text-align:center;
        }

        /*]]>*/
        </style>
        <style type="text/css" media="screen,print">
        /*<![CDATA[*/
        #g-0916-biz-web-DEBT-CHART-3-box .g-artboard {
                margin:0 auto;
        }
        #g-0916-biz-web-DEBT-CHART-3-box .g-artboard p {
                margin:0;
        }
        .g-aiAbs {
                position:absolute;
        }
        .g-aiImg {
                display:block;
                width:100% !important;
        }
        .g-aiSymbol {
                position: absolute;
                box-sizing: border-box;
        }
        .g-aiPointText p { white-space: nowrap; }
        #g-0916-biz-web-DEBT-CHART-3-Artboard_2 {
                position:relative;
                overflow:hidden;
                width:600px;
        }
        #g-0916-biz-web-DEBT-CHART-3-Artboard_2 p {
                font-family:nyt-franklin,arial,helvetica,sans-serif;
                font-weight:700;
                font-size:13px;
                line-height:18px;
                height:auto;
                filter:alpha(opacity=100);
                -ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
                opacity:1;
                letter-spacing:0em;
                text-align:left;
                color:rgb(51,51,51);
                text-transform:none;
                padding-bottom:0;
                padding-top:0;
                mix-blend-mode:normal;
                font-style:normal;
        }
        #g-0916-biz-web-DEBT-CHART-3-Artboard_2 .g-pstyle0 {
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-3-Artboard_2 .g-pstyle1 {
                font-weight:500;
                height:18px;
                text-align:right;
        }
        #g-0916-biz-web-DEBT-CHART-3-Artboard_2 .g-pstyle2 {
                font-weight:500;
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-3-Artboard_2 .g-pstyle3 {
                height:18px;
                text-align:center;
        }
        #g-0916-biz-web-DEBT-CHART-3-Artboard_2 .g-pstyle4 {
                font-weight:500;
                height:18px;
                text-align:center;
        }
        #g-0916-biz-web-DEBT-CHART-3-Artboard_3 {
                position:relative;
                overflow:hidden;
                width:300px;
        }
        #g-0916-biz-web-DEBT-CHART-3-Artboard_3 p {
                font-family:nyt-franklin,arial,helvetica,sans-serif;
                font-weight:700;
                font-size:13px;
                line-height:18px;
                height:auto;
                filter:alpha(opacity=100);
                -ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
                opacity:1;
                letter-spacing:0em;
                text-align:left;
                color:rgb(51,51,51);
                text-transform:none;
                padding-bottom:0;
                padding-top:0;
                mix-blend-mode:normal;
                font-style:normal;
        }
        #g-0916-biz-web-DEBT-CHART-3-Artboard_3 .g-pstyle0 {
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-3-Artboard_3 .g-pstyle1 {
                font-weight:500;
                height:18px;
                text-align:right;
        }
        #g-0916-biz-web-DEBT-CHART-3-Artboard_3 .g-pstyle2 {
                font-weight:500;
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-3-Artboard_3 .g-pstyle3 {
                height:18px;
                text-align:right;
        }
        #g-0916-biz-web-DEBT-CHART-3-Artboard_3 .g-pstyle4 {
                font-weight:500;
                height:18px;
                text-align:center;
        }

        /*]]>*/
        </style>
        <style type="text/css" media="screen,print">
        /*<![CDATA[*/
        #g-0916-biz-web-DEBT-CHART-5-box .g-artboard {
                margin:0 auto;
        }
        #g-0916-biz-web-DEBT-CHART-5-box .g-artboard p {
                margin:0;
        }
        .g-aiAbs {
                position:absolute;
        }
        .g-aiImg {
                display:block;
                width:100% !important;
        }
        .g-aiSymbol {
                position: absolute;
                box-sizing: border-box;
        }
        .g-aiPointText p { white-space: nowrap; }
        #g-0916-biz-web-DEBT-CHART-5-Artboard_2 {
                position:relative;
                overflow:hidden;
                width:600px;
        }
        #g-0916-biz-web-DEBT-CHART-5-Artboard_2 p {
                font-family:nyt-franklin,arial,helvetica,sans-serif;
                font-weight:500;
                font-size:13px;
                line-height:18px;
                height:auto;
                filter:alpha(opacity=100);
                -ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
                opacity:1;
                letter-spacing:0em;
                text-align:left;
                color:rgb(51,51,51);
                text-transform:none;
                padding-bottom:0;
                padding-top:0;
                mix-blend-mode:normal;
                font-style:normal;
        }
        #g-0916-biz-web-DEBT-CHART-5-Artboard_2 .g-pstyle0 {
                font-weight:700;
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-5-Artboard_2 .g-pstyle1 {
                height:18px;
                text-align:right;
        }
        #g-0916-biz-web-DEBT-CHART-5-Artboard_2 .g-pstyle2 {
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-5-Artboard_2 .g-pstyle3 {
                font-size:11px;
                height:18px;
                text-align:right;
        }
        #g-0916-biz-web-DEBT-CHART-5-Artboard_2 .g-pstyle4 {
                font-size:11px;
                height:18px;
                text-align:center;
        }
        #g-0916-biz-web-DEBT-CHART-5-Artboard_3 {
                position:relative;
                overflow:hidden;
                width:300px;
        }
        #g-0916-biz-web-DEBT-CHART-5-Artboard_3 p {
                font-family:nyt-franklin,arial,helvetica,sans-serif;
                font-weight:700;
                font-size:13px;
                line-height:18px;
                height:auto;
                filter:alpha(opacity=100);
                -ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
                opacity:1;
                letter-spacing:0em;
                text-align:left;
                color:rgb(51,51,51);
                text-transform:none;
                padding-bottom:0;
                padding-top:0;
                mix-blend-mode:normal;
                font-style:normal;
        }
        #g-0916-biz-web-DEBT-CHART-5-Artboard_3 .g-pstyle0 {
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-5-Artboard_3 .g-pstyle1 {
                font-weight:500;
                height:18px;
                text-align:right;
        }
        #g-0916-biz-web-DEBT-CHART-5-Artboard_3 .g-pstyle2 {
                font-weight:500;
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-5-Artboard_3 .g-pstyle3 {
                font-weight:500;
                font-size:11px;
                height:18px;
                text-align:right;
        }
        #g-0916-biz-web-DEBT-CHART-5-Artboard_3 .g-pstyle4 {
                font-weight:500;
                font-size:11px;
                height:18px;
                text-align:center;
        }

        /*]]>*/
        </style>
        <style type="text/css" media="screen,print">
        /*<![CDATA[*/
        #g-0916-biz-web-DEBT-CHART-4-box .g-artboard {
                margin:0 auto;
        }
        #g-0916-biz-web-DEBT-CHART-4-box .g-artboard p {
                margin:0;
        }
        .g-aiAbs {
                position:absolute;
        }
        .g-aiImg {
                display:block;
                width:100% !important;
        }
        .g-aiSymbol {
                position: absolute;
                box-sizing: border-box;
        }
        .g-aiPointText p { white-space: nowrap; }
        #g-0916-biz-web-DEBT-CHART-4-Artboard_2 {
                position:relative;
                overflow:hidden;
                width:600px;
        }
        #g-0916-biz-web-DEBT-CHART-4-Artboard_2 p {
                font-family:nyt-franklin,arial,helvetica,sans-serif;
                font-weight:500;
                font-size:13px;
                line-height:18px;
                height:auto;
                filter:alpha(opacity=100);
                -ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
                opacity:1;
                letter-spacing:0em;
                text-align:left;
                color:rgb(51,51,51);
                text-transform:none;
                padding-bottom:0;
                padding-top:0;
                mix-blend-mode:normal;
                font-style:normal;
        }
        #g-0916-biz-web-DEBT-CHART-4-Artboard_2 .g-pstyle0 {
                font-weight:700;
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-4-Artboard_2 .g-pstyle1 {
                height:18px;
                text-align:right;
        }
        #g-0916-biz-web-DEBT-CHART-4-Artboard_2 .g-pstyle2 {
                font-size:11px;
                height:18px;
                text-align:right;
        }
        #g-0916-biz-web-DEBT-CHART-4-Artboard_2 .g-pstyle3 {
                font-size:11px;
                height:18px;
                text-align:center;
        }
        #g-0916-biz-web-DEBT-CHART-4-Artboard_2 .g-pstyle4 {
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-4-Artboard_3 {
                position:relative;
                overflow:hidden;
                width:300px;
        }
        #g-0916-biz-web-DEBT-CHART-4-Artboard_3 p {
                font-family:nyt-franklin,arial,helvetica,sans-serif;
                font-weight:500;
                font-size:13px;
                line-height:18px;
                height:auto;
                filter:alpha(opacity=100);
                -ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
                opacity:1;
                letter-spacing:0em;
                text-align:left;
                color:rgb(51,51,51);
                text-transform:none;
                padding-bottom:0;
                padding-top:0;
                mix-blend-mode:normal;
                font-style:normal;
        }
        #g-0916-biz-web-DEBT-CHART-4-Artboard_3 .g-pstyle0 {
                font-weight:700;
                height:18px;
        }
        #g-0916-biz-web-DEBT-CHART-4-Artboard_3 .g-pstyle1 {
                height:18px;
                text-align:right;
        }
        #g-0916-biz-web-DEBT-CHART-4-Artboard_3 .g-pstyle2 {
                font-size:11px;
                height:18px;
                text-align:right;
        }
        #g-0916-biz-web-DEBT-CHART-4-Artboard_3 .g-pstyle3 {
                font-size:11px;
                height:18px;
                text-align:center;
        }
        #g-0916-biz-web-DEBT-CHART-4-Artboard_3 .g-pstyle4 {
                height:18px;
        }

        /*]]>*/
        </style>
    </head>
    <body>
        <div id="swg-script"></div>
        <script>
        <![CDATA[
        window.swgUserInfoXhrObject.checkSwgResponse = false;
        !function(){function e(e){window.console.log("aborted ".concat(e)),window.swgUserInfoXhrObject.checkSwgResponse={};var t=new Event("aborted");return window.swgUserInfoXhrObject.dispatchEvent(t),window.swgUserInfoXhrObject.abort(),!1}function t(e){return!!window.dataLayer&&((window.dataLayer=window.dataLayer||[]).push({event:"impression",module:e}),!0)}function n(){return"undefined"==typeof window?e("no window"):-1!==document.cookie.indexOf("NYT-S")?e("NYT-S"):!0===function(){if(!window.localStorage)return!1;var e=window.localStorage.getItem("nyt-swgOptOut");if(!e)return!1;var t=parseInt(e,10);return((new Date).getTime()-t)/864e5<1||(window.localStorage.removeItem("nyt-swgOptOut"),!1)}()?e("opt-out"):window.SWG?((window.SWG=window.SWG||[]).push(function(n){return n.init(vi.env.SWG_PUBLICATION_ID),n.getEntitlements().then(function(o){if(void 0===o||!o.raw)return e("entitlements 1");var a={entitlements_token:o.raw};return window.swgUserInfoXhrObject.withCredentials=!0,window.swgUserInfoXhrObject.open("POST","".concat(vi.env.AUTH_HOST,"/svc/account/auth/v1/login-swg-web"),!0),window.swgUserInfoXhrObject.setRequestHeader("Content-Type","application/json"),window.swgUserInfoXhrObject.send(JSON.stringify(a)),window.swgUserInfoXhrObject.onload=function(){switch(window.swgUserInfoXhrObject.status){case 200:return t({name:"swg",context:"Seamless",label:"Seamless Signin",region:"login"}),window.location.reload(!0),!0;case 412:return e("412"),function(e,n){return e.completeDeferredAccountCreation({entitlements:n,consent:!1}).then(function(e){var n="".concat(vi.env.AUTH_HOST,"/svc/account/auth/v1/swg-dal-web"),o=e.purchaseData.raw.data?e.purchaseData.raw.data:e.purchaseData.raw,a=JSON.parse(o),r={package_name:a.packageName,product_id:a.productId,purchase_token:a.purchaseToken,google_id_token:e.userData.idToken,google_user_email:e.userData.email,google_user_id:e.userData.id,google_user_name:e.userData.name},i=new XMLHttpRequest;i.withCredentials=!0,i.open("POST",n,!0),i.setRequestHeader("Content-Type","application/json"),i.send(JSON.stringify(r)),i.onload=function(){200===i.status?(t({name:"swg",context:"Deferred",label:"Seamless Signin",region:"swg-modal"}),e.complete().then(function(){window.location.reload(!0)})):(e.complete(),window.location=encodeURI("".concat(vi.env.AUTH_HOST,"/get-started/swg-link?redirect=").concat(window.location.href)))}}).catch(function(){return!!window.localStorage&&!window.localStorage.getItem("nyt-swgOptOut")&&(window.localStorage.setItem("nyt-swgOptOut",(new Date).getTime()),!0)}),!0}(n,o);default:return e(window.swgUserInfoXhrObject.status)}},o}).catch(function(){return e("entitlements 2")}),!0}),!0):e("swg")}if(-1===document.cookie.indexOf("NYT-S")){var o=document.createElement("script");o.src="https://news.google.com/swg/js/v1/swg.js",o.setAttribute("subscriptions-control","manual"),o.setAttribute("async",!0),o.onload=function(){n()},o.onerror=function(){e("swg")},document.getElementById("swg-script").appendChild(o)}}();
        ]]>
        </script>
        <div id="app">
            <div class="css-v89234 e3w10z60">
                <div>
                    <div>
                        <div class="css-13lpfd6 e1nre7570">
                            <header class="css-1bymuyk e1nre7571">
                                <section class="css-1waixk9 e1nre7572">
                                    <div class="css-1f7ibof emxkhtz0">
                                        <div class="css-6n7j50">
                                            <button aria-haspopup="true" aria-expanded="false" aria-label="Sections Navigation &amp; Search" class="emxkhtz1 css-l2ztic" data-testid="nav-button"><svg class="css-1fe7a5q" viewbox="0 0 16 16">
                                            <rect x="1" y="3" fill="#333333" width="14" height="2"></rect>
                                            <rect x="1" y="7" fill="#333333" width="14" height="2"></rect>
                                            <rect x="1" y="11" fill="#333333" width="14" height="2"></rect></svg></button>
                                        </div><button id="desktop-sections-button" aria-label="Sections Navigation" class="css-19lv58h emxkhtz2"><span class="css-vz7hjd">Sections</span><svg class="css-1fe7a5q" viewbox="0 0 16 16">
                                        <rect x="1" y="3" fill="#333333" width="14" height="2"></rect>
                                        <rect x="1" y="7" fill="#333333" width="14" height="2"></rect>
                                        <rect x="1" y="11" fill="#333333" width="14" height="2"></rect></svg></button>
                                        <div class="css-10488qs">
                                            <button class="css-mgtjo2 e1a6adlb0" data-test-id="search-button"><span class="css-vz7hjd">SEARCH</span><svg class="css-1fe7a5q" viewbox="0 0 16 16">
                                            <path fill="#333" d="M11.3,9.2C11.7,8.4,12,7.5,12,6.5C12,3.5,9.5,1,6.5,1S1,3.5,1,6.5S3.5,12,6.5,12c1,0,1.9-0.3,2.7-0.7l3.3,3.3c0.3,0.3,0.7,0.4,1.1,0.4s0.8-0.1,1.1-0.4c0.6-0.6,0.6-1.5,0-2.1L11.3,9.2zM6.5,10.3c-2.1,0-3.8-1.7-3.8-3.8c0-2.1,1.7-3.8,3.8-3.8c2.1,0,3.8,1.7,3.8,3.8C10.3,8.6,8.6,10.3,6.5,10.3z"></path></svg></button>
                                        </div><a class="css-1rn5q1r" href="#site-content">Skip to content</a><a class="css-1rn5q1r" href="#site-index">Skip to site index</a>
                                    </div>
                                    <div class="css-1wr3we4 e14k9kmx0">
                                        <a href="https://www.nytimes.com/pages/business/economy/index.html" class="css-nuvmzp">Economy</a>
                                    </div>
                                    <div class="css-10698na e1ngbli50">
                                        <a aria-label="New York Times Logo. Click to visit the homepage" class="css-nhjhh0 e1ngbli51" href="/"><svg xmlns="http://www.w3.org/2000/svg" class="" viewbox="0 0 184 25" fill="#000">
                                        <path d="M13.8 2.9c0-2-1.9-2.5-3.4-2.5v.3c.9 0 1.6.3 1.6 1 0 .4-.3 1-1.2 1-.7 0-2.2-.4-3.3-.8C6.2 1.4 5 1 4 1 2 1 .6 2.5.6 4.2c0 1.5 1.1 2 1.5 2.2l.1-.2c-.2-.2-.5-.4-.5-1 0-.4.4-1.1 1.4-1.1.9 0 2.1.4 3.7.9 1.4.4 2.9.7 3.7.8v3.1L9 10.2v.1l1.5 1.3v4.3c-.8.5-1.7.6-2.5.6-1.5 0-2.8-.4-3.9-1.6l4.1-2V6l-5 2.2C3.6 6.9 4.7 6 5.8 5.4l-.1-.3c-3 .8-5.7 3.6-5.7 7 0 4 3.3 7 7 7 4 0 6.6-3.2 6.6-6.5h-.2c-.6 1.3-1.5 2.5-2.6 3.1v-4.1l1.6-1.3v-.1l-1.6-1.3V5.8c1.5 0 3-1 3-2.9zm-8.7 11l-1.2.6c-.7-.9-1.1-2.1-1.1-3.8 0-.7 0-1.5.2-2.1l2.1-.9v6.2zm10.6 2.3l-1.3 1 .2.2.6-.5 2.2 2 3-2-.1-.2-.8.5-1-1V9.4l.8-.6 1.7 1.4v6.1c0 3.8-.8 4.4-2.5 5v.3c2.8.1 5.4-.8 5.4-5.7V9.3l.9-.7-.2-.2-.8.6-2.5-2.1L18.5 9V.8h-.2l-3.5 2.4v.2c.4.2 1 .4 1 1.5l-.1 11.3zM34 15.1L31.5 17 29 15v-1.2l4.7-3.2v-.1l-2.4-3.6-5.2 2.8v6.6l-1 .8.2.2.9-.7 3.4 2.5 4.5-3.6-.1-.4zm-5-1.7V8.5l.2-.1 2.2 3.5-2.4 1.5zM53.1 2c0-.3-.1-.6-.2-.9h-.2c-.3.8-.7 1.2-1.7 1.2-.9 0-1.5-.5-1.9-.9l-2.9 3.3.2.2 1-.9c.6.5 1.1.9 2.5 1v8.3L44 3.2c-.5-.8-1.2-1.9-2.6-1.9-1.6 0-3 1.4-2.8 3.6h.3c.1-.6.4-1.3 1.1-1.3.5 0 1 .5 1.3 1v3.3c-1.8 0-3 .8-3 2.3 0 .8.4 2 1.6 2.3v-.2c-.2-.2-.3-.4-.3-.7 0-.5.4-.9 1.1-.9h.5v4.2c-2.1 0-3.8 1.2-3.8 3.2 0 1.9 1.6 2.8 3.4 2.7v-.2c-1.1-.1-1.6-.6-1.6-1.3 0-.9.6-1.3 1.4-1.3.8 0 1.5.5 2 1.1l2.9-3.2-.2-.2-.7.8c-1.1-1-1.7-1.3-3-1.5V5l8 14h.6V5c1.5-.1 2.9-1.3 2.9-3zm7.3 13.1L57.9 17l-2.5-2v-1.2l4.7-3.2v-.1l-2.4-3.6-5.2 2.8v6.6l-1 .8.2.2.9-.7 3.4 2.5 4.5-3.6-.1-.4zm-5-1.7V8.5l.2-.1 2.2 3.5-2.4 1.5zM76.7 8l-.7.5-1.9-1.6-2.2 2 .9.9v7.5l-2.4-1.5V9.6l.8-.5-2.3-2.2-2.2 2 .9.9V17l-.3.2-2.1-1.5v-6c0-1.4-.7-1.8-1.5-2.3-.7-.5-1.1-.8-1.1-1.5 0-.6.6-.9.9-1.1v-.2c-.8 0-2.9.8-2.9 2.7 0 1 .5 1.4 1 1.9s1 .9 1 1.8v5.8l-1.1.8.2.2 1-.8 2.3 2 2.5-1.7 2.8 1.7 5.3-3.1V9.2l1.3-1-.2-.2zm18.6-5.5l-1 .9-2.2-2-3.3 2.4V1.6h-.3l.1 16.2c-.3 0-1.2-.2-1.9-.4l-.2-13.5c0-1-.7-2.4-2.5-2.4s-3 1.4-3 2.8h.3c.1-.6.4-1.1 1-1.1s1.1.4 1.1 1.7v3.9c-1.8.1-2.9 1.1-2.9 2.4 0 .8.4 2 1.6 2V13c-.4-.2-.5-.5-.5-.7 0-.6.5-.8 1.3-.8h.4v6.2c-1.5.5-2.1 1.6-2.1 2.8 0 1.7 1.3 2.9 3.3 2.9 1.4 0 2.6-.2 3.8-.5 1-.2 2.3-.5 2.9-.5.8 0 1.1.4 1.1.9 0 .7-.3 1-.7 1.1v.2c1.6-.3 2.6-1.3 2.6-2.8s-1.5-2.4-3.1-2.4c-.8 0-2.5.3-3.7.5-1.4.3-2.8.5-3.2.5-.7 0-1.5-.3-1.5-1.3 0-.8.7-1.5 2.4-1.5.9 0 2 .1 3.1.4 1.2.3 2.3.6 3.3.6 1.5 0 2.8-.5 2.8-2.6V3.7l1.2-1-.2-.2zm-4.1 6.1c-.3.3-.7.6-1.2.6s-1-.3-1.2-.6V4.2l1-.7 1.4 1.3v3.8zm0 3c-.2-.2-.7-.5-1.2-.5s-1 .3-1.2.5V9c.2.2.7.5 1.2.5s1-.3 1.2-.5v2.6zm0 4.7c0 .8-.5 1.6-1.6 1.6h-.8V12c.2-.2.7-.5 1.2-.5s.9.3 1.2.5v4.3zm13.7-7.1l-3.2-2.3-4.9 2.8v6.5l-1 .8.1.2.8-.6 3.2 2.4 5-3V9.2zm-5.4 6.3V8.3l2.5 1.8v7.1l-2.5-1.7zm14.9-8.4h-.2c-.3.2-.6.4-.9.4-.4 0-.9-.2-1.1-.5h-.2l-1.7 1.9-1.7-1.9-3 2 .1.2.8-.5 1 1.1v6.3l-1.3 1 .2.2.6-.5 2.4 2 3.1-2.1-.1-.2-.9.5-1.2-1V9c.5.5 1.1 1 1.8 1 1.4.1 2.2-1.3 2.3-2.9zm12 9.6L123 19l-4.6-7 3.3-5.1h.2c.4.4 1 .8 1.7.8s1.2-.4 1.5-.8h.2c-.1 2-1.5 3.2-2.5 3.2s-1.5-.5-2.1-.8l-.3.5 5 7.4 1-.6v.1zm-11-.5l-1.3 1 .2.2.6-.5 2.2 2 3-2-.2-.2-.8.5-1-1V.8h-.1l-3.6 2.4v.2c.4.2 1 .3 1 1.5v11.3zM143 2.9c0-2-1.9-2.5-3.4-2.5v.3c.9 0 1.6.3 1.6 1 0 .4-.3 1-1.2 1-.7 0-2.2-.4-3.3-.8-1.3-.4-2.5-.8-3.5-.8-2 0-3.4 1.5-3.4 3.2 0 1.5 1.1 2 1.5 2.2l.1-.2c-.3-.2-.6-.4-.6-1 0-.4.4-1.1 1.4-1.1.9 0 2.1.4 3.7.9 1.4.4 2.9.7 3.7.8V9l-1.5 1.3v.1l1.5 1.3V16c-.8.5-1.7.6-2.5.6-1.5 0-2.8-.4-3.9-1.6l4.1-2V6l-5 2.2c.5-1.3 1.6-2.2 2.6-2.9l-.1-.2c-3 .8-5.7 3.5-5.7 6.9 0 4 3.3 7 7 7 4 0 6.6-3.2 6.6-6.5h-.2c-.6 1.3-1.5 2.5-2.6 3.1v-4.1l1.6-1.3v-.1L140 8.8v-3c1.5 0 3-1 3-2.9zm-8.7 11l-1.2.6c-.7-.9-1.1-2.1-1.1-3.8 0-.7.1-1.5.3-2.1l2.1-.9-.1 6.2zm12.2-12h-.1l-2 1.7v.1l1.7 1.9h.2l2-1.7v-.1l-1.8-1.9zm3 14.8l-.8.5-1-1V9.3l1-.7-.2-.2-.7.6-1.8-2.1-2.9 2 .2.3.7-.5.9 1.1v6.5l-1.3 1 .1.2.7-.5 2.2 2 3-2-.1-.3zm16.7-.1l-.7.5-1.1-1V9.3l1-.8-.2-.2-.8.7-2.3-2.1-3 2.1-2.3-2.1L154 9l-1.8-2.1-2.9 2 .1.3.7-.5 1 1.1v6.5l-.8.8 2.3 1.9 2.2-2-.9-.9V9.3l.9-.6 1.5 1.4v6l-.8.8 2.3 1.9 2.2-2-.9-.9V9.3l.8-.5 1.6 1.4v6l-.7.7 2.3 2.1 3.1-2.1v-.3zm8.7-1.5l-2.5 1.9-2.5-2v-1.2l4.7-3.2v-.1l-2.4-3.6-5.2 2.8v6.8l3.5 2.5 4.5-3.6-.1-.3zm-5-1.7V8.5l.2-.1 2.2 3.5-2.4 1.5zm14.1-.9l-1.9-1.5c1.3-1.1 1.8-2.6 1.8-3.6v-.6h-.2c-.2.5-.6 1-1.4 1-.8 0-1.3-.4-1.8-1L176 9.3v3.6l1.7 1.3c-1.7 1.5-2 2.5-2 3.3 0 1 .5 1.7 1.3 2l.1-.2c-.2-.2-.4-.3-.4-.8 0-.3.4-.8 1.2-.8 1 0 1.6.7 1.9 1l4.3-2.6v-3.6h-.1zm-1.1-3c-.7 1.2-2.2 2.4-3.1 3l-1.1-.9V8.1c.4 1 1.5 1.8 2.6 1.8.7 0 1.1-.1 1.6-.4zm-1.7 8c-.5-1.1-1.7-1.9-2.9-1.9-.3 0-1.1 0-1.9.5.5-.8 1.8-2.2 3.5-3.2l1.2 1 .1 3.6z"></path></svg></a>
                                    </div>
                                    <div class="css-o2c64h e1c1i1hy1">
                                        <a href="https://www.nytimes.com/subscription/multiproduct/lp8HYKU.html?campaignId=6W74R" class="css-1kj7lfb nytcp-opt" data-testid="subscribe-button"><button class="css-1bnxwmn e1c1i1hy0">Subscribe</button>
                                        <div class="optimizelyOK vi_bar1 css-1nkps6a"></div></a><a href="https://myaccount.nytimes.com/auth/login?response_type=cookie&amp;client_id=vi" class="css-1kj7lfb"><button class="css-1bnxwmn e1c1i1hy0" data-testid="login-button">Log In</button></a>
                                        <div class="css-6n7j50">
                                            <button aria-haspopup="true" aria-expanded="false" aria-label="User Settings" class="e1c1i1hy4 css-1i8g3m4" data-testid="user-settings-button"><svg class="css-10m9xeu" viewbox="0 0 16 16" fill="#333">
                                            <path d="M8,10c-2.5,0-7,1.1-7,3.5V16h14v-2.5C15,11.1,10.5,10,8,10z"></path>
                                            <circle cx="8" cy="4" r="4"></circle></svg></button>
                                        </div>
                                    </div>
                                </section>
                                <section class="hasLinks css-3qijnq ea53akk3">
                                    <div class="css-uqyvli ea53akk0"></div>
                                    <div class="css-1uqjmks ea53akk1"></div>
                                    <div class="css-9e9ivx">
                                        <a href="https://myaccount.nytimes.com/auth/login?response_type=cookie&amp;client_id=vi" class="css-1gz70xg">Log In</a>
                                    </div>
                                    <div class="css-1bvtpon ea53akk2">
                                        <a href="https://www.nytimes.com/section/todayspaper" class="css-2bwtzy">Today’s Paper</a>
                                    </div>
                                </section>
                            </header>
                        </div>
                    </div>
                    <main id="site-content">
                        <div>
                            <div class="css-eqw76k" style="opacity:0.000000001;z-index:-1;visibility:hidden">
                                <div class="css-m6xlts">
                                    <div class="css-1ahhg7f">
                                        <span class="css-17xtcya"><a href="/pages/business/economy/index.html">Economy</a></span><span class="css-x15j1o">|</span><span class="css-rs6kf8">As Debt Rises, the Government Will Soon Spend More on Interest Than on the Military</span>
                                    </div>
                                    <div class="css-k008qs">
                                        <div class="css-1iwv8en">
                                            <a href="/"><svg class="css-1ri25x2" viewbox="0 0 16 22">
                                            <path d="M15.863 13.08c-.687 1.818-1.923 3.147-3.64 3.916v-3.917l2.129-1.958-2.129-1.889V6.505c1.923-.14 3.228-1.609 3.228-3.358C15.45.84 13.32 0 12.086 0c-.275 0-.55 0-.962.14v.14h.481c.824 0 1.51.42 1.51 1.189 0 .63-.48 1.189-1.304 1.189-2.129 0-4.6-1.749-7.279-1.749C2.13.91.481 2.728.481 4.546c0 1.819 1.03 2.448 2.128 2.798v-.14c-.343-.21-.618-.63-.618-1.189 0-.84.756-1.469 1.648-1.469 2.267 0 5.906 1.959 8.172 1.959h.206v2.727l-2.129 1.889 2.13 1.958v3.987c-.894.35-1.786.49-2.748.49-3.502 0-5.768-2.169-5.768-5.806 0-.839.137-1.678.344-2.518l1.785-.769v7.973l3.57-1.608V6.575L3.984 8.953c.55-1.61 1.648-2.728 2.953-3.358v-.07C3.433 6.295 0 9.023 0 13.08c0 4.686 3.914 7.974 8.446 7.974 4.807 0 7.485-3.288 7.554-7.974h-.137z" fill="#000"></path></svg></a>
                                            <div>
                                                <span class="css-1hfdzay"><a href="/" aria-label="New York Times Logo. Click to visit the homepage"><svg xmlns="http://www.w3.org/2000/svg" class="css-12fr9lp" viewbox="0 0 184 25" fill="#000">
                                                <path d="M13.8 2.9c0-2-1.9-2.5-3.4-2.5v.3c.9 0 1.6.3 1.6 1 0 .4-.3 1-1.2 1-.7 0-2.2-.4-3.3-.8C6.2 1.4 5 1 4 1 2 1 .6 2.5.6 4.2c0 1.5 1.1 2 1.5 2.2l.1-.2c-.2-.2-.5-.4-.5-1 0-.4.4-1.1 1.4-1.1.9 0 2.1.4 3.7.9 1.4.4 2.9.7 3.7.8v3.1L9 10.2v.1l1.5 1.3v4.3c-.8.5-1.7.6-2.5.6-1.5 0-2.8-.4-3.9-1.6l4.1-2V6l-5 2.2C3.6 6.9 4.7 6 5.8 5.4l-.1-.3c-3 .8-5.7 3.6-5.7 7 0 4 3.3 7 7 7 4 0 6.6-3.2 6.6-6.5h-.2c-.6 1.3-1.5 2.5-2.6 3.1v-4.1l1.6-1.3v-.1l-1.6-1.3V5.8c1.5 0 3-1 3-2.9zm-8.7 11l-1.2.6c-.7-.9-1.1-2.1-1.1-3.8 0-.7 0-1.5.2-2.1l2.1-.9v6.2zm10.6 2.3l-1.3 1 .2.2.6-.5 2.2 2 3-2-.1-.2-.8.5-1-1V9.4l.8-.6 1.7 1.4v6.1c0 3.8-.8 4.4-2.5 5v.3c2.8.1 5.4-.8 5.4-5.7V9.3l.9-.7-.2-.2-.8.6-2.5-2.1L18.5 9V.8h-.2l-3.5 2.4v.2c.4.2 1 .4 1 1.5l-.1 11.3zM34 15.1L31.5 17 29 15v-1.2l4.7-3.2v-.1l-2.4-3.6-5.2 2.8v6.6l-1 .8.2.2.9-.7 3.4 2.5 4.5-3.6-.1-.4zm-5-1.7V8.5l.2-.1 2.2 3.5-2.4 1.5zM53.1 2c0-.3-.1-.6-.2-.9h-.2c-.3.8-.7 1.2-1.7 1.2-.9 0-1.5-.5-1.9-.9l-2.9 3.3.2.2 1-.9c.6.5 1.1.9 2.5 1v8.3L44 3.2c-.5-.8-1.2-1.9-2.6-1.9-1.6 0-3 1.4-2.8 3.6h.3c.1-.6.4-1.3 1.1-1.3.5 0 1 .5 1.3 1v3.3c-1.8 0-3 .8-3 2.3 0 .8.4 2 1.6 2.3v-.2c-.2-.2-.3-.4-.3-.7 0-.5.4-.9 1.1-.9h.5v4.2c-2.1 0-3.8 1.2-3.8 3.2 0 1.9 1.6 2.8 3.4 2.7v-.2c-1.1-.1-1.6-.6-1.6-1.3 0-.9.6-1.3 1.4-1.3.8 0 1.5.5 2 1.1l2.9-3.2-.2-.2-.7.8c-1.1-1-1.7-1.3-3-1.5V5l8 14h.6V5c1.5-.1 2.9-1.3 2.9-3zm7.3 13.1L57.9 17l-2.5-2v-1.2l4.7-3.2v-.1l-2.4-3.6-5.2 2.8v6.6l-1 .8.2.2.9-.7 3.4 2.5 4.5-3.6-.1-.4zm-5-1.7V8.5l.2-.1 2.2 3.5-2.4 1.5zM76.7 8l-.7.5-1.9-1.6-2.2 2 .9.9v7.5l-2.4-1.5V9.6l.8-.5-2.3-2.2-2.2 2 .9.9V17l-.3.2-2.1-1.5v-6c0-1.4-.7-1.8-1.5-2.3-.7-.5-1.1-.8-1.1-1.5 0-.6.6-.9.9-1.1v-.2c-.8 0-2.9.8-2.9 2.7 0 1 .5 1.4 1 1.9s1 .9 1 1.8v5.8l-1.1.8.2.2 1-.8 2.3 2 2.5-1.7 2.8 1.7 5.3-3.1V9.2l1.3-1-.2-.2zm18.6-5.5l-1 .9-2.2-2-3.3 2.4V1.6h-.3l.1 16.2c-.3 0-1.2-.2-1.9-.4l-.2-13.5c0-1-.7-2.4-2.5-2.4s-3 1.4-3 2.8h.3c.1-.6.4-1.1 1-1.1s1.1.4 1.1 1.7v3.9c-1.8.1-2.9 1.1-2.9 2.4 0 .8.4 2 1.6 2V13c-.4-.2-.5-.5-.5-.7 0-.6.5-.8 1.3-.8h.4v6.2c-1.5.5-2.1 1.6-2.1 2.8 0 1.7 1.3 2.9 3.3 2.9 1.4 0 2.6-.2 3.8-.5 1-.2 2.3-.5 2.9-.5.8 0 1.1.4 1.1.9 0 .7-.3 1-.7 1.1v.2c1.6-.3 2.6-1.3 2.6-2.8s-1.5-2.4-3.1-2.4c-.8 0-2.5.3-3.7.5-1.4.3-2.8.5-3.2.5-.7 0-1.5-.3-1.5-1.3 0-.8.7-1.5 2.4-1.5.9 0 2 .1 3.1.4 1.2.3 2.3.6 3.3.6 1.5 0 2.8-.5 2.8-2.6V3.7l1.2-1-.2-.2zm-4.1 6.1c-.3.3-.7.6-1.2.6s-1-.3-1.2-.6V4.2l1-.7 1.4 1.3v3.8zm0 3c-.2-.2-.7-.5-1.2-.5s-1 .3-1.2.5V9c.2.2.7.5 1.2.5s1-.3 1.2-.5v2.6zm0 4.7c0 .8-.5 1.6-1.6 1.6h-.8V12c.2-.2.7-.5 1.2-.5s.9.3 1.2.5v4.3zm13.7-7.1l-3.2-2.3-4.9 2.8v6.5l-1 .8.1.2.8-.6 3.2 2.4 5-3V9.2zm-5.4 6.3V8.3l2.5 1.8v7.1l-2.5-1.7zm14.9-8.4h-.2c-.3.2-.6.4-.9.4-.4 0-.9-.2-1.1-.5h-.2l-1.7 1.9-1.7-1.9-3 2 .1.2.8-.5 1 1.1v6.3l-1.3 1 .2.2.6-.5 2.4 2 3.1-2.1-.1-.2-.9.5-1.2-1V9c.5.5 1.1 1 1.8 1 1.4.1 2.2-1.3 2.3-2.9zm12 9.6L123 19l-4.6-7 3.3-5.1h.2c.4.4 1 .8 1.7.8s1.2-.4 1.5-.8h.2c-.1 2-1.5 3.2-2.5 3.2s-1.5-.5-2.1-.8l-.3.5 5 7.4 1-.6v.1zm-11-.5l-1.3 1 .2.2.6-.5 2.2 2 3-2-.2-.2-.8.5-1-1V.8h-.1l-3.6 2.4v.2c.4.2 1 .3 1 1.5v11.3zM143 2.9c0-2-1.9-2.5-3.4-2.5v.3c.9 0 1.6.3 1.6 1 0 .4-.3 1-1.2 1-.7 0-2.2-.4-3.3-.8-1.3-.4-2.5-.8-3.5-.8-2 0-3.4 1.5-3.4 3.2 0 1.5 1.1 2 1.5 2.2l.1-.2c-.3-.2-.6-.4-.6-1 0-.4.4-1.1 1.4-1.1.9 0 2.1.4 3.7.9 1.4.4 2.9.7 3.7.8V9l-1.5 1.3v.1l1.5 1.3V16c-.8.5-1.7.6-2.5.6-1.5 0-2.8-.4-3.9-1.6l4.1-2V6l-5 2.2c.5-1.3 1.6-2.2 2.6-2.9l-.1-.2c-3 .8-5.7 3.5-5.7 6.9 0 4 3.3 7 7 7 4 0 6.6-3.2 6.6-6.5h-.2c-.6 1.3-1.5 2.5-2.6 3.1v-4.1l1.6-1.3v-.1L140 8.8v-3c1.5 0 3-1 3-2.9zm-8.7 11l-1.2.6c-.7-.9-1.1-2.1-1.1-3.8 0-.7.1-1.5.3-2.1l2.1-.9-.1 6.2zm12.2-12h-.1l-2 1.7v.1l1.7 1.9h.2l2-1.7v-.1l-1.8-1.9zm3 14.8l-.8.5-1-1V9.3l1-.7-.2-.2-.7.6-1.8-2.1-2.9 2 .2.3.7-.5.9 1.1v6.5l-1.3 1 .1.2.7-.5 2.2 2 3-2-.1-.3zm16.7-.1l-.7.5-1.1-1V9.3l1-.8-.2-.2-.8.7-2.3-2.1-3 2.1-2.3-2.1L154 9l-1.8-2.1-2.9 2 .1.3.7-.5 1 1.1v6.5l-.8.8 2.3 1.9 2.2-2-.9-.9V9.3l.9-.6 1.5 1.4v6l-.8.8 2.3 1.9 2.2-2-.9-.9V9.3l.8-.5 1.6 1.4v6l-.7.7 2.3 2.1 3.1-2.1v-.3zm8.7-1.5l-2.5 1.9-2.5-2v-1.2l4.7-3.2v-.1l-2.4-3.6-5.2 2.8v6.8l3.5 2.5 4.5-3.6-.1-.3zm-5-1.7V8.5l.2-.1 2.2 3.5-2.4 1.5zm14.1-.9l-1.9-1.5c1.3-1.1 1.8-2.6 1.8-3.6v-.6h-.2c-.2.5-.6 1-1.4 1-.8 0-1.3-.4-1.8-1L176 9.3v3.6l1.7 1.3c-1.7 1.5-2 2.5-2 3.3 0 1 .5 1.7 1.3 2l.1-.2c-.2-.2-.4-.3-.4-.8 0-.3.4-.8 1.2-.8 1 0 1.6.7 1.9 1l4.3-2.6v-3.6h-.1zm-1.1-3c-.7 1.2-2.2 2.4-3.1 3l-1.1-.9V8.1c.4 1 1.5 1.8 2.6 1.8.7 0 1.1-.1 1.6-.4zm-1.7 8c-.5-1.1-1.7-1.9-2.9-1.9-.3 0-1.1 0-1.9.5.5-.8 1.8-2.2 3.5-3.2l1.2 1 .1 3.6z"></path></svg></a></span>
                                            </div>
                                        </div>
                                        <div class="css-19gb6gw">
                                            <div class="">
                                                <div role="toolbar" aria-label="Social Media Share buttons, Save button, and Comments Panel with current comment count" class="css-4skfbu" data-testid="share-tools">
                                                    <ul class="css-y8aj3r">
                                                        <li class="css-1fcn4th">
                                                            <a href="https://www.facebook.com/dialog/feed?app_id=9869919170&amp;link=https%3A%2F%2Fwww.nytimes.com%2F2018%2F09%2F25%2Fbusiness%2Feconomy%2Fus-government-debt-interest.html&amp;smid=fb-share&amp;name=As%20Debt%20Rises%2C%20the%20Government%20Will%20Soon%20Spend%20More%20on%20Interest%20Than%20on%20the%20Military&amp;redirect_uri=https%3A%2F%2Fwww.facebook.com%2F" target="_blank" rel="noopener noreferrer" aria-label="Share on Facebook"><svg class="css-13zu7ev" viewbox="0 0 7 15" width="7" height="15">
                                                            <path fill-rule="evenodd" clip-rule="evenodd" d="M4.775 14.163V7.08h1.923l.255-2.441H4.775l.004-1.222c0-.636.06-.977.958-.977H6.94V0H5.016c-2.31 0-3.123 1.184-3.123 3.175V4.64H.453v2.44h1.44v7.083h2.882z" fill="#000"></path></svg></a>
                                                        </li>
                                                        <li class="css-1fcn4th">
                                                            <a href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fnyti.ms%2F2NC9vam&amp;text=As%20Debt%20Rises%2C%20the%20Government%20Will%20Soon%20Spend%20More%20on%20Interest%20Than%20on%20the%20Military" target="_blank" rel="noopener noreferrer" aria-label="Share on Twitter"><svg viewbox="0 0 13 10" class="css-13zu7ev" width="13" height="10">
                                                            <path fill-rule="evenodd" clip-rule="evenodd" d="M5.987 2.772l.025.425-.429-.052c-1.562-.2-2.927-.876-4.086-2.011L.93.571.784.987c-.309.927-.111 1.906.533 2.565.343.364.266.416-.327.2-.206-.07-.386-.122-.403-.096-.06.06.146.85.309 1.161.223.434.678.858 1.176 1.11l.42.199-.497.009c-.481 0-.498.008-.447.19.172.564.85 1.162 1.606 1.422l.532.182-.464.277a4.833 4.833 0 0 1-2.3.641c-.387.009-.704.044-.704.07 0 .086 1.047.572 1.657.762 1.828.564 4 .32 5.631-.641 1.159-.685 2.318-2.045 2.859-3.363.292-.702.583-1.984.583-2.6 0-.398.026-.45.507-.927.283-.277.55-.58.6-.667.087-.165.078-.165-.36-.018-.73.26-.832.226-.472-.164.266-.278.584-.78.584-.928 0-.026-.129.018-.275.096a4.79 4.79 0 0 1-.755.294l-.464.148-.42-.286C9.66.467 9.335.293 9.163.24 8.725.12 8.055.137 7.66.276c-1.074.39-1.752 1.395-1.674 2.496z" fill="#000"></path></svg></a>
                                                        </li>
                                                        <li class="css-1fcn4th">
                                                            <a href="mailto:?subject=NYTimes.com%3A%20As%20Debt%20Rises%2C%20the%20Government%20Will%20Soon%20Spend%20More%20on%20Interest%20Than%20on%20the%20Military&amp;body=From%20The%20New%20York%20Times%3A%0A%0AAs%20Debt%20Rises%2C%20the%20Government%20Will%20Soon%20Spend%20More%20on%20Interest%20Than%20on%20the%20Military%0A%0ATax%20cuts%2C%20spending%20increases%20and%20higher%20interest%20rates%20could%20make%20it%20harder%20to%20respond%20to%20future%20recessions%20and%20deal%20with%20other%20needs.%0A%0Ahttps%3A%2F%2Fwww.nytimes.com%2F2018%2F09%2F25%2Fbusiness%2Feconomy%2Fus-government-debt-interest.html" target="_blank" rel="noopener noreferrer" aria-label="Email"><svg viewbox="0 0 15 9" class="css-13zu7ev" width="15" height="9">
                                                            <path fill-rule="evenodd" clip-rule="evenodd" d="M.906 8.418V0L5.64 4.76.906 8.419zm13 0L9.174 4.761 13.906 0v8.418zM7.407 6.539l-1.13-1.137L.907 9h13l-5.37-3.598-1.13 1.137zM1.297 0h12.22l-6.11 5.095L1.297 0z" fill="#000"></path></svg></a>
                                                        </li>
                                                        <li class="css-1fcn4th">
                                                            <div class="css-6n7j50">
                                                                <button aria-haspopup="true" aria-expanded="false" aria-label="More sharing options" class="css-16ogagc" data-testid=""><svg class="css-f7l8cz" viewbox="0 0 16 13" width="16" height="13">
                                                                <path fill-rule="evenodd" clip-rule="evenodd" d="M15.406 5.359L8.978 0v3.215C3.82 3.215.406 8.107.406 12.66 1.653 9.133 4.29 7.517 8.978 7.517v3.2l6.428-5.358z" fill="#000"></path></svg></button>
                                                            </div>
                                                        </li>
                                                    </ul>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <meta itemprop="isAccessibleForFree" content="false" /><span itemprop="isPartOf" itemscope="itemscope" itemtype="http://schema.org/CreativeWork%20http://schema.org/Product">
                            <meta itemprop="name" content="The New York Times Company" />
                            <meta itemprop="productID" content="nytimes.com:basic" /></span>
                            <article id="story" class="css-1vxca1d e1qksbhf0">
                                <div id="top-wrapper" class="css-1sy8kpn">
                                    <div id="top" style="display: block; height: 100%; min-height: 90px; text-align: center;"></div>
                                </div>
                                <header class="css-103xxh4 euiyums1">
                                    <div id="sponsor-wrapper" class="css-1hyfx7x">
                                        <div id="sponsor-slug" class="css-19vbshk">
                                            <p>
                                                Supported by
                                            </p>
                                        </div>
                                        <div class="ad sponsor-wrapper" style="text-align:center;height:100%;display:block">
                                            <div id="sponsor"></div>
                                        </div>
                                    </div>
                                    <div class="css-1rk3iho ehdk2mb0">
                                        <h1 class="css-2tpadd e1h9rw200" itemprop="headline" id="link-68f40e13">
                                            <span>As Debt Rises, the Government Will Soon Spend More on Interest Than on the Military</span>
                                        </h1>
                                    </div>
                                    <p class="css-z6dj7x e1wiw3jv0">
                                        Tax cuts, spending increases and higher interest rates could make it harder to respond to future recessions and deal with other needs.
                                    </p>
                                    <div data-testid="photoviewer-wrapper" class="css-79elbk ehw59r11">
                                        <div class="css-z3e15g" data-testid="photoviewer-wrapper-hidden"></div>
                                        <div data-testid="photoviewer-children" class="css-1a48zt4 ehw59r111">
                                            <figure class="sizeMedium layoutHorizontal css-1b4fpzk toneNews" aria-label="media" role="group" itemscope="itemscope" itemprop="associatedMedia" itemid="https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleLarge.jpg?quality=90&amp;auto=webp" itemtype="http://schema.org/ImageObject">
                                                <div class="css-bsn42l">
                                                    <span class="css-1dv1kvn">Image</span><img alt="" class="css-11cwn6f" src="https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleLarge.jpg?quality=75&amp;auto=webp&amp;disable=upscale" srcset="https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleLarge.jpg?quality=90&amp;auto=webp 600w,https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-jumbo.jpg?quality=90&amp;auto=webp 1024w,https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-superJumbo.jpg?quality=90&amp;auto=webp 2048w" sizes="((min-width: 600px) and (max-width: 1004px)) 84vw, (min-width: 1005px) 60vw, 100vw" itemprop="url" itemid="https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleLarge.jpg?quality=75&amp;auto=webp&amp;disable=upscale" />
                                                </div>
                                                <figcaption itemprop="caption description" class="css-17ai7jg emkp2hg0">
                                                    <span class="css-8i9d0s e13ogyst0">Interest payments on the federal debt could surpass the Defense Department budget in 2023.</span><span itemprop="copyrightHolder" class="emkp2hg2 css-1nwzsjy e1z0qqy90"><span class="css-1ly73wi e1tej78p0">Credit</span><span><span class="css-1dv1kvn">Credit</span><span>Jeon Heon-Kyun/EPA, via Shutterstock</span></span></span>
                                                </figcaption>
                                            </figure>
                                        </div>
                                    </div>
                                    <div class="css-xt80pu euiyums0">
                                        <div class="css-acwcvw">
                                            <div class="css-17xsp6v epjyd6m0">
                                                <div class="css-1baulvz">
                                                    <p class="css-16vrk19 e1jsehar1" itemprop="author creator" itemscope="itemscope" itemtype="http://schema.org/Person" itemid="">
                                                        By<!-- --> <a href="https://www.nytimes.com/by/nelson-d-schwartz" class="css-1riqqik e1jsehar0"><span class="css-1baulvz" itemprop="name">Nelson D. Schwartz</span></a>
                                                    </p>
                                                </div>
                                            </div>
                                            <ul class="css-1w5cs23 epjyd6m1">
                                                <li>
                                                    <time class="css-qddhf4 e16638kd0" datetime="2018-09-25">Sept. 25, 2018</time>
                                                </li>
                                                <li class="css-6n7j50">
                                                    <div class="">
                                                        <div role="toolbar" aria-label="Social Media Share buttons, Save button, and Comments Panel with current comment count" class="css-d8bdto" data-testid="share-tools">
                                                            <ul class="css-y8aj3r">
                                                                <li class="css-60hakz">
                                                                    <a href="https://www.facebook.com/dialog/feed?app_id=9869919170&amp;link=https%3A%2F%2Fwww.nytimes.com%2F2018%2F09%2F25%2Fbusiness%2Feconomy%2Fus-government-debt-interest.html&amp;smid=fb-share&amp;name=As%20Debt%20Rises%2C%20the%20Government%20Will%20Soon%20Spend%20More%20on%20Interest%20Than%20on%20the%20Military&amp;redirect_uri=https%3A%2F%2Fwww.facebook.com%2F" target="_blank" rel="noopener noreferrer" aria-label="Share on Facebook"><svg class="css-4brsb6" viewbox="0 0 7 15" width="7" height="15">
                                                                    <path fill-rule="evenodd" clip-rule="evenodd" d="M4.775 14.163V7.08h1.923l.255-2.441H4.775l.004-1.222c0-.636.06-.977.958-.977H6.94V0H5.016c-2.31 0-3.123 1.184-3.123 3.175V4.64H.453v2.44h1.44v7.083h2.882z" fill="#000"></path></svg></a>
                                                                </li>
                                                                <li class="css-60hakz">
                                                                    <a href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fnyti.ms%2F2NC9vam&amp;text=As%20Debt%20Rises%2C%20the%20Government%20Will%20Soon%20Spend%20More%20on%20Interest%20Than%20on%20the%20Military" target="_blank" rel="noopener noreferrer" aria-label="Share on Twitter"><svg viewbox="0 0 13 10" class="css-4brsb6" width="13" height="10">
                                                                    <path fill-rule="evenodd" clip-rule="evenodd" d="M5.987 2.772l.025.425-.429-.052c-1.562-.2-2.927-.876-4.086-2.011L.93.571.784.987c-.309.927-.111 1.906.533 2.565.343.364.266.416-.327.2-.206-.07-.386-.122-.403-.096-.06.06.146.85.309 1.161.223.434.678.858 1.176 1.11l.42.199-.497.009c-.481 0-.498.008-.447.19.172.564.85 1.162 1.606 1.422l.532.182-.464.277a4.833 4.833 0 0 1-2.3.641c-.387.009-.704.044-.704.07 0 .086 1.047.572 1.657.762 1.828.564 4 .32 5.631-.641 1.159-.685 2.318-2.045 2.859-3.363.292-.702.583-1.984.583-2.6 0-.398.026-.45.507-.927.283-.277.55-.58.6-.667.087-.165.078-.165-.36-.018-.73.26-.832.226-.472-.164.266-.278.584-.78.584-.928 0-.026-.129.018-.275.096a4.79 4.79 0 0 1-.755.294l-.464.148-.42-.286C9.66.467 9.335.293 9.163.24 8.725.12 8.055.137 7.66.276c-1.074.39-1.752 1.395-1.674 2.496z" fill="#000"></path></svg></a>
                                                                </li>
                                                                <li class="css-60hakz">
                                                                    <a href="mailto:?subject=NYTimes.com%3A%20As%20Debt%20Rises%2C%20the%20Government%20Will%20Soon%20Spend%20More%20on%20Interest%20Than%20on%20the%20Military&amp;body=From%20The%20New%20York%20Times%3A%0A%0AAs%20Debt%20Rises%2C%20the%20Government%20Will%20Soon%20Spend%20More%20on%20Interest%20Than%20on%20the%20Military%0A%0ATax%20cuts%2C%20spending%20increases%20and%20higher%20interest%20rates%20could%20make%20it%20harder%20to%20respond%20to%20future%20recessions%20and%20deal%20with%20other%20needs.%0A%0Ahttps%3A%2F%2Fwww.nytimes.com%2F2018%2F09%2F25%2Fbusiness%2Feconomy%2Fus-government-debt-interest.html" target="_blank" rel="noopener noreferrer" aria-label="Email"><svg viewbox="0 0 15 9" class="css-4brsb6" width="15" height="9">
                                                                    <path fill-rule="evenodd" clip-rule="evenodd" d="M.906 8.418V0L5.64 4.76.906 8.419zm13 0L9.174 4.761 13.906 0v8.418zM7.407 6.539l-1.13-1.137L.907 9h13l-5.37-3.598-1.13 1.137zM1.297 0h12.22l-6.11 5.095L1.297 0z" fill="#000"></path></svg></a>
                                                                </li>
                                                                <li class="css-60hakz">
                                                                    <div class="css-6n7j50">
                                                                        <button aria-haspopup="true" aria-expanded="false" aria-label="More sharing options" class="css-16ogagc" data-testid=""><svg class="css-uhuo44" viewbox="0 0 16 13" width="16" height="13">
                                                                        <path fill-rule="evenodd" clip-rule="evenodd" d="M15.406 5.359L8.978 0v3.215C3.82 3.215.406 8.107.406 12.66 1.653 9.133 4.29 7.517 8.978 7.517v3.2l6.428-5.358z" fill="#000"></path></svg></button>
                                                                    </div>
                                                                </li>
                                                            </ul>
                                                        </div>
                                                    </div>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                </header>
                                <section name="articleBody" itemprop="articleBody" class="css-1i2y565">
                                    <div class="css-1fanzo5 StoryBodyCompanionColumn">
                                        <div class="css-53u6y8">
                                            <p class="css-1ygdjhk evys1bk0">
                                                The federal government could soon pay more in interest on its debt than it spends on the military, Medicaid or children’s programs.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                The run-up in borrowing costs is a one-two punch brought on by the need to finance a fast-growing budget deficit, worsened by tax cuts and steadily rising interest rates that will make the debt more expensive.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                With less money coming in and more going toward interest, political leaders will find it harder to address pressing needs like fixing crumbling roads and bridges or to make emergency moves like pulling the economy out of future recessions.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                Within a decade, more than $900 billion in interest payments will be due annually, easily outpacing spending on myriad other programs. Already the fastest-growing major government expense, the cost of interest is on track to hit $390 billion next year, nearly 50 percent more than in 2017, according to the Congressional Budget Office.
                                            </p>
                                        </div>
                                        <aside class="css-o6xoe7"></aside>
                                    </div>
                                    <div class="css-1fanzo5 StoryBodyCompanionColumn">
                                        <div class="css-53u6y8">
                                            <p class="css-1ygdjhk evys1bk0">
                                                “It’s very much something to worry about,” said C. Eugene Steuerle, a fellow at the Urban Institute and a co-founder of the Urban-Brookings Tax Policy Center in Washington. “Everything else is getting squeezed.”
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                Gradually rising interest rates would have made borrowing more expensive even without additional debt. But the tax cuts passed late last year have created a deeper hole, with the deficit increasing faster than expected. A budget bill <a class="css-1g7m0tk" href="https://www.nytimes.com/2018/02/08/us/politics/congress-budget-deal-vote.html?module=inline" title="">approved in February that raised</a> spending by $300 billion over two years will add to the financial pressure.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                The deficit is expected to total nearly $1 trillion next year — the first time it has been that big <!-- -->since 2012<!-- -->, when the economy was still struggling to recover from the financial crisis and interest rates were near zero.
                                            </p>
                                        </div>
                                        <aside class="css-o6xoe7"></aside>
                                    </div>
                                    <div class="css-13nfagi">
                                        <section id="interest-on-national-debt" data-id="100000006106654" class="interactive-embedded interactive-size-scoop custom-graphic-container css-rlzall e13l8dds1">
                                            <header class="css-cl76n0 interactive-header">
                                                <p data-testid="leadin" class="css-1vs7yia interactive-leadin custom-leadin">
                                                    Annual interest payments on the national debt are expected to triple over the next decade, according to the Congressional Budget Office.
                                                </p>
                                            </header>
                                            <div class="interactive-graphic custom-graphic css-17ih8de e13l8dds0">
                                                <!-- Generated by ai2html v0.74.0 - 2018-09-14 15:18 -->
                                                <!-- ai file: 0916 biz web DEBT CHART 1.ai -->
                                                <!-- preview: 2018-09-14-interest-on-national-debt -->
                                                <!-- scoop: interest-on-national-debt -->
                                                <div id="g-0916-biz-web-DEBT-CHART-1-box" class="ai2html ai2html-box-v5">
                                                    <!-- Artboard: Artboard_2 -->
                                                    <div id="g-0916-biz-web-DEBT-CHART-1-Artboard_2" class="g-artboard" data-aspect-ratio="1.382" data-min-width="600">
                                                        <img id="g-0916-biz-web-DEBT-CHART-1-Artboard_2-img" class="g-aiImg" data-src="https://static01.nyt.com/newsgraphics/2018/09/14/interest-on-national-debt/313e919f83bb85b62966d7f70121c5f3f3ea740b/0916-biz-web-DEBT-CHART-1-Artboard_2.png" src="data:image/gif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==" />
                                                        <div id="g-ai0-1" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:4.8869%;margin-top:-16.2px;left:96.5906%;margin-left:-30px;width:60px;">
                                                            <p class="g-pstyle0">
                                                                $915
                                                            </p>
                                                            <p class="g-pstyle0">
                                                                billion
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-2" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:4.4262%;margin-top:-9.2px;left:0.0838%;width:243px;">
                                                            <p class="g-pstyle1">
                                                                Interest payments on the national debt
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-3" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.5016%;margin-top:-9.2px;right:94.9386%;width:52px;">
                                                            <p class="g-pstyle2">
                                                                $900
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-4" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.5016%;margin-top:-9.2px;left:5.4133%;width:55px;">
                                                            <p class="g-pstyle3">
                                                                billion
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-5" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:34.841%;margin-top:-9.2px;right:95.0369%;width:44px;">
                                                            <p class="g-pstyle2">
                                                                600
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-6" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:60.4108%;margin-top:-9.2px;right:95.0369%;width:44px;">
                                                            <p class="g-pstyle2">
                                                                300
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-7" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:70.9998%;margin-top:-16.2px;left:5.8153%;margin-left:-30px;width:60px;">
                                                            <p class="g-pstyle0">
                                                                $263
                                                            </p>
                                                            <p class="g-pstyle0">
                                                                billion
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-8" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:85.7502%;margin-top:-9.2px;right:95.0669%;width:29px;">
                                                            <p class="g-pstyle2">
                                                                0
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-9" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:6.1605%;margin-left:-19.5px;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’17
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-10" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:14.4067%;margin-left:-19.5px;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’18
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-11" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:22.6527%;margin-left:-19.5px;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’19
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-12" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:30.9281%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’20
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-13" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:39.1744%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’21
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-14" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:47.4205%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’22
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-15" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:55.6667%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’23
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-16" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:63.9128%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’24
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-17" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:72.1591%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’25
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-18" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:80.4054%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’26
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-19" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:88.6513%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’27
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-20" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:96.8975%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’28
                                                            </p>
                                                        </div>
                                                    </div><!-- Artboard: Artboard_3 -->
                                                    <div id="g-0916-biz-web-DEBT-CHART-1-Artboard_3" class="g-artboard" data-aspect-ratio="0.691" data-min-width="300" data-max-width="599">
                                                        <img id="g-0916-biz-web-DEBT-CHART-1-Artboard_3-img" class="g-aiImg" data-src="https://static01.nyt.com/newsgraphics/2018/09/14/interest-on-national-debt/313e919f83bb85b62966d7f70121c5f3f3ea740b/0916-biz-web-DEBT-CHART-1-Artboard_3.png" src="data:image/gif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==" />
                                                        <div id="g-ai1-1" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:4.4262%;margin-top:-9.2px;left:0.2844%;width:243px;">
                                                            <p class="g-pstyle0">
                                                                Interest payments on the national debt
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-2" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.5016%;margin-top:-9.2px;right:90.0367%;width:52px;">
                                                            <p class="g-pstyle1">
                                                                $900
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-3" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.5016%;margin-top:-9.2px;left:10.6594%;width:55px;">
                                                            <p class="g-pstyle2">
                                                                billion
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-4" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:17.787%;margin-top:-16.2px;left:90.6989%;margin-left:-30px;width:60px;">
                                                            <p class="g-pstyle3">
                                                                $915
                                                            </p>
                                                            <p class="g-pstyle3">
                                                                billion
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-5" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:34.841%;margin-top:-9.2px;right:90.2334%;width:44px;">
                                                            <p class="g-pstyle1">
                                                                600
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-6" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:60.4108%;margin-top:-9.2px;right:90.2334%;width:44px;">
                                                            <p class="g-pstyle1">
                                                                300
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-7" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:71.2301%;margin-top:-16.2px;left:10.5497%;margin-left:-30px;width:60px;">
                                                            <p class="g-pstyle3">
                                                                $263
                                                            </p>
                                                            <p class="g-pstyle3">
                                                                billion
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-8" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:85.7502%;margin-top:-9.2px;right:90.2934%;width:29px;">
                                                            <p class="g-pstyle1">
                                                                0
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-9" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:10.8422%;margin-left:-19.5px;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’17
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-10" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:18.0987%;margin-left:-19.5px;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’18
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-11" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:25.3552%;margin-left:-19.5px;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’19
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-12" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:32.6703%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’20
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-13" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:39.9268%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’21
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-14" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:47.1836%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’22
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-15" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:54.4401%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’23
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-16" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:61.6967%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’24
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-17" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:68.9535%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’25
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-18" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:76.2102%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’26
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-19" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:83.4665%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’27
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-20" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:90.7234%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’28
                                                            </p>
                                                        </div>
                                                    </div>
                                                </div>
                                                <script type="text/javascript">
                                                //<![CDATA[
                                                (function (scriptEnvironment, nameSpace) {
                                                // Use a sentinel class to ensure that this version of the resizer only initializes once
                                                if (document.documentElement.className.indexOf(nameSpace + "resizer-v5-init") > -1) return;
                                                document.documentElement.className += " " + nameSpace + "resizer-v5-init";
                                                // requires IE9+
                                                if (!("querySelector" in document)) return;
                                                var observer = window.IntersectionObserver ? new IntersectionObserver(onIntersectionChange, {}) : null;
                                                var visibilityIndex = {}; // visibility of each graphic, indexed by container id (used with InteractionObserver)

                                                updateAllGraphics();
                                                window.addEventListener('nyt:embed:load', updateAllGraphics); // for nyt vi compatibility
                                                document.addEventListener("DOMContentLoaded", updateAllGraphics);
                                                window.addEventListener("resize", throttle(updateAllGraphics, 200));

                                                function updateAllGraphics() {
                                                selectElements(".ai2html-box-v5").forEach(updateGraphic);
                                                if (scriptEnvironment == "nyt-preview") {
                                                nytOnResize();
                                                }
                                                }

                                                function updateGraphic(container) {
                                                var artboards = selectElements("." + nameSpace + "artboard[data-min-width]", container),
                                                width = Math.round(container.getBoundingClientRect().width),
                                                id = container.id, // assume container has an id
                                                showImages = !observer || visibilityIndex[id] == 'visible';

                                                // Set artboard visibility based on container width
                                                artboards.forEach(function(el) {
                                                var minwidth = el.getAttribute("data-min-width"),
                                                maxwidth = el.getAttribute("data-max-width");
                                                if (+minwidth <= width && (+maxwidth >= width || maxwidth === null)) {
                                                if (showImages) {
                                                selectElements("." + nameSpace + "aiImg", el).forEach(updateImgSrc);
                                                }
                                                el.style.display = "block";
                                                } else {
                                                el.style.display = "none";
                                                }
                                                });

                                                // Initialize lazy loading on first call, if IntersectionObserver is available
                                                if (observer && !visibilityIndex[id]) {
                                                if (containerIsVisible(container)) {
                                                // Skip IntersectionObserver if graphic is initially visible
                                                // Note: We're doing this after artboard visibility is first calculated
                                                //       (above) -- otherwise all artboard images are display:block and the
                                                //       calculated height of the graphic is huge.
                                                // TODO: Consider making artboard images position:absolute and setting
                                                //       height as a padding % (calculated from the aspect ratio of the graphic).
                                                //       This will correctly set the initial height of the graphic before
                                                //       an image is loaded.
                                                visibilityIndex[id] = 'visible';
                                                updateGraphic(container); // Call again to start loading right away
                                                } else {
                                                visibilityIndex[id] = 'hidden';
                                                observer.observe(container);
                                                }
                                                }
                                                }

                                                function containerIsVisible(container) {
                                                var bounds = container.getBoundingClientRect();
                                                return bounds.top < window.innerHeight && bounds.bottom > 0;
                                                }

                                                // Replace blank placeholder image with actual image
                                                // (only relevant if use_lazy_loader option is true)
                                                function updateImgSrc(img) {
                                                var src = img.getAttribute("data-src");
                                                if (src && img.getAttribute("src") != src) {
                                                img.setAttribute("src", src);
                                                }
                                                }

                                                function onIntersectionChange(entries) {
                                                entries.forEach(function(entry) {
                                                if (entry.isIntersecting) {
                                                visibilityIndex[entry.target.id] = 'visible';
                                                observer.unobserve(entry.target);
                                                updateGraphic(entry.target);
                                                }
                                                });
                                                }

                                                function selectElements(selector, parent) {
                                                var selection = (parent || document).querySelectorAll(selector);
                                                return Array.prototype.slice.call(selection);
                                                }

                                                function nytOnResize() {
                                                // TODO: add comments
                                                try {
                                                if (window.parent && window.parent.$) {
                                                window.parent.$("body").trigger("resizedcontent", [window]);
                                                }
                                                document.documentElement.dispatchEvent(new Event("resizedcontent"));
                                                if (window.require && document.querySelector("meta[name=sourceApp]") && document.querySelector("meta[name=sourceApp]").content == "nyt-v5") {
                                                require(["foundation/main"], function() {
                                                require(["shared/interactive/instances/app-communicator"], function(AppCommunicator) {
                                                        AppCommunicator.triggerResize();
                                                });
                                                });
                                                }
                                                } catch(e) { console.log(e); }
                                                }

                                                // based on underscore.js
                                                function throttle(func, wait) {
                                                var _now = Date.now || function() { return +new Date(); },
                                                timeout = null, previous = 0;
                                                var run = function() {
                                                previous = _now();
                                                timeout = null;
                                                func();
                                                };
                                                return function() {
                                                var remaining = wait - (_now() - previous);
                                                if (remaining <= 0 || remaining > wait) {
                                                if (timeout) {
                                                clearTimeout(timeout);
                                                }
                                                run();
                                                } else if (!timeout) {
                                                timeout = setTimeout(run, remaining);
                                                }
                                                };
                                                }
                                                })("nyt-preview", "g-");
                                                //]]>
                                                </script> <!-- End ai2html - 2018-09-14 15:18 -->
                                                <!-- Pipeline: 2018-09-14-interest-on-national-debt | September 14, 2018, 03:20PM | 313e919f83bb85b62966d7f70121c5f3f3ea740b -->
                                            </div>
                                            <footer class="css-irejme interactive-footer custom-footer">
                                                <p data-testid="credit" class="css-1ct2c9h interactive-credit custom-credit">
                                                    By The New York Times | Source: Congressional Budget Office
                                                </p>
                                            </footer>
                                        </section>
                                    </div>
                                    <div class="css-1fanzo5 StoryBodyCompanionColumn">
                                        <div class="css-53u6y8">
                                            <p class="css-1ygdjhk evys1bk0">
                                                Deficit hawks have gone silent, even proposing changes that would exacerbate the deficit. House Republicans introduced legislation this month that would make the tax cuts permanent.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                “The issue has just disappeared,” said Senator Mark Warner, a Virginia Democrat. “There’s collective amnesia.”
                                            </p>
                                        </div>
                                        <aside class="css-o6xoe7"></aside>
                                    </div>
                                    <div class="css-1fanzo5 StoryBodyCompanionColumn">
                                        <div class="css-53u6y8">
                                            <p class="css-1ygdjhk evys1bk0">
                                                The combination, say economists, marks a journey into mostly uncharted financial territory.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                In the past, government borrowing expanded during recessions and waned in recoveries. That countercyclical policy has been a part of the standard Keynesian toolbox to combat downturns since the Great Depression.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                The deficit is soaring now as the economy booms, meaning the stimulus is pro-cyclical. The risk is that the government would have less room to maneuver if the economy slows.
                                            </p>
                                        </div>
                                        <aside class="css-o6xoe7"></aside>
                                    </div>
                                    <div class="css-13nfagi">
                                        <section id="debt-as-a-share-of-gdp" data-id="100000006106750" class="interactive-embedded interactive-size-scoop custom-graphic-container css-rlzall e13l8dds1">
                                            <header class="css-cl76n0 interactive-header">
                                                <p data-testid="leadin" class="css-1vs7yia interactive-leadin custom-leadin">
                                                    Debt as a percentage of gross domestic product tends to increase during recessions and fall during recoveries. But the debt is increasing now, even as the economy is growing, because of tax cuts and spending increases.
                                                </p>
                                            </header>
                                            <div class="interactive-graphic custom-graphic css-17ih8de e13l8dds0">
                                                <!-- Generated by ai2html v0.74.0 - 2018-09-14 13:34 -->
                                                <!-- ai file: 0916 biz web DEBT CHART 2.ai -->
                                                <!-- preview: 2018-09-14-debt-as-a-share-of-gdp -->
                                                <div id="g-0916-biz-web-DEBT-CHART-2-box" class="ai2html ai2html-box-v5">
                                                    <!-- Artboard: Artboard_2 -->
                                                    <div id="g-0916-biz-web-DEBT-CHART-2-Artboard_2" class="g-artboard" data-aspect-ratio="1.382" data-min-width="600">
                                                        <img id="g-0916-biz-web-DEBT-CHART-2-Artboard_2-img" class="g-aiImg" data-src="https://static01.nyt.com/newsgraphics/2018/09/14/debt-as-a-share-of-gdp/dad2c5186b9c0b968d766fa279d9ed6b76ce776b/0916-biz-web-DEBT-CHART-2-Artboard_2.png" src="data:image/gif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==" />
                                                        <div id="g-ai0-1" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:4.4262%;margin-top:-9.2px;left:0.0838%;width:299px;">
                                                            <p class="g-pstyle0">
                                                                Public debt as a share of gross domestic product
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-2" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.5016%;margin-top:-9.2px;right:95.0369%;width:44px;">
                                                            <p class="g-pstyle1">
                                                                100
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-3" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.5016%;margin-top:-9.2px;left:5.4133%;width:33px;">
                                                            <p class="g-pstyle2">
                                                                %
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-4" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:16.8643%;margin-top:-9.2px;left:23.0468%;margin-left:-42.5px;width:85px;">
                                                            <p class="g-pstyle3">
                                                                RECESSIONS
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-5" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:16.8643%;margin-top:-9.2px;left:78.0253%;width:79px;">
                                                            <p class="g-pstyle4">
                                                                PROJECTED
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-6" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:24.7052%;margin-top:-9.2px;right:94.9686%;width:37px;">
                                                            <p class="g-pstyle1">
                                                                80
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-7" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:39.9089%;margin-top:-9.2px;right:94.9686%;width:37px;">
                                                            <p class="g-pstyle1">
                                                                60
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-8" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:55.3429%;margin-top:-9.2px;right:94.9686%;width:37px;">
                                                            <p class="g-pstyle1">
                                                                40
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-9" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:70.5466%;margin-top:-9.2px;right:94.9686%;width:37px;">
                                                            <p class="g-pstyle1">
                                                                20
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-10" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:85.7502%;margin-top:-9.2px;right:95.0669%;width:29px;">
                                                            <p class="g-pstyle1">
                                                                0
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-11" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:8.5381%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle5">
                                                                ’78
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-12" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:12.2413%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle5">
                                                                ’80
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-13" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:29.7156%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle5">
                                                                ’90
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-14" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:47.1898%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle5">
                                                                ’00
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-15" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:64.635%;margin-left:-19.5px;width:39px;">
                                                            <p class="g-pstyle5">
                                                                ’10
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-16" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:82.1384%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle5">
                                                                ’20
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-17" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:96.0294%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle5">
                                                                ’28
                                                            </p>
                                                        </div>
                                                    </div><!-- Artboard: Artboard_3 -->
                                                    <div id="g-0916-biz-web-DEBT-CHART-2-Artboard_3" class="g-artboard" data-aspect-ratio="0.691" data-min-width="300" data-max-width="599">
                                                        <img id="g-0916-biz-web-DEBT-CHART-2-Artboard_3-img" class="g-aiImg" data-src="https://static01.nyt.com/newsgraphics/2018/09/14/debt-as-a-share-of-gdp/dad2c5186b9c0b968d766fa279d9ed6b76ce776b/0916-biz-web-DEBT-CHART-2-Artboard_3.png" src="data:image/gif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==" />
                                                        <div id="g-ai1-1" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:4.4262%;margin-top:-9.2px;left:0.2844%;width:299px;">
                                                            <p class="g-pstyle0">
                                                                Public debt as a share of gross domestic product
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-2" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.5016%;margin-top:-9.2px;right:90.2334%;width:44px;">
                                                            <p class="g-pstyle1">
                                                                100
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-3" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.5016%;margin-top:-9.2px;left:10.2054%;width:33px;">
                                                            <p class="g-pstyle2">
                                                                %
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-4" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:24.7052%;margin-top:-9.2px;right:90.0968%;width:37px;">
                                                            <p class="g-pstyle1">
                                                                80
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-5" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:39.9089%;margin-top:-9.2px;right:90.0968%;width:37px;">
                                                            <p class="g-pstyle1">
                                                                60
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-6" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:55.3429%;margin-top:-9.2px;right:90.0968%;width:37px;">
                                                            <p class="g-pstyle1">
                                                                40
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-7" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:70.5465%;margin-top:-9.2px;right:90.0968%;width:37px;">
                                                            <p class="g-pstyle1">
                                                                20
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-8" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:80.4432%;margin-top:-9.2px;left:22.2287%;width:85px;">
                                                            <p class="g-pstyle3">
                                                                RECESSIONS
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-9" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:80.4432%;margin-top:-9.2px;left:74.1042%;width:79px;">
                                                            <p class="g-pstyle3">
                                                                PROJECTED
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-10" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:85.7502%;margin-top:-9.2px;right:90.2934%;width:29px;">
                                                            <p class="g-pstyle1">
                                                                0
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-11" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:16.2259%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’80
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-12" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:31.6032%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’90
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-13" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:46.9805%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’00
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-14" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:62.2997%;margin-left:-19.5px;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’10
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-15" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:77.7354%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’20
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-16" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:89.9593%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’28
                                                            </p>
                                                        </div>
                                                    </div>
                                                </div>
                                                <script type="text/javascript">
                                                //<![CDATA[
                                                (function (scriptEnvironment, nameSpace) {
                                                // Use a sentinel class to ensure that this version of the resizer only initializes once
                                                if (document.documentElement.className.indexOf(nameSpace + "resizer-v5-init") > -1) return;
                                                document.documentElement.className += " " + nameSpace + "resizer-v5-init";
                                                // requires IE9+
                                                if (!("querySelector" in document)) return;
                                                var observer = window.IntersectionObserver ? new IntersectionObserver(onIntersectionChange, {}) : null;
                                                var visibilityIndex = {}; // visibility of each graphic, indexed by container id (used with InteractionObserver)

                                                updateAllGraphics();
                                                window.addEventListener('nyt:embed:load', updateAllGraphics); // for nyt vi compatibility
                                                document.addEventListener("DOMContentLoaded", updateAllGraphics);
                                                window.addEventListener("resize", throttle(updateAllGraphics, 200));

                                                function updateAllGraphics() {
                                                selectElements(".ai2html-box-v5").forEach(updateGraphic);
                                                if (scriptEnvironment == "nyt-preview") {
                                                nytOnResize();
                                                }
                                                }

                                                function updateGraphic(container) {
                                                var artboards = selectElements("." + nameSpace + "artboard[data-min-width]", container),
                                                width = Math.round(container.getBoundingClientRect().width),
                                                id = container.id, // assume container has an id
                                                showImages = !observer || visibilityIndex[id] == 'visible';

                                                // Set artboard visibility based on container width
                                                artboards.forEach(function(el) {
                                                var minwidth = el.getAttribute("data-min-width"),
                                                maxwidth = el.getAttribute("data-max-width");
                                                if (+minwidth <= width && (+maxwidth >= width || maxwidth === null)) {
                                                if (showImages) {
                                                selectElements("." + nameSpace + "aiImg", el).forEach(updateImgSrc);
                                                }
                                                el.style.display = "block";
                                                } else {
                                                el.style.display = "none";
                                                }
                                                });

                                                // Initialize lazy loading on first call, if IntersectionObserver is available
                                                if (observer && !visibilityIndex[id]) {
                                                if (containerIsVisible(container)) {
                                                // Skip IntersectionObserver if graphic is initially visible
                                                // Note: We're doing this after artboard visibility is first calculated
                                                //       (above) -- otherwise all artboard images are display:block and the
                                                //       calculated height of the graphic is huge.
                                                // TODO: Consider making artboard images position:absolute and setting
                                                //       height as a padding % (calculated from the aspect ratio of the graphic).
                                                //       This will correctly set the initial height of the graphic before
                                                //       an image is loaded.
                                                visibilityIndex[id] = 'visible';
                                                updateGraphic(container); // Call again to start loading right away
                                                } else {
                                                visibilityIndex[id] = 'hidden';
                                                observer.observe(container);
                                                }
                                                }
                                                }

                                                function containerIsVisible(container) {
                                                var bounds = container.getBoundingClientRect();
                                                return bounds.top < window.innerHeight && bounds.bottom > 0;
                                                }

                                                // Replace blank placeholder image with actual image
                                                // (only relevant if use_lazy_loader option is true)
                                                function updateImgSrc(img) {
                                                var src = img.getAttribute("data-src");
                                                if (src && img.getAttribute("src") != src) {
                                                img.setAttribute("src", src);
                                                }
                                                }

                                                function onIntersectionChange(entries) {
                                                entries.forEach(function(entry) {
                                                if (entry.isIntersecting) {
                                                visibilityIndex[entry.target.id] = 'visible';
                                                observer.unobserve(entry.target);
                                                updateGraphic(entry.target);
                                                }
                                                });
                                                }

                                                function selectElements(selector, parent) {
                                                var selection = (parent || document).querySelectorAll(selector);
                                                return Array.prototype.slice.call(selection);
                                                }

                                                function nytOnResize() {
                                                // TODO: add comments
                                                try {
                                                if (window.parent && window.parent.$) {
                                                window.parent.$("body").trigger("resizedcontent", [window]);
                                                }
                                                document.documentElement.dispatchEvent(new Event("resizedcontent"));
                                                if (window.require && document.querySelector("meta[name=sourceApp]") && document.querySelector("meta[name=sourceApp]").content == "nyt-v5") {
                                                require(["foundation/main"], function() {
                                                require(["shared/interactive/instances/app-communicator"], function(AppCommunicator) {
                                                        AppCommunicator.triggerResize();
                                                });
                                                });
                                                }
                                                } catch(e) { console.log(e); }
                                                }

                                                // based on underscore.js
                                                function throttle(func, wait) {
                                                var _now = Date.now || function() { return +new Date(); },
                                                timeout = null, previous = 0;
                                                var run = function() {
                                                previous = _now();
                                                timeout = null;
                                                func();
                                                };
                                                return function() {
                                                var remaining = wait - (_now() - previous);
                                                if (remaining <= 0 || remaining > wait) {
                                                if (timeout) {
                                                clearTimeout(timeout);
                                                }
                                                run();
                                                } else if (!timeout) {
                                                timeout = setTimeout(run, remaining);
                                                }
                                                };
                                                }
                                                })("nyt-preview", "g-");
                                                //]]>
                                                </script> <!-- End ai2html - 2018-09-14 13:34 -->
                                                <!-- Pipeline: 2018-09-14-debt-as-a-share-of-gdp | September 14, 2018, 01:34PM | dad2c5186b9c0b968d766fa279d9ed6b76ce776b -->
                                            </div>
                                            <footer class="css-irejme interactive-footer custom-footer">
                                                <p data-testid="credit" class="css-1ct2c9h interactive-credit custom-credit">
                                                    By The New York Times | Source: Congressional Budget Office
                                                </p>
                                            </footer>
                                        </section>
                                    </div>
                                    <div class="css-1fanzo5 StoryBodyCompanionColumn">
                                        <div class="css-53u6y8">
                                            <p class="css-1ygdjhk evys1bk0">
                                                Aside from wartime or a deep downturn like the 1930s or 2008-9, “this sort of aggressive fiscal stimulus is unprecedented in U.S. history,” said Jeffrey Frankel, an economist at Harvard.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                Pouring gasoline on an already hot economy has resulted in faster growth — the economy expanded at an annualized rate of 4.2 percent in the second quarter. But Mr. Frankel warns that when the economy weakens, the government will find it more difficult to cut taxes or increase spending.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                Lawmakers might, in fact, feel compelled to cut spending as tax revenue falls, further depressing the economy. “There will eventually be another recession, and this increases the chances we will have to slam on the brakes when the car is already going too slowly,” Mr. Frankel said.
                                            </p>
                                            <h2 class="css-1505tg eoo0vm40" id="link-cb5ee12">
                                                Interest costs make it harder for the government to do other things
                                            </h2>
                                        </div>
                                        <aside class="css-o6xoe7"></aside>
                                    </div>
                                    <div class="css-13nfagi">
                                        <section id="expenditures-as-a-share-of-national-budget" data-id="100000006106770" class="interactive-embedded interactive-size-scoop custom-graphic-container css-rlzall e13l8dds1">
                                            <header class="css-cl76n0 interactive-header">
                                                <p data-testid="leadin" class="css-1vs7yia interactive-leadin custom-leadin">
                                                    Interest payments will make up 13 percent of the federal budget a decade from now, surpassing spending on Medicaid and defense.
                                                </p>
                                            </header>
                                            <div class="interactive-graphic custom-graphic css-17ih8de e13l8dds0">
                                                <!-- Generated by ai2html v0.74.0 - 2018-09-14 14:03 -->
                                                <!-- ai file: 0916 biz web DEBT CHART 3.ai -->
                                                <!-- preview: 2018-09-14-expenditures-as-a-share-of-national-budget -->
                                                <!-- scoop: expenditures-as-a-share-of-national-budget -->
                                                <div id="g-0916-biz-web-DEBT-CHART-3-box" class="ai2html ai2html-box-v5">
                                                    <!-- Artboard: Artboard_2 -->
                                                    <div id="g-0916-biz-web-DEBT-CHART-3-Artboard_2" class="g-artboard" data-aspect-ratio="1.382" data-min-width="600">
                                                        <img id="g-0916-biz-web-DEBT-CHART-3-Artboard_2-img" class="g-aiImg" data-src="https://static01.nyt.com/newsgraphics/2018/09/14/expenditures-as-a-share-of-national-budget/3311a2358867f7423b4d30b424829c1ff1228a7a/0916-biz-web-DEBT-CHART-3-Artboard_2.png" src="data:image/gif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==" />
                                                        <div id="g-ai0-1" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:4.4262%;margin-top:-9.2px;left:0.0838%;width:258px;">
                                                            <p class="g-pstyle0">
                                                                Expenditures as a share of overall budget
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-2" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.5016%;margin-top:-9.2px;right:94.9686%;width:37px;">
                                                            <p class="g-pstyle1">
                                                                15
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-3" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.5016%;margin-top:-9.2px;left:5.4133%;width:33px;">
                                                            <p class="g-pstyle2">
                                                                %
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-4" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:17.5566%;margin-top:-9.2px;left:81.708%;width:90px;">
                                                            <p class="g-pstyle0">
                                                                Net interest
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-5" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:17.5566%;margin-top:-9.2px;left:96.8984%;margin-left:-29.5px;width:59px;">
                                                            <p class="g-pstyle3">
                                                                13.0%
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-6" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:33.6891%;margin-top:-9.2px;left:81.708%;width:67px;">
                                                            <p class="g-pstyle2">
                                                                Defense
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-7" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:34.841%;margin-top:-9.2px;right:94.9686%;width:37px;">
                                                            <p class="g-pstyle1">
                                                                10
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-8" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:43.825%;margin-top:-9.2px;left:81.708%;width:72px;">
                                                            <p class="g-pstyle2">
                                                                Medicaid
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-9" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:50.0371%;margin-top:-9.2px;left:6.8178%;margin-left:-26px;width:52px;">
                                                            <p class="g-pstyle3">
                                                                6.6%
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-10" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:60.4108%;margin-top:-9.2px;right:95.0669%;width:29px;">
                                                            <p class="g-pstyle1">
                                                                5
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-11" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:85.7502%;margin-top:-9.2px;right:95.0669%;width:29px;">
                                                            <p class="g-pstyle1">
                                                                0
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-12" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:6.0116%;margin-left:-19.5px;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’17
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-13" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:14.2578%;margin-left:-19.5px;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’18
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-14" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:22.5039%;margin-left:-19.5px;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’19
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-15" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:30.7793%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’20
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-16" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:39.0255%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’21
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-17" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:47.2716%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’22
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-18" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:55.5179%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’23
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-19" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:63.764%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’24
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-20" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:72.0103%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’25
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-21" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:80.2565%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’26
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-22" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:88.5024%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’27
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-23" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:96.7487%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’28
                                                            </p>
                                                        </div>
                                                    </div><!-- Artboard: Artboard_3 -->
                                                    <div id="g-0916-biz-web-DEBT-CHART-3-Artboard_3" class="g-artboard" data-aspect-ratio="0.691" data-min-width="300" data-max-width="599">
                                                        <img id="g-0916-biz-web-DEBT-CHART-3-Artboard_3-img" class="g-aiImg" data-src="https://static01.nyt.com/newsgraphics/2018/09/14/expenditures-as-a-share-of-national-budget/3311a2358867f7423b4d30b424829c1ff1228a7a/0916-biz-web-DEBT-CHART-3-Artboard_3.png" src="data:image/gif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==" />
                                                        <div id="g-ai1-1" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:4.4262%;margin-top:-9.2px;left:0.2844%;width:258px;">
                                                            <p class="g-pstyle0">
                                                                Expenditures as a share of overall budget
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-2" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.5016%;margin-top:-9.2px;right:90.0968%;width:37px;">
                                                            <p class="g-pstyle1">
                                                                15
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-3" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.5016%;margin-top:-9.2px;left:10.2054%;width:33px;">
                                                            <p class="g-pstyle2">
                                                                %
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-4" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:17.5566%;margin-top:-9.2px;right:13.9762%;width:90px;">
                                                            <p class="g-pstyle3">
                                                                Net interest
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-5" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:17.5566%;margin-top:-9.2px;left:87.5494%;width:59px;">
                                                            <p class="g-pstyle0">
                                                                13.0%
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-6" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:33.6892%;margin-top:-9.2px;right:14.1158%;width:67px;">
                                                            <p class="g-pstyle1">
                                                                Defense
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-7" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:34.841%;margin-top:-9.2px;right:90.0968%;width:37px;">
                                                            <p class="g-pstyle1">
                                                                10
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-8" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:44.2857%;margin-top:-9.2px;right:14.0525%;width:72px;">
                                                            <p class="g-pstyle1">
                                                                Medicaid
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-9" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:56.0265%;margin-top:-9.2px;left:13.3422%;width:52px;">
                                                            <p class="g-pstyle0">
                                                                6.6%
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-10" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:60.4108%;margin-top:-9.2px;right:90.2934%;width:29px;">
                                                            <p class="g-pstyle1">
                                                                5
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-11" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:85.7502%;margin-top:-9.2px;right:90.2934%;width:29px;">
                                                            <p class="g-pstyle1">
                                                                0
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-12" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:10.7111%;margin-left:-19.5px;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’17
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-13" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:17.9678%;margin-left:-19.5px;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’18
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-14" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:25.2243%;margin-left:-19.5px;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’19
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-15" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:32.5394%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’20
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-16" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:39.7959%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’21
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-17" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:47.0526%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’22
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-18" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:54.3093%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’23
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-19" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:61.5658%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’24
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-20" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:68.8225%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’25
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-21" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:76.0791%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’26
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-22" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:83.3357%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’27
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-23" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.9699%;margin-top:-9.2px;left:90.5923%;margin-left:-20px;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’28
                                                            </p>
                                                        </div>
                                                    </div>
                                                </div>
                                                <script type="text/javascript">
                                                //<![CDATA[
                                                (function (scriptEnvironment, nameSpace) {
                                                // Use a sentinel class to ensure that this version of the resizer only initializes once
                                                if (document.documentElement.className.indexOf(nameSpace + "resizer-v5-init") > -1) return;
                                                document.documentElement.className += " " + nameSpace + "resizer-v5-init";
                                                // requires IE9+
                                                if (!("querySelector" in document)) return;
                                                var observer = window.IntersectionObserver ? new IntersectionObserver(onIntersectionChange, {}) : null;
                                                var visibilityIndex = {}; // visibility of each graphic, indexed by container id (used with InteractionObserver)

                                                updateAllGraphics();
                                                window.addEventListener('nyt:embed:load', updateAllGraphics); // for nyt vi compatibility
                                                document.addEventListener("DOMContentLoaded", updateAllGraphics);
                                                window.addEventListener("resize", throttle(updateAllGraphics, 200));

                                                function updateAllGraphics() {
                                                selectElements(".ai2html-box-v5").forEach(updateGraphic);
                                                if (scriptEnvironment == "nyt-preview") {
                                                nytOnResize();
                                                }
                                                }

                                                function updateGraphic(container) {
                                                var artboards = selectElements("." + nameSpace + "artboard[data-min-width]", container),
                                                width = Math.round(container.getBoundingClientRect().width),
                                                id = container.id, // assume container has an id
                                                showImages = !observer || visibilityIndex[id] == 'visible';

                                                // Set artboard visibility based on container width
                                                artboards.forEach(function(el) {
                                                var minwidth = el.getAttribute("data-min-width"),
                                                maxwidth = el.getAttribute("data-max-width");
                                                if (+minwidth <= width && (+maxwidth >= width || maxwidth === null)) {
                                                if (showImages) {
                                                selectElements("." + nameSpace + "aiImg", el).forEach(updateImgSrc);
                                                }
                                                el.style.display = "block";
                                                } else {
                                                el.style.display = "none";
                                                }
                                                });

                                                // Initialize lazy loading on first call, if IntersectionObserver is available
                                                if (observer && !visibilityIndex[id]) {
                                                if (containerIsVisible(container)) {
                                                // Skip IntersectionObserver if graphic is initially visible
                                                // Note: We're doing this after artboard visibility is first calculated
                                                //       (above) -- otherwise all artboard images are display:block and the
                                                //       calculated height of the graphic is huge.
                                                // TODO: Consider making artboard images position:absolute and setting
                                                //       height as a padding % (calculated from the aspect ratio of the graphic).
                                                //       This will correctly set the initial height of the graphic before
                                                //       an image is loaded.
                                                visibilityIndex[id] = 'visible';
                                                updateGraphic(container); // Call again to start loading right away
                                                } else {
                                                visibilityIndex[id] = 'hidden';
                                                observer.observe(container);
                                                }
                                                }
                                                }

                                                function containerIsVisible(container) {
                                                var bounds = container.getBoundingClientRect();
                                                return bounds.top < window.innerHeight && bounds.bottom > 0;
                                                }

                                                // Replace blank placeholder image with actual image
                                                // (only relevant if use_lazy_loader option is true)
                                                function updateImgSrc(img) {
                                                var src = img.getAttribute("data-src");
                                                if (src && img.getAttribute("src") != src) {
                                                img.setAttribute("src", src);
                                                }
                                                }

                                                function onIntersectionChange(entries) {
                                                entries.forEach(function(entry) {
                                                if (entry.isIntersecting) {
                                                visibilityIndex[entry.target.id] = 'visible';
                                                observer.unobserve(entry.target);
                                                updateGraphic(entry.target);
                                                }
                                                });
                                                }

                                                function selectElements(selector, parent) {
                                                var selection = (parent || document).querySelectorAll(selector);
                                                return Array.prototype.slice.call(selection);
                                                }

                                                function nytOnResize() {
                                                // TODO: add comments
                                                try {
                                                if (window.parent && window.parent.$) {
                                                window.parent.$("body").trigger("resizedcontent", [window]);
                                                }
                                                document.documentElement.dispatchEvent(new Event("resizedcontent"));
                                                if (window.require && document.querySelector("meta[name=sourceApp]") && document.querySelector("meta[name=sourceApp]").content == "nyt-v5") {
                                                require(["foundation/main"], function() {
                                                require(["shared/interactive/instances/app-communicator"], function(AppCommunicator) {
                                                        AppCommunicator.triggerResize();
                                                });
                                                });
                                                }
                                                } catch(e) { console.log(e); }
                                                }

                                                // based on underscore.js
                                                function throttle(func, wait) {
                                                var _now = Date.now || function() { return +new Date(); },
                                                timeout = null, previous = 0;
                                                var run = function() {
                                                previous = _now();
                                                timeout = null;
                                                func();
                                                };
                                                return function() {
                                                var remaining = wait - (_now() - previous);
                                                if (remaining <= 0 || remaining > wait) {
                                                if (timeout) {
                                                clearTimeout(timeout);
                                                }
                                                run();
                                                } else if (!timeout) {
                                                timeout = setTimeout(run, remaining);
                                                }
                                                };
                                                }
                                                })("nyt-preview", "g-");
                                                //]]>
                                                </script> <!-- End ai2html - 2018-09-14 14:03 -->
                                                <!-- Pipeline: 2018-09-14-expenditures-as-a-share-of-national-budget | September 14, 2018, 02:04PM | 3311a2358867f7423b4d30b424829c1ff1228a7a -->
                                            </div>
                                            <footer class="css-irejme interactive-footer custom-footer">
                                                <p data-testid="credit" class="css-1ct2c9h interactive-credit custom-credit">
                                                    By The New York Times | Source: Congressional Budget Office
                                                </p>
                                            </footer>
                                        </section>
                                    </div>
                                    <div class="css-1fanzo5 StoryBodyCompanionColumn">
                                        <div class="css-53u6y8">
                                            <p class="css-1ygdjhk evys1bk0">
                                                Finding the money to pay investors who hold government debt will crimp other parts of the budget. In a decade, interest on the debt will eat up 13 percent of government spending, up from 6.6 percent in 2017.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                “By 2020, we will spend more on interest than we do on kids, including education, food stamps and aid to families,” said Marc Goldwein, senior policy director at the Committee for a Responsible Federal Budget, a research and advocacy organization.
                                            </p>
                                        </div>
                                        <aside class="css-o6xoe7"></aside>
                                    </div>
                                    <div class="css-1fanzo5 StoryBodyCompanionColumn">
                                        <div class="css-53u6y8">
                                            <p class="css-1ygdjhk evys1bk0">
                                                Interest costs already dwarf spending on many popular programs. For example, grants to students from low-income families for college total roughly $30 billion — about one-tenth of what the government will pay in interest this year. Interest payments will overtake Medicaid in 2020 and the Department of Defense budget in 2023.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                What’s more, the heavy burden of interest payments could make it harder for the government to repair aging infrastructure or take on other big new projects.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                Mr. Trump has called for spending $1 trillion on infrastructure, but Congress has not taken up that idea.
                                            </p>
                                        </div>
                                        <aside class="css-o6xoe7"></aside>
                                    </div>
                                    <div class="css-tmydge epkadsg3">
                                        <div class="css-1ukm2ij epkadsg0">
                                            More about the federal debt and the economy
                                        </div>
                                        <div class="css-15g2oxy epkadsg2">
                                            <div class="css-113dckd e16ij5yr6">
                                                <a class="css-1g7m0tk" href="https://www.nytimes.com/2018/07/30/us/politics/trump-tax-cuts-rich.html?action=click&amp;module=RelatedLinks&amp;pgtype=Article">
                                                <div class="css-i9gxme e16ij5yr4">
                                                    <div class="css-ty8is0 e16ij5yr2">
                                                        Trump Administration Mulls a Unilateral Tax Cut for the Rich
                                                    </div><time class="css-1yil5bp e16638kd0" datetime="2018-07-30">July 30, 2018</time>
                                                </div>
                                                <div class="css-77hcv e16ij5yr0"></div></a>
                                            </div>
                                            <div class="css-113dckd e16ij5yr6">
                                                <a class="css-1g7m0tk" href="https://www.nytimes.com/2018/07/25/business/trump-corporate-tax-cut-deficit.html?action=click&amp;module=RelatedLinks&amp;pgtype=Article">
                                                <div class="css-i9gxme e16ij5yr4">
                                                    <div class="css-ty8is0 e16ij5yr2">
                                                        How the Trump Tax Cut Is Helping to Push the Federal Deficit to $1 Trillion
                                                    </div><time class="css-1yil5bp e16638kd0" datetime="2018-07-25">July 25, 2018</time>
                                                </div>
                                                <div class="css-77hcv e16ij5yr0"></div></a>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="css-1fanzo5 StoryBodyCompanionColumn">
                                        <div class="css-53u6y8">
                                            <h2 class="css-1505tg eoo0vm40" id="link-1a1f1f7a">
                                                The U.S. hasn’t faced this issue for years
                                            </h2>
                                            <p class="css-1ygdjhk evys1bk0">
                                                Until recently, ultralow interest rates, set by the Federal Reserve to support the economy, allowed lawmakers to borrow without fretting too much about the cost of that debt.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                But as the economy has strengthened, the Fed has gradually raised rates, starting in December 2015. The central bank is expected to push rates up again on Wednesday, and more increases are in store.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                “When rates went down to record lows, it allowed the government to take on more debt without paying more interest,” Mr. Goldwein said. “That party is ending.”
                                            </p>
                                        </div>
                                        <aside class="css-o6xoe7"></aside>
                                    </div>
                                    <div class="css-13nfagi">
                                        <section id="10-year-treasury-note" data-id="100000006106857" class="interactive-embedded interactive-size-scoop custom-graphic-container css-rlzall e13l8dds1">
                                            <header class="css-cl76n0 interactive-header">
                                                <p data-testid="leadin" class="css-1vs7yia interactive-leadin custom-leadin">
                                                    After bottoming out below 2 percent, the yield on the 10-year Treasury note has climbed to over 3 percent recently.
                                                </p>
                                            </header>
                                            <div class="interactive-graphic custom-graphic css-17ih8de e13l8dds0">
                                                <!-- Generated by ai2html v0.74.0 - 2018-09-25 16:50 -->
                                                <!-- ai file: 0916 biz web DEBT CHART 5.ai -->
                                                <!-- preview: 2018-09-14-10-year-treasury-note -->
                                                <!-- scoop: 10-year-treasury-note -->
                                                <div id="g-0916-biz-web-DEBT-CHART-5-box" class="ai2html ai2html-box-v5">
                                                    <!-- Artboard: Artboard_2 -->
                                                    <div id="g-0916-biz-web-DEBT-CHART-5-Artboard_2" class="g-artboard" data-aspect-ratio="1.382" data-min-width="600">
                                                        <img id="g-0916-biz-web-DEBT-CHART-5-Artboard_2-img" class="g-aiImg" data-src="https://static01.nyt.com/newsgraphics/2018/09/14/10-year-treasury-note/e6a342acf0db9b8a88e9ae36f0db5438e5e5124f/0916-biz-web-DEBT-CHART-5-Artboard_2.png" src="data:image/gif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==" />
                                                        <div id="g-ai0-1" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:4.4262%;margin-top:-9.2px;left:0.0644%;width:196px;">
                                                            <p class="g-pstyle0">
                                                                Yield on 10-year Treasury note
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-2" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.5016%;margin-top:-9.2px;right:95.0669%;width:29px;">
                                                            <p class="g-pstyle1">
                                                                8
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-3" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.5016%;margin-top:-9.2px;left:5.4133%;width:33px;">
                                                            <p class="g-pstyle2">
                                                                %
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-4" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.7232%;margin-top:-9.2px;right:0.1584%;width:70px;">
                                                            <p class="g-pstyle3">
                                                                MONTHLY
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-5" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:21.2411%;margin-top:-9.2px;left:37.9228%;margin-left:-42.5px;width:85px;">
                                                            <p class="g-pstyle4">
                                                                RECESSIONS
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-6" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:28.6213%;margin-top:-9.2px;right:95.0669%;width:29px;">
                                                            <p class="g-pstyle1">
                                                                6
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-7" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:47.5106%;margin-top:-9.2px;right:95.0669%;width:29px;">
                                                            <p class="g-pstyle1">
                                                                4
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-8" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:66.6304%;margin-top:-9.2px;right:95.0669%;width:29px;">
                                                            <p class="g-pstyle1">
                                                                2
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-9" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:85.7502%;margin-top:-9.2px;right:95.0669%;width:29px;">
                                                            <p class="g-pstyle1">
                                                                0
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-10" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:7.6353%;width:40px;">
                                                            <p class="g-pstyle2">
                                                                ’98
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-11" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:16.3776%;width:40px;">
                                                            <p class="g-pstyle2">
                                                                ’00
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-12" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:25.1199%;width:40px;">
                                                            <p class="g-pstyle2">
                                                                ’02
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-13" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:33.8621%;width:40px;">
                                                            <p class="g-pstyle2">
                                                                ’04
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-14" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:42.6044%;width:40px;">
                                                            <p class="g-pstyle2">
                                                                ’06
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-15" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:51.3468%;width:40px;">
                                                            <p class="g-pstyle2">
                                                                ’08
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-16" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:60.0889%;width:39px;">
                                                            <p class="g-pstyle2">
                                                                ’10
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-17" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:68.8313%;width:39px;">
                                                            <p class="g-pstyle2">
                                                                ’12
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-18" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:77.5735%;width:39px;">
                                                            <p class="g-pstyle2">
                                                                ’14
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-19" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:86.3158%;width:39px;">
                                                            <p class="g-pstyle2">
                                                                ’16
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-20" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:95.058%;width:39px;">
                                                            <p class="g-pstyle2">
                                                                ’18
                                                            </p>
                                                        </div>
                                                    </div><!-- Artboard: Artboard_3 -->
                                                    <div id="g-0916-biz-web-DEBT-CHART-5-Artboard_3" class="g-artboard" data-aspect-ratio="0.691" data-min-width="300" data-max-width="599">
                                                        <img id="g-0916-biz-web-DEBT-CHART-5-Artboard_3-img" class="g-aiImg" data-src="https://static01.nyt.com/newsgraphics/2018/09/14/10-year-treasury-note/e6a342acf0db9b8a88e9ae36f0db5438e5e5124f/0916-biz-web-DEBT-CHART-5-Artboard_3.png" src="data:image/gif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==" />
                                                        <div id="g-ai1-1" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:4.4262%;margin-top:-9.2px;left:0.2844%;width:196px;">
                                                            <p class="g-pstyle0">
                                                                Yield on 10-year Treasury note
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-2" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.5016%;margin-top:-9.2px;right:90.2934%;width:29px;">
                                                            <p class="g-pstyle1">
                                                                8
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-3" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.5016%;margin-top:-9.2px;left:10.2054%;width:33px;">
                                                            <p class="g-pstyle2">
                                                                %
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-4" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.7232%;margin-top:-9.2px;right:6.6448%;width:70px;">
                                                            <p class="g-pstyle3">
                                                                MONTHLY
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-5" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:21.2411%;margin-top:-9.2px;left:38.8379%;margin-left:-42.5px;width:85px;">
                                                            <p class="g-pstyle4">
                                                                RECESSIONS
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-6" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:28.6214%;margin-top:-9.2px;right:90.2934%;width:29px;">
                                                            <p class="g-pstyle1">
                                                                6
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-7" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:47.5107%;margin-top:-9.2px;right:90.2934%;width:29px;">
                                                            <p class="g-pstyle1">
                                                                4
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-8" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:66.6305%;margin-top:-9.2px;right:90.2934%;width:29px;">
                                                            <p class="g-pstyle1">
                                                                2
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-9" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:85.7502%;margin-top:-9.2px;right:90.2934%;width:29px;">
                                                            <p class="g-pstyle1">
                                                                0
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-10" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:12.306%;width:40px;">
                                                            <p class="g-pstyle2">
                                                                ’98
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-11" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:27.6924%;width:40px;">
                                                            <p class="g-pstyle2">
                                                                ’02
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-12" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:43.0788%;width:40px;">
                                                            <p class="g-pstyle2">
                                                                ’06
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-13" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:58.4652%;width:39px;">
                                                            <p class="g-pstyle2">
                                                                ’10
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-14" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:73.8516%;width:39px;">
                                                            <p class="g-pstyle2">
                                                                ’14
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-15" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:89.238%;width:39px;">
                                                            <p class="g-pstyle2">
                                                                ’18
                                                            </p>
                                                        </div>
                                                    </div>
                                                </div>
                                                <script type="text/javascript">
                                                //<![CDATA[
                                                (function (scriptEnvironment, nameSpace) {
                                                // Use a sentinel class to ensure that this version of the resizer only initializes once
                                                if (document.documentElement.className.indexOf(nameSpace + "resizer-v5-init") > -1) return;
                                                document.documentElement.className += " " + nameSpace + "resizer-v5-init";
                                                // requires IE9+
                                                if (!("querySelector" in document)) return;
                                                var observer = window.IntersectionObserver ? new IntersectionObserver(onIntersectionChange, {}) : null;
                                                var visibilityIndex = {}; // visibility of each graphic, indexed by container id (used with InteractionObserver)

                                                updateAllGraphics();
                                                window.addEventListener('nyt:embed:load', updateAllGraphics); // for nyt vi compatibility
                                                document.addEventListener("DOMContentLoaded", updateAllGraphics);
                                                window.addEventListener("resize", throttle(updateAllGraphics, 200));

                                                function updateAllGraphics() {
                                                selectElements(".ai2html-box-v5").forEach(updateGraphic);
                                                if (scriptEnvironment == "nyt-preview") {
                                                nytOnResize();
                                                }
                                                }

                                                function updateGraphic(container) {
                                                var artboards = selectElements("." + nameSpace + "artboard[data-min-width]", container),
                                                width = Math.round(container.getBoundingClientRect().width),
                                                id = container.id, // assume container has an id
                                                showImages = !observer || visibilityIndex[id] == 'visible';

                                                // Set artboard visibility based on container width
                                                artboards.forEach(function(el) {
                                                var minwidth = el.getAttribute("data-min-width"),
                                                maxwidth = el.getAttribute("data-max-width");
                                                if (+minwidth <= width && (+maxwidth >= width || maxwidth === null)) {
                                                if (showImages) {
                                                selectElements("." + nameSpace + "aiImg", el).forEach(updateImgSrc);
                                                }
                                                el.style.display = "block";
                                                } else {
                                                el.style.display = "none";
                                                }
                                                });

                                                // Initialize lazy loading on first call, if IntersectionObserver is available
                                                if (observer && !visibilityIndex[id]) {
                                                if (containerIsVisible(container)) {
                                                // Skip IntersectionObserver if graphic is initially visible
                                                // Note: We're doing this after artboard visibility is first calculated
                                                //       (above) -- otherwise all artboard images are display:block and the
                                                //       calculated height of the graphic is huge.
                                                // TODO: Consider making artboard images position:absolute and setting
                                                //       height as a padding % (calculated from the aspect ratio of the graphic).
                                                //       This will correctly set the initial height of the graphic before
                                                //       an image is loaded.
                                                visibilityIndex[id] = 'visible';
                                                updateGraphic(container); // Call again to start loading right away
                                                } else {
                                                visibilityIndex[id] = 'hidden';
                                                observer.observe(container);
                                                }
                                                }
                                                }

                                                function containerIsVisible(container) {
                                                var bounds = container.getBoundingClientRect();
                                                return bounds.top < window.innerHeight && bounds.bottom > 0;
                                                }

                                                // Replace blank placeholder image with actual image
                                                // (only relevant if use_lazy_loader option is true)
                                                function updateImgSrc(img) {
                                                var src = img.getAttribute("data-src");
                                                if (src && img.getAttribute("src") != src) {
                                                img.setAttribute("src", src);
                                                }
                                                }

                                                function onIntersectionChange(entries) {
                                                entries.forEach(function(entry) {
                                                if (entry.isIntersecting) {
                                                visibilityIndex[entry.target.id] = 'visible';
                                                observer.unobserve(entry.target);
                                                updateGraphic(entry.target);
                                                }
                                                });
                                                }

                                                function selectElements(selector, parent) {
                                                var selection = (parent || document).querySelectorAll(selector);
                                                return Array.prototype.slice.call(selection);
                                                }

                                                function nytOnResize() {
                                                // TODO: add comments
                                                try {
                                                if (window.parent && window.parent.$) {
                                                window.parent.$("body").trigger("resizedcontent", [window]);
                                                }
                                                document.documentElement.dispatchEvent(new Event("resizedcontent"));
                                                if (window.require && document.querySelector("meta[name=sourceApp]") && document.querySelector("meta[name=sourceApp]").content == "nyt-v5") {
                                                require(["foundation/main"], function() {
                                                require(["shared/interactive/instances/app-communicator"], function(AppCommunicator) {
                                                        AppCommunicator.triggerResize();
                                                });
                                                });
                                                }
                                                } catch(e) { console.log(e); }
                                                }

                                                // based on underscore.js
                                                function throttle(func, wait) {
                                                var _now = Date.now || function() { return +new Date(); },
                                                timeout = null, previous = 0;
                                                var run = function() {
                                                previous = _now();
                                                timeout = null;
                                                func();
                                                };
                                                return function() {
                                                var remaining = wait - (_now() - previous);
                                                if (remaining <= 0 || remaining > wait) {
                                                if (timeout) {
                                                clearTimeout(timeout);
                                                }
                                                run();
                                                } else if (!timeout) {
                                                timeout = setTimeout(run, remaining);
                                                }
                                                };
                                                }
                                                })("nyt-preview", "g-");
                                                //]]>
                                                </script> <!-- End ai2html - 2018-09-25 16:50 -->
                                                <!-- Pipeline: 2018-09-14-10-year-treasury-note | September 25, 2018, 04:51PM | e6a342acf0db9b8a88e9ae36f0db5438e5e5124f -->
                                            </div>
                                            <footer class="css-irejme interactive-footer custom-footer">
                                                <p data-testid="credit" class="css-1ct2c9h interactive-credit custom-credit">
                                                    By The New York Times | Source: Reuters
                                                </p>
                                            </footer>
                                        </section>
                                    </div>
                                    <div class="css-1fanzo5 StoryBodyCompanionColumn">
                                        <div class="css-53u6y8">
                                            <p class="css-1ygdjhk evys1bk0">
                                                Since the beginning of the year, the yield on the 10-year Treasury note has risen by more than half a percentage point, to <!-- -->3.1 percent<!-- -->. The Congressional Budget Office estimates that the yield will climb to 4.2 percent in 2021. Given that the total public debt of the United States stands at nearly $16 trillion, even a small uptick in rates can cost the government billions.
                                            </p>
                                        </div>
                                        <aside class="css-o6xoe7"></aside>
                                    </div>
                                    <div class="css-1fanzo5 StoryBodyCompanionColumn">
                                        <div class="css-53u6y8">
                                            <p class="css-1ygdjhk evys1bk0">
                                                There’s no guarantee that these forecasts will prove accurate. If the economy weakens, rates might fall or rise only slightly, reducing interest payments. But rates could also overshoot the budget office forecast.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                Some members of Congress want to set the stage for even more red ink. Republicans in the House want to make last year’s tax cuts permanent, instead of letting some of them expire at the end of 2025. That would reduce federal revenue by an additional $631 billion <!-- -->over 10 year<!-- -->s, according to the <a class="css-1g7m0tk" href="https://www.taxpolicycenter.org/publications/analysis-protecting-family-and-small-business-tax-cuts-act-2018" title="" rel="noopener noreferrer" target="_blank">Tax Policy Center</a>.
                                            </p>
                                            <h2 class="css-1505tg eoo0vm40" id="link-7b39a7bd">
                                                No, the United States isn’t at risk of becoming the next Greece
                                            </h2>
                                        </div>
                                        <aside class="css-o6xoe7"></aside>
                                    </div>
                                    <div class="css-13nfagi">
                                        <section id="dollar-index" data-id="100000006106834" class="interactive-embedded interactive-size-scoop custom-graphic-container css-rlzall e13l8dds1">
                                            <header class="css-cl76n0 interactive-header">
                                                <p data-testid="leadin" class="css-1vs7yia interactive-leadin custom-leadin">
                                                    The dollar has strengthened even as government borrowing has increased.
                                                </p>
                                            </header>
                                            <div class="interactive-graphic custom-graphic css-17ih8de e13l8dds0">
                                                <!-- Generated by ai2html v0.74.0 - 2018-09-21 18:43 -->
                                                <!-- ai file: 0916 biz web DEBT CHART 4.ai -->
                                                <!-- preview: 2018-09-14-dollar-index -->
                                                <!-- scoop: dollar-index -->
                                                <div id="g-0916-biz-web-DEBT-CHART-4-box" class="ai2html ai2html-box-v5">
                                                    <!-- Artboard: Artboard_2 -->
                                                    <div id="g-0916-biz-web-DEBT-CHART-4-Artboard_2" class="g-artboard" data-aspect-ratio="1.382" data-min-width="600">
                                                        <img id="g-0916-biz-web-DEBT-CHART-4-Artboard_2-img" class="g-aiImg" data-src="https://static01.nyt.com/newsgraphics/2018/09/14/dollar-index/3753490c8fd0afa3e42df37d132f5c87da5e1c36/0916-biz-web-DEBT-CHART-4-Artboard_2.png" src="data:image/gif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==" />
                                                        <div id="g-ai0-1" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:4.4262%;margin-top:-9.2px;left:0.0838%;width:117px;">
                                                            <p class="g-pstyle0">
                                                                U.S. Dollar index
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-2" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.5016%;margin-top:-9.2px;right:95.0369%;width:44px;">
                                                            <p class="g-pstyle1">
                                                                140
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-3" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.7232%;margin-top:-9.2px;right:0.1584%;width:70px;">
                                                            <p class="g-pstyle2">
                                                                MONTHLY
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-4" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:21.2411%;margin-top:-9.2px;left:37.9228%;margin-left:-42.5px;width:85px;">
                                                            <p class="g-pstyle3">
                                                                RECESSIONS
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-5" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:28.6213%;margin-top:-9.2px;right:95.0369%;width:44px;">
                                                            <p class="g-pstyle1">
                                                                120
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-6" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:47.5106%;margin-top:-9.2px;right:95.0369%;width:44px;">
                                                            <p class="g-pstyle1">
                                                                100
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-7" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:66.6304%;margin-top:-9.2px;right:94.9686%;width:37px;">
                                                            <p class="g-pstyle1">
                                                                80
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-8" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:85.7502%;margin-top:-9.2px;right:94.9686%;width:37px;">
                                                            <p class="g-pstyle1">
                                                                60
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-9" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:7.6353%;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’98
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-10" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:16.3776%;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’00
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-11" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:25.1199%;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’02
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-12" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:33.8621%;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’04
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-13" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:42.6044%;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’06
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-14" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:51.3468%;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’08
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-15" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:60.0889%;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’10
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-16" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:68.8313%;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’12
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-17" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:77.5735%;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’14
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-18" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:86.3158%;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’16
                                                            </p>
                                                        </div>
                                                        <div id="g-ai0-19" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:95.058%;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’18
                                                            </p>
                                                        </div>
                                                    </div><!-- Artboard: Artboard_3 -->
                                                    <div id="g-0916-biz-web-DEBT-CHART-4-Artboard_3" class="g-artboard" data-aspect-ratio="0.691" data-min-width="300" data-max-width="599">
                                                        <img id="g-0916-biz-web-DEBT-CHART-4-Artboard_3-img" class="g-aiImg" data-src="https://static01.nyt.com/newsgraphics/2018/09/14/dollar-index/3753490c8fd0afa3e42df37d132f5c87da5e1c36/0916-biz-web-DEBT-CHART-4-Artboard_3.png" src="data:image/gif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==" />
                                                        <div id="g-ai1-1" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:4.4262%;margin-top:-9.2px;left:0.2844%;width:117px;">
                                                            <p class="g-pstyle0">
                                                                U.S. Dollar index
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-2" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.5016%;margin-top:-9.2px;right:90.2334%;width:44px;">
                                                            <p class="g-pstyle1">
                                                                140
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-3" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:9.7232%;margin-top:-9.2px;right:6.6448%;width:70px;">
                                                            <p class="g-pstyle2">
                                                                MONTHLY
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-4" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:21.2411%;margin-top:-9.2px;left:38.8379%;margin-left:-42.5px;width:85px;">
                                                            <p class="g-pstyle3">
                                                                RECESSIONS
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-5" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:28.6214%;margin-top:-9.2px;right:90.2334%;width:44px;">
                                                            <p class="g-pstyle1">
                                                                120
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-6" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:47.5107%;margin-top:-9.2px;right:90.2334%;width:44px;">
                                                            <p class="g-pstyle1">
                                                                100
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-7" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:66.6305%;margin-top:-9.2px;right:90.0968%;width:37px;">
                                                            <p class="g-pstyle1">
                                                                80
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-8" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:85.7502%;margin-top:-9.2px;right:90.0968%;width:37px;">
                                                            <p class="g-pstyle1">
                                                                60
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-9" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:12.306%;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’98
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-10" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:27.6924%;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’02
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-11" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:43.0788%;width:40px;">
                                                            <p class="g-pstyle4">
                                                                ’06
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-12" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:58.4652%;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’10
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-13" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:73.8516%;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’14
                                                            </p>
                                                        </div>
                                                        <div id="g-ai1-14" class="g-Layer_1 g-aiAbs g-aiPointText" style="top:91.0485%;margin-top:-9.2px;left:89.238%;width:39px;">
                                                            <p class="g-pstyle4">
                                                                ’18
                                                            </p>
                                                        </div>
                                                    </div>
                                                </div>
                                                <script type="text/javascript">
                                                //<![CDATA[
                                                (function (scriptEnvironment, nameSpace) {
                                                // Use a sentinel class to ensure that this version of the resizer only initializes once
                                                if (document.documentElement.className.indexOf(nameSpace + "resizer-v5-init") > -1) return;
                                                document.documentElement.className += " " + nameSpace + "resizer-v5-init";
                                                // requires IE9+
                                                if (!("querySelector" in document)) return;
                                                var observer = window.IntersectionObserver ? new IntersectionObserver(onIntersectionChange, {}) : null;
                                                var visibilityIndex = {}; // visibility of each graphic, indexed by container id (used with InteractionObserver)

                                                updateAllGraphics();
                                                window.addEventListener('nyt:embed:load', updateAllGraphics); // for nyt vi compatibility
                                                document.addEventListener("DOMContentLoaded", updateAllGraphics);
                                                window.addEventListener("resize", throttle(updateAllGraphics, 200));

                                                function updateAllGraphics() {
                                                selectElements(".ai2html-box-v5").forEach(updateGraphic);
                                                if (scriptEnvironment == "nyt-preview") {
                                                nytOnResize();
                                                }
                                                }

                                                function updateGraphic(container) {
                                                var artboards = selectElements("." + nameSpace + "artboard[data-min-width]", container),
                                                width = Math.round(container.getBoundingClientRect().width),
                                                id = container.id, // assume container has an id
                                                showImages = !observer || visibilityIndex[id] == 'visible';

                                                // Set artboard visibility based on container width
                                                artboards.forEach(function(el) {
                                                var minwidth = el.getAttribute("data-min-width"),
                                                maxwidth = el.getAttribute("data-max-width");
                                                if (+minwidth <= width && (+maxwidth >= width || maxwidth === null)) {
                                                if (showImages) {
                                                selectElements("." + nameSpace + "aiImg", el).forEach(updateImgSrc);
                                                }
                                                el.style.display = "block";
                                                } else {
                                                el.style.display = "none";
                                                }
                                                });

                                                // Initialize lazy loading on first call, if IntersectionObserver is available
                                                if (observer && !visibilityIndex[id]) {
                                                if (containerIsVisible(container)) {
                                                // Skip IntersectionObserver if graphic is initially visible
                                                // Note: We're doing this after artboard visibility is first calculated
                                                //       (above) -- otherwise all artboard images are display:block and the
                                                //       calculated height of the graphic is huge.
                                                // TODO: Consider making artboard images position:absolute and setting
                                                //       height as a padding % (calculated from the aspect ratio of the graphic).
                                                //       This will correctly set the initial height of the graphic before
                                                //       an image is loaded.
                                                visibilityIndex[id] = 'visible';
                                                updateGraphic(container); // Call again to start loading right away
                                                } else {
                                                visibilityIndex[id] = 'hidden';
                                                observer.observe(container);
                                                }
                                                }
                                                }

                                                function containerIsVisible(container) {
                                                var bounds = container.getBoundingClientRect();
                                                return bounds.top < window.innerHeight && bounds.bottom > 0;
                                                }

                                                // Replace blank placeholder image with actual image
                                                // (only relevant if use_lazy_loader option is true)
                                                function updateImgSrc(img) {
                                                var src = img.getAttribute("data-src");
                                                if (src && img.getAttribute("src") != src) {
                                                img.setAttribute("src", src);
                                                }
                                                }

                                                function onIntersectionChange(entries) {
                                                entries.forEach(function(entry) {
                                                if (entry.isIntersecting) {
                                                visibilityIndex[entry.target.id] = 'visible';
                                                observer.unobserve(entry.target);
                                                updateGraphic(entry.target);
                                                }
                                                });
                                                }

                                                function selectElements(selector, parent) {
                                                var selection = (parent || document).querySelectorAll(selector);
                                                return Array.prototype.slice.call(selection);
                                                }

                                                function nytOnResize() {
                                                // TODO: add comments
                                                try {
                                                if (window.parent && window.parent.$) {
                                                window.parent.$("body").trigger("resizedcontent", [window]);
                                                }
                                                document.documentElement.dispatchEvent(new Event("resizedcontent"));
                                                if (window.require && document.querySelector("meta[name=sourceApp]") && document.querySelector("meta[name=sourceApp]").content == "nyt-v5") {
                                                require(["foundation/main"], function() {
                                                require(["shared/interactive/instances/app-communicator"], function(AppCommunicator) {
                                                        AppCommunicator.triggerResize();
                                                });
                                                });
                                                }
                                                } catch(e) { console.log(e); }
                                                }

                                                // based on underscore.js
                                                function throttle(func, wait) {
                                                var _now = Date.now || function() { return +new Date(); },
                                                timeout = null, previous = 0;
                                                var run = function() {
                                                previous = _now();
                                                timeout = null;
                                                func();
                                                };
                                                return function() {
                                                var remaining = wait - (_now() - previous);
                                                if (remaining <= 0 || remaining > wait) {
                                                if (timeout) {
                                                clearTimeout(timeout);
                                                }
                                                run();
                                                } else if (!timeout) {
                                                timeout = setTimeout(run, remaining);
                                                }
                                                };
                                                }
                                                })("nyt-preview", "g-");
                                                //]]>
                                                </script> <!-- End ai2html - 2018-09-21 18:43 -->
                                                <!-- Pipeline: 2018-09-14-dollar-index | September 21, 2018, 06:44PM | 3753490c8fd0afa3e42df37d132f5c87da5e1c36 -->
                                            </div>
                                            <footer class="css-irejme interactive-footer custom-footer">
                                                <p data-testid="credit" class="css-1ct2c9h interactive-credit custom-credit">
                                                    By The New York Times | Source: Reuters
                                                </p>
                                            </footer>
                                        </section>
                                    </div>
                                    <div class="css-1fanzo5 StoryBodyCompanionColumn">
                                        <div class="css-53u6y8">
                                            <p class="css-1ygdjhk evys1bk0">
                                                Deficit hawks have warned for years that a day of reckoning is coming, exposing the United States to the kind of economic crisis that overtook profligate borrowers in the past like Greece or Argentina.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                But most experts say that isn’t likely because the dollar is the world’s reserve currency. As a result, the United States still has plenty of borrowing capacity left because the Fed can print money with fewer consequences than other central banks.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                And interest rates plunged over the last decade, even as the government turned to the market for trillions each year after the recession. That’s because Treasury bonds are still the favored port of international investors in any economic storm.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                “We exported a financial crisis a decade ago, and the world responded by sending us money,” <!-- -->said<!-- --> William G. Gale, a senior fellow at the Brookings Institution.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                But that privileged position has allowed politicians in both parties to avoid politically painful steps like cutting spending or raising taxes.
                                            </p>
                                        </div>
                                        <aside class="css-o6xoe7"></aside>
                                    </div>
                                    <div class="css-1fanzo5 StoryBodyCompanionColumn">
                                        <div class="css-53u6y8">
                                            <p class="css-1ygdjhk evys1bk0">
                                                That doesn’t mean rapidly rising interest costs and a bigger deficit won’t eventually catch up with us.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                Charles Schultze, chairman of the Council of Economic Advisers in the Carter administration, once summed up the danger of deficits with a metaphor. “It’s not so much a question of the wolf at the door, but termites in the woodwork.”
                                            </p>
                                            <h2 class="css-1505tg eoo0vm40" id="link-12df6cc7">
                                                But Washington doesn’t want to hear about the potential problems
                                            </h2>
                                            <p class="css-1ygdjhk evys1bk0">
                                                Rather than simply splitting along party lines, lawmakers’ attitudes toward the deficit also depend on which party is in power. Republicans pilloried the Obama administration for proposing a large stimulus in the depths of the recession in 2009 and complained about the deficit for years.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                In 2013, Senator Mitch McConnell of Kentucky called the debt and deficit “the transcendent issue of our era.” By 2017, as Senate majority leader, he quickly shepherded the tax cut through Congress.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                Senator James Lankford, an Oklahoma Republican who warned of the deficit’s dangers in the past, nevertheless played down that threat on the Senate floor as the tax billed neared passage.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                “I understand it’s a risk, but I think it’s an appropriate risk to be able to say let’s allow Americans to keep more of their own money to invest in this economy,” he said.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                He also claimed the tax cuts would pay for themselves even as the Congressional Budget Office estimated that they would add $250 billion to the deficit on average from 2019 to 2024.
                                            </p>
                                        </div>
                                        <aside class="css-o6xoe7"></aside>
                                    </div>
                                    <div class="css-1fanzo5 StoryBodyCompanionColumn">
                                        <div class="css-53u6y8">
                                            <p class="css-1ygdjhk evys1bk0">
                                                In an interview, Mr. Lankford insisted that the jury was still out on whether the tax cuts would generate additional revenue, citing the strong economic growth recently.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                While the Republican about-face has been much more striking, Democrats have adjusted their position, too.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                Mr. Warner, the Virginia Democrat, called last year’s tax bill “the worst piece of legislation we have passed since I arrived in the Senate.” In 2009, however, when Congress passed an $800 billion stimulus bill backed by the Obama administration, he called it “a responsible mix of tax cuts and investments that will create jobs.”
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                The difference, Mr. Warner said, was that the economy was near the precipice then.
                                            </p>
                                            <p class="css-1ygdjhk evys1bk0">
                                                “There was virtual unanimity among economists that we needed a stimulus,” he said. “But a $2 trillion tax cut at the end of a business cycle with borrowed money won’t end well.”
                                            </p>
                                        </div>
                                        <aside class="css-o6xoe7"></aside>
                                    </div>
                                </section>
                                <div class="bottom-of-article">
                                    <div class="css-1rjzas3"></div>
                                    <div class="css-wg1cha e17092zo0">
                                        <div class="css-x8f8u9 e1e7j8ap0">
                                            <div>
                                                <p>
                                                    Nelson D. Schwartz has covered economics since 2012. Previously, he wrote about Wall Street and banking, and also served as European economic correspondent in Paris. He joined The Times in 2007 as a feature writer for the Sunday Business section. <span class="css-4w91ra"><a href="https://twitter.com/NelsonSchwartz" class="css-1rj8to8" rel="noopener noreferrer" target="_blank"><span class="css-0">@</span>NelsonSchwartz</a></span>
                                                </p>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="css-vdv0al">
                                        A version of this article appears in print on <!-- -->, on Page <!-- -->A<!-- -->1<!-- --> of the New York edition<!-- --> with the headline: <!-- -->What May Soon Exceed Cost of U.S. Military? Interest on U.S. Debt <span>. <a href="http://www.nytreprints.com/">Order Reprints</a> | <a href="http://www.nytimes.com/pages/todayspaper/index.html">Today’s Paper</a> | <a href="https://www.nytimes.com/subscriptions/Multiproduct/lp8HYKU.html?campaignId=48JQY">Subscribe</a></span>
                                    </div>
                                    <div class="css-i29ckm">
                                        <div class="css-1kwfo8p"></div>
                                        <div role="toolbar" aria-label="Social Media Share buttons, Save button, and Comments Panel with current comment count" class="css-d8bdto" data-testid="share-tools">
                                            <ul class="css-y8aj3r">
                                                <li class="css-ar1l6a">
                                                    <a href="https://www.facebook.com/dialog/feed?app_id=9869919170&amp;link=https%3A%2F%2Fwww.nytimes.com%2F2018%2F09%2F25%2Fbusiness%2Feconomy%2Fus-government-debt-interest.html&amp;smid=fb-share&amp;name=As%20Debt%20Rises%2C%20the%20Government%20Will%20Soon%20Spend%20More%20on%20Interest%20Than%20on%20the%20Military&amp;redirect_uri=https%3A%2F%2Fwww.facebook.com%2F" target="_blank" rel="noopener noreferrer" aria-label="Share on Facebook"><svg class="css-4brsb6" viewbox="0 0 7 15" width="7" height="15">
                                                    <path fill-rule="evenodd" clip-rule="evenodd" d="M4.775 14.163V7.08h1.923l.255-2.441H4.775l.004-1.222c0-.636.06-.977.958-.977H6.94V0H5.016c-2.31 0-3.123 1.184-3.123 3.175V4.64H.453v2.44h1.44v7.083h2.882z" fill="#000"></path></svg></a>
                                                </li>
                                                <li class="css-ar1l6a">
                                                    <a href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fnyti.ms%2F2NC9vam&amp;text=As%20Debt%20Rises%2C%20the%20Government%20Will%20Soon%20Spend%20More%20on%20Interest%20Than%20on%20the%20Military" target="_blank" rel="noopener noreferrer" aria-label="Share on Twitter"><svg viewbox="0 0 13 10" class="css-4brsb6" width="13" height="10">
                                                    <path fill-rule="evenodd" clip-rule="evenodd" d="M5.987 2.772l.025.425-.429-.052c-1.562-.2-2.927-.876-4.086-2.011L.93.571.784.987c-.309.927-.111 1.906.533 2.565.343.364.266.416-.327.2-.206-.07-.386-.122-.403-.096-.06.06.146.85.309 1.161.223.434.678.858 1.176 1.11l.42.199-.497.009c-.481 0-.498.008-.447.19.172.564.85 1.162 1.606 1.422l.532.182-.464.277a4.833 4.833 0 0 1-2.3.641c-.387.009-.704.044-.704.07 0 .086 1.047.572 1.657.762 1.828.564 4 .32 5.631-.641 1.159-.685 2.318-2.045 2.859-3.363.292-.702.583-1.984.583-2.6 0-.398.026-.45.507-.927.283-.277.55-.58.6-.667.087-.165.078-.165-.36-.018-.73.26-.832.226-.472-.164.266-.278.584-.78.584-.928 0-.026-.129.018-.275.096a4.79 4.79 0 0 1-.755.294l-.464.148-.42-.286C9.66.467 9.335.293 9.163.24 8.725.12 8.055.137 7.66.276c-1.074.39-1.752 1.395-1.674 2.496z" fill="#000"></path></svg></a>
                                                </li>
                                                <li class="css-ar1l6a">
                                                    <a href="mailto:?subject=NYTimes.com%3A%20As%20Debt%20Rises%2C%20the%20Government%20Will%20Soon%20Spend%20More%20on%20Interest%20Than%20on%20the%20Military&amp;body=From%20The%20New%20York%20Times%3A%0A%0AAs%20Debt%20Rises%2C%20the%20Government%20Will%20Soon%20Spend%20More%20on%20Interest%20Than%20on%20the%20Military%0A%0ATax%20cuts%2C%20spending%20increases%20and%20higher%20interest%20rates%20could%20make%20it%20harder%20to%20respond%20to%20future%20recessions%20and%20deal%20with%20other%20needs.%0A%0Ahttps%3A%2F%2Fwww.nytimes.com%2F2018%2F09%2F25%2Fbusiness%2Feconomy%2Fus-government-debt-interest.html" target="_blank" rel="noopener noreferrer" aria-label="Email"><svg viewbox="0 0 15 9" class="css-4brsb6" width="15" height="9">
                                                    <path fill-rule="evenodd" clip-rule="evenodd" d="M.906 8.418V0L5.64 4.76.906 8.419zm13 0L9.174 4.761 13.906 0v8.418zM7.407 6.539l-1.13-1.137L.907 9h13l-5.37-3.598-1.13 1.137zM1.297 0h12.22l-6.11 5.095L1.297 0z" fill="#000"></path></svg></a>
                                                </li>
                                                <li class="css-ar1l6a">
                                                    <div class="css-6n7j50">
                                                        <button aria-haspopup="true" aria-expanded="false" aria-label="More sharing options" class="css-16ogagc" data-testid=""><svg class="css-uhuo44" viewbox="0 0 16 13" width="16" height="13">
                                                        <path fill-rule="evenodd" clip-rule="evenodd" d="M15.406 5.359L8.978 0v3.215C3.82 3.215.406 8.107.406 12.66 1.653 9.133 4.29 7.517 8.978 7.517v3.2l6.428-5.358z" fill="#000"></path></svg></button>
                                                    </div>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                </div>
                                <div id="bottom-wrapper" class="css-1ede5it">
                                    <div id="bottom-slug" class="css-l9onyx">
                                        <p>
                                            Advertisement
                                        </p>
                                    </div>
                                    <div class="ad bottom-wrapper" style="text-align:center;height:100%;display:block;min-height:90px">
                                        <div id="bottom"></div>
                                    </div>
                                </div>
                            </article>
                            <div class="css-1lc20wh">
                                <div class="css-qremme">
                                    <button class="css-1f85ym4" type="button">Open in the app</button>
                                    <div class="css-7inim5"></div><button class="css-133m5b6" type="button"><svg height="11" width="11" xmlns="http://www.w3.org/2000/svg">
                                    <path stroke="#fff" d="M-0.86,2.17l-4.5,4.5-4.5-4.5"></path>
                                    <path stroke="#fff" d="M-0.86,11.17l-4.5-4.5-4.5,4.5"></path></svg></button>
                                </div>
                            </div>
                        </div>
                    </main>
                    <nav class="css-1ropbjl" id="site-index" aria-labelledby="site-index-label" data-testid="site-index">
                        <div class="css-uw59u">
                            <header class="css-jxzr5i" data-testid="site-index-header">
                                <h2 class="css-vz7hjd" id="site-index-label">
                                    Site Index
                                </h2><a href="/"><svg xmlns="http://www.w3.org/2000/svg" class="css-oylsik" viewbox="0 0 184 25" fill="#000">
                                <path d="M13.8 2.9c0-2-1.9-2.5-3.4-2.5v.3c.9 0 1.6.3 1.6 1 0 .4-.3 1-1.2 1-.7 0-2.2-.4-3.3-.8C6.2 1.4 5 1 4 1 2 1 .6 2.5.6 4.2c0 1.5 1.1 2 1.5 2.2l.1-.2c-.2-.2-.5-.4-.5-1 0-.4.4-1.1 1.4-1.1.9 0 2.1.4 3.7.9 1.4.4 2.9.7 3.7.8v3.1L9 10.2v.1l1.5 1.3v4.3c-.8.5-1.7.6-2.5.6-1.5 0-2.8-.4-3.9-1.6l4.1-2V6l-5 2.2C3.6 6.9 4.7 6 5.8 5.4l-.1-.3c-3 .8-5.7 3.6-5.7 7 0 4 3.3 7 7 7 4 0 6.6-3.2 6.6-6.5h-.2c-.6 1.3-1.5 2.5-2.6 3.1v-4.1l1.6-1.3v-.1l-1.6-1.3V5.8c1.5 0 3-1 3-2.9zm-8.7 11l-1.2.6c-.7-.9-1.1-2.1-1.1-3.8 0-.7 0-1.5.2-2.1l2.1-.9v6.2zm10.6 2.3l-1.3 1 .2.2.6-.5 2.2 2 3-2-.1-.2-.8.5-1-1V9.4l.8-.6 1.7 1.4v6.1c0 3.8-.8 4.4-2.5 5v.3c2.8.1 5.4-.8 5.4-5.7V9.3l.9-.7-.2-.2-.8.6-2.5-2.1L18.5 9V.8h-.2l-3.5 2.4v.2c.4.2 1 .4 1 1.5l-.1 11.3zM34 15.1L31.5 17 29 15v-1.2l4.7-3.2v-.1l-2.4-3.6-5.2 2.8v6.6l-1 .8.2.2.9-.7 3.4 2.5 4.5-3.6-.1-.4zm-5-1.7V8.5l.2-.1 2.2 3.5-2.4 1.5zM53.1 2c0-.3-.1-.6-.2-.9h-.2c-.3.8-.7 1.2-1.7 1.2-.9 0-1.5-.5-1.9-.9l-2.9 3.3.2.2 1-.9c.6.5 1.1.9 2.5 1v8.3L44 3.2c-.5-.8-1.2-1.9-2.6-1.9-1.6 0-3 1.4-2.8 3.6h.3c.1-.6.4-1.3 1.1-1.3.5 0 1 .5 1.3 1v3.3c-1.8 0-3 .8-3 2.3 0 .8.4 2 1.6 2.3v-.2c-.2-.2-.3-.4-.3-.7 0-.5.4-.9 1.1-.9h.5v4.2c-2.1 0-3.8 1.2-3.8 3.2 0 1.9 1.6 2.8 3.4 2.7v-.2c-1.1-.1-1.6-.6-1.6-1.3 0-.9.6-1.3 1.4-1.3.8 0 1.5.5 2 1.1l2.9-3.2-.2-.2-.7.8c-1.1-1-1.7-1.3-3-1.5V5l8 14h.6V5c1.5-.1 2.9-1.3 2.9-3zm7.3 13.1L57.9 17l-2.5-2v-1.2l4.7-3.2v-.1l-2.4-3.6-5.2 2.8v6.6l-1 .8.2.2.9-.7 3.4 2.5 4.5-3.6-.1-.4zm-5-1.7V8.5l.2-.1 2.2 3.5-2.4 1.5zM76.7 8l-.7.5-1.9-1.6-2.2 2 .9.9v7.5l-2.4-1.5V9.6l.8-.5-2.3-2.2-2.2 2 .9.9V17l-.3.2-2.1-1.5v-6c0-1.4-.7-1.8-1.5-2.3-.7-.5-1.1-.8-1.1-1.5 0-.6.6-.9.9-1.1v-.2c-.8 0-2.9.8-2.9 2.7 0 1 .5 1.4 1 1.9s1 .9 1 1.8v5.8l-1.1.8.2.2 1-.8 2.3 2 2.5-1.7 2.8 1.7 5.3-3.1V9.2l1.3-1-.2-.2zm18.6-5.5l-1 .9-2.2-2-3.3 2.4V1.6h-.3l.1 16.2c-.3 0-1.2-.2-1.9-.4l-.2-13.5c0-1-.7-2.4-2.5-2.4s-3 1.4-3 2.8h.3c.1-.6.4-1.1 1-1.1s1.1.4 1.1 1.7v3.9c-1.8.1-2.9 1.1-2.9 2.4 0 .8.4 2 1.6 2V13c-.4-.2-.5-.5-.5-.7 0-.6.5-.8 1.3-.8h.4v6.2c-1.5.5-2.1 1.6-2.1 2.8 0 1.7 1.3 2.9 3.3 2.9 1.4 0 2.6-.2 3.8-.5 1-.2 2.3-.5 2.9-.5.8 0 1.1.4 1.1.9 0 .7-.3 1-.7 1.1v.2c1.6-.3 2.6-1.3 2.6-2.8s-1.5-2.4-3.1-2.4c-.8 0-2.5.3-3.7.5-1.4.3-2.8.5-3.2.5-.7 0-1.5-.3-1.5-1.3 0-.8.7-1.5 2.4-1.5.9 0 2 .1 3.1.4 1.2.3 2.3.6 3.3.6 1.5 0 2.8-.5 2.8-2.6V3.7l1.2-1-.2-.2zm-4.1 6.1c-.3.3-.7.6-1.2.6s-1-.3-1.2-.6V4.2l1-.7 1.4 1.3v3.8zm0 3c-.2-.2-.7-.5-1.2-.5s-1 .3-1.2.5V9c.2.2.7.5 1.2.5s1-.3 1.2-.5v2.6zm0 4.7c0 .8-.5 1.6-1.6 1.6h-.8V12c.2-.2.7-.5 1.2-.5s.9.3 1.2.5v4.3zm13.7-7.1l-3.2-2.3-4.9 2.8v6.5l-1 .8.1.2.8-.6 3.2 2.4 5-3V9.2zm-5.4 6.3V8.3l2.5 1.8v7.1l-2.5-1.7zm14.9-8.4h-.2c-.3.2-.6.4-.9.4-.4 0-.9-.2-1.1-.5h-.2l-1.7 1.9-1.7-1.9-3 2 .1.2.8-.5 1 1.1v6.3l-1.3 1 .2.2.6-.5 2.4 2 3.1-2.1-.1-.2-.9.5-1.2-1V9c.5.5 1.1 1 1.8 1 1.4.1 2.2-1.3 2.3-2.9zm12 9.6L123 19l-4.6-7 3.3-5.1h.2c.4.4 1 .8 1.7.8s1.2-.4 1.5-.8h.2c-.1 2-1.5 3.2-2.5 3.2s-1.5-.5-2.1-.8l-.3.5 5 7.4 1-.6v.1zm-11-.5l-1.3 1 .2.2.6-.5 2.2 2 3-2-.2-.2-.8.5-1-1V.8h-.1l-3.6 2.4v.2c.4.2 1 .3 1 1.5v11.3zM143 2.9c0-2-1.9-2.5-3.4-2.5v.3c.9 0 1.6.3 1.6 1 0 .4-.3 1-1.2 1-.7 0-2.2-.4-3.3-.8-1.3-.4-2.5-.8-3.5-.8-2 0-3.4 1.5-3.4 3.2 0 1.5 1.1 2 1.5 2.2l.1-.2c-.3-.2-.6-.4-.6-1 0-.4.4-1.1 1.4-1.1.9 0 2.1.4 3.7.9 1.4.4 2.9.7 3.7.8V9l-1.5 1.3v.1l1.5 1.3V16c-.8.5-1.7.6-2.5.6-1.5 0-2.8-.4-3.9-1.6l4.1-2V6l-5 2.2c.5-1.3 1.6-2.2 2.6-2.9l-.1-.2c-3 .8-5.7 3.5-5.7 6.9 0 4 3.3 7 7 7 4 0 6.6-3.2 6.6-6.5h-.2c-.6 1.3-1.5 2.5-2.6 3.1v-4.1l1.6-1.3v-.1L140 8.8v-3c1.5 0 3-1 3-2.9zm-8.7 11l-1.2.6c-.7-.9-1.1-2.1-1.1-3.8 0-.7.1-1.5.3-2.1l2.1-.9-.1 6.2zm12.2-12h-.1l-2 1.7v.1l1.7 1.9h.2l2-1.7v-.1l-1.8-1.9zm3 14.8l-.8.5-1-1V9.3l1-.7-.2-.2-.7.6-1.8-2.1-2.9 2 .2.3.7-.5.9 1.1v6.5l-1.3 1 .1.2.7-.5 2.2 2 3-2-.1-.3zm16.7-.1l-.7.5-1.1-1V9.3l1-.8-.2-.2-.8.7-2.3-2.1-3 2.1-2.3-2.1L154 9l-1.8-2.1-2.9 2 .1.3.7-.5 1 1.1v6.5l-.8.8 2.3 1.9 2.2-2-.9-.9V9.3l.9-.6 1.5 1.4v6l-.8.8 2.3 1.9 2.2-2-.9-.9V9.3l.8-.5 1.6 1.4v6l-.7.7 2.3 2.1 3.1-2.1v-.3zm8.7-1.5l-2.5 1.9-2.5-2v-1.2l4.7-3.2v-.1l-2.4-3.6-5.2 2.8v6.8l3.5 2.5 4.5-3.6-.1-.3zm-5-1.7V8.5l.2-.1 2.2 3.5-2.4 1.5zm14.1-.9l-1.9-1.5c1.3-1.1 1.8-2.6 1.8-3.6v-.6h-.2c-.2.5-.6 1-1.4 1-.8 0-1.3-.4-1.8-1L176 9.3v3.6l1.7 1.3c-1.7 1.5-2 2.5-2 3.3 0 1 .5 1.7 1.3 2l.1-.2c-.2-.2-.4-.3-.4-.8 0-.3.4-.8 1.2-.8 1 0 1.6.7 1.9 1l4.3-2.6v-3.6h-.1zm-1.1-3c-.7 1.2-2.2 2.4-3.1 3l-1.1-.9V8.1c.4 1 1.5 1.8 2.6 1.8.7 0 1.1-.1 1.6-.4zm-1.7 8c-.5-1.1-1.7-1.9-2.9-1.9-.3 0-1.1 0-1.9.5.5-.8 1.8-2.2 3.5-3.2l1.2 1 .1 3.6z"></path></svg></a>
                                <div class="css-1otr2jl" data-testid="go-to-homepage">
                                    <a class="css-1c8n994" href="/">Go to Home Page »</a>
                                </div>
                            </header>
                            <div class="css-qtw155" data-testid="site-index-accordion">
                                <div class="" role="tablist" aria-multiselectable="true" data-testid="accordion">
                                    <div class="" data-testid="accordion-item">
                                        <header aria-controls="body-siteindex-0" id="item-siteindex-0" class="css-mn5hq9" role="tab" tabindex="0" aria-expanded="false" data-testid="accordion-item-header">
                                            news
                                        </header>
                                        <div class="css-1hyfx7x" id="body-siteindex-0" aria-labelledby="item-siteindex-0" aria-expanded="false" role="tabpanel" data-testid="accordion-item-body">
                                            <ul class="css-1gprdgz" data-testid="site-index-accordion-list">
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com" data-testid="accordion-item-list-link">home page</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/world" data-testid="accordion-item-list-link">world</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/us" data-testid="accordion-item-list-link">U.S.</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/politics" data-testid="accordion-item-list-link">politics</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/nyregion" data-testid="accordion-item-list-link">New York</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/business" data-testid="accordion-item-list-link">business</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/technology" data-testid="accordion-item-list-link">tech</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/science" data-testid="accordion-item-list-link">science</a>
                                                </li>
                                                <li class="css-10t7hia smartphone">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/climate" data-testid="accordion-item-list-link">climate</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/sports" data-testid="accordion-item-list-link">sports</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/obituaries" data-testid="accordion-item-list-link">obituaries</a>
                                                </li>
                                                <li class="css-10t7hia smartphone">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/upshot" data-testid="accordion-item-list-link">the upshot</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/todayspaper" data-testid="accordion-item-list-link">today's paper</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/corrections" data-testid="accordion-item-list-link">corrections</a>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="" data-testid="accordion-item">
                                        <header aria-controls="body-siteindex-1" id="item-siteindex-1" class="css-mn5hq9" role="tab" tabindex="0" aria-expanded="false" data-testid="accordion-item-header">
                                            opinion
                                        </header>
                                        <div class="css-1hyfx7x" id="body-siteindex-1" aria-labelledby="item-siteindex-1" aria-expanded="false" role="tabpanel" data-testid="accordion-item-body">
                                            <ul class="css-1gprdgz" data-testid="site-index-accordion-list">
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/opinion" data-testid="accordion-item-list-link">today's opinion</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/opinion/columnists" data-testid="accordion-item-list-link">op-ed columnists</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/opinion/editorials" data-testid="accordion-item-list-link">editorials</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/opinion/contributors" data-testid="accordion-item-list-link">op-ed Contributors</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/opinion/letters" data-testid="accordion-item-list-link">letters</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/opinion/sunday" data-testid="accordion-item-list-link">sunday review</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/video/opinion" data-testid="accordion-item-list-link">video: opinion</a>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="" data-testid="accordion-item">
                                        <header aria-controls="body-siteindex-2" id="item-siteindex-2" class="css-mn5hq9" role="tab" tabindex="0" aria-expanded="false" data-testid="accordion-item-header">
                                            arts
                                        </header>
                                        <div class="css-1hyfx7x" id="body-siteindex-2" aria-labelledby="item-siteindex-2" aria-expanded="false" role="tabpanel" data-testid="accordion-item-body">
                                            <ul class="css-1gprdgz" data-testid="site-index-accordion-list">
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/arts" data-testid="accordion-item-list-link">today's arts</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/arts/design" data-testid="accordion-item-list-link">art &amp; design</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/books" data-testid="accordion-item-list-link">books</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/arts/dance" data-testid="accordion-item-list-link">dance</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/movies" data-testid="accordion-item-list-link">movies</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/arts/music" data-testid="accordion-item-list-link">music</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/spotlight/pop-culture" data-testid="accordion-item-list-link">Pop Culture</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/arts/television" data-testid="accordion-item-list-link">television</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/theater" data-testid="accordion-item-list-link">theater</a>
                                                </li>
                                                <li class="css-10t7hia smartphone">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/watching" data-testid="accordion-item-list-link">watching</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/video/arts" data-testid="accordion-item-list-link">video: arts</a>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="" data-testid="accordion-item">
                                        <header aria-controls="body-siteindex-3" id="item-siteindex-3" class="css-mn5hq9" role="tab" tabindex="0" aria-expanded="false" data-testid="accordion-item-header">
                                            living
                                        </header>
                                        <div class="css-1hyfx7x" id="body-siteindex-3" aria-labelledby="item-siteindex-3" aria-expanded="false" role="tabpanel" data-testid="accordion-item-body">
                                            <ul class="css-1gprdgz" data-testid="site-index-accordion-list">
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/automobiles" data-testid="accordion-item-list-link">automobiles</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/crosswords" data-testid="accordion-item-list-link">crossword</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/food" data-testid="accordion-item-list-link">food</a>
                                                </li>
                                                <li class="css-10t7hia smartphone">
                                                    <a class="css-mzqdl" href="https://cooking.nytimes.com/" data-testid="accordion-item-list-link">Cooking</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/education" data-testid="accordion-item-list-link">education</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/style" data-testid="accordion-item-list-link">style</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/health" data-testid="accordion-item-list-link">health</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/jobs" data-testid="accordion-item-list-link">jobs</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/magazine" data-testid="accordion-item-list-link">magazine</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/realestate" data-testid="accordion-item-list-link">real estate</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/t-magazine" data-testid="accordion-item-list-link">t magazine</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/travel" data-testid="accordion-item-list-link">travel</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/fashion/weddings" data-testid="accordion-item-list-link">weddings</a>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="" data-testid="accordion-item">
                                        <header aria-controls="body-siteindex-4" id="item-siteindex-4" class="css-mn5hq9" role="tab" tabindex="0" aria-expanded="false" data-testid="accordion-item-header">
                                            listings &amp; more
                                        </header>
                                        <div class="css-1hyfx7x" id="body-siteindex-4" aria-labelledby="item-siteindex-4" aria-expanded="false" role="tabpanel" data-testid="accordion-item-body">
                                            <ul class="css-1gprdgz" data-testid="site-index-accordion-list">
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/reader-center" data-testid="accordion-item-list-link">Reader Center</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://thewirecutter.com" data-testid="accordion-item-list-link">Wirecutter</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="http://nytconferences.com/" data-testid="accordion-item-list-link">Live Events</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/learning" data-testid="accordion-item-list-link">The Learning Network</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="http://www.nytimes.com/marketing/tools-and-services" data-testid="accordion-item-list-link">tools &amp; services</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/events" data-testid="accordion-item-list-link">N.Y.C. events guide</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/multimedia" data-testid="accordion-item-list-link">multimedia</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/section/lens" data-testid="accordion-item-list-link">photography</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/video" data-testid="accordion-item-list-link">video</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/store" data-testid="accordion-item-list-link">NYT store</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://www.nytimes.com/times-journeys" data-testid="accordion-item-list-link">times journeys</a>
                                                </li>
                                                <li class="css-10t7hia">
                                                    <a class="css-mzqdl" href="https://myaccount.nytimes.com/membercenter/myaccount.html" data-testid="accordion-item-list-link">manage my account</a>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="css-v0l3hm" data-testid="site-index-sections">
                                <div class="css-g4gku8" data-testid="site-index-section">
                                    <section class="css-1rr4qq7" aria-labelledby="site-index-section-label-0">
                                        <h3 class="css-rxqrcl" id="site-index-section-label-0">
                                            news
                                        </h3>
                                        <ul class="css-1iruc8t" data-testid="site-index-section-list">
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com" data-testid="site-index-section-list-link">home page</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/world" data-testid="site-index-section-list-link">world</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/us" data-testid="site-index-section-list-link">U.S.</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/politics" data-testid="site-index-section-list-link">politics</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/nyregion" data-testid="site-index-section-list-link">New York</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/business" data-testid="site-index-section-list-link">business</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/technology" data-testid="site-index-section-list-link">tech</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/science" data-testid="site-index-section-list-link">science</a>
                                            </li>
                                            <li class="css-ist4u3 smartphone">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/climate" data-testid="site-index-section-list-link">climate</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/sports" data-testid="site-index-section-list-link">sports</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/obituaries" data-testid="site-index-section-list-link">obituaries</a>
                                            </li>
                                            <li class="css-ist4u3 smartphone">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/upshot" data-testid="site-index-section-list-link">the upshot</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/todayspaper" data-testid="site-index-section-list-link">today's paper</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/corrections" data-testid="site-index-section-list-link">corrections</a>
                                            </li>
                                        </ul>
                                    </section>
                                    <section class="css-1rr4qq7" aria-labelledby="site-index-section-label-1">
                                        <h3 class="css-rxqrcl" id="site-index-section-label-1">
                                            opinion
                                        </h3>
                                        <ul class="css-1iruc8t" data-testid="site-index-section-list">
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/opinion" data-testid="site-index-section-list-link">today's opinion</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/opinion/columnists" data-testid="site-index-section-list-link">op-ed columnists</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/opinion/editorials" data-testid="site-index-section-list-link">editorials</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/opinion/contributors" data-testid="site-index-section-list-link">op-ed Contributors</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/opinion/letters" data-testid="site-index-section-list-link">letters</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/opinion/sunday" data-testid="site-index-section-list-link">sunday review</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/video/opinion" data-testid="site-index-section-list-link">video: opinion</a>
                                            </li>
                                        </ul>
                                    </section>
                                    <section class="css-1rr4qq7" aria-labelledby="site-index-section-label-2">
                                        <h3 class="css-rxqrcl" id="site-index-section-label-2">
                                            arts
                                        </h3>
                                        <ul class="css-1iruc8t" data-testid="site-index-section-list">
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/arts" data-testid="site-index-section-list-link">today's arts</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/arts/design" data-testid="site-index-section-list-link">art &amp; design</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/books" data-testid="site-index-section-list-link">books</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/arts/dance" data-testid="site-index-section-list-link">dance</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/movies" data-testid="site-index-section-list-link">movies</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/arts/music" data-testid="site-index-section-list-link">music</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/spotlight/pop-culture" data-testid="site-index-section-list-link">Pop Culture</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/arts/television" data-testid="site-index-section-list-link">television</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/theater" data-testid="site-index-section-list-link">theater</a>
                                            </li>
                                            <li class="css-ist4u3 smartphone">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/watching" data-testid="site-index-section-list-link">watching</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/video/arts" data-testid="site-index-section-list-link">video: arts</a>
                                            </li>
                                        </ul>
                                    </section>
                                    <section class="css-1rr4qq7" aria-labelledby="site-index-section-label-3">
                                        <h3 class="css-rxqrcl" id="site-index-section-label-3">
                                            living
                                        </h3>
                                        <ul class="css-1iruc8t" data-testid="site-index-section-list">
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/automobiles" data-testid="site-index-section-list-link">automobiles</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/crosswords" data-testid="site-index-section-list-link">crossword</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/food" data-testid="site-index-section-list-link">food</a>
                                            </li>
                                            <li class="css-ist4u3 smartphone">
                                                <a class="css-kwpx34" href="https://cooking.nytimes.com/" data-testid="site-index-section-list-link">Cooking</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/education" data-testid="site-index-section-list-link">education</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/style" data-testid="site-index-section-list-link">style</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/health" data-testid="site-index-section-list-link">health</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/jobs" data-testid="site-index-section-list-link">jobs</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/magazine" data-testid="site-index-section-list-link">magazine</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/realestate" data-testid="site-index-section-list-link">real estate</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/t-magazine" data-testid="site-index-section-list-link">t magazine</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/travel" data-testid="site-index-section-list-link">travel</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/fashion/weddings" data-testid="site-index-section-list-link">weddings</a>
                                            </li>
                                        </ul>
                                    </section>
                                    <section class="css-1rr4qq7" aria-labelledby="site-index-section-label-4">
                                        <h3 class="css-rxqrcl" id="site-index-section-label-4">
                                            more
                                        </h3>
                                        <ul class="css-1iruc8t" data-testid="site-index-section-list">
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/reader-center" data-testid="site-index-section-list-link">Reader Center</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://thewirecutter.com" data-testid="site-index-section-list-link">Wirecutter</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="http://nytconferences.com/" data-testid="site-index-section-list-link">Live Events</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/learning" data-testid="site-index-section-list-link">The Learning Network</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="http://www.nytimes.com/marketing/tools-and-services" data-testid="site-index-section-list-link">tools &amp; services</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/events" data-testid="site-index-section-list-link">N.Y.C. events guide</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/multimedia" data-testid="site-index-section-list-link">multimedia</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/section/lens" data-testid="site-index-section-list-link">photography</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/video" data-testid="site-index-section-list-link">video</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/store" data-testid="site-index-section-list-link">NYT store</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://www.nytimes.com/times-journeys" data-testid="site-index-section-list-link">times journeys</a>
                                            </li>
                                            <li class="css-ist4u3">
                                                <a class="css-kwpx34" href="https://myaccount.nytimes.com/membercenter/myaccount.html" data-testid="site-index-section-list-link">manage my account</a>
                                            </li>
                                        </ul>
                                    </section>
                                    <div class="css-6xhk3s" aria-labelledby="site-index-subscribe-label">
                                        <h3 class="css-rxqrcl" id="site-index-subscribe-label">
                                            Subscribe
                                        </h3>
                                        <ul class="css-1iruc8t" data-testid="site-index-subscribe-list">
                                            <li class="css-tj0ten">
                                                <a class="css-1k2cjfc" href="https://www.nytimes.com/hdleftnav" data-testid="site-index-subscribe-list-link"><svg class="css-r5ic95" viewbox="0 0 14 13" fill="#000">
                                                <path d="M13.1,11.7H3.5V1.2h9.6V11.7zM13.1,0.4H3.5C3,0.4,2.6,0.8,2.6,1.2v2.2H0.9C0.4,3.4,0,3.8,0,4.3v5.2v1.5c0,0.8,0.8,1.5,1.8,1.5h1.7h0h7.4h2.2c0.5,0,0.9-0.4,0.9-0.9V1.2C14,0.8,13.6,0.4,13.1,0.4"></path>
                                                <polygon points="10.9,3 5.2,3 5.2,3.9 11.4,3.9 11.4,3"></polygon>
                                                <rect x="5.2" y="4.7" width="6.1" height="0.9"></rect>
                                                <rect x="5.2" y="6.5" width="6.1" height="0.9"></rect></svg>home delivery</a>
                                            </li>
                                            <li class="css-tj0ten">
                                                <a class="css-1k2cjfc" href="https://www.nytimes.com/digitalleftnav" data-testid="site-index-subscribe-list-link"><svg class="css-r5ic95" viewbox="0 0 10 13">
                                                <path fill="#000" d="M9.9,8c-0.4,1.1-1.2,1.9-2.3,2.4V8l1.3-1.2L7.6,5.7V4c1.2-0.1,2-1,2-2c0-1.4-1.3-1.9-2.1-1.9c-0.2,0-0.3,0-0.6,0.1v0.1c0.1,0,0.2,0,0.3,0c0.5,0,0.9,0.2,0.9,0.7c0,0.4-0.3,0.7-0.8,0.7C6,1.7,4.5,0.6,2.8,0.6c-1.5,0-2.5,1.1-2.5,2.2C0.3,4,1,4.3,1.6,4.6l0-0.1C1.4,4.4,1.3,4.1,1.3,3.8c0-0.5,0.5-0.9,1-0.9C3.7,2.9,6,4,7.4,4h0.1v1.7L6.2,6.8L7.5,8v2.4c-0.5,0.2-1.1,0.3-1.7,0.3c-2.2,0-3.6-1.3-3.6-3.5c0-0.5,0.1-1,0.2-1.5l1.1-0.5V10l2.2-1v-5L2.5,5.5c0.3-1,1-1.7,1.8-2l0,0C2.2,3.9,0.1,5.6,0.1,8c0,2.9,2.4,4.8,5.2,4.8C8.2,12.9,9.9,10.9,9.9,8L9.9,8z"></path></svg>digital subscriptions</a>
                                            </li>
                                            <li class="css-tj0ten">
                                                <a class="css-1k2cjfc" href="https://www.nytimes.com/subscription/games/lp897H9.html" data-testid="site-index-subscribe-list-link"><svg class="css-r5ic95" viewbox="0 0 13 13" fill="#000">
                                                <polygon points="0,-93.6 0,-86.9 6.6,-93.6"></polygon>
                                                <polygon points="0.9,-86 7.5,-86 7.5,-92.6"></polygon>
                                                <polygon points="0,-98 0,-94.8 8.8,-94.8 8.8,-86 12,-86 12,-98"></polygon>
                                                <path d="M11.9-40c-0.4,1.1-1.2,1.9-2.3,2.4V-40l1.3-1.2l-1.3-1.2V-44c1.2-0.1,2-1,2-2c0-1.4-1.3-1.9-2.1-1.9c-0.2,0-0.3,0-0.6,0.1v0.1c0.1,0,0.2,0,0.3,0c0.5,0,0.9,0.2,0.9,0.7c0,0.4-0.3,0.7-0.8,0.7c-1.3,0-2.8-1.1-4.5-1.1c-1.5,0-2.5,1.1-2.5,2.2c0,1.1,0.6,1.5,1.3,1.7l0-0.1c-0.2-0.1-0.4-0.4-0.4-0.7c0-0.5,0.5-0.9,1-0.9C5.7-45.1,8-44,9.4-44h0.1v1.7l-1.3,1.1L9.5-40v2.4c-0.5,0.2-1.1,0.3-1.7,0.3c-2.2,0-3.6-1.3-3.6-3.5c0-0.5,0.1-1,0.2-1.5l1.1-0.5v4.9l2.2-1v-5l-3.3,1.5c0.3-1,1-1.7,1.8-2l0,0c-2.2,0.5-4.3,2.1-4.3,4.6c0,2.9,2.4,4.8,5.2,4.8C10.2-35.1,11.9-37.1,11.9-40L11.9-40z"></path>
                                                <path d="M12.2-23.7c-0.2,0-0.4,0.2-0.4,0.4v0.4L0.4-19.1v2.3l3,1l-0.2,0.6c-0.3,0.8,0.1,1.8,0.9,2.1l1.7,0.7c0.2,0.1,0.4,0.1,0.6,0.1c0.6,0,1.3-0.4,1.5-1l0.4-0.9l3.5,1.2v0.4c0,0.2,0.2,0.4,0.4,0.4c0.2,0,0.4-0.2,0.4-0.4v-10.7C12.6-23.5,12.4-23.7,12.2-23.7M7.1-13.6c-0.2,0.4-0.6,0.6-1,0.4l-1.7-0.7c-0.4-0.2-0.6-0.6-0.4-1l0.3-0.7l3.3,1.1L7.1-13.6z"></path>
                                                <path d="M13.1-60.3H3.5v-10.5h9.6V-60.3zM13.1-71.6H3.5c-0.5,0-0.9,0.4-0.9,0.9v2.2H0.9c-0.5,0-0.9,0.4-0.9,0.9v5.2v1.5c0,0.8,0.8,1.5,1.8,1.5h1.7h0h7.4h2.2c0.5,0,0.9-0.4,0.9-0.9v-10.5C14-71.2,13.6-71.6,13.1-71.6"></path>
                                                <polygon points="10.9,-69 5.2,-69 5.2,-68.1 11.4,-68.1 11.4,-69"></polygon>
                                                <rect x="5.2" y="-67.3" width="6.1" height="0.9"></rect>
                                                <rect x="5.2" y="-65.5" width="6.1" height="0.9"></rect>
                                                <path d="M12,6.5H6.5V12H1V6.5h5.5V1H12V6.5zM12,0H1C0.4,0,0,0.5,0,1v11c0,0.6,0.4,1,1,1h11c0.5,0,1-0.4,1-1V1C13,0.5,12.5,0,12,0"></path></svg>Crossword</a>
                                            </li>
                                            <li class="css-tj0ten">
                                                <a class="css-1k2cjfc" href="https://www.nytimes.com/subscriptions/Multiproduct/lp8R3WU.html" data-testid="site-index-subscribe-list-link"><svg class="css-r5ic95" viewbox="0 0 13 13" fill="#000">
                                                <path d="M12,2.9L9.6,5.2c-0.1,0.1-0.3,0.1-0.4,0C9.1,5.2,9.1,5,9.3,4.9l2.4-2.4c-0.2-0.2-0.3-0.3-0.5-0.5L8.7,4.3c-0.1,0.1-0.3,0.1-0.4,0C8.2,4.3,8.2,4.1,8.4,4l2.4-2.4c-0.3-0.3-0.5-0.5-0.5-0.5L7.6,3.4C7.1,4,6.8,5.1,7.1,5.8c-1.4,1-4.6,3.5-5.1,4c-0.8,0.8-0.4,1.8-0.3,1.9c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0.1,1.1,0.5,1.9-0.3c0.4-0.4,2.9-3.6,3.9-5C8.4,6.9,9.6,6.6,10.2,6l2.3-2.6C12.5,3.4,12.3,3.2,12,2.9z"></path>
                                                <path d="M0.8,1.9l0.3-0.3c0.9-0.9,3.2,1.1,3.8,1.7s0.9,1.8,0.4,2.6c1.4,1.1,4.6,3.5,5,3.9c0.8,0.8,0.4,1.8,0.3,1.9c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0.1-1.1,0.5-1.9-0.3c-0.4-0.4-2.9-3.7-4-5.1C3.9,6.7,2.9,6.4,2.3,5.8S-0.2,2.9,0.8,1.9z"></path></svg>Cooking</a>
                                            </li>
                                        </ul>
                                        <ul class="css-1iruc8t" data-testid="site-index-corporate-links">
                                            <li>
                                                <a class="css-1vhk1ks" href="https://www.nytimes.com/marketing/newsletters">email newsletters</a>
                                            </li>
                                            <li>
                                                <a class="css-1vhk1ks" href="https://www.nytimes.com/corporateleftnav">corporate subscriptions</a>
                                            </li>
                                            <li>
                                                <a class="css-1vhk1ks" href="https://www.nytimes.com/educationleftnav">education rate</a>
                                            </li>
                                        </ul>
                                        <ul class="css-6td9kr" data-testid="site-index-alternate-links">
                                            <li>
                                                <a class="css-1vhk1ks" href="https://www.nytimes.com/services/mobile/index.html">mobile applications</a>
                                            </li>
                                            <li>
                                                <a class="css-1vhk1ks" href="http://eedition.nytimes.com/cgi-bin/signup.cgi?cc=37FYY">replica edition</a>
                                            </li>
                                        </ul>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </nav>
                    <footer role="contentinfo" class="css-1qmnftd e1ksinrk0">
                        <nav data-testid="footer" class="css-15uy5yv">
                            <h2 class="css-vz7hjd">
                                Site Information Navigation
                            </h2>
                            <ul class="css-1ho5u4o e1ksinrk1">
                                <li data-testid="copyright">
                                    <a class="css-1p8nkc0" href="https://www.nytimes.com/content/help/rights/copyright/copyright-notice.html">©&#160;<span itemprop="copyrightYear">2019</span><span itemprop="publisher copyrightHolder provider sourceOrganization" itemscope="itemscope" itemtype="http://schema.org/NewsMediaOrganization" itemid="https://www.nytimes.com">&#160;
                                    <meta itemprop="diversityPolicy" content="https://www.nytco.com/diversity-and-inclusion-at-the-new-york-times/" />
                                    <meta itemprop="ethicsPolicy" content="https://www.nytco.com/who-we-are/culture/standards-and-ethics/" />
                                    <meta itemprop="foundingDate" content="1851-09-18" /><span itemprop="logo" itemscope="itemscope" itemtype="https://schema.org/ImageObject">
                                    <meta itemprop="url" content="https://static01.nyt.com/images/misc/NYT_logo_rss_250x40.png" /></span>
                                    <meta itemprop="url" content="https://www.nytimes.com/" />
                                    <meta itemprop="masthead" content="https://www.nytimes.com/interactive/2018/09/28/admin/the-new-york-times-masthead.html" /><span itemprop="name">The New York Times Company</span></span></a>
                                </li>
                            </ul>
                            <ul class="css-13o0c9t e1ksinrk2">
                                <li class="css-1yo489b e1ksinrk3">
                                    <a data-testid="footer-link" class="css-1p8nkc0" href="https://myaccount.nytimes.com/membercenter/feedback.html">Contact Us</a>
                                </li>
                                <li class="css-1yo489b e1ksinrk3">
                                    <a data-testid="footer-link" class="css-1p8nkc0" href="http://www.nytco.com/careers">Work with us</a>
                                </li>
                                <li class="css-1yo489b e1ksinrk3">
                                    <a data-testid="footer-link" class="css-1p8nkc0" href="http://nytmediakit.com/">Advertise</a>
                                </li>
                                <li class="css-1yo489b e1ksinrk3">
                                    <a data-testid="footer-link" class="css-1p8nkc0" href="https://www.nytimes.com/content/help/rights/privacy/policy/privacy-policy.html#pp">Your Ad Choices</a>
                                </li>
                                <li class="css-1yo489b e1ksinrk3">
                                    <a data-testid="footer-link" class="css-1p8nkc0" href="https://www.nytimes.com/privacy">Privacy</a>
                                </li>
                                <li class="css-1yo489b e1ksinrk3">
                                    <a data-testid="footer-link" class="css-1p8nkc0" href="https://www.nytimes.com/ref/membercenter/help/agree.html">Terms of Service</a>
                                </li>
                                <li class="css-1yo489b e1ksinrk3">
                                    <a data-testid="footer-link" class="css-1p8nkc0" href="https://www.nytimes.com/content/help/rights/sale/terms-of-sale.html">Terms of Sale</a>
                                </li>
                                <li class="css-1yo489b e1ksinrk3">
                                    <a data-testid="footer-link" class="css-1p8nkc0" href="http://spiderbites.nytimes.com">Site Map</a>
                                </li>
                                <li class="smartphone css-1yo489b e1ksinrk3">
                                    <a data-testid="footer-link" class="css-1p8nkc0" href="https://mobile.nytimes.com/help">Help</a>
                                </li>
                                <li class="desktop css-1yo489b e1ksinrk3">
                                    <a data-testid="footer-link" class="css-1p8nkc0" href="https://www.nytimes.com/membercenter/sitehelp.html">Help</a>
                                </li>
                                <li class="css-1yo489b e1ksinrk3">
                                    <a data-testid="footer-link" class="css-1p8nkc0" href="https://www.nytimes.com/subscription/multiproduct/lp8HYKU?campaignId=37WXW">Subscriptions</a>
                                </li>
                            </ul>
                        </nav>
                    </footer>
                </div>
            </div>
        </div>
        <script>
        <![CDATA[
        window.__preloadedData = {"initialState":{"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==":{"__typename":"Article","id":"QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==","compatibility":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.compatibility","typename":"CompatibilityFeatures"},"collections@filterEmpty":[{"type":"id","generated":false,"id":"LegacyCollection:TGVnYWN5Q29sbGVjdGlvbjpueXQ6Ly9sZWdhY3ljb2xsZWN0aW9uL2RiNjYxNjRiLWVhNWYtNTUyMS1hZGE0LTI4NGFjYmI1OWMyOQ==","typename":"LegacyCollection"},{"type":"id","generated":false,"id":"LegacyCollection:TGVnYWN5Q29sbGVjdGlvbjpueXQ6Ly9sZWdhY3ljb2xsZWN0aW9uLzZhNDIyMjc1LThmM2YtNTFiZC04MTlkLTZiZTcyMDQxZDgwMQ==","typename":"LegacyCollection"},{"type":"id","generated":false,"id":"LegacyCollection:TGVnYWN5Q29sbGVjdGlvbjpueXQ6Ly9sZWdhY3ljb2xsZWN0aW9uLzU0YzJkNTFjLTE0ZjYtNTgyMC04MzJkLTk2ODk0NmZiMzM4ZA==","typename":"LegacyCollection"},{"type":"id","generated":false,"id":"LegacyCollection:TGVnYWN5Q29sbGVjdGlvbjpueXQ6Ly9sZWdhY3ljb2xsZWN0aW9uLzU4NzljYmY2LTg0NjYtNWY0NC1hNmM4LTg4NDZlZjk3NjA2Yw==","typename":"LegacyCollection"}],"tone":"NEWS","section":{"type":"id","generated":false,"id":"Section:U2VjdGlvbjpueXQ6Ly9zZWN0aW9uLzA0MTViMmIwLTUxM2EtNWU3OC04MGRhLTIxYWI3NzBjYjc1Mw==","typename":"Section"},"subsection":{"type":"id","generated":false,"id":"Section:U2VjdGlvbjpueXQ6Ly9zZWN0aW9uLzE3YjM1OWM0LTY3YTEtNTE4Yy05YTM0LTIyZmMyNTU2YzQ5ZA==","typename":"Section"},"sprinkledBody":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody","typename":"DocumentBlock"},"url":"https:\u002F\u002Fwww.nytimes.com\u002F2018\u002F09\u002F25\u002Fbusiness\u002Feconomy\u002Fus-government-debt-interest.html","adTargetingParams({\"clientAdParams\":{\"edn\":\"us\",\"plat\":\"web\",\"prop\":\"nyt\"}})":[{"type":"id","generated":false,"id":"AdTargetingParam:si_sectionbusiness","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:keywords","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:templatearticle","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:platweb","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:authnelsondschwartz","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:typart,oak","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:ednus","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:trend","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:desnationaldebtus,federalbudgetus,unitedstatespoliticsandgovernm,interestrates,unitedstatesdefenseandmilitary,unitedstateseconomy,federaltaxesus,usdollarcurrency,recessionanddepression","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:pertrumpdonaldj","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:orgcongressionalbudgetoffice,federalreservesystem","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:collpolitics,economy,business,amp","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:gui","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:id100000006102576","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:geo","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:col","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:als_test1551234976794","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:brandsensitivefalse","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:spon","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:ledemedsznone","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:propnyt","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:sectionbusiness","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:artlenlong","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:emotionsfear,optimistic,interest,informed,hate,not_selfconfident,not_happiness,not_adventurous,not_inthemoodtospend,not_boredom,not_indulgent,not_nostalgic,not_love,not_amused,not_inspired","typename":"AdTargetingParam"},{"type":"id","generated":false,"id":"AdTargetingParam:gscatneg_mastercard,gs_politics,gs_economy,gs_economy_misc,gs_finance,gs_politics_misc,gs_politics_american,gs_finance_loans,neg_hearts,gs_finance_tax,gv_safe","typename":"AdTargetingParam"}],"sourceId":"100000006102576","type":"article","wordCount":1466,"bylines":[{"type":"id","generated":true,"id":"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.bylines.0","typename":"Byline"}],"displayProperties":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.displayProperties","typename":"CreativeWorkDisplayProperties"},"typeOfMaterials":{"type":"json","json":["News"]},"collections":[{"type":"id","generated":false,"id":"LegacyCollection:TGVnYWN5Q29sbGVjdGlvbjpueXQ6Ly9sZWdhY3ljb2xsZWN0aW9uL2RiNjYxNjRiLWVhNWYtNTUyMS1hZGE0LTI4NGFjYmI1OWMyOQ==","typename":"LegacyCollection"},{"type":"id","generated":false,"id":"LegacyCollection:TGVnYWN5Q29sbGVjdGlvbjpueXQ6Ly9sZWdhY3ljb2xsZWN0aW9uLzZhNDIyMjc1LThmM2YtNTFiZC04MTlkLTZiZTcyMDQxZDgwMQ==","typename":"LegacyCollection"},{"type":"id","generated":false,"id":"LegacyCollection:TGVnYWN5Q29sbGVjdGlvbjpueXQ6Ly9sZWdhY3ljb2xsZWN0aW9uLzU0YzJkNTFjLTE0ZjYtNTgyMC04MzJkLTk2ODk0NmZiMzM4ZA==","typename":"LegacyCollection"},{"type":"id","generated":false,"id":"LegacyCollection:TGVnYWN5Q29sbGVjdGlvbjpueXQ6Ly9sZWdhY3ljb2xsZWN0aW9uLzU4NzljYmY2LTg0NjYtNWY0NC1hNmM4LTg4NDZlZjk3NjA2Yw==","typename":"LegacyCollection"}],"timesTags@filterEmpty":[{"type":"id","generated":true,"id":"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.0","typename":"Subject"},{"type":"id","generated":true,"id":"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.1","typename":"Subject"},{"type":"id","generated":true,"id":"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.2","typename":"Subject"},{"type":"id","generated":true,"id":"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.3","typename":"Person"},{"type":"id","generated":true,"id":"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.4","typename":"Subject"},{"type":"id","generated":true,"id":"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.5","typename":"Subject"},{"type":"id","generated":true,"id":"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.6","typename":"Subject"},{"type":"id","generated":true,"id":"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.7","typename":"Subject"},{"type":"id","generated":true,"id":"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.8","typename":"Subject"},{"type":"id","generated":true,"id":"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.9","typename":"Subject"},{"type":"id","generated":true,"id":"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.10","typename":"Organization"},{"type":"id","generated":true,"id":"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.11","typename":"Organization"}],"language":null,"desk":"Business","kicker":"","headline":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.headline","typename":"CreativeWorkHeadline"},"commentStatus":"ACCEPT_AND_DISPLAY_COMMENTS","firstPublished":"2018-09-25T21:28:31.000Z","lastModified":"2018-09-28T13:09:07.032Z","originalDesk":"Business","source":{"type":"id","generated":false,"id":"Organization:T3JnYW5pemF0aW9uOm55dDovL29yZ2FuaXphdGlvbi9jMjc5MTM4OC02YjE2LTVmZmQtYTExOS05NmVhY2IxOTg5YzE=","typename":"Organization"},"printInformation":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.printInformation","typename":"PrintInformation"},"sprinkled":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkled","typename":"SprinkledContent"},"dfpTaxonomyException":null,"advertisingProperties":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.advertisingProperties","typename":"CreativeWorkAdvertisingProperties"},"reviewItems":[],"translations":[],"summary":"Tax cuts, spending increases and higher interest rates could make it harder to respond to future recessions and deal with other needs.","uri":"nyt:\u002F\u002Farticle\u002F5563b851-3a8e-58f7-8f67-0716698cebaa","eventId":"pubp:\u002F\u002Fevent\u002F98755cd27ffd446db9ef9870a3fb9db8","promotionalMedia":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.promotionalMedia","typename":"Image"},"shortUrl":"https:\u002F\u002Fnyti.ms\u002F2NC9vam","promotionalHeadline":"As Debt Rises, the Government Will Soon Spend More on Interest Than on the Military","promotionalSummary":"Tax cuts, spending increases and higher interest rates could make it harder to respond to future recessions and deal with other needs.","column":null,"newsStatus":"DEFAULT","reviewSummary":"","legacy":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.legacy","typename":"ArticleLegacyData"},"addendums":[],"related@filterEmpty":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.compatibility":{"isOak":true,"__typename":"CompatibilityFeatures","hasVideo":false,"hasOakConversionError":false,"isArtReview":false,"isBookReview":false,"isDiningReview":false,"isMovieReview":false,"isTheaterReview":false},"LegacyCollection:TGVnYWN5Q29sbGVjdGlvbjpueXQ6Ly9sZWdhY3ljb2xsZWN0aW9uL2RiNjYxNjRiLWVhNWYtNTUyMS1hZGE0LTI4NGFjYmI1OWMyOQ==":{"id":"TGVnYWN5Q29sbGVjdGlvbjpueXQ6Ly9sZWdhY3ljb2xsZWN0aW9uL2RiNjYxNjRiLWVhNWYtNTUyMS1hZGE0LTI4NGFjYmI1OWMyOQ==","slug":"politics","__typename":"LegacyCollection","name":"Politics","collectionType":"SECTION","uri":"nyt:\u002F\u002Flegacycollection\u002Fdb66164b-ea5f-5521-ada4-284acbb59c29","header":"","showCollectionStories":false},"LegacyCollection:TGVnYWN5Q29sbGVjdGlvbjpueXQ6Ly9sZWdhY3ljb2xsZWN0aW9uLzZhNDIyMjc1LThmM2YtNTFiZC04MTlkLTZiZTcyMDQxZDgwMQ==":{"id":"TGVnYWN5Q29sbGVjdGlvbjpueXQ6Ly9sZWdhY3ljb2xsZWN0aW9uLzZhNDIyMjc1LThmM2YtNTFiZC04MTlkLTZiZTcyMDQxZDgwMQ==","slug":"business-economy","__typename":"LegacyCollection","name":"Economy","collectionType":"SECTION","uri":"nyt:\u002F\u002Flegacycollection\u002F6a422275-8f3f-51bd-819d-6be72041d801","header":"","showCollectionStories":false},"LegacyCollection:TGVnYWN5Q29sbGVjdGlvbjpueXQ6Ly9sZWdhY3ljb2xsZWN0aW9uLzU0YzJkNTFjLTE0ZjYtNTgyMC04MzJkLTk2ODk0NmZiMzM4ZA==":{"id":"TGVnYWN5Q29sbGVjdGlvbjpueXQ6Ly9sZWdhY3ljb2xsZWN0aW9uLzU0YzJkNTFjLTE0ZjYtNTgyMC04MzJkLTk2ODk0NmZiMzM4ZA==","slug":"business","__typename":"LegacyCollection","name":"Business","collectionType":"SECTION","uri":"nyt:\u002F\u002Flegacycollection\u002F54c2d51c-14f6-5820-832d-968946fb338d","header":"","showCollectionStories":false},"LegacyCollection:TGVnYWN5Q29sbGVjdGlvbjpueXQ6Ly9sZWdhY3ljb2xsZWN0aW9uLzU4NzljYmY2LTg0NjYtNWY0NC1hNmM4LTg4NDZlZjk3NjA2Yw==":{"id":"TGVnYWN5Q29sbGVjdGlvbjpueXQ6Ly9sZWdhY3ljb2xsZWN0aW9uLzU4NzljYmY2LTg0NjYtNWY0NC1hNmM4LTg4NDZlZjk3NjA2Yw==","slug":"amp","__typename":"LegacyCollection","name":"amp","collectionType":"SYNDICATED","uri":"nyt:\u002F\u002Flegacycollection\u002F5879cbf6-8466-5f44-a6c8-8846ef97606c","header":"","showCollectionStories":false},"Section:U2VjdGlvbjpueXQ6Ly9zZWN0aW9uLzA0MTViMmIwLTUxM2EtNWU3OC04MGRhLTIxYWI3NzBjYjc1Mw==":{"id":"U2VjdGlvbjpueXQ6Ly9zZWN0aW9uLzA0MTViMmIwLTUxM2EtNWU3OC04MGRhLTIxYWI3NzBjYjc1Mw==","name":"business","displayName":"Business","url":"\u002Fsection\u002Fbusiness","uri":"nyt:\u002F\u002Fsection\u002F0415b2b0-513a-5e78-80da-21ab770cb753","__typename":"Section"},"Section:U2VjdGlvbjpueXQ6Ly9zZWN0aW9uLzE3YjM1OWM0LTY3YTEtNTE4Yy05YTM0LTIyZmMyNTU2YzQ5ZA==":{"id":"U2VjdGlvbjpueXQ6Ly9zZWN0aW9uLzE3YjM1OWM0LTY3YTEtNTE4Yy05YTM0LTIyZmMyNTU2YzQ5ZA==","name":"economy","displayName":"Economy","url":"https:\u002F\u002Fwww.nytimes.com\u002Fpages\u002Fbusiness\u002Feconomy\u002Findex.html","uri":"nyt:\u002F\u002Fsection\u002F17b359c4-67a1-518c-9a34-22fc2556c49d","__typename":"Section"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0":{"__typename":"HeaderBasicBlock","label":null,"headline":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0.headline","typename":"Heading1Block"},"summary":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0.summary","typename":"SummaryBlock"},"ledeMedia":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0.ledeMedia","typename":"ImageBlock"},"byline":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0.byline","typename":"BylineBlock"},"timestampBlock":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0.timestampBlock","typename":"TimestampBlock"}},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.1":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.1.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.2":{"__typename":"Dropzone","index":0,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.3":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.3.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.4":{"__typename":"Dropzone","index":1,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.5":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.5.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.6":{"__typename":"Dropzone","index":2,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.7":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.7.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.8":{"__typename":"Dropzone","index":3,"bad":false,"adsMobile":true,"adsDesktop":true},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.9":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.9.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.10":{"__typename":"Dropzone","index":4,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.11":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.11.content.0","typename":"TextInline"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.11.content.1","typename":"TextInline"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.11.content.2","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.12":{"__typename":"Dropzone","index":5,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.13":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.13.content.0","typename":"TextInline"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.13.content.1","typename":"TextInline"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.13.content.2","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.14":{"__typename":"Dropzone","index":6,"bad":true,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15":{"__typename":"InteractiveBlock","size":"MEDIUM","media":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media","typename":"EmbeddedInteractive"}},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.16":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.16.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.17":{"__typename":"Dropzone","index":7,"bad":false,"adsMobile":true,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.18":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.18.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.19":{"__typename":"Dropzone","index":8,"bad":false,"adsMobile":false,"adsDesktop":true},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.20":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.20.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.21":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.21.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.22":{"__typename":"Dropzone","index":9,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.23":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.23.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.24":{"__typename":"Dropzone","index":10,"bad":true,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25":{"__typename":"InteractiveBlock","size":"MEDIUM","media":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media","typename":"EmbeddedInteractive"}},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.26":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.26.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.27":{"__typename":"Dropzone","index":11,"bad":false,"adsMobile":true,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.28":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.28.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.29":{"__typename":"Dropzone","index":12,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.30":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.30.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.31":{"__typename":"Dropzone","index":13,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.32":{"__typename":"Heading2Block","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.32.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33":{"__typename":"InteractiveBlock","size":"MEDIUM","media":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media","typename":"EmbeddedInteractive"}},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.34":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.34.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.35":{"__typename":"Dropzone","index":14,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.36":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.36.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.37":{"__typename":"Dropzone","index":15,"bad":false,"adsMobile":true,"adsDesktop":true},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.38":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.38.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.39":{"__typename":"Dropzone","index":16,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.40":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.40.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.41":{"__typename":"Dropzone","index":17,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.42":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.42.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.43":{"__typename":"Dropzone","index":18,"bad":true,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.44":{"__typename":"RelatedLinksBlock","displayStyle":"COMPACT","title":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.44.title.0","typename":"TextInline"}],"description":[],"related@filterEmpty":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]","typename":"Article"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]","typename":"Article"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.45":{"__typename":"Heading2Block","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.45.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.46":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.46.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.47":{"__typename":"Dropzone","index":19,"bad":false,"adsMobile":true,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.48":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.48.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.49":{"__typename":"Dropzone","index":20,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.50":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.50.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.51":{"__typename":"Dropzone","index":21,"bad":true,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52":{"__typename":"InteractiveBlock","size":"MEDIUM","media":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media","typename":"EmbeddedInteractive"}},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.53":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.53.content.0","typename":"TextInline"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.53.content.1","typename":"TextInline"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.53.content.2","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.54":{"__typename":"Dropzone","index":22,"bad":false,"adsMobile":false,"adsDesktop":true},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.55":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.55.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.56":{"__typename":"Dropzone","index":23,"bad":false,"adsMobile":true,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.57":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.57.content.0","typename":"TextInline"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.57.content.1","typename":"TextInline"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.57.content.2","typename":"TextInline"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.57.content.3","typename":"TextInline"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.57.content.4","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.58":{"__typename":"Dropzone","index":24,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.59":{"__typename":"Heading2Block","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.59.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60":{"__typename":"InteractiveBlock","size":"MEDIUM","media":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media","typename":"EmbeddedInteractive"}},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.61":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.61.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.62":{"__typename":"Dropzone","index":25,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.63":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.63.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.64":{"__typename":"Dropzone","index":26,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.65":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.65.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.66":{"__typename":"Dropzone","index":27,"bad":false,"adsMobile":true,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.67":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.67.content.0","typename":"TextInline"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.67.content.1","typename":"TextInline"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.67.content.2","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.68":{"__typename":"Dropzone","index":28,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.69":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.69.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.70":{"__typename":"Dropzone","index":29,"bad":false,"adsMobile":false,"adsDesktop":true},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.71":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.71.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.72":{"__typename":"Dropzone","index":30,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.73":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.73.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.74":{"__typename":"Dropzone","index":31,"bad":false,"adsMobile":true,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.75":{"__typename":"Heading2Block","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.75.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.76":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.76.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.77":{"__typename":"Dropzone","index":32,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.78":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.78.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.79":{"__typename":"Dropzone","index":33,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.80":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.80.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.81":{"__typename":"Dropzone","index":34,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.82":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.82.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.83":{"__typename":"Dropzone","index":35,"bad":false,"adsMobile":true,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.84":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.84.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.85":{"__typename":"Dropzone","index":36,"bad":false,"adsMobile":false,"adsDesktop":true},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.86":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.86.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.87":{"__typename":"Dropzone","index":37,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.88":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.88.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.89":{"__typename":"Dropzone","index":38,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.90":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.90.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.91":{"__typename":"Dropzone","index":39,"bad":false,"adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.92":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.92.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.93":{"__typename":"ParagraphBlock","textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.93.content.0","typename":"TextInline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody":{"content@filterEmpty":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0","typename":"HeaderBasicBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.1","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.2","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.3","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.4","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.5","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.6","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.7","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.8","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.9","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.10","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.11","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.12","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.13","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.14","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15","typename":"InteractiveBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.16","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.17","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.18","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.19","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.20","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.21","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.22","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.23","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.24","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25","typename":"InteractiveBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.26","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.27","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.28","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.29","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.30","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.31","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.32","typename":"Heading2Block"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33","typename":"InteractiveBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.34","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.35","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.36","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.37","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.38","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.39","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.40","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.41","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.42","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.43","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.44","typename":"RelatedLinksBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.45","typename":"Heading2Block"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.46","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.47","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.48","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.49","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.50","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.51","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52","typename":"InteractiveBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.53","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.54","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.55","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.56","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.57","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.58","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.59","typename":"Heading2Block"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60","typename":"InteractiveBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.61","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.62","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.63","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.64","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.65","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.66","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.67","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.68","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.69","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.70","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.71","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.72","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.73","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.74","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.75","typename":"Heading2Block"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.76","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.77","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.78","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.79","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.80","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.81","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.82","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.83","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.84","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.85","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.86","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.87","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.88","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.89","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.90","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.91","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.92","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.93","typename":"ParagraphBlock"}],"__typename":"DocumentBlock","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.0","typename":"HeaderBasicBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.1","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.2","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.3","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.4","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.5","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.6","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.7","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.8","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.9","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.10","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.11","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.12","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.13","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.14","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.15","typename":"InteractiveBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.16","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.17","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.18","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.19","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.20","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.21","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.22","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.23","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.24","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.25","typename":"InteractiveBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.26","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.27","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.28","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.29","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.30","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.31","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.32","typename":"Heading2Block"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.33","typename":"InteractiveBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.34","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.35","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.36","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.37","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.38","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.39","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.40","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.41","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.42","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.43","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.44","typename":"RelatedLinksBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.45","typename":"Heading2Block"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.46","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.47","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.48","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.49","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.50","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.51","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.52","typename":"InteractiveBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.53","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.54","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.55","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.56","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.57","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.58","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.59","typename":"Heading2Block"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.60","typename":"InteractiveBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.61","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.62","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.63","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.64","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.65","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.66","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.67","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.68","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.69","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.70","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.71","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.72","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.73","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.74","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.75","typename":"Heading2Block"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.76","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.77","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.78","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.79","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.80","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.81","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.82","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.83","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.84","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.85","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.86","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.87","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.88","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.89","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.90","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.91","typename":"Dropzone"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.92","typename":"ParagraphBlock"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.93","typename":"ParagraphBlock"}]},"AdTargetingParam:si_sectionbusiness":{"key":"si_section","value":"business","__typename":"AdTargetingParam"},"AdTargetingParam:keywords":{"key":"keywords","value":"","__typename":"AdTargetingParam"},"AdTargetingParam:templatearticle":{"key":"template","value":"article","__typename":"AdTargetingParam"},"AdTargetingParam:platweb":{"key":"plat","value":"web","__typename":"AdTargetingParam"},"AdTargetingParam:authnelsondschwartz":{"key":"auth","value":"nelsondschwartz","__typename":"AdTargetingParam"},"AdTargetingParam:typart,oak":{"key":"typ","value":"art,oak","__typename":"AdTargetingParam"},"AdTargetingParam:ednus":{"key":"edn","value":"us","__typename":"AdTargetingParam"},"AdTargetingParam:trend":{"key":"trend","value":"","__typename":"AdTargetingParam"},"AdTargetingParam:desnationaldebtus,federalbudgetus,unitedstatespoliticsandgovernm,interestrates,unitedstatesdefenseandmilitary,unitedstateseconomy,federaltaxesus,usdollarcurrency,recessionanddepression":{"key":"des","value":"nationaldebtus,federalbudgetus,unitedstatespoliticsandgovernm,interestrates,unitedstatesdefenseandmilitary,unitedstateseconomy,federaltaxesus,usdollarcurrency,recessionanddepression","__typename":"AdTargetingParam"},"AdTargetingParam:pertrumpdonaldj":{"key":"per","value":"trumpdonaldj","__typename":"AdTargetingParam"},"AdTargetingParam:orgcongressionalbudgetoffice,federalreservesystem":{"key":"org","value":"congressionalbudgetoffice,federalreservesystem","__typename":"AdTargetingParam"},"AdTargetingParam:collpolitics,economy,business,amp":{"key":"coll","value":"politics,economy,business,amp","__typename":"AdTargetingParam"},"AdTargetingParam:gui":{"key":"gui","value":"","__typename":"AdTargetingParam"},"AdTargetingParam:id100000006102576":{"key":"id","value":"100000006102576","__typename":"AdTargetingParam"},"AdTargetingParam:geo":{"key":"geo","value":"","__typename":"AdTargetingParam"},"AdTargetingParam:col":{"key":"col","value":"","__typename":"AdTargetingParam"},"AdTargetingParam:als_test1551234976794":{"key":"als_test","value":"1551234976794","__typename":"AdTargetingParam"},"AdTargetingParam:brandsensitivefalse":{"key":"brandsensitive","value":"false","__typename":"AdTargetingParam"},"AdTargetingParam:spon":{"key":"spon","value":"","__typename":"AdTargetingParam"},"AdTargetingParam:ledemedsznone":{"key":"ledemedsz","value":"none","__typename":"AdTargetingParam"},"AdTargetingParam:propnyt":{"key":"prop","value":"nyt","__typename":"AdTargetingParam"},"AdTargetingParam:sectionbusiness":{"key":"section","value":"business","__typename":"AdTargetingParam"},"AdTargetingParam:artlenlong":{"key":"artlen","value":"long","__typename":"AdTargetingParam"},"AdTargetingParam:emotionsfear,optimistic,interest,informed,hate,not_selfconfident,not_happiness,not_adventurous,not_inthemoodtospend,not_boredom,not_indulgent,not_nostalgic,not_love,not_amused,not_inspired":{"key":"emotions","value":"fear,optimistic,interest,informed,hate,not_selfconfident,not_happiness,not_adventurous,not_inthemoodtospend,not_boredom,not_indulgent,not_nostalgic,not_love,not_amused,not_inspired","__typename":"AdTargetingParam"},"AdTargetingParam:gscatneg_mastercard,gs_politics,gs_economy,gs_economy_misc,gs_finance,gs_politics_misc,gs_politics_american,gs_finance_loans,neg_hearts,gs_finance_tax,gv_safe":{"key":"gscat","value":"neg_mastercard,gs_politics,gs_economy,gs_economy_misc,gs_finance,gs_politics_misc,gs_politics_american,gs_finance_loans,neg_hearts,gs_finance_tax,gv_safe","__typename":"AdTargetingParam"},"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.bylines.0.creators.0":{"displayName":"Nelson D. Schwartz","__typename":"Person","url":"","contactDetails":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.bylines.0.creators.0.contactDetails","typename":"ContactDetails"},"legacyData":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.bylines.0.creators.0.legacyData","typename":"PersonLegacyData"}},"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.bylines.0":{"creators":[{"type":"id","generated":true,"id":"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.bylines.0.creators.0","typename":"Person"}],"__typename":"Byline","renderedRepresentation":"By Nelson D. Schwartz"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.displayProperties":{"fullBleedDisplayStyle":"","__typename":"CreativeWorkDisplayProperties","serveAsNyt4":false},"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.0":{"__typename":"Subject","vernacular":"US National Debt","isAdvertisingBrandSensitive":false,"displayName":"National Debt (US)"},"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.1":{"__typename":"Subject","vernacular":"Federal Budget","isAdvertisingBrandSensitive":false,"displayName":"Federal Budget (US)"},"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.2":{"__typename":"Subject","vernacular":"US Politics","isAdvertisingBrandSensitive":false,"displayName":"United States Politics and Government"},"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.3":{"__typename":"Person","vernacular":"Donald Trump","isAdvertisingBrandSensitive":false,"displayName":"Trump, Donald J"},"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.4":{"__typename":"Subject","vernacular":"Interest rate","isAdvertisingBrandSensitive":false,"displayName":"Interest Rates"},"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.5":{"__typename":"Subject","vernacular":"US Military","isAdvertisingBrandSensitive":false,"displayName":"United States Defense and Military Forces"},"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.6":{"__typename":"Subject","vernacular":"US Economy","isAdvertisingBrandSensitive":false,"displayName":"United States Economy"},"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.7":{"__typename":"Subject","vernacular":"Federal Taxes","isAdvertisingBrandSensitive":false,"displayName":"Federal Taxes (US)"},"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.8":{"__typename":"Subject","vernacular":"US Dollar","isAdvertisingBrandSensitive":false,"displayName":"US Dollar (Currency)"},"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.9":{"__typename":"Subject","vernacular":"Recession and Depression","isAdvertisingBrandSensitive":false,"displayName":"Recession and Depression"},"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.10":{"__typename":"Organization","vernacular":"Congressional Budget Office","isAdvertisingBrandSensitive":false,"displayName":"Congressional Budget Office"},"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.timesTags@filterEmpty.11":{"__typename":"Organization","vernacular":"Federal Reserve","isAdvertisingBrandSensitive":false,"displayName":"Federal Reserve System"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.headline":{"default":"As Debt Rises, the Government Will Soon Spend More on Interest Than on the Military","__typename":"CreativeWorkHeadline","default@stripHtml":"As Debt Rises, the Government Will Soon Spend More on Interest Than on the Military"},"Organization:T3JnYW5pemF0aW9uOm55dDovL29yZ2FuaXphdGlvbi9jMjc5MTM4OC02YjE2LTVmZmQtYTExOS05NmVhY2IxOTg5YzE=":{"id":"T3JnYW5pemF0aW9uOm55dDovL29yZ2FuaXphdGlvbi9jMjc5MTM4OC02YjE2LTVmZmQtYTExOS05NmVhY2IxOTg5YzE=","displayName":"New York Times","__typename":"Organization"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.printInformation":{"page":"1","section":"A","publicationDate":"2018-09-26T04:00:00.000Z","__typename":"PrintInformation","edition":"NewYork","headline@stripHtml":"What May Soon Exceed Cost of U.S. Military? Interest on U.S. Debt  "},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkled.configs.0":{"name":"mobile","stride":4,"threshold":3,"__typename":"SprinkledConfig"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkled.configs.1":{"name":"desktop","stride":7,"threshold":3,"__typename":"SprinkledConfig"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkled.configs.2":{"name":"mobileHoldout","stride":6,"threshold":3,"__typename":"SprinkledConfig"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkled.configs.3":{"name":"desktopHoldout","stride":8,"threshold":3,"__typename":"SprinkledConfig"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkled":{"configs":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkled.configs.0","typename":"SprinkledConfig"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkled.configs.1","typename":"SprinkledConfig"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkled.configs.2","typename":"SprinkledConfig"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkled.configs.3","typename":"SprinkledConfig"}],"__typename":"SprinkledContent"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.0":{"__typename":"HeaderBasicBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.1":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.2":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.3":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.4":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.5":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.6":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.7":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.8":{"__typename":"Dropzone","adsMobile":true,"adsDesktop":true},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.9":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.10":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.11":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.12":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.13":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.14":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.15":{"__typename":"InteractiveBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.16":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.17":{"__typename":"Dropzone","adsMobile":true,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.18":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.19":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":true},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.20":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.21":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.22":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.23":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.24":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.25":{"__typename":"InteractiveBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.26":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.27":{"__typename":"Dropzone","adsMobile":true,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.28":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.29":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.30":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.31":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.32":{"__typename":"Heading2Block"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.33":{"__typename":"InteractiveBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.34":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.35":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.36":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.37":{"__typename":"Dropzone","adsMobile":true,"adsDesktop":true},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.38":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.39":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.40":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.41":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.42":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.43":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.44":{"__typename":"RelatedLinksBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.45":{"__typename":"Heading2Block"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.46":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.47":{"__typename":"Dropzone","adsMobile":true,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.48":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.49":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.50":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.51":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.52":{"__typename":"InteractiveBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.53":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.54":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":true},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.55":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.56":{"__typename":"Dropzone","adsMobile":true,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.57":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.58":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.59":{"__typename":"Heading2Block"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.60":{"__typename":"InteractiveBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.61":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.62":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.63":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.64":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.65":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.66":{"__typename":"Dropzone","adsMobile":true,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.67":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.68":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.69":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.70":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":true},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.71":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.72":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.73":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.74":{"__typename":"Dropzone","adsMobile":true,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.75":{"__typename":"Heading2Block"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.76":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.77":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.78":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.79":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.80":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.81":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.82":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.83":{"__typename":"Dropzone","adsMobile":true,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.84":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.85":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":true},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.86":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.87":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.88":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.89":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.90":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.91":{"__typename":"Dropzone","adsMobile":false,"adsDesktop":false},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.92":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content.93":{"__typename":"ParagraphBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.advertisingProperties":{"sensitivity":"SHOW_ADS","__typename":"CreativeWorkAdvertisingProperties"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.promotionalMedia.crops({\"renditionNames\":[\"thumbStandard\",\"thumbLarge\",\"watch308\",\"facebookJumbo\",\"videoSixteenByNineJumbo1600\",\"articleLarge\",\"superJumbo\"]}).0":{"name":"MASTER","renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180915business15DEBTS01merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleLarge.jpg","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180915business15DEBTS01merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-superJumbo.jpg","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180915business15DEBTS01merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleLarge.jpg":{"url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F15\u002Fbusiness\u002F15DEBTS01\u002Fmerlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleLarge.jpg","height":380,"width":600,"name":"articleLarge","__typename":"ImageRendition"},"ImageRendition:images20180915business15DEBTS01merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-superJumbo.jpg":{"url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F15\u002Fbusiness\u002F15DEBTS01\u002Fmerlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-superJumbo.jpg","height":1296,"width":2048,"name":"superJumbo","__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.promotionalMedia.crops({\"renditionNames\":[\"thumbStandard\",\"thumbLarge\",\"watch308\",\"facebookJumbo\",\"videoSixteenByNineJumbo1600\",\"articleLarge\",\"superJumbo\"]}).1":{"name":"SMALL_SQUARE","renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180915business15DEBTS0115DEBTS01-thumbStandard.jpg","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180915business15DEBTS0115DEBTS01-thumbLarge.jpg","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180915business15DEBTS0115DEBTS01-thumbStandard.jpg":{"url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F15\u002Fbusiness\u002F15DEBTS01\u002F15DEBTS01-thumbStandard.jpg","height":75,"width":75,"name":"thumbStandard","__typename":"ImageRendition"},"ImageRendition:images20180915business15DEBTS0115DEBTS01-thumbLarge.jpg":{"url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F15\u002Fbusiness\u002F15DEBTS01\u002F15DEBTS01-thumbLarge.jpg","height":150,"width":150,"name":"thumbLarge","__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.promotionalMedia.crops({\"renditionNames\":[\"thumbStandard\",\"thumbLarge\",\"watch308\",\"facebookJumbo\",\"videoSixteenByNineJumbo1600\",\"articleLarge\",\"superJumbo\"]}).2":{"name":"SIXTEEN_BY_NINE","renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180915business15DEBTS0115DEBTS01-videoSixteenByNineJumbo1600.jpg","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180915business15DEBTS0115DEBTS01-videoSixteenByNineJumbo1600.jpg":{"url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F15\u002Fbusiness\u002F15DEBTS01\u002F15DEBTS01-videoSixteenByNineJumbo1600.jpg","height":899,"width":1600,"name":"videoSixteenByNineJumbo1600","__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.promotionalMedia.crops({\"renditionNames\":[\"thumbStandard\",\"thumbLarge\",\"watch308\",\"facebookJumbo\",\"videoSixteenByNineJumbo1600\",\"articleLarge\",\"superJumbo\"]}).3":{"name":"FACEBOOK","renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180915business15DEBTS0115DEBTS01-facebookJumbo.jpg","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180915business15DEBTS0115DEBTS01-facebookJumbo.jpg":{"url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F15\u002Fbusiness\u002F15DEBTS01\u002F15DEBTS01-facebookJumbo.jpg","height":549,"width":1050,"name":"facebookJumbo","__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.promotionalMedia.crops({\"renditionNames\":[\"thumbStandard\",\"thumbLarge\",\"watch308\",\"facebookJumbo\",\"videoSixteenByNineJumbo1600\",\"articleLarge\",\"superJumbo\"]}).4":{"name":"WATCH","renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180915business15DEBTS0115DEBTS01-watch308.jpg","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180915business15DEBTS0115DEBTS01-watch308.jpg":{"url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F15\u002Fbusiness\u002F15DEBTS01\u002F15DEBTS01-watch308.jpg","height":348,"width":312,"name":"watch308","__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.promotionalMedia":{"crops({\"renditionNames\":[\"thumbStandard\",\"thumbLarge\",\"watch308\",\"facebookJumbo\",\"videoSixteenByNineJumbo1600\",\"articleLarge\",\"superJumbo\"]})":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.promotionalMedia.crops({\"renditionNames\":[\"thumbStandard\",\"thumbLarge\",\"watch308\",\"facebookJumbo\",\"videoSixteenByNineJumbo1600\",\"articleLarge\",\"superJumbo\"]}).0","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.promotionalMedia.crops({\"renditionNames\":[\"thumbStandard\",\"thumbLarge\",\"watch308\",\"facebookJumbo\",\"videoSixteenByNineJumbo1600\",\"articleLarge\",\"superJumbo\"]}).1","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.promotionalMedia.crops({\"renditionNames\":[\"thumbStandard\",\"thumbLarge\",\"watch308\",\"facebookJumbo\",\"videoSixteenByNineJumbo1600\",\"articleLarge\",\"superJumbo\"]}).2","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.promotionalMedia.crops({\"renditionNames\":[\"thumbStandard\",\"thumbLarge\",\"watch308\",\"facebookJumbo\",\"videoSixteenByNineJumbo1600\",\"articleLarge\",\"superJumbo\"]}).3","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.promotionalMedia.crops({\"renditionNames\":[\"thumbStandard\",\"thumbLarge\",\"watch308\",\"facebookJumbo\",\"videoSixteenByNineJumbo1600\",\"articleLarge\",\"superJumbo\"]}).4","typename":"ImageCrop"}],"caption":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.promotionalMedia.caption","typename":"TextOnlyDocumentBlock"},"__typename":"Image"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.promotionalMedia.caption":{"text":"Interest payments on the federal debt could surpass the Defense Department budget in 2023.","__typename":"TextOnlyDocumentBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0.headline":{"textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0.headline.content.0","typename":"TextInline"}],"__typename":"Heading1Block"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0.headline.content.0":{"__typename":"TextInline","text@stripHtml":"As Debt Rises, the Government Will Soon Spend More on Interest Than on the Military","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0.summary":{"textAlign":"LEFT","content":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0.summary.content.0","typename":"TextInline"}],"__typename":"SummaryBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0.summary.content.0":{"__typename":"TextInline","text":"Tax cuts, spending increases and higher interest rates could make it harder to respond to future recessions and deal with other needs.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0.ledeMedia":{"__typename":"ImageBlock","size":"MEDIUM","media":{"type":"id","generated":false,"id":"Image:SW1hZ2U6bnl0Oi8vaW1hZ2UvNmEzMzJkNjMtOGJiMS01YTliLWJiYzUtYzNlYmVjZjUwMDFh","typename":"Image"}},"Image:SW1hZ2U6bnl0Oi8vaW1hZ2UvNmEzMzJkNjMtOGJiMS01YTliLWJiYzUtYzNlYmVjZjUwMDFh":{"id":"SW1hZ2U6bnl0Oi8vaW1hZ2UvNmEzMzJkNjMtOGJiMS01YTliLWJiYzUtYzNlYmVjZjUwMDFh","imageType":"photo","url":"\u002Fimagepages\u002F2018\u002F09\u002F25\u002Fbusiness\u002F15DEBTS01.html","uri":"nyt:\u002F\u002Fimage\u002F6a332d63-8bb1-5a9b-bbc5-c3ebecf5001a","credit":"Jeon Heon-Kyun\u002FEPA, via Shutterstock","legacyHtmlCaption":"Interest payments on the federal debt could surpass the Defense Department budget in 2023.","crops({\"renditionNames\":[\"articleLarge\",\"jumbo\",\"superJumbo\",\"articleInline\",\"popup\"]})":[{"type":"id","generated":true,"id":"Image:SW1hZ2U6bnl0Oi8vaW1hZ2UvNmEzMzJkNjMtOGJiMS01YTliLWJiYzUtYzNlYmVjZjUwMDFh.crops({\"renditionNames\":[\"articleLarge\",\"jumbo\",\"superJumbo\",\"articleInline\",\"popup\"]}).0","typename":"ImageCrop"},{"type":"id","generated":true,"id":"Image:SW1hZ2U6bnl0Oi8vaW1hZ2UvNmEzMzJkNjMtOGJiMS01YTliLWJiYzUtYzNlYmVjZjUwMDFh.crops({\"renditionNames\":[\"articleLarge\",\"jumbo\",\"superJumbo\",\"articleInline\",\"popup\"]}).1","typename":"ImageCrop"}],"caption":{"type":"id","generated":true,"id":"$Image:SW1hZ2U6bnl0Oi8vaW1hZ2UvNmEzMzJkNjMtOGJiMS01YTliLWJiYzUtYzNlYmVjZjUwMDFh.caption","typename":"TextOnlyDocumentBlock"},"__typename":"Image"},"ImageRendition:images20180915business15DEBTS01merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-popup.jpg":{"url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F15\u002Fbusiness\u002F15DEBTS01\u002Fmerlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-popup.jpg","name":"popup","width":650,"height":411,"__typename":"ImageRendition"},"ImageRendition:images20180915business15DEBTS01merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-jumbo.jpg":{"url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F15\u002Fbusiness\u002F15DEBTS01\u002Fmerlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-jumbo.jpg","name":"jumbo","width":1024,"height":648,"__typename":"ImageRendition"},"Image:SW1hZ2U6bnl0Oi8vaW1hZ2UvNmEzMzJkNjMtOGJiMS01YTliLWJiYzUtYzNlYmVjZjUwMDFh.crops({\"renditionNames\":[\"articleLarge\",\"jumbo\",\"superJumbo\",\"articleInline\",\"popup\"]}).0":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180915business15DEBTS01merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleLarge.jpg","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180915business15DEBTS01merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-popup.jpg","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180915business15DEBTS01merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-jumbo.jpg","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180915business15DEBTS01merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-superJumbo.jpg","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180915business15DEBTS01merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleInline.jpg":{"url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F15\u002Fbusiness\u002F15DEBTS01\u002Fmerlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleInline.jpg","name":"articleInline","width":190,"height":120,"__typename":"ImageRendition"},"Image:SW1hZ2U6bnl0Oi8vaW1hZ2UvNmEzMzJkNjMtOGJiMS01YTliLWJiYzUtYzNlYmVjZjUwMDFh.crops({\"renditionNames\":[\"articleLarge\",\"jumbo\",\"superJumbo\",\"articleInline\",\"popup\"]}).1":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180915business15DEBTS01merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleInline.jpg","typename":"ImageRendition"}],"__typename":"ImageCrop"},"$Image:SW1hZ2U6bnl0Oi8vaW1hZ2UvNmEzMzJkNjMtOGJiMS01YTliLWJiYzUtYzNlYmVjZjUwMDFh.caption":{"text":"Interest payments on the federal debt could surpass the Defense Department budget in 2023.","__typename":"TextOnlyDocumentBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0.byline":{"textAlign":"LEFT","hideHeadshots":false,"bylines":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0.byline.bylines.0","typename":"Byline"}],"role@filterEmpty":[],"__typename":"BylineBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0.byline.bylines.0":{"prefix":"By","creators":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0.byline.bylines.0.creators.0","typename":"Person"}],"__typename":"Byline"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0.byline.bylines.0.creators.0":{"displayName":"Nelson D. Schwartz","bioUrl":"https:\u002F\u002Fwww.nytimes.com\u002Fby\u002Fnelson-d-schwartz","promotionalMedia":null,"__typename":"Person"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.0.timestampBlock":{"timestamp":"2018-09-25T21:28:31.000Z","align":"LEFT","__typename":"TimestampBlock"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.1.content.0":{"__typename":"TextInline","text":"The federal government could soon pay more in interest on its debt than it spends on the military, Medicaid or children’s programs.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.3.content.0":{"__typename":"TextInline","text":"The run-up in borrowing costs is a one-two punch brought on by the need to finance a fast-growing budget deficit, worsened by tax cuts and steadily rising interest rates that will make the debt more expensive. ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.5.content.0":{"__typename":"TextInline","text":"With less money coming in and more going toward interest, political leaders will find it harder to address pressing needs like fixing crumbling roads and bridges or to make emergency moves like pulling the economy out of future recessions.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.7.content.0":{"__typename":"TextInline","text":"Within a decade, more than $900 billion in interest payments will be due annually, easily outpacing spending on myriad other programs. Already the fastest-growing major government expense, the cost of interest is on track to hit $390 billion next year, nearly 50 percent more than in 2017, according to the Congressional Budget Office.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.9.content.0":{"__typename":"TextInline","text":"“It’s very much something to worry about,” said C. Eugene Steuerle, a fellow at the Urban Institute and a co-founder of the Urban-Brookings Tax Policy Center in Washington. “Everything else is getting squeezed.”","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.11.content.0":{"__typename":"TextInline","text":"Gradually rising interest rates would have made borrowing more expensive even without additional debt. But the tax cuts passed late last year have created a deeper hole, with the deficit increasing faster than expected. A budget bill ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.11.content.1":{"__typename":"TextInline","text":"approved in February that raised","formats":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.11.content.1.formats.0","typename":"LinkFormat"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.11.content.1.formats.0":{"__typename":"LinkFormat","url":"https:\u002F\u002Fwww.nytimes.com\u002F2018\u002F02\u002F08\u002Fus\u002Fpolitics\u002Fcongress-budget-deal-vote.html","title":""},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.11.content.2":{"__typename":"TextInline","text":" spending by $300 billion over two years will add to the financial pressure. ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.13.content.0":{"__typename":"TextInline","text":"The deficit is expected to total nearly $1 trillion next year — the first time it has been that big ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.13.content.1":{"__typename":"TextInline","text":"since 2012","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.13.content.2":{"__typename":"TextInline","text":", when the economy was still struggling to recover from the financial crisis and interest rates were near zero. ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media":{"__typename":"EmbeddedInteractive","slug":"interest-on-national-debt","html":"\n\u003C!-- Generated by ai2html v0.74.0 - 2018-09-14 15:18 --\u003E\n\u003C!-- ai file: 0916 biz web DEBT CHART 1.ai --\u003E\n\u003C!-- preview: 2018-09-14-interest-on-national-debt --\u003E\n\u003C!-- scoop: interest-on-national-debt --\u003E\n\u003Cstyle type='text\u002Fcss' media='screen,print'\u003E\n\t#g-0916-biz-web-DEBT-CHART-1-box .g-artboard {\n\t\tmargin:0 auto;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-1-box .g-artboard p {\n\t\tmargin:0;\n\t}\n\t.g-aiAbs {\n\t\tposition:absolute;\n\t}\n\t.g-aiImg {\n\t\tdisplay:block;\n\t\twidth:100% !important;\n\t}\n\t.g-aiSymbol {\n\t\tposition: absolute;\n\t\tbox-sizing: border-box;\n\t}\n\t.g-aiPointText p { white-space: nowrap; }\n\t#g-0916-biz-web-DEBT-CHART-1-Artboard_2 {\n\t\tposition:relative;\n\t\toverflow:hidden;\n\t\twidth:600px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-1-Artboard_2 p {\n\t\tfont-family:nyt-franklin,arial,helvetica,sans-serif;\n\t\tfont-weight:700;\n\t\tfont-size:13px;\n\t\tline-height:18px;\n\t\theight:auto;\n\t\tfilter:alpha(opacity=100);\n\t\t-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n\t\topacity:1;\n\t\tletter-spacing:0em;\n\t\ttext-align:left;\n\t\tcolor:rgb(51,51,51);\n\t\ttext-transform:none;\n\t\tpadding-bottom:0;\n\t\tpadding-top:0;\n\t\tmix-blend-mode:normal;\n\t\tfont-style:normal;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-1-Artboard_2 .g-pstyle0 {\n\t\tline-height:16px;\n\t\theight:16px;\n\t\ttext-align:center;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-1-Artboard_2 .g-pstyle1 {\n\t\theight:18px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-1-Artboard_2 .g-pstyle2 {\n\t\tfont-weight:500;\n\t\theight:18px;\n\t\ttext-align:right;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-1-Artboard_2 .g-pstyle3 {\n\t\tfont-weight:500;\n\t\theight:18px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-1-Artboard_2 .g-pstyle4 {\n\t\tfont-weight:500;\n\t\theight:18px;\n\t\ttext-align:center;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-1-Artboard_3 {\n\t\tposition:relative;\n\t\toverflow:hidden;\n\t\twidth:300px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-1-Artboard_3 p {\n\t\tfont-family:nyt-franklin,arial,helvetica,sans-serif;\n\t\tfont-weight:700;\n\t\tfont-size:13px;\n\t\tline-height:18px;\n\t\theight:auto;\n\t\tfilter:alpha(opacity=100);\n\t\t-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n\t\topacity:1;\n\t\tletter-spacing:0em;\n\t\ttext-align:left;\n\t\tcolor:rgb(51,51,51);\n\t\ttext-transform:none;\n\t\tpadding-bottom:0;\n\t\tpadding-top:0;\n\t\tmix-blend-mode:normal;\n\t\tfont-style:normal;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-1-Artboard_3 .g-pstyle0 {\n\t\theight:18px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-1-Artboard_3 .g-pstyle1 {\n\t\tfont-weight:500;\n\t\theight:18px;\n\t\ttext-align:right;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-1-Artboard_3 .g-pstyle2 {\n\t\tfont-weight:500;\n\t\theight:18px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-1-Artboard_3 .g-pstyle3 {\n\t\tline-height:16px;\n\t\theight:16px;\n\t\ttext-align:center;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-1-Artboard_3 .g-pstyle4 {\n\t\tfont-weight:500;\n\t\theight:18px;\n\t\ttext-align:center;\n\t}\n\n\u003C\u002Fstyle\u003E\n\n\u003Cdiv id=\"g-0916-biz-web-DEBT-CHART-1-box\" class=\"ai2html ai2html-box-v5\"\u003E\n\n\t\u003C!-- Artboard: Artboard_2 --\u003E\n\t\u003Cdiv id=\"g-0916-biz-web-DEBT-CHART-1-Artboard_2\" class=\"g-artboard\" data-aspect-ratio=\"1.382\" data-min-width=\"600\"\u003E\n\t\t\u003Cimg id=\"g-0916-biz-web-DEBT-CHART-1-Artboard_2-img\" class=\"g-aiImg\" data-src=\"https:\u002F\u002Fstatic01.nyt.com\u002Fnewsgraphics\u002F2018\u002F09\u002F14\u002Finterest-on-national-debt\u002F313e919f83bb85b62966d7f70121c5f3f3ea740b\u002F0916-biz-web-DEBT-CHART-1-Artboard_2.png\" src=\"data:image\u002Fgif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==\"\u002F\u003E\n\t\t\u003Cdiv id=\"g-ai0-1\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:4.8869%;margin-top:-16.2px;left:96.5906%;margin-left:-30px;width:60px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle0\"\u003E$915\u003C\u002Fp\u003E\n\t\t\t\u003Cp class=\"g-pstyle0\"\u003E billion\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-2\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:4.4262%;margin-top:-9.2px;left:0.0838%;width:243px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003EInterest payments on the national debt\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-3\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.5016%;margin-top:-9.2px;right:94.9386%;width:52px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E$900\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-4\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.5016%;margin-top:-9.2px;left:5.4133%;width:55px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle3\"\u003Ebillion\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-5\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:34.841%;margin-top:-9.2px;right:95.0369%;width:44px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E600\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-6\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:60.4108%;margin-top:-9.2px;right:95.0369%;width:44px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E300\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-7\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:70.9998%;margin-top:-16.2px;left:5.8153%;margin-left:-30px;width:60px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle0\"\u003E$263\u003C\u002Fp\u003E\n\t\t\t\u003Cp class=\"g-pstyle0\"\u003E billion\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-8\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:85.7502%;margin-top:-9.2px;right:95.0669%;width:29px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E0\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-9\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:6.1605%;margin-left:-19.5px;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;17\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-10\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:14.4067%;margin-left:-19.5px;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;18\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-11\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:22.6527%;margin-left:-19.5px;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;19\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-12\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:30.9281%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;20\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-13\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:39.1744%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;21\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-14\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:47.4205%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;22\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-15\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:55.6667%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;23\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-16\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:63.9128%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;24\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-17\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:72.1591%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;25\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-18\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:80.4054%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;26\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-19\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:88.6513%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;27\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-20\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:96.8975%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;28\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\u003C\u002Fdiv\u003E\n\n\t\u003C!-- Artboard: Artboard_3 --\u003E\n\t\u003Cdiv id=\"g-0916-biz-web-DEBT-CHART-1-Artboard_3\" class=\"g-artboard\" data-aspect-ratio=\"0.691\" data-min-width=\"300\" data-max-width=\"599\"\u003E\n\t\t\u003Cimg id=\"g-0916-biz-web-DEBT-CHART-1-Artboard_3-img\" class=\"g-aiImg\" data-src=\"https:\u002F\u002Fstatic01.nyt.com\u002Fnewsgraphics\u002F2018\u002F09\u002F14\u002Finterest-on-national-debt\u002F313e919f83bb85b62966d7f70121c5f3f3ea740b\u002F0916-biz-web-DEBT-CHART-1-Artboard_3.png\" src=\"data:image\u002Fgif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==\"\u002F\u003E\n\t\t\u003Cdiv id=\"g-ai1-1\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:4.4262%;margin-top:-9.2px;left:0.2844%;width:243px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle0\"\u003EInterest payments on the national debt\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-2\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.5016%;margin-top:-9.2px;right:90.0367%;width:52px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E$900\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-3\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.5016%;margin-top:-9.2px;left:10.6594%;width:55px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003Ebillion\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-4\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:17.787%;margin-top:-16.2px;left:90.6989%;margin-left:-30px;width:60px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle3\"\u003E$915\u003C\u002Fp\u003E\n\t\t\t\u003Cp class=\"g-pstyle3\"\u003E billion\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-5\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:34.841%;margin-top:-9.2px;right:90.2334%;width:44px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E600\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-6\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:60.4108%;margin-top:-9.2px;right:90.2334%;width:44px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E300\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-7\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:71.2301%;margin-top:-16.2px;left:10.5497%;margin-left:-30px;width:60px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle3\"\u003E$263\u003C\u002Fp\u003E\n\t\t\t\u003Cp class=\"g-pstyle3\"\u003E billion\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-8\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:85.7502%;margin-top:-9.2px;right:90.2934%;width:29px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E0\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-9\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:10.8422%;margin-left:-19.5px;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;17\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-10\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:18.0987%;margin-left:-19.5px;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;18\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-11\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:25.3552%;margin-left:-19.5px;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;19\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-12\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:32.6703%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;20\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-13\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:39.9268%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;21\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-14\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:47.1836%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;22\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-15\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:54.4401%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;23\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-16\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:61.6967%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;24\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-17\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:68.9535%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;25\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-18\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:76.2102%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;26\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-19\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:83.4665%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;27\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-20\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:90.7234%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;28\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\u003C\u002Fdiv\u003E\n\n\u003C\u002Fdiv\u003E\n\n\u003Cscript type=\"text\u002Fjavascript\"\u003E\n\t(function (scriptEnvironment, nameSpace) {\n\t\t\u002F\u002F Use a sentinel class to ensure that this version of the resizer only initializes once\n\t\tif (document.documentElement.className.indexOf(nameSpace + \"resizer-v5-init\") \u003E -1) return;\n\t\tdocument.documentElement.className += \" \" + nameSpace + \"resizer-v5-init\";\n\t\t\u002F\u002F requires IE9+\n\t\tif (!(\"querySelector\" in document)) return;\n\t\tvar observer = window.IntersectionObserver ? new IntersectionObserver(onIntersectionChange, {}) : null;\n\t\tvar visibilityIndex = {}; \u002F\u002F visibility of each graphic, indexed by container id (used with InteractionObserver)\n\n\t\tupdateAllGraphics();\n\t\twindow.addEventListener('nyt:embed:load', updateAllGraphics); \u002F\u002F for nyt vi compatibility\n\t\tdocument.addEventListener(\"DOMContentLoaded\", updateAllGraphics);\n\t\twindow.addEventListener(\"resize\", throttle(updateAllGraphics, 200));\n\n\t\tfunction updateAllGraphics() {\n\t\t\tselectElements(\".ai2html-box-v5\").forEach(updateGraphic);\n\t\t\tif (scriptEnvironment == \"nyt-preview\") {\n\t\t\t\tnytOnResize();\n\t\t\t}\n\t\t}\n\n\t\tfunction updateGraphic(container) {\n\t\t\tvar artboards = selectElements(\".\" + nameSpace + \"artboard[data-min-width]\", container),\n\t\t\t\t\twidth = Math.round(container.getBoundingClientRect().width),\n\t\t\t\t\tid = container.id, \u002F\u002F assume container has an id\n\t\t\t\t\tshowImages = !observer || visibilityIndex[id] == 'visible';\n\n\t\t\t\u002F\u002F Set artboard visibility based on container width\n\t\t\tartboards.forEach(function(el) {\n\t\t\t\tvar minwidth = el.getAttribute(\"data-min-width\"),\n\t\t\t\t\t\tmaxwidth = el.getAttribute(\"data-max-width\");\n\t\t\t\tif (+minwidth \u003C= width && (+maxwidth \u003E= width || maxwidth === null)) {\n\t\t\t\t\tif (showImages) {\n\t\t\t\t\t\tselectElements(\".\" + nameSpace + \"aiImg\", el).forEach(updateImgSrc);\n\t\t\t\t\t}\n\t\t\t\t\tel.style.display = \"block\";\n\t\t\t\t} else {\n\t\t\t\t\tel.style.display = \"none\";\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t\u002F\u002F Initialize lazy loading on first call, if IntersectionObserver is available\n\t\t\tif (observer && !visibilityIndex[id]) {\n\t\t\t\tif (containerIsVisible(container)) {\n\t\t\t\t\t\u002F\u002F Skip IntersectionObserver if graphic is initially visible\n\t\t\t\t\t\u002F\u002F Note: We're doing this after artboard visibility is first calculated\n\t\t\t\t\t\u002F\u002F\t (above) -- otherwise all artboard images are display:block and the\n\t\t\t\t\t\u002F\u002F\t calculated height of the graphic is huge.\n\t\t\t\t\t\u002F\u002F TODO: Consider making artboard images position:absolute and setting\n\t\t\t\t\t\u002F\u002F\t height as a padding % (calculated from the aspect ratio of the graphic).\n\t\t\t\t\t\u002F\u002F\t This will correctly set the initial height of the graphic before\n\t\t\t\t\t\u002F\u002F\t an image is loaded.\n\t\t\t\t\tvisibilityIndex[id] = 'visible';\n\t\t\t\t\tupdateGraphic(container); \u002F\u002F Call again to start loading right away\n\t\t\t\t} else {\n\t\t\t\t\tvisibilityIndex[id] = 'hidden';\n\t\t\t\t\tobserver.observe(container);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfunction containerIsVisible(container) {\n\t\t\tvar bounds = container.getBoundingClientRect();\n\t\t\treturn bounds.top \u003C window.innerHeight && bounds.bottom \u003E 0;\n\t\t}\n\n\t\t\u002F\u002F Replace blank placeholder image with actual image\n\t\t\u002F\u002F (only relevant if use_lazy_loader option is true)\n\t\tfunction updateImgSrc(img) {\n\t\t\tvar src = img.getAttribute(\"data-src\");\n\t\t\tif (src && img.getAttribute(\"src\") != src) {\n\t\t\t\timg.setAttribute(\"src\", src);\n\t\t\t}\n\t\t}\n\n\t\tfunction onIntersectionChange(entries) {\n\t\t\tentries.forEach(function(entry) {\n\t\t\t\tif (entry.isIntersecting) {\n\t\t\t\t\tvisibilityIndex[entry.target.id] = 'visible';\n\t\t\t\t\tobserver.unobserve(entry.target);\n\t\t\t\t\tupdateGraphic(entry.target);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tfunction selectElements(selector, parent) {\n\t\t\tvar selection = (parent || document).querySelectorAll(selector);\n\t\t\treturn Array.prototype.slice.call(selection);\n\t\t}\n\n\t\tfunction nytOnResize() {\n\t\t\t\u002F\u002F TODO: add comments\n\t\t\ttry {\n\t\t\t\tif (window.parent && window.parent.$) {\n\t\t\t\t\twindow.parent.$(\"body\").trigger(\"resizedcontent\", [window]);\n\t\t\t\t}\n\t\t\t\tdocument.documentElement.dispatchEvent(new Event(\"resizedcontent\"));\n\t\t\t\tif (window.require && document.querySelector(\"meta[name=sourceApp]\") && document.querySelector(\"meta[name=sourceApp]\").content == \"nyt-v5\") {\n\t\t\t\t\trequire([\"foundation\u002Fmain\"], function() {\n\t\t\t\t\t\trequire([\"shared\u002Finteractive\u002Finstances\u002Fapp-communicator\"], function(AppCommunicator) {\n\t\t\t\t\t\t\tAppCommunicator.triggerResize();\n\t\t\t\t\t\t});\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t} catch(e) { console.log(e); }\n\t\t}\n\n\t\t\u002F\u002F based on underscore.js\n\t\tfunction throttle(func, wait) {\n\t\t\tvar _now = Date.now || function() { return +new Date(); },\n\t\t\t\t\ttimeout = null, previous = 0;\n\t\t\tvar run = function() {\n\t\t\t\t\tprevious = _now();\n\t\t\t\t\ttimeout = null;\n\t\t\t\t\tfunc();\n\t\t\t};\n\t\t\treturn function() {\n\t\t\t\tvar remaining = wait - (_now() - previous);\n\t\t\t\tif (remaining \u003C= 0 || remaining \u003E wait) {\n\t\t\t\t\tif (timeout) {\n\t\t\t\t\t\tclearTimeout(timeout);\n\t\t\t\t\t}\n\t\t\t\t\trun();\n\t\t\t\t} else if (!timeout) {\n\t\t\t\t\ttimeout = setTimeout(run, remaining);\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t})(\"nyt-preview\", \"g-\");\n\u003C\u002Fscript\u003E\n\u003C!-- End ai2html - 2018-09-14 15:18 --\u003E\n\u003C!-- Pipeline: 2018-09-14-interest-on-national-debt | September 14, 2018, 03:20PM | 313e919f83bb85b62966d7f70121c5f3f3ea740b --\u003E\n","compatibility":"INLINE","headline":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.headline","typename":"CreativeWorkHeadline"},"advertisingProperties":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.advertisingProperties","typename":"CreativeWorkAdvertisingProperties"},"displayProperties":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.displayProperties","typename":"CreativeWorkDisplayProperties"},"bylines":[],"sourceId":"100000006106654","credit":"By The New York Times | Source: Congressional Budget Office","leadin":"Annual interest payments on the national debt are expected to triple over the next decade, according to the Congressional Budget Office.","note":"","dataSource":"","uri":"nyt:\u002F\u002Fembeddedinteractive\u002F0cea6231-99b4-5b9a-851a-a2a290fb15e8","promotionalMedia":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.promotionalMedia","typename":"Image"}},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.headline":{"default":"Interest on the National Debt","__typename":"CreativeWorkHeadline"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.advertisingProperties":{"sensitivity":"SHOW_ADS","__typename":"CreativeWorkAdvertisingProperties"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.displayProperties":{"displayForPromotionOnly":true,"maximumWidth":600,"minimumWidth":300,"__typename":"CreativeWorkDisplayProperties"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.promotionalMedia":{"__typename":"Image","caption":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.promotionalMedia.caption","typename":"TextOnlyDocumentBlock"},"crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]})":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).0","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).1","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).2","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).3","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).4","typename":"ImageCrop"}],"promotionalMedia":null},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.promotionalMedia.caption":{"text@stripHtml":"","__typename":"TextOnlyDocumentBlock"},"ImageRendition:images20180914businessinterest-on-national-debt-1536943625607interest-on-national-debt-1536943625607-articleLarge.png":{"name":"articleLarge","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Finterest-on-national-debt-1536943625607\u002Finterest-on-national-debt-1536943625607-articleLarge.png","width":600,"height":434,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).0":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessinterest-on-national-debt-1536943625607interest-on-national-debt-1536943625607-articleLarge.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914businessinterest-on-national-debt-1536943625607interest-on-national-debt-1536943625607-thumbLarge.png":{"name":"thumbLarge","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Finterest-on-national-debt-1536943625607\u002Finterest-on-national-debt-1536943625607-thumbLarge.png","width":150,"height":150,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).1":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessinterest-on-national-debt-1536943625607interest-on-national-debt-1536943625607-thumbLarge.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914businessinterest-on-national-debt-1536943625607interest-on-national-debt-1536943625607-square640.png":{"name":"square640","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Finterest-on-national-debt-1536943625607\u002Finterest-on-national-debt-1536943625607-square640.png","width":640,"height":640,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).2":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessinterest-on-national-debt-1536943625607interest-on-national-debt-1536943625607-square640.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914businessinterest-on-national-debt-1536943625607interest-on-national-debt-1536943625607-largeHorizontalJumbo.png":{"name":"largeHorizontalJumbo","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Finterest-on-national-debt-1536943625607\u002Finterest-on-national-debt-1536943625607-largeHorizontalJumbo.png","width":1024,"height":683,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).3":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessinterest-on-national-debt-1536943625607interest-on-national-debt-1536943625607-largeHorizontalJumbo.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914businessinterest-on-national-debt-1536943625607interest-on-national-debt-1536943625607-videoLarge.png":{"name":"videoLarge","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Finterest-on-national-debt-1536943625607\u002Finterest-on-national-debt-1536943625607-videoLarge.png","width":768,"height":507,"__typename":"ImageRendition"},"ImageRendition:images20180914businessinterest-on-national-debt-1536943625607interest-on-national-debt-1536943625607-threeByTwoLargeAt2X.png":{"name":"threeByTwoLargeAt2X","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Finterest-on-national-debt-1536943625607\u002Finterest-on-national-debt-1536943625607-threeByTwoLargeAt2X.png","width":1024,"height":683,"__typename":"ImageRendition"},"ImageRendition:images20180914businessinterest-on-national-debt-1536943625607interest-on-national-debt-1536943625607-threeByTwoMediumAt2X.png":{"name":"threeByTwoMediumAt2X","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Finterest-on-national-debt-1536943625607\u002Finterest-on-national-debt-1536943625607-threeByTwoMediumAt2X.png","width":1024,"height":683,"__typename":"ImageRendition"},"ImageRendition:images20180914businessinterest-on-national-debt-1536943625607interest-on-national-debt-1536943625607-threeByTwoSmallAt2X.png":{"name":"threeByTwoSmallAt2X","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Finterest-on-national-debt-1536943625607\u002Finterest-on-national-debt-1536943625607-threeByTwoSmallAt2X.png","width":600,"height":400,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.15.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).4":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessinterest-on-national-debt-1536943625607interest-on-national-debt-1536943625607-videoLarge.png","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180914businessinterest-on-national-debt-1536943625607interest-on-national-debt-1536943625607-threeByTwoLargeAt2X.png","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180914businessinterest-on-national-debt-1536943625607interest-on-national-debt-1536943625607-threeByTwoMediumAt2X.png","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180914businessinterest-on-national-debt-1536943625607interest-on-national-debt-1536943625607-threeByTwoSmallAt2X.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.16.content.0":{"__typename":"TextInline","text":"Deficit hawks have gone silent, even proposing changes that would exacerbate the deficit. House Republicans introduced legislation this month that would make the tax cuts permanent.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.18.content.0":{"__typename":"TextInline","text":"“The issue has just disappeared,” said Senator Mark Warner, a Virginia Democrat. “There’s collective amnesia.”","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.20.content.0":{"__typename":"TextInline","text":"The combination, say economists, marks a journey into mostly uncharted financial territory.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.21.content.0":{"__typename":"TextInline","text":"In the past, government borrowing expanded during recessions and waned in recoveries. That countercyclical policy has been a part of the standard Keynesian toolbox to combat downturns since the Great Depression.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.23.content.0":{"__typename":"TextInline","text":"The deficit is soaring now as the economy booms, meaning the stimulus is pro-cyclical. The risk is that the government would have less room to maneuver if the economy slows.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media":{"__typename":"EmbeddedInteractive","slug":"debt-as-a-share-of-gdp","html":"\u003C!-- Generated by ai2html v0.74.0 - 2018-09-14 13:34 --\u003E\r\n\u003C!-- ai file: 0916 biz web DEBT CHART 2.ai --\u003E\r\n\u003C!-- preview: 2018-09-14-debt-as-a-share-of-gdp --\u003E\r\n\u003Cstyle type='text\u002Fcss' media='screen,print'\u003E\r\n\t#g-0916-biz-web-DEBT-CHART-2-box .g-artboard {\r\n\t\tmargin:0 auto;\r\n\t}\r\n\t#g-0916-biz-web-DEBT-CHART-2-box .g-artboard p {\r\n\t\tmargin:0;\r\n\t}\r\n\t.g-aiAbs {\r\n\t\tposition:absolute;\r\n\t}\r\n\t.g-aiImg {\r\n\t\tdisplay:block;\r\n\t\twidth:100% !important;\r\n\t}\r\n\t.g-aiSymbol {\r\n\t\tposition: absolute;\r\n\t\tbox-sizing: border-box;\r\n\t}\r\n\t.g-aiPointText p { white-space: nowrap; }\r\n\t#g-0916-biz-web-DEBT-CHART-2-Artboard_2 {\r\n\t\tposition:relative;\r\n\t\toverflow:hidden;\r\n\t\twidth:600px;\r\n\t}\r\n\t#g-0916-biz-web-DEBT-CHART-2-Artboard_2 p {\r\n\t\tfont-family:nyt-franklin,arial,helvetica,sans-serif;\r\n\t\tfont-weight:700;\r\n\t\tfont-size:13px;\r\n\t\tline-height:18px;\r\n\t\theight:auto;\r\n\t\tfilter:alpha(opacity=100);\r\n\t\t-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\r\n\t\topacity:1;\r\n\t\tletter-spacing:0em;\r\n\t\ttext-align:left;\r\n\t\tcolor:rgb(51,51,51);\r\n\t\ttext-transform:none;\r\n\t\tpadding-bottom:0;\r\n\t\tpadding-top:0;\r\n\t\tmix-blend-mode:normal;\r\n\t\tfont-style:normal;\r\n\t}\r\n\t#g-0916-biz-web-DEBT-CHART-2-Artboard_2 .g-pstyle0 {\r\n\t\theight:18px;\r\n\t}\r\n\t#g-0916-biz-web-DEBT-CHART-2-Artboard_2 .g-pstyle1 {\r\n\t\tfont-weight:500;\r\n\t\theight:18px;\r\n\t\ttext-align:right;\r\n\t}\r\n\t#g-0916-biz-web-DEBT-CHART-2-Artboard_2 .g-pstyle2 {\r\n\t\tfont-weight:500;\r\n\t\theight:18px;\r\n\t}\r\n\t#g-0916-biz-web-DEBT-CHART-2-Artboard_2 .g-pstyle3 {\r\n\t\tfont-weight:500;\r\n\t\tfont-size:11px;\r\n\t\theight:18px;\r\n\t\ttext-align:center;\r\n\t}\r\n\t#g-0916-biz-web-DEBT-CHART-2-Artboard_2 .g-pstyle4 {\r\n\t\tfont-weight:500;\r\n\t\tfont-size:11px;\r\n\t\theight:18px;\r\n\t}\r\n\t#g-0916-biz-web-DEBT-CHART-2-Artboard_2 .g-pstyle5 {\r\n\t\tfont-weight:500;\r\n\t\theight:18px;\r\n\t\ttext-align:center;\r\n\t}\r\n\t#g-0916-biz-web-DEBT-CHART-2-Artboard_3 {\r\n\t\tposition:relative;\r\n\t\toverflow:hidden;\r\n\t\twidth:300px;\r\n\t}\r\n\t#g-0916-biz-web-DEBT-CHART-2-Artboard_3 p {\r\n\t\tfont-family:nyt-franklin,arial,helvetica,sans-serif;\r\n\t\tfont-weight:700;\r\n\t\tfont-size:13px;\r\n\t\tline-height:18px;\r\n\t\theight:auto;\r\n\t\tfilter:alpha(opacity=100);\r\n\t\t-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\r\n\t\topacity:1;\r\n\t\tletter-spacing:0em;\r\n\t\ttext-align:left;\r\n\t\tcolor:rgb(51,51,51);\r\n\t\ttext-transform:none;\r\n\t\tpadding-bottom:0;\r\n\t\tpadding-top:0;\r\n\t\tmix-blend-mode:normal;\r\n\t\tfont-style:normal;\r\n\t}\r\n\t#g-0916-biz-web-DEBT-CHART-2-Artboard_3 .g-pstyle0 {\r\n\t\theight:18px;\r\n\t}\r\n\t#g-0916-biz-web-DEBT-CHART-2-Artboard_3 .g-pstyle1 {\r\n\t\tfont-weight:500;\r\n\t\theight:18px;\r\n\t\ttext-align:right;\r\n\t}\r\n\t#g-0916-biz-web-DEBT-CHART-2-Artboard_3 .g-pstyle2 {\r\n\t\tfont-weight:500;\r\n\t\theight:18px;\r\n\t}\r\n\t#g-0916-biz-web-DEBT-CHART-2-Artboard_3 .g-pstyle3 {\r\n\t\tfont-weight:500;\r\n\t\tfont-size:11px;\r\n\t\theight:18px;\r\n\t}\r\n\t#g-0916-biz-web-DEBT-CHART-2-Artboard_3 .g-pstyle4 {\r\n\t\tfont-weight:500;\r\n\t\theight:18px;\r\n\t\ttext-align:center;\r\n\t}\r\n\r\n\u003C\u002Fstyle\u003E\r\n\r\n\u003Cdiv id=\"g-0916-biz-web-DEBT-CHART-2-box\" class=\"ai2html ai2html-box-v5\"\u003E\r\n\r\n\t\u003C!-- Artboard: Artboard_2 --\u003E\r\n\t\u003Cdiv id=\"g-0916-biz-web-DEBT-CHART-2-Artboard_2\" class=\"g-artboard\" data-aspect-ratio=\"1.382\" data-min-width=\"600\"\u003E\r\n\t\t\u003Cimg id=\"g-0916-biz-web-DEBT-CHART-2-Artboard_2-img\" class=\"g-aiImg\" data-src=\"https:\u002F\u002Fstatic01.nyt.com\u002Fnewsgraphics\u002F2018\u002F09\u002F14\u002Fdebt-as-a-share-of-gdp\u002Fdad2c5186b9c0b968d766fa279d9ed6b76ce776b\u002F0916-biz-web-DEBT-CHART-2-Artboard_2.png\" src=\"data:image\u002Fgif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==\"\u002F\u003E\r\n\t\t\u003Cdiv id=\"g-ai0-1\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:4.4262%;margin-top:-9.2px;left:0.0838%;width:299px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle0\"\u003EPublic debt as a share of gross domestic product\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai0-2\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.5016%;margin-top:-9.2px;right:95.0369%;width:44px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E100\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai0-3\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.5016%;margin-top:-9.2px;left:5.4133%;width:33px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E%\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai0-4\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:16.8643%;margin-top:-9.2px;left:23.0468%;margin-left:-42.5px;width:85px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle3\"\u003ERECESSIONS\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai0-5\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:16.8643%;margin-top:-9.2px;left:78.0253%;width:79px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003EPROJECTED\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai0-6\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:24.7052%;margin-top:-9.2px;right:94.9686%;width:37px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E80\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai0-7\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:39.9089%;margin-top:-9.2px;right:94.9686%;width:37px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E60\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai0-8\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:55.3429%;margin-top:-9.2px;right:94.9686%;width:37px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E40\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai0-9\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:70.5466%;margin-top:-9.2px;right:94.9686%;width:37px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E20\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai0-10\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:85.7502%;margin-top:-9.2px;right:95.0669%;width:29px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E0\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai0-11\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:8.5381%;margin-left:-20px;width:40px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle5\"\u003E&rsquo;78\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai0-12\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:12.2413%;margin-left:-20px;width:40px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle5\"\u003E&rsquo;80\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai0-13\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:29.7156%;margin-left:-20px;width:40px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle5\"\u003E&rsquo;90\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai0-14\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:47.1898%;margin-left:-20px;width:40px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle5\"\u003E&rsquo;00\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai0-15\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:64.635%;margin-left:-19.5px;width:39px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle5\"\u003E&rsquo;10\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai0-16\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:82.1384%;margin-left:-20px;width:40px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle5\"\u003E&rsquo;20\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai0-17\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:96.0294%;margin-left:-20px;width:40px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle5\"\u003E&rsquo;28\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\u003C\u002Fdiv\u003E\r\n\r\n\t\u003C!-- Artboard: Artboard_3 --\u003E\r\n\t\u003Cdiv id=\"g-0916-biz-web-DEBT-CHART-2-Artboard_3\" class=\"g-artboard\" data-aspect-ratio=\"0.691\" data-min-width=\"300\" data-max-width=\"599\"\u003E\r\n\t\t\u003Cimg id=\"g-0916-biz-web-DEBT-CHART-2-Artboard_3-img\" class=\"g-aiImg\" data-src=\"https:\u002F\u002Fstatic01.nyt.com\u002Fnewsgraphics\u002F2018\u002F09\u002F14\u002Fdebt-as-a-share-of-gdp\u002Fdad2c5186b9c0b968d766fa279d9ed6b76ce776b\u002F0916-biz-web-DEBT-CHART-2-Artboard_3.png\" src=\"data:image\u002Fgif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==\"\u002F\u003E\r\n\t\t\u003Cdiv id=\"g-ai1-1\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:4.4262%;margin-top:-9.2px;left:0.2844%;width:299px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle0\"\u003EPublic debt as a share of gross domestic product\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai1-2\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.5016%;margin-top:-9.2px;right:90.2334%;width:44px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E100\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai1-3\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.5016%;margin-top:-9.2px;left:10.2054%;width:33px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E%\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai1-4\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:24.7052%;margin-top:-9.2px;right:90.0968%;width:37px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E80\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai1-5\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:39.9089%;margin-top:-9.2px;right:90.0968%;width:37px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E60\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai1-6\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:55.3429%;margin-top:-9.2px;right:90.0968%;width:37px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E40\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai1-7\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:70.5465%;margin-top:-9.2px;right:90.0968%;width:37px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E20\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai1-8\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:80.4432%;margin-top:-9.2px;left:22.2287%;width:85px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle3\"\u003ERECESSIONS\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai1-9\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:80.4432%;margin-top:-9.2px;left:74.1042%;width:79px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle3\"\u003EPROJECTED\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai1-10\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:85.7502%;margin-top:-9.2px;right:90.2934%;width:29px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E0\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai1-11\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:16.2259%;margin-left:-20px;width:40px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;80\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai1-12\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:31.6032%;margin-left:-20px;width:40px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;90\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai1-13\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:46.9805%;margin-left:-20px;width:40px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;00\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai1-14\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:62.2997%;margin-left:-19.5px;width:39px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;10\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai1-15\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:77.7354%;margin-left:-20px;width:40px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;20\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\t\u003Cdiv id=\"g-ai1-16\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:89.9593%;margin-left:-20px;width:40px;\"\u003E\r\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;28\u003C\u002Fp\u003E\r\n\t\t\u003C\u002Fdiv\u003E\r\n\t\u003C\u002Fdiv\u003E\r\n\r\n\u003C\u002Fdiv\u003E\r\n\r\n\u003Cscript type=\"text\u002Fjavascript\"\u003E\r\n\t(function (scriptEnvironment, nameSpace) {\r\n\t\t\u002F\u002F Use a sentinel class to ensure that this version of the resizer only initializes once\r\n\t\tif (document.documentElement.className.indexOf(nameSpace + \"resizer-v5-init\") \u003E -1) return;\r\n\t\tdocument.documentElement.className += \" \" + nameSpace + \"resizer-v5-init\";\r\n\t\t\u002F\u002F requires IE9+\r\n\t\tif (!(\"querySelector\" in document)) return;\r\n\t\tvar observer = window.IntersectionObserver ? new IntersectionObserver(onIntersectionChange, {}) : null;\r\n\t\tvar visibilityIndex = {}; \u002F\u002F visibility of each graphic, indexed by container id (used with InteractionObserver)\r\n\r\n\t\tupdateAllGraphics();\r\n\t\twindow.addEventListener('nyt:embed:load', updateAllGraphics); \u002F\u002F for nyt vi compatibility\r\n\t\tdocument.addEventListener(\"DOMContentLoaded\", updateAllGraphics);\r\n\t\twindow.addEventListener(\"resize\", throttle(updateAllGraphics, 200));\r\n\r\n\t\tfunction updateAllGraphics() {\r\n\t\t\tselectElements(\".ai2html-box-v5\").forEach(updateGraphic);\r\n\t\t\tif (scriptEnvironment == \"nyt-preview\") {\r\n\t\t\t\tnytOnResize();\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tfunction updateGraphic(container) {\r\n\t\t\tvar artboards = selectElements(\".\" + nameSpace + \"artboard[data-min-width]\", container),\r\n\t\t\t\t\twidth = Math.round(container.getBoundingClientRect().width),\r\n\t\t\t\t\tid = container.id, \u002F\u002F assume container has an id\r\n\t\t\t\t\tshowImages = !observer || visibilityIndex[id] == 'visible';\r\n\r\n\t\t\t\u002F\u002F Set artboard visibility based on container width\r\n\t\t\tartboards.forEach(function(el) {\r\n\t\t\t\tvar minwidth = el.getAttribute(\"data-min-width\"),\r\n\t\t\t\t\t\tmaxwidth = el.getAttribute(\"data-max-width\");\r\n\t\t\t\tif (+minwidth \u003C= width && (+maxwidth \u003E= width || maxwidth === null)) {\r\n\t\t\t\t\tif (showImages) {\r\n\t\t\t\t\t\tselectElements(\".\" + nameSpace + \"aiImg\", el).forEach(updateImgSrc);\r\n\t\t\t\t\t}\r\n\t\t\t\t\tel.style.display = \"block\";\r\n\t\t\t\t} else {\r\n\t\t\t\t\tel.style.display = \"none\";\r\n\t\t\t\t}\r\n\t\t\t});\r\n\r\n\t\t\t\u002F\u002F Initialize lazy loading on first call, if IntersectionObserver is available\r\n\t\t\tif (observer && !visibilityIndex[id]) {\r\n\t\t\t\tif (containerIsVisible(container)) {\r\n\t\t\t\t\t\u002F\u002F Skip IntersectionObserver if graphic is initially visible\r\n\t\t\t\t\t\u002F\u002F Note: We're doing this after artboard visibility is first calculated\r\n\t\t\t\t\t\u002F\u002F\t (above) -- otherwise all artboard images are display:block and the\r\n\t\t\t\t\t\u002F\u002F\t calculated height of the graphic is huge.\r\n\t\t\t\t\t\u002F\u002F TODO: Consider making artboard images position:absolute and setting\r\n\t\t\t\t\t\u002F\u002F\t height as a padding % (calculated from the aspect ratio of the graphic).\r\n\t\t\t\t\t\u002F\u002F\t This will correctly set the initial height of the graphic before\r\n\t\t\t\t\t\u002F\u002F\t an image is loaded.\r\n\t\t\t\t\tvisibilityIndex[id] = 'visible';\r\n\t\t\t\t\tupdateGraphic(container); \u002F\u002F Call again to start loading right away\r\n\t\t\t\t} else {\r\n\t\t\t\t\tvisibilityIndex[id] = 'hidden';\r\n\t\t\t\t\tobserver.observe(container);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tfunction containerIsVisible(container) {\r\n\t\t\tvar bounds = container.getBoundingClientRect();\r\n\t\t\treturn bounds.top \u003C window.innerHeight && bounds.bottom \u003E 0;\r\n\t\t}\r\n\r\n\t\t\u002F\u002F Replace blank placeholder image with actual image\r\n\t\t\u002F\u002F (only relevant if use_lazy_loader option is true)\r\n\t\tfunction updateImgSrc(img) {\r\n\t\t\tvar src = img.getAttribute(\"data-src\");\r\n\t\t\tif (src && img.getAttribute(\"src\") != src) {\r\n\t\t\t\timg.setAttribute(\"src\", src);\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tfunction onIntersectionChange(entries) {\r\n\t\t\tentries.forEach(function(entry) {\r\n\t\t\t\tif (entry.isIntersecting) {\r\n\t\t\t\t\tvisibilityIndex[entry.target.id] = 'visible';\r\n\t\t\t\t\tobserver.unobserve(entry.target);\r\n\t\t\t\t\tupdateGraphic(entry.target);\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\r\n\t\tfunction selectElements(selector, parent) {\r\n\t\t\tvar selection = (parent || document).querySelectorAll(selector);\r\n\t\t\treturn Array.prototype.slice.call(selection);\r\n\t\t}\r\n\r\n\t\tfunction nytOnResize() {\r\n\t\t\t\u002F\u002F TODO: add comments\r\n\t\t\ttry {\r\n\t\t\t\tif (window.parent && window.parent.$) {\r\n\t\t\t\t\twindow.parent.$(\"body\").trigger(\"resizedcontent\", [window]);\r\n\t\t\t\t}\r\n\t\t\t\tdocument.documentElement.dispatchEvent(new Event(\"resizedcontent\"));\r\n\t\t\t\tif (window.require && document.querySelector(\"meta[name=sourceApp]\") && document.querySelector(\"meta[name=sourceApp]\").content == \"nyt-v5\") {\r\n\t\t\t\t\trequire([\"foundation\u002Fmain\"], function() {\r\n\t\t\t\t\t\trequire([\"shared\u002Finteractive\u002Finstances\u002Fapp-communicator\"], function(AppCommunicator) {\r\n\t\t\t\t\t\t\tAppCommunicator.triggerResize();\r\n\t\t\t\t\t\t});\r\n\t\t\t\t\t});\r\n\t\t\t\t}\r\n\t\t\t} catch(e) { console.log(e); }\r\n\t\t}\r\n\r\n\t\t\u002F\u002F based on underscore.js\r\n\t\tfunction throttle(func, wait) {\r\n\t\t\tvar _now = Date.now || function() { return +new Date(); },\r\n\t\t\t\t\ttimeout = null, previous = 0;\r\n\t\t\tvar run = function() {\r\n\t\t\t\t\tprevious = _now();\r\n\t\t\t\t\ttimeout = null;\r\n\t\t\t\t\tfunc();\r\n\t\t\t};\r\n\t\t\treturn function() {\r\n\t\t\t\tvar remaining = wait - (_now() - previous);\r\n\t\t\t\tif (remaining \u003C= 0 || remaining \u003E wait) {\r\n\t\t\t\t\tif (timeout) {\r\n\t\t\t\t\t\tclearTimeout(timeout);\r\n\t\t\t\t\t}\r\n\t\t\t\t\trun();\r\n\t\t\t\t} else if (!timeout) {\r\n\t\t\t\t\ttimeout = setTimeout(run, remaining);\r\n\t\t\t\t}\r\n\t\t\t};\r\n\t\t}\r\n\t})(\"nyt-preview\", \"g-\");\r\n\u003C\u002Fscript\u003E\r\n\u003C!-- End ai2html - 2018-09-14 13:34 --\u003E\r\n\u003C!-- Pipeline: 2018-09-14-debt-as-a-share-of-gdp | September 14, 2018, 01:34PM | dad2c5186b9c0b968d766fa279d9ed6b76ce776b --\u003E\r\n","compatibility":"INLINE","headline":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.headline","typename":"CreativeWorkHeadline"},"advertisingProperties":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.advertisingProperties","typename":"CreativeWorkAdvertisingProperties"},"displayProperties":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.displayProperties","typename":"CreativeWorkDisplayProperties"},"bylines":[],"sourceId":"100000006106750","credit":"By The New York Times | Source: Congressional Budget Office","leadin":"Debt as a percentage of gross domestic product tends to increase during recessions and fall during recoveries. But the debt is increasing now, even as the economy is growing, because of tax cuts and spending increases.","note":"","dataSource":"","uri":"nyt:\u002F\u002Fembeddedinteractive\u002F1f511369-8957-5aa0-88ec-346220864536","promotionalMedia":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.promotionalMedia","typename":"Image"}},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.headline":{"default":"Debt as a Share of G.D.P.","__typename":"CreativeWorkHeadline"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.advertisingProperties":{"sensitivity":"SHOW_ADS","__typename":"CreativeWorkAdvertisingProperties"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.displayProperties":{"displayForPromotionOnly":true,"maximumWidth":600,"minimumWidth":300,"__typename":"CreativeWorkDisplayProperties"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.promotionalMedia":{"__typename":"Image","caption":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.promotionalMedia.caption","typename":"TextOnlyDocumentBlock"},"crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]})":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).0","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).1","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).2","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).3","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).4","typename":"ImageCrop"}],"promotionalMedia":null},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.promotionalMedia.caption":{"text@stripHtml":"","__typename":"TextOnlyDocumentBlock"},"ImageRendition:images20180914businessdebt-as-a-share-of-gdp-1536946401142debt-as-a-share-of-gdp-1536946401142-articleLarge.png":{"name":"articleLarge","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fdebt-as-a-share-of-gdp-1536946401142\u002Fdebt-as-a-share-of-gdp-1536946401142-articleLarge.png","width":600,"height":434,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).0":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessdebt-as-a-share-of-gdp-1536946401142debt-as-a-share-of-gdp-1536946401142-articleLarge.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914businessdebt-as-a-share-of-gdp-1536946401142debt-as-a-share-of-gdp-1536946401142-thumbLarge.png":{"name":"thumbLarge","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fdebt-as-a-share-of-gdp-1536946401142\u002Fdebt-as-a-share-of-gdp-1536946401142-thumbLarge.png","width":150,"height":150,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).1":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessdebt-as-a-share-of-gdp-1536946401142debt-as-a-share-of-gdp-1536946401142-thumbLarge.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914businessdebt-as-a-share-of-gdp-1536946401142debt-as-a-share-of-gdp-1536946401142-square640.png":{"name":"square640","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fdebt-as-a-share-of-gdp-1536946401142\u002Fdebt-as-a-share-of-gdp-1536946401142-square640.png","width":640,"height":640,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).2":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessdebt-as-a-share-of-gdp-1536946401142debt-as-a-share-of-gdp-1536946401142-square640.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914businessdebt-as-a-share-of-gdp-1536946401142debt-as-a-share-of-gdp-1536946401142-largeHorizontalJumbo.png":{"name":"largeHorizontalJumbo","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fdebt-as-a-share-of-gdp-1536946401142\u002Fdebt-as-a-share-of-gdp-1536946401142-largeHorizontalJumbo.png","width":1024,"height":683,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).3":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessdebt-as-a-share-of-gdp-1536946401142debt-as-a-share-of-gdp-1536946401142-largeHorizontalJumbo.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914businessdebt-as-a-share-of-gdp-1536946401142debt-as-a-share-of-gdp-1536946401142-videoLarge.png":{"name":"videoLarge","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fdebt-as-a-share-of-gdp-1536946401142\u002Fdebt-as-a-share-of-gdp-1536946401142-videoLarge.png","width":768,"height":507,"__typename":"ImageRendition"},"ImageRendition:images20180914businessdebt-as-a-share-of-gdp-1536946401142debt-as-a-share-of-gdp-1536946401142-threeByTwoLargeAt2X.png":{"name":"threeByTwoLargeAt2X","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fdebt-as-a-share-of-gdp-1536946401142\u002Fdebt-as-a-share-of-gdp-1536946401142-threeByTwoLargeAt2X.png","width":1024,"height":683,"__typename":"ImageRendition"},"ImageRendition:images20180914businessdebt-as-a-share-of-gdp-1536946401142debt-as-a-share-of-gdp-1536946401142-threeByTwoMediumAt2X.png":{"name":"threeByTwoMediumAt2X","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fdebt-as-a-share-of-gdp-1536946401142\u002Fdebt-as-a-share-of-gdp-1536946401142-threeByTwoMediumAt2X.png","width":1024,"height":683,"__typename":"ImageRendition"},"ImageRendition:images20180914businessdebt-as-a-share-of-gdp-1536946401142debt-as-a-share-of-gdp-1536946401142-threeByTwoSmallAt2X.png":{"name":"threeByTwoSmallAt2X","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fdebt-as-a-share-of-gdp-1536946401142\u002Fdebt-as-a-share-of-gdp-1536946401142-threeByTwoSmallAt2X.png","width":600,"height":400,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.25.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).4":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessdebt-as-a-share-of-gdp-1536946401142debt-as-a-share-of-gdp-1536946401142-videoLarge.png","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180914businessdebt-as-a-share-of-gdp-1536946401142debt-as-a-share-of-gdp-1536946401142-threeByTwoLargeAt2X.png","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180914businessdebt-as-a-share-of-gdp-1536946401142debt-as-a-share-of-gdp-1536946401142-threeByTwoMediumAt2X.png","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180914businessdebt-as-a-share-of-gdp-1536946401142debt-as-a-share-of-gdp-1536946401142-threeByTwoSmallAt2X.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.26.content.0":{"__typename":"TextInline","text":"Aside from wartime or a deep downturn like the 1930s or 2008-9, “this sort of aggressive fiscal stimulus is unprecedented in U.S. history,” said Jeffrey Frankel, an economist at Harvard.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.28.content.0":{"__typename":"TextInline","text":"Pouring gasoline on an already hot economy has resulted in faster growth — the economy expanded at an annualized rate of 4.2 percent in the second quarter. But Mr. Frankel warns that when the economy weakens, the government will find it more difficult to cut taxes or increase spending.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.30.content.0":{"__typename":"TextInline","text":"Lawmakers might, in fact, feel compelled to cut spending as tax revenue falls, further depressing the economy. “There will eventually be another recession, and this increases the chances we will have to slam on the brakes when the car is already going too slowly,” Mr. Frankel said.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.32.content.0":{"__typename":"TextInline","text":"Interest costs make it harder for the government to do other things","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media":{"__typename":"EmbeddedInteractive","slug":"expenditures-as-a-share-of-national-budget","html":"\n\u003C!-- Generated by ai2html v0.74.0 - 2018-09-14 14:03 --\u003E\n\u003C!-- ai file: 0916 biz web DEBT CHART 3.ai --\u003E\n\u003C!-- preview: 2018-09-14-expenditures-as-a-share-of-national-budget --\u003E\n\u003C!-- scoop: expenditures-as-a-share-of-national-budget --\u003E\n\u003Cstyle type='text\u002Fcss' media='screen,print'\u003E\n\t#g-0916-biz-web-DEBT-CHART-3-box .g-artboard {\n\t\tmargin:0 auto;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-3-box .g-artboard p {\n\t\tmargin:0;\n\t}\n\t.g-aiAbs {\n\t\tposition:absolute;\n\t}\n\t.g-aiImg {\n\t\tdisplay:block;\n\t\twidth:100% !important;\n\t}\n\t.g-aiSymbol {\n\t\tposition: absolute;\n\t\tbox-sizing: border-box;\n\t}\n\t.g-aiPointText p { white-space: nowrap; }\n\t#g-0916-biz-web-DEBT-CHART-3-Artboard_2 {\n\t\tposition:relative;\n\t\toverflow:hidden;\n\t\twidth:600px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-3-Artboard_2 p {\n\t\tfont-family:nyt-franklin,arial,helvetica,sans-serif;\n\t\tfont-weight:700;\n\t\tfont-size:13px;\n\t\tline-height:18px;\n\t\theight:auto;\n\t\tfilter:alpha(opacity=100);\n\t\t-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n\t\topacity:1;\n\t\tletter-spacing:0em;\n\t\ttext-align:left;\n\t\tcolor:rgb(51,51,51);\n\t\ttext-transform:none;\n\t\tpadding-bottom:0;\n\t\tpadding-top:0;\n\t\tmix-blend-mode:normal;\n\t\tfont-style:normal;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-3-Artboard_2 .g-pstyle0 {\n\t\theight:18px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-3-Artboard_2 .g-pstyle1 {\n\t\tfont-weight:500;\n\t\theight:18px;\n\t\ttext-align:right;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-3-Artboard_2 .g-pstyle2 {\n\t\tfont-weight:500;\n\t\theight:18px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-3-Artboard_2 .g-pstyle3 {\n\t\theight:18px;\n\t\ttext-align:center;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-3-Artboard_2 .g-pstyle4 {\n\t\tfont-weight:500;\n\t\theight:18px;\n\t\ttext-align:center;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-3-Artboard_3 {\n\t\tposition:relative;\n\t\toverflow:hidden;\n\t\twidth:300px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-3-Artboard_3 p {\n\t\tfont-family:nyt-franklin,arial,helvetica,sans-serif;\n\t\tfont-weight:700;\n\t\tfont-size:13px;\n\t\tline-height:18px;\n\t\theight:auto;\n\t\tfilter:alpha(opacity=100);\n\t\t-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n\t\topacity:1;\n\t\tletter-spacing:0em;\n\t\ttext-align:left;\n\t\tcolor:rgb(51,51,51);\n\t\ttext-transform:none;\n\t\tpadding-bottom:0;\n\t\tpadding-top:0;\n\t\tmix-blend-mode:normal;\n\t\tfont-style:normal;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-3-Artboard_3 .g-pstyle0 {\n\t\theight:18px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-3-Artboard_3 .g-pstyle1 {\n\t\tfont-weight:500;\n\t\theight:18px;\n\t\ttext-align:right;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-3-Artboard_3 .g-pstyle2 {\n\t\tfont-weight:500;\n\t\theight:18px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-3-Artboard_3 .g-pstyle3 {\n\t\theight:18px;\n\t\ttext-align:right;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-3-Artboard_3 .g-pstyle4 {\n\t\tfont-weight:500;\n\t\theight:18px;\n\t\ttext-align:center;\n\t}\n\n\u003C\u002Fstyle\u003E\n\n\u003Cdiv id=\"g-0916-biz-web-DEBT-CHART-3-box\" class=\"ai2html ai2html-box-v5\"\u003E\n\n\t\u003C!-- Artboard: Artboard_2 --\u003E\n\t\u003Cdiv id=\"g-0916-biz-web-DEBT-CHART-3-Artboard_2\" class=\"g-artboard\" data-aspect-ratio=\"1.382\" data-min-width=\"600\"\u003E\n\t\t\u003Cimg id=\"g-0916-biz-web-DEBT-CHART-3-Artboard_2-img\" class=\"g-aiImg\" data-src=\"https:\u002F\u002Fstatic01.nyt.com\u002Fnewsgraphics\u002F2018\u002F09\u002F14\u002Fexpenditures-as-a-share-of-national-budget\u002F3311a2358867f7423b4d30b424829c1ff1228a7a\u002F0916-biz-web-DEBT-CHART-3-Artboard_2.png\" src=\"data:image\u002Fgif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==\"\u002F\u003E\n\t\t\u003Cdiv id=\"g-ai0-1\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:4.4262%;margin-top:-9.2px;left:0.0838%;width:258px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle0\"\u003EExpenditures as a share of overall budget\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-2\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.5016%;margin-top:-9.2px;right:94.9686%;width:37px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E15\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-3\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.5016%;margin-top:-9.2px;left:5.4133%;width:33px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E%\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-4\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:17.5566%;margin-top:-9.2px;left:81.708%;width:90px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle0\"\u003ENet interest\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-5\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:17.5566%;margin-top:-9.2px;left:96.8984%;margin-left:-29.5px;width:59px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle3\"\u003E13.0%\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-6\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:33.6891%;margin-top:-9.2px;left:81.708%;width:67px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003EDefense\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-7\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:34.841%;margin-top:-9.2px;right:94.9686%;width:37px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E10\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-8\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:43.825%;margin-top:-9.2px;left:81.708%;width:72px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003EMedicaid\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-9\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:50.0371%;margin-top:-9.2px;left:6.8178%;margin-left:-26px;width:52px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle3\"\u003E6.6%\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-10\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:60.4108%;margin-top:-9.2px;right:95.0669%;width:29px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E5\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-11\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:85.7502%;margin-top:-9.2px;right:95.0669%;width:29px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E0\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-12\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:6.0116%;margin-left:-19.5px;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;17\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-13\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:14.2578%;margin-left:-19.5px;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;18\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-14\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:22.5039%;margin-left:-19.5px;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;19\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-15\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:30.7793%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;20\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-16\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:39.0255%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;21\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-17\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:47.2716%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;22\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-18\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:55.5179%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;23\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-19\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:63.764%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;24\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-20\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:72.0103%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;25\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-21\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:80.2565%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;26\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-22\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:88.5024%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;27\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-23\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:96.7487%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;28\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\u003C\u002Fdiv\u003E\n\n\t\u003C!-- Artboard: Artboard_3 --\u003E\n\t\u003Cdiv id=\"g-0916-biz-web-DEBT-CHART-3-Artboard_3\" class=\"g-artboard\" data-aspect-ratio=\"0.691\" data-min-width=\"300\" data-max-width=\"599\"\u003E\n\t\t\u003Cimg id=\"g-0916-biz-web-DEBT-CHART-3-Artboard_3-img\" class=\"g-aiImg\" data-src=\"https:\u002F\u002Fstatic01.nyt.com\u002Fnewsgraphics\u002F2018\u002F09\u002F14\u002Fexpenditures-as-a-share-of-national-budget\u002F3311a2358867f7423b4d30b424829c1ff1228a7a\u002F0916-biz-web-DEBT-CHART-3-Artboard_3.png\" src=\"data:image\u002Fgif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==\"\u002F\u003E\n\t\t\u003Cdiv id=\"g-ai1-1\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:4.4262%;margin-top:-9.2px;left:0.2844%;width:258px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle0\"\u003EExpenditures as a share of overall budget\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-2\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.5016%;margin-top:-9.2px;right:90.0968%;width:37px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E15\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-3\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.5016%;margin-top:-9.2px;left:10.2054%;width:33px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E%\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-4\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:17.5566%;margin-top:-9.2px;right:13.9762%;width:90px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle3\"\u003ENet interest\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-5\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:17.5566%;margin-top:-9.2px;left:87.5494%;width:59px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle0\"\u003E13.0%\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-6\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:33.6892%;margin-top:-9.2px;right:14.1158%;width:67px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003EDefense\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-7\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:34.841%;margin-top:-9.2px;right:90.0968%;width:37px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E10\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-8\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:44.2857%;margin-top:-9.2px;right:14.0525%;width:72px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003EMedicaid\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-9\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:56.0265%;margin-top:-9.2px;left:13.3422%;width:52px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle0\"\u003E6.6%\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-10\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:60.4108%;margin-top:-9.2px;right:90.2934%;width:29px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E5\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-11\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:85.7502%;margin-top:-9.2px;right:90.2934%;width:29px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E0\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-12\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:10.7111%;margin-left:-19.5px;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;17\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-13\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:17.9678%;margin-left:-19.5px;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;18\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-14\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:25.2243%;margin-left:-19.5px;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;19\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-15\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:32.5394%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;20\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-16\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:39.7959%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;21\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-17\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:47.0526%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;22\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-18\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:54.3093%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;23\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-19\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:61.5658%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;24\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-20\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:68.8225%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;25\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-21\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:76.0791%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;26\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-22\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:83.3357%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;27\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-23\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.9699%;margin-top:-9.2px;left:90.5923%;margin-left:-20px;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;28\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\u003C\u002Fdiv\u003E\n\n\u003C\u002Fdiv\u003E\n\n\u003Cscript type=\"text\u002Fjavascript\"\u003E\n\t(function (scriptEnvironment, nameSpace) {\n\t\t\u002F\u002F Use a sentinel class to ensure that this version of the resizer only initializes once\n\t\tif (document.documentElement.className.indexOf(nameSpace + \"resizer-v5-init\") \u003E -1) return;\n\t\tdocument.documentElement.className += \" \" + nameSpace + \"resizer-v5-init\";\n\t\t\u002F\u002F requires IE9+\n\t\tif (!(\"querySelector\" in document)) return;\n\t\tvar observer = window.IntersectionObserver ? new IntersectionObserver(onIntersectionChange, {}) : null;\n\t\tvar visibilityIndex = {}; \u002F\u002F visibility of each graphic, indexed by container id (used with InteractionObserver)\n\n\t\tupdateAllGraphics();\n\t\twindow.addEventListener('nyt:embed:load', updateAllGraphics); \u002F\u002F for nyt vi compatibility\n\t\tdocument.addEventListener(\"DOMContentLoaded\", updateAllGraphics);\n\t\twindow.addEventListener(\"resize\", throttle(updateAllGraphics, 200));\n\n\t\tfunction updateAllGraphics() {\n\t\t\tselectElements(\".ai2html-box-v5\").forEach(updateGraphic);\n\t\t\tif (scriptEnvironment == \"nyt-preview\") {\n\t\t\t\tnytOnResize();\n\t\t\t}\n\t\t}\n\n\t\tfunction updateGraphic(container) {\n\t\t\tvar artboards = selectElements(\".\" + nameSpace + \"artboard[data-min-width]\", container),\n\t\t\t\t\twidth = Math.round(container.getBoundingClientRect().width),\n\t\t\t\t\tid = container.id, \u002F\u002F assume container has an id\n\t\t\t\t\tshowImages = !observer || visibilityIndex[id] == 'visible';\n\n\t\t\t\u002F\u002F Set artboard visibility based on container width\n\t\t\tartboards.forEach(function(el) {\n\t\t\t\tvar minwidth = el.getAttribute(\"data-min-width\"),\n\t\t\t\t\t\tmaxwidth = el.getAttribute(\"data-max-width\");\n\t\t\t\tif (+minwidth \u003C= width && (+maxwidth \u003E= width || maxwidth === null)) {\n\t\t\t\t\tif (showImages) {\n\t\t\t\t\t\tselectElements(\".\" + nameSpace + \"aiImg\", el).forEach(updateImgSrc);\n\t\t\t\t\t}\n\t\t\t\t\tel.style.display = \"block\";\n\t\t\t\t} else {\n\t\t\t\t\tel.style.display = \"none\";\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t\u002F\u002F Initialize lazy loading on first call, if IntersectionObserver is available\n\t\t\tif (observer && !visibilityIndex[id]) {\n\t\t\t\tif (containerIsVisible(container)) {\n\t\t\t\t\t\u002F\u002F Skip IntersectionObserver if graphic is initially visible\n\t\t\t\t\t\u002F\u002F Note: We're doing this after artboard visibility is first calculated\n\t\t\t\t\t\u002F\u002F\t (above) -- otherwise all artboard images are display:block and the\n\t\t\t\t\t\u002F\u002F\t calculated height of the graphic is huge.\n\t\t\t\t\t\u002F\u002F TODO: Consider making artboard images position:absolute and setting\n\t\t\t\t\t\u002F\u002F\t height as a padding % (calculated from the aspect ratio of the graphic).\n\t\t\t\t\t\u002F\u002F\t This will correctly set the initial height of the graphic before\n\t\t\t\t\t\u002F\u002F\t an image is loaded.\n\t\t\t\t\tvisibilityIndex[id] = 'visible';\n\t\t\t\t\tupdateGraphic(container); \u002F\u002F Call again to start loading right away\n\t\t\t\t} else {\n\t\t\t\t\tvisibilityIndex[id] = 'hidden';\n\t\t\t\t\tobserver.observe(container);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfunction containerIsVisible(container) {\n\t\t\tvar bounds = container.getBoundingClientRect();\n\t\t\treturn bounds.top \u003C window.innerHeight && bounds.bottom \u003E 0;\n\t\t}\n\n\t\t\u002F\u002F Replace blank placeholder image with actual image\n\t\t\u002F\u002F (only relevant if use_lazy_loader option is true)\n\t\tfunction updateImgSrc(img) {\n\t\t\tvar src = img.getAttribute(\"data-src\");\n\t\t\tif (src && img.getAttribute(\"src\") != src) {\n\t\t\t\timg.setAttribute(\"src\", src);\n\t\t\t}\n\t\t}\n\n\t\tfunction onIntersectionChange(entries) {\n\t\t\tentries.forEach(function(entry) {\n\t\t\t\tif (entry.isIntersecting) {\n\t\t\t\t\tvisibilityIndex[entry.target.id] = 'visible';\n\t\t\t\t\tobserver.unobserve(entry.target);\n\t\t\t\t\tupdateGraphic(entry.target);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tfunction selectElements(selector, parent) {\n\t\t\tvar selection = (parent || document).querySelectorAll(selector);\n\t\t\treturn Array.prototype.slice.call(selection);\n\t\t}\n\n\t\tfunction nytOnResize() {\n\t\t\t\u002F\u002F TODO: add comments\n\t\t\ttry {\n\t\t\t\tif (window.parent && window.parent.$) {\n\t\t\t\t\twindow.parent.$(\"body\").trigger(\"resizedcontent\", [window]);\n\t\t\t\t}\n\t\t\t\tdocument.documentElement.dispatchEvent(new Event(\"resizedcontent\"));\n\t\t\t\tif (window.require && document.querySelector(\"meta[name=sourceApp]\") && document.querySelector(\"meta[name=sourceApp]\").content == \"nyt-v5\") {\n\t\t\t\t\trequire([\"foundation\u002Fmain\"], function() {\n\t\t\t\t\t\trequire([\"shared\u002Finteractive\u002Finstances\u002Fapp-communicator\"], function(AppCommunicator) {\n\t\t\t\t\t\t\tAppCommunicator.triggerResize();\n\t\t\t\t\t\t});\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t} catch(e) { console.log(e); }\n\t\t}\n\n\t\t\u002F\u002F based on underscore.js\n\t\tfunction throttle(func, wait) {\n\t\t\tvar _now = Date.now || function() { return +new Date(); },\n\t\t\t\t\ttimeout = null, previous = 0;\n\t\t\tvar run = function() {\n\t\t\t\t\tprevious = _now();\n\t\t\t\t\ttimeout = null;\n\t\t\t\t\tfunc();\n\t\t\t};\n\t\t\treturn function() {\n\t\t\t\tvar remaining = wait - (_now() - previous);\n\t\t\t\tif (remaining \u003C= 0 || remaining \u003E wait) {\n\t\t\t\t\tif (timeout) {\n\t\t\t\t\t\tclearTimeout(timeout);\n\t\t\t\t\t}\n\t\t\t\t\trun();\n\t\t\t\t} else if (!timeout) {\n\t\t\t\t\ttimeout = setTimeout(run, remaining);\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t})(\"nyt-preview\", \"g-\");\n\u003C\u002Fscript\u003E\n\u003C!-- End ai2html - 2018-09-14 14:03 --\u003E\n\u003C!-- Pipeline: 2018-09-14-expenditures-as-a-share-of-national-budget | September 14, 2018, 02:04PM | 3311a2358867f7423b4d30b424829c1ff1228a7a --\u003E\n","compatibility":"INLINE","headline":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.headline","typename":"CreativeWorkHeadline"},"advertisingProperties":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.advertisingProperties","typename":"CreativeWorkAdvertisingProperties"},"displayProperties":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.displayProperties","typename":"CreativeWorkDisplayProperties"},"bylines":[],"sourceId":"100000006106770","credit":"By The New York Times | Source: Congressional Budget Office","leadin":"Interest payments will make up 13 percent of the federal budget a decade from now, surpassing spending on Medicaid and defense.","note":"","dataSource":"","uri":"nyt:\u002F\u002Fembeddedinteractive\u002F27973d52-5f82-509c-b7a1-bd8323702ed1","promotionalMedia":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.promotionalMedia","typename":"Image"}},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.headline":{"default":"Interest as a Share of the Budget","__typename":"CreativeWorkHeadline"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.advertisingProperties":{"sensitivity":"SHOW_ADS","__typename":"CreativeWorkAdvertisingProperties"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.displayProperties":{"displayForPromotionOnly":true,"maximumWidth":600,"minimumWidth":300,"__typename":"CreativeWorkDisplayProperties"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.promotionalMedia":{"__typename":"Image","caption":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.promotionalMedia.caption","typename":"TextOnlyDocumentBlock"},"crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]})":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).0","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).1","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).2","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).3","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).4","typename":"ImageCrop"}],"promotionalMedia":null},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.promotionalMedia.caption":{"text@stripHtml":"","__typename":"TextOnlyDocumentBlock"},"ImageRendition:images20180914businessexpenditures-as-a-share-of-national-budget-1536946929937expenditures-as-a-share-of-national-budget-1536946929937-articleLarge.png":{"name":"articleLarge","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fexpenditures-as-a-share-of-national-budget-1536946929937\u002Fexpenditures-as-a-share-of-national-budget-1536946929937-articleLarge.png","width":600,"height":434,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).0":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessexpenditures-as-a-share-of-national-budget-1536946929937expenditures-as-a-share-of-national-budget-1536946929937-articleLarge.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914businessexpenditures-as-a-share-of-national-budget-1536946929937expenditures-as-a-share-of-national-budget-1536946929937-thumbLarge.png":{"name":"thumbLarge","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fexpenditures-as-a-share-of-national-budget-1536946929937\u002Fexpenditures-as-a-share-of-national-budget-1536946929937-thumbLarge.png","width":150,"height":150,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).1":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessexpenditures-as-a-share-of-national-budget-1536946929937expenditures-as-a-share-of-national-budget-1536946929937-thumbLarge.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914businessexpenditures-as-a-share-of-national-budget-1536946929937expenditures-as-a-share-of-national-budget-1536946929937-square640.png":{"name":"square640","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fexpenditures-as-a-share-of-national-budget-1536946929937\u002Fexpenditures-as-a-share-of-national-budget-1536946929937-square640.png","width":640,"height":640,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).2":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessexpenditures-as-a-share-of-national-budget-1536946929937expenditures-as-a-share-of-national-budget-1536946929937-square640.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914businessexpenditures-as-a-share-of-national-budget-1536946929937expenditures-as-a-share-of-national-budget-1536946929937-largeHorizontalJumbo.png":{"name":"largeHorizontalJumbo","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fexpenditures-as-a-share-of-national-budget-1536946929937\u002Fexpenditures-as-a-share-of-national-budget-1536946929937-largeHorizontalJumbo.png","width":1024,"height":683,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).3":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessexpenditures-as-a-share-of-national-budget-1536946929937expenditures-as-a-share-of-national-budget-1536946929937-largeHorizontalJumbo.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914businessexpenditures-as-a-share-of-national-budget-1536946929937expenditures-as-a-share-of-national-budget-1536946929937-videoLarge.png":{"name":"videoLarge","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fexpenditures-as-a-share-of-national-budget-1536946929937\u002Fexpenditures-as-a-share-of-national-budget-1536946929937-videoLarge.png","width":768,"height":507,"__typename":"ImageRendition"},"ImageRendition:images20180914businessexpenditures-as-a-share-of-national-budget-1536946929937expenditures-as-a-share-of-national-budget-1536946929937-threeByTwoLargeAt2X.png":{"name":"threeByTwoLargeAt2X","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fexpenditures-as-a-share-of-national-budget-1536946929937\u002Fexpenditures-as-a-share-of-national-budget-1536946929937-threeByTwoLargeAt2X.png","width":1024,"height":683,"__typename":"ImageRendition"},"ImageRendition:images20180914businessexpenditures-as-a-share-of-national-budget-1536946929937expenditures-as-a-share-of-national-budget-1536946929937-threeByTwoMediumAt2X.png":{"name":"threeByTwoMediumAt2X","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fexpenditures-as-a-share-of-national-budget-1536946929937\u002Fexpenditures-as-a-share-of-national-budget-1536946929937-threeByTwoMediumAt2X.png","width":1024,"height":683,"__typename":"ImageRendition"},"ImageRendition:images20180914businessexpenditures-as-a-share-of-national-budget-1536946929937expenditures-as-a-share-of-national-budget-1536946929937-threeByTwoSmallAt2X.png":{"name":"threeByTwoSmallAt2X","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fexpenditures-as-a-share-of-national-budget-1536946929937\u002Fexpenditures-as-a-share-of-national-budget-1536946929937-threeByTwoSmallAt2X.png","width":600,"height":400,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.33.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).4":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessexpenditures-as-a-share-of-national-budget-1536946929937expenditures-as-a-share-of-national-budget-1536946929937-videoLarge.png","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180914businessexpenditures-as-a-share-of-national-budget-1536946929937expenditures-as-a-share-of-national-budget-1536946929937-threeByTwoLargeAt2X.png","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180914businessexpenditures-as-a-share-of-national-budget-1536946929937expenditures-as-a-share-of-national-budget-1536946929937-threeByTwoMediumAt2X.png","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180914businessexpenditures-as-a-share-of-national-budget-1536946929937expenditures-as-a-share-of-national-budget-1536946929937-threeByTwoSmallAt2X.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.34.content.0":{"__typename":"TextInline","text":"Finding the money to pay investors who hold government debt will crimp other parts of the budget. In a decade, interest on the debt will eat up 13 percent of government spending, up from 6.6 percent in 2017.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.36.content.0":{"__typename":"TextInline","text":"“By 2020, we will spend more on interest than we do on kids, including education, food stamps and aid to families,” said Marc Goldwein, senior policy director at the Committee for a Responsible Federal Budget, a research and advocacy organization. ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.38.content.0":{"__typename":"TextInline","text":"Interest costs already dwarf spending on many popular programs. For example, grants to students from low-income families for college total roughly $30 billion — about one-tenth of what the government will pay in interest this year. Interest payments will overtake Medicaid in 2020 and the Department of Defense budget in 2023.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.40.content.0":{"__typename":"TextInline","text":"What’s more, the heavy burden of interest payments could make it harder for the government to repair aging infrastructure or take on other big new projects. ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.42.content.0":{"__typename":"TextInline","text":"Mr. Trump has called for spending $1 trillion on infrastructure, but Congress has not taken up that idea.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.44.title.0":{"__typename":"TextInline","text":"More about the federal debt and the economy","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]":{"__typename":"Article","promotionalHeadline":"Trump Treasury Chief Considers $100 Billion Tax Cut for Wealthy","promotionalSummary":"A proposal under consideration at the Treasury Department would bypass Congress and use federal regulation to index capital gains for inflation, a $100 billion boost for high earners.","headline":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]","typename":"CreativeWorkHeadline"},"summary":"A proposal under consideration at the Treasury Department would bypass Congress and use federal regulation to index capital gains for inflation, a $100 billion boost for high earners.","section":{"type":"id","generated":false,"id":"Section:U2VjdGlvbjpueXQ6Ly9zZWN0aW9uL2EzNGQzZDZjLWM3N2YtNTkzMS1iOTUxLTI0MWI0ZTI4NjgxYw==","typename":"Section"},"url":"https:\u002F\u002Fwww.nytimes.com\u002F2018\u002F07\u002F30\u002Fus\u002Fpolitics\u002Ftrump-tax-cuts-rich.html","firstPublished":"2018-07-30T20:33:59.000Z","promotionalMedia":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]","typename":"Image"},"bylines":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]","typename":"Byline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]":{"default":"Trump Administration Mulls a Unilateral Tax Cut for the Rich","__typename":"CreativeWorkHeadline"},"Section:U2VjdGlvbjpueXQ6Ly9zZWN0aW9uL2EzNGQzZDZjLWM3N2YtNTkzMS1iOTUxLTI0MWI0ZTI4NjgxYw==":{"id":"U2VjdGlvbjpueXQ6Ly9zZWN0aW9uL2EzNGQzZDZjLWM3N2YtNTkzMS1iOTUxLTI0MWI0ZTI4NjgxYw==","displayName":"U.S.","__typename":"Section"},"ImageRendition:images20180731us31dc-tax-print31dc-TAX-alpha-videoLarge.jpg":{"url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F07\u002F31\u002Fus\u002F31dc-tax-print\u002F31dc-TAX-alpha-videoLarge.jpg","name":"videoLarge","__typename":"ImageRendition"},"ImageRendition:images20180731us31dc-tax-print31dc-TAX-alpha-mediumThreeByTwo440.jpg":{"url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F07\u002F31\u002Fus\u002F31dc-tax-print\u002F31dc-TAX-alpha-mediumThreeByTwo440.jpg","name":"mediumThreeByTwo440","__typename":"ImageRendition"},"ImageRendition:images20180731us31dc-tax-print31dc-TAX-alpha-threeByTwoSmallAt2X.jpg":{"url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F07\u002F31\u002Fus\u002F31dc-tax-print\u002F31dc-TAX-alpha-threeByTwoSmallAt2X.jpg","name":"threeByTwoSmallAt2X","__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]({\"renditionNames\":[\"threeByTwoSmallAt2X\",\"videoLarge\",\"mediumThreeByTwo440\"]}).0":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180731us31dc-tax-print31dc-TAX-alpha-videoLarge.jpg","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180731us31dc-tax-print31dc-TAX-alpha-mediumThreeByTwo440.jpg","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180731us31dc-tax-print31dc-TAX-alpha-threeByTwoSmallAt2X.jpg","typename":"ImageRendition"}],"__typename":"ImageCrop"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]":{"crops({\"renditionNames\":[\"threeByTwoSmallAt2X\",\"videoLarge\",\"mediumThreeByTwo440\"]})":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]({\"renditionNames\":[\"threeByTwoSmallAt2X\",\"videoLarge\",\"mediumThreeByTwo440\"]}).0","typename":"ImageCrop"}],"__typename":"Image"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]":{"displayName":"Alan Rappeport","__typename":"Person"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]":{"displayName":"Jim Tankersley","__typename":"Person"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]":{"creators":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]","typename":"Person"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]","typename":"Person"}],"__typename":"Byline"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]":{"__typename":"Article","promotionalHeadline":"Trump Tax Cut Is Pushing the Federal Deficit to $1 Trillion","promotionalSummary":"The amount of corporate taxes collected by the federal government has plunged to historically low levels, pushing up the federal budget deficit much faster than economists had predicted.","headline":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]","typename":"CreativeWorkHeadline"},"summary":"Corporate income tax collections are near a 75-year low, as a share of the economy, after a new law reduced rates and allowed companies to deduct investments immediately. ","section":{"type":"id","generated":false,"id":"Section:U2VjdGlvbjpueXQ6Ly9zZWN0aW9uLzA0MTViMmIwLTUxM2EtNWU3OC04MGRhLTIxYWI3NzBjYjc1Mw==","typename":"Section"},"url":"https:\u002F\u002Fwww.nytimes.com\u002F2018\u002F07\u002F25\u002Fbusiness\u002Ftrump-corporate-tax-cut-deficit.html","firstPublished":"2018-07-25T09:00:12.000Z","promotionalMedia":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]","typename":"Image"},"bylines":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]","typename":"Byline"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]":{"default":"How the Trump Tax Cut Is Helping to Push the Federal Deficit to $1 Trillion","__typename":"CreativeWorkHeadline"},"ImageRendition:images20180721businesscorptax-75year-low-1532120471295corptax-75year-low-1532120471295-videoLarge.png":{"url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F07\u002F21\u002Fbusiness\u002Fcorptax-75year-low-1532120471295\u002Fcorptax-75year-low-1532120471295-videoLarge.png","name":"videoLarge","__typename":"ImageRendition"},"ImageRendition:images20180721businesscorptax-75year-low-1532120471295corptax-75year-low-1532120471295-mediumThreeByTwo440.png":{"url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F07\u002F21\u002Fbusiness\u002Fcorptax-75year-low-1532120471295\u002Fcorptax-75year-low-1532120471295-mediumThreeByTwo440.png","name":"mediumThreeByTwo440","__typename":"ImageRendition"},"ImageRendition:images20180721businesscorptax-75year-low-1532120471295corptax-75year-low-1532120471295-threeByTwoSmallAt2X.png":{"url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F07\u002F21\u002Fbusiness\u002Fcorptax-75year-low-1532120471295\u002Fcorptax-75year-low-1532120471295-threeByTwoSmallAt2X.png","name":"threeByTwoSmallAt2X","__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]({\"renditionNames\":[\"threeByTwoSmallAt2X\",\"videoLarge\",\"mediumThreeByTwo440\"]}).0":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180721businesscorptax-75year-low-1532120471295corptax-75year-low-1532120471295-videoLarge.png","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180721businesscorptax-75year-low-1532120471295corptax-75year-low-1532120471295-mediumThreeByTwo440.png","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180721businesscorptax-75year-low-1532120471295corptax-75year-low-1532120471295-threeByTwoSmallAt2X.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]":{"crops({\"renditionNames\":[\"threeByTwoSmallAt2X\",\"videoLarge\",\"mediumThreeByTwo440\"]})":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]({\"renditionNames\":[\"threeByTwoSmallAt2X\",\"videoLarge\",\"mediumThreeByTwo440\"]}).0","typename":"ImageCrop"}],"__typename":"Image"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]":{"displayName":"Jim Tankersley","__typename":"Person"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]":{"creators":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@[email protected]","typename":"Person"}],"__typename":"Byline"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.45.content.0":{"__typename":"TextInline","text":"The U.S. hasn’t faced this issue for years","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.46.content.0":{"__typename":"TextInline","text":"Until recently, ultralow interest rates, set by the Federal Reserve to support the economy, allowed lawmakers to borrow without fretting too much about the cost of that debt. ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.48.content.0":{"__typename":"TextInline","text":"But as the economy has strengthened, the Fed has gradually raised rates, starting in December 2015. The central bank is expected to push rates up again on Wednesday, and more increases are in store.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.50.content.0":{"__typename":"TextInline","text":"“When rates went down to record lows, it allowed the government to take on more debt without paying more interest,” Mr. Goldwein said. “That party is ending.”","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media":{"__typename":"EmbeddedInteractive","slug":"10-year-treasury-note","html":"\n\u003C!-- Generated by ai2html v0.74.0 - 2018-09-25 16:50 --\u003E\n\u003C!-- ai file: 0916 biz web DEBT CHART 5.ai --\u003E\n\u003C!-- preview: 2018-09-14-10-year-treasury-note --\u003E\n\u003C!-- scoop: 10-year-treasury-note --\u003E\n\u003Cstyle type='text\u002Fcss' media='screen,print'\u003E\n\t#g-0916-biz-web-DEBT-CHART-5-box .g-artboard {\n\t\tmargin:0 auto;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-5-box .g-artboard p {\n\t\tmargin:0;\n\t}\n\t.g-aiAbs {\n\t\tposition:absolute;\n\t}\n\t.g-aiImg {\n\t\tdisplay:block;\n\t\twidth:100% !important;\n\t}\n\t.g-aiSymbol {\n\t\tposition: absolute;\n\t\tbox-sizing: border-box;\n\t}\n\t.g-aiPointText p { white-space: nowrap; }\n\t#g-0916-biz-web-DEBT-CHART-5-Artboard_2 {\n\t\tposition:relative;\n\t\toverflow:hidden;\n\t\twidth:600px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-5-Artboard_2 p {\n\t\tfont-family:nyt-franklin,arial,helvetica,sans-serif;\n\t\tfont-weight:500;\n\t\tfont-size:13px;\n\t\tline-height:18px;\n\t\theight:auto;\n\t\tfilter:alpha(opacity=100);\n\t\t-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n\t\topacity:1;\n\t\tletter-spacing:0em;\n\t\ttext-align:left;\n\t\tcolor:rgb(51,51,51);\n\t\ttext-transform:none;\n\t\tpadding-bottom:0;\n\t\tpadding-top:0;\n\t\tmix-blend-mode:normal;\n\t\tfont-style:normal;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-5-Artboard_2 .g-pstyle0 {\n\t\tfont-weight:700;\n\t\theight:18px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-5-Artboard_2 .g-pstyle1 {\n\t\theight:18px;\n\t\ttext-align:right;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-5-Artboard_2 .g-pstyle2 {\n\t\theight:18px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-5-Artboard_2 .g-pstyle3 {\n\t\tfont-size:11px;\n\t\theight:18px;\n\t\ttext-align:right;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-5-Artboard_2 .g-pstyle4 {\n\t\tfont-size:11px;\n\t\theight:18px;\n\t\ttext-align:center;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-5-Artboard_3 {\n\t\tposition:relative;\n\t\toverflow:hidden;\n\t\twidth:300px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-5-Artboard_3 p {\n\t\tfont-family:nyt-franklin,arial,helvetica,sans-serif;\n\t\tfont-weight:700;\n\t\tfont-size:13px;\n\t\tline-height:18px;\n\t\theight:auto;\n\t\tfilter:alpha(opacity=100);\n\t\t-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n\t\topacity:1;\n\t\tletter-spacing:0em;\n\t\ttext-align:left;\n\t\tcolor:rgb(51,51,51);\n\t\ttext-transform:none;\n\t\tpadding-bottom:0;\n\t\tpadding-top:0;\n\t\tmix-blend-mode:normal;\n\t\tfont-style:normal;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-5-Artboard_3 .g-pstyle0 {\n\t\theight:18px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-5-Artboard_3 .g-pstyle1 {\n\t\tfont-weight:500;\n\t\theight:18px;\n\t\ttext-align:right;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-5-Artboard_3 .g-pstyle2 {\n\t\tfont-weight:500;\n\t\theight:18px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-5-Artboard_3 .g-pstyle3 {\n\t\tfont-weight:500;\n\t\tfont-size:11px;\n\t\theight:18px;\n\t\ttext-align:right;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-5-Artboard_3 .g-pstyle4 {\n\t\tfont-weight:500;\n\t\tfont-size:11px;\n\t\theight:18px;\n\t\ttext-align:center;\n\t}\n\n\u003C\u002Fstyle\u003E\n\n\u003Cdiv id=\"g-0916-biz-web-DEBT-CHART-5-box\" class=\"ai2html ai2html-box-v5\"\u003E\n\n\t\u003C!-- Artboard: Artboard_2 --\u003E\n\t\u003Cdiv id=\"g-0916-biz-web-DEBT-CHART-5-Artboard_2\" class=\"g-artboard\" data-aspect-ratio=\"1.382\" data-min-width=\"600\"\u003E\n\t\t\u003Cimg id=\"g-0916-biz-web-DEBT-CHART-5-Artboard_2-img\" class=\"g-aiImg\" data-src=\"https:\u002F\u002Fstatic01.nyt.com\u002Fnewsgraphics\u002F2018\u002F09\u002F14\u002F10-year-treasury-note\u002Fe6a342acf0db9b8a88e9ae36f0db5438e5e5124f\u002F0916-biz-web-DEBT-CHART-5-Artboard_2.png\" src=\"data:image\u002Fgif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==\"\u002F\u003E\n\t\t\u003Cdiv id=\"g-ai0-1\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:4.4262%;margin-top:-9.2px;left:0.0644%;width:196px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle0\"\u003EYield on 10-year Treasury note\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-2\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.5016%;margin-top:-9.2px;right:95.0669%;width:29px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E8\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-3\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.5016%;margin-top:-9.2px;left:5.4133%;width:33px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E%\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-4\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.7232%;margin-top:-9.2px;right:0.1584%;width:70px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle3\"\u003EMONTHLY\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-5\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:21.2411%;margin-top:-9.2px;left:37.9228%;margin-left:-42.5px;width:85px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003ERECESSIONS\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-6\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:28.6213%;margin-top:-9.2px;right:95.0669%;width:29px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E6\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-7\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:47.5106%;margin-top:-9.2px;right:95.0669%;width:29px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E4\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-8\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:66.6304%;margin-top:-9.2px;right:95.0669%;width:29px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E2\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-9\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:85.7502%;margin-top:-9.2px;right:95.0669%;width:29px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E0\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-10\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:7.6353%;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E&rsquo;98\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-11\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:16.3776%;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E&rsquo;00\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-12\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:25.1199%;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E&rsquo;02\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-13\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:33.8621%;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E&rsquo;04\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-14\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:42.6044%;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E&rsquo;06\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-15\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:51.3468%;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E&rsquo;08\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-16\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:60.0889%;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E&rsquo;10\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-17\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:68.8313%;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E&rsquo;12\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-18\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:77.5735%;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E&rsquo;14\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-19\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:86.3158%;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E&rsquo;16\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-20\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:95.058%;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E&rsquo;18\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\u003C\u002Fdiv\u003E\n\n\t\u003C!-- Artboard: Artboard_3 --\u003E\n\t\u003Cdiv id=\"g-0916-biz-web-DEBT-CHART-5-Artboard_3\" class=\"g-artboard\" data-aspect-ratio=\"0.691\" data-min-width=\"300\" data-max-width=\"599\"\u003E\n\t\t\u003Cimg id=\"g-0916-biz-web-DEBT-CHART-5-Artboard_3-img\" class=\"g-aiImg\" data-src=\"https:\u002F\u002Fstatic01.nyt.com\u002Fnewsgraphics\u002F2018\u002F09\u002F14\u002F10-year-treasury-note\u002Fe6a342acf0db9b8a88e9ae36f0db5438e5e5124f\u002F0916-biz-web-DEBT-CHART-5-Artboard_3.png\" src=\"data:image\u002Fgif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==\"\u002F\u003E\n\t\t\u003Cdiv id=\"g-ai1-1\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:4.4262%;margin-top:-9.2px;left:0.2844%;width:196px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle0\"\u003EYield on 10-year Treasury note\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-2\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.5016%;margin-top:-9.2px;right:90.2934%;width:29px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E8\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-3\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.5016%;margin-top:-9.2px;left:10.2054%;width:33px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E%\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-4\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.7232%;margin-top:-9.2px;right:6.6448%;width:70px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle3\"\u003EMONTHLY\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-5\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:21.2411%;margin-top:-9.2px;left:38.8379%;margin-left:-42.5px;width:85px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003ERECESSIONS\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-6\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:28.6214%;margin-top:-9.2px;right:90.2934%;width:29px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E6\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-7\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:47.5107%;margin-top:-9.2px;right:90.2934%;width:29px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E4\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-8\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:66.6305%;margin-top:-9.2px;right:90.2934%;width:29px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E2\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-9\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:85.7502%;margin-top:-9.2px;right:90.2934%;width:29px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E0\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-10\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:12.306%;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E&rsquo;98\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-11\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:27.6924%;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E&rsquo;02\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-12\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:43.0788%;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E&rsquo;06\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-13\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:58.4652%;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E&rsquo;10\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-14\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:73.8516%;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E&rsquo;14\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-15\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:89.238%;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003E&rsquo;18\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\u003C\u002Fdiv\u003E\n\n\u003C\u002Fdiv\u003E\n\n\u003Cscript type=\"text\u002Fjavascript\"\u003E\n\t(function (scriptEnvironment, nameSpace) {\n\t\t\u002F\u002F Use a sentinel class to ensure that this version of the resizer only initializes once\n\t\tif (document.documentElement.className.indexOf(nameSpace + \"resizer-v5-init\") \u003E -1) return;\n\t\tdocument.documentElement.className += \" \" + nameSpace + \"resizer-v5-init\";\n\t\t\u002F\u002F requires IE9+\n\t\tif (!(\"querySelector\" in document)) return;\n\t\tvar observer = window.IntersectionObserver ? new IntersectionObserver(onIntersectionChange, {}) : null;\n\t\tvar visibilityIndex = {}; \u002F\u002F visibility of each graphic, indexed by container id (used with InteractionObserver)\n\n\t\tupdateAllGraphics();\n\t\twindow.addEventListener('nyt:embed:load', updateAllGraphics); \u002F\u002F for nyt vi compatibility\n\t\tdocument.addEventListener(\"DOMContentLoaded\", updateAllGraphics);\n\t\twindow.addEventListener(\"resize\", throttle(updateAllGraphics, 200));\n\n\t\tfunction updateAllGraphics() {\n\t\t\tselectElements(\".ai2html-box-v5\").forEach(updateGraphic);\n\t\t\tif (scriptEnvironment == \"nyt-preview\") {\n\t\t\t\tnytOnResize();\n\t\t\t}\n\t\t}\n\n\t\tfunction updateGraphic(container) {\n\t\t\tvar artboards = selectElements(\".\" + nameSpace + \"artboard[data-min-width]\", container),\n\t\t\t\t\twidth = Math.round(container.getBoundingClientRect().width),\n\t\t\t\t\tid = container.id, \u002F\u002F assume container has an id\n\t\t\t\t\tshowImages = !observer || visibilityIndex[id] == 'visible';\n\n\t\t\t\u002F\u002F Set artboard visibility based on container width\n\t\t\tartboards.forEach(function(el) {\n\t\t\t\tvar minwidth = el.getAttribute(\"data-min-width\"),\n\t\t\t\t\t\tmaxwidth = el.getAttribute(\"data-max-width\");\n\t\t\t\tif (+minwidth \u003C= width && (+maxwidth \u003E= width || maxwidth === null)) {\n\t\t\t\t\tif (showImages) {\n\t\t\t\t\t\tselectElements(\".\" + nameSpace + \"aiImg\", el).forEach(updateImgSrc);\n\t\t\t\t\t}\n\t\t\t\t\tel.style.display = \"block\";\n\t\t\t\t} else {\n\t\t\t\t\tel.style.display = \"none\";\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t\u002F\u002F Initialize lazy loading on first call, if IntersectionObserver is available\n\t\t\tif (observer && !visibilityIndex[id]) {\n\t\t\t\tif (containerIsVisible(container)) {\n\t\t\t\t\t\u002F\u002F Skip IntersectionObserver if graphic is initially visible\n\t\t\t\t\t\u002F\u002F Note: We're doing this after artboard visibility is first calculated\n\t\t\t\t\t\u002F\u002F\t (above) -- otherwise all artboard images are display:block and the\n\t\t\t\t\t\u002F\u002F\t calculated height of the graphic is huge.\n\t\t\t\t\t\u002F\u002F TODO: Consider making artboard images position:absolute and setting\n\t\t\t\t\t\u002F\u002F\t height as a padding % (calculated from the aspect ratio of the graphic).\n\t\t\t\t\t\u002F\u002F\t This will correctly set the initial height of the graphic before\n\t\t\t\t\t\u002F\u002F\t an image is loaded.\n\t\t\t\t\tvisibilityIndex[id] = 'visible';\n\t\t\t\t\tupdateGraphic(container); \u002F\u002F Call again to start loading right away\n\t\t\t\t} else {\n\t\t\t\t\tvisibilityIndex[id] = 'hidden';\n\t\t\t\t\tobserver.observe(container);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfunction containerIsVisible(container) {\n\t\t\tvar bounds = container.getBoundingClientRect();\n\t\t\treturn bounds.top \u003C window.innerHeight && bounds.bottom \u003E 0;\n\t\t}\n\n\t\t\u002F\u002F Replace blank placeholder image with actual image\n\t\t\u002F\u002F (only relevant if use_lazy_loader option is true)\n\t\tfunction updateImgSrc(img) {\n\t\t\tvar src = img.getAttribute(\"data-src\");\n\t\t\tif (src && img.getAttribute(\"src\") != src) {\n\t\t\t\timg.setAttribute(\"src\", src);\n\t\t\t}\n\t\t}\n\n\t\tfunction onIntersectionChange(entries) {\n\t\t\tentries.forEach(function(entry) {\n\t\t\t\tif (entry.isIntersecting) {\n\t\t\t\t\tvisibilityIndex[entry.target.id] = 'visible';\n\t\t\t\t\tobserver.unobserve(entry.target);\n\t\t\t\t\tupdateGraphic(entry.target);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tfunction selectElements(selector, parent) {\n\t\t\tvar selection = (parent || document).querySelectorAll(selector);\n\t\t\treturn Array.prototype.slice.call(selection);\n\t\t}\n\n\t\tfunction nytOnResize() {\n\t\t\t\u002F\u002F TODO: add comments\n\t\t\ttry {\n\t\t\t\tif (window.parent && window.parent.$) {\n\t\t\t\t\twindow.parent.$(\"body\").trigger(\"resizedcontent\", [window]);\n\t\t\t\t}\n\t\t\t\tdocument.documentElement.dispatchEvent(new Event(\"resizedcontent\"));\n\t\t\t\tif (window.require && document.querySelector(\"meta[name=sourceApp]\") && document.querySelector(\"meta[name=sourceApp]\").content == \"nyt-v5\") {\n\t\t\t\t\trequire([\"foundation\u002Fmain\"], function() {\n\t\t\t\t\t\trequire([\"shared\u002Finteractive\u002Finstances\u002Fapp-communicator\"], function(AppCommunicator) {\n\t\t\t\t\t\t\tAppCommunicator.triggerResize();\n\t\t\t\t\t\t});\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t} catch(e) { console.log(e); }\n\t\t}\n\n\t\t\u002F\u002F based on underscore.js\n\t\tfunction throttle(func, wait) {\n\t\t\tvar _now = Date.now || function() { return +new Date(); },\n\t\t\t\t\ttimeout = null, previous = 0;\n\t\t\tvar run = function() {\n\t\t\t\t\tprevious = _now();\n\t\t\t\t\ttimeout = null;\n\t\t\t\t\tfunc();\n\t\t\t};\n\t\t\treturn function() {\n\t\t\t\tvar remaining = wait - (_now() - previous);\n\t\t\t\tif (remaining \u003C= 0 || remaining \u003E wait) {\n\t\t\t\t\tif (timeout) {\n\t\t\t\t\t\tclearTimeout(timeout);\n\t\t\t\t\t}\n\t\t\t\t\trun();\n\t\t\t\t} else if (!timeout) {\n\t\t\t\t\ttimeout = setTimeout(run, remaining);\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t})(\"nyt-preview\", \"g-\");\n\u003C\u002Fscript\u003E\n\u003C!-- End ai2html - 2018-09-25 16:50 --\u003E\n\u003C!-- Pipeline: 2018-09-14-10-year-treasury-note | September 25, 2018, 04:51PM | e6a342acf0db9b8a88e9ae36f0db5438e5e5124f --\u003E\n","compatibility":"INLINE","headline":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.headline","typename":"CreativeWorkHeadline"},"advertisingProperties":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.advertisingProperties","typename":"CreativeWorkAdvertisingProperties"},"displayProperties":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.displayProperties","typename":"CreativeWorkDisplayProperties"},"bylines":[],"sourceId":"100000006106857","credit":"By The New York Times | Source: Reuters","leadin":"After bottoming out below 2 percent, the yield on the 10-year Treasury note has climbed to over 3 percent recently.","note":"","dataSource":"","uri":"nyt:\u002F\u002Fembeddedinteractive\u002F943e4e1b-3e67-58d9-ba03-dc74c18e6a8c","promotionalMedia":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.promotionalMedia","typename":"Image"}},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.headline":{"default":"10-Year Treasury Note","__typename":"CreativeWorkHeadline"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.advertisingProperties":{"sensitivity":"SHOW_ADS","__typename":"CreativeWorkAdvertisingProperties"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.displayProperties":{"displayForPromotionOnly":true,"maximumWidth":600,"minimumWidth":300,"__typename":"CreativeWorkDisplayProperties"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.promotionalMedia":{"__typename":"Image","caption":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.promotionalMedia.caption","typename":"TextOnlyDocumentBlock"},"crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]})":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).0","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).1","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).2","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).3","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).4","typename":"ImageCrop"}],"promotionalMedia":null},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.promotionalMedia.caption":{"text@stripHtml":"","__typename":"TextOnlyDocumentBlock"},"ImageRendition:images20180914business10-year-treasury-note-153694900538810-year-treasury-note-1536949005388-articleLarge.png":{"name":"articleLarge","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002F10-year-treasury-note-1536949005388\u002F10-year-treasury-note-1536949005388-articleLarge.png","width":600,"height":434,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).0":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914business10-year-treasury-note-153694900538810-year-treasury-note-1536949005388-articleLarge.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914business10-year-treasury-note-153694900538810-year-treasury-note-1536949005388-thumbLarge.png":{"name":"thumbLarge","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002F10-year-treasury-note-1536949005388\u002F10-year-treasury-note-1536949005388-thumbLarge.png","width":150,"height":150,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).1":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914business10-year-treasury-note-153694900538810-year-treasury-note-1536949005388-thumbLarge.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914business10-year-treasury-note-153694900538810-year-treasury-note-1536949005388-square640.png":{"name":"square640","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002F10-year-treasury-note-1536949005388\u002F10-year-treasury-note-1536949005388-square640.png","width":640,"height":640,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).2":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914business10-year-treasury-note-153694900538810-year-treasury-note-1536949005388-square640.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914business10-year-treasury-note-153694900538810-year-treasury-note-1536949005388-largeHorizontalJumbo.png":{"name":"largeHorizontalJumbo","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002F10-year-treasury-note-1536949005388\u002F10-year-treasury-note-1536949005388-largeHorizontalJumbo.png","width":1024,"height":683,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).3":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914business10-year-treasury-note-153694900538810-year-treasury-note-1536949005388-largeHorizontalJumbo.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914business10-year-treasury-note-153694900538810-year-treasury-note-1536949005388-videoLarge.png":{"name":"videoLarge","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002F10-year-treasury-note-1536949005388\u002F10-year-treasury-note-1536949005388-videoLarge.png","width":768,"height":507,"__typename":"ImageRendition"},"ImageRendition:images20180914business10-year-treasury-note-153694900538810-year-treasury-note-1536949005388-threeByTwoLargeAt2X.png":{"name":"threeByTwoLargeAt2X","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002F10-year-treasury-note-1536949005388\u002F10-year-treasury-note-1536949005388-threeByTwoLargeAt2X.png","width":1024,"height":683,"__typename":"ImageRendition"},"ImageRendition:images20180914business10-year-treasury-note-153694900538810-year-treasury-note-1536949005388-threeByTwoMediumAt2X.png":{"name":"threeByTwoMediumAt2X","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002F10-year-treasury-note-1536949005388\u002F10-year-treasury-note-1536949005388-threeByTwoMediumAt2X.png","width":1024,"height":683,"__typename":"ImageRendition"},"ImageRendition:images20180914business10-year-treasury-note-153694900538810-year-treasury-note-1536949005388-threeByTwoSmallAt2X.png":{"name":"threeByTwoSmallAt2X","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002F10-year-treasury-note-1536949005388\u002F10-year-treasury-note-1536949005388-threeByTwoSmallAt2X.png","width":600,"height":400,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.52.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).4":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914business10-year-treasury-note-153694900538810-year-treasury-note-1536949005388-videoLarge.png","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180914business10-year-treasury-note-153694900538810-year-treasury-note-1536949005388-threeByTwoLargeAt2X.png","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180914business10-year-treasury-note-153694900538810-year-treasury-note-1536949005388-threeByTwoMediumAt2X.png","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180914business10-year-treasury-note-153694900538810-year-treasury-note-1536949005388-threeByTwoSmallAt2X.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.53.content.0":{"__typename":"TextInline","text":"Since the beginning of the year, the yield on the 10-year Treasury note has risen by more than half a percentage point, to ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.53.content.1":{"__typename":"TextInline","text":"3.1 percent","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.53.content.2":{"__typename":"TextInline","text":". The Congressional Budget Office estimates that the yield will climb to 4.2 percent in 2021. Given that the total public debt of the United States stands at nearly $16 trillion, even a small uptick in rates can cost the government billions.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.55.content.0":{"__typename":"TextInline","text":"There’s no guarantee that these forecasts will prove accurate. If the economy weakens, rates might fall or rise only slightly, reducing interest payments. But rates could also overshoot the budget office forecast.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.57.content.0":{"__typename":"TextInline","text":"Some members of Congress want to set the stage for even more red ink. Republicans in the House want to make last year’s tax cuts permanent, instead of letting some of them expire at the end of 2025. That would reduce federal revenue by an additional $631 billion ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.57.content.1":{"__typename":"TextInline","text":"over 10 year","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.57.content.2":{"__typename":"TextInline","text":"s, according to the ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.57.content.3":{"__typename":"TextInline","text":"Tax Policy Center","formats":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.57.content.3.formats.0","typename":"LinkFormat"}]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.57.content.3.formats.0":{"__typename":"LinkFormat","url":"https:\u002F\u002Fwww.taxpolicycenter.org\u002Fpublications\u002Fanalysis-protecting-family-and-small-business-tax-cuts-act-2018","title":""},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.57.content.4":{"__typename":"TextInline","text":".","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.59.content.0":{"__typename":"TextInline","text":"No, the United States isn’t at risk of becoming the next Greece","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media":{"__typename":"EmbeddedInteractive","slug":"dollar-index","html":"\n\u003C!-- Generated by ai2html v0.74.0 - 2018-09-21 18:43 --\u003E\n\u003C!-- ai file: 0916 biz web DEBT CHART 4.ai --\u003E\n\u003C!-- preview: 2018-09-14-dollar-index --\u003E\n\u003C!-- scoop: dollar-index --\u003E\n\u003Cstyle type='text\u002Fcss' media='screen,print'\u003E\n\t#g-0916-biz-web-DEBT-CHART-4-box .g-artboard {\n\t\tmargin:0 auto;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-4-box .g-artboard p {\n\t\tmargin:0;\n\t}\n\t.g-aiAbs {\n\t\tposition:absolute;\n\t}\n\t.g-aiImg {\n\t\tdisplay:block;\n\t\twidth:100% !important;\n\t}\n\t.g-aiSymbol {\n\t\tposition: absolute;\n\t\tbox-sizing: border-box;\n\t}\n\t.g-aiPointText p { white-space: nowrap; }\n\t#g-0916-biz-web-DEBT-CHART-4-Artboard_2 {\n\t\tposition:relative;\n\t\toverflow:hidden;\n\t\twidth:600px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-4-Artboard_2 p {\n\t\tfont-family:nyt-franklin,arial,helvetica,sans-serif;\n\t\tfont-weight:500;\n\t\tfont-size:13px;\n\t\tline-height:18px;\n\t\theight:auto;\n\t\tfilter:alpha(opacity=100);\n\t\t-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n\t\topacity:1;\n\t\tletter-spacing:0em;\n\t\ttext-align:left;\n\t\tcolor:rgb(51,51,51);\n\t\ttext-transform:none;\n\t\tpadding-bottom:0;\n\t\tpadding-top:0;\n\t\tmix-blend-mode:normal;\n\t\tfont-style:normal;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-4-Artboard_2 .g-pstyle0 {\n\t\tfont-weight:700;\n\t\theight:18px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-4-Artboard_2 .g-pstyle1 {\n\t\theight:18px;\n\t\ttext-align:right;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-4-Artboard_2 .g-pstyle2 {\n\t\tfont-size:11px;\n\t\theight:18px;\n\t\ttext-align:right;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-4-Artboard_2 .g-pstyle3 {\n\t\tfont-size:11px;\n\t\theight:18px;\n\t\ttext-align:center;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-4-Artboard_2 .g-pstyle4 {\n\t\theight:18px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-4-Artboard_3 {\n\t\tposition:relative;\n\t\toverflow:hidden;\n\t\twidth:300px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-4-Artboard_3 p {\n\t\tfont-family:nyt-franklin,arial,helvetica,sans-serif;\n\t\tfont-weight:500;\n\t\tfont-size:13px;\n\t\tline-height:18px;\n\t\theight:auto;\n\t\tfilter:alpha(opacity=100);\n\t\t-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n\t\topacity:1;\n\t\tletter-spacing:0em;\n\t\ttext-align:left;\n\t\tcolor:rgb(51,51,51);\n\t\ttext-transform:none;\n\t\tpadding-bottom:0;\n\t\tpadding-top:0;\n\t\tmix-blend-mode:normal;\n\t\tfont-style:normal;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-4-Artboard_3 .g-pstyle0 {\n\t\tfont-weight:700;\n\t\theight:18px;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-4-Artboard_3 .g-pstyle1 {\n\t\theight:18px;\n\t\ttext-align:right;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-4-Artboard_3 .g-pstyle2 {\n\t\tfont-size:11px;\n\t\theight:18px;\n\t\ttext-align:right;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-4-Artboard_3 .g-pstyle3 {\n\t\tfont-size:11px;\n\t\theight:18px;\n\t\ttext-align:center;\n\t}\n\t#g-0916-biz-web-DEBT-CHART-4-Artboard_3 .g-pstyle4 {\n\t\theight:18px;\n\t}\n\n\u003C\u002Fstyle\u003E\n\n\u003Cdiv id=\"g-0916-biz-web-DEBT-CHART-4-box\" class=\"ai2html ai2html-box-v5\"\u003E\n\n\t\u003C!-- Artboard: Artboard_2 --\u003E\n\t\u003Cdiv id=\"g-0916-biz-web-DEBT-CHART-4-Artboard_2\" class=\"g-artboard\" data-aspect-ratio=\"1.382\" data-min-width=\"600\"\u003E\n\t\t\u003Cimg id=\"g-0916-biz-web-DEBT-CHART-4-Artboard_2-img\" class=\"g-aiImg\" data-src=\"https:\u002F\u002Fstatic01.nyt.com\u002Fnewsgraphics\u002F2018\u002F09\u002F14\u002Fdollar-index\u002F3753490c8fd0afa3e42df37d132f5c87da5e1c36\u002F0916-biz-web-DEBT-CHART-4-Artboard_2.png\" src=\"data:image\u002Fgif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==\"\u002F\u003E\n\t\t\u003Cdiv id=\"g-ai0-1\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:4.4262%;margin-top:-9.2px;left:0.0838%;width:117px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle0\"\u003EU.S. Dollar index\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-2\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.5016%;margin-top:-9.2px;right:95.0369%;width:44px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E140\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-3\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.7232%;margin-top:-9.2px;right:0.1584%;width:70px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003EMONTHLY\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-4\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:21.2411%;margin-top:-9.2px;left:37.9228%;margin-left:-42.5px;width:85px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle3\"\u003ERECESSIONS\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-5\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:28.6213%;margin-top:-9.2px;right:95.0369%;width:44px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E120\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-6\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:47.5106%;margin-top:-9.2px;right:95.0369%;width:44px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E100\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-7\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:66.6304%;margin-top:-9.2px;right:94.9686%;width:37px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E80\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-8\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:85.7502%;margin-top:-9.2px;right:94.9686%;width:37px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E60\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-9\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:7.6353%;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;98\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-10\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:16.3776%;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;00\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-11\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:25.1199%;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;02\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-12\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:33.8621%;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;04\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-13\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:42.6044%;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;06\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-14\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:51.3468%;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;08\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-15\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:60.0889%;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;10\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-16\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:68.8313%;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;12\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-17\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:77.5735%;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;14\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-18\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:86.3158%;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;16\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai0-19\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:95.058%;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;18\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\u003C\u002Fdiv\u003E\n\n\t\u003C!-- Artboard: Artboard_3 --\u003E\n\t\u003Cdiv id=\"g-0916-biz-web-DEBT-CHART-4-Artboard_3\" class=\"g-artboard\" data-aspect-ratio=\"0.691\" data-min-width=\"300\" data-max-width=\"599\"\u003E\n\t\t\u003Cimg id=\"g-0916-biz-web-DEBT-CHART-4-Artboard_3-img\" class=\"g-aiImg\" data-src=\"https:\u002F\u002Fstatic01.nyt.com\u002Fnewsgraphics\u002F2018\u002F09\u002F14\u002Fdollar-index\u002F3753490c8fd0afa3e42df37d132f5c87da5e1c36\u002F0916-biz-web-DEBT-CHART-4-Artboard_3.png\" src=\"data:image\u002Fgif;base64,R0lGODlhCgAKAIAAAB8fHwAAACH5BAEAAAAALAAAAAAKAAoAAAIIhI+py+0PYysAOw==\"\u002F\u003E\n\t\t\u003Cdiv id=\"g-ai1-1\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:4.4262%;margin-top:-9.2px;left:0.2844%;width:117px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle0\"\u003EU.S. Dollar index\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-2\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.5016%;margin-top:-9.2px;right:90.2334%;width:44px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E140\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-3\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:9.7232%;margin-top:-9.2px;right:6.6448%;width:70px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle2\"\u003EMONTHLY\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-4\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:21.2411%;margin-top:-9.2px;left:38.8379%;margin-left:-42.5px;width:85px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle3\"\u003ERECESSIONS\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-5\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:28.6214%;margin-top:-9.2px;right:90.2334%;width:44px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E120\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-6\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:47.5107%;margin-top:-9.2px;right:90.2334%;width:44px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E100\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-7\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:66.6305%;margin-top:-9.2px;right:90.0968%;width:37px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E80\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-8\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:85.7502%;margin-top:-9.2px;right:90.0968%;width:37px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle1\"\u003E60\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-9\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:12.306%;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;98\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-10\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:27.6924%;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;02\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-11\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:43.0788%;width:40px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;06\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-12\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:58.4652%;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;10\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-13\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:73.8516%;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;14\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\t\u003Cdiv id=\"g-ai1-14\" class=\"g-Layer_1 g-aiAbs g-aiPointText\" style=\"top:91.0485%;margin-top:-9.2px;left:89.238%;width:39px;\"\u003E\n\t\t\t\u003Cp class=\"g-pstyle4\"\u003E&rsquo;18\u003C\u002Fp\u003E\n\t\t\u003C\u002Fdiv\u003E\n\t\u003C\u002Fdiv\u003E\n\n\u003C\u002Fdiv\u003E\n\n\u003Cscript type=\"text\u002Fjavascript\"\u003E\n\t(function (scriptEnvironment, nameSpace) {\n\t\t\u002F\u002F Use a sentinel class to ensure that this version of the resizer only initializes once\n\t\tif (document.documentElement.className.indexOf(nameSpace + \"resizer-v5-init\") \u003E -1) return;\n\t\tdocument.documentElement.className += \" \" + nameSpace + \"resizer-v5-init\";\n\t\t\u002F\u002F requires IE9+\n\t\tif (!(\"querySelector\" in document)) return;\n\t\tvar observer = window.IntersectionObserver ? new IntersectionObserver(onIntersectionChange, {}) : null;\n\t\tvar visibilityIndex = {}; \u002F\u002F visibility of each graphic, indexed by container id (used with InteractionObserver)\n\n\t\tupdateAllGraphics();\n\t\twindow.addEventListener('nyt:embed:load', updateAllGraphics); \u002F\u002F for nyt vi compatibility\n\t\tdocument.addEventListener(\"DOMContentLoaded\", updateAllGraphics);\n\t\twindow.addEventListener(\"resize\", throttle(updateAllGraphics, 200));\n\n\t\tfunction updateAllGraphics() {\n\t\t\tselectElements(\".ai2html-box-v5\").forEach(updateGraphic);\n\t\t\tif (scriptEnvironment == \"nyt-preview\") {\n\t\t\t\tnytOnResize();\n\t\t\t}\n\t\t}\n\n\t\tfunction updateGraphic(container) {\n\t\t\tvar artboards = selectElements(\".\" + nameSpace + \"artboard[data-min-width]\", container),\n\t\t\t\t\twidth = Math.round(container.getBoundingClientRect().width),\n\t\t\t\t\tid = container.id, \u002F\u002F assume container has an id\n\t\t\t\t\tshowImages = !observer || visibilityIndex[id] == 'visible';\n\n\t\t\t\u002F\u002F Set artboard visibility based on container width\n\t\t\tartboards.forEach(function(el) {\n\t\t\t\tvar minwidth = el.getAttribute(\"data-min-width\"),\n\t\t\t\t\t\tmaxwidth = el.getAttribute(\"data-max-width\");\n\t\t\t\tif (+minwidth \u003C= width && (+maxwidth \u003E= width || maxwidth === null)) {\n\t\t\t\t\tif (showImages) {\n\t\t\t\t\t\tselectElements(\".\" + nameSpace + \"aiImg\", el).forEach(updateImgSrc);\n\t\t\t\t\t}\n\t\t\t\t\tel.style.display = \"block\";\n\t\t\t\t} else {\n\t\t\t\t\tel.style.display = \"none\";\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t\u002F\u002F Initialize lazy loading on first call, if IntersectionObserver is available\n\t\t\tif (observer && !visibilityIndex[id]) {\n\t\t\t\tif (containerIsVisible(container)) {\n\t\t\t\t\t\u002F\u002F Skip IntersectionObserver if graphic is initially visible\n\t\t\t\t\t\u002F\u002F Note: We're doing this after artboard visibility is first calculated\n\t\t\t\t\t\u002F\u002F\t (above) -- otherwise all artboard images are display:block and the\n\t\t\t\t\t\u002F\u002F\t calculated height of the graphic is huge.\n\t\t\t\t\t\u002F\u002F TODO: Consider making artboard images position:absolute and setting\n\t\t\t\t\t\u002F\u002F\t height as a padding % (calculated from the aspect ratio of the graphic).\n\t\t\t\t\t\u002F\u002F\t This will correctly set the initial height of the graphic before\n\t\t\t\t\t\u002F\u002F\t an image is loaded.\n\t\t\t\t\tvisibilityIndex[id] = 'visible';\n\t\t\t\t\tupdateGraphic(container); \u002F\u002F Call again to start loading right away\n\t\t\t\t} else {\n\t\t\t\t\tvisibilityIndex[id] = 'hidden';\n\t\t\t\t\tobserver.observe(container);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfunction containerIsVisible(container) {\n\t\t\tvar bounds = container.getBoundingClientRect();\n\t\t\treturn bounds.top \u003C window.innerHeight && bounds.bottom \u003E 0;\n\t\t}\n\n\t\t\u002F\u002F Replace blank placeholder image with actual image\n\t\t\u002F\u002F (only relevant if use_lazy_loader option is true)\n\t\tfunction updateImgSrc(img) {\n\t\t\tvar src = img.getAttribute(\"data-src\");\n\t\t\tif (src && img.getAttribute(\"src\") != src) {\n\t\t\t\timg.setAttribute(\"src\", src);\n\t\t\t}\n\t\t}\n\n\t\tfunction onIntersectionChange(entries) {\n\t\t\tentries.forEach(function(entry) {\n\t\t\t\tif (entry.isIntersecting) {\n\t\t\t\t\tvisibilityIndex[entry.target.id] = 'visible';\n\t\t\t\t\tobserver.unobserve(entry.target);\n\t\t\t\t\tupdateGraphic(entry.target);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tfunction selectElements(selector, parent) {\n\t\t\tvar selection = (parent || document).querySelectorAll(selector);\n\t\t\treturn Array.prototype.slice.call(selection);\n\t\t}\n\n\t\tfunction nytOnResize() {\n\t\t\t\u002F\u002F TODO: add comments\n\t\t\ttry {\n\t\t\t\tif (window.parent && window.parent.$) {\n\t\t\t\t\twindow.parent.$(\"body\").trigger(\"resizedcontent\", [window]);\n\t\t\t\t}\n\t\t\t\tdocument.documentElement.dispatchEvent(new Event(\"resizedcontent\"));\n\t\t\t\tif (window.require && document.querySelector(\"meta[name=sourceApp]\") && document.querySelector(\"meta[name=sourceApp]\").content == \"nyt-v5\") {\n\t\t\t\t\trequire([\"foundation\u002Fmain\"], function() {\n\t\t\t\t\t\trequire([\"shared\u002Finteractive\u002Finstances\u002Fapp-communicator\"], function(AppCommunicator) {\n\t\t\t\t\t\t\tAppCommunicator.triggerResize();\n\t\t\t\t\t\t});\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t} catch(e) { console.log(e); }\n\t\t}\n\n\t\t\u002F\u002F based on underscore.js\n\t\tfunction throttle(func, wait) {\n\t\t\tvar _now = Date.now || function() { return +new Date(); },\n\t\t\t\t\ttimeout = null, previous = 0;\n\t\t\tvar run = function() {\n\t\t\t\t\tprevious = _now();\n\t\t\t\t\ttimeout = null;\n\t\t\t\t\tfunc();\n\t\t\t};\n\t\t\treturn function() {\n\t\t\t\tvar remaining = wait - (_now() - previous);\n\t\t\t\tif (remaining \u003C= 0 || remaining \u003E wait) {\n\t\t\t\t\tif (timeout) {\n\t\t\t\t\t\tclearTimeout(timeout);\n\t\t\t\t\t}\n\t\t\t\t\trun();\n\t\t\t\t} else if (!timeout) {\n\t\t\t\t\ttimeout = setTimeout(run, remaining);\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t})(\"nyt-preview\", \"g-\");\n\u003C\u002Fscript\u003E\n\u003C!-- End ai2html - 2018-09-21 18:43 --\u003E\n\u003C!-- Pipeline: 2018-09-14-dollar-index | September 21, 2018, 06:44PM | 3753490c8fd0afa3e42df37d132f5c87da5e1c36 --\u003E\n","compatibility":"INLINE","headline":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.headline","typename":"CreativeWorkHeadline"},"advertisingProperties":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.advertisingProperties","typename":"CreativeWorkAdvertisingProperties"},"displayProperties":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.displayProperties","typename":"CreativeWorkDisplayProperties"},"bylines":[],"sourceId":"100000006106834","credit":"By The New York Times | Source: Reuters","leadin":"The dollar has strengthened even as government borrowing has increased.","note":"","dataSource":"","uri":"nyt:\u002F\u002Fembeddedinteractive\u002Fa299a392-22c7-5402-8602-dd3919c3b661","promotionalMedia":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.promotionalMedia","typename":"Image"}},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.headline":{"default":"Dollar Index","__typename":"CreativeWorkHeadline"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.advertisingProperties":{"sensitivity":"SHOW_ADS","__typename":"CreativeWorkAdvertisingProperties"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.displayProperties":{"displayForPromotionOnly":true,"maximumWidth":600,"minimumWidth":300,"__typename":"CreativeWorkDisplayProperties"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.promotionalMedia":{"__typename":"Image","caption":{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.promotionalMedia.caption","typename":"TextOnlyDocumentBlock"},"crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]})":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).0","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).1","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).2","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).3","typename":"ImageCrop"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).4","typename":"ImageCrop"}],"promotionalMedia":null},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.promotionalMedia.caption":{"text@stripHtml":"","__typename":"TextOnlyDocumentBlock"},"ImageRendition:images20180914businessdollar-index-1536948400579dollar-index-1536948400579-articleLarge.png":{"name":"articleLarge","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fdollar-index-1536948400579\u002Fdollar-index-1536948400579-articleLarge.png","width":600,"height":434,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).0":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessdollar-index-1536948400579dollar-index-1536948400579-articleLarge.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914businessdollar-index-1536948400579dollar-index-1536948400579-thumbLarge.png":{"name":"thumbLarge","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fdollar-index-1536948400579\u002Fdollar-index-1536948400579-thumbLarge.png","width":150,"height":150,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).1":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessdollar-index-1536948400579dollar-index-1536948400579-thumbLarge.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914businessdollar-index-1536948400579dollar-index-1536948400579-square640.png":{"name":"square640","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fdollar-index-1536948400579\u002Fdollar-index-1536948400579-square640.png","width":640,"height":640,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).2":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessdollar-index-1536948400579dollar-index-1536948400579-square640.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914businessdollar-index-1536948400579dollar-index-1536948400579-largeHorizontalJumbo.png":{"name":"largeHorizontalJumbo","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fdollar-index-1536948400579\u002Fdollar-index-1536948400579-largeHorizontalJumbo.png","width":1024,"height":683,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).3":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessdollar-index-1536948400579dollar-index-1536948400579-largeHorizontalJumbo.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"ImageRendition:images20180914businessdollar-index-1536948400579dollar-index-1536948400579-videoLarge.png":{"name":"videoLarge","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fdollar-index-1536948400579\u002Fdollar-index-1536948400579-videoLarge.png","width":768,"height":507,"__typename":"ImageRendition"},"ImageRendition:images20180914businessdollar-index-1536948400579dollar-index-1536948400579-threeByTwoLargeAt2X.png":{"name":"threeByTwoLargeAt2X","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fdollar-index-1536948400579\u002Fdollar-index-1536948400579-threeByTwoLargeAt2X.png","width":1024,"height":683,"__typename":"ImageRendition"},"ImageRendition:images20180914businessdollar-index-1536948400579dollar-index-1536948400579-threeByTwoMediumAt2X.png":{"name":"threeByTwoMediumAt2X","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fdollar-index-1536948400579\u002Fdollar-index-1536948400579-threeByTwoMediumAt2X.png","width":1024,"height":683,"__typename":"ImageRendition"},"ImageRendition:images20180914businessdollar-index-1536948400579dollar-index-1536948400579-threeByTwoSmallAt2X.png":{"name":"threeByTwoSmallAt2X","url":"https:\u002F\u002Fstatic01.nyt.com\u002Fimages\u002F2018\u002F09\u002F14\u002Fbusiness\u002Fdollar-index-1536948400579\u002Fdollar-index-1536948400579-threeByTwoSmallAt2X.png","width":600,"height":400,"__typename":"ImageRendition"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.60.media.promotionalMedia.crops({\"renditionNames\":[\"threeByTwoLargeAt2X\",\"threeByTwoSmallAt2X\",\"videoLarge\",\"largeHorizontalJumbo\",\"articleLarge\",\"master1050\",\"square640\",\"thumbLarge\",\"threeByTwoSmallAt2X\",\"threeByTwoMediumAt2X\",\"threeByTwoLargeAt2X\"]}).4":{"renditions":[{"type":"id","generated":false,"id":"ImageRendition:images20180914businessdollar-index-1536948400579dollar-index-1536948400579-videoLarge.png","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180914businessdollar-index-1536948400579dollar-index-1536948400579-threeByTwoLargeAt2X.png","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180914businessdollar-index-1536948400579dollar-index-1536948400579-threeByTwoMediumAt2X.png","typename":"ImageRendition"},{"type":"id","generated":false,"id":"ImageRendition:images20180914businessdollar-index-1536948400579dollar-index-1536948400579-threeByTwoSmallAt2X.png","typename":"ImageRendition"}],"__typename":"ImageCrop"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.61.content.0":{"__typename":"TextInline","text":"Deficit hawks have warned for years that a day of reckoning is coming, exposing the United States to the kind of economic crisis that overtook profligate borrowers in the past like Greece or Argentina.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.63.content.0":{"__typename":"TextInline","text":"But most experts say that isn’t likely because the dollar is the world’s reserve currency. As a result, the United States still has plenty of borrowing capacity left because the Fed can print money with fewer consequences than other central banks. ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.65.content.0":{"__typename":"TextInline","text":"And interest rates plunged over the last decade, even as the government turned to the market for trillions each year after the recession. That’s because Treasury bonds are still the favored port of international investors in any economic storm. ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.67.content.0":{"__typename":"TextInline","text":"“We exported a financial crisis a decade ago, and the world responded by sending us money,” ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.67.content.1":{"__typename":"TextInline","text":"said","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.67.content.2":{"__typename":"TextInline","text":" William G. Gale, a senior fellow at the Brookings Institution. ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.69.content.0":{"__typename":"TextInline","text":"But that privileged position has allowed politicians in both parties to avoid politically painful steps like cutting spending or raising taxes.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.71.content.0":{"__typename":"TextInline","text":"That doesn’t mean rapidly rising interest costs and a bigger deficit won’t eventually catch up with us. ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.73.content.0":{"__typename":"TextInline","text":"Charles Schultze, chairman of the Council of Economic Advisers in the Carter administration, once summed up the danger of deficits with a metaphor. “It’s not so much a question of the wolf at the door, but termites in the woodwork.” ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.75.content.0":{"__typename":"TextInline","text":"But Washington doesn’t want to hear about the potential problems","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.76.content.0":{"__typename":"TextInline","text":"Rather than simply splitting along party lines, lawmakers’ attitudes toward the deficit also depend on which party is in power. Republicans pilloried the Obama administration for proposing a large stimulus in the depths of the recession in 2009 and complained about the deficit for years.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.78.content.0":{"__typename":"TextInline","text":"In 2013, Senator Mitch McConnell of Kentucky called the debt and deficit “the transcendent issue of our era.” By 2017, as Senate majority leader, he quickly shepherded the tax cut through Congress.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.80.content.0":{"__typename":"TextInline","text":"Senator James Lankford, an Oklahoma Republican who warned of the deficit’s dangers in the past, nevertheless played down that threat on the Senate floor as the tax billed neared passage. ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.82.content.0":{"__typename":"TextInline","text":"“I understand it’s a risk, but I think it’s an appropriate risk to be able to say let’s allow Americans to keep more of their own money to invest in this economy,” he said.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.84.content.0":{"__typename":"TextInline","text":"He also claimed the tax cuts would pay for themselves even as the Congressional Budget Office estimated that they would add $250 billion to the deficit on average from 2019 to 2024. ","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.86.content.0":{"__typename":"TextInline","text":"In an interview, Mr. Lankford insisted that the jury was still out on whether the tax cuts would generate additional revenue, citing the strong economic growth recently.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.88.content.0":{"__typename":"TextInline","text":"While the Republican about-face has been much more striking, Democrats have adjusted their position, too.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.90.content.0":{"__typename":"TextInline","text":"Mr. Warner, the Virginia Democrat, called last year’s tax bill “the worst piece of legislation we have passed since I arrived in the Senate.” In 2009, however, when Congress passed an $800 billion stimulus bill backed by the Obama administration, he called it “a responsible mix of tax cuts and investments that will create jobs.”","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.92.content.0":{"__typename":"TextInline","text":"The difference, Mr. Warner said, was that the economy was near the precipice then.","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.sprinkledBody.content@filterEmpty.93.content.0":{"__typename":"TextInline","text":"“There was virtual unanimity among economists that we needed a stimulus,” he said. “But a $2 trillion tax cut at the end of a business cycle with borrowed money won’t end well.”","formats":[]},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.legacy":{"reviewInformation":"","__typename":"ArticleLegacyData","htmlExtendedAuthorOrArticleInformation":"","htmlInfoBox":""},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.bylines.0.creators.0.contactDetails.socialMedia.0":{"type":"url","account":"https:\u002F\u002Fwww.nytimes.com\u002Fby\u002Fnelson-d-schwartz","__typename":"ContactDetailsSocialMedia"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.bylines.0.creators.0.contactDetails.socialMedia.1":{"type":"twitter","account":"NelsonSchwartz","__typename":"ContactDetailsSocialMedia"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.bylines.0.creators.0.contactDetails":{"socialMedia":[{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.bylines.0.creators.0.contactDetails.socialMedia.0","typename":"ContactDetailsSocialMedia"},{"type":"id","generated":true,"id":"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.bylines.0.creators.0.contactDetails.socialMedia.1","typename":"ContactDetailsSocialMedia"}],"__typename":"ContactDetails"},"$Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==.bylines.0.creators.0.legacyData":{"htmlShortBiography":"\u003Cp\u003ENelson D. Schwartz has covered economics since 2012. Previously, he wrote about Wall Street and banking, and also served as European economic correspondent in Paris. He joined The Times in 2007 as a feature writer for the Sunday Business section.\u003C\u002Fp\u003E","__typename":"PersonLegacyData"},"ROOT_QUERY":{"workOrLocation({\"id\":\"\u002F2018\u002F09\u002F25\u002Fbusiness\u002Feconomy\u002Fus-government-debt-interest.html\"})":{"type":"id","generated":false,"id":"Article:QXJ0aWNsZTpueXQ6Ly9hcnRpY2xlLzU1NjNiODUxLTNhOGUtNThmNy04ZjY3LTA3MTY2OThjZWJhYQ==","typename":"Article"}}},"config":{"gqlUrl":"https:\u002F\u002Fsamizdat-graphql.nytimes.com\u002Fgraphql\u002Fv2","gqlRequestHeaders":{"nyt-app-type":"project-vi","nyt-app-version":"0.0.3","nyt-token":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlYOpRoYg5X01qAqNyBDM32EI\u002FE77nkFzd2rrVjhdi\u002FVAZfBIrPayyYykIIN+d5GMImm3wg6CmTTkBo7ixmwd7Xv24QSDpjuX0gQ1eqxOEWZ0FHWZWkh4jfLcwqkgKmfHJuvOctEiE\u002FWic5Qrle323SMDKF8sAqClv8VKA8hyrXHbPDAlAaxq3EPOGjJqpHEdWNVg2S0pN62NSmSudT\u002Fap\u002FBqZf7FqsI2cUxv2mUKzmyy+rYwbhd8TRgj1kFprNOaldrluO4dXjubJIY4qEyJY5Dc\u002FF03sGED4AiGBPVYtPh8zscG64yJJ9Njs1ReyUCSX4jYmxoZOnO+6GfXE0s2xQIDAQAB","x-nyt-continent":"NA","x-nyt-country":"US","x-nyt-region":"AL","x-nyt-gmt-offset":"-600"},"gqlFetchTimeout":4000,"disablePersistedQueries":false,"serviceWorkerFile":"service-worker-test-1551225575917.js","initialDeviceType":"desktop","abraTest":{}},"ssrQuery":{},"externalAssets":[]};
        ]]>
        </script> 
        <script>
        <![CDATA[
        !function(s){function e(e){for(var t,r,d=e[0],a=e[1],c=e[2],n=0,o=[];n<d.length;n++)r=d[n],l[r]&&o.push(l[r][0]),l[r]=0;for(t in a)Object.prototype.hasOwnProperty.call(a,t)&&(s[t]=a[t]);for(p&&p(e);o.length;)o.shift()();return f.push.apply(f,c||[]),i()}function i(){for(var e,t=0;t<f.length;t++){for(var r=f[t],d=!0,a=1;a<r.length;a++){var c=r[a];0!==l[c]&&(d=!1)}d&&(f.splice(t--,1),e=u(u.s=r[0]))}return e}var r={},b={8:0},l={8:0},f=[];function u(e){if(r[e])return r[e].exports;var t=r[e]={i:e,l:!1,exports:{}};return s[e].call(t.exports,t,t.exports,u),t.l=!0,t.exports}u.e=function(f){var e=[];b[f]?e.push(b[f]):0!==b[f]&&{13:1,23:1,30:1,36:1}[f]&&e.push(b[f]=new Promise(function(e,d){for(var t=({1:"vendors~answerpage~audio~byline~collections~home~hubpage~paidpost~reviews~search~slideshow~story~tim~23412e0e",2:"answerpage~byline~collections~hubpage~reviews~search~slideshow~timeswire~trending~weddings",3:"answerpage~hubpage~search~timeswire~weddings",4:"vendors~audio~home~paidpost~story~trending",5:"vendors~audio~home~paidpost~story",6:"byline~your-list",7:"newsletter~regilite",9:"answerpage",10:"audio",11:"byline",12:"collections",13:"comments",14:"getstarted",15:"home",16:"hubpage",19:"newsletter",20:"newsletters",21:"paidpost",22:"privacy",23:"recirculation",24:"regilite",25:"reviews",26:"search",27:"slide",28:"slideshow",29:"stickyfilljs",30:"story",31:"timeswire",32:"trending",33:"vendors~collections",34:"vendors~getstarted",35:"vendors~slideshow",36:"weddings",37:"your-list"}[f]||f)+"-"+{1:"31d6cfe0d16ae931b73c",2:"31d6cfe0d16ae931b73c",3:"31d6cfe0d16ae931b73c",4:"31d6cfe0d16ae931b73c",5:"31d6cfe0d16ae931b73c",6:"31d6cfe0d16ae931b73c",7:"31d6cfe0d16ae931b73c",9:"31d6cfe0d16ae931b73c",10:"31d6cfe0d16ae931b73c",11:"31d6cfe0d16ae931b73c",12:"31d6cfe0d16ae931b73c",13:"bd0b5475a3386d2edf5e",14:"31d6cfe0d16ae931b73c",15:"31d6cfe0d16ae931b73c",16:"31d6cfe0d16ae931b73c",19:"31d6cfe0d16ae931b73c",20:"31d6cfe0d16ae931b73c",21:"31d6cfe0d16ae931b73c",22:"31d6cfe0d16ae931b73c",23:"0bf326d1cb2aaa1d6a66",24:"31d6cfe0d16ae931b73c",25:"31d6cfe0d16ae931b73c",26:"31d6cfe0d16ae931b73c",27:"31d6cfe0d16ae931b73c",28:"31d6cfe0d16ae931b73c",29:"31d6cfe0d16ae931b73c",30:"c2f71b82852b3b6d2cae",31:"31d6cfe0d16ae931b73c",32:"31d6cfe0d16ae931b73c",33:"31d6cfe0d16ae931b73c",34:"31d6cfe0d16ae931b73c",35:"31d6cfe0d16ae931b73c",36:"9e51dcb64d66fd0dcd9f",37:"31d6cfe0d16ae931b73c"}[f]+".css",a=u.p+t,r=document.getElementsByTagName("link"),c=0;c<r.length;c++){var n=(s=r[c]).getAttribute("data-href")||s.getAttribute("href");if("stylesheet"===s.rel&&(n===t||n===a))return e()}var o=document.getElementsByTagName("style");for(c=0;c<o.length;c++){var s;if((n=(s=o[c]).getAttribute("data-href"))===t||n===a)return e()}var i=document.createElement("link");i.rel="stylesheet",i.type="text/css",i.onload=e,i.onerror=function(e){var t=e&&e.target&&e.target.src||a,r=new Error("Loading CSS chunk "+f+" failed.\n("+t+")");r.request=t,delete b[f],i.parentNode.removeChild(i),d(r)},i.href=a,document.getElementsByTagName("head")[0].appendChild(i)}).then(function(){b[f]=0}));var t,r=l[f];if(0!==r)if(r)e.push(r[2]);else{var d=new Promise(function(e,t){r=l[f]=[e,t]});e.push(r[2]=d);var a,c=document.createElement("script");c.charset="utf-8",c.timeout=120,u.nc&&c.setAttribute("nonce",u.nc),c.src=u.p+""+({1:"vendors~answerpage~audio~byline~collections~home~hubpage~paidpost~reviews~search~slideshow~story~tim~23412e0e",2:"answerpage~byline~collections~hubpage~reviews~search~slideshow~timeswire~trending~weddings",3:"answerpage~hubpage~search~timeswire~weddings",4:"vendors~audio~home~paidpost~story~trending",5:"vendors~audio~home~paidpost~story",6:"byline~your-list",7:"newsletter~regilite",9:"answerpage",10:"audio",11:"byline",12:"collections",13:"comments",14:"getstarted",15:"home",16:"hubpage",19:"newsletter",20:"newsletters",21:"paidpost",22:"privacy",23:"recirculation",24:"regilite",25:"reviews",26:"search",27:"slide",28:"slideshow",29:"stickyfilljs",30:"story",31:"timeswire",32:"trending",33:"vendors~collections",34:"vendors~getstarted",35:"vendors~slideshow",36:"weddings",37:"your-list"}[t=f]||t)+"-"+{1:"cf3d06cc205cbab76cc6",2:"695085c3b95a0b3062dc",3:"adb69d32613cebdb8763",4:"ad28408ffcfe728262f1",5:"3a48a154dc74332f3715",6:"69e102137f5b3c13791a",7:"a307a6a3734818b95a52",9:"feb37a0cae78ec3454a5",10:"7ae270294dc5127a8023",11:"c531aa5897e53ad02164",12:"04354c54c976531a2493",13:"d76fdea4ac7f3b0511d9",14:"02579f11c43cc96d3245",15:"b1376dbb390dba1f45b0",16:"8df64d517b9336c5fdc7",19:"39f7c61b900c78aa1cd5",20:"a53b83e2fc69b07ba9ba",21:"e3517d4b960328561cde",22:"4ceba937c7af8d3e8bda",23:"8c9606ce1361269935b4",24:"d2117a73296a4c317a95",25:"5ebe9de932618c566453",26:"eb1fb870df308285dec7",27:"33ca9863a256583f6fc9",28:"1ed4722d7f93bda68662",29:"e6b8e69cbb7eae83c6cf",30:"001d14ee0c0d56abdf45",31:"ab6612f37b12740c1e30",32:"8b81d2cd6c2326e0c0ce",33:"aa3f1b78f44cf9b9dcac",34:"48db96f1efd43f8902d4",35:"816209e0f10fd5f52950",36:"e59145f5d6c8eb4ba02e",37:"67439e348c6138b3eb99"}[t]+".js",a=function(e){c.onerror=c.onload=null,clearTimeout(n);var t=l[f];if(0!==t){if(t){var r=e&&("load"===e.type?"missing":e.type),d=e&&e.target&&e.target.src,a=new Error("Loading chunk "+f+" failed.\n("+r+": "+d+")");a.type=r,a.request=d,t[1](a)}l[f]=void 0}};var n=setTimeout(function(){a({type:"timeout",target:c})},12e4);c.onerror=c.onload=a,document.head.appendChild(c)}return Promise.all(e)},u.m=s,u.c=r,u.d=function(e,t,r){u.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},u.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},u.t=function(t,e){if(1&e&&(t=u(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(u.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var d in t)u.d(r,d,function(e){return t[e]}.bind(null,d));return r},u.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return u.d(t,"a",t),t},u.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},u.p="/vi-assets/static-assets/",u.oe=function(e){throw console.error(e),e};var t=window.webpackJsonp=window.webpackJsonp||[],d=t.push.bind(t);t.push=e,t=t.slice();for(var a=0;a<t.length;a++)e(t[a]);var p=d;i()}([]);
        //# sourceMappingURL=runtime-868be1a9e98d7fb1c782.js.map
        ]]>
        </script> 
        <script defer="defer" src="/vi-assets/static-assets/vendor-d51751135f37523a83e1.js"></script> 
        <script defer="defer" src="/vi-assets/static-assets/main-4d98e4226a600a92612c.js"></script> 
        <script>
        <![CDATA[

        (function(w, l) {
        w[l] = w[l] || [];
        w[l].push({
        'gtm.start': new Date().getTime(),
        event: 'gtm.js'
        });
        })(window, 'dataLayer');
        (function(){
        var url = 'https://et.nytimes.com/pixel' +
        '?url=' + window.location.href +
        '&referrer=' + document.referrer +
        '&subject=module-interactions' +
        '&moduleData=%7B%22module%22%3A%22nyt-vi-page-pixel%22%2C%22pgType%22%3A%22%22%2C%22eventName%22%3A%22Impression%22%2C%22action%22%3A%22Impression%22%7D' +
        '&sourceApp=nyt-vi&instant=1' +
        '&_=' + Date.now();
        var img = document.createElement('img');
        img.src = url;
        img.style.cssText = 'position: absolute; z-index: -999999; left: -1000px; top: -1000px;';
        document.body.appendChild(img);
        })();
        ]]>
        </script> 
        <script defer="defer" src="https://www.googletagmanager.com/gtm.js?id=GTM-P528B3&amp;gtm_auth=tfAzqo1rYDLgYhmTnSjPqw&amp;gtm_preview=env-130&amp;gtm_cookies_win=x"></script> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-P528B3&amp;gtm_auth=tfAzqo1rYDLgYhmTnSjPqw&amp;gtm_preview=env-130&amp;gtm_cookies_win=x" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
        <div id="RavenInstaller">
            <script>
            <![CDATA[
            if (window.INSTALL_RAVEN) {
            window.addEventListener('load', function(event) {
            var includeRaven = document.getElementById("RavenInstaller");
            var script = document.createElement("script");
            script.src = "/vi-assets/static-assets/raven.min-830a6d04a55c283934dd1893d6ddc66d.js";
            script.onload = function() {
            /* eslint-disable */
            // Install Raven
            window.Raven.config('https://[email protected]/178860', {
            release: vi.env.RELEASE,
            environment: vi.env.ENVIRONMENT,
            ignoreErrors: [/SecurityError: Blocked a frame with origin.*/]
            }).install(); // Stop using our error handler

            window.nyt_errors.ravenInstalled = true;
            var regex = /nyt-a=(.*?)(;|$)/;
            var id = regex.exec(document.cookie);

            if (id !== null) {
            id = id[1];
            } else {
            id = '';
            } // Setting nyt-a as user context


            window.Raven.setUserContext({
            id: id
            }); // Pass collected errors to Raven

            window.nyt_errors.list.forEach(function (err) {
            // weird?
            if (!err) {
            return;
            } // also weird ... ?


            if (!err.err) {
            // maybe err itself is an Error?
            if (err instanceof Error) {
            window.Raven.captureException(err, err.data || {});
            } // else { silently ignore? }

            } // just making sure ...


            if (err.err instanceof Error) {
            window.Raven.captureException(err.err, err.data || {});
            } // else { silently ignore? }

            }); // Pass collected Tags to Raven

            window.nyt_errors.tags.forEach(function (tag) {
            window.Raven.setTagsContext(tag);
            });
            };
            includeRaven.appendChild(script);
            });
            }
            ]]>
            </script>
        </div>
    </body>
</html>