Skip to content

Instantly share code, notes, and snippets.

@joewiz
Last active October 6, 2016 13:43
Show Gist options
  • Save joewiz/2f986551198c024d53c9582b83421c60 to your computer and use it in GitHub Desktop.
Save joewiz/2f986551198c024d53c9582b83421c60 to your computer and use it in GitHub Desktop.
Try to establish a date for every FRUS document
xquery version "3.1";
declare namespace tei="http://www.tei-c.org/ns/1.0";
import module namespace dates="http://xqdev.com/dateparser" at "xmldb:exist:///db/apps/twitter/modules/date-parser.xqm";
declare function local:get-date-candidate-field($div) {
let $head := normalize-space(string-join($div/tei:head[1]/node()[not(./self::tei:note)]))
let $source-note := normalize-space(string-join($div//tei:note[@type='source']))
let $body := normalize-space(string-join($div/tei:head/following-sibling::node()))
let $english-date-regex := '[A-Z][a-z]+ \d{1,2}, \d{4}'
let $parsed-head := try { analyze-string($head, $english-date-regex)//fn:match ! dates:parseDate(.)/string() } catch * {()}
let $parsed-note := try { analyze-string($source-note, $english-date-regex)//fn:match ! dates:parseDate(.)/string() } catch * {()}
let $parsed-body := try { analyze-string($body, $english-date-regex)//fn:match ! dates:parseDate(.)/string() } catch * {()}
(: TODO / BUG? look into why following-sibling fails. the sibling axis would allow us to restrict search to same chapter, reduce false values from volumes with non-chronological chapters :)
let $preceding := $div/preceding::tei:div[@type='document'][.//tei:dateline/tei:date/@when][1] ! (attribute doc-id {./@xml:id}, .//tei:dateline/tei:date/@when/string())
let $following := $div/following::tei:div[@type='document'][.//tei:dateline/tei:date/@when][1] ! (attribute doc-id {./@xml:id}, .//tei:dateline/tei:date/@when/string())
let $variance :=
if (substring($preceding[2], 1, 10) castable as xs:date and substring($following[2], 1, 10) castable as xs:date) then
days-from-duration(xs:date(substring($following[2], 1, 10)) - xs:date(substring($preceding[2], 1, 10)))
else
()
let $best-guess := ($parsed-head, $preceding[2], $following[2], $parsed-note, $parsed-body[1])[. ne ''][1] ! substring(., 1, 10)
return
<div vol="{util:document-name($div) ! substring-before(., '.xml')}">
{$div/@*}
<head>{$head}</head>
<source-note>{$source-note}</source-note>
<parsed-head>{$parsed-head}</parsed-head>
<parsed-note>{$parsed-note}</parsed-note>
<parsed-body>{$parsed-body}</parsed-body>
<preceding>{$preceding}</preceding>
<following>{$following}</following>
<neighbor-variance>{$variance}</neighbor-variance>
<best-guess>{$best-guess}</best-guess>
</div>
};
declare function local:get-date-entry($document) {
let $date := ($document/tei:dateline/tei:date)[1]
let $vol-id := substring-before(util:document-name($document), '.xml')
let $source := concat($vol-id, '#', $document/@xml:id)
let $coverage := doc(concat('/db/apps/frus/bibliography/', $vol-id, '.xml'))/volume/coverage
return
if ($date/@when) then
<document>
<date>{substring($date/@when, 1, 10)}</date>
<remark source="{$source}" not-before="{$coverage[1]}" not-after="{$coverage[2]}">{element date {$date/@*, normalize-space(string-join($date))}}</remark>
</document>
else
let $maybes := local:get-date-candidate-field($document)
let $best-guess := $maybes/best-guess
return
<document>
<date>{substring($best-guess, 1, 10)}</date>
<remark source="{$source}" not-before="{$coverage[1]}" not-after="{$coverage[2]}">{$maybes/*}</remark>
</document>
};
let $vols :=
doc('/db/apps/frus/volumes/frus1969-76v03.xml')
(: collection('/db/cms/apps/tei-content/data/frus-volumes'):)
let $documents := $vols//tei:div[@type='document']
let $date-entries :=
for $document in $documents
return
local:get-date-entry($document)
let $consolidated :=
<dates sources="{count($documents)}">{
for $entry in $date-entries
group by $date := $entry/date
order by $date
return
<documents>
{$date}
<document sources="{count($entry)}">{$entry/remark}</document>
</documents>
}</dates>
return
(: $consolidated:)
xmldb:store('/db', 'dates.xml', $consolidated)
<dates sources="244">
<documents>
<date>1969-01-21</date>
<document sources="3">
<remark source="frus1969-76v03#d109" not-before="1969" not-after="1976">
<date when="1969-01-21">January 21, 1969</date>
</remark>
<remark source="frus1969-76v03#d110" not-before="1969" not-after="1976">
<head>110. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1970-11-23 1971-05-09 1971-08-15 1971-08-15</parsed-body>
<preceding doc-id="d109">1969-01-21</preceding>
<following doc-id="d112">1969-01-31T01:15:00Z</following>
<neighbor-variance>10</neighbor-variance>
<best-guess>1969-01-21</best-guess>
</remark>
<remark source="frus1969-76v03#d111" not-before="1969" not-after="1976">
<head>111. Volcker Group Paper</head>
<source-note>Source: Washington National Records Center, Department of the Treasury, Volcker Group Masters: FRC 56 86 30, VG/LIM/1-VG/LIM/30. Confidential; Limdis. A January 30 draft indicates the paper was drafted by Willis. (Ibid., Deputy Assistant Secretary of the Treasury for International Affairs, Contingency Planning 1965-1973: FRC 56 83 26) Two other papers, VG/LIM/69-3 (“U.S.-U.K. Arrangements for Joint Contingency Planning,” dated January 31) and VG/LIM/69-4 (“Possibilities for Dealing with Situation Created by ‘Aggressive’ Exchange Rate Action by the French,” dated January 31), are attached. The three papers were to be discussed at the Volcker Group's February 3 meeting. No record of the discussion was found.</source-note>
<parsed-head/>
<parsed-note/>
<parsed-body/>
<preceding doc-id="d109">1969-01-21</preceding>
<following doc-id="d112">1969-01-31T01:15:00Z</following>
<neighbor-variance>10</neighbor-variance>
<best-guess>1969-01-21</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1969-01-28</date>
<document sources="5">
<remark source="frus1969-76v03#d1" not-before="1969" not-after="1976">
<head>1. Summary of the Report of the Task Force on U.S. Balance of Payments Policies</head>
<source-note>Source: National Archives, Nixon Presidential Materials, Transitional Task Force Reports 1968-1969, Task Force Summaries (Arthur F. Burns, 1/18/69). No classification marking. Forwarded to the President-elect under cover of a January 18 letter from Arthur F. Burns in his capacity as Chairman of the Program Coordination Committee. Burns' letter is on the stationery of the Office of the President-elect and bears a New York address. The undated, 33-page Report of the Task Force on U.S. Balance of Payments Policies, chaired by Gottfried Haberler, is ibid., Task Force on U.S. Balance of Payments Policies.</source-note>
<parsed-head/>
<parsed-note/>
<parsed-body/>
<preceding/>
<following doc-id="d3">1969-01-28</following>
<neighbor-variance/>
<best-guess>1969-01-28</best-guess>
</remark>
<remark source="frus1969-76v03#d2" not-before="1969" not-after="1976">
<head>2. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1969-03-26 1969-04-26 1969-03-26 1968-12-31</parsed-body>
<preceding/>
<following doc-id="d3">1969-01-28</following>
<neighbor-variance/>
<best-guess>1969-01-28</best-guess>
</remark>
<remark source="frus1969-76v03#d3" not-before="1969" not-after="1976">
<date when="1969-01-28">January 28, 1969</date>
</remark>
<remark source="frus1969-76v03#d4" not-before="1969" not-after="1976">
<date when="1969-01-28">January 28, 1969</date>
</remark>
<remark source="frus1969-76v03#d5" not-before="1969" not-after="1976">
<date when="1969-01-28">January 28, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-01-31</date>
<document sources="1">
<remark source="frus1969-76v03#d112" not-before="1969" not-after="1976">
<date when="1969-01-31T01:15:00Z">January 31, 1969, 0115Z</date>
</remark>
</document>
</documents>
<documents>
<date>1969-02-06</date>
<document sources="2">
<remark source="frus1969-76v03#d6" not-before="1969" not-after="1976">
<date when="1969-02-06">February 6, 1969</date>
</remark>
<remark source="frus1969-76v03#d113" not-before="1969" not-after="1976">
<date when="1969-02-06">February 6, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-02-09</date>
<document sources="1">
<remark source="frus1969-76v03#d114" not-before="1969" not-after="1976">
<date when="1969-02-09T12:22:00Z">February 9, 1969, 1222Z</date>
</remark>
</document>
</documents>
<documents>
<date>1969-02-18</date>
<document sources="1">
<remark source="frus1969-76v03#d115" not-before="1969" not-after="1976">
<date when="1969-02-18">February 18, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-02-19</date>
<document sources="3">
<remark source="frus1969-76v03#d116" not-before="1969" not-after="1976">
<date when="1969-02-19">February 19, 1969</date>
</remark>
<remark source="frus1969-76v03#d117" not-before="1969" not-after="1976">
<date when="1969-02-19T02:22:00Z">February 19, 1969, 0222Z</date>
</remark>
<remark source="frus1969-76v03#d118" not-before="1969" not-after="1976">
<head>118. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1969-03-11</parsed-body>
<preceding doc-id="d117">1969-02-19T02:22:00Z</preceding>
<following doc-id="d119">1969-03-17</following>
<neighbor-variance>26</neighbor-variance>
<best-guess>1969-02-19</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1969-03-02</date>
<document sources="1">
<remark source="frus1969-76v03#d7" not-before="1969" not-after="1976">
<date when="1969-03-02">March 2, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-03-11</date>
<document sources="2">
<remark source="frus1969-76v03#d8" not-before="1969" not-after="1976">
<date when="1969-03-11T10:00:00">March 11, 1969, 10 a.m.</date>
</remark>
<remark source="frus1969-76v03#d9" not-before="1969" not-after="1976">
<head>9. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1969-03-14 1962-06-07</parsed-body>
<preceding doc-id="d8">1969-03-11T10:00:00</preceding>
<following doc-id="d10">1969-03-17</following>
<neighbor-variance>6</neighbor-variance>
<best-guess>1969-03-11</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1969-03-17</date>
<document sources="4">
<remark source="frus1969-76v03#d10" not-before="1969" not-after="1976">
<date when="1969-03-17">March 17, 1969</date>
</remark>
<remark source="frus1969-76v03#d11" not-before="1969" not-after="1976">
<date when="1969-03-17">March 17, 1969</date>
</remark>
<remark source="frus1969-76v03#d12" not-before="1969" not-after="1976">
<date when="1969-03-17">March 17, 1969</date>
</remark>
<remark source="frus1969-76v03#d119" not-before="1969" not-after="1976">
<date when="1969-03-17">March 17, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-03-24</date>
<document sources="1">
<remark source="frus1969-76v03#d13" not-before="1969" not-after="1976">
<date when="1969-03-24">March 24, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-03-26</date>
<document sources="1">
<remark source="frus1969-76v03#d14" not-before="1969" not-after="1976">
<date when="1969-03-26T20:10:00Z">March 26, 1969, 2010Z</date>
</remark>
</document>
</documents>
<documents>
<date>1969-03-27</date>
<document sources="1">
<remark source="frus1969-76v03#d120" not-before="1969" not-after="1976">
<date when="1969-03-27T14:45:00Z">March 27, 1969, 1445Z</date>
</remark>
</document>
</documents>
<documents>
<date>1969-04-01</date>
<document sources="2">
<remark source="frus1969-76v03#d15" not-before="1969" not-after="1976">
<date when="1969-04-01">April 1, 1969</date>
</remark>
<remark source="frus1969-76v03#d16" not-before="1969" not-after="1976">
<date when="1969-04-01">April 1, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-04-03</date>
<document sources="2">
<remark source="frus1969-76v03#d17" not-before="1969" not-after="1976">
<date when="1969-04-03">April 3, 1969</date>
</remark>
<remark source="frus1969-76v03#d18" not-before="1969" not-after="1976">
<head>18. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1969-04-08</parsed-body>
<preceding doc-id="d17">1969-04-03</preceding>
<following doc-id="d19">1969-04-14</following>
<neighbor-variance>11</neighbor-variance>
<best-guess>1969-04-03</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1969-04-12</date>
<document sources="1">
<remark source="frus1969-76v03#d121" not-before="1969" not-after="1976">
<date when="1969-04-12T01:27:00Z">April 12, 1969, 0127Z</date>
</remark>
</document>
</documents>
<documents>
<date>1969-04-14</date>
<document sources="2">
<remark source="frus1969-76v03#d19" not-before="1969" not-after="1976">
<date when="1969-04-14">April 14, 1969</date>
</remark>
<remark source="frus1969-76v03#d20" not-before="1969" not-after="1976">
<head>20. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1969-01-21</parsed-body>
<preceding doc-id="d19">1969-04-14</preceding>
<following doc-id="d21">1969-05-13</following>
<neighbor-variance>29</neighbor-variance>
<best-guess>1969-04-14</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1969-05-01</date>
<document sources="1">
<remark source="frus1969-76v03#d122" not-before="1969" not-after="1976">
<date when="1969-05-01T10:45:00">May 1, 1969, 10:45 a.m.</date>
</remark>
</document>
</documents>
<documents>
<date>1969-05-02</date>
<document sources="1">
<remark source="frus1969-76v03#d123" not-before="1969" not-after="1976">
<date when="1969-05-02">May 2, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-05-07</date>
<document sources="2">
<remark source="frus1969-76v03#d124" not-before="1969" not-after="1976">
<date when="1969-05-07">May 7, 1969</date>
</remark>
<remark source="frus1969-76v03#d125" not-before="1969" not-after="1976">
<head>125. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body/>
<preceding doc-id="d124">1969-05-07</preceding>
<following doc-id="d126">1969-05-10</following>
<neighbor-variance>3</neighbor-variance>
<best-guess>1969-05-07</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1969-05-10</date>
<document sources="2">
<remark source="frus1969-76v03#d126" not-before="1969" not-after="1976">
<date when="1969-05-10">May 10, 1969</date>
</remark>
<remark source="frus1969-76v03#d127" not-before="1969" not-after="1976">
<head>127. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1969-05-27</parsed-body>
<preceding doc-id="d126">1969-05-10</preceding>
<following doc-id="d128">1969-06-03T23:16:00Z</following>
<neighbor-variance>24</neighbor-variance>
<best-guess>1969-05-10</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1969-05-13</date>
<document sources="1">
<remark source="frus1969-76v03#d21" not-before="1969" not-after="1976">
<date when="1969-05-13">May 13, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-05-26</date>
<document sources="3">
<remark source="frus1969-76v03#d22" not-before="1969" not-after="1976">
<date when="1969-05-26">May 26, 1969</date>
</remark>
<remark source="frus1969-76v03#d23" not-before="1969" not-after="1976">
<head>23. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1969-08-05</parsed-body>
<preceding doc-id="d22">1969-05-26</preceding>
<following doc-id="d25">1969-07-21</following>
<neighbor-variance>56</neighbor-variance>
<best-guess>1969-05-26</best-guess>
</remark>
<remark source="frus1969-76v03#d24" not-before="1969" not-after="1976">
<head>24. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1969-08-04</parsed-body>
<preceding doc-id="d22">1969-05-26</preceding>
<following doc-id="d25">1969-07-21</following>
<neighbor-variance>56</neighbor-variance>
<best-guess>1969-05-26</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1969-06-03</date>
<document sources="1">
<remark source="frus1969-76v03#d128" not-before="1969" not-after="1976">
<date when="1969-06-03T23:16:00Z">June 3, 1969, 2316Z</date>
</remark>
</document>
</documents>
<documents>
<date>1969-06-06</date>
<document sources="1">
<remark source="frus1969-76v03#d129" not-before="1969" not-after="1976">
<date when="1969-06-06">June 6, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-06-23</date>
<document sources="1">
<remark source="frus1969-76v03#d130" not-before="1969" not-after="1976">
<date when="1969-06-23">June 23, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-06-25</date>
<document sources="1">
<remark source="frus1969-76v03#d131" not-before="1969" not-after="1976">
<date when="1969-06-25">June 25, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-06-30</date>
<document sources="1">
<remark source="frus1969-76v03#d132" not-before="1969" not-after="1976">
<date when="1969-06-30T11:00:00Z">June 30, 1969, 1100Z</date>
</remark>
</document>
</documents>
<documents>
<date>1969-07-16</date>
<document sources="1">
<remark source="frus1969-76v03#d133" not-before="1969" not-after="1976">
<date when="1969-07-16">July 16, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-07-21</date>
<document sources="2">
<remark source="frus1969-76v03#d25" not-before="1969" not-after="1976">
<date when="1969-07-21">July 21, 1969</date>
</remark>
<remark source="frus1969-76v03#d26" not-before="1969" not-after="1976">
<head>26. Paper Prepared by Consultants</head>
<source-note>Source: National Archives, Nixon Presidential Materials, NSC Files, Subject Files, Box 397, A Strategic Overview. Secret. Printed here is section VIII, pp. 66-71, of the 78-page, undated paper entitled “The United States Position in the World: An Overview,” forwarded to Kissinger under cover of a memorandum from Robert Osgood on August 20. Osgood noted that the paper was his synthesis of three “sets of books” prepared by the Department of Defense, CIA, and the Department of State in response to NSSM 9 and other NSSMs and analyses, and he credited Richard N. Cooper with preparation of section VIII of the study. There is no indication of how the study was distributed or used. A copy of NSSM 9, “Review of the International Situation,” issued on January 23, is ibid., RG 59, S/S Files: Lot 80 D 212.</source-note>
<parsed-head/>
<parsed-note/>
<parsed-body/>
<preceding doc-id="d25">1969-07-21</preceding>
<following doc-id="d27">1969-09-15</following>
<neighbor-variance>56</neighbor-variance>
<best-guess>1969-07-21</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1969-07-24</date>
<document sources="1">
<remark source="frus1969-76v03#d134" not-before="1969" not-after="1976">
<date when="1969-07-24T18:50:00Z">July 24, 1969, 1850Z</date>
</remark>
</document>
</documents>
<documents>
<date>1969-07-25</date>
<document sources="2">
<remark source="frus1969-76v03#d135" not-before="1969" not-after="1976">
<date when="1969-07-25T12:30:00Z">July 25, 1969, 1230Z</date>
</remark>
<remark source="frus1969-76v03#d136" not-before="1969" not-after="1976">
<head>136. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1969-08-08</parsed-body>
<preceding doc-id="d135">1969-07-25T12:30:00Z</preceding>
<following doc-id="d137">1969-09-08</following>
<neighbor-variance>45</neighbor-variance>
<best-guess>1969-07-25</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1969-09-08</date>
<document sources="1">
<remark source="frus1969-76v03#d137" not-before="1969" not-after="1976">
<date when="1969-09-08">September 8, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-09-15</date>
<document sources="1">
<remark source="frus1969-76v03#d27" not-before="1969" not-after="1976">
<date when="1969-09-15">September 15, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-09-19</date>
<document sources="1">
<remark source="frus1969-76v03#d138" not-before="1969" not-after="1976">
<date when="1969-09-19">September 19, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-09-24</date>
<document sources="1">
<remark source="frus1969-76v03#d139" not-before="1969" not-after="1976">
<date when="1969-09-24">September 24, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-10-10</date>
<document sources="1">
<remark source="frus1969-76v03#d28" not-before="1969" not-after="1976">
<date when="1969-10-10">October 10, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-10-14</date>
<document sources="1">
<remark source="frus1969-76v03#d140" not-before="1969" not-after="1976">
<date when="1969-10-14">October 14, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-10-21</date>
<document sources="2">
<remark source="frus1969-76v03#d29" not-before="1969" not-after="1976">
<date when="1969-10-21">October 21, 1969</date>
</remark>
<remark source="frus1969-76v03#d30" not-before="1969" not-after="1976">
<head>30. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body/>
<preceding doc-id="d29">1969-10-21</preceding>
<following doc-id="d31">1969-11-28</following>
<neighbor-variance>38</neighbor-variance>
<best-guess>1969-10-21</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1969-10-24</date>
<document sources="1">
<remark source="frus1969-76v03#d141" not-before="1969" not-after="1976">
<date when="1969-10-24T23:30:00Z">October 24, 1969, 2330Z</date>
</remark>
</document>
</documents>
<documents>
<date>1969-11-06</date>
<document sources="1">
<remark source="frus1969-76v03#d142" not-before="1969" not-after="1976">
<date when="1969-11-06T17:17:00">November 6, 1969, 17:17 p.m.</date>
</remark>
</document>
</documents>
<documents>
<date>1969-11-17</date>
<document sources="1">
<remark source="frus1969-76v03#d143" not-before="1969" not-after="1976">
<date when="1969-11-17">November 17, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-11-28</date>
<document sources="1">
<remark source="frus1969-76v03#d31" not-before="1969" not-after="1976">
<date when="1969-11-28">November 28, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-12-03</date>
<document sources="1">
<remark source="frus1969-76v03#d32" not-before="1969" not-after="1976">
<date when="1969-12-03">December 3, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-12-09</date>
<document sources="1">
<remark source="frus1969-76v03#d33" not-before="1969" not-after="1976">
<date when="1969-12-09">December 9, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-12-15</date>
<document sources="1">
<remark source="frus1969-76v03#d34" not-before="1969" not-after="1976">
<date when="1969-12-15">December 15, 1969</date>
</remark>
</document>
</documents>
<documents>
<date>1969-12-29</date>
<document sources="4">
<remark source="frus1969-76v03#d144" not-before="1969" not-after="1976">
<date when="1969-12-29">December 29, 1969</date>
</remark>
<remark source="frus1969-76v03#d145" not-before="1969" not-after="1976">
<head>145. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1968-03-17 1969-07-30 1969-02-04 1968-03-17 1968-03-17 1968-03-17</parsed-body>
<preceding doc-id="d144">1969-12-29</preceding>
<following doc-id="d148">1970-09-10</following>
<neighbor-variance>255</neighbor-variance>
<best-guess>1969-12-29</best-guess>
</remark>
<remark source="frus1969-76v03#d146" not-before="1969" not-after="1976">
<head>146. Memorandum of Conversation</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body/>
<preceding doc-id="d144">1969-12-29</preceding>
<following doc-id="d148">1970-09-10</following>
<neighbor-variance>255</neighbor-variance>
<best-guess>1969-12-29</best-guess>
</remark>
<remark source="frus1969-76v03#d147" not-before="1969" not-after="1976">
<head>147. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1970-05-31 1970-01-16</parsed-body>
<preceding doc-id="d144">1969-12-29</preceding>
<following doc-id="d148">1970-09-10</following>
<neighbor-variance>255</neighbor-variance>
<best-guess>1969-12-29</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1970-02-11</date>
<document sources="1">
<remark source="frus1969-76v03#d35" not-before="1969" not-after="1976">
<date when="1970-02-11">February 11, 1970</date>
</remark>
</document>
</documents>
<documents>
<date>1970-02-26</date>
<document sources="1">
<remark source="frus1969-76v03#d36" not-before="1969" not-after="1976">
<date when="1970-02-26T10:30:00">February 26, 1970, 10:30 a.m.</date>
</remark>
</document>
</documents>
<documents>
<date>1970-03-02</date>
<document sources="3">
<remark source="frus1969-76v03#d37" not-before="1969" not-after="1976">
<date when="1970-03-02">March 2, 1970</date>
</remark>
<remark source="frus1969-76v03#d38" not-before="1969" not-after="1976">
<head>38. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1970-03-02</parsed-body>
<preceding doc-id="d37">1970-03-02</preceding>
<following doc-id="d40">1970-05-07</following>
<neighbor-variance>66</neighbor-variance>
<best-guess>1970-03-02</best-guess>
</remark>
<remark source="frus1969-76v03#d39" not-before="1969" not-after="1976">
<head>39. Paper Prepared in the Department of the Treasury</head>
<source-note>Source: Washington National Records Center, Department of the Treasury, Office of the Assistant Secretary for International Affairs: FRC 56 76 108, Commentaries and Reports, Volume 2 1966-71. Confidential. Attached to an April 3 memorandum from George H. Willis to Assistant Secretary of the Treasury Petty, which indicated that the paper originated with Widman. The text printed here is Willis' suggested revision of that paper.</source-note>
<parsed-head/>
<parsed-note/>
<parsed-body/>
<preceding doc-id="d37">1970-03-02</preceding>
<following doc-id="d40">1970-05-07</following>
<neighbor-variance>66</neighbor-variance>
<best-guess>1970-03-02</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1970-05-07</date>
<document sources="1">
<remark source="frus1969-76v03#d40" not-before="1969" not-after="1976">
<date when="1970-05-07">May 7, 1970</date>
</remark>
</document>
</documents>
<documents>
<date>1970-06-30</date>
<document sources="1">
<remark source="frus1969-76v03#d41" not-before="1969" not-after="1976">
<date when="1970-06-30">June 30, 1970</date>
</remark>
</document>
</documents>
<documents>
<date>1970-07-18</date>
<document sources="1">
<remark source="frus1969-76v03#d42" not-before="1969" not-after="1976">
<date when="1970-07-18">July 18, 1970</date>
</remark>
</document>
</documents>
<documents>
<date>1970-08-20</date>
<document sources="3">
<remark source="frus1969-76v03#d43" not-before="1969" not-after="1976">
<date when="1970-08-20">August 20, 1970</date>
</remark>
<remark source="frus1969-76v03#d44" not-before="1969" not-after="1976">
<head>44. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body/>
<preceding doc-id="d43">1970-08-20</preceding>
<following doc-id="d46">1970-10-13</following>
<neighbor-variance>54</neighbor-variance>
<best-guess>1970-08-20</best-guess>
</remark>
<remark source="frus1969-76v03#d45" not-before="1969" not-after="1976">
<head>45. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1969-07-09 1970-01-29</parsed-body>
<preceding doc-id="d43">1970-08-20</preceding>
<following doc-id="d46">1970-10-13</following>
<neighbor-variance>54</neighbor-variance>
<best-guess>1970-08-20</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1970-09-10</date>
<document sources="1">
<remark source="frus1969-76v03#d148" not-before="1969" not-after="1976">
<date when="1970-09-10">September 10, 1970</date>
</remark>
</document>
</documents>
<documents>
<date>1970-09-20</date>
<document sources="1">
<remark source="frus1969-76v03#d149" not-before="1969" not-after="1976">
<date when="1970-09-20T11:23:00Z">September 20, 1970, 1123Z</date>
</remark>
</document>
</documents>
<documents>
<date>1970-10-13</date>
<document sources="1">
<remark source="frus1969-76v03#d46" not-before="1969" not-after="1976">
<date when="1970-10-13">October 13, 1970</date>
</remark>
</document>
</documents>
<documents>
<date>1970-11-13</date>
<document sources="1">
<remark source="frus1969-76v03#d47" not-before="1969" not-after="1976">
<date when="1970-11-13">November 13, 1970</date>
</remark>
</document>
</documents>
<documents>
<date>1970-11-23</date>
<document sources="2">
<remark source="frus1969-76v03#d150" not-before="1969" not-after="1976">
<date when="1970-11-23">November 23, 1970</date>
</remark>
<remark source="frus1969-76v03#d151" not-before="1969" not-after="1976">
<head>151. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-03-22</parsed-body>
<preceding doc-id="d150">1970-11-23</preceding>
<following doc-id="d152">1971-05-08</following>
<neighbor-variance>166</neighbor-variance>
<best-guess>1970-11-23</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1970-12-03</date>
<document sources="3">
<remark source="frus1969-76v03#d48" not-before="1969" not-after="1976">
<date when="1970-12-03">December 3, 1970</date>
</remark>
<remark source="frus1969-76v03#d49" not-before="1969" not-after="1976">
<head>49. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-01-18</parsed-body>
<preceding doc-id="d48">1970-12-03</preceding>
<following doc-id="d51">1971-02-09</following>
<neighbor-variance>68</neighbor-variance>
<best-guess>1970-12-03</best-guess>
</remark>
<remark source="frus1969-76v03#d50" not-before="1969" not-after="1976">
<head>50. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-01-19 1971-07-01 1973-06-30</parsed-body>
<preceding doc-id="d48">1970-12-03</preceding>
<following doc-id="d51">1971-02-09</following>
<neighbor-variance>68</neighbor-variance>
<best-guess>1970-12-03</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1971-02-09</date>
<document sources="2">
<remark source="frus1969-76v03#d51" not-before="1969" not-after="1976">
<date when="1971-02-09">February 9, 1971</date>
</remark>
<remark source="frus1969-76v03#d52" not-before="1969" not-after="1976">
<head>52. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-02-11 1971-12-29 1972-03-17 1973-03-08 1971-12-02 1971-12-02</parsed-body>
<preceding doc-id="d51">1971-02-09</preceding>
<following doc-id="d53">1971-02-22</following>
<neighbor-variance>13</neighbor-variance>
<best-guess>1971-02-09</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1971-02-22</date>
<document sources="1">
<remark source="frus1969-76v03#d53" not-before="1969" not-after="1976">
<date when="1971-02-22">February 22, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-03-02</date>
<document sources="1">
<remark source="frus1969-76v03#d54" not-before="1969" not-after="1976">
<date when="1971-03-02">March 2, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-03-08</date>
<document sources="1">
<remark source="frus1969-76v03#d55" not-before="1969" not-after="1976">
<date when="1971-03-08">March 8, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-03-16</date>
<document sources="1">
<remark source="frus1969-76v03#d56" not-before="1969" not-after="1976">
<date when="1971-03-16">March 16, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-03-29</date>
<document sources="2">
<remark source="frus1969-76v03#d57" not-before="1969" not-after="1976">
<date when="1971-03-29">March 29, 1971</date>
</remark>
<remark source="frus1969-76v03#d58" not-before="1969" not-after="1976">
<date when="1971-03-29">March 29, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-03-30</date>
<document sources="1">
<remark source="frus1969-76v03#d59" not-before="1969" not-after="1976">
<date when="1971-03-30">March 30, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-04-01</date>
<document sources="1">
<remark source="frus1969-76v03#d60" not-before="1969" not-after="1976">
<date when="1971-04-01">April 1, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-04-08</date>
<document sources="2">
<remark source="frus1969-76v03#d61" not-before="1969" not-after="1976">
<date when="1971-04-08">April 8, 1971</date>
</remark>
<remark source="frus1969-76v03#d62" not-before="1969" not-after="1976">
<date when="1971-04-08">April 8, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-04-21</date>
<document sources="2">
<remark source="frus1969-76v03#d63" not-before="1969" not-after="1976">
<date when="1971-04-21T16:30:00Z">April 21, 1971, 1630Z</date>
</remark>
<remark source="frus1969-76v03#d64" not-before="1969" not-after="1976">
<date when="1971-04-21">April 21, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-05-08</date>
<document sources="1">
<remark source="frus1969-76v03#d152" not-before="1969" not-after="1976">
<date when="1971-05-08">May 8, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-05-09</date>
<document sources="1">
<remark source="frus1969-76v03#d153" not-before="1969" not-after="1976">
<date when="1971-05-09">May 9, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-05-10</date>
<document sources="2">
<remark source="frus1969-76v03#d154" not-before="1969" not-after="1976">
<date when="1971-05-10">May 10, 1971</date>
</remark>
<remark source="frus1969-76v03#d155" not-before="1969" not-after="1976">
<head>155. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-05-12 1971-07-12 1971-06-15</parsed-body>
<preceding doc-id="d154">1971-05-10</preceding>
<following doc-id="d156">1971-05-20T11:30:00</following>
<neighbor-variance>10</neighbor-variance>
<best-guess>1971-05-10</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1971-05-20</date>
<document sources="1">
<remark source="frus1969-76v03#d156" not-before="1969" not-after="1976">
<date when="1971-05-20T11:30:00">May 20, 1971, 11:30 a.m.</date>
</remark>
</document>
</documents>
<documents>
<date>1971-06-02</date>
<document sources="2">
<remark source="frus1969-76v03#d65" not-before="1969" not-after="1976">
<date when="1971-06-02">June 2, 1971</date>
</remark>
<remark source="frus1969-76v03#d157" not-before="1969" not-after="1976">
<date when="1971-06-02">June 2, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-06-05</date>
<document sources="2">
<remark source="frus1969-76v03#d66" not-before="1969" not-after="1976">
<date when="1971-06-05">June 5, 1971</date>
</remark>
<remark source="frus1969-76v03#d67" not-before="1969" not-after="1976">
<head>67. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-06-30</parsed-body>
<preceding doc-id="d66">1971-06-05</preceding>
<following doc-id="d68">1971-07-28</following>
<neighbor-variance>53</neighbor-variance>
<best-guess>1971-06-05</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1971-06-08</date>
<document sources="2">
<remark source="frus1969-76v03#d158" not-before="1969" not-after="1976">
<date when="1971-06-08">June 8, 1971</date>
</remark>
<remark source="frus1969-76v03#d159" not-before="1969" not-after="1976">
<date when="1971-06-08">June 8, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-06-23</date>
<document sources="1">
<remark source="frus1969-76v03#d160" not-before="1969" not-after="1976">
<date when="1971-06-23">June 23, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-07-20</date>
<document sources="1">
<remark source="frus1969-76v03#d161" not-before="1969" not-after="1976">
<date when="1971-07-20">July 20, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-07-26</date>
<document sources="4">
<remark source="frus1969-76v03#d162" not-before="1969" not-after="1976">
<date when="1971-07-26T21:56:00Z">July 26, 1971, 2156Z</date>
</remark>
<remark source="frus1969-76v03#d163" not-before="1969" not-after="1976">
<date when="1971-07-26T23:31:00Z">July 26, 1971, 2331Z</date>
</remark>
<remark source="frus1969-76v03#d164" not-before="1969" not-after="1976">
<head>164. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-08-02 1971-08-02 1971-08-04</parsed-body>
<preceding doc-id="d163">1971-07-26T23:31:00Z</preceding>
<following doc-id="d166">1971-08-13</following>
<neighbor-variance>18</neighbor-variance>
<best-guess>1971-07-26</best-guess>
</remark>
<remark source="frus1969-76v03#d165" not-before="1969" not-after="1976">
<head>165. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-08-09 1971-08-11 1971-08-12 1971-08-12 1971-08-12</parsed-body>
<preceding doc-id="d163">1971-07-26T23:31:00Z</preceding>
<following doc-id="d166">1971-08-13</following>
<neighbor-variance>18</neighbor-variance>
<best-guess>1971-07-26</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1971-07-28</date>
<document sources="2">
<remark source="frus1969-76v03#d68" not-before="1969" not-after="1976">
<date when="1971-07-28">July 28, 1971</date>
</remark>
<remark source="frus1969-76v03#d69" not-before="1969" not-after="1976">
<head>69. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-04-15 1969-05-28</parsed-body>
<preceding doc-id="d68">1971-07-28</preceding>
<following doc-id="d70">1971-08-10</following>
<neighbor-variance>13</neighbor-variance>
<best-guess>1971-07-28</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1971-08-10</date>
<document sources="2">
<remark source="frus1969-76v03#d70" not-before="1969" not-after="1976">
<date when="1971-08-10">August 10, 1971</date>
</remark>
<remark source="frus1969-76v03#d71" not-before="1969" not-after="1976">
<head>71. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-08-21</parsed-body>
<preceding doc-id="d70">1971-08-10</preceding>
<following doc-id="d72">1971-08-25</following>
<neighbor-variance>15</neighbor-variance>
<best-guess>1971-08-10</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1971-08-13</date>
<document sources="3">
<remark source="frus1969-76v03#d166" not-before="1969" not-after="1976">
<date when="1971-08-13">August 13, 1971</date>
</remark>
<remark source="frus1969-76v03#d167" not-before="1969" not-after="1976">
<date when="1971-08-13">August 13, 1971</date>
</remark>
<remark source="frus1969-76v03#d168" not-before="1969" not-after="1976">
<head>168. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-08-13 1998-04-08 1998-04-08</parsed-body>
<preceding doc-id="d167">1971-08-13</preceding>
<following doc-id="d169">1971-08-16T02:45:00Z</following>
<neighbor-variance>3</neighbor-variance>
<best-guess>1971-08-13</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1971-08-16</date>
<document sources="2">
<remark source="frus1969-76v03#d169" not-before="1969" not-after="1976">
<date when="1971-08-16T02:45:00Z">August 16, 1971, 0245Z</date>
</remark>
<remark source="frus1969-76v03#d170" not-before="1969" not-after="1976">
<date when="1971-08-16T16:00:00">August 16, 1971, 4 p.m.</date>
</remark>
</document>
</documents>
<documents>
<date>1971-08-17</date>
<document sources="2">
<remark source="frus1969-76v03#d171" not-before="1969" not-after="1976">
<date when="1971-08-17">August 17, 1971</date>
</remark>
<remark source="frus1969-76v03#d172" not-before="1969" not-after="1976">
<head>172. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-08-15</parsed-body>
<preceding doc-id="d171">1971-08-17</preceding>
<following doc-id="d173">1971-09-01</following>
<neighbor-variance>15</neighbor-variance>
<best-guess>1971-08-17</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1971-08-25</date>
<document sources="2">
<remark source="frus1969-76v03#d72" not-before="1969" not-after="1976">
<date when="1971-08-25">August 25, 1971</date>
</remark>
<remark source="frus1969-76v03#d73" not-before="1969" not-after="1976">
<head>73. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-08-06</parsed-body>
<preceding doc-id="d72">1971-08-25</preceding>
<following doc-id="d74">1971-09-01</following>
<neighbor-variance>7</neighbor-variance>
<best-guess>1971-08-25</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1971-09-01</date>
<document sources="2">
<remark source="frus1969-76v03#d74" not-before="1969" not-after="1976">
<date when="1971-09-01">September 1, 1971</date>
</remark>
<remark source="frus1969-76v03#d173" not-before="1969" not-after="1976">
<date when="1971-09-01">September 1, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-09-06</date>
<document sources="1">
<remark source="frus1969-76v03#d174" not-before="1969" not-after="1976">
<date when="1971-09-06">September 6, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-09-07</date>
<document sources="1">
<remark source="frus1969-76v03#d75" not-before="1969" not-after="1976">
<date when="1971-09-07">September 7, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-09-10</date>
<document sources="3">
<remark source="frus1969-76v03#d76" not-before="1969" not-after="1976">
<date when="1971-09-10">September 10, 1971</date>
</remark>
<remark source="frus1969-76v03#d77" not-before="1969" not-after="1976">
<date when="1971-09-10">September 10, 1971</date>
</remark>
<remark source="frus1969-76v03#d78" not-before="1969" not-after="1976">
<head>78. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body/>
<preceding doc-id="d77">1971-09-10</preceding>
<following doc-id="d79">1971-09-28</following>
<neighbor-variance>18</neighbor-variance>
<best-guess>1971-09-10</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1971-09-17</date>
<document sources="1">
<remark source="frus1969-76v03#d175" not-before="1969" not-after="1976">
<date when="1971-09-17T11:24:00Z">September 17, 1971, 1124Z</date>
</remark>
</document>
</documents>
<documents>
<date>1971-09-20</date>
<document sources="2">
<remark source="frus1969-76v03#d176" not-before="1969" not-after="1976">
<date when="1971-09-20">September 20, 1971</date>
</remark>
<remark source="frus1969-76v03#d177" not-before="1969" not-after="1976">
<date when="1971-09-20">September 20, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-09-24</date>
<document sources="3">
<remark source="frus1969-76v03#d178" not-before="1969" not-after="1976">
<date when="1971-09-24">September 24, 1971</date>
</remark>
<remark source="frus1969-76v03#d179" not-before="1969" not-after="1976">
<date when="1971-09-24">September 24, 1971</date>
</remark>
<remark source="frus1969-76v03#d180" not-before="1969" not-after="1976">
<date when="1971-09-24">September 24, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-09-25</date>
<document sources="1">
<remark source="frus1969-76v03#d181" not-before="1969" not-after="1976">
<date when="1971-09-25">September 25, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-09-28</date>
<document sources="3">
<remark source="frus1969-76v03#d79" not-before="1969" not-after="1976">
<date when="1971-09-28">September 28, 1971</date>
</remark>
<remark source="frus1969-76v03#d80" not-before="1969" not-after="1976">
<head>80. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-10-18 1971-12-15</parsed-body>
<preceding doc-id="d79">1971-09-28</preceding>
<following doc-id="d81">1971-10-20T16:17:00Z</following>
<neighbor-variance>22</neighbor-variance>
<best-guess>1971-09-28</best-guess>
</remark>
<remark source="frus1969-76v03#d182" not-before="1969" not-after="1976">
<date when="1971-09-28">September 28, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-10-14</date>
<document sources="1">
<remark source="frus1969-76v03#d183" not-before="1969" not-after="1976">
<date when="1971-10-14">October 14, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-10-20</date>
<document sources="1">
<remark source="frus1969-76v03#d81" not-before="1969" not-after="1976">
<date when="1971-10-20T16:17:00Z">October 20, 1971, 1617Z</date>
</remark>
</document>
</documents>
<documents>
<date>1971-10-23</date>
<document sources="1">
<remark source="frus1969-76v03#d82" not-before="1969" not-after="1976">
<date when="1971-10-23T06:15:00Z">October 23, 1971, 0615Z</date>
</remark>
</document>
</documents>
<documents>
<date>1971-10-25</date>
<document sources="1">
<remark source="frus1969-76v03#d184" not-before="1969" not-after="1976">
<date when="1971-10-25">October 25, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-10-26</date>
<document sources="3">
<remark source="frus1969-76v03#d185" not-before="1969" not-after="1976">
<date when="1971-10-26">October 26, 1971</date>
</remark>
<remark source="frus1969-76v03#d186" not-before="1969" not-after="1976">
<head>186. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-10-26</parsed-body>
<preceding doc-id="d185">1971-10-26</preceding>
<following doc-id="d188">1971-11-01</following>
<neighbor-variance>6</neighbor-variance>
<best-guess>1971-10-26</best-guess>
</remark>
<remark source="frus1969-76v03#d187" not-before="1969" not-after="1976">
<head>187. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-10-25 1971-10-25 1971-10-28</parsed-body>
<preceding doc-id="d185">1971-10-26</preceding>
<following doc-id="d188">1971-11-01</following>
<neighbor-variance>6</neighbor-variance>
<best-guess>1971-10-26</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1971-11-01</date>
<document sources="1">
<remark source="frus1969-76v03#d188" not-before="1969" not-after="1976">
<date when="1971-11-01">November 1, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-11-02</date>
<document sources="1">
<remark source="frus1969-76v03#d189" not-before="1969" not-after="1976">
<date when="1971-11-02">November 2, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-11-05</date>
<document sources="2">
<remark source="frus1969-76v03#d190" not-before="1969" not-after="1976">
<date when="1971-11-05T17:16:00Z">November 5, 1971, 1716Z</date>
</remark>
<remark source="frus1969-76v03#d191" not-before="1969" not-after="1976">
<head>191. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>2005-11-12 0300-11-18 2051-11-18</parsed-body>
<preceding doc-id="d190">1971-11-05T17:16:00Z</preceding>
<following doc-id="d192">1971-11-12</following>
<neighbor-variance>7</neighbor-variance>
<best-guess>1971-11-05</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1971-11-12</date>
<document sources="3">
<remark source="frus1969-76v03#d192" not-before="1969" not-after="1976">
<date when="1971-11-12">November 12, 1971</date>
</remark>
<remark source="frus1969-76v03#d193" not-before="1969" not-after="1976">
<date when="1971-11-12T17:44:00Z">November 12, 1971, 1744Z</date>
</remark>
<remark source="frus1969-76v03#d194" not-before="1969" not-after="1976">
<date when="1971-11-12T18:05:00">November 12, 1971, 6:05 p.m.</date>
</remark>
</document>
</documents>
<documents>
<date>1971-11-15</date>
<document sources="3">
<remark source="frus1969-76v03#d195" not-before="1969" not-after="1976">
<date when="1971-11-15">November 15, 1971</date>
</remark>
<remark source="frus1969-76v03#d196" not-before="1969" not-after="1976">
<date when="1971-11-15T10:10:00Z">November 15, 1971, 1010Z</date>
</remark>
<remark source="frus1969-76v03#d197" not-before="1969" not-after="1976">
<date when="1971-11-15T15:55:00Z">November 15, 1971, 1555Z</date>
</remark>
</document>
</documents>
<documents>
<date>1971-11-16</date>
<document sources="1">
<remark source="frus1969-76v03#d198" not-before="1969" not-after="1976">
<date when="1971-11-16">November 16, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-11-17</date>
<document sources="3">
<remark source="frus1969-76v03#d199" not-before="1969" not-after="1976">
<date when="1971-11-17T14:50:00Z">November 17, 1971, 1450Z</date>
</remark>
<remark source="frus1969-76v03#d200" not-before="1969" not-after="1976">
<head>200. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-11-18 1971-05-01</parsed-body>
<preceding doc-id="d199">1971-11-17T14:50:00Z</preceding>
<following doc-id="d202">1971-11-22</following>
<neighbor-variance>5</neighbor-variance>
<best-guess>1971-11-17</best-guess>
</remark>
<remark source="frus1969-76v03#d201" not-before="1969" not-after="1976">
<head>201. Paper Prepared in the Department of the Treasury</head>
<source-note>Source: Washington National Records Center, Department of the Treasury, Records of Secretary Shultz: FRC 56 80 1, Rome G-10 Meeting 11/30-12/1/71. No classification marking. Prepared as background for the G-10 Ministerial meeting; see Document 200.</source-note>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-05-01 1971-05-01</parsed-body>
<preceding doc-id="d199">1971-11-17T14:50:00Z</preceding>
<following doc-id="d202">1971-11-22</following>
<neighbor-variance>5</neighbor-variance>
<best-guess>1971-11-17</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1971-11-22</date>
<document sources="2">
<remark source="frus1969-76v03#d202" not-before="1969" not-after="1976">
<date when="1971-11-22">November 22, 1971</date>
</remark>
<remark source="frus1969-76v03#d203" not-before="1969" not-after="1976">
<head>203. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-11-23 1971-11-24 1971-11-24</parsed-body>
<preceding doc-id="d202">1971-11-22</preceding>
<following doc-id="d204">1971-11-24</following>
<neighbor-variance>2</neighbor-variance>
<best-guess>1971-11-22</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1971-11-24</date>
<document sources="3">
<remark source="frus1969-76v03#d204" not-before="1969" not-after="1976">
<date when="1971-11-24">November 24, 1971</date>
</remark>
<remark source="frus1969-76v03#d205" not-before="1969" not-after="1976">
<date when="1971-11-24T18:10:00Z">November 24, 1971, 1810Z</date>
</remark>
<remark source="frus1969-76v03#d206" not-before="1969" not-after="1976">
<date when="1971-11-24T20:45:00Z">November 24, 1971, 2045Z</date>
</remark>
</document>
</documents>
<documents>
<date>1971-11-25</date>
<document sources="1">
<remark source="frus1969-76v03#d207" not-before="1969" not-after="1976">
<date when="1971-11-25T00:21:00Z">November 25, 1971, 0021Z</date>
</remark>
</document>
</documents>
<documents>
<date>1971-11-26</date>
<document sources="1">
<remark source="frus1969-76v03#d208" not-before="1969" not-after="1976">
<date when="1971-11-26T18:15:00Z">November 26, 1971, 1815Z</date>
</remark>
</document>
</documents>
<documents>
<date>1971-11-27</date>
<document sources="2">
<remark source="frus1969-76v03#d209" not-before="1969" not-after="1976">
<date when="1971-11-27">November 27, 1971</date>
</remark>
<remark source="frus1969-76v03#d210" not-before="1969" not-after="1976">
<head>210. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-11-29</parsed-body>
<preceding doc-id="d209">1971-11-27</preceding>
<following doc-id="d211">1971-11-30T12:43:00Z</following>
<neighbor-variance>3</neighbor-variance>
<best-guess>1971-11-27</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1971-11-30</date>
<document sources="2">
<remark source="frus1969-76v03#d211" not-before="1969" not-after="1976">
<date when="1971-11-30T12:43:00Z">November 30, 1971, 1243Z</date>
</remark>
<remark source="frus1969-76v03#d212" not-before="1969" not-after="1976">
<head>212. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-12-01</parsed-body>
<preceding doc-id="d211">1971-11-30T12:43:00Z</preceding>
<following doc-id="d213">1971-12-03</following>
<neighbor-variance>3</neighbor-variance>
<best-guess>1971-11-30</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1971-12-02</date>
<document sources="1">
<remark source="frus1969-76v03#d83" not-before="1969" not-after="1976">
<date when="1971-12-02">December 2, 1971</date>
</remark>
</document>
</documents>
<documents>
<date>1971-12-03</date>
<document sources="2">
<remark source="frus1969-76v03#d213" not-before="1969" not-after="1976">
<date when="1971-12-03">December 3, 1971</date>
</remark>
<remark source="frus1969-76v03#d214" not-before="1969" not-after="1976">
<date when="1971-12-03T15:23:00Z">December 3, 1971, 1523Z</date>
</remark>
</document>
</documents>
<documents>
<date>1971-12-06</date>
<document sources="3">
<remark source="frus1969-76v03#d84" not-before="1969" not-after="1976">
<date when="1971-12-06">December 6, 1971</date>
</remark>
<remark source="frus1969-76v03#d85" not-before="1969" not-after="1976">
<date when="1971-12-06T16:00:00">December 6, 1971, 4 p.m.</date>
</remark>
<remark source="frus1969-76v03#d215" not-before="1969" not-after="1976">
<date when="1971-12-06T13:15:00Z">December 6, 1971, 1315Z.</date>
</remark>
</document>
</documents>
<documents>
<date>1971-12-07</date>
<document sources="1">
<remark source="frus1969-76v03#d216" not-before="1969" not-after="1976">
<date when="1971-12-07T00:50:00Z">December 7, 1971, 0050Z</date>
</remark>
</document>
</documents>
<documents>
<date>1971-12-10</date>
<document sources="4">
<remark source="frus1969-76v03#d86" not-before="1969" not-after="1976">
<date when="1971-12-10T13:10:00Z">December 10, 1971, 1310Z</date>
</remark>
<remark source="frus1969-76v03#d87" not-before="1969" not-after="1976">
<head>87. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-12-20 1972-01-03</parsed-body>
<preceding doc-id="d86">1971-12-10T13:10:00Z</preceding>
<following doc-id="d89">1972-04-12</following>
<neighbor-variance>124</neighbor-variance>
<best-guess>1971-12-10</best-guess>
</remark>
<remark source="frus1969-76v03#d88" not-before="1969" not-after="1976">
<head>88. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1972-01-19</parsed-body>
<preceding doc-id="d86">1971-12-10T13:10:00Z</preceding>
<following doc-id="d89">1972-04-12</following>
<neighbor-variance>124</neighbor-variance>
<best-guess>1971-12-10</best-guess>
</remark>
<remark source="frus1969-76v03#d217" not-before="1969" not-after="1976">
<date when="1971-12-10T11:52:00Z">December 10, 1971, 1152Z</date>
</remark>
</document>
</documents>
<documents>
<date>1971-12-12</date>
<document sources="4">
<remark source="frus1969-76v03#d218" not-before="1969" not-after="1976">
<date when="1971-12-12T01:14:00Z">December 12, 1971, 0114Z</date>
</remark>
<remark source="frus1969-76v03#d219" not-before="1969" not-after="1976">
<head>219. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1971-12-18</parsed-body>
<preceding doc-id="d218">1971-12-12T01:14:00Z</preceding>
<following doc-id="d222">1972-01-24</following>
<neighbor-variance>43</neighbor-variance>
<best-guess>1971-12-12</best-guess>
</remark>
<remark source="frus1969-76v03#d220" not-before="1969" not-after="1976">
<head>220. Paper Agreed by President Nixon and President Pompidou</head>
<source-note>Source: National Archives, Nixon Presidential Materials, NSC Files, Subject Files, Box 356, Monetary Matters, Envelope marked Bermuda. No classification marking. Initialed by Presidents Nixon and Pompidou at the bottom of the first page and signed by both at the end. An earlier version of the paper that Kissinger marked up, apparently during his breakfast meeting with Pompidou on December 14, is ibid. According to the memorandum of conversation of that meeting (see Document 219), Kissinger read Pompidou the proposed text of item 6 as formulated by Connally. Pompidou said he could not agree to the statement as read; he could not accept the absence of any mention of fixed parities. Kissinger wrote in the left margin of the draft: “Fixed Parity must be in.” In the expanded meeting at the conclusion of the Summit, Connally noted that the item 5 language had been modified. See also footnote 4, Document 223. The text of the earlier version of the paper is indicated in footnotes 2-9 below.</source-note>
<parsed-head/>
<parsed-note/>
<parsed-body/>
<preceding doc-id="d218">1971-12-12T01:14:00Z</preceding>
<following doc-id="d222">1972-01-24</following>
<neighbor-variance>43</neighbor-variance>
<best-guess>1971-12-12</best-guess>
</remark>
<remark source="frus1969-76v03#d221" not-before="1969" not-after="1976">
<head>221. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1972-01-10 1972-06-30 1971-04-30</parsed-body>
<preceding doc-id="d218">1971-12-12T01:14:00Z</preceding>
<following doc-id="d222">1972-01-24</following>
<neighbor-variance>43</neighbor-variance>
<best-guess>1971-12-12</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1972-01-24</date>
<document sources="1">
<remark source="frus1969-76v03#d222" not-before="1969" not-after="1976">
<date when="1972-01-24">January 24, 1972</date>
</remark>
</document>
</documents>
<documents>
<date>1972-02-04</date>
<document sources="1">
<remark source="frus1969-76v03#d223" not-before="1969" not-after="1976">
<date when="1972-02-04">February 4, 1972</date>
</remark>
</document>
</documents>
<documents>
<date>1972-02-16</date>
<document sources="3">
<remark source="frus1969-76v03#d224" not-before="1969" not-after="1976">
<date when="1972-02-16">February 16, 1972</date>
</remark>
<remark source="frus1969-76v03#d225" not-before="1969" not-after="1976">
<head>225. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1972-02-22</parsed-body>
<preceding doc-id="d224">1972-02-16</preceding>
<following doc-id="d227">1972-04-26T18:57:00Z</following>
<neighbor-variance>70</neighbor-variance>
<best-guess>1972-02-16</best-guess>
</remark>
<remark source="frus1969-76v03#d226" not-before="1969" not-after="1976">
<head>226. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1972-03-11 1972-06-30</parsed-body>
<preceding doc-id="d224">1972-02-16</preceding>
<following doc-id="d227">1972-04-26T18:57:00Z</following>
<neighbor-variance>70</neighbor-variance>
<best-guess>1972-02-16</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1972-04-12</date>
<document sources="2">
<remark source="frus1969-76v03#d89" not-before="1969" not-after="1976">
<date when="1972-04-12">April 12, 1972</date>
</remark>
<remark source="frus1969-76v03#d90" not-before="1969" not-after="1976">
<head>90. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1972-05-16 1972-06-19</parsed-body>
<preceding doc-id="d89">1972-04-12</preceding>
<following doc-id="d91">1972-06-20</following>
<neighbor-variance>69</neighbor-variance>
<best-guess>1972-04-12</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1972-04-26</date>
<document sources="1">
<remark source="frus1969-76v03#d227" not-before="1969" not-after="1976">
<date when="1972-04-26T18:57:00Z">April 26, 1972, 1857Z</date>
</remark>
</document>
</documents>
<documents>
<date>1972-04-27</date>
<document sources="1">
<remark source="frus1969-76v03#d228" not-before="1969" not-after="1976">
<date when="1972-04-27">April 27, 1972</date>
</remark>
</document>
</documents>
<documents>
<date>1972-05-10</date>
<document sources="1">
<remark source="frus1969-76v03#d229" not-before="1969" not-after="1976">
<date when="1972-05-10">May 10, 1972</date>
</remark>
</document>
</documents>
<documents>
<date>1972-06-05</date>
<document sources="1">
<remark source="frus1969-76v03#d230" not-before="1969" not-after="1976">
<date when="1972-06-05">June 5, 1972</date>
</remark>
</document>
</documents>
<documents>
<date>1972-06-15</date>
<document sources="1">
<remark source="frus1969-76v03#d231" not-before="1969" not-after="1976">
<date when="1972-06-15T10:11:00Z">June 15, 1972, 1011Z</date>
</remark>
</document>
</documents>
<documents>
<date>1972-06-20</date>
<document sources="1">
<remark source="frus1969-76v03#d91" not-before="1969" not-after="1976">
<date when="1972-06-20">June 20, 1972</date>
</remark>
</document>
</documents>
<documents>
<date>1972-06-23</date>
<document sources="1">
<remark source="frus1969-76v03#d232" not-before="1969" not-after="1976">
<date when="1972-06-23">June 23, 1972</date>
</remark>
</document>
</documents>
<documents>
<date>1972-07-10</date>
<document sources="2">
<remark source="frus1969-76v03#d233" not-before="1969" not-after="1976">
<date when="1972-07-10">July 10, 1972</date>
</remark>
<remark source="frus1969-76v03#d234" not-before="1969" not-after="1976">
<head>234. Memorandum From Secretary of the Treasury Shultz to President Nixon</head>
<source-note>Source: Washington National Records Center, Department of the Treasury, Files of Under Secretary Volcker: FRC 56 79 15, UK British Float. Confidential. There is no indication that the memorandum was sent to President Nixon. Its probable date is July 18; see footnote 2 below.</source-note>
<parsed-head/>
<parsed-note/>
<parsed-body/>
<preceding doc-id="d233">1972-07-10</preceding>
<following doc-id="d235">1972-07-20</following>
<neighbor-variance>10</neighbor-variance>
<best-guess>1972-07-10</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1972-07-17</date>
<document sources="4">
<remark source="frus1969-76v03#d92" not-before="1969" not-after="1976">
<date when="1972-07-17T11:30:00">July 17, 1972, 11:30 a.m</date>
</remark>
<remark source="frus1969-76v03#d93" not-before="1969" not-after="1976">
<head>93. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1972-09-01 1973-03-31</parsed-body>
<preceding doc-id="d92">1972-07-17T11:30:00</preceding>
<following doc-id="d96">1972-08-19</following>
<neighbor-variance>33</neighbor-variance>
<best-guess>1972-07-17</best-guess>
</remark>
<remark source="frus1969-76v03#d94" not-before="1969" not-after="1976">
<head>94. Paper Prepared in the Council on International Economic Policy</head>
<source-note>Source: Washington National Records Center, Department of the Treasury, Files of Under Secretary Volcker: FRC 56 79 15, NSDMs. Confidential. Attached to a November 30 memorandum from Flanigan to the Secretaries of State, Defense, Commerce, Treasury, and Agriculture, which indicated the paper was prepared “last summer in cooperation with your departments.” Flanigan's transmittal memorandum suggests the paper was prepared in the CIEP, but parts of it are identical to the paper that Treasury Deputy Under Secretary Bennett prepared for the Volcker Group Alternates on June 5; see Document 230.</source-note>
<parsed-head/>
<parsed-note/>
<parsed-body/>
<preceding doc-id="d92">1972-07-17T11:30:00</preceding>
<following doc-id="d96">1972-08-19</following>
<neighbor-variance>33</neighbor-variance>
<best-guess>1972-07-17</best-guess>
</remark>
<remark source="frus1969-76v03#d95" not-before="1969" not-after="1976">
<head>95. U.S. Position Paper</head>
<source-note>Source: National Archives, Nixon Presidential Materials, NSC Files, Country Files—Far East, Box 538, Japan Volume 8 5-12/72. Confidential. Attached to an August 15 memorandum from Hormats to Haig indicating that the paper was a “final agreed position paper” and recommending that Haig send it to Holdridge and Ingersoll in Tokyo, because “it is a clear and accurate representation of the U.S. position.” Haig approved that recommendation, and a telegraphic text of the message was sent from the White House to the Embassy in Tokyo at 0104Z on August 16. (Ibid., VIP Visits, Box 926, Tanaka 8/31-9/1/72)</source-note>
<parsed-head/>
<parsed-note/>
<parsed-body>1973-03-31</parsed-body>
<preceding doc-id="d92">1972-07-17T11:30:00</preceding>
<following doc-id="d96">1972-08-19</following>
<neighbor-variance>33</neighbor-variance>
<best-guess>1972-07-17</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1972-07-20</date>
<document sources="1">
<remark source="frus1969-76v03#d235" not-before="1969" not-after="1976">
<date when="1972-07-20">July 20, 1972</date>
</remark>
</document>
</documents>
<documents>
<date>1972-07-25</date>
<document sources="2">
<remark source="frus1969-76v03#d236" not-before="1969" not-after="1976">
<date when="1972-07-25T16:30:00">July 25, 1972, 4:30 p.m.</date>
</remark>
<remark source="frus1969-76v03#d237" not-before="1969" not-after="1976">
<head>237. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1972-06-23</parsed-body>
<preceding doc-id="d236">1972-07-25T16:30:00</preceding>
<following doc-id="d238">1972-07-31T17:16:00Z</following>
<neighbor-variance>6</neighbor-variance>
<best-guess>1972-07-25</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1972-07-31</date>
<document sources="2">
<remark source="frus1969-76v03#d238" not-before="1969" not-after="1976">
<date when="1972-07-31T17:16:00Z">July 31, 1972, 1716Z</date>
</remark>
<remark source="frus1969-76v03#d239" not-before="1969" not-after="1976">
<date when="1972-07-31">July 31, 1972</date>
</remark>
</document>
</documents>
<documents>
<date>1972-08-01</date>
<document sources="1">
<remark source="frus1969-76v03#d240" not-before="1969" not-after="1976">
<date when="1972-08-01T09:35:00Z">August 1, 1972, 0935Z</date>
</remark>
</document>
</documents>
<documents>
<date>1972-08-04</date>
<document sources="2">
<remark source="frus1969-76v03#d241" not-before="1969" not-after="1976">
<date when="1972-08-04T19:33:00Z">August 4, 1972, 1933Z</date>
</remark>
<remark source="frus1969-76v03#d242" not-before="1969" not-after="1976">
<head>242. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1973-06-30 1972-07-20 1973-05-11 1972-08-30</parsed-body>
<preceding doc-id="d241">1972-08-04T19:33:00Z</preceding>
<following doc-id="d243">1972-10-03</following>
<neighbor-variance>60</neighbor-variance>
<best-guess>1972-08-04</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1972-08-19</date>
<document sources="1">
<remark source="frus1969-76v03#d96" not-before="1969" not-after="1976">
<date when="1972-08-19">August 19, 1972</date>
</remark>
</document>
</documents>
<documents>
<date>1972-08-25</date>
<document sources="1">
<remark source="frus1969-76v03#d97" not-before="1969" not-after="1976">
<date when="1972-08-25">August 25, 1972</date>
</remark>
</document>
</documents>
<documents>
<date>1972-08-29</date>
<document sources="1">
<remark source="frus1969-76v03#d98" not-before="1969" not-after="1976">
<date when="1972-08-29">August 29, 1972</date>
</remark>
</document>
</documents>
<documents>
<date>1972-08-31</date>
<document sources="1">
<remark source="frus1969-76v03#d99" not-before="1969" not-after="1976">
<date when="1972-08-31T13:00:00">August 31, 1972, 1 p.m.</date>
</remark>
</document>
</documents>
<documents>
<date>1972-09-11</date>
<document sources="1">
<remark source="frus1969-76v03#d100" not-before="1969" not-after="1976">
<date when="1972-09-11T10:00:00">September 11, 1972, 10 a.m.</date>
</remark>
</document>
</documents>
<documents>
<date>1972-09-12</date>
<document sources="1">
<remark source="frus1969-76v03#d101" not-before="1969" not-after="1976">
<date when="1972-09-12">September 12, 1972</date>
</remark>
</document>
</documents>
<documents>
<date>1972-10-03</date>
<document sources="2">
<remark source="frus1969-76v03#d243" not-before="1969" not-after="1976">
<date when="1972-10-03">October 3, 1972</date>
</remark>
<remark source="frus1969-76v03#d244" not-before="1969" not-after="1976">
<head>244. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1972-10-03</parsed-body>
<preceding doc-id="d243">1972-10-03</preceding>
<following/>
<neighbor-variance/>
<best-guess>1972-10-03</best-guess>
</remark>
</document>
</documents>
<documents>
<date>1972-10-07</date>
<document sources="1">
<remark source="frus1969-76v03#d102" not-before="1969" not-after="1976">
<date when="1972-10-07">October 7, 1972</date>
</remark>
</document>
</documents>
<documents>
<date>1972-10-11</date>
<document sources="1">
<remark source="frus1969-76v03#d103" not-before="1969" not-after="1976">
<date when="1972-10-11">October 11, 1972</date>
</remark>
</document>
</documents>
<documents>
<date>1972-10-16</date>
<document sources="1">
<remark source="frus1969-76v03#d104" not-before="1969" not-after="1976">
<date when="1972-10-16">October 16, 1972</date>
</remark>
</document>
</documents>
<documents>
<date>1972-10-20</date>
<document sources="4">
<remark source="frus1969-76v03#d105" not-before="1969" not-after="1976">
<date when="1972-10-20">October 20, 1972</date>
</remark>
<remark source="frus1969-76v03#d106" not-before="1969" not-after="1976">
<head>106. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1972-11-18 1973-01-01</parsed-body>
<preceding doc-id="d105">1972-10-20</preceding>
<following doc-id="d109">1969-01-21</following>
<neighbor-variance>-1368</neighbor-variance>
<best-guess>1972-10-20</best-guess>
</remark>
<remark source="frus1969-76v03#d107" not-before="1969" not-after="1976">
<head>107. Editorial Note</head>
<source-note/>
<parsed-head/>
<parsed-note/>
<parsed-body>1972-12-01 1972-12-04</parsed-body>
<preceding doc-id="d105">1972-10-20</preceding>
<following doc-id="d109">1969-01-21</following>
<neighbor-variance>-1368</neighbor-variance>
<best-guess>1972-10-20</best-guess>
</remark>
<remark source="frus1969-76v03#d108" not-before="1969" not-after="1976">
<head>108. Paper Prepared in the Department of State</head>
<source-note>Source: National Archives, RG 59, S/S Files: Lot 80 D 212, Box 1113V, NSSM 164. Secret. The paper was prepared as a response to NSSM 164; see Document 106. A December 18 transmittal memorandum from Stoessel to Kissinger forwarding the 53-page NSSM Response indicates the paper was discussed in the NSC Interdepartmental Review Group for Europe and took into account views of its members and other recipients of NSSM 164. The paper and Stoessel's memorandum are attached to a January 29, 1973, memorandum from Stoessel to Deputy Secretary-designate Rush, explaining that the paper was drafted in EUR taking into account other agency views but it did not represent interagency consensus.</source-note>
<parsed-head/>
<parsed-note>1973-01-29</parsed-note>
<parsed-body/>
<preceding doc-id="d105">1972-10-20</preceding>
<following doc-id="d109">1969-01-21</following>
<neighbor-variance>-1368</neighbor-variance>
<best-guess>1972-10-20</best-guess>
</remark>
</document>
</documents>
</dates>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment