summaryrefslogtreecommitdiff
path: root/test/test-pages
diff options
context:
space:
mode:
authorFiveFilters.org <[email protected]>2021-08-31 23:46:39 +0200
committerFiveFilters.org <[email protected]>2021-08-31 23:46:39 +0200
commit5b25a5d1cff6210cd171e96e5bd0519b0ac1af83 (patch)
tree52e1532517347fb8554b32d623a7dba860a36346 /test/test-pages
parentc8efbea05a3a258c182931b1fcf809d100a5079f (diff)
Add more tests from Readability.js
Diffstat (limited to 'test/test-pages')
-rw-r--r--test/test-pages/mercurial/expected-images.json1
-rw-r--r--test/test-pages/mercurial/expected-metadata.json8
-rw-r--r--test/test-pages/mercurial/expected.html738
-rw-r--r--test/test-pages/mercurial/source.html979
-rw-r--r--test/test-pages/nytimes-4/expected-images.json4
-rw-r--r--test/test-pages/nytimes-4/expected-metadata.json8
-rw-r--r--test/test-pages/nytimes-4/expected.html214
-rw-r--r--test/test-pages/nytimes-4/source.html3896
8 files changed, 5848 insertions, 0 deletions
diff --git a/test/test-pages/mercurial/expected-images.json b/test/test-pages/mercurial/expected-images.json
new file mode 100644
index 0000000..0637a08
--- /dev/null
+++ b/test/test-pages/mercurial/expected-images.json
@@ -0,0 +1 @@
+[] \ No newline at end of file
diff --git a/test/test-pages/mercurial/expected-metadata.json b/test/test-pages/mercurial/expected-metadata.json
new file mode 100644
index 0000000..d998fb4
--- /dev/null
+++ b/test/test-pages/mercurial/expected-metadata.json
@@ -0,0 +1,8 @@
+{
+ "Author": null,
+ "Direction": null,
+ "Excerpt": "Contents",
+ "Image": null,
+ "Title": "Shared Mutable History \u2014 evolve extension for Mercurial",
+ "SiteName": null
+} \ No newline at end of file
diff --git a/test/test-pages/mercurial/expected.html b/test/test-pages/mercurial/expected.html
new file mode 100644
index 0000000..61915e4
--- /dev/null
+++ b/test/test-pages/mercurial/expected.html
@@ -0,0 +1,738 @@
+<div id="evolve-shared-mutable-history">
+
+ <div id="contents">
+ <p>
+ Contents
+ </p>
+ <ul>
+ <li>
+ <a href="#evolve-shared-mutable-history" id="id4">Evolve: Shared Mutable History</a>
+ <ul>
+ <li>
+ <a href="#sharing-with-a-single-developer" id="id5">Sharing with a single developer</a>
+ <ul>
+ <li>
+ <a href="#publishing-and-non-publishing-repositories" id="id6">Publishing and non-publishing repositories</a>
+ </li>
+ <li>
+ <a href="#setting-up" id="id7">Setting up</a>
+ </li>
+ <li>
+ <a href="#example-1-amend-a-shared-changeset" id="id8">Example 1: Amend a shared changeset</a>
+ </li>
+ <li>
+ <a href="#example-2-amend-again-locally" id="id9">Example 2: Amend again, locally</a>
+ </li>
+ </ul>
+ </li>
+ <li>
+ <a href="#sharing-with-multiple-developers-code-review" id="id10">Sharing with multiple developers: code review</a>
+ <ul>
+ <li>
+ <a href="#id2" id="id11">Setting up</a>
+ </li>
+ <li>
+ <a href="#example-3-alice-commits-and-amends-a-draft-fix" id="id12">Example 3: Alice commits and amends a draft fix</a>
+ </li>
+ <li>
+ <a href="#example-4-bob-implements-and-publishes-a-new-feature" id="id13">Example 4: Bob implements and publishes a new feature</a>
+ </li>
+ <li>
+ <a href="#example-5-alice-integrates-and-publishes" id="id14">Example 5: Alice integrates and publishes</a>
+ </li>
+ </ul>
+ </li>
+ <li>
+ <a href="#getting-into-trouble-with-shared-mutable-history" id="id15">Getting into trouble with shared mutable history</a>
+ <ul>
+ <li>
+ <a href="#id3" id="id16">Setting up</a>
+ </li>
+ <li>
+ <a href="#example-6-divergent-changesets" id="id17">Example 6: Divergent changesets</a>
+ </li>
+ <li>
+ <a href="#phase-divergence-when-a-rewritten-changeset-is-made-public" id="id18">Phase-divergence: when a rewritten changeset is made public</a>
+ </li>
+ </ul>
+ </li>
+ <li>
+ <a href="#conclusion" id="id19">Conclusion</a>
+ </li>
+ </ul>
+ </li>
+ </ul>
+ </div>
+ <p>
+ Once you have mastered the art of mutable history in a single repository (see the <a href="http://fakehost/test/user-guide.html">user guide</a>), you can move up to the next level: <em>shared</em> mutable history. <tt><span>evolve</span></tt> lets you push and pull draft changesets between repositories along with their obsolescence markers. This opens up a number of interesting possibilities.
+ </p>
+ <p>
+ The simplest scenario is a single developer working across two computers. Say you’re working on code that must be tested on a remote test server, probably in a rack somewhere, only accessible by SSH, and running an “enterprise-grade” (out-of-date) OS. But you probably prefer to write code locally: everything is setup the way you like it, and you can use your preferred editor, IDE, merge/diff tools, etc.
+ </p>
+ <p>
+ Traditionally, your options are limited: either
+ </p>
+ <blockquote>
+ <div>
+ <ul>
+ <li>(ab)use your source control system by committing half-working code in order to get it onto the remote test server, or
+ </li>
+ <li>go behind source control’s back by using <tt><span>rsync</span></tt> (or similar) to transfer your code back-and-forth until it is ready to commit
+ </li>
+ </ul>
+ </div>
+ </blockquote>
+ <p>
+ The former is less bad with distributed version control systems like Mercurial, but it’s still far from ideal. (One important version control “best practice” is that every commit should make things just a little bit better, i.e. you should never commit code that is worse than what came before.) The latter, avoiding version control entirely, means that you’re walking a tightrope without a safety net. One accidental <tt><span>rsync</span></tt> in the wrong direction could destroy hours of work.
+ </p>
+ <p>
+ Using Mercurial with <tt><span>evolve</span></tt> to share mutable history solves these problems. As with single-repository <tt><span>evolve</span></tt>, you can commit whenever the code is demonstrably better, even if all the tests aren’t passing yet—just <tt><span>hg</span> <span>amend</span></tt> when they are. And you can transfer those half-baked changesets between repositories to try things out on your test server before anything is carved in stone.
+ </p>
+ <p>
+ A less common scenario is multiple developers sharing mutable history, typically for code review. We’ll cover this scenario later. First, we will cover single-user sharing.
+ </p>
+ <div id="sharing-with-a-single-developer">
+ <h2>
+ <a href="#id5">Sharing with a single developer</a><a href="#sharing-with-a-single-developer" title="Permalink to this headline">¶</a>
+ </h2>
+ <div id="publishing-and-non-publishing-repositories">
+ <h3>
+ <a href="#id6">Publishing and non-publishing repositories</a><a href="#publishing-and-non-publishing-repositories" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ The key to shared mutable history is to keep your changesets in <em>draft</em> phase as you pass them around. Recall that by default, <tt><span>hg</span> <span>push</span></tt> promotes changesets from <em>draft</em> to <em>public</em>, and public changesets are immutable. You can change this behaviour by reconfiguring the <em>remote</em> repository so that it is non-publishing. (Short version: set <tt><span>phases.publish</span></tt> to <tt><span>false</span></tt>. Long version follows.)
+ </p>
+ </div>
+ <div id="setting-up">
+ <h3>
+ <a href="#id7">Setting up</a><a href="#setting-up" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ We’ll work through an example with three local repositories, although in the real world they’d most likely be on three different computers. First, the <tt><span>public</span></tt> repository is where tested, polished changesets live, and it is where you synchronize with the rest of your team.
+ </p>
+
+ <p>
+ We’ll need two clones where work gets done, <tt><span>test-repo</span></tt> and <tt><span>dev-repo</span></tt>:
+ </p>
+ <div>
+ <pre>$ hg clone public test-repo
+updating to branch default
+0 files updated, 0 files merged, 0 files removed, 0 files unresolved
+$ hg clone test-repo dev-repo
+updating to branch default
+0 files updated, 0 files merged, 0 files removed, 0 files unresolved
+</pre>
+ </div>
+ <p>
+ <tt><span>dev-repo</span></tt> is your local machine, with GUI merge tools and IDEs and everything configured just the way you like it. <tt><span>test-repo</span></tt> is the test server in a rack somewhere behind SSH. So for the most part, we’ll develop in <tt><span>dev-repo</span></tt>, push to <tt><span>test-repo</span></tt>, test and polish there, and push to <tt><span>public</span></tt>.
+ </p>
+ <p>
+ The key to shared mutable history is to make the target repository, in this case <tt><span>test-repo</span></tt>, non-publishing. And, of course, we have to enable the <tt><span>evolve</span></tt> extension in both <tt><span>test-repo</span></tt> and <tt><span>dev-repo</span></tt>.
+ </p>
+ <p>
+ First, edit the configuration for <tt><span>test-repo</span></tt>:
+ </p>
+ <div>
+ <pre>$ hg -R test-repo config --edit --local
+</pre>
+ </div>
+ <p>
+ and add
+ </p>
+ <div>
+ <pre>[phases]
+publish = false
+
+[extensions]
+evolve =
+</pre>
+ </div>
+ <p>
+ Then edit the configuration for <tt><span>dev-repo</span></tt>:
+ </p>
+ <div>
+ <pre>$ hg -R dev-repo config --edit --local
+</pre>
+ </div>
+ <p>
+ and add
+ </p>
+
+ <p>
+ Keep in mind that in real life, these repositories would probably be on separate computers, so you’d have to login to each one to configure each repository.
+ </p>
+ <p>
+ To start things off, let’s make one public, immutable changeset:
+ </p>
+ <div>
+ <pre>$ cd test-repo
+$ echo 'my new project' &gt; file1
+$ hg add file1
+$ hg commit -m 'create new project'
+$ hg push
+[...]
+added 1 changesets with 1 changes to 1 files
+</pre>
+ </div>
+ <p>
+ and pull that into the development repository:
+ </p>
+ <div>
+ <pre>$ cd ../dev-repo
+$ hg pull -u
+[...]
+added 1 changesets with 1 changes to 1 files
+1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+</pre>
+ </div>
+ </div>
+
+ <div id="example-2-amend-again-locally">
+ <h3>
+ <a href="#id9">Example 2: Amend again, locally</a><a href="#example-2-amend-again-locally" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ This process can repeat. Perhaps you figure out a more elegant fix to the bug, and want to mutate history so nobody ever knows you had a less-than-perfect idea. We’ll implement it locally in <tt><span>dev-repo</span></tt> and push to <tt><span>test-repo</span></tt>:
+ </p>
+ <div>
+ <pre>$ echo 'Fix, fix, and fix.' &gt; file1
+$ hg amend
+$ hg push
+</pre>
+ </div>
+ <p>
+ This time around, the temporary amend commit is in <tt><span>dev-repo</span></tt>, and it is not transferred to <tt><span>test-repo</span></tt>—the same as before, just in the opposite direction. Figure 4 shows the two repositories after amending in <tt><span>dev-repo</span></tt> and pushing to <tt><span>test-repo</span></tt>.
+ </p>
+ <blockquote>
+ <p>
+ [figure SG04: each repo has one temporary amend commit, but they’re different in each one]
+ </p>
+ </blockquote>
+ <p>
+ Let’s hop over to <tt><span>test-repo</span></tt> to test the more elegant fix:
+ </p>
+ <div>
+ <pre>$ cd ../test-repo
+$ hg update
+1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+</pre>
+ </div>
+ <p>
+ This time, all the tests pass, so no further amending is required. This bug fix is finished, so we push it to the public repository:
+ </p>
+ <div>
+ <pre>$ hg push
+[...]
+added 1 changesets with 1 changes to 1 files
+</pre>
+ </div>
+ <p>
+ Note that only one changeset—the final version, after two amendments—was actually pushed. Again, Mercurial doesn’t transfer hidden changesets on push and pull.
+ </p>
+ <p>
+ So the picture in <tt><span>public</span></tt> is much simpler than in either <tt><span>dev-repo</span></tt> or <tt><span>test-repo</span></tt>. Neither of our missteps nor our amendments are publicly visible, just the final, beautifully polished changeset:
+ </p>
+ <blockquote>
+ <p>
+ [figure SG05: public repo with rev 0:0dc9, 1:de61, both public]
+ </p>
+ </blockquote>
+ <p>
+ There is one important step left to do. Because we pushed from <tt><span>test-repo</span></tt> to <tt><span>public</span></tt>, the pushed changeset is in <em>public</em> phase in those two repositories. But <tt><span>dev-repo</span></tt> has been out-of-the-loop; changeset de61 is still <em>draft</em> there. If we’re not careful, we might mutate history in <tt><span>dev-repo</span></tt>, obsoleting a changeset that is already public. Let’s avoid that situation for now by pushing up to <tt><span>dev-repo</span></tt>:
+ </p>
+ <div>
+ <pre>$ hg push ../dev-repo
+pushing to ../dev-repo
+searching for changes
+no changes found
+</pre>
+ </div>
+ <p>
+ Even though no <em>changesets</em> were pushed, Mercurial still pushed obsolescence markers and phase changes to <tt><span>dev-repo</span></tt>.
+ </p>
+ <p>
+ A final note: since this fix is now <em>public</em>, it is immutable. It’s no longer possible to amend it:
+ </p>
+ <div>
+ <pre>$ hg amend -m 'fix bug 37'
+abort: cannot amend public changesets
+</pre>
+ </div>
+ <p>
+ This is, after all, the whole point of Mercurial’s phases: to prevent rewriting history that has already been published.
+ </p>
+ </div>
+ </div>
+ <div id="sharing-with-multiple-developers-code-review">
+ <h2>
+ <a href="#id10">Sharing with multiple developers: code review</a><a href="#sharing-with-multiple-developers-code-review" title="Permalink to this headline">¶</a>
+ </h2>
+ <p>
+ Now that you know how to share your own mutable history across multiple computers, you might be wondering if it makes sense to share mutable history with others. It does, but you have to be careful, stay alert, and <em>communicate</em> with your peers.
+ </p>
+ <p>
+ Code review is a good use case for sharing mutable history across multiple developers: Alice commits a draft changeset, submits it for review, and amends her changeset until her reviewer is satisfied. Meanwhile, Bob is also committing draft changesets for review, amending until his reviewer is satisfied. Once a particular changeset passes review, the respective author (Alice or Bob) pushes it to the public (publishing) repository.
+ </p>
+ <p>
+ Incidentally, the reviewers here can be anyone: maybe Bob and Alice review each other’s work; maybe the same third party reviews both; or maybe they pick different experts to review their work on different parts of a large codebase. Similarly, it doesn’t matter if reviews are conducted in person, by email, or by carrier pigeon. Code review is outside of the scope of Mercurial, so all we’re looking at here is the mechanics of committing, amending, pushing, and pulling.
+ </p>
+ <div id="id2">
+ <h3>
+ <a href="#id11">Setting up</a><a href="#id2" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ To demonstrate, let’s start with the <tt><span>public</span></tt> repository as we left it in the last example, with two immutable changesets (figure 5 above). We’ll clone a <tt><span>review</span></tt> repository from it, and then Alice and Bob will both clone from <tt><span>review</span></tt>.
+ </p>
+ <div>
+ <pre>$ hg clone public review
+updating to branch default
+1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+$ hg clone review alice
+updating to branch default
+1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+$ hg clone review bob
+updating to branch default
+1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+</pre>
+ </div>
+ <p>
+ We need to configure Alice’s and Bob’s working repositories to enable <tt><span>evolve</span></tt>. First, edit Alice’s configuration with
+ </p>
+ <div>
+ <pre>$ hg -R alice config --edit --local
+</pre>
+ </div>
+ <p>
+ and add
+ </p>
+
+ <p>
+ Then edit Bob’s repository configuration:
+ </p>
+ <div>
+ <pre>$ hg -R bob config --edit --local
+</pre>
+ </div>
+ <p>
+ and add the same text.
+ </p>
+ </div>
+ <div id="example-3-alice-commits-and-amends-a-draft-fix">
+ <h3>
+ <a href="#id12">Example 3: Alice commits and amends a draft fix</a><a href="#example-3-alice-commits-and-amends-a-draft-fix" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ We’ll follow Alice working on a bug fix. We’re going to use bookmarks to make it easier to understand multiple branch heads in the <tt><span>review</span></tt> repository, so Alice starts off by creating a bookmark and committing her first attempt at a fix:
+ </p>
+ <div>
+ <pre>$ hg bookmark bug15
+$ echo 'fix' &gt; file2
+$ hg commit -A -u alice -m 'fix bug 15 (v1)'
+adding file2
+</pre>
+ </div>
+ <p>
+ Note the unorthodox “(v1)” in the commit message. We’re just using that to make this tutorial easier to follow; it’s not something we’d recommend in real life.
+ </p>
+ <p>
+ Of course Alice wouldn’t commit unless her fix worked to her satisfaction, so it must be time to solicit a code review. She does this by pushing to the <tt><span>review</span></tt> repository:
+ </p>
+ <div>
+ <pre>$ hg push -B bug15
+[...]
+added 1 changesets with 1 changes to 1 files
+exporting bookmark bug15
+</pre>
+ </div>
+ <p>
+ (The use of <tt><span>-B</span></tt> is important to ensure that we only push the bookmarked head, and that the bookmark itself is pushed. See this <a href="http://mercurial.aragost.com/kick-start/en/bookmarks/">guide to bookmarks</a>, especially the <a href="http://mercurial.aragost.com/kick-start/en/bookmarks/#sharing-bookmarks">Sharing Bookmarks</a> section, if you’re not familiar with bookmarks.)
+ </p>
+ <p>
+ Some time passes, and Alice receives her code review. As a result, Alice revises her fix and submits it for a second review:
+ </p>
+ <div>
+ <pre>$ echo 'Fix.' &gt; file2
+$ hg amend -m 'fix bug 15 (v2)'
+$ hg push
+[...]
+added 1 changesets with 1 changes to 1 files (+1 heads)
+updating bookmark bug15
+</pre>
+ </div>
+ <p>
+ Figure 6 shows the state of the <tt><span>review</span></tt> repository at this point.
+ </p>
+ <blockquote>
+ <p>
+ [figure SG06: rev 2:fn1e is Alice’s obsolete v1, rev 3:cbdf is her v2; both children of rev 1:de61]
+ </p>
+ </blockquote>
+ <p>
+ After a busy morning of bug fixing, Alice stops for lunch. Let’s see what Bob has been up to.
+ </p>
+ </div>
+ <div id="example-4-bob-implements-and-publishes-a-new-feature">
+ <h3>
+ <a href="#id13">Example 4: Bob implements and publishes a new feature</a><a href="#example-4-bob-implements-and-publishes-a-new-feature" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ Meanwhile, Bob has been working on a new feature. Like Alice, he’ll use a bookmark to track his work, and he’ll push that bookmark to the <tt><span>review</span></tt> repository, so that reviewers know which changesets to review.
+ </p>
+ <div>
+ <pre>$ cd ../bob
+$ echo 'stuff' &gt; file1
+$ hg bookmark featureX
+$ hg commit -u bob -m 'implement feature X (v1)' # rev 4:1636
+$ hg push -B featureX
+[...]
+added 1 changesets with 1 changes to 1 files (+1 heads)
+exporting bookmark featureX
+</pre>
+ </div>
+ <p>
+ When Bob receives his code review, he improves his implementation a bit, amends, and submits the resulting changeset for review:
+ </p>
+ <div>
+ <pre>$ echo 'do stuff' &gt; file1
+$ hg amend -m 'implement feature X (v2)' # rev 5:0eb7
+$ hg push
+[...]
+added 1 changesets with 1 changes to 1 files (+1 heads)
+updating bookmark featureX
+</pre>
+ </div>
+ <p>
+ Unfortunately, that still doesn’t pass muster. Bob’s reviewer insists on proper capitalization and punctuation.
+ </p>
+ <div>
+ <pre>$ echo 'Do stuff.' &gt; file1
+$ hg amend -m 'implement feature X (v3)' # rev 6:540b
+</pre>
+ </div>
+ <p>
+ On the bright side, the second review said, “Go ahead and publish once you fix that.” So Bob immediately publishes his third attempt:
+ </p>
+ <div>
+ <pre>$ hg push ../public
+[...]
+added 1 changesets with 1 changes to 1 files
+</pre>
+ </div>
+ <p>
+ It’s not enough just to update <tt><span>public</span></tt>, though! Other people also use the <tt><span>review</span></tt> repository, and right now it doesn’t have Bob’s latest amendment (“v3”, revision 6:540b), nor does it know that the precursor of that changeset (“v2”, revision 5:0eb7) is obsolete. Thus, Bob pushes to <tt><span>review</span></tt> as well:
+ </p>
+ <div>
+ <pre>$ hg push ../review
+[...]
+added 1 changesets with 1 changes to 1 files (+1 heads)
+updating bookmark featureX
+</pre>
+ </div>
+ <p>
+ Figure 7 shows the result of Bob’s work in both <tt><span>review</span></tt> and <tt><span>public</span></tt>.
+ </p>
+ <blockquote>
+ <p>
+ [figure SG07: review includes Alice’s draft work on bug 15, as well as Bob’s v1, v2, and v3 changes for feature X: v1 and v2 obsolete, v3 public. public contains only the final, public implementation of feature X]
+ </p>
+ </blockquote>
+ <p>
+ Incidentally, it’s important that Bob push to <tt><span>public</span></tt> <em>before</em> <tt><span>review</span></tt>. If he pushed to <tt><span>review</span></tt> first, then revision 6:540b would still be in <em>draft</em> phase in <tt><span>review</span></tt>, but it would be <em>public</em> in both Bob’s local repository and the <tt><span>public</span></tt> repository. That could lead to confusion at some point, which is easily avoided by pushing first to <tt><span>public</span></tt>.
+ </p>
+ </div>
+ <div id="example-5-alice-integrates-and-publishes">
+ <h3>
+ <a href="#id14">Example 5: Alice integrates and publishes</a><a href="#example-5-alice-integrates-and-publishes" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ Finally, Alice gets back from lunch and sees that the carrier pigeon with her second review has arrived (or maybe it’s in her email inbox). Alice’s reviewer approved her amended changeset, so she pushes it to <tt><span>public</span></tt>:
+ </p>
+ <div>
+ <pre>$ hg push ../public
+[...]
+remote has heads on branch 'default' that are not known locally: 540ba8f317e6
+abort: push creates new remote head cbdfbd5a5db2!
+(pull and merge or see "hg help push" for details about pushing new heads)
+</pre>
+ </div>
+ <p>
+ Oops! Bob has won the race to push first to <tt><span>public</span></tt>. So Alice needs to integrate with Bob: let’s pull his changeset(s) and see what the branch heads are.
+ </p>
+ <div>
+ <pre>$ hg pull ../public
+[...]
+added 1 changesets with 1 changes to 1 files (+1 heads)
+(run 'hg heads' to see heads, 'hg merge' to merge)
+$ hg log -G -q -r 'head()' --template '{rev}:{node|short} ({author})\n'
+o 5:540ba8f317e6 (bob)
+|
+| @ 4:cbdfbd5a5db2 (alice)
+|/
+</pre>
+ </div>
+ <p>
+ We’ll assume Alice and Bob are perfectly comfortable with rebasing changesets. (After all, they’re already using mutable history in the form of <tt><span>amend</span></tt>.) So Alice rebases her changeset on top of Bob’s and publishes the result:
+ </p>
+ <div>
+ <pre>$ hg rebase -d 5
+$ hg push ../public
+[...]
+added 1 changesets with 1 changes to 1 files
+$ hg push ../review
+[...]
+added 1 changesets with 0 changes to 0 files
+updating bookmark bug15
+</pre>
+ </div>
+ <p>
+ The result, in both <tt><span>review</span></tt> and <tt><span>public</span></tt> repositories, is shown in figure 8.
+ </p>
+ <blockquote>
+ <p>
+ [figure SG08: review shows v1 and v2 of Alice’s fix, then v1, v2, v3 of Bob’s feature, finally Alice’s fix rebased onto Bob’s. public just shows the final public version of each changeset]
+ </p>
+ </blockquote>
+ </div>
+ </div>
+ <div id="getting-into-trouble-with-shared-mutable-history">
+ <h2>
+ <a href="#id15">Getting into trouble with shared mutable history</a><a href="#getting-into-trouble-with-shared-mutable-history" title="Permalink to this headline">¶</a>
+ </h2>
+ <p>
+ Mercurial with <tt><span>evolve</span></tt> is a powerful tool, and using powerful tools can have consequences. (You can cut yourself badly with a sharp knife, but every competent chef keeps several around. Ever try to chop onions with a spoon?)
+ </p>
+ <p>
+ In the user guide, we saw examples of <em>unstbale</em> changesets, which are the most common type of troubled changeset. (Recall that a non-obsolete changeset with obsolete ancestors is an orphan.)
+ </p>
+ <p>
+ Two other types of troubles can happen: <em>divergent</em> and <em>bumped</em> changesets. Both are more likely with shared mutable history, especially mutable history shared by multiple developers.
+ </p>
+ <div id="id3">
+ <h3>
+ <a href="#id16">Setting up</a><a href="#id3" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ For these examples, we’re going to use a slightly different workflow: as before, Alice and Bob share a <tt><span>public</span></tt> repository. But this time there is no <tt><span>review</span></tt> repository. Instead, Alice and Bob put on their cowboy hats, throw good practice to the wind, and pull directly from each other’s working repositories.
+ </p>
+ <p>
+ So we throw away everything except <tt><span>public</span></tt> and reclone:
+ </p>
+ <div>
+ <pre>$ rm -rf review alice bob
+$ hg clone public alice
+updating to branch default
+2 files updated, 0 files merged, 0 files removed, 0 files unresolved
+$ hg clone public bob
+updating to branch default
+2 files updated, 0 files merged, 0 files removed, 0 files unresolved
+</pre>
+ </div>
+ <p>
+ Once again we have to configure their repositories: enable <tt><span>evolve</span></tt> and (since Alice and Bob will be pulling directly from each other) make their repositories non-publishing. Edit Alice’s configuration:
+ </p>
+ <div>
+ <pre>$ hg -R alice config --edit --local
+</pre>
+ </div>
+ <p>
+ and add
+ </p>
+ <div>
+ <pre>[extensions]
+rebase =
+evolve =
+
+[phases]
+publish = false
+</pre>
+ </div>
+ <p>
+ Then edit Bob’s repository configuration:
+ </p>
+ <div>
+ <pre>$ hg -R bob config --edit --local
+</pre>
+ </div>
+ <p>
+ and add the same text.
+ </p>
+ </div>
+ <div id="example-6-divergent-changesets">
+ <h3>
+ <a href="#id17">Example 6: Divergent changesets</a><a href="#example-6-divergent-changesets" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ When an obsolete changeset has two successors, those successors are <em>divergent</em>. One way to get into such a situation is by failing to communicate with your teammates. Let’s see how that might happen.
+ </p>
+ <p>
+ First, we’ll have Bob commit a bug fix that could still be improved:
+ </p>
+ <div>
+ <pre>$ cd bob
+$ echo 'pretty good fix' &gt;&gt; file1
+$ hg commit -u bob -m 'fix bug 24 (v1)' # rev 4:2fe6
+</pre>
+ </div>
+ <p>
+ Since Alice and Bob are now in cowboy mode, Alice pulls Bob’s draft changeset and amends it herself.
+ </p>
+ <div>
+ <pre>$ cd ../alice
+$ hg pull -u ../bob
+[...]
+added 1 changesets with 1 changes to 1 files
+$ echo 'better fix (alice)' &gt;&gt; file1
+$ hg amend -u alice -m 'fix bug 24 (v2 by alice)'
+</pre>
+ </div>
+ <p>
+ But Bob has no idea that Alice just did this. (See how important good communication is?) So he implements a better fix of his own:
+ </p>
+ <div>
+ <pre>$ cd ../bob
+$ echo 'better fix (bob)' &gt;&gt; file1
+$ hg amend -u bob -m 'fix bug 24 (v2 by bob)' # rev 6:a360
+</pre>
+ </div>
+ <p>
+ At this point, the divergence exists, but only in theory: Bob’s original changeset, 4:2fe6, is obsolete and has two successors. But those successors are in different repositories, so the trouble is not visible to anyone yet. It will be as soon as Bob pulls from Alice’s repository (or vice-versa).
+ </p>
+ <div>
+ <pre>$ hg pull ../alice
+[...]
+added 1 changesets with 1 changes to 2 files (+1 heads)
+(run 'hg heads' to see heads, 'hg merge' to merge)
+2 new divergent changesets
+</pre>
+ </div>
+ <p>
+ Figure 9 shows the situation in Bob’s repository.
+ </p>
+ <blockquote>
+ <p>
+ [figure SG09: Bob’s repo with 2 heads for the 2 divergent changesets, 6:a360 and 7:e3f9; wc is at 6:a360; both are successors of obsolete 4:2fe6, hence divergence]
+ </p>
+ </blockquote>
+ <p>
+ Now we need to get out of trouble. As usual, the answer is to evolve history.
+ </p>
+ <div>
+ <pre>$ HGMERGE=internal:other hg evolve
+merge:[6] fix bug 24 (v2 by bob)
+with: [7] fix bug 24 (v2 by alice)
+base: [4] fix bug 24 (v1)
+0 files updated, 1 files merged, 0 files removed, 0 files unresolved
+</pre>
+ </div>
+ <p>
+ Figure 10 shows how Bob’s repository looks now.
+ </p>
+ <blockquote>
+ <p>
+ [figure SG10: only one visible head, 9:5ad6, successor to hidden 6:a360 and 7:e3f9]
+ </p>
+ </blockquote>
+ <p>
+ We carefully dodged a merge conflict by specifying a merge tool (<tt><span>internal:other</span></tt>) that will take Alice’s changes over Bob’s. (You might wonder why Bob wouldn’t prefer his own changes by using <tt><span>internal:local</span></tt>. He’s avoiding a <a href="#bug">bug</a> in <tt><span>evolve</span></tt> that occurs when evolving divergent changesets using <tt><span>internal:local</span></tt>.)
+ </p>
+ <p>
+ # XXX this link does not work .. <span id="bug">bug</span>: <a href="https://bitbucket.org/marmoute/mutable-history/issue/48/">https://bitbucket.org/marmoute/mutable-history/issue/48/</a>
+ </p>
+ <p>
+ ** STOP HERE: WORK IN PROGRESS **
+ </p>
+ </div>
+ <div id="phase-divergence-when-a-rewritten-changeset-is-made-public">
+ <h3>
+ <a href="#id18">Phase-divergence: when a rewritten changeset is made public</a><a href="#phase-divergence-when-a-rewritten-changeset-is-made-public" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ If Alice and Bob are collaborating on some mutable changesets, it’s possible to get into a situation where an otherwise worthwhile changeset cannot be pushed to the public repository; it is <em>phase-divergent</em> with another changeset that was made public first. Let’s demonstrate one way this could happen.
+ </p>
+ <p>
+ It starts with Alice committing a bug fix. Right now, we don’t yet know if this bug fix is good enough to push to the public repository, but it’s good enough for Alice to commit.
+ </p>
+ <div>
+ <pre>$ cd alice
+$ echo 'fix' &gt; file2
+$ hg commit -A -m 'fix bug 15'
+adding file2
+</pre>
+ </div>
+ <p>
+ Now Bob has a bad idea: he decides to pull whatever Alice is working on and tweak her bug fix to his taste:
+ </p>
+ <div>
+ <pre>$ cd ../bob
+$ hg pull -u ../alice
+[...]
+added 1 changesets with 1 changes to 1 files
+1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+$ echo 'Fix.' &gt; file2
+$ hg amend -A -m 'fix bug 15 (amended)'
+</pre>
+ </div>
+ <p>
+ (Note the lack of communication between Alice and Bob. Failing to communicate with your colleagues is a good way to get into trouble. Nevertheless, <tt><span>evolve</span></tt> can usually sort things out, as we will see.)
+ </p>
+ <blockquote>
+ <p>
+ [figure SG06: Bob’s repo with one amendment]
+ </p>
+ </blockquote>
+ <p>
+ After some testing, Alice realizes her bug fix is just fine as it is: no need for further polishing and amending, this changeset is ready to publish.
+ </p>
+ <div>
+ <pre>$ cd ../alice
+$ hg push
+[...]
+added 1 changesets with 1 changes to 1 files
+</pre>
+ </div>
+ <p>
+ This introduces a contradiction: in Bob’s repository, changeset 2:e011 (his copy of Alice’s fix) is obsolete, since Bob amended it. But in Alice’s repository (and the <tt><span>public</span></tt> repository), that changeset is public: it is immutable, carved in stone for all eternity. No changeset can be both obsolete and public, so Bob is in for a surprise the next time he pulls from <tt><span>public</span></tt>:
+ </p>
+ <div>
+ <pre>$ cd ../bob
+$ hg pull -q -u
+1 new phase-divergent changesets
+</pre>
+ </div>
+ <p>
+ Figure 7 shows what just happened to Bob’s repository: changeset 2:e011 is now public, so it can’t be obsolete. When that changeset was obsolete, it made perfect sense for it to have a successor, namely Bob’s amendment of Alice’s fix (changeset 4:fe88). But it’s illogical for a public changeset to have a successor, so 4:fe88 is troubled: it has become <em>bumped</em>.
+ </p>
+ <blockquote>
+ <p>
+ [figure SG07: 2:e011 now public not obsolete, 4:fe88 now bumped]
+ </p>
+ </blockquote>
+ <p>
+ As usual when there’s trouble in your repository, the solution is to evolve it:
+ </p>
+
+ <p>
+ Figure 8 illustrates Bob’s repository after evolving away the bumped changeset. Ignoring the obsolete changesets, Bob now has a nice, clean, simple history. His amendment of Alice’s bug fix lives on, as changeset 5:227d—albeit with a software-generated commit message. (Bob should probably amend that changeset to improve the commit message.) But the important thing is that his repository no longer has any troubled changesets, thanks to <tt><span>evolve</span></tt>.
+ </p>
+ <blockquote>
+ <p>
+ [figure SG08: 5:227d is new, formerly bumped changeset 4:fe88 now hidden]
+ </p>
+ </blockquote>
+ </div>
+ </div>
+ <div id="conclusion">
+ <h2>
+ <a href="#id19">Conclusion</a><a href="#conclusion" title="Permalink to this headline">¶</a>
+ </h2>
+ <p>
+ Mutable history is a powerful tool. Like a sharp knife, an experienced user can do wonderful things with it, much more wonderful than with a dull knife (never mind a rusty spoon). At the same time, an inattentive or careless user can do harm to himself or others. Mercurial with <tt><span>evolve</span></tt> goes to great lengths to limit the harm you can do by trying to handle all possible types of “troubled” changesets. Nevertheless, having a first-aid kit nearby does not mean you should stop being careful with sharp knives.
+ </p>
+ <p>
+ Mutable history shared across multiple repositories by a single developer is a natural extension of this model. Once you are used to using a single sharp knife on its own, it’s pretty straightforward to chop onions and mushrooms using the same knife, or to alternate between two chopping boards with different knives.
+ </p>
+ <p>
+ Mutable history shared by multiple developers is a scary place to go. Imagine a professional kitchen full of expert chefs tossing their favourite knives back and forth, with the occasional axe or chainsaw thrown in to spice things up. If you’re confident that you <em>and your colleagues</em> can do it without losing a limb, go for it. But be sure to practice a lot first before you rely on it!
+ </p>
+ </div>
+ </div> \ No newline at end of file
diff --git a/test/test-pages/mercurial/source.html b/test/test-pages/mercurial/source.html
new file mode 100644
index 0000000..e8dc6f6
--- /dev/null
+++ b/test/test-pages/mercurial/source.html
@@ -0,0 +1,979 @@
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+ <title>
+ Evolve: Shared Mutable History — evolve extension for Mercurial
+ </title>
+ <link rel="stylesheet" href="_static/haiku.css" type="text/css" />
+ <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
+ <script type="text/javascript">
+ //<![CDATA[
+ var DOCUMENTATION_OPTIONS = {
+ URL_ROOT: './',
+ VERSION: '0.0',
+ COLLAPSE_INDEX: false,
+ FILE_SUFFIX: '.html',
+ HAS_SOURCE: true
+ };
+ //]]>
+ </script>
+ <script type="text/javascript" src="_static/jquery.js"></script>
+ <script type="text/javascript" src="_static/underscore.js"></script>
+ <script type="text/javascript" src="_static/doctools.js"></script>
+ <link rel="shortcut icon" href="_static/logo-evolve.ico" />
+ <link rel="top" title="evolve extension for Mercurial" href="index.html" />
+ <link rel="next" title="Evolve: Concepts" href="concepts.html" />
+ <link rel="prev" title="Evolve: User Guide" href="user-guide.html" />
+ </head>
+ <body>
+ <div class="header">
+ <h1 class="heading">
+ <a href="index.html"><span>evolve extension for Mercurial</span></a>
+ </h1>
+ <h2 class="heading">
+ <span>Evolve: Shared Mutable History</span>
+ </h2>
+ </div>
+ <div class="topnav">
+ <p>
+ «&#160;&#160;<a href="user-guide.html">Evolve: User Guide</a> &#160;&#160;::&#160;&#160; <a class="uplink" href="index.html">Contents</a> &#160;&#160;::&#160;&#160; <a href="concepts.html">Evolve: Concepts</a>&#160;&#160;»
+ </p>
+ </div>
+ <div class="content">
+ <div class="section" id="evolve-shared-mutable-history">
+ <h1>
+ <a class="toc-backref" href="#id4">Evolve: Shared Mutable History</a><a class="headerlink" href="#evolve-shared-mutable-history" title="Permalink to this headline">¶</a>
+ </h1>
+ <div class="contents topic" id="contents">
+ <p class="topic-title first">
+ Contents
+ </p>
+ <ul class="simple">
+ <li>
+ <a class="reference internal" href="#evolve-shared-mutable-history" id="id4">Evolve: Shared Mutable History</a>
+ <ul>
+ <li>
+ <a class="reference internal" href="#sharing-with-a-single-developer" id="id5">Sharing with a single developer</a>
+ <ul>
+ <li>
+ <a class="reference internal" href="#publishing-and-non-publishing-repositories" id="id6">Publishing and non-publishing repositories</a>
+ </li>
+ <li>
+ <a class="reference internal" href="#setting-up" id="id7">Setting up</a>
+ </li>
+ <li>
+ <a class="reference internal" href="#example-1-amend-a-shared-changeset" id="id8">Example 1: Amend a shared changeset</a>
+ </li>
+ <li>
+ <a class="reference internal" href="#example-2-amend-again-locally" id="id9">Example 2: Amend again, locally</a>
+ </li>
+ </ul>
+ </li>
+ <li>
+ <a class="reference internal" href="#sharing-with-multiple-developers-code-review" id="id10">Sharing with multiple developers: code review</a>
+ <ul>
+ <li>
+ <a class="reference internal" href="#id2" id="id11">Setting up</a>
+ </li>
+ <li>
+ <a class="reference internal" href="#example-3-alice-commits-and-amends-a-draft-fix" id="id12">Example 3: Alice commits and amends a draft fix</a>
+ </li>
+ <li>
+ <a class="reference internal" href="#example-4-bob-implements-and-publishes-a-new-feature" id="id13">Example 4: Bob implements and publishes a new feature</a>
+ </li>
+ <li>
+ <a class="reference internal" href="#example-5-alice-integrates-and-publishes" id="id14">Example 5: Alice integrates and publishes</a>
+ </li>
+ </ul>
+ </li>
+ <li>
+ <a class="reference internal" href="#getting-into-trouble-with-shared-mutable-history" id="id15">Getting into trouble with shared mutable history</a>
+ <ul>
+ <li>
+ <a class="reference internal" href="#id3" id="id16">Setting up</a>
+ </li>
+ <li>
+ <a class="reference internal" href="#example-6-divergent-changesets" id="id17">Example 6: Divergent changesets</a>
+ </li>
+ <li>
+ <a class="reference internal" href="#phase-divergence-when-a-rewritten-changeset-is-made-public" id="id18">Phase-divergence: when a rewritten changeset is made public</a>
+ </li>
+ </ul>
+ </li>
+ <li>
+ <a class="reference internal" href="#conclusion" id="id19">Conclusion</a>
+ </li>
+ </ul>
+ </li>
+ </ul>
+ </div>
+ <p>
+ Once you have mastered the art of mutable history in a single repository (see the <a class="reference external" href="user-guide.html">user guide</a>), you can move up to the next level: <em>shared</em> mutable history. <tt class="docutils literal"><span class="pre">evolve</span></tt> lets you push and pull draft changesets between repositories along with their obsolescence markers. This opens up a number of interesting possibilities.
+ </p>
+ <p>
+ The simplest scenario is a single developer working across two computers. Say you’re working on code that must be tested on a remote test server, probably in a rack somewhere, only accessible by SSH, and running an “enterprise-grade” (out-of-date) OS. But you probably prefer to write code locally: everything is setup the way you like it, and you can use your preferred editor, IDE, merge/diff tools, etc.
+ </p>
+ <p>
+ Traditionally, your options are limited: either
+ </p>
+ <blockquote>
+ <div>
+ <ul class="simple">
+ <li>(ab)use your source control system by committing half-working code in order to get it onto the remote test server, or
+ </li>
+ <li>go behind source control’s back by using <tt class="docutils literal"><span class="pre">rsync</span></tt> (or similar) to transfer your code back-and-forth until it is ready to commit
+ </li>
+ </ul>
+ </div>
+ </blockquote>
+ <p>
+ The former is less bad with distributed version control systems like Mercurial, but it’s still far from ideal. (One important version control “best practice” is that every commit should make things just a little bit better, i.e. you should never commit code that is worse than what came before.) The latter, avoiding version control entirely, means that you’re walking a tightrope without a safety net. One accidental <tt class="docutils literal"><span class="pre">rsync</span></tt> in the wrong direction could destroy hours of work.
+ </p>
+ <p>
+ Using Mercurial with <tt class="docutils literal"><span class="pre">evolve</span></tt> to share mutable history solves these problems. As with single-repository <tt class="docutils literal"><span class="pre">evolve</span></tt>, you can commit whenever the code is demonstrably better, even if all the tests aren’t passing yet—just <tt class="docutils literal"><span class="pre">hg</span> <span class="pre">amend</span></tt> when they are. And you can transfer those half-baked changesets between repositories to try things out on your test server before anything is carved in stone.
+ </p>
+ <p>
+ A less common scenario is multiple developers sharing mutable history, typically for code review. We’ll cover this scenario later. First, we will cover single-user sharing.
+ </p>
+ <div class="section" id="sharing-with-a-single-developer">
+ <h2>
+ <a class="toc-backref" href="#id5">Sharing with a single developer</a><a class="headerlink" href="#sharing-with-a-single-developer" title="Permalink to this headline">¶</a>
+ </h2>
+ <div class="section" id="publishing-and-non-publishing-repositories">
+ <h3>
+ <a class="toc-backref" href="#id6">Publishing and non-publishing repositories</a><a class="headerlink" href="#publishing-and-non-publishing-repositories" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ The key to shared mutable history is to keep your changesets in <em>draft</em> phase as you pass them around. Recall that by default, <tt class="docutils literal"><span class="pre">hg</span> <span class="pre">push</span></tt> promotes changesets from <em>draft</em> to <em>public</em>, and public changesets are immutable. You can change this behaviour by reconfiguring the <em>remote</em> repository so that it is non-publishing. (Short version: set <tt class="docutils literal"><span class="pre">phases.publish</span></tt> to <tt class="docutils literal"><span class="pre">false</span></tt>. Long version follows.)
+ </p>
+ </div>
+ <div class="section" id="setting-up">
+ <h3>
+ <a class="toc-backref" href="#id7">Setting up</a><a class="headerlink" href="#setting-up" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ We’ll work through an example with three local repositories, although in the real world they’d most likely be on three different computers. First, the <tt class="docutils literal"><span class="pre">public</span></tt> repository is where tested, polished changesets live, and it is where you synchronize with the rest of your team.
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg init public
+</pre>
+ </div>
+ </div>
+ <p>
+ We’ll need two clones where work gets done, <tt class="docutils literal"><span class="pre">test-repo</span></tt> and <tt class="docutils literal"><span class="pre">dev-repo</span></tt>:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg clone public test-repo
+updating to branch default
+0 files updated, 0 files merged, 0 files removed, 0 files unresolved
+$ hg clone test-repo dev-repo
+updating to branch default
+0 files updated, 0 files merged, 0 files removed, 0 files unresolved
+</pre>
+ </div>
+ </div>
+ <p>
+ <tt class="docutils literal"><span class="pre">dev-repo</span></tt> is your local machine, with GUI merge tools and IDEs and everything configured just the way you like it. <tt class="docutils literal"><span class="pre">test-repo</span></tt> is the test server in a rack somewhere behind SSH. So for the most part, we’ll develop in <tt class="docutils literal"><span class="pre">dev-repo</span></tt>, push to <tt class="docutils literal"><span class="pre">test-repo</span></tt>, test and polish there, and push to <tt class="docutils literal"><span class="pre">public</span></tt>.
+ </p>
+ <p>
+ The key to shared mutable history is to make the target repository, in this case <tt class="docutils literal"><span class="pre">test-repo</span></tt>, non-publishing. And, of course, we have to enable the <tt class="docutils literal"><span class="pre">evolve</span></tt> extension in both <tt class="docutils literal"><span class="pre">test-repo</span></tt> and <tt class="docutils literal"><span class="pre">dev-repo</span></tt>.
+ </p>
+ <p>
+ First, edit the configuration for <tt class="docutils literal"><span class="pre">test-repo</span></tt>:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg -R test-repo config --edit --local
+</pre>
+ </div>
+ </div>
+ <p>
+ and add
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>[phases]
+publish = false
+
+[extensions]
+evolve =
+</pre>
+ </div>
+ </div>
+ <p>
+ Then edit the configuration for <tt class="docutils literal"><span class="pre">dev-repo</span></tt>:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg -R dev-repo config --edit --local
+</pre>
+ </div>
+ </div>
+ <p>
+ and add
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>[extensions]
+evolve =
+</pre>
+ </div>
+ </div>
+ <p>
+ Keep in mind that in real life, these repositories would probably be on separate computers, so you’d have to login to each one to configure each repository.
+ </p>
+ <p>
+ To start things off, let’s make one public, immutable changeset:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ cd test-repo
+$ echo 'my new project' &gt; file1
+$ hg add file1
+$ hg commit -m 'create new project'
+$ hg push
+[...]
+added 1 changesets with 1 changes to 1 files
+</pre>
+ </div>
+ </div>
+ <p>
+ and pull that into the development repository:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ cd ../dev-repo
+$ hg pull -u
+[...]
+added 1 changesets with 1 changes to 1 files
+1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+</pre>
+ </div>
+ </div>
+ </div>
+ <div class="section" id="example-1-amend-a-shared-changeset">
+ <h3>
+ <a class="toc-backref" href="#id8">Example 1: Amend a shared changeset</a><a class="headerlink" href="#example-1-amend-a-shared-changeset" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ Everything you learned in the <a class="reference external" href="user-guide.html">user guide</a> applies to work done in <tt class="docutils literal"><span class="pre">dev-repo</span></tt>. You can commit, amend, uncommit, evolve, and so forth just as before.
+ </p>
+ <p>
+ Things get different when you push changesets to <tt class="docutils literal"><span class="pre">test-repo</span></tt>. Or rather, things stay the same, which <em>is</em> different: because we configured <tt class="docutils literal"><span class="pre">test-repo</span></tt> to be non-publishing, draft changesets stay draft when we push them to <tt class="docutils literal"><span class="pre">test-repo</span></tt>. Importantly, they’re also draft (mutable) in <tt class="docutils literal"><span class="pre">test-repo</span></tt>.
+ </p>
+ <p>
+ Let’s commit a preliminary change and push it to <tt class="docutils literal"><span class="pre">test-repo</span></tt> for testing.
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ echo 'fix fix fix' &gt; file1
+$ hg commit -m 'prelim change'
+$ hg push ../test-repo
+</pre>
+ </div>
+ </div>
+ <p>
+ At this point, <tt class="docutils literal"><span class="pre">dev-repo</span></tt> and <tt class="docutils literal"><span class="pre">test-repo</span></tt> have the same changesets in the same phases:
+ </p>
+ <blockquote>
+ <div>
+ [figure SG01: rev 0:0dc9 public, rev 1:f649 draft, same on both repos]
+ </div>
+ </blockquote>
+ <p>
+ (You may notice a change in notation from the user guide: now changesets are labelled with their revision number and the first four digits of the 40-digit hexadecimal changeset ID. Mercurial revision numbers are never stable when working across repositories, especially when obsolescence is involved. We’ll see why shortly.)
+ </p>
+ <p>
+ Now let’s switch to <tt class="docutils literal"><span class="pre">test-repo</span></tt> to test our change:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ cd ../test-repo
+$ hg update
+</pre>
+ </div>
+ </div>
+ <p>
+ Don’t forget to <tt class="docutils literal"><span class="pre">hg</span> <span class="pre">update</span></tt>! Pushing only adds changesets to a remote repository; it does not update the working directory (unless you have a hook that updates for you).
+ </p>
+ <p>
+ Now let’s imagine the tests failed because we didn’t use proper punctuation and capitalization (oops). Let’s amend our preliminary fix (and fix the lame commit message while we’re at it):
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ echo 'Fix fix fix.' &gt; file1
+$ hg amend -m 'fix bug 37'
+</pre>
+ </div>
+ </div>
+ <p>
+ Now we’re in a funny intermediate state (figure 2): revision 1:f649 is obsolete in <tt class="docutils literal"><span class="pre">test-repo</span></tt>, having been replaced by revision 3:60ff (revision 2:2a03 is another one of those temporary amend commits that we saw in the user guide)—but <tt class="docutils literal"><span class="pre">dev-repo</span></tt> knows nothing of these recent developments.
+ </p>
+ <blockquote>
+ <div>
+ [figure SG02: test-repo has rev 0:0dc9 public, rev 1:f649, 2:2a03 obsolete, rev 3:60ff draft; dev-repo same as in SG01]
+ </div>
+ </blockquote>
+ <p>
+ Let’s resynchronize:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ cd ../dev-repo
+$ hg pull -u
+[...]
+added 1 changesets with 1 changes to 1 files (+1 heads)
+1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+</pre>
+ </div>
+ </div>
+ <p>
+ As seen in figure 3, this transfers the new changeset <em>and</em> the obsolescence marker for revision 1. However, it does <em>not</em> transfer the temporary amend commit, because it is hidden. Push and pull transfer obsolescence markers between repositories, but they do not transfer hidden changesets.
+ </p>
+ <blockquote>
+ <div>
+ [figure SG03: dev-repo grows new rev 2:60ff, marks 1:f649 obsolete]
+ </div>
+ </blockquote>
+ <p>
+ Because of this deliberately incomplete synchronization, revision numbers in <tt class="docutils literal"><span class="pre">test-repo</span></tt> and <tt class="docutils literal"><span class="pre">dev-repo</span></tt> are no longer consistent. We <em>must</em> use changeset IDs.
+ </p>
+ </div>
+ <div class="section" id="example-2-amend-again-locally">
+ <h3>
+ <a class="toc-backref" href="#id9">Example 2: Amend again, locally</a><a class="headerlink" href="#example-2-amend-again-locally" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ This process can repeat. Perhaps you figure out a more elegant fix to the bug, and want to mutate history so nobody ever knows you had a less-than-perfect idea. We’ll implement it locally in <tt class="docutils literal"><span class="pre">dev-repo</span></tt> and push to <tt class="docutils literal"><span class="pre">test-repo</span></tt>:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ echo 'Fix, fix, and fix.' &gt; file1
+$ hg amend
+$ hg push
+</pre>
+ </div>
+ </div>
+ <p>
+ This time around, the temporary amend commit is in <tt class="docutils literal"><span class="pre">dev-repo</span></tt>, and it is not transferred to <tt class="docutils literal"><span class="pre">test-repo</span></tt>—the same as before, just in the opposite direction. Figure 4 shows the two repositories after amending in <tt class="docutils literal"><span class="pre">dev-repo</span></tt> and pushing to <tt class="docutils literal"><span class="pre">test-repo</span></tt>.
+ </p>
+ <blockquote>
+ <div>
+ [figure SG04: each repo has one temporary amend commit, but they’re different in each one]
+ </div>
+ </blockquote>
+ <p>
+ Let’s hop over to <tt class="docutils literal"><span class="pre">test-repo</span></tt> to test the more elegant fix:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ cd ../test-repo
+$ hg update
+1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+</pre>
+ </div>
+ </div>
+ <p>
+ This time, all the tests pass, so no further amending is required. This bug fix is finished, so we push it to the public repository:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg push
+[...]
+added 1 changesets with 1 changes to 1 files
+</pre>
+ </div>
+ </div>
+ <p>
+ Note that only one changeset—the final version, after two amendments—was actually pushed. Again, Mercurial doesn’t transfer hidden changesets on push and pull.
+ </p>
+ <p>
+ So the picture in <tt class="docutils literal"><span class="pre">public</span></tt> is much simpler than in either <tt class="docutils literal"><span class="pre">dev-repo</span></tt> or <tt class="docutils literal"><span class="pre">test-repo</span></tt>. Neither of our missteps nor our amendments are publicly visible, just the final, beautifully polished changeset:
+ </p>
+ <blockquote>
+ <div>
+ [figure SG05: public repo with rev 0:0dc9, 1:de61, both public]
+ </div>
+ </blockquote>
+ <p>
+ There is one important step left to do. Because we pushed from <tt class="docutils literal"><span class="pre">test-repo</span></tt> to <tt class="docutils literal"><span class="pre">public</span></tt>, the pushed changeset is in <em>public</em> phase in those two repositories. But <tt class="docutils literal"><span class="pre">dev-repo</span></tt> has been out-of-the-loop; changeset de61 is still <em>draft</em> there. If we’re not careful, we might mutate history in <tt class="docutils literal"><span class="pre">dev-repo</span></tt>, obsoleting a changeset that is already public. Let’s avoid that situation for now by pushing up to <tt class="docutils literal"><span class="pre">dev-repo</span></tt>:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg push ../dev-repo
+pushing to ../dev-repo
+searching for changes
+no changes found
+</pre>
+ </div>
+ </div>
+ <p>
+ Even though no <em>changesets</em> were pushed, Mercurial still pushed obsolescence markers and phase changes to <tt class="docutils literal"><span class="pre">dev-repo</span></tt>.
+ </p>
+ <p>
+ A final note: since this fix is now <em>public</em>, it is immutable. It’s no longer possible to amend it:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg amend -m 'fix bug 37'
+abort: cannot amend public changesets
+</pre>
+ </div>
+ </div>
+ <p>
+ This is, after all, the whole point of Mercurial’s phases: to prevent rewriting history that has already been published.
+ </p>
+ </div>
+ </div>
+ <div class="section" id="sharing-with-multiple-developers-code-review">
+ <h2>
+ <a class="toc-backref" href="#id10">Sharing with multiple developers: code review</a><a class="headerlink" href="#sharing-with-multiple-developers-code-review" title="Permalink to this headline">¶</a>
+ </h2>
+ <p>
+ Now that you know how to share your own mutable history across multiple computers, you might be wondering if it makes sense to share mutable history with others. It does, but you have to be careful, stay alert, and <em>communicate</em> with your peers.
+ </p>
+ <p>
+ Code review is a good use case for sharing mutable history across multiple developers: Alice commits a draft changeset, submits it for review, and amends her changeset until her reviewer is satisfied. Meanwhile, Bob is also committing draft changesets for review, amending until his reviewer is satisfied. Once a particular changeset passes review, the respective author (Alice or Bob) pushes it to the public (publishing) repository.
+ </p>
+ <p>
+ Incidentally, the reviewers here can be anyone: maybe Bob and Alice review each other’s work; maybe the same third party reviews both; or maybe they pick different experts to review their work on different parts of a large codebase. Similarly, it doesn’t matter if reviews are conducted in person, by email, or by carrier pigeon. Code review is outside of the scope of Mercurial, so all we’re looking at here is the mechanics of committing, amending, pushing, and pulling.
+ </p>
+ <div class="section" id="id2">
+ <h3>
+ <a class="toc-backref" href="#id11">Setting up</a><a class="headerlink" href="#id2" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ To demonstrate, let’s start with the <tt class="docutils literal"><span class="pre">public</span></tt> repository as we left it in the last example, with two immutable changesets (figure 5 above). We’ll clone a <tt class="docutils literal"><span class="pre">review</span></tt> repository from it, and then Alice and Bob will both clone from <tt class="docutils literal"><span class="pre">review</span></tt>.
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg clone public review
+updating to branch default
+1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+$ hg clone review alice
+updating to branch default
+1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+$ hg clone review bob
+updating to branch default
+1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+</pre>
+ </div>
+ </div>
+ <p>
+ We need to configure Alice’s and Bob’s working repositories to enable <tt class="docutils literal"><span class="pre">evolve</span></tt>. First, edit Alice’s configuration with
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg -R alice config --edit --local
+</pre>
+ </div>
+ </div>
+ <p>
+ and add
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>[extensions]
+evolve =
+</pre>
+ </div>
+ </div>
+ <p>
+ Then edit Bob’s repository configuration:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg -R bob config --edit --local
+</pre>
+ </div>
+ </div>
+ <p>
+ and add the same text.
+ </p>
+ </div>
+ <div class="section" id="example-3-alice-commits-and-amends-a-draft-fix">
+ <h3>
+ <a class="toc-backref" href="#id12">Example 3: Alice commits and amends a draft fix</a><a class="headerlink" href="#example-3-alice-commits-and-amends-a-draft-fix" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ We’ll follow Alice working on a bug fix. We’re going to use bookmarks to make it easier to understand multiple branch heads in the <tt class="docutils literal"><span class="pre">review</span></tt> repository, so Alice starts off by creating a bookmark and committing her first attempt at a fix:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg bookmark bug15
+$ echo 'fix' &gt; file2
+$ hg commit -A -u alice -m 'fix bug 15 (v1)'
+adding file2
+</pre>
+ </div>
+ </div>
+ <p>
+ Note the unorthodox “(v1)” in the commit message. We’re just using that to make this tutorial easier to follow; it’s not something we’d recommend in real life.
+ </p>
+ <p>
+ Of course Alice wouldn’t commit unless her fix worked to her satisfaction, so it must be time to solicit a code review. She does this by pushing to the <tt class="docutils literal"><span class="pre">review</span></tt> repository:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg push -B bug15
+[...]
+added 1 changesets with 1 changes to 1 files
+exporting bookmark bug15
+</pre>
+ </div>
+ </div>
+ <p>
+ (The use of <tt class="docutils literal"><span class="pre">-B</span></tt> is important to ensure that we only push the bookmarked head, and that the bookmark itself is pushed. See this <a class="reference external" href="http://mercurial.aragost.com/kick-start/en/bookmarks/">guide to bookmarks</a>, especially the <a class="reference external" href="http://mercurial.aragost.com/kick-start/en/bookmarks/#sharing-bookmarks">Sharing Bookmarks</a> section, if you’re not familiar with bookmarks.)
+ </p>
+ <p>
+ Some time passes, and Alice receives her code review. As a result, Alice revises her fix and submits it for a second review:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ echo 'Fix.' &gt; file2
+$ hg amend -m 'fix bug 15 (v2)'
+$ hg push
+[...]
+added 1 changesets with 1 changes to 1 files (+1 heads)
+updating bookmark bug15
+</pre>
+ </div>
+ </div>
+ <p>
+ Figure 6 shows the state of the <tt class="docutils literal"><span class="pre">review</span></tt> repository at this point.
+ </p>
+ <blockquote>
+ <div>
+ [figure SG06: rev 2:fn1e is Alice’s obsolete v1, rev 3:cbdf is her v2; both children of rev 1:de61]
+ </div>
+ </blockquote>
+ <p>
+ After a busy morning of bug fixing, Alice stops for lunch. Let’s see what Bob has been up to.
+ </p>
+ </div>
+ <div class="section" id="example-4-bob-implements-and-publishes-a-new-feature">
+ <h3>
+ <a class="toc-backref" href="#id13">Example 4: Bob implements and publishes a new feature</a><a class="headerlink" href="#example-4-bob-implements-and-publishes-a-new-feature" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ Meanwhile, Bob has been working on a new feature. Like Alice, he’ll use a bookmark to track his work, and he’ll push that bookmark to the <tt class="docutils literal"><span class="pre">review</span></tt> repository, so that reviewers know which changesets to review.
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ cd ../bob
+$ echo 'stuff' &gt; file1
+$ hg bookmark featureX
+$ hg commit -u bob -m 'implement feature X (v1)' # rev 4:1636
+$ hg push -B featureX
+[...]
+added 1 changesets with 1 changes to 1 files (+1 heads)
+exporting bookmark featureX
+</pre>
+ </div>
+ </div>
+ <p>
+ When Bob receives his code review, he improves his implementation a bit, amends, and submits the resulting changeset for review:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ echo 'do stuff' &gt; file1
+$ hg amend -m 'implement feature X (v2)' # rev 5:0eb7
+$ hg push
+[...]
+added 1 changesets with 1 changes to 1 files (+1 heads)
+updating bookmark featureX
+</pre>
+ </div>
+ </div>
+ <p>
+ Unfortunately, that still doesn’t pass muster. Bob’s reviewer insists on proper capitalization and punctuation.
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ echo 'Do stuff.' &gt; file1
+$ hg amend -m 'implement feature X (v3)' # rev 6:540b
+</pre>
+ </div>
+ </div>
+ <p>
+ On the bright side, the second review said, “Go ahead and publish once you fix that.” So Bob immediately publishes his third attempt:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg push ../public
+[...]
+added 1 changesets with 1 changes to 1 files
+</pre>
+ </div>
+ </div>
+ <p>
+ It’s not enough just to update <tt class="docutils literal"><span class="pre">public</span></tt>, though! Other people also use the <tt class="docutils literal"><span class="pre">review</span></tt> repository, and right now it doesn’t have Bob’s latest amendment (“v3”, revision 6:540b), nor does it know that the precursor of that changeset (“v2”, revision 5:0eb7) is obsolete. Thus, Bob pushes to <tt class="docutils literal"><span class="pre">review</span></tt> as well:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg push ../review
+[...]
+added 1 changesets with 1 changes to 1 files (+1 heads)
+updating bookmark featureX
+</pre>
+ </div>
+ </div>
+ <p>
+ Figure 7 shows the result of Bob’s work in both <tt class="docutils literal"><span class="pre">review</span></tt> and <tt class="docutils literal"><span class="pre">public</span></tt>.
+ </p>
+ <blockquote>
+ <div>
+ [figure SG07: review includes Alice’s draft work on bug 15, as well as Bob’s v1, v2, and v3 changes for feature X: v1 and v2 obsolete, v3 public. public contains only the final, public implementation of feature X]
+ </div>
+ </blockquote>
+ <p>
+ Incidentally, it’s important that Bob push to <tt class="docutils literal"><span class="pre">public</span></tt> <em>before</em> <tt class="docutils literal"><span class="pre">review</span></tt>. If he pushed to <tt class="docutils literal"><span class="pre">review</span></tt> first, then revision 6:540b would still be in <em>draft</em> phase in <tt class="docutils literal"><span class="pre">review</span></tt>, but it would be <em>public</em> in both Bob’s local repository and the <tt class="docutils literal"><span class="pre">public</span></tt> repository. That could lead to confusion at some point, which is easily avoided by pushing first to <tt class="docutils literal"><span class="pre">public</span></tt>.
+ </p>
+ </div>
+ <div class="section" id="example-5-alice-integrates-and-publishes">
+ <h3>
+ <a class="toc-backref" href="#id14">Example 5: Alice integrates and publishes</a><a class="headerlink" href="#example-5-alice-integrates-and-publishes" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ Finally, Alice gets back from lunch and sees that the carrier pigeon with her second review has arrived (or maybe it’s in her email inbox). Alice’s reviewer approved her amended changeset, so she pushes it to <tt class="docutils literal"><span class="pre">public</span></tt>:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg push ../public
+[...]
+remote has heads on branch 'default' that are not known locally: 540ba8f317e6
+abort: push creates new remote head cbdfbd5a5db2!
+(pull and merge or see "hg help push" for details about pushing new heads)
+</pre>
+ </div>
+ </div>
+ <p>
+ Oops! Bob has won the race to push first to <tt class="docutils literal"><span class="pre">public</span></tt>. So Alice needs to integrate with Bob: let’s pull his changeset(s) and see what the branch heads are.
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg pull ../public
+[...]
+added 1 changesets with 1 changes to 1 files (+1 heads)
+(run 'hg heads' to see heads, 'hg merge' to merge)
+$ hg log -G -q -r 'head()' --template '{rev}:{node|short} ({author})\n'
+o 5:540ba8f317e6 (bob)
+|
+| @ 4:cbdfbd5a5db2 (alice)
+|/
+</pre>
+ </div>
+ </div>
+ <p>
+ We’ll assume Alice and Bob are perfectly comfortable with rebasing changesets. (After all, they’re already using mutable history in the form of <tt class="docutils literal"><span class="pre">amend</span></tt>.) So Alice rebases her changeset on top of Bob’s and publishes the result:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg rebase -d 5
+$ hg push ../public
+[...]
+added 1 changesets with 1 changes to 1 files
+$ hg push ../review
+[...]
+added 1 changesets with 0 changes to 0 files
+updating bookmark bug15
+</pre>
+ </div>
+ </div>
+ <p>
+ The result, in both <tt class="docutils literal"><span class="pre">review</span></tt> and <tt class="docutils literal"><span class="pre">public</span></tt> repositories, is shown in figure 8.
+ </p>
+ <blockquote>
+ <div>
+ [figure SG08: review shows v1 and v2 of Alice’s fix, then v1, v2, v3 of Bob’s feature, finally Alice’s fix rebased onto Bob’s. public just shows the final public version of each changeset]
+ </div>
+ </blockquote>
+ </div>
+ </div>
+ <div class="section" id="getting-into-trouble-with-shared-mutable-history">
+ <h2>
+ <a class="toc-backref" href="#id15">Getting into trouble with shared mutable history</a><a class="headerlink" href="#getting-into-trouble-with-shared-mutable-history" title="Permalink to this headline">¶</a>
+ </h2>
+ <p>
+ Mercurial with <tt class="docutils literal"><span class="pre">evolve</span></tt> is a powerful tool, and using powerful tools can have consequences. (You can cut yourself badly with a sharp knife, but every competent chef keeps several around. Ever try to chop onions with a spoon?)
+ </p>
+ <p>
+ In the user guide, we saw examples of <em>unstbale</em> changesets, which are the most common type of troubled changeset. (Recall that a non-obsolete changeset with obsolete ancestors is an orphan.)
+ </p>
+ <p>
+ Two other types of troubles can happen: <em>divergent</em> and <em>bumped</em> changesets. Both are more likely with shared mutable history, especially mutable history shared by multiple developers.
+ </p>
+ <div class="section" id="id3">
+ <h3>
+ <a class="toc-backref" href="#id16">Setting up</a><a class="headerlink" href="#id3" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ For these examples, we’re going to use a slightly different workflow: as before, Alice and Bob share a <tt class="docutils literal"><span class="pre">public</span></tt> repository. But this time there is no <tt class="docutils literal"><span class="pre">review</span></tt> repository. Instead, Alice and Bob put on their cowboy hats, throw good practice to the wind, and pull directly from each other’s working repositories.
+ </p>
+ <p>
+ So we throw away everything except <tt class="docutils literal"><span class="pre">public</span></tt> and reclone:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ rm -rf review alice bob
+$ hg clone public alice
+updating to branch default
+2 files updated, 0 files merged, 0 files removed, 0 files unresolved
+$ hg clone public bob
+updating to branch default
+2 files updated, 0 files merged, 0 files removed, 0 files unresolved
+</pre>
+ </div>
+ </div>
+ <p>
+ Once again we have to configure their repositories: enable <tt class="docutils literal"><span class="pre">evolve</span></tt> and (since Alice and Bob will be pulling directly from each other) make their repositories non-publishing. Edit Alice’s configuration:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg -R alice config --edit --local
+</pre>
+ </div>
+ </div>
+ <p>
+ and add
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>[extensions]
+rebase =
+evolve =
+
+[phases]
+publish = false
+</pre>
+ </div>
+ </div>
+ <p>
+ Then edit Bob’s repository configuration:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg -R bob config --edit --local
+</pre>
+ </div>
+ </div>
+ <p>
+ and add the same text.
+ </p>
+ </div>
+ <div class="section" id="example-6-divergent-changesets">
+ <h3>
+ <a class="toc-backref" href="#id17">Example 6: Divergent changesets</a><a class="headerlink" href="#example-6-divergent-changesets" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ When an obsolete changeset has two successors, those successors are <em>divergent</em>. One way to get into such a situation is by failing to communicate with your teammates. Let’s see how that might happen.
+ </p>
+ <p>
+ First, we’ll have Bob commit a bug fix that could still be improved:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ cd bob
+$ echo 'pretty good fix' &gt;&gt; file1
+$ hg commit -u bob -m 'fix bug 24 (v1)' # rev 4:2fe6
+</pre>
+ </div>
+ </div>
+ <p>
+ Since Alice and Bob are now in cowboy mode, Alice pulls Bob’s draft changeset and amends it herself.
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ cd ../alice
+$ hg pull -u ../bob
+[...]
+added 1 changesets with 1 changes to 1 files
+$ echo 'better fix (alice)' &gt;&gt; file1
+$ hg amend -u alice -m 'fix bug 24 (v2 by alice)'
+</pre>
+ </div>
+ </div>
+ <p>
+ But Bob has no idea that Alice just did this. (See how important good communication is?) So he implements a better fix of his own:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ cd ../bob
+$ echo 'better fix (bob)' &gt;&gt; file1
+$ hg amend -u bob -m 'fix bug 24 (v2 by bob)' # rev 6:a360
+</pre>
+ </div>
+ </div>
+ <p>
+ At this point, the divergence exists, but only in theory: Bob’s original changeset, 4:2fe6, is obsolete and has two successors. But those successors are in different repositories, so the trouble is not visible to anyone yet. It will be as soon as Bob pulls from Alice’s repository (or vice-versa).
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg pull ../alice
+[...]
+added 1 changesets with 1 changes to 2 files (+1 heads)
+(run 'hg heads' to see heads, 'hg merge' to merge)
+2 new divergent changesets
+</pre>
+ </div>
+ </div>
+ <p>
+ Figure 9 shows the situation in Bob’s repository.
+ </p>
+ <blockquote>
+ <div>
+ [figure SG09: Bob’s repo with 2 heads for the 2 divergent changesets, 6:a360 and 7:e3f9; wc is at 6:a360; both are successors of obsolete 4:2fe6, hence divergence]
+ </div>
+ </blockquote>
+ <p>
+ Now we need to get out of trouble. As usual, the answer is to evolve history.
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ HGMERGE=internal:other hg evolve
+merge:[6] fix bug 24 (v2 by bob)
+with: [7] fix bug 24 (v2 by alice)
+base: [4] fix bug 24 (v1)
+0 files updated, 1 files merged, 0 files removed, 0 files unresolved
+</pre>
+ </div>
+ </div>
+ <p>
+ Figure 10 shows how Bob’s repository looks now.
+ </p>
+ <blockquote>
+ <div>
+ [figure SG10: only one visible head, 9:5ad6, successor to hidden 6:a360 and 7:e3f9]
+ </div>
+ </blockquote>
+ <p>
+ We carefully dodged a merge conflict by specifying a merge tool (<tt class="docutils literal"><span class="pre">internal:other</span></tt>) that will take Alice’s changes over Bob’s. (You might wonder why Bob wouldn’t prefer his own changes by using <tt class="docutils literal"><span class="pre">internal:local</span></tt>. He’s avoiding a <a class="reference internal" href="#bug">bug</a> in <tt class="docutils literal"><span class="pre">evolve</span></tt> that occurs when evolving divergent changesets using <tt class="docutils literal"><span class="pre">internal:local</span></tt>.)
+ </p>
+ <p>
+ # XXX this link does not work .. <span class="target" id="bug">bug</span>: <a class="reference external" href="https://bitbucket.org/marmoute/mutable-history/issue/48/">https://bitbucket.org/marmoute/mutable-history/issue/48/</a>
+ </p>
+ <p>
+ ** STOP HERE: WORK IN PROGRESS **
+ </p>
+ </div>
+ <div class="section" id="phase-divergence-when-a-rewritten-changeset-is-made-public">
+ <h3>
+ <a class="toc-backref" href="#id18">Phase-divergence: when a rewritten changeset is made public</a><a class="headerlink" href="#phase-divergence-when-a-rewritten-changeset-is-made-public" title="Permalink to this headline">¶</a>
+ </h3>
+ <p>
+ If Alice and Bob are collaborating on some mutable changesets, it’s possible to get into a situation where an otherwise worthwhile changeset cannot be pushed to the public repository; it is <em>phase-divergent</em> with another changeset that was made public first. Let’s demonstrate one way this could happen.
+ </p>
+ <p>
+ It starts with Alice committing a bug fix. Right now, we don’t yet know if this bug fix is good enough to push to the public repository, but it’s good enough for Alice to commit.
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ cd alice
+$ echo 'fix' &gt; file2
+$ hg commit -A -m 'fix bug 15'
+adding file2
+</pre>
+ </div>
+ </div>
+ <p>
+ Now Bob has a bad idea: he decides to pull whatever Alice is working on and tweak her bug fix to his taste:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ cd ../bob
+$ hg pull -u ../alice
+[...]
+added 1 changesets with 1 changes to 1 files
+1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+$ echo 'Fix.' &gt; file2
+$ hg amend -A -m 'fix bug 15 (amended)'
+</pre>
+ </div>
+ </div>
+ <p>
+ (Note the lack of communication between Alice and Bob. Failing to communicate with your colleagues is a good way to get into trouble. Nevertheless, <tt class="docutils literal"><span class="pre">evolve</span></tt> can usually sort things out, as we will see.)
+ </p>
+ <blockquote>
+ <div>
+ [figure SG06: Bob’s repo with one amendment]
+ </div>
+ </blockquote>
+ <p>
+ After some testing, Alice realizes her bug fix is just fine as it is: no need for further polishing and amending, this changeset is ready to publish.
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ cd ../alice
+$ hg push
+[...]
+added 1 changesets with 1 changes to 1 files
+</pre>
+ </div>
+ </div>
+ <p>
+ This introduces a contradiction: in Bob’s repository, changeset 2:e011 (his copy of Alice’s fix) is obsolete, since Bob amended it. But in Alice’s repository (and the <tt class="docutils literal"><span class="pre">public</span></tt> repository), that changeset is public: it is immutable, carved in stone for all eternity. No changeset can be both obsolete and public, so Bob is in for a surprise the next time he pulls from <tt class="docutils literal"><span class="pre">public</span></tt>:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ cd ../bob
+$ hg pull -q -u
+1 new phase-divergent changesets
+</pre>
+ </div>
+ </div>
+ <p>
+ Figure 7 shows what just happened to Bob’s repository: changeset 2:e011 is now public, so it can’t be obsolete. When that changeset was obsolete, it made perfect sense for it to have a successor, namely Bob’s amendment of Alice’s fix (changeset 4:fe88). But it’s illogical for a public changeset to have a successor, so 4:fe88 is troubled: it has become <em>bumped</em>.
+ </p>
+ <blockquote>
+ <div>
+ [figure SG07: 2:e011 now public not obsolete, 4:fe88 now bumped]
+ </div>
+ </blockquote>
+ <p>
+ As usual when there’s trouble in your repository, the solution is to evolve it:
+ </p>
+ <div class="highlight-python">
+ <div class="highlight">
+ <pre>$ hg evolve --all
+</pre>
+ </div>
+ </div>
+ <p>
+ Figure 8 illustrates Bob’s repository after evolving away the bumped changeset. Ignoring the obsolete changesets, Bob now has a nice, clean, simple history. His amendment of Alice’s bug fix lives on, as changeset 5:227d—albeit with a software-generated commit message. (Bob should probably amend that changeset to improve the commit message.) But the important thing is that his repository no longer has any troubled changesets, thanks to <tt class="docutils literal"><span class="pre">evolve</span></tt>.
+ </p>
+ <blockquote>
+ <div>
+ [figure SG08: 5:227d is new, formerly bumped changeset 4:fe88 now hidden]
+ </div>
+ </blockquote>
+ </div>
+ </div>
+ <div class="section" id="conclusion">
+ <h2>
+ <a class="toc-backref" href="#id19">Conclusion</a><a class="headerlink" href="#conclusion" title="Permalink to this headline">¶</a>
+ </h2>
+ <p>
+ Mutable history is a powerful tool. Like a sharp knife, an experienced user can do wonderful things with it, much more wonderful than with a dull knife (never mind a rusty spoon). At the same time, an inattentive or careless user can do harm to himself or others. Mercurial with <tt class="docutils literal"><span class="pre">evolve</span></tt> goes to great lengths to limit the harm you can do by trying to handle all possible types of “troubled” changesets. Nevertheless, having a first-aid kit nearby does not mean you should stop being careful with sharp knives.
+ </p>
+ <p>
+ Mutable history shared across multiple repositories by a single developer is a natural extension of this model. Once you are used to using a single sharp knife on its own, it’s pretty straightforward to chop onions and mushrooms using the same knife, or to alternate between two chopping boards with different knives.
+ </p>
+ <p>
+ Mutable history shared by multiple developers is a scary place to go. Imagine a professional kitchen full of expert chefs tossing their favourite knives back and forth, with the occasional axe or chainsaw thrown in to spice things up. If you’re confident that you <em>and your colleagues</em> can do it without losing a limb, go for it. But be sure to practice a lot first before you rely on it!
+ </p>
+ </div>
+ </div>
+ </div>
+ <div class="bottomnav">
+ <p>
+ «&#160;&#160;<a href="user-guide.html">Evolve: User Guide</a> &#160;&#160;::&#160;&#160; <a class="uplink" href="index.html">Contents</a> &#160;&#160;::&#160;&#160; <a href="concepts.html">Evolve: Concepts</a>&#160;&#160;»
+ </p>
+ </div>
+ <div class="footer">
+ © Copyright 2010-2014, Pierre-Yves David, Greg Ward, and contributors. Last updated on Sep 21, 2017. Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.3.
+ </div>
+ </body>
+</html>
diff --git a/test/test-pages/nytimes-4/expected-images.json b/test/test-pages/nytimes-4/expected-images.json
new file mode 100644
index 0000000..58b7788
--- /dev/null
+++ b/test/test-pages/nytimes-4/expected-images.json
@@ -0,0 +1,4 @@
+[
+ "https:\/\/static01.nyt.com\/images\/2018\/09\/15\/business\/15DEBTS01\/15DEBTS01-facebookJumbo.jpg",
+ "https:\/\/static01.nyt.com\/images\/2018\/09\/15\/business\/15DEBTS01\/merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleLarge.jpg?quality=75&auto=webp&disable=upscale"
+] \ No newline at end of file
diff --git a/test/test-pages/nytimes-4/expected-metadata.json b/test/test-pages/nytimes-4/expected-metadata.json
new file mode 100644
index 0000000..52b7f13
--- /dev/null
+++ b/test/test-pages/nytimes-4/expected-metadata.json
@@ -0,0 +1,8 @@
+{
+ "Author": "By Nelson D. Schwartz",
+ "Direction": null,
+ "Excerpt": "Tax cuts, spending increases and higher interest rates could make it harder to respond to future recessions and deal with other needs.",
+ "Image": "https:\/\/static01.nyt.com\/images\/2018\/09\/15\/business\/15DEBTS01\/15DEBTS01-facebookJumbo.jpg",
+ "Title": "As Debt Rises, the Government Will Soon Spend More on Interest Than on the Military",
+ "SiteName": null
+} \ No newline at end of file
diff --git a/test/test-pages/nytimes-4/expected.html b/test/test-pages/nytimes-4/expected.html
new file mode 100644
index 0000000..855eb55
--- /dev/null
+++ b/test/test-pages/nytimes-4/expected.html
@@ -0,0 +1,214 @@
+<article id="story">
+
+ <header>
+
+
+ <p>
+ 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">
+ <figure 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">
+ <p><span>Image</span><img alt 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">
+ </p>
+ <figcaption itemprop="caption description">
+ <span>Interest payments on the federal debt could surpass the Defense Department budget in 2023.</span><span itemprop="copyrightHolder"><span>Credit</span><span><span>Credit</span><span>Jeon Heon-Kyun/EPA, via Shutterstock</span></span></span>
+ </figcaption>
+ </figure>
+ </div>
+
+ </header>
+ <section name="articleBody" itemprop="articleBody">
+ <div>
+ <p>
+ 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>
+ 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>
+ 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>
+ 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>
+ <div>
+ <p>
+ “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>
+ 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 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>
+ 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>
+
+ <div>
+ <p>
+ 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>
+ “The issue has just disappeared,” said Senator Mark Warner, a Virginia Democrat. “There’s collective amnesia.”
+ </p>
+ </div>
+ <div>
+ <p>
+ The combination, say economists, marks a journey into mostly uncharted financial territory.
+ </p>
+ <p>
+ 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>
+ 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>
+
+ <div>
+ <p>
+ 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>
+ 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>
+ 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 id="link-cb5ee12">
+ Interest costs make it harder for the government to do other things
+ </h2>
+ </div>
+
+ <div>
+ <p>
+ 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>
+ “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>
+ <div>
+ <p>
+ 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>
+ 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>
+ Mr. Trump has called for spending $1 trillion on infrastructure, but Congress has not taken up that idea.
+ </p>
+ </div>
+ <div>
+ <p>
+ More about the federal debt and the economy
+ </p>
+
+ </div>
+ <div>
+ <h2 id="link-1a1f1f7a">
+ The U.S. hasn’t faced this issue for years
+ </h2>
+ <p>
+ 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>
+ 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>
+ “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>
+
+ <div>
+ <p>
+ 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>
+ <div>
+ <p>
+ 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>
+ 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 years, according to the <a 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 id="link-7b39a7bd">
+ No, the United States isn’t at risk of becoming the next Greece
+ </h2>
+ </div>
+
+ <div>
+ <p>
+ 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>
+ 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>
+ 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>
+ “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>
+ But that privileged position has allowed politicians in both parties to avoid politically painful steps like cutting spending or raising taxes.
+ </p>
+ </div>
+ <div>
+ <p>
+ That doesn’t mean rapidly rising interest costs and a bigger deficit won’t eventually catch up with us.
+ </p>
+ <p>
+ 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 id="link-12df6cc7">
+ But Washington doesn’t want to hear about the potential problems
+ </h2>
+ <p>
+ 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>
+ 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>
+ 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>
+ “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>
+ 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>
+ <div>
+ <p>
+ 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>
+ While the Republican about-face has been much more striking, Democrats have adjusted their position, too.
+ </p>
+ <p>
+ 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>
+ The difference, Mr. Warner said, was that the economy was near the precipice then.
+ </p>
+ <p>
+ “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>
+ </section>
+ <div>
+
+ <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><a href="https://twitter.com/NelsonSchwartz" rel="noopener noreferrer" target="_blank"><span>@</span>NelsonSchwartz</a></span>
+ </p>
+ </div>
+ <div><p>
+ A version of this article appears in print on </p><p>, on Page </p><p>A</p><p>1</p><p> of the New York edition</p><p> with the headline: </p><p>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>
+ </p></div>
+
+ </div>
+
+ </article> \ No newline at end of file
diff --git a/test/test-pages/nytimes-4/source.html b/test/test-pages/nytimes-4/source.html
new file mode 100644
index 0000000..81a2a68
--- /dev/null
+++ b/test/test-pages/nytimes-4/source.html
@@ -0,0 +1,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>