From 473e61d4a1f1058953d8cbd31d3691ce9b3e2f35 Mon Sep 17 00:00:00 2001 From: Joe Wicentowski Date: Tue, 25 Jul 2023 21:42:42 -0400 Subject: [PATCH] Format & indent --- build.xml | 41 +- code-tables/travel-role-codes.xml | 2 +- expath-pkg.xml | 3 +- expath-pkg.xml.tmpl | 3 +- pre-install.xql | 21 +- president-travels.xconf | 18 +- president-travels/bush-george-h-w.xml | 215 +-- president-travels/bush-george-w.xml | 405 ++--- president-travels/carter-jimmy.xml | 123 +- president-travels/clinton-william-j.xml | 412 ++--- president-travels/coolidge-calvin.xml | 4 +- president-travels/eisenhower-dwight-d.xml | 100 +- president-travels/ford-gerald-r.xml | 63 +- president-travels/harding-warren-g.xml | 8 +- president-travels/hoover-herbert-c.xml | 22 +- president-travels/johnson-lyndon-b.xml | 77 +- president-travels/nixon-richard-m.xml | 116 +- president-travels/obama-barack.xml | 383 +++-- president-travels/reagan-ronald.xml | 200 ++- president-travels/roosevelt-franklin-d.xml | 141 +- president-travels/roosevelt-theodore.xml | 7 +- president-travels/taft-william-howard.xml | 9 +- president-travels/truman-harry-s.xml | 28 +- president-travels/trump-donald-j.xml | 103 +- president-travels/wilson-woodrow.xml | 25 +- presidents.xconf | 4 +- presidents/presidents.xml | 2 +- repo.xml | 4 +- repo.xml.tmpl | 4 +- schema/trips.rnc | 42 +- schema/trips.sch | 22 +- secretary-travels.xconf | 16 +- secretary-travels/acheson-dean-gooderham.xml | 64 +- .../albright-madeleine-korbel.xml | 827 +++++----- secretary-travels/baker-james-addison.xml | 703 +++++---- secretary-travels/byrnes-james-francis.xml | 29 +- .../christopher-warren-minor.xml | 711 +++++---- secretary-travels/clinton-hillary-rodham.xml | 941 +++++++----- secretary-travels/colby-bainbridge.xml | 21 +- secretary-travels/dulles-john-foster.xml | 308 ++-- secretary-travels/haig-alexander-meigs.xml | 159 +- secretary-travels/hay-john-milton.xml | 10 +- .../herter-christian-archibald.xml | 73 +- secretary-travels/hughes-charles-evans.xml | 25 +- secretary-travels/hull-cordell.xml | 97 +- secretary-travels/kellogg-frank-billings.xml | 23 +- secretary-travels/kerry-john-forbes.xml | 1335 ++++++++++------- secretary-travels/kissinger-henry-a.xml | 596 ++++---- secretary-travels/knox-philander-chase.xml | 46 +- secretary-travels/lansing-robert.xml | 7 +- secretary-travels/marshall-george-catlett.xml | 42 +- secretary-travels/muskie-edmund-sixtus.xml | 31 +- secretary-travels/pompeo-michael-r.xml | 551 ++++--- secretary-travels/powell-colin-luther.xml | 613 ++++---- secretary-travels/rice-condoleezza.xml | 790 +++++----- secretary-travels/rogers-william-pierce.xml | 326 ++-- secretary-travels/root-elihu.xml | 41 +- secretary-travels/rusk-david-dean.xml | 279 ++-- secretary-travels/seward-william-henry.xml | 13 +- secretary-travels/shultz-george-pratt.xml | 674 +++++---- .../stettinius-edward-reilly.xml | 31 +- secretary-travels/stimson-henry-lewis.xml | 32 +- secretary-travels/tillerson-rex-wayne.xml | 239 +-- secretary-travels/vance-cyrus-roberts.xml | 355 +++-- 64 files changed, 7112 insertions(+), 5503 deletions(-) diff --git a/build.xml b/build.xml index 4cce071..ad73135 100644 --- a/build.xml +++ b/build.xml @@ -1,23 +1,23 @@ - - + + - + - - + + - - + + - + @@ -39,28 +39,31 @@ - + - + - - + + - + - + - + Git repo: ${repository.version} - - + + @@ -68,5 +71,5 @@ Git time: ${git.time} - - \ No newline at end of file + + diff --git a/code-tables/travel-role-codes.xml b/code-tables/travel-role-codes.xml index a0cac9e..8cadfb9 100644 --- a/code-tables/travel-role-codes.xml +++ b/code-tables/travel-role-codes.xml @@ -1,4 +1,4 @@ - + travel-role-code This is a description of codes used in the role element of a trip in the Travels diff --git a/expath-pkg.xml b/expath-pkg.xml index 6524222..548afd0 100644 --- a/expath-pkg.xml +++ b/expath-pkg.xml @@ -1,4 +1,5 @@ - + Travels (data) diff --git a/expath-pkg.xml.tmpl b/expath-pkg.xml.tmpl index a2f0b1b..fbdf278 100644 --- a/expath-pkg.xml.tmpl +++ b/expath-pkg.xml.tmpl @@ -1,4 +1,5 @@ - + @title@ diff --git a/pre-install.xql b/pre-install.xql index ae6fc72..27e871b 100644 --- a/pre-install.xql +++ b/pre-install.xql @@ -1,6 +1,6 @@ xquery version "1.0"; -import module namespace xdb="http://exist-db.org/xquery/xmldb"; +import module namespace xdb = "http://exist-db.org/xquery/xmldb"; (: The following external variables are set by the repo:deploy function :) @@ -14,10 +14,11 @@ declare variable $target external; declare function local:mkcol-recursive($collection, $components) { if (exists($components)) then let $newColl := concat($collection, "/", $components[1]) - return ( + return + ( xdb:create-collection($collection, $components[1]), local:mkcol-recursive($newColl, subsequence($components, 2)) - ) + ) else () }; @@ -33,12 +34,12 @@ local:mkcol("/db/system/config", $target), (: store the collection configurations :) for $xconf in file:directory-list($dir, "*.xconf")/file:file/@name let $data-dir := substring-before($xconf, ".xconf") -return +return ( - local:mkcol-recursive(concat("/db/system/config/", $target), $data-dir), - xmldb:store-files-from-pattern( - concat("/db/system/config", $target, "/", $data-dir), - $dir, - $xconf - ) + local:mkcol-recursive(concat("/db/system/config/", $target), $data-dir), + xmldb:store-files-from-pattern( + concat("/db/system/config", $target, "/", $data-dir), + $dir, + $xconf + ) ) diff --git a/president-travels.xconf b/president-travels.xconf index 19aead1..ee97222 100644 --- a/president-travels.xconf +++ b/president-travels.xconf @@ -1,5 +1,6 @@ - + @@ -7,21 +8,24 @@ - + - - + + - + - + - \ No newline at end of file + diff --git a/president-travels/bush-george-h-w.xml b/president-travels/bush-george-h-w.xml index 3a5a0c7..aa895f3 100644 --- a/president-travels/bush-george-h-w.xml +++ b/president-travels/bush-george-h-w.xml @@ -1,6 +1,6 @@ - + 2321 president George Herbert Walker Bush @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2322 president George Herbert Walker Bush @@ -22,13 +22,17 @@ 1989-02-25 Japan Tokyo - Attended the funeral of Emperor Hirohito. Met with Emperor Akihito of Japan; the Kings of Belgium, Jordan, and Spain; the Presidents of Brazil, Egypt, France, the Federal Republic of Germany, Israel, Italy, Nigeria, the Philippines, Portugal, and Zaire; and the Prime Ministers of Japan, Pakistan, Singapore, Thailand, and Turkey. + Attended the funeral of Emperor Hirohito. Met with Emperor Akihito of Japan; the + Kings of Belgium, Jordan, and Spain; the Presidents of Brazil, Egypt, France, the + Federal Republic of Germany, Israel, Italy, Nigeria, the Philippines, Portugal, and + Zaire; and the Prime Ministers of Japan, Pakistan, Singapore, Thailand, and + Turkey. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2323 president George Herbert Walker Bush @@ -36,13 +40,14 @@ 1989-02-27 China, People’s Republic of Beijing - Met with President Yang and Prime Minister Li. Also met with Prince Sihanouk of Cambodia. + Met with President Yang and Prime Minister Li. Also met with Prince Sihanouk of + Cambodia. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2324 president George Herbert Walker Bush @@ -56,7 +61,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2325 president George Herbert Walker Bush @@ -70,7 +75,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2326 president George Herbert Walker Bush @@ -84,7 +89,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2327 president George Herbert Walker Bush @@ -92,13 +97,15 @@ 1989-05-30 Belgium Brussels - Attended NATO Summit Meeting. Present were the Heads of State and Government of Canada, Denmark, France, Federal Republic of Germany, Greece, Iceland, Italy, Luxembourg, Norway, Portugal, Spain, Turkey, and the United Kingdom. + Attended NATO Summit Meeting. Present were the Heads of State and Government of + Canada, Denmark, France, Federal Republic of Germany, Greece, Iceland, Italy, + Luxembourg, Norway, Portugal, Spain, Turkey, and the United Kingdom. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2328 president George Herbert Walker Bush @@ -112,7 +119,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2329 president George Herbert Walker Bush @@ -126,7 +133,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2330 president George Herbert Walker Bush @@ -134,13 +141,14 @@ 1989-07-11 Poland Warsaw, Gdansk - Met with government and Solidarity leaders. Addressed the National Assembly on July 10. + Met with government and Solidarity leaders. Addressed the National Assembly on July + 10. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2331 president George Herbert Walker Bush @@ -148,13 +156,14 @@ 1989-07-13 Hungary Budapest - Met with Hungarian officials and delivered an address at Karl Marx University. + Met with Hungarian officials and delivered an address at Karl Marx + University. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2332 president George Herbert Walker Bush @@ -162,13 +171,16 @@ 1989-07-17 France Paris - Attended Economic Summit Meeting of the Heads of State and Government of Canada, France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. Also attended ceremonies for the Bicentennial of the French Revolution, and met with Ivorian President Houphouet-Boigny. + Attended Economic Summit Meeting of the Heads of State and Government of Canada, + France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. Also + attended ceremonies for the Bicentennial of the French Revolution, and met with Ivorian + President Houphouet-Boigny. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2333 president George Herbert Walker Bush @@ -176,13 +188,14 @@ 1989-07-18 Netherlands The Hague, Leiden - Met with Queen Beatrix and Prime Minister Lubbers and delivered a public address. + Met with Queen Beatrix and Prime Minister Lubbers and delivered a public + address. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2334 president George Herbert Walker Bush @@ -196,7 +209,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2335 president George Herbert Walker Bush @@ -204,13 +217,14 @@ 1989-12-03 Malta Valletta, Marsaxlokk Bay - Attended Summit Meeting (December 2-3) with Soviet Chairman Gorbachev. Met also with Maltese Prime Minister Fenech Adami. + Attended Summit Meeting (December 2-3) with Soviet Chairman Gorbachev. Met also + with Maltese Prime Minister Fenech Adami. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2336 president George Herbert Walker Bush @@ -218,13 +232,14 @@ 1989-12-04 Belgium Brussels - Briefed NATO Heads of State and Government on the U.S.-Soviet Summit Meeting. + Briefed NATO Heads of State and Government on the U.S.-Soviet Summit + Meeting. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2337 president George Herbert Walker Bush @@ -238,7 +253,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2338 president George Herbert Walker Bush @@ -246,13 +261,14 @@ 1990-02-15 Colombia Cartagena - Attended Summit Meeting on the control of illicit drug trafficking, with the Presidents of Colombia, Bolivia, and Peru. + Attended Summit Meeting on the control of illicit drug trafficking, with the + Presidents of Colombia, Bolivia, and Peru. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2339 president George Herbert Walker Bush @@ -266,7 +282,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2340 president George Herbert Walker Bush @@ -280,7 +296,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2341 president George Herbert Walker Bush @@ -294,7 +310,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2342 president George Herbert Walker Bush @@ -302,13 +318,14 @@ 1990-09-09 Finland Helsinki - Summit Meeting with Soviet President Gorbachev. Issued joint statement on the Persian Gulf crisis. Also met with President Koivisto. + Summit Meeting with Soviet President Gorbachev. Issued joint statement on the + Persian Gulf crisis. Also met with President Koivisto. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2343 president George Herbert Walker Bush @@ -316,13 +333,14 @@ 1990-11-17 Czechoslovakia Prague - Attended ceremonies commemorating the first anniversary of the "Velvet Revolution." Addressed the Federal Assembly. + Attended ceremonies commemorating the first anniversary of the "Velvet Revolution." + Addressed the Federal Assembly. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2344 president George Herbert Walker Bush @@ -336,7 +354,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2345 president George Herbert Walker Bush @@ -344,13 +362,14 @@ 1990-11-21 France Paris - Attended CSCE Summit Meeting and the signing of the Treaty on Conventional Armed Forces in Europe. + Attended CSCE Summit Meeting and the signing of the Treaty on Conventional Armed + Forces in Europe. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2346 president George Herbert Walker Bush @@ -358,13 +377,14 @@ 1990-11-22 Saudi Arabia Jeddah, Dhahran - Met with King Fahd and the Amir of Kuwait. Addressed U.S. and British military personnel in eastern Saudi Arabia. + Met with King Fahd and the Amir of Kuwait. Addressed U.S. and British military + personnel in eastern Saudi Arabia. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2347 president George Herbert Walker Bush @@ -378,7 +398,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2348 president George Herbert Walker Bush @@ -392,7 +412,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2349 president George Herbert Walker Bush @@ -406,7 +426,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2350 president George Herbert Walker Bush @@ -414,13 +434,14 @@ 1990-12-04 Brazil Brasilia - Met with President Collor de Mello and addressed a Joint Session of the Brazilian Congress. + Met with President Collor de Mello and addressed a Joint Session of the Brazilian + Congress. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2351 president George Herbert Walker Bush @@ -428,13 +449,14 @@ 1990-12-05 Uruguay Montevideo - Met with President Lacalle and addressed a Joint Session of the Uruguayan Congress. + Met with President Lacalle and addressed a Joint Session of the Uruguayan + Congress. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2352 president George Herbert Walker Bush @@ -442,13 +464,14 @@ 1990-12-06 Argentina Buenos Aires - Met with President Menem and addressed a Joint Session of the Argentinean Congress. + Met with President Menem and addressed a Joint Session of the Argentinean + Congress. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2353 president George Herbert Walker Bush @@ -456,13 +479,14 @@ 1990-12-07 Chile Santiago - Met with President Aylwin and addressed a Joint Session of the Chilean Congress. + Met with President Aylwin and addressed a Joint Session of the Chilean + Congress. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2354 president George Herbert Walker Bush @@ -476,7 +500,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2355 president George Herbert Walker Bush @@ -490,7 +514,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2356 president George Herbert Walker Bush @@ -504,7 +528,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2357 president George Herbert Walker Bush @@ -518,7 +542,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2358 president George Herbert Walker Bush @@ -532,7 +556,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2359 president George Herbert Walker Bush @@ -546,7 +570,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2360 president George Herbert Walker Bush @@ -554,13 +578,15 @@ 1991-07-18 United Kingdom London - Attended Economic Summit Meeting with the Heads of State and Government of Canada, France, Germany, Italy, Japan, and the United Kingdom. Also met with Soviet President Gorbachev. + Attended Economic Summit Meeting with the Heads of State and Government of Canada, + France, Germany, Italy, Japan, and the United Kingdom. Also met with Soviet President + Gorbachev. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2017-05-30T14:35:48.889-04:00 - + 2361 president George Herbert Walker Bush @@ -568,13 +594,14 @@ 1991-07-20 Greece Athens, Souda Bay - Met with Prime Minister Mitsotakis; addressed U.S. and Greek military personnel. + Met with Prime Minister Mitsotakis; addressed U.S. and Greek military + personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2362 president George Herbert Walker Bush @@ -588,7 +615,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2363 president George Herbert Walker Bush @@ -596,13 +623,14 @@ 1991-08-01 U.S.S.R. Moscow, Kiev - Attended U.S.-Soviet Summit Meeting. Signed Strategic Arms Reduction Treaty. Addressed the Ukrainian Parliament. + Attended U.S.-Soviet Summit Meeting. Signed Strategic Arms Reduction Treaty. + Addressed the Ukrainian Parliament. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2364 president George Herbert Walker Bush @@ -610,13 +638,14 @@ 1991-10-30 Spain Madrid - Met with Prime Minister Gonzalez, Soviet President Gorbachev and attended the opening session of the Middle East Peace Conference. + Met with Prime Minister Gonzalez, Soviet President Gorbachev and attended the + opening session of the Middle East Peace Conference. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2365 president George Herbert Walker Bush @@ -630,7 +659,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2366 president George Herbert Walker Bush @@ -644,7 +673,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2367 president George Herbert Walker Bush @@ -658,7 +687,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2368 president George Herbert Walker Bush @@ -666,13 +695,14 @@ 1992-01-03 Australia Sydney, Canberra, Melbourne - Met with Prime Minister Keating and senior Australian officials; addressed the Australian Parliament. + Met with Prime Minister Keating and senior Australian officials; addressed the + Australian Parliament. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2369 president George Herbert Walker Bush @@ -680,13 +710,14 @@ 1992-01-05 Singapore Singapore - Met with President Wee and Prime Minister Goh; attended a meeting of the ASEAN Business Council. + Met with President Wee and Prime Minister Goh; attended a meeting of the ASEAN + Business Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2370 president George Herbert Walker Bush @@ -694,13 +725,15 @@ 1992-01-07 Korea, Republic of Seoul - Met with President Roh and senior Korean officials, signed a science and technology agreement, addressed the Korean National Assembly, and visited U.S. military personnel. + Met with President Roh and senior Korean officials, signed a science and technology + agreement, addressed the Korean National Assembly, and visited U.S. military + personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2371 president George Herbert Walker Bush @@ -708,13 +741,14 @@ 1992-01-10 Japan Kyoto, Kashihara, Tokyo - Met with Emperor Akihito, Prime Minister Miyazawa, and senior Japanese officials. + Met with Emperor Akihito, Prime Minister Miyazawa, and senior Japanese + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2372 president George Herbert Walker Bush @@ -728,7 +762,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2373 president George Herbert Walker Bush @@ -742,7 +776,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2374 president George Herbert Walker Bush @@ -750,13 +784,14 @@ 1992-07-05 Poland Warsaw - Met with President Walesa and attended a memorial service for former Prime Minister Paderewski. + Met with President Walesa and attended a memorial service for former Prime Minister + Paderewski. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2375 president George Herbert Walker Bush @@ -764,13 +799,15 @@ 1992-07-08 Germany Munich - Attended an Economic Summit Meeting with the Heads of State and Government of Canada, France, Germany, Italy, Japan, and the United Kingdom. Also met with Russian President Yeltsin. + Attended an Economic Summit Meeting with the Heads of State and Government of + Canada, France, Germany, Italy, Japan, and the United Kingdom. Also met with Russian + President Yeltsin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2376 president George Herbert Walker Bush @@ -784,7 +821,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2377 president George Herbert Walker Bush @@ -798,7 +835,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2378 president George Herbert Walker Bush @@ -812,7 +849,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2379 president George Herbert Walker Bush @@ -826,7 +863,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2380 president George Herbert Walker Bush @@ -840,4 +877,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/president-travels/bush-george-w.xml b/president-travels/bush-george-w.xml index c090dad..ef00056 100644 --- a/president-travels/bush-george-w.xml +++ b/president-travels/bush-george-w.xml @@ -1,6 +1,6 @@ - + 2381 president George W. Bush @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2382 president George W. Bush @@ -28,7 +28,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2383 president George W. Bush @@ -42,7 +42,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2384 president George W. Bush @@ -56,7 +56,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2385 president George W. Bush @@ -64,13 +64,14 @@ 2001-06-15 Sweden Goteborg - Attended U.S.-European Union Summit Meeting; met with King Carl XVI Gustav. + Attended U.S.-European Union Summit Meeting; met with King Carl XVI + Gustav. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2386 president George W. Bush @@ -84,7 +85,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2387 president George W. Bush @@ -98,7 +99,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2388 president George W. Bush @@ -112,7 +113,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2389 president George W. Bush @@ -120,13 +121,14 @@ 2001-07-24 Italy Genoa, Castel Gandolfo, Rome - Attended the G-8 Economic Summit. Met with Pope John Paul II at Castel Gandolfo and with Prime Minister Berlusconi and President Ciampi in Rome. + Attended the G-8 Economic Summit. Met with Pope John Paul II at Castel Gandolfo and + with Prime Minister Berlusconi and President Ciampi in Rome. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2390 president George W. Bush @@ -140,7 +142,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2391 president George W. Bush @@ -154,7 +156,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2392 president George W. Bush @@ -168,7 +170,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2393 president George W. Bush @@ -176,13 +178,14 @@ 2002-02-21 Korea, Republic of Seoul, Dorasan, Osan - Met with President Kin Dae-Jung, visited the Demilitarized Zone, addressed U.S. military personnel. + Met with President Kin Dae-Jung, visited the Demilitarized Zone, addressed U.S. + military personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2394 president George W. Bush @@ -196,7 +199,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2395 president George W. Bush @@ -204,13 +207,14 @@ 2002-03-22 Mexico Monterrey - Attended the International Conference on Financing for Development and met with President Fox. + Attended the International Conference on Financing for Development and met with + President Fox. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2396 president George W. Bush @@ -218,13 +222,14 @@ 2002-03-24 Peru Lima - Met with the Presidents of Peru, Colombia, and Bolivia, and with the Vice President of Ecuador. + Met with the Presidents of Peru, Colombia, and Bolivia, and with the Vice President + of Ecuador. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2397 president George W. Bush @@ -238,7 +243,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2398 president George W. Bush @@ -252,7 +257,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2399 president George W. Bush @@ -260,13 +265,14 @@ 2002-05-26 Russia Moscow, St. Petersburg - Summit meeting with President Putin. Signed strategic arms reduction treaty. + Summit meeting with President Putin. Signed strategic arms reduction + treaty. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2400 president George W. Bush @@ -274,13 +280,14 @@ 2002-05-27 France Paris, St. Mere- Eglise, Colleville - Met with President Chirac and delivered a Memorial Day address in Normandy. + Met with President Chirac and delivered a Memorial Day address in + Normandy. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2401 president George W. Bush @@ -288,13 +295,14 @@ 2002-05-28 Italy Rome - Met with President Ciampi and Prime Minister Berlusconi. Attended NATO Summit Meeting and inaugurated the NATO-Russia Council. + Met with President Ciampi and Prime Minister Berlusconi. Attended NATO Summit + Meeting and inaugurated the NATO-Russia Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2402 president George W. Bush @@ -308,7 +316,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2403 president George W. Bush @@ -322,7 +330,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2404 president George W. Bush @@ -336,7 +344,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2405 president George W. Bush @@ -350,7 +358,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2406 president George W. Bush @@ -364,7 +372,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2407 president George W. Bush @@ -378,7 +386,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2408 president George W. Bush @@ -392,7 +400,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2409 president George W. Bush @@ -400,13 +408,14 @@ 2003-03-16 Portugal Terceira Island (Azores) - Discussed the Iraq crisis with British Prime Minister Blair, Spanish President Aznar, and Portuguese Prime Minister Durao. + Discussed the Iraq crisis with British Prime Minister Blair, Spanish President + Aznar, and Portuguese Prime Minister Durao. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2410 president George W. Bush @@ -414,13 +423,14 @@ 2003-04-08 United Kingdom Belfast, Hillsborough (Northern Ireland) - Met with Prime Minister Blair to discuss the reconstruction of Iraq. Also met with Irish Prime Minister Ahern and Northern Irish political leaders. + Met with Prime Minister Blair to discuss the reconstruction of Iraq. Also met with + Irish Prime Minister Ahern and Northern Irish political leaders. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2411 president George W. Bush @@ -428,13 +438,14 @@ 2003-05-31 Poland Krakow, Auschwitz-Birkenau - Met with President Kwasniewski and Prime Minister Miller; visited former Nazi concentration camps. + Met with President Kwasniewski and Prime Minister Miller; visited former Nazi + concentration camps. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2412 president George W. Bush @@ -442,13 +453,14 @@ 2003-06-01 Russia St. Petersburg - Met with President Putin and attended ceremonies commemorating the city’s 300th anniversary. + Met with President Putin and attended ceremonies commemorating the city’s 300th + anniversary. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2413 president George W. Bush @@ -456,13 +468,14 @@ 2003-06-02 France Evian-les-Bains - Attended the G-8 Economic Summit and met with Chinese President Hu Jintao. + Attended the G-8 Economic Summit and met with Chinese President Hu + Jintao. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2414 president George W. Bush @@ -470,13 +483,14 @@ 2003-06-03 Egypt Sharm el-Sheikh - Attended “Red Sea Summit” with the leaders of Bahrain, Egypt, Jordan, and Saudi Arabia, and with Palestinian Prime Minister Abbas. + Attended “Red Sea Summit” with the leaders of Bahrain, Egypt, Jordan, and Saudi + Arabia, and with Palestinian Prime Minister Abbas. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2415 president George W. Bush @@ -484,13 +498,14 @@ 2003-06-04 Jordan Aqaba - Attended meetings with Israeli Prime Minister Sharon and Palestinian Prime Minister Abbas. Met with King Abdullah II. + Attended meetings with Israeli Prime Minister Sharon and Palestinian Prime Minister + Abbas. Met with King Abdullah II. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2416 president George W. Bush @@ -498,13 +513,14 @@ 2003-06-05 Qatar Doha - Met with Emir Hamad Thani, visited U.S. Central Command headquarters and addressed U.S. military personnel. Overflew Baghdad en route to Qatar. + Met with Emir Hamad Thani, visited U.S. Central Command headquarters and addressed + U.S. military personnel. Overflew Baghdad en route to Qatar. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2417 president George W. Bush @@ -518,7 +534,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2418 president George W. Bush @@ -532,7 +548,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2419 president George W. Bush @@ -546,7 +562,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2420 president George W. Bush @@ -560,7 +576,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2421 president George W. Bush @@ -574,7 +590,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2422 president George W. Bush @@ -588,7 +604,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2423 president George W. Bush @@ -596,13 +612,14 @@ 2003-10-19 Philippines Manila - Addressed a joint session of the Philippine Congress and met with President Arroyo-Macapagal. + Addressed a joint session of the Philippine Congress and met with President + Arroyo-Macapagal. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2424 president George W. Bush @@ -616,7 +633,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2425 president George W. Bush @@ -630,7 +647,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2426 president George W. Bush @@ -644,7 +661,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2427 president George W. Bush @@ -658,7 +675,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2428 president George W. Bush @@ -672,7 +689,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2429 president George W. Bush @@ -680,13 +697,14 @@ 2003-11-27 Iraq Baghdad - Met with members of the Coalition Provisional Authority and the Iraqi Governing Council and addressed U.S. military personnel. + Met with members of the Coalition Provisional Authority and the Iraqi Governing + Council and addressed U.S. military personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2430 president George W. Bush @@ -700,7 +718,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2431 president George W. Bush @@ -714,7 +732,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2432 president George W. Bush @@ -728,7 +746,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2433 president George W. Bush @@ -742,7 +760,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2434 president George W. Bush @@ -756,7 +774,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2435 president George W. Bush @@ -764,13 +782,14 @@ 2004-06-29 Turkey Ankara, Istanbul - Met with President Sezer and Prime Minister Erdogan and attended NATO Summit meeting in Istanbul. + Met with President Sezer and Prime Minister Erdogan and attended NATO Summit + meeting in Istanbul. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2436 president George W. Bush @@ -784,7 +803,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2437 president George W. Bush @@ -798,7 +817,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2438 president George W. Bush @@ -812,7 +831,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2439 president George W. Bush @@ -826,7 +845,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2440 president George W. Bush @@ -840,7 +859,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2441 president George W. Bush @@ -854,7 +873,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2442 president George W. Bush @@ -868,7 +887,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2443 president George W. Bush @@ -882,7 +901,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2444 president George W. Bush @@ -896,7 +915,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2445 president George W. Bush @@ -904,13 +923,14 @@ 2005-05-08 Netherlands Maastricht, Valkenburg, Margraten - Met with Prime Minister Balkenende and gave an address at a U.S. military cemetery. + Met with Prime Minister Balkenende and gave an address at a U.S. military + cemetery. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2446 president George W. Bush @@ -924,7 +944,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2447 president George W. Bush @@ -938,7 +958,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2448 president George W. Bush @@ -952,7 +972,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2449 president George W. Bush @@ -966,7 +986,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2450 president George W. Bush @@ -980,7 +1000,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2451 president George W. Bush @@ -994,7 +1014,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2452 president George W. Bush @@ -1008,7 +1028,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2453 president George W. Bush @@ -1022,7 +1042,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2454 president George W. Bush @@ -1036,7 +1056,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2455 president George W. Bush @@ -1050,7 +1070,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2456 president George W. Bush @@ -1064,7 +1084,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2457 president George W. Bush @@ -1078,7 +1098,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2458 president George W. Bush @@ -1086,13 +1106,14 @@ 2006-03-01 Afghanistan Bagram, Kabul - Met with President Karzai, dedicated new U.S. Embassy, and addressed U.S. military personnel. + Met with President Karzai, dedicated new U.S. Embassy, and addressed U.S. military + personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2459 president George W. Bush @@ -1106,7 +1127,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2460 president George W. Bush @@ -1120,7 +1141,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2461 president George W. Bush @@ -1134,7 +1155,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2462 president George W. Bush @@ -1148,7 +1169,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2463 president George W. Bush @@ -1162,7 +1183,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2464 president George W. Bush @@ -1170,13 +1191,14 @@ 2006-06-22 Hungary Budapest - Met with President Solyom, Prime Minister Gyurcsany and commemorated the 50th anniversary of the Hungarian Uprising. + Met with President Solyom, Prime Minister Gyurcsany and commemorated the 50th + anniversary of the Hungarian Uprising. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2465 president George W. Bush @@ -1190,7 +1212,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2466 president George W. Bush @@ -1198,13 +1220,14 @@ 2006-07-17 Russia St. Petersburg - Attended the G-8 Economic Summit. Met with President Hu of China, July 16; and President Lula of Brazil and Prime Minister Singh of India, July 17. + Attended the G-8 Economic Summit. Met with President Hu of China, July 16; and + President Lula of Brazil and Prime Minister Singh of India, July 17. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2467 president George W. Bush @@ -1218,7 +1241,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2468 president George W. Bush @@ -1226,13 +1249,14 @@ 2006-11-17 Singapore Singapore - Met with Acting President Pillay and Prime Minister Lee. Addressed National Singapore University. + Met with Acting President Pillay and Prime Minister Lee. Addressed National + Singapore University. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2469 president George W. Bush @@ -1246,7 +1270,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2470 president George W. Bush @@ -1260,7 +1284,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2471 president George W. Bush @@ -1274,7 +1298,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2472 president George W. Bush @@ -1288,7 +1312,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2473 president George W. Bush @@ -1302,7 +1326,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2474 president George W. Bush @@ -1316,7 +1340,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2475 president George W. Bush @@ -1330,7 +1354,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2476 president George W. Bush @@ -1344,7 +1368,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2477 president George W. Bush @@ -1358,7 +1382,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2478 president George W. Bush @@ -1372,7 +1396,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2479 president George W. Bush @@ -1380,13 +1404,14 @@ 2007-06-05 Czech Republic Prague - Met with President Klaus and Prime Minister Topolanek. Addressed Conference on Democracy and Security. + Met with President Klaus and Prime Minister Topolanek. Addressed Conference on + Democracy and Security. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2480 president George W. Bush @@ -1394,13 +1419,14 @@ 2007-06-08 Germany Heiligen-damm - Attended the G-8 Summit Meeting. Also met with Chinese President Hu Jintao. + Attended the G-8 Summit Meeting. Also met with Chinese President Hu + Jintao. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2481 president George W. Bush @@ -1414,7 +1440,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2482 president George W. Bush @@ -1428,7 +1454,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2483 president George W. Bush @@ -1442,7 +1468,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2484 president George W. Bush @@ -1456,7 +1482,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2485 president George W. Bush @@ -1470,7 +1496,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2486 president George W. Bush @@ -1478,13 +1504,14 @@ 2007-08-21 Canada Montebello, Quebec - Attended North American Leaders’ Summit with Mexican President Calderon and Canadian Prime Minister Harper. + Attended North American Leaders’ Summit with Mexican President Calderon and + Canadian Prime Minister Harper. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2487 president George W. Bush @@ -1492,13 +1519,14 @@ 2007-09-03 Iraq Al-Assad Air Force Base - Met with Gen. Petraeus, Secretary of State Rice, Secretary of Defense Gates, senior U.S. officials, and Iraqi political leaders. + Met with Gen. Petraeus, Secretary of State Rice, Secretary of Defense Gates, senior + U.S. officials, and Iraqi political leaders. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2488 president George W. Bush @@ -1512,7 +1540,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2489 president George W. Bush @@ -1526,7 +1554,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2490 president George W. Bush @@ -1540,7 +1568,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2491 president George W. Bush @@ -1548,13 +1576,14 @@ 2008-01-12 Kuwait Kuwait City, Camp Arifjan - Attended Roundtable on Democracy and Development. Met with Gen. Petraeus and Ambassador Crocker at Camp Arifjan and addressed U.S. military personnel. + Attended Roundtable on Democracy and Development. Met with Gen. Petraeus and + Ambassador Crocker at Camp Arifjan and addressed U.S. military personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2492 president George W. Bush @@ -1562,13 +1591,14 @@ 2008-01-13 Bahrain Manama - Met with King Hamad bin Isa al –Khalifa. Addressed U.S. military personnel. + Met with King Hamad bin Isa al –Khalifa. Addressed U.S. military + personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2493 president George W. Bush @@ -1576,13 +1606,14 @@ 2008-01-14 United Arab Emirates Abu Dhabi, Dubai - Met with President Khalifa bin Zayid al Nuhayyin and Crown Prince Sheikh Mohammed. + Met with President Khalifa bin Zayid al Nuhayyin and Crown Prince Sheikh + Mohammed. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2494 president George W. Bush @@ -1596,7 +1627,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2495 president George W. Bush @@ -1610,7 +1641,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2496 president George W. Bush @@ -1624,7 +1655,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2497 president George W. Bush @@ -1638,7 +1669,7 @@ marrsaw 2013-08-21T00:00:00-04:00 - + 2498 president George W. Bush @@ -1652,7 +1683,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2499 president George W. Bush @@ -1666,7 +1697,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2500 president George W. Bush @@ -1680,7 +1711,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2501 president George W. Bush @@ -1694,7 +1725,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2502 president George W. Bush @@ -1702,13 +1733,15 @@ 2008-04-04 Romania Bucharest - Met with President Basescu and Prime Minister Popescu-Tariceanu. Attended NATO, Euro-Atlantic Partnership Council, NATO-Ukraine Commission, and NATO-Russia Council Summit Meetings. + Met with President Basescu and Prime Minister Popescu-Tariceanu. Attended NATO, + Euro-Atlantic Partnership Council, NATO-Ukraine Commission, and NATO-Russia Council + Summit Meetings. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2503 president George W. Bush @@ -1722,7 +1755,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2504 president George W. Bush @@ -1736,7 +1769,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2505 president George W. Bush @@ -1744,13 +1777,14 @@ 2008-05-16 Israel Tel Aviv, Jerusalem, Masada - Met with President Peres and Prime Minister Olmert. Addressed the Knesset. Commemorated Israel’s 60th anniversary. + Met with President Peres and Prime Minister Olmert. Addressed the Knesset. + Commemorated Israel’s 60th anniversary. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2506 president George W. Bush @@ -1764,7 +1798,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2507 president George W. Bush @@ -1772,13 +1806,15 @@ 2008-05-18 Egypt Sharm el-Sheikh - Met with President Mubarak, King Abdullah II of Jordan, Palestinian Authority President Abbas and Prime Minister Fayyad, Afghan President Karzai and Pakistani Prime Minister Gilan. Addressed the World Economic Forum. + Met with President Mubarak, King Abdullah II of Jordan, Palestinian Authority + President Abbas and Prime Minister Fayyad, Afghan President Karzai and Pakistani Prime + Minister Gilan. Addressed the World Economic Forum. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2508 president George W. Bush @@ -1786,13 +1822,14 @@ 2008-06-10 Slovenia Ljubljana - Met with President Turk and Prime Minister Jansa. Attended the EU-US Summit Meeting. + Met with President Turk and Prime Minister Jansa. Attended the EU-US Summit + Meeting. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2509 president George W. Bush @@ -1806,7 +1843,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2510 president George W. Bush @@ -1820,7 +1857,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2511 president George W. Bush @@ -1834,7 +1871,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2512 president George W. Bush @@ -1842,13 +1879,14 @@ 2008-06-15 France Paris - Met with President Sarkozy. Addressed the OECD. Attended wreath-laying ceremonies at Suresnes and Mont Valerien. + Met with President Sarkozy. Addressed the OECD. Attended wreath-laying ceremonies + at Suresnes and Mont Valerien. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2513 president George W. Bush @@ -1856,13 +1894,15 @@ 2008-06-16 United Kingdom London, Belfast - Met with Queen Elizabeth II at Windsor Castle. Met with Prime Minister Blair and Quartet Representative Blair. In Belfast, met with First Minister Robertson and Deputy First Minister McGuinness. + Met with Queen Elizabeth II at Windsor Castle. Met with Prime Minister Blair and + Quartet Representative Blair. In Belfast, met with First Minister Robertson and Deputy + First Minister McGuinness. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2514 president George W. Bush @@ -1870,13 +1910,14 @@ 2008-07-09 Japan Toyako - Attended the G-8 Economic Summit. Also met with Tanzanian President Kikwete, Indian Prime Minister Singh, Chinese President Hu, and South Korean President Lee. + Attended the G-8 Economic Summit. Also met with Tanzanian President Kikwete, Indian + Prime Minister Singh, Chinese President Hu, and South Korean President Lee. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2515 president George W. Bush @@ -1890,7 +1931,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2516 president George W. Bush @@ -1904,7 +1945,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2517 president George W. Bush @@ -1912,13 +1953,14 @@ 2008-08-11 China Beijing - Attended opening ceremonies of the Olympic Games. Dedicated a new U.S. Embassy. Met with President Hu and Russian Prime Minister Putin. + Attended opening ceremonies of the Olympic Games. Dedicated a new U.S. Embassy. Met + with President Hu and Russian Prime Minister Putin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2518 president George W. Bush @@ -1932,7 +1974,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2519 president George W. Bush @@ -1940,13 +1982,14 @@ 2008-12-14 Iraq Baghdad - Met with President Talabani and Prime Minister Maliki. Signed Strategic Framework and Security Agreements. Visited U.S. military personnel. + Met with President Talabani and Prime Minister Maliki. Signed Strategic Framework + and Security Agreements. Visited U.S. military personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2520 president George W. Bush @@ -1960,4 +2003,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/president-travels/carter-jimmy.xml b/president-travels/carter-jimmy.xml index 6742ac2..5dadc69 100644 --- a/president-travels/carter-jimmy.xml +++ b/president-travels/carter-jimmy.xml @@ -1,6 +1,6 @@ - + 2880 president James E. Carter @@ -8,13 +8,17 @@ 1977-05-10 United Kingdom London, Newcastle - Attended Economic Summit Meeting May 7-8 of the Heads of State and Government of Canada, France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. Also met with the Prime Ministers of Greece, Belgium, Turkey, Norway, the Netherlands, and Luxembourg, and with the President of Portugal. Addressed NATO Ministers meeting on May 10. + Attended Economic Summit Meeting May 7-8 of the Heads of State and Government of + Canada, France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. + Also met with the Prime Ministers of Greece, Belgium, Turkey, Norway, the Netherlands, + and Luxembourg, and with the President of Portugal. Addressed NATO Ministers meeting on + May 10. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2881 president James E. Carter @@ -22,13 +26,14 @@ 1977-05-09 Switzerland Geneva - Official visit; met with President Furgler. Also met with Syrian President Assad. + Official visit; met with President Furgler. Also met with Syrian President + Assad. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2882 president James E. Carter @@ -42,7 +47,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2883 president James E. Carter @@ -50,13 +55,14 @@ 1978-01-01 Iran Tehran - Official visit; met with Shah Mohammed Reza Pahlavi and King Hussein of Jordan. + Official visit; met with Shah Mohammed Reza Pahlavi and King Hussein of + Jordan. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2884 president James E. Carter @@ -70,7 +76,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2885 president James E. Carter @@ -84,7 +90,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2886 president James E. Carter @@ -98,7 +104,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2887 president James E. Carter @@ -112,7 +118,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2888 president James E. Carter @@ -120,13 +126,14 @@ 1978-01-06 Belgium Brussels - Met with King Baudouin and Prime Minister Tindemans; attended meetings of the Commission of the European Communities and the North Atlantic Council. + Met with King Baudouin and Prime Minister Tindemans; attended meetings of the + Commission of the European Communities and the North Atlantic Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2889 president James E. Carter @@ -134,13 +141,14 @@ 1978-03-29 Venezuela Caracas - Met with President Perez, addressed Congress, and signed maritime boundary agreement. + Met with President Perez, addressed Congress, and signed maritime boundary + agreement. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2890 president James E. Carter @@ -148,13 +156,14 @@ 1978-03-31 Brazil Brasilia, Rio de Janeiro - Official visit; met with President Geisel and addressed Brazilian Congress. + Official visit; met with President Geisel and addressed Brazilian + Congress. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2891 president James E. Carter @@ -162,13 +171,14 @@ 1978-04-03 Nigeria Lagos - Met with President Obasanjo; first State visit of a U.S. President to sub-Saharan Africa. + Met with President Obasanjo; first State visit of a U.S. President to sub-Saharan + Africa. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2892 president James E. Carter @@ -182,7 +192,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2893 president James E. Carter @@ -190,13 +200,16 @@ 1978-06-17 Panama Panama City - Invited by President Lakas and General Torrijos to sign protocol confirming exchange of documents ratifying Panama Canal treaties. Also met informally with Presidents Perez of Venezuela, Lopez Michelson of Colombia, Lopez Portillo of Mexico, Carazo of Costa Rica, and Prime Minister Manley of Jamaica. + Invited by President Lakas and General Torrijos to sign protocol confirming + exchange of documents ratifying Panama Canal treaties. Also met informally with + Presidents Perez of Venezuela, Lopez Michelson of Colombia, Lopez Portillo of Mexico, + Carazo of Costa Rica, and Prime Minister Manley of Jamaica. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2894 president James E. Carter @@ -204,13 +217,14 @@ 1978-07-15 Germany, Federal Republic of Bonn, Wiesbaden-Erbenheim Air Base, Frankfurt - State visit; met with President Scheel and Chancellor Schmidt. Addressed U.S. and German military personnel. + State visit; met with President Scheel and Chancellor Schmidt. Addressed U.S. and + German military personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2895 president James E. Carter @@ -224,7 +238,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2896 president James E. Carter @@ -232,13 +246,14 @@ 1978-07-17 Germany, Federal Republic of Bonn - Attended Economic Summit Meeting of the Heads of State and Government of France, the Federal Republic of Germany, Canada, Italy, Japan, and the United Kingdom. + Attended Economic Summit Meeting of the Heads of State and Government of France, + the Federal Republic of Germany, Canada, Italy, Japan, and the United Kingdom. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2897 president James E. Carter @@ -246,13 +261,14 @@ 1979-01-09 France Guadeloupe - Met informally with President Giscard d'Estaing, German Chancellor Schmidt, and British Prime Minister Callaghan. + Met informally with President Giscard d'Estaing, German Chancellor Schmidt, and + British Prime Minister Callaghan. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2898 president James E. Carter @@ -260,13 +276,14 @@ 1979-02-16 Mexico Mexico, D.F. - State visit; met with President Lopez Portillo and addressed the Mexican Congress. + State visit; met with President Lopez Portillo and addressed the Mexican + Congress. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2899 president James E. Carter @@ -280,7 +297,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2900 president James E. Carter @@ -288,13 +305,14 @@ 1979-03-13 Israel Tel Aviv, Jerusalem - State visit; met with President Navon and Prime Minister Begin. Addressed the Knesset. + State visit; met with President Navon and Prime Minister Begin. Addressed the + Knesset. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2901 president James E. Carter @@ -308,7 +326,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2902 president James E. Carter @@ -316,13 +334,14 @@ 1979-06-18 Austria Vienna - State visit; met with President Kirchschlaeger and Chancellor Kreisky. Met with Soviet General Secretary Brezhnev to sign SALT II Treaty June 16-18. + State visit; met with President Kirchschlaeger and Chancellor Kreisky. Met with + Soviet General Secretary Brezhnev to sign SALT II Treaty June 16-18. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2012-11-09T14:35:48.889-04:00 - + 2903 president James E. Carter @@ -330,13 +349,15 @@ 1979-06-29 Japan Tokyo, Shimoda - State visit; met with Emperor Hirohito and Prime Minister Ohira. Attended Economic Summit Meeting June 28-29 of the Heads of State and Government of Canada, France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. + State visit; met with Emperor Hirohito and Prime Minister Ohira. Attended Economic + Summit Meeting June 28-29 of the Heads of State and Government of Canada, France, the + Federal Republic of Germany, Italy, Japan, and the United Kingdom. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2904 president James E. Carter @@ -350,7 +371,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2905 president James E. Carter @@ -358,13 +379,15 @@ 1980-06-24 Italy Rome, Venice - State visit; met with President Pertini. Attended Economic Summit Conference June 21-24 of the Heads of State and Government of Canada, France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. + State visit; met with President Pertini. Attended Economic Summit Conference June + 21-24 of the Heads of State and Government of Canada, France, the Federal Republic of + Germany, Italy, Japan, and the United Kingdom. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2906 president James E. Carter @@ -378,7 +401,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2907 president James E. Carter @@ -392,7 +415,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2908 president James E. Carter @@ -406,7 +429,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2909 president James E. Carter @@ -420,7 +443,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2910 president James E. Carter @@ -428,10 +451,12 @@ 1980-07-10 Japan Tokyo - Official visit; attended memorial services for former Prime Minister Ohira; met with Emperor Hirohito, President Ziaur Rahman of Bangladesh, Prime Minister Fraser of Australia, Prime Minister Prem of Thailand, and Premier Hua Guofeng of China. + Official visit; attended memorial services for former Prime Minister Ohira; met + with Emperor Hirohito, President Ziaur Rahman of Bangladesh, Prime Minister Fraser of + Australia, Prime Minister Prem of Thailand, and Premier Hua Guofeng of China. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/president-travels/clinton-william-j.xml b/president-travels/clinton-william-j.xml index a1eed8d..a3bfba3 100644 --- a/president-travels/clinton-william-j.xml +++ b/president-travels/clinton-william-j.xml @@ -1,6 +1,6 @@ - + 2521 president William J. Clinton @@ -8,13 +8,14 @@ 1993-04-04 Canada Vancouver - Summit meeting with Russian President Yeltsin; also met with Prime Minister Mulroney. + Summit meeting with Russian President Yeltsin; also met with Prime Minister + Mulroney. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2522 president William J. Clinton @@ -22,13 +23,15 @@ 1993-07-10 Japan Tokyo - Attended Economic Summit Meeting with the Heads of State and Government of Canada, France, Germany, Italy, Japan, and the United Kingdom. Also met with Russian President Yeltsin. + Attended Economic Summit Meeting with the Heads of State and Government of Canada, + France, Germany, Italy, Japan, and the United Kingdom. Also met with Russian President + Yeltsin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2523 president William J. Clinton @@ -36,13 +39,14 @@ 1993-07-11 Korea, Republic of Seoul - Met with President Kim, addressed the Korean National Assembly, and visited U.S. military personnel. + Met with President Kim, addressed the Korean National Assembly, and visited U.S. + military personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2524 president William J. Clinton @@ -56,7 +60,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2525 president William J. Clinton @@ -64,13 +68,14 @@ 1994-01-12 Czech Republic Prague - Met with the Presidents and Prime Ministers of the Czech Republic, Hungary, Poland, and Slovakia. + Met with the Presidents and Prime Ministers of the Czech Republic, Hungary, Poland, + and Slovakia. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2526 president William J. Clinton @@ -84,7 +89,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2527 president William J. Clinton @@ -92,13 +97,14 @@ 1994-01-15 Russia Moscow - Met with President Yeltsin and senior Russian officials. Signed nuclear disarmament agreement with Ukraine. + Met with President Yeltsin and senior Russian officials. Signed nuclear disarmament + agreement with Ukraine. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2528 president William J. Clinton @@ -112,7 +118,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2529 president William J. Clinton @@ -126,7 +132,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2530 president William J. Clinton @@ -134,13 +140,14 @@ 1994-06-04 Italy Rome, Nettuno - Met with Prime Minister Berlusconi and President Scalfaro. Visited U.S. Military Cemetery. + Met with Prime Minister Berlusconi and President Scalfaro. Visited U.S. Military + Cemetery. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2531 president William J. Clinton @@ -154,7 +161,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2532 president William J. Clinton @@ -162,13 +169,16 @@ 1994-06-05 United Kingdom Cambridge, London, Portsmouth - Visited U.S. Military Cemetery. Met with Prime Minister Major. Attended state dinner with Queen Elizabeth II and heads of state and government of Canada, Poland, the Czech Republic, Slovakia, Australia, New Zealand, Norway, and Belgium. Attended D-Day commemorative ceremonies. + Visited U.S. Military Cemetery. Met with Prime Minister Major. Attended state + dinner with Queen Elizabeth II and heads of state and government of Canada, Poland, the + Czech Republic, Slovakia, Australia, New Zealand, Norway, and Belgium. Attended D-Day + commemorative ceremonies. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2533 president William J. Clinton @@ -176,13 +186,14 @@ 1994-06-08 France Colleville, Paris - Attended D-Day memorial ceremonies. Met with President Mitterrand and senior French officials. Addressed the French National Assembly. + Attended D-Day memorial ceremonies. Met with President Mitterrand and senior French + officials. Addressed the French National Assembly. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2534 president William J. Clinton @@ -196,7 +207,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2535 president William J. Clinton @@ -210,7 +221,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2536 president William J. Clinton @@ -218,13 +229,14 @@ 1994-07-07 Poland Warsaw - Addressed the Polish Parliament and attended ceremonies commemorating the Warsaw Ghetto revolt. + Addressed the Polish Parliament and attended ceremonies commemorating the Warsaw + Ghetto revolt. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2537 president William J. Clinton @@ -232,13 +244,14 @@ 1994-07-10 Italy Naples - Met with the Prime Ministers of Italy, Japan, and Canada. Attended G-7 Economic Summit Meeting and met with President Yeltsin. + Met with the Prime Ministers of Italy, Japan, and Canada. Attended G-7 Economic + Summit Meeting and met with President Yeltsin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2538 president William J. Clinton @@ -246,13 +259,15 @@ 1994-07-12 Germany Bonn, Oggersheim, Berlin - Met with Chancellor Kohl and German political leaders. Delivered a public address at the Brandenburg Gate and attended deactivation ceremony for the Berlin Brigade. + Met with Chancellor Kohl and German political leaders. Delivered a public address + at the Brandenburg Gate and attended deactivation ceremony for the Berlin + Brigade. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2539 president William J. Clinton @@ -266,7 +281,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2540 president William J. Clinton @@ -274,13 +289,14 @@ 1994-10-27 Jordan Aqaba, Wadi Arava, Amman - Attended signing of the Israel-Jordan peace agreement and addressed the Jordanian Parliament. + Attended signing of the Israel-Jordan peace agreement and addressed the Jordanian + Parliament. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2541 president William J. Clinton @@ -294,7 +310,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2542 president William J. Clinton @@ -308,7 +324,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2543 president William J. Clinton @@ -322,7 +338,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2544 president William J. Clinton @@ -336,7 +352,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2545 president William J. Clinton @@ -350,7 +366,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2546 president William J. Clinton @@ -364,7 +380,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2547 president William J. Clinton @@ -378,7 +394,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2548 president William J. Clinton @@ -392,7 +408,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2549 president William J. Clinton @@ -406,7 +422,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2550 president William J. Clinton @@ -420,7 +436,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2551 president William J. Clinton @@ -434,7 +450,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2552 president William J. Clinton @@ -442,13 +458,15 @@ 1995-06-17 Canada Halifax (Nova Scotia) - Attended Economic Summit Meeting with the Heads of State and Government of Canada, France, Germany, Italy, Japan, and the United Kingdom. Also met with Russian President Yeltsin. + Attended Economic Summit Meeting with the Heads of State and Government of Canada, + France, Germany, Italy, Japan, and the United Kingdom. Also met with Russian President + Yeltsin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2553 president William J. Clinton @@ -462,7 +480,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2554 president William J. Clinton @@ -470,13 +488,14 @@ 1995-12-01 United Kingdom London, Belfast, Londonderry - Met with Queen Elizabeth and Prime Minister Major; addressed Parliament, and delivered several public addresses in Northern Ireland. + Met with Queen Elizabeth and Prime Minister Major; addressed Parliament, and + delivered several public addresses in Northern Ireland. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2555 president William J. Clinton @@ -490,7 +509,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2556 president William J. Clinton @@ -504,7 +523,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2557 president William J. Clinton @@ -518,7 +537,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2558 president William J. Clinton @@ -532,7 +551,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2559 president William J. Clinton @@ -546,7 +565,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2560 president William J. Clinton @@ -560,7 +579,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2561 president William J. Clinton @@ -574,7 +593,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2562 president William J. Clinton @@ -588,7 +607,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2563 president William J. Clinton @@ -602,7 +621,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2564 president William J. Clinton @@ -616,7 +635,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2565 president William J. Clinton @@ -630,7 +649,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2566 president William J. Clinton @@ -638,13 +657,14 @@ 1996-04-18 Japan Tokyo - State visit. Issued joint statement on U.S.-Japanese security relations. Addressed the Diet and U.S. Navy personnel. + State visit. Issued joint statement on U.S.-Japanese security relations. Addressed + the Diet and U.S. Navy personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2567 president William J. Clinton @@ -652,13 +672,14 @@ 1996-04-21 Russia St. Petersburg, Moscow - Attended G-7 summit on nuclear safety and held a summit meeting with President Yeltsin. + Attended G-7 summit on nuclear safety and held a summit meeting with President + Yeltsin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2568 president William J. Clinton @@ -666,13 +687,14 @@ 1996-06-29 France Lyon, Perouges, Paris - Attended the G-7 Economic Summit Meeting and met with Russian Prime Minister Chernomyrdin and UN Secretary-General Boutrous-Ghali. + Attended the G-7 Economic Summit Meeting and met with Russian Prime Minister + Chernomyrdin and UN Secretary-General Boutrous-Ghali. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2569 president William J. Clinton @@ -680,13 +702,14 @@ 1996-11-23 Australia Sydney, Canberra, Port Douglas - State Visit. Addressed joint meeting of Parliament and visited the Great Barrier Reef. + State Visit. Addressed joint meeting of Parliament and visited the Great Barrier + Reef. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2570 president William J. Clinton @@ -700,7 +723,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2571 president William J. Clinton @@ -714,7 +737,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2572 president William J. Clinton @@ -722,13 +745,14 @@ 1997-03-21 Finland Helsinki - Summit meeting with Russian President Yeltsin. Also met with President Ahtisaari. + Summit meeting with Russian President Yeltsin. Also met with President + Ahtisaari. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2573 president William J. Clinton @@ -742,7 +766,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2574 president William J. Clinton @@ -750,13 +774,14 @@ 1997-05-09 Costa Rica San Jose - Attended a Summit Meeting of Presidents of the Central American Republics. + Attended a Summit Meeting of Presidents of the Central American + Republics. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2575 president William J. Clinton @@ -770,7 +795,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2576 president William J. Clinton @@ -784,7 +809,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2577 president William J. Clinton @@ -792,13 +817,14 @@ 1997-05-28 Netherlands The Hague, Rotterdam - Attended U.S.-EU Summit Meeting and commemorated the 50th anniversary of the Marshall Plan. + Attended U.S.-EU Summit Meeting and commemorated the 50th anniversary of the + Marshall Plan. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2578 president William J. Clinton @@ -812,7 +838,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2579 president William J. Clinton @@ -820,13 +846,14 @@ 1997-07-10 Spain Palma de Majorca, Madrid, Granada - Vacationed with King Juan Carlos I and Queen Sophia and attended a NATO Summit Meeting in Madrid. + Vacationed with King Juan Carlos I and Queen Sophia and attended a NATO Summit + Meeting in Madrid. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2580 president William J. Clinton @@ -840,7 +867,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2581 president William J. Clinton @@ -854,7 +881,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2582 president William J. Clinton @@ -868,7 +895,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2583 president William J. Clinton @@ -882,7 +909,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2584 president William J. Clinton @@ -896,7 +923,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2585 president William J. Clinton @@ -910,7 +937,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2586 president William J. Clinton @@ -924,7 +951,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2587 president William J. Clinton @@ -938,7 +965,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2588 president William J. Clinton @@ -946,13 +973,14 @@ 1997-12-22 Bosnia-Herzegovina Sarajevo, Tuzla - Met with the Bosnian Collective Presidency and with Bosnian Serb President Plavsic; visited U.S. military personnel. + Met with the Bosnian Collective Presidency and with Bosnian Serb President Plavsic; + visited U.S. military personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2589 president William J. Clinton @@ -966,7 +994,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2590 president William J. Clinton @@ -974,13 +1002,14 @@ 1998-03-25 Uganda Kampala, Kisowera, Mukono, Wanyange, Entebbe - Met with President Museveni and with the Presidents of Ethiopia, Rwanda, Tanzania, Kenya, and the Congo. + Met with President Museveni and with the Presidents of Ethiopia, Rwanda, Tanzania, + Kenya, and the Congo. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2591 president William J. Clinton @@ -994,7 +1023,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2592 president William J. Clinton @@ -1008,7 +1037,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2593 president William J. Clinton @@ -1022,7 +1051,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2594 president William J. Clinton @@ -1030,13 +1059,14 @@ 1998-04-02 Senegal Dakar, Thies, Goree Island - Met with President Diouf; visited Senegalese peacekeeping troops; delivered several public addresses. + Met with President Diouf; visited Senegalese peacekeeping troops; delivered several + public addresses. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2595 president William J. Clinton @@ -1050,7 +1080,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2596 president William J. Clinton @@ -1058,13 +1088,14 @@ 1998-05-14 Germany Berlin, Potsdam, Frankfurt, Eisenach - Met with Chancellor Kohl; commemorated 50th anniversary of the Berlin Airlift. + Met with Chancellor Kohl; commemorated 50th anniversary of the Berlin + Airlift. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2597 president William J. Clinton @@ -1078,7 +1109,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2598 president William J. Clinton @@ -1092,7 +1123,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2599 president William J. Clinton @@ -1106,7 +1137,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2600 president William J. Clinton @@ -1120,7 +1151,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2601 president William J. Clinton @@ -1128,13 +1159,14 @@ 1998-09-03 United Kingdom Belfast, Armagh, Omagh - Met with Prime Minister Blair and Northern Irish political leaders; addressed the Northern Ireland Assembly. + Met with Prime Minister Blair and Northern Irish political leaders; addressed the + Northern Ireland Assembly. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2602 president William J. Clinton @@ -1142,13 +1174,14 @@ 1998-09-05 Ireland Dublin, Adare, Limerick, Ballybunion - Met with Prime Minister Ahern; delivered several public addresses; played golf. + Met with Prime Minister Ahern; delivered several public addresses; played + golf. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2603 president William J. Clinton @@ -1156,13 +1189,14 @@ 1998-11-20 Japan Tokyo - Met with Emperor Akihito and Prime Minister Obuchi; addressed American Chamber of Commerce. + Met with Emperor Akihito and Prime Minister Obuchi; addressed American Chamber of + Commerce. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2604 president William J. Clinton @@ -1176,7 +1210,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2605 president William J. Clinton @@ -1190,7 +1224,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2606 president William J. Clinton @@ -1198,13 +1232,14 @@ 1998-12-15 Palestinian Authority Gaza, Bethlehem, Erez - Addressed Palestine National Council; attended a meeting with Prime Minister Netanyahu and Chairman Arafat at Erez. + Addressed Palestine National Council; attended a meeting with Prime Minister + Netanyahu and Chairman Arafat at Erez. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2607 president William J. Clinton @@ -1218,7 +1253,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2608 president William J. Clinton @@ -1232,7 +1267,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2609 president William J. Clinton @@ -1246,7 +1281,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2610 president William J. Clinton @@ -1254,13 +1289,14 @@ 1999-03-09 Honduras Soto Cano Air Base, Tegucigalpa - Discussed reconstruction aid with President Flores; addressed U.S. military personnel. + Discussed reconstruction aid with President Flores; addressed U.S. military + personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2611 president William J. Clinton @@ -1274,7 +1310,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2612 president William J. Clinton @@ -1288,7 +1324,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2613 president William J. Clinton @@ -1302,21 +1338,23 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2614 president William J. Clinton 1999-05-04 1999-05-06 Germany - Frankfurt, Ramstein Air Force Base, Spangdahlem Air Force Base, Bonn, Ingelheim - Addressed U.S. military personnel; met with Chancellor Schroeder; met with Kosovo refugees. + Frankfurt, Ramstein Air Force Base, Spangdahlem Air Force Base, Bonn, + Ingelheim + Addressed U.S. military personnel; met with Chancellor Schroeder; met with Kosovo + refugees. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2615 president William J. Clinton @@ -1330,7 +1368,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2616 president William J. Clinton @@ -1338,13 +1376,14 @@ 1999-06-17 France Paris - Discussed peacekeeping in Kosovo with President Chirac and Prime Minister Jospin. + Discussed peacekeeping in Kosovo with President Chirac and Prime Minister + Jospin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2617 president William J. Clinton @@ -1358,7 +1397,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2618 president William J. Clinton @@ -1366,13 +1405,14 @@ 1999-06-22 Slovenia Ljubljana - Met with President Kucan, Prime Minister Drnovsek, and President Djukanovic of Montenegro. + Met with President Kucan, Prime Minister Drnovsek, and President Djukanovic of + Montenegro. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2619 president William J. Clinton @@ -1380,13 +1420,14 @@ 1999-06-22 Macedonia, Former Yugoslav Republic of Skopje - Met with President Gligorov; addressed Kosovar refugees and NATO military personnel. + Met with President Gligorov; addressed Kosovar refugees and NATO military + personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2620 president William J. Clinton @@ -1400,7 +1441,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2621 president William J. Clinton @@ -1408,13 +1449,14 @@ 1999-07-25 Morocco Rabat - Attended the funeral of King Hassan II; met with Palestinian Authority President Arafat and Israeli Prime Minister Barak. + Attended the funeral of King Hassan II; met with Palestinian Authority President + Arafat and Israeli Prime Minister Barak. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2622 president William J. Clinton @@ -1428,7 +1470,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2623 president William J. Clinton @@ -1442,7 +1484,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2624 president William J. Clinton @@ -1456,7 +1498,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2625 president William J. Clinton @@ -1464,13 +1506,15 @@ 1999-10-08 Canada Ottawa, Mont Tremblant - Working visit. Met with Prime Minister Chretien and Quebec Premier Bouchard, attended Federalism Conference at Mont Tremblant, and dedicated new Embassy building. + Working visit. Met with Prime Minister Chretien and Quebec Premier Bouchard, + attended Federalism Conference at Mont Tremblant, and dedicated new Embassy + building. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2626 president William J. Clinton @@ -1478,13 +1522,14 @@ 1999-11-02 Norway Oslo - State visit. Attended commemorative ceremony for former Israeli Prime Minister Rabin; discussed Chechnya crisis with Russian Prime Minister Putin. + State visit. Attended commemorative ceremony for former Israeli Prime Minister + Rabin; discussed Chechnya crisis with Russian Prime Minister Putin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2627 president William J. Clinton @@ -1492,13 +1537,14 @@ 1999-11-19 Turkey Ankara, Izmit, Ephesus, Istanbul - State visit and attended Organization for Security and Cooperation in Europe Summit meeting in Istanbul. + State visit and attended Organization for Security and Cooperation in Europe Summit + meeting in Istanbul. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2628 president William J. Clinton @@ -1512,7 +1558,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2629 president William J. Clinton @@ -1526,7 +1572,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2630 president William J. Clinton @@ -1540,7 +1586,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2631 president William J. Clinton @@ -1548,13 +1594,14 @@ 1999-11-23 Serbia-Montenegro (Kosovo) Pristina, Urosevac, Camp Bondsteel - Met with Kosovar Transisional Council; addressed the Albanian community and U.S. military personnel. + Met with Kosovar Transisional Council; addressed the Albanian community and U.S. + military personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2632 president William J. Clinton @@ -1568,7 +1615,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2633 president William J. Clinton @@ -1582,7 +1629,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2634 president William J. Clinton @@ -1590,13 +1637,14 @@ 2000-03-25 India New Delhi, Agra, Jaipur, Hyderabad, Bombay - Met with President Narayanan; signed Joint Statement on Energy and the Environment; addressed the Indian Parliament. + Met with President Narayanan; signed Joint Statement on Energy and the Environment; + addressed the Indian Parliament. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2635 president William J. Clinton @@ -1610,7 +1658,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2636 president William J. Clinton @@ -1624,7 +1672,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2637 president William J. Clinton @@ -1638,7 +1686,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2638 president William J. Clinton @@ -1652,7 +1700,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2639 president William J. Clinton @@ -1660,13 +1708,14 @@ 2000-06-01 Portugal Lisbon - Attended U.S.-European Union Summit Meeting; met with Israeli Prime Minister Barak. + Attended U.S.-European Union Summit Meeting; met with Israeli Prime Minister + Barak. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2640 president William J. Clinton @@ -1674,13 +1723,14 @@ 2000-06-03 Germany Berlin, Aachen - Met with President Rau and Chancellor Schroeder; received Charlemagne Prize, and attended a Third Way Conference. + Met with President Rau and Chancellor Schroeder; received Charlemagne Prize, and + attended a Third Way Conference. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2641 president William J. Clinton @@ -1694,7 +1744,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2642 president William J. Clinton @@ -1708,7 +1758,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2643 president William J. Clinton @@ -1722,7 +1772,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2644 president William J. Clinton @@ -1736,7 +1786,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2645 president William J. Clinton @@ -1750,7 +1800,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2646 president William J. Clinton @@ -1758,13 +1808,14 @@ 2000-08-29 Tanzania Arusha - Met with former South African President Mandela to promote a peace agreement for Burundi; also met with President Mkapa. + Met with former South African President Mandela to promote a peace agreement for + Burundi; also met with President Mkapa. wicentowskijc 2010-02-27T14:35:48.889-04:00 marrsaw 2013-08-21T00:00:00-04:00 - + 2647 president William J. Clinton @@ -1778,7 +1829,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2648 president William J. Clinton @@ -1792,7 +1843,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2649 president William J. Clinton @@ -1806,7 +1857,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2650 president William J. Clinton @@ -1820,7 +1871,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2651 president William J. Clinton @@ -1834,7 +1885,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2652 president William J. Clinton @@ -1848,7 +1899,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2653 president William J. Clinton @@ -1856,10 +1907,11 @@ 2000-12-14 United Kingdom Belfast, London, Coventry - Met with Prime Minister Blair and Northern Irish political leaders in Belfast, met with Queen Elizabeth II, and made a speech at the University of Warwick. + Met with Prime Minister Blair and Northern Irish political leaders in Belfast, met + with Queen Elizabeth II, and made a speech at the University of Warwick. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/president-travels/coolidge-calvin.xml b/president-travels/coolidge-calvin.xml index 64a9cb6..a83232c 100644 --- a/president-travels/coolidge-calvin.xml +++ b/president-travels/coolidge-calvin.xml @@ -1,6 +1,6 @@ - + 2670 president Calvin Coolidge @@ -14,4 +14,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/president-travels/eisenhower-dwight-d.xml b/president-travels/eisenhower-dwight-d.xml index 792c8a4..52b0dbb 100644 --- a/president-travels/eisenhower-dwight-d.xml +++ b/president-travels/eisenhower-dwight-d.xml @@ -1,6 +1,6 @@ - + 2739 president Dwight D. Eisenhower @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2740 president Dwight D. Eisenhower @@ -28,7 +28,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2741 president Dwight D. Eisenhower @@ -42,7 +42,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2742 president Dwight D. Eisenhower @@ -50,13 +50,14 @@ 1953-12-08 United Kingdom Bermuda - Attended Bermuda Conference with Prime Minister Churchill and French President Laniel. + Attended Bermuda Conference with Prime Minister Churchill and French President + Laniel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2743 president Dwight D. Eisenhower @@ -64,13 +65,14 @@ 1955-07-23 Switzerland Geneva - Summit conference with British Prime Minister Eden, French Premier Faure, and Soviet Premier Bulganin. + Summit conference with British Prime Minister Eden, French Premier Faure, and + Soviet Premier Bulganin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2744 president Dwight D. Eisenhower @@ -84,7 +86,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2745 president Dwight D. Eisenhower @@ -98,7 +100,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2746 president Dwight D. Eisenhower @@ -112,7 +114,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2747 president Dwight D. Eisenhower @@ -126,7 +128,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2748 president Dwight D. Eisenhower @@ -140,7 +142,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2749 president Dwight D. Eisenhower @@ -154,7 +156,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2750 president Dwight D. Eisenhower @@ -168,7 +170,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2751 president Dwight D. Eisenhower @@ -182,7 +184,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2752 president Dwight D. Eisenhower @@ -190,13 +192,14 @@ 1959-09-04 France Paris - Informal meeting with President De Gaulle and Italian Premier Segni. Addressed North Atlantic Council. + Informal meeting with President De Gaulle and Italian Premier Segni. Addressed + North Atlantic Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2753 president Dwight D. Eisenhower @@ -210,7 +213,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2754 president Dwight D. Eisenhower @@ -224,7 +227,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2755 president Dwight D. Eisenhower @@ -238,7 +241,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2756 president Dwight D. Eisenhower @@ -252,7 +255,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2757 president Dwight D. Eisenhower @@ -266,7 +269,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2758 president Dwight D. Eisenhower @@ -280,7 +283,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2759 president Dwight D. Eisenhower @@ -294,7 +297,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2760 president Dwight D. Eisenhower @@ -308,7 +311,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2761 president Dwight D. Eisenhower @@ -316,13 +319,14 @@ 1959-12-15 Greece Athens - Official visit; met with King Paul, Prime Minister Karamanlis, and addressed Parliament. Traveled by sea from Athens to Tunis. + Official visit; met with King Paul, Prime Minister Karamanlis, and addressed + Parliament. Traveled by sea from Athens to Tunis. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2762 president Dwight D. Eisenhower @@ -336,7 +340,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2763 president Dwight D. Eisenhower @@ -344,13 +348,14 @@ 1959-12-21 France Toulon, Paris - Conference with President De Gaulle, British Prime Minister Macmillan, and German Chancellor Adenauer. + Conference with President De Gaulle, British Prime Minister Macmillan, and German + Chancellor Adenauer. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2764 president Dwight D. Eisenhower @@ -364,7 +369,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2765 president Dwight D. Eisenhower @@ -378,7 +383,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2766 president Dwight D. Eisenhower @@ -392,7 +397,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2767 president Dwight D. Eisenhower @@ -406,7 +411,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2768 president Dwight D. Eisenhower @@ -420,7 +425,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2769 president Dwight D. Eisenhower @@ -428,13 +433,14 @@ 1960-03-03 Uruguay Montevideo - Met with President Nardone. Returned to the U.S. via Buenos Aires and Surinam. + Met with President Nardone. Returned to the U.S. via Buenos Aires and + Surinam. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2770 president Dwight D. Eisenhower @@ -442,13 +448,14 @@ 1960-05-19 France Paris - Conference with President De Gaulle, British Prime Minister Macmillan, and Soviet Premier Khrushchev. + Conference with President De Gaulle, British Prime Minister Macmillan, and Soviet + Premier Khrushchev. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2771 president Dwight D. Eisenhower @@ -462,7 +469,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2772 president Dwight D. Eisenhower @@ -470,13 +477,14 @@ 1960-06-16 Philippines Manila - State visit; met with President Garcia. Traveled by sea from Manila to Taipei. + State visit; met with President Garcia. Traveled by sea from Manila to + Taipei. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2773 president Dwight D. Eisenhower @@ -490,7 +498,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2774 president Dwight D. Eisenhower @@ -504,7 +512,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2775 president Dwight D. Eisenhower @@ -518,4 +526,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/president-travels/ford-gerald-r.xml b/president-travels/ford-gerald-r.xml index 79daea0..c3e1a1c 100644 --- a/president-travels/ford-gerald-r.xml +++ b/president-travels/ford-gerald-r.xml @@ -1,6 +1,6 @@ - + 2861 president Gerald R. Ford @@ -8,13 +8,14 @@ 1974-10-21 Mexico Nogales, Magdalena de Kino - Met with President Echeverria and laid a wreath at the tomb of Padre Eusebio Kino. + Met with President Echeverria and laid a wreath at the tomb of Padre Eusebio + Kino. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2862 president Gerald R. Ford @@ -28,7 +29,7 @@ bottsjd 2020-03-23T00:00:00-04:00 - + 2863 president Gerald R. Ford @@ -42,7 +43,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2864 president Gerald R. Ford @@ -50,13 +51,14 @@ 1974-11-24 U.S.S.R. Vladivostok - Met with General Secretary Brezhnev and discussed limitations of strategic arms. + Met with General Secretary Brezhnev and discussed limitations of strategic + arms. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2865 president Gerald R. Ford @@ -70,7 +72,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2866 president Gerald R. Ford @@ -78,13 +80,14 @@ 1975-05-31 Belgium Brussels - Attended NATO summit meeting, addressed the North Atlantic Council, and met separately with NATO Heads of State and Government. + Attended NATO summit meeting, addressed the North Atlantic Council, and met + separately with NATO Heads of State and Government. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2867 president Gerald R. Ford @@ -92,13 +95,14 @@ 1975-06-01 Spain Madrid - Met with Generalissimo Franco. Received keys to city from Mayor of Madrid. + Met with Generalissimo Franco. Received keys to city from Mayor of + Madrid. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2868 president Gerald R. Ford @@ -112,7 +116,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2869 president Gerald R. Ford @@ -126,7 +130,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2870 president Gerald R. Ford @@ -140,7 +144,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2871 president Gerald R. Ford @@ -154,7 +158,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2872 president Gerald R. Ford @@ -168,7 +172,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2873 president Gerald R. Ford @@ -176,13 +180,16 @@ 1975-08-02 Finland Helsinki - Attended opening session of the Conference on Security and Cooperation in Europe. Met with the Heads of State and Government of Finland, Great Britain, Turkey, West Germany, France, Italy, and Spain. Also met with Soviet General Secretary Brezhnev. Signed the Final Act of the Conference on August 1. + Attended opening session of the Conference on Security and Cooperation in Europe. + Met with the Heads of State and Government of Finland, Great Britain, Turkey, West + Germany, France, Italy, and Spain. Also met with Soviet General Secretary Brezhnev. + Signed the Final Act of the Conference on August 1. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2874 president Gerald R. Ford @@ -196,7 +203,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2875 president Gerald R. Ford @@ -210,7 +217,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2876 president Gerald R. Ford @@ -218,13 +225,14 @@ 1975-11-17 France Rambouillet - Attended Economic Summit meeting of the Heads of State and Government of France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. + Attended Economic Summit meeting of the Heads of State and Government of France, + the Federal Republic of Germany, Italy, Japan, and the United Kingdom. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2877 president Gerald R. Ford @@ -232,13 +240,14 @@ 1975-12-05 China, People’s Republic of Peking - Official visit; met with Chairman Mao Tse-tung and Vice Premier Teng Hsiao-ping. + Official visit; met with Chairman Mao Tse-tung and Vice Premier Teng + Hsiao-ping. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2878 president Gerald R. Ford @@ -252,7 +261,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2879 president Gerald R. Ford @@ -266,4 +275,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/president-travels/harding-warren-g.xml b/president-travels/harding-warren-g.xml index e9ec306..6e8ec25 100644 --- a/president-travels/harding-warren-g.xml +++ b/president-travels/harding-warren-g.xml @@ -1,6 +1,6 @@ - + 2667 president Warren G. Harding @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2668 president Warren G. Harding @@ -28,7 +28,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2669 president Warren G. Harding @@ -42,4 +42,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/president-travels/hoover-herbert-c.xml b/president-travels/hoover-herbert-c.xml index b00a29b..60e5066 100644 --- a/president-travels/hoover-herbert-c.xml +++ b/president-travels/hoover-herbert-c.xml @@ -1,6 +1,6 @@ - + 2671 president Herbert C. Hoover @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2672 president Herbert C. Hoover @@ -28,7 +28,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2673 president Herbert C. Hoover @@ -42,7 +42,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2674 president Herbert C. Hoover @@ -56,7 +56,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2675 president Herbert C. Hoover @@ -70,7 +70,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2676 president Herbert C. Hoover @@ -84,7 +84,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2677 president Herbert C. Hoover @@ -98,7 +98,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2678 president Herbert C. Hoover @@ -112,7 +112,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2679 president Herbert C. Hoover @@ -126,7 +126,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2680 president Herbert C. Hoover @@ -140,4 +140,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/president-travels/johnson-lyndon-b.xml b/president-travels/johnson-lyndon-b.xml index 7ef45da..399f0fc 100644 --- a/president-travels/johnson-lyndon-b.xml +++ b/president-travels/johnson-lyndon-b.xml @@ -1,6 +1,6 @@ - + 2792 president Lyndon B. Johnson @@ -8,13 +8,14 @@ 1964-09-16 Canada Vancouver - Informal visit; met with Prime Minister Pearson in ceremonies related to the Columbia River Treaty. + Informal visit; met with Prime Minister Pearson in ceremonies related to the + Columbia River Treaty. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2793 president Lyndon B. Johnson @@ -28,7 +29,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2794 president Lyndon B. Johnson @@ -36,13 +37,14 @@ 1966-08-22 Canada Campobello Island, Chamcook - Laid cornerstone at Roosevelt-Campobello International Park and conferred informally with Prime Minister Pearson. + Laid cornerstone at Roosevelt-Campobello International Park and conferred + informally with Prime Minister Pearson. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2795 president Lyndon B. Johnson @@ -56,7 +58,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2796 president Lyndon B. Johnson @@ -70,7 +72,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2797 president Lyndon B. Johnson @@ -78,13 +80,14 @@ 1966-10-26 Philippines Manila, Los Banos, Corregidor - Attended summit conference with the Heads of State and Government of Australia, Korea, New Zealand, the Philippines, Thailand, and Vietnam. + Attended summit conference with the Heads of State and Government of Australia, + Korea, New Zealand, the Philippines, Thailand, and Vietnam. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2798 president Lyndon B. Johnson @@ -98,7 +101,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2799 president Lyndon B. Johnson @@ -112,7 +115,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2800 president Lyndon B. Johnson @@ -126,7 +129,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2801 president Lyndon B. Johnson @@ -140,7 +143,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2802 president Lyndon B. Johnson @@ -148,13 +151,14 @@ 1966-12-03 Mexico Ciudad Acuna - Informal meeting with President Diaz Ordaz. Inspected construction of Arnistad Dam. + Informal meeting with President Diaz Ordaz. Inspected construction of Arnistad + Dam. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2803 president Lyndon B. Johnson @@ -168,7 +172,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2804 president Lyndon B. Johnson @@ -182,7 +186,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2805 president Lyndon B. Johnson @@ -190,13 +194,14 @@ 1967-04-26 Germany Bonn - Attended funeral of Chancellor Adenauer and conversed with various heads of state. + Attended funeral of Chancellor Adenauer and conversed with various heads of + state. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2806 president Lyndon B. Johnson @@ -210,7 +215,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2807 president Lyndon B. Johnson @@ -218,13 +223,14 @@ 1967-10-28 Mexico Ciudad Juarez - Attended transfer of El Chamizal from the US. to Mexico and conferred with President Diaz Ordaz. + Attended transfer of El Chamizal from the US. to Mexico and conferred with + President Diaz Ordaz. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2808 president Lyndon B. Johnson @@ -232,13 +238,14 @@ 1967-12-22 Australia Canberra - Attended funeral of Prime Minister Holt and conferred with other attending heads of state. + Attended funeral of Prime Minister Holt and conferred with other attending heads of + state. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2809 president Lyndon B. Johnson @@ -252,7 +259,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2810 president Lyndon B. Johnson @@ -266,7 +273,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2811 president Lyndon B. Johnson @@ -280,7 +287,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2812 president Lyndon B. Johnson @@ -294,7 +301,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2813 president Lyndon B. Johnson @@ -308,7 +315,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2814 president Lyndon B. Johnson @@ -322,7 +329,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2815 president Lyndon B. Johnson @@ -336,7 +343,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2816 president Lyndon B. Johnson @@ -350,7 +357,7 @@ wicentowskijc 2013-04-10T14:35:48.889-04:00 - + 2817 president Lyndon B. Johnson @@ -364,7 +371,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2818 president Lyndon B. Johnson @@ -378,4 +385,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/president-travels/nixon-richard-m.xml b/president-travels/nixon-richard-m.xml index 6ff852a..9ba2193 100644 --- a/president-travels/nixon-richard-m.xml +++ b/president-travels/nixon-richard-m.xml @@ -1,6 +1,6 @@ - + 2819 president Richard M. Nixon @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2820 president Richard M. Nixon @@ -22,13 +22,14 @@ 1969-02-26 United Kingdom London - Informal visit; held conversations with Prime Minister Wilson. Received by Queen Elizabeth II. + Informal visit; held conversations with Prime Minister Wilson. Received by Queen + Elizabeth II. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2018-09-17T09:06:57.03-04:00 - + 2821 president Richard M. Nixon @@ -42,7 +43,7 @@ marrsaw 2013-08-29T00:00:00-04:00 - + 2822 president Richard M. Nixon @@ -56,7 +57,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2823 president Richard M. Nixon @@ -70,7 +71,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2824 president Richard M. Nixon @@ -84,7 +85,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2825 president Richard M. Nixon @@ -98,7 +99,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2826 president Richard M. Nixon @@ -112,7 +113,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2827 president Richard M. Nixon @@ -126,7 +127,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2828 president Richard M. Nixon @@ -140,7 +141,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2829 president Richard M. Nixon @@ -154,7 +155,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2830 president Richard M. Nixon @@ -168,7 +169,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2831 president Richard M. Nixon @@ -182,7 +183,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2832 president Richard M. Nixon @@ -196,7 +197,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2833 president Richard M. Nixon @@ -210,7 +211,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2834 president Richard M. Nixon @@ -224,7 +225,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2835 president Richard M. Nixon @@ -232,13 +233,14 @@ 1970-09-30 Italy Rome, Naples - Official visit; met with President Saragat; visited NATO Southern Command. + Official visit; met with President Saragat; visited NATO Southern + Command. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2836 president Richard M. Nixon @@ -252,7 +254,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2837 president Richard M. Nixon @@ -266,7 +268,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2838 president Richard M. Nixon @@ -280,7 +282,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2839 president Richard M. Nixon @@ -294,7 +296,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2840 president Richard M. Nixon @@ -308,7 +310,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2841 president Richard M. Nixon @@ -322,7 +324,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2842 president Richard M. Nixon @@ -330,13 +332,14 @@ 1971-12-14 Portugal Terceira Island (Azores) - Discussed international monetary problems with French President Pompidou and Portuguese Prime Minister Caetano. + Discussed international monetary problems with French President Pompidou and + Portuguese Prime Minister Caetano. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2843 president Richard M. Nixon @@ -350,7 +353,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2844 president Richard M. Nixon @@ -364,7 +367,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2845 president Richard M. Nixon @@ -372,13 +375,14 @@ 1972-04-15 Canada Ottawa - State visit; met with Governor General Michener and Prime Minister Trudeau; addressed Parliament. + State visit; met with Governor General Michener and Prime Minister Trudeau; + addressed Parliament. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2846 president Richard M. Nixon @@ -392,7 +396,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2847 president Richard M. Nixon @@ -400,13 +404,14 @@ 1972-05-30 U.S.S.R. Moscow, Leningrad, Kiev - State visit; met with Premier Kosygin and General Secretary Brezhnev. Signed SALT I and ABM Treaties. + State visit; met with Premier Kosygin and General Secretary Brezhnev. Signed SALT I + and ABM Treaties. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2848 president Richard M. Nixon @@ -420,7 +425,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2849 president Richard M. Nixon @@ -434,7 +439,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2850 president Richard M. Nixon @@ -442,13 +447,14 @@ 1973-06-01 Iceland Reykjavik - Met with President Eldjarn and Prime Minister Johanneson, and French President Pompidou. + Met with President Eldjarn and Prime Minister Johanneson, and French President + Pompidou. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2851 president Richard M. Nixon @@ -456,13 +462,16 @@ 1974-04-07 France Paris - Attended memorial services for former President Pompidou. Met afterward with interim President Poher, Italian Prime Minister Leone, British Prime Minister Wilson, West German Chancellor Brandt, Danish Prime Minister Hartling, Soviet President Podgorny, and Japanese Prime Minister Tanaka. + Attended memorial services for former President Pompidou. Met afterward with + interim President Poher, Italian Prime Minister Leone, British Prime Minister Wilson, + West German Chancellor Brandt, Danish Prime Minister Hartling, Soviet President + Podgorny, and Japanese Prime Minister Tanaka. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2852 president Richard M. Nixon @@ -476,7 +485,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2853 president Richard M. Nixon @@ -490,7 +499,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2854 president Richard M. Nixon @@ -504,7 +513,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2855 president Richard M. Nixon @@ -518,7 +527,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2856 president Richard M. Nixon @@ -532,7 +541,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2857 president Richard M. Nixon @@ -546,7 +555,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2858 president Richard M. Nixon @@ -560,7 +569,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2859 president Richard M. Nixon @@ -568,13 +577,15 @@ 1974-06-26 Belgium Brussels - Attended North Atlantic Council meeting, and met separately with King Baudonin and Queen Fabiola, Prime Minister Tindemans; and with German Chancellor Schmidt, British Prime Minister Wilson, and Italian Prime Minister Rumor. + Attended North Atlantic Council meeting, and met separately with King Baudonin and + Queen Fabiola, Prime Minister Tindemans; and with German Chancellor Schmidt, British + Prime Minister Wilson, and Italian Prime Minister Rumor. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2860 president Richard M. Nixon @@ -582,10 +593,11 @@ 1974-07-03 U.S.S.R. Moscow, Minsk, Oreanda - Official visit; met with General Secretary Brezhnev, President Podgorny, and Premier Kosygin. + Official visit; met with General Secretary Brezhnev, President Podgorny, and + Premier Kosygin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/president-travels/obama-barack.xml b/president-travels/obama-barack.xml index 017b3db..76d37d1 100644 --- a/president-travels/obama-barack.xml +++ b/president-travels/obama-barack.xml @@ -1,6 +1,6 @@ - + 2960 president Barack Obama @@ -14,7 +14,7 @@ wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2961 president Barack Obama @@ -22,13 +22,14 @@ 2009-04-03 United Kingdom London - Met with Queen Elizabeth II and Prime Minister Brown. Attended the G-20 Economic Summit Meeting. + Met with Queen Elizabeth II and Prime Minister Brown. Attended the G-20 Economic + Summit Meeting. wicentowskijc 2010-10-19T13:56:12.253-04:00 wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2962 president Barack Obama @@ -42,7 +43,7 @@ wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2963 president Barack Obama @@ -56,7 +57,7 @@ wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2964 president Barack Obama @@ -70,7 +71,7 @@ wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2965 president Barack Obama @@ -78,13 +79,14 @@ 2009-04-07 Turkey Ankara, Istanbul - Met with President Gul and Prime Minister Erdogan; addressed the Grand National Assembly. + Met with President Gul and Prime Minister Erdogan; addressed the Grand National + Assembly. wicentowskijc 2010-10-19T13:56:12.253-04:00 wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2966 president Barack Obama @@ -98,7 +100,7 @@ wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2967 president Barack Obama @@ -112,7 +114,7 @@ wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2968 president Barack Obama @@ -126,7 +128,7 @@ wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2969 president Barack Obama @@ -140,7 +142,7 @@ wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2970 president Barack Obama @@ -154,7 +156,7 @@ wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2971 president Barack Obama @@ -162,13 +164,14 @@ 2009-06-05 Germany Dresden, Weimar, Landstuhl - Met with Chancellor Merkel, visited the Buchenwald concentration camp and visited wounded U.S. military personnel. + Met with Chancellor Merkel, visited the Buchenwald concentration camp and visited + wounded U.S. military personnel. wicentowskijc 2010-10-19T13:56:12.253-04:00 wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2972 president Barack Obama @@ -176,13 +179,14 @@ 2009-06-07 France Paris, Caen - Met with President Sarkozy and dedicated the new visitor center at the U.S. Military Cemetery in Normandy. + Met with President Sarkozy and dedicated the new visitor center at the U.S. + Military Cemetery in Normandy. wicentowskijc 2010-10-19T13:56:12.253-04:00 wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2973 president Barack Obama @@ -196,7 +200,7 @@ wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2974 president Barack Obama @@ -204,13 +208,15 @@ 2009-07-10 Italy Rome, L’Aquila - Attended the G-8 Summit Meeting. Also met with the leaders of Angola, Algeria, Australia, Brazil, China, Egypt, India, Mexico, Nigeria, Senegal, South Africa, and various international organizations. + Attended the G-8 Summit Meeting. Also met with the leaders of Angola, Algeria, + Australia, Brazil, China, Egypt, India, Mexico, Nigeria, Senegal, South Africa, and + various international organizations. wicentowskijc 2010-10-19T13:56:12.253-04:00 wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2975 president Barack Obama @@ -224,7 +230,7 @@ wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2976 president Barack Obama @@ -238,7 +244,7 @@ wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2977 president Barack Obama @@ -252,7 +258,7 @@ wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2978 president Barack Obama @@ -260,13 +266,14 @@ 2009-10-02 Denmark Copenhagen - Addressed a session of the International Olympic Committee and met with Prime Minister Rasmussen. + Addressed a session of the International Olympic Committee and met with Prime + Minister Rasmussen. wicentowskijc 2010-10-19T13:56:12.253-04:00 wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2979 president Barack Obama @@ -280,7 +287,7 @@ wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2980 president Barack Obama @@ -294,7 +301,7 @@ wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2981 president Barack Obama @@ -302,13 +309,14 @@ 2009-11-18 China, People’s Republic of Shanghai, Beijing - Met with President Hu, National People’s Congress Chairman Wu, and Premier Wen. Visited the Great Wall. + Met with President Hu, National People’s Congress Chairman Wu, and Premier Wen. + Visited the Great Wall. wicentowskijc 2010-10-19T13:56:12.253-04:00 wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2982 president Barack Obama @@ -322,7 +330,7 @@ wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2983 president Barack Obama @@ -336,7 +344,7 @@ wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 2984 president Barack Obama @@ -350,7 +358,7 @@ wicentowskijc 2010-10-19T13:56:12.253-04:00 - + 3037 president Barack Obama @@ -364,7 +372,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3038 president Barack Obama @@ -372,13 +380,16 @@ 2010-04-09 Czech Republic Prague - Signed Strategic Arms Reduction Treaty with Russia. Also met with the Presidents of the Czech Republic, Estonia, Latvia, and Romania; and with the Prime Ministers of Bulgaria, Croatia, the Czech Republic, Hungary, Lithuania, Poland, Slovakia, and Slovenia. + Signed Strategic Arms Reduction Treaty with Russia. Also met with the Presidents of + the Czech Republic, Estonia, Latvia, and Romania; and with the Prime Ministers of + Bulgaria, Croatia, the Czech Republic, Hungary, Lithuania, Poland, Slovakia, and + Slovenia. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3039 president Barack Obama @@ -392,7 +403,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3040 president Barack Obama @@ -400,13 +411,14 @@ 2010-11-09 India Mumbai, New Delhi - Attended U.S.-India Business and Entrepreneurship Summit in Mumbai. Met with Prime Minister Singh and President Patil. Addressed the Indian Parliament. + Attended U.S.-India Business and Entrepreneurship Summit in Mumbai. Met with Prime + Minister Singh and President Patil. Addressed the Indian Parliament. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3041 president Barack Obama @@ -420,7 +432,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3042 president Barack Obama @@ -434,7 +446,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3043 president Barack Obama @@ -448,7 +460,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3044 president Barack Obama @@ -462,7 +474,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3045 president Barack Obama @@ -470,13 +482,14 @@ 2010-12-03 Afghanistan Bagram - Met with the leaders of the U.S. military and diplomatic missions and visited U.S. military personnel. + Met with the leaders of the U.S. military and diplomatic missions and visited U.S. + military personnel. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3046 president Barack Obama @@ -490,7 +503,7 @@ wicentowskijc 2012-04-02T13:30:57.225-04:00 - + 3047 president Barack Obama @@ -504,7 +517,7 @@ wicentowskijc 2012-04-02T13:30:57.225-04:00 - + 3048 president Barack Obama @@ -518,7 +531,7 @@ wicentowskijc 2012-04-02T13:30:57.225-04:00 - + 3049 president Barack Obama @@ -526,13 +539,14 @@ 2011-05-23 Ireland Dublin, Farmleigh, Moneygall - Met with President McAleese and Prime Minister Kenny. Visited ancestral home. + Met with President McAleese and Prime Minister Kenny. Visited ancestral + home. wicentowskijc 2012-04-02T13:30:57.225-04:00 wicentowskijc 2012-04-02T13:30:57.225-04:00 - + 3050 president Barack Obama @@ -540,13 +554,14 @@ 2011-05-26 United Kingdom London - Met with Queen Elizabeth II, Prime Minister Cameron, and Labour Party leader Miliband. + Met with Queen Elizabeth II, Prime Minister Cameron, and Labour Party leader + Miliband. wicentowskijc 2012-04-02T13:30:57.225-04:00 wicentowskijc 2012-04-02T13:30:57.225-04:00 - + 3051 president Barack Obama @@ -560,7 +575,7 @@ marrsaw 2013-11-04T01:00:00-04:00 - + 3052 president Barack Obama @@ -574,7 +589,7 @@ wicentowskijc 2012-04-02T13:30:57.225-04:00 - + 3053 president Barack Obama @@ -588,7 +603,7 @@ wicentowskijc 2012-04-02T13:30:57.225-04:00 - + 3054 president Barack Obama @@ -596,13 +611,14 @@ 2011-11-17 Australia Canberra, Darwin - Met with Prime Minister Gillard. Announced a new military cooperation agreement. + Met with Prime Minister Gillard. Announced a new military cooperation + agreement. wicentowskijc 2012-04-02T13:30:57.225-04:00 wicentowskijc 2012-04-02T13:30:57.225-04:00 - + 3055 president Barack Obama @@ -616,7 +632,7 @@ wicentowskijc 2012-04-02T13:30:57.225-04:00 - + 3203 president Barack Obama @@ -624,13 +640,14 @@ 2012-03-27 Korea, Republic of Seoul - Attended the Nuclear Security Summit. Met with President Lee Myung-bak and visited the Demilitarized Zone. + Attended the Nuclear Security Summit. Met with President Lee Myung-bak and visited + the Demilitarized Zone. wicentowskijc 2013-01-17T09:26:14.331-04:00 wicentowskijc 2013-01-17T09:26:14.331-04:00 - + 3204 president Barack Obama @@ -644,7 +661,7 @@ wicentowskijc 2013-01-17T09:26:14.331-04:00 - + 3205 president Barack Obama @@ -652,13 +669,14 @@ 2012-05-02 Afghanistan Kabul - Met with President Karzai and addressed U.S. military personnel. Signed a long-term strategic partnership agreement. + Met with President Karzai and addressed U.S. military personnel. Signed a long-term + strategic partnership agreement. wicentowskijc 2013-01-17T09:26:14.331-04:00 wicentowskijc 2013-01-17T09:26:14.331-04:00 - + 3206 president Barack Obama @@ -672,7 +690,7 @@ wicentowskijc 2013-01-17T09:26:14.331-04:00 - + 3207 president Barack Obama @@ -686,7 +704,7 @@ wicentowskijc 2013-02-19T09:26:14.331-04:00 - + 3208 president Barack Obama @@ -694,13 +712,14 @@ 2012-11-19 Burma Rangoon - Met with President Thein Sein, National League for Democracy leader Aung San Suu Kyi, and representatives of Burmese civil society. + Met with President Thein Sein, National League for Democracy leader Aung San Suu + Kyi, and representatives of Burmese civil society. wicentowskijc 2013-01-17T09:26:14.331-04:00 wicentowskijc 2013-01-17T09:26:14.331-04:00 - + 3209 president Barack Obama @@ -708,13 +727,14 @@ 2012-11-19 Cambodia Phnom Penh - Met with Prime Minister Hun Sen and a U.S.-ASEAN Leaders’ meeting, a Trans-Pacific Partnership meeting, and the East Asia Summit meeting. + Met with Prime Minister Hun Sen and a U.S.-ASEAN Leaders’ meeting, a Trans-Pacific + Partnership meeting, and the East Asia Summit meeting. wicentowskijc 2013-01-17T09:26:14.331-04:00 wicentowskijc 2013-01-17T09:26:14.331-04:00 - + 3312 president Barack Obama @@ -728,7 +748,7 @@ wicentowskijc 2014-06-10T10:13:29.995-04:00 - + 3313 president Barack Obama @@ -742,7 +762,7 @@ wicentowskijc 2014-06-10T10:13:29.995-04:00 - + 3314 president Barack Obama @@ -756,7 +776,7 @@ wicentowskijc 2014-06-10T10:13:29.995-04:00 - + 3315 president Barack Obama @@ -770,7 +790,7 @@ wicentowskijc 2014-06-10T10:13:29.995-04:00 - + 3316 president Barack Obama @@ -778,13 +798,14 @@ 2013-05-04 Costa Rica San Jose - Met with President Laura Chinchilla and leaders of the Central American Integration System. + Met with President Laura Chinchilla and leaders of the Central American Integration + System. wicentowskijc 2014-06-10T10:13:29.995-04:00 wicentowskijc 2014-06-10T10:13:29.995-04:00 - + 3317 president Barack Obama @@ -798,7 +819,7 @@ wicentowskijc 2014-06-10T10:13:29.995-04:00 - + 3318 president Barack Obama @@ -812,7 +833,7 @@ wicentowskijc 2014-06-10T10:13:29.995-04:00 - + 3319 president Barack Obama @@ -826,7 +847,7 @@ wicentowskijc 2014-06-10T10:13:29.995-04:00 - + 3320 president Barack Obama @@ -834,13 +855,14 @@ 2013-07-01 South Africa Johannesburg, Pretoria, Cape Town - Met with President Jacob Zuma and with members of the Mandela family. Visited Robben Island. + Met with President Jacob Zuma and with members of the Mandela family. Visited + Robben Island. wicentowskijc 2014-06-10T10:13:29.995-04:00 wicentowskijc 2014-06-10T10:13:29.995-04:00 - + 3321 president Barack Obama @@ -848,13 +870,14 @@ 2013-07-02 Tanzania Dar es Salaam - Met with President Jakaya Kikwete. Laid a wreath at the memorial to the 1998 Embassy bombing. + Met with President Jakaya Kikwete. Laid a wreath at the memorial to the 1998 + Embassy bombing. wicentowskijc 2014-06-10T10:13:29.995-04:00 wicentowskijc 2014-06-10T10:13:29.995-04:00 - + 3322 president Barack Obama @@ -868,7 +891,7 @@ wicentowskijc 2014-06-10T10:13:29.995-04:00 - + 3323 president Barack Obama @@ -882,7 +905,7 @@ wicentowskijc 2014-06-10T10:13:29.995-04:00 - + 3728 president Barack Obama @@ -896,7 +919,7 @@ wicentowskijc 2017-04-24T10:13:29.995-04:00 - + 3729 president Barack Obama @@ -910,7 +933,7 @@ wicentowskijc 2017-04-24T10:13:29.995-04:00 - + 3409 president Barack Obama @@ -924,7 +947,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3410 president Barack Obama @@ -932,13 +955,15 @@ 2014-03-25 Netherlands The Hague, Amsterdam - Attended the World Forum the Nuclear Security Summit, and a G-7 meeting on the Ukrainian crisis. Met with King Willem-Alexander and President Nursultan Nazarbayev of Kazakhstan. + Attended the World Forum the Nuclear Security Summit, and a G-7 meeting on the + Ukrainian crisis. Met with King Willem-Alexander and President Nursultan Nazarbayev of + Kazakhstan. wicentowskijc 2016-05-05T13:39:08.656-04:00 wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3411 president Barack Obama @@ -946,13 +971,14 @@ 2014-03-26 Belgium Waregem, Brussels - Attended a wreath-laying ceremony at the Flanders Field American Cemetery. Attended a meeting of the Council of the European Union. + Attended a wreath-laying ceremony at the Flanders Field American Cemetery. Attended + a meeting of the Council of the European Union. wicentowskijc 2016-05-05T13:39:08.656-04:00 wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3412 president Barack Obama @@ -960,13 +986,14 @@ 2014-03-28 Italy Rome - Met with President Giorgio Napolitano and Prime Minister Matteo Renzi. Toured the Colosseum. + Met with President Giorgio Napolitano and Prime Minister Matteo Renzi. Toured the + Colosseum. wicentowskijc 2016-05-05T13:39:08.656-04:00 wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3413 president Barack Obama @@ -974,13 +1001,14 @@ 2014-03-27 Vatican City - Audience with Pope Francis and a meeting with Secretary of State Cardinal Pietro Parolin. + Audience with Pope Francis and a meeting with Secretary of State Cardinal Pietro + Parolin. wicentowskijc 2016-05-05T13:39:08.656-04:00 wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3414 president Barack Obama @@ -994,7 +1022,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3415 president Barack Obama @@ -1008,7 +1036,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3416 president Barack Obama @@ -1016,13 +1044,14 @@ 2014-04-25 Japan Tokyo - Met with Prime Minister Shinzo Abe and Emperor Akihito. Toured the National Museum of Emerging Science and Innovation. Toured the Meiji Jingu Shrine. + Met with Prime Minister Shinzo Abe and Emperor Akihito. Toured the National Museum + of Emerging Science and Innovation. Toured the Meiji Jingu Shrine. wicentowskijc 2016-05-05T13:39:08.656-04:00 wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3417 president Barack Obama @@ -1030,13 +1059,14 @@ 2014-04-26 Korea, Republic of Seoul - Met with President Park Geun-hye, attended a wreath-laying ceremony at the National War Memorial, and visited U.S. military personnel. + Met with President Park Geun-hye, attended a wreath-laying ceremony at the National + War Memorial, and visited U.S. military personnel. wicentowskijc 2016-05-05T13:39:08.656-04:00 wicentowskijc 2017-04-24T13:39:08.656-04:00 - + 3418 president Barack Obama @@ -1044,13 +1074,14 @@ 2014-04-28 Malaysia Kuala Lumpur - Met with Prime Minister Najib Razak, toured the National Mosque and the Malaysian Global Innovation and Creativity Center. + Met with Prime Minister Najib Razak, toured the National Mosque and the Malaysian + Global Innovation and Creativity Center. wicentowskijc 2016-05-05T13:39:08.656-04:00 wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3419 president Barack Obama @@ -1058,13 +1089,14 @@ 2014-04-29 Philippines Manila, Taguig - Met with President Benigno S. Aquino 3rd. Attended a wreath-laying ceremony at the American Manila Cemetery. + Met with President Benigno S. Aquino 3rd. Attended a wreath-laying ceremony at the + American Manila Cemetery. wicentowskijc 2016-05-05T13:39:08.656-04:00 wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3420 president Barack Obama @@ -1078,7 +1110,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3421 president Barack Obama @@ -1092,7 +1124,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3422 president Barack Obama @@ -1100,13 +1132,14 @@ 2014-06-04 Poland Warsaw - Met with President Bronislaw Komorowski. Attended a Solidarity Dinner and a Freedom Day commemoration. + Met with President Bronislaw Komorowski. Attended a Solidarity Dinner and a Freedom + Day commemoration. wicentowskijc 2016-05-05T13:39:08.656-04:00 faithti 2018-12-13T13:39:08.656-04:00 - + 3423 president Barack Obama @@ -1114,13 +1147,14 @@ 2014-06-05 Belgium Brussels - Met with King Philippe and Prime Minister Elio Di Rupo. Attended meetings of the G-7 leaders. + Met with King Philippe and Prime Minister Elio Di Rupo. Attended meetings of the + G-7 leaders. wicentowskijc 2016-05-05T13:39:08.656-04:00 wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3424 president Barack Obama @@ -1128,13 +1162,15 @@ 2014-06-06 France Paris, Omaha Beach, Benouville, Ouistreham - Met with President Francois Hollande. Attended ceremonies commemorating the 70th anniversary of the Normandy landings. Discussed the Ukrainian situation with Russian President Vladimir Putin. + Met with President Francois Hollande. Attended ceremonies commemorating the 70th + anniversary of the Normandy landings. Discussed the Ukrainian situation with Russian + President Vladimir Putin. wicentowskijc 2016-05-05T13:39:08.656-04:00 wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3425 president Barack Obama @@ -1148,7 +1184,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3426 president Barack Obama @@ -1162,7 +1198,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3427 president Barack Obama @@ -1170,13 +1206,14 @@ 2014-11-12 China, People’s Republic of Beijing - Attended the Asia Pacific Economic Cooperation CEO Summit Meeting and the Trans Pacific Partnership Leaders Meeting. + Attended the Asia Pacific Economic Cooperation CEO Summit Meeting and the Trans + Pacific Partnership Leaders Meeting. wicentowskijc 2016-05-05T13:39:08.656-04:00 wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3428 president Barack Obama @@ -1184,13 +1221,14 @@ 2014-11-14 Burma Nay Pyi Taw, Rangoon - Attended a United States-Association of Southeast Asian Naations Summit Meeting. + Attended a United States-Association of Southeast Asian Naations Summit + Meeting. wicentowskijc 2016-05-05T13:39:08.656-04:00 wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3429 president Barack Obama @@ -1204,7 +1242,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3430 president Barack Obama @@ -1218,7 +1256,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3431 president Barack Obama @@ -1232,7 +1270,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3432 president Barack Obama @@ -1246,7 +1284,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3433 president Barack Obama @@ -1260,7 +1298,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3434 president Barack Obama @@ -1274,7 +1312,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3435 president Barack Obama @@ -1288,7 +1326,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3436 president Barack Obama @@ -1302,7 +1340,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3437 president Barack Obama @@ -1316,7 +1354,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3438 president Barack Obama @@ -1324,13 +1362,14 @@ 2015-07-26 Kenya Nairobi - Attended Global Entrepreneurship Summit and met with President Uhuru Kenyatta. Attended a State dinner. + Attended Global Entrepreneurship Summit and met with President Uhuru Kenyatta. + Attended a State dinner. wicentowskijc 2016-05-05T13:39:08.656-04:00 wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3439 president Barack Obama @@ -1338,13 +1377,14 @@ 2015-07-28 Ethiopia Addis Ababa - Attended a meeting on South Sudan and Counterterrorism Issues and met with Prime Minister Hailemariam Desalegn (State dinner). Addressed the African Union. + Attended a meeting on South Sudan and Counterterrorism Issues and met with Prime + Minister Hailemariam Desalegn (State dinner). Addressed the African Union. wicentowskijc 2016-05-05T13:39:08.656-04:00 wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3440 president Barack Obama @@ -1358,7 +1398,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3441 president Barack Obama @@ -1372,7 +1412,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3442 president Barack Obama @@ -1380,13 +1420,14 @@ 2015-11-20 Philippines Manila - Attended the Trans-Pacific Partnership, Pacific Alliance, and APEC Summit Meetings. + Attended the Trans-Pacific Partnership, Pacific Alliance, and APEC Summit + Meetings. wicentowskijc 2016-05-05T13:39:08.656-04:00 wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3443 president Barack Obama @@ -1400,7 +1441,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3444 president Barack Obama @@ -1414,7 +1455,7 @@ wicentowskijc 2016-05-05T13:39:08.656-04:00 - + 3616 president Barack Obama @@ -1428,7 +1469,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3617 president Barack Obama @@ -1442,7 +1483,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3618 president Barack Obama @@ -1456,7 +1497,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3619 president Barack Obama @@ -1464,13 +1505,14 @@ 2016-04-21 Saudi Arabia Riyadh - Met with King Salman bin Abd-al Aziz Al Saud and attended the U.S.-Gulf Cooperation Council Summit. + Met with King Salman bin Abd-al Aziz Al Saud and attended the U.S.-Gulf Cooperation + Council Summit. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3620 president Barack Obama @@ -1484,7 +1526,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3621 president Barack Obama @@ -1492,13 +1534,14 @@ 2016-04-25 Germany Hannover - Met with Chancellor Angela Merkel, French President Francois Hollande, Italian Prime Minister Matteo Renzi, and British Prime Minister David W. D. Cameron. + Met with Chancellor Angela Merkel, French President Francois Hollande, Italian + Prime Minister Matteo Renzi, and British Prime Minister David W. D. Cameron. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3622 president Barack Obama @@ -1512,7 +1555,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3623 president Barack Obama @@ -1526,7 +1569,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3624 president Barack Obama @@ -1534,13 +1577,14 @@ 2016-05-29 Japan Shima City, Ise, Iwakuni, Hiroshima - Attended the G-7 Economic Summit. Attended ceremonies at the Hiroshima Peace Memorial Park. . + Attended the G-7 Economic Summit. Attended ceremonies at the Hiroshima Peace + Memorial Park. . wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3625 president Barack Obama @@ -1554,7 +1598,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3626 president Barack Obama @@ -1562,13 +1606,14 @@ 2016-07-09 Poland Warsaw - Attended a NATO Summit Meeting and a NATO leaders’ meeting on Afghanistan. + Attended a NATO Summit Meeting and a NATO leaders’ meeting on + Afghanistan. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3627 president Barack Obama @@ -1576,13 +1621,14 @@ 2016-07-10 Spain Madrid, Torrejon Air Base, Rota - Met with Spanish political leaders at Torrejon Air Base and visited Naval Station Rota. + Met with Spanish political leaders at Torrejon Air Base and visited Naval Station + Rota. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3628 president Barack Obama @@ -1596,7 +1642,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3629 president Barack Obama @@ -1604,13 +1650,14 @@ 2016-09-09 Laos Vientiane, Luang Prabang - Met with President Bounnyang Vorachit and attended an East Asia Summit Meeting. + Met with President Bounnyang Vorachit and attended an East Asia Summit + Meeting. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3630 president Barack Obama @@ -1624,7 +1671,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3631 president Barack Obama @@ -1638,7 +1685,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3632 president Barack Obama @@ -1646,13 +1693,14 @@ 2016-11-16 Greece Athens - Met with President Prokopios Pavlopoulis and Prime Minister Alexios Tsipras. + Met with President Prokopios Pavlopoulis and Prime Minister Alexios + Tsipras. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3633 president Barack Obama @@ -1660,13 +1708,15 @@ 2016-11-18 Germany Berlin - Met with Chancellor Angela Merkel, French President Francois Hollande, Spanish Prime Minister Mariano Rajoy, Italian Prime Minister Matteo Renzi, and British Prime Minister Theresa May. + Met with Chancellor Angela Merkel, French President Francois Hollande, Spanish + Prime Minister Mariano Rajoy, Italian Prime Minister Matteo Renzi, and British Prime + Minister Theresa May. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3634 president Barack Obama @@ -1674,10 +1724,11 @@ 2016-11-20 Peru Lima - Met with President Pedro Pablo Kuczynski and attended Trans-Pacific Partnership and APEC Summit Meetings. + Met with President Pedro Pablo Kuczynski and attended Trans-Pacific Partnership and + APEC Summit Meetings. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - \ No newline at end of file + diff --git a/president-travels/reagan-ronald.xml b/president-travels/reagan-ronald.xml index 05dcad2..af4e85d 100644 --- a/president-travels/reagan-ronald.xml +++ b/president-travels/reagan-ronald.xml @@ -1,6 +1,6 @@ - + 2911 president Ronald Reagan @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2912 president Ronald Reagan @@ -28,7 +28,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2913 president Ronald Reagan @@ -36,13 +36,14 @@ 1981-07-21 Canada Ottawa - Attended Economic Summit Conference of the Heads of State and Government of Canada, France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. + Attended Economic Summit Conference of the Heads of State and Government of Canada, + France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2914 president Ronald Reagan @@ -50,13 +51,16 @@ 1981-10-24 Mexico Cancun - Attended Summit Meeting on International Cooperation and Development. Met with the Heads of State and Government of Algeria, Bangladesh, Canada, China, France, Guyana, India, Japan, Mexico, Nigeria, the Philippines, Saudi Arabia, Sweden, Tanzania, the United Kingdom, Venezuela, and Yugoslavia. + Attended Summit Meeting on International Cooperation and Development. Met with the + Heads of State and Government of Algeria, Bangladesh, Canada, China, France, Guyana, + India, Japan, Mexico, Nigeria, the Philippines, Saudi Arabia, Sweden, Tanzania, the + United Kingdom, Venezuela, and Yugoslavia. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2915 president Ronald Reagan @@ -70,7 +74,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2916 president Ronald Reagan @@ -78,13 +82,15 @@ 1982-04-11 Barbados Bridgetown - Official visit; met April 8 with the Prime Ministers of Barbados, Antigua and Barbuda, Dominica, St. Christopher and Nevis, and St. Vincent and the Grenadines. + Official visit; met April 8 with the Prime Ministers of Barbados, Antigua and + Barbuda, Dominica, St. Christopher and Nevis, and St. Vincent and the + Grenadines. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2917 president Ronald Reagan @@ -98,7 +104,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2918 president Ronald Reagan @@ -106,13 +112,14 @@ 1982-06-06 France Versailles - Attended Economic Summit Meeting of the Heads of State and Government of Canada, France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. + Attended Economic Summit Meeting of the Heads of State and Government of Canada, + France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2919 president Ronald Reagan @@ -126,7 +133,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2920 president Ronald Reagan @@ -140,7 +147,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2921 president Ronald Reagan @@ -148,13 +155,14 @@ 1982-06-09 United Kingdom London, Windsor Castle - State visit; met with Queen Elizabeth II and Prime Minister Thatcher. Addressed Parliament. + State visit; met with Queen Elizabeth II and Prime Minister Thatcher. Addressed + Parliament. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2922 president Ronald Reagan @@ -162,13 +170,14 @@ 1982-06-11 Germany, Federal Republic of Bonn - State visit; met with Chancellor Schmidt and President Carstens; addressed the Bundestag; and attended a meeting of the North Atlantic Council. + State visit; met with Chancellor Schmidt and President Carstens; addressed the + Bundestag; and attended a meeting of the North Atlantic Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2923 president Ronald Reagan @@ -182,7 +191,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2924 president Ronald Reagan @@ -196,7 +205,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2925 president Ronald Reagan @@ -210,7 +219,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2926 president Ronald Reagan @@ -224,7 +233,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2927 president Ronald Reagan @@ -232,13 +241,14 @@ 1982-12-04 Costa Rica San Jose - Official working visit; met with President Monge and President Magana of El Salvador. + Official working visit; met with President Monge and President Magana of El + Salvador. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2928 president Ronald Reagan @@ -246,13 +256,14 @@ 1982-12-04 Honduras San Pedro Sula - Official working visit; met with President Suazo and with Guatemalan President Rios Montt. + Official working visit; met with President Suazo and with Guatemalan President Rios + Montt. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2929 president Ronald Reagan @@ -266,7 +277,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2930 president Ronald Reagan @@ -274,13 +285,14 @@ 1983-11-12 Japan Tokyo - State visit; met with Emperor Hirhito and Prime Minister Nakasone, and addressed the Diet. + State visit; met with Emperor Hirhito and Prime Minister Nakasone, and addressed + the Diet. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2931 president Ronald Reagan @@ -288,13 +300,14 @@ 1983-11-14 Korea, Republic of Seoul, Demilitarized Zone - State visit; met with President Chun, addressed the National Assembly, and visited U.S. troops. + State visit; met with President Chun, addressed the National Assembly, and visited + U.S. troops. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2932 president Ronald Reagan @@ -308,7 +321,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2933 president Ronald Reagan @@ -316,13 +329,14 @@ 1984-06-04 Ireland Shannon, Galway, Ballyporeen, Dublin - Met with President Hillery and Prime Minister FitzGerald; visited ancestral home; addressed Parliament. + Met with President Hillery and Prime Minister FitzGerald; visited ancestral home; + addressed Parliament. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2934 president Ronald Reagan @@ -330,13 +344,15 @@ 1984-06-10 United Kingdom London - Met with Queen Elizabeth II and Prime Minister Thatcher. Attended Economic Summit Meeting June 7-9 of the Heads of State and Government of Canada, France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. + Met with Queen Elizabeth II and Prime Minister Thatcher. Attended Economic Summit + Meeting June 7-9 of the Heads of State and Government of Canada, France, the Federal + Republic of Germany, Italy, Japan, and the United Kingdom. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2935 president Ronald Reagan @@ -344,13 +360,17 @@ 1984-06-06 France Normandy - Attended commemorative ceremonies of the 40th anniversary of the Allied landing in Normandy. Also present were Prime Minister Trudeau of Canada, Queen Beatrix of the Netherlands, King Olav V of Norway, King Baudouin I of Belgium, President Mitterrand of France, Queen Elizabeth II of the United Kingdom, and Grand Duke Jean of Luxembourg. + Attended commemorative ceremonies of the 40th anniversary of the Allied landing in + Normandy. Also present were Prime Minister Trudeau of Canada, Queen Beatrix of the + Netherlands, King Olav V of Norway, King Baudouin I of Belgium, President Mitterrand of + France, Queen Elizabeth II of the United Kingdom, and Grand Duke Jean of + Luxembourg. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2936 president Ronald Reagan @@ -364,7 +384,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2937 president Ronald Reagan @@ -372,13 +392,14 @@ 1985-05-04 Germany, Federal Republic of Bonn - Attended Economic Summit Meeting of the Heads of State and Government of Canada, France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. + Attended Economic Summit Meeting of the Heads of State and Government of Canada, + France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2938 president Ronald Reagan @@ -386,13 +407,14 @@ 1985-05-06 Germany, Federal Republic of Bonn, Bergen-Belsen, Bitburg, Hambach Castle - State visit; attended ceremonies commemorating 40th anniversary of the end of World War II in Europe. + State visit; attended ceremonies commemorating 40th anniversary of the end of World + War II in Europe. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2939 president Ronald Reagan @@ -406,7 +428,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2940 president Ronald Reagan @@ -420,7 +442,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2941 president Ronald Reagan @@ -428,13 +450,14 @@ 1985-05-10 Portugal Lisbon - State visit; met with President Eanes and Prime Minister Scares; addressed the National Assembly. + State visit; met with President Eanes and Prime Minister Scares; addressed the + National Assembly. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2942 president Ronald Reagan @@ -442,13 +465,14 @@ 1985-11-21 Switzerland Geneva - Attended Summit Meeting (November 19-21) with Soviet General Secretary Gorbachev. Met also with Swiss President Furgler. + Attended Summit Meeting (November 19-21) with Soviet General Secretary Gorbachev. + Met also with Swiss President Furgler. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2943 president Ronald Reagan @@ -456,13 +480,15 @@ 1985-11-21 Belgium Brussels - Briefed North Atlantic Council on Soviet summit Present were the Heads of State and Government of Belgium, Canada, Denmark, Federal Republic of Germany, Italy, the Netherlands, Norway, Luxembourg, Portugal, Turkey, and the United Kingdom. + Briefed North Atlantic Council on Soviet summit Present were the Heads of State and + Government of Belgium, Canada, Denmark, Federal Republic of Germany, Italy, the + Netherlands, Norway, Luxembourg, Portugal, Turkey, and the United Kingdom. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2944 president Ronald Reagan @@ -476,7 +502,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2945 president Ronald Reagan @@ -484,13 +510,16 @@ 1986-02-20 Grenada St. George's - Met with Governor General Scoon and Prime Minister Blaize, and with the Prime Ministers of Dominica, Jamaica, St. Lucia, St. Christopher and Nevis, St. Vincent and the Grenadines, Antigua and Barbuda, Trinidad and Tobago, and Barbados. Dedicated a memorial to U.S. servicemen. + Met with Governor General Scoon and Prime Minister Blaize, and with the Prime + Ministers of Dominica, Jamaica, St. Lucia, St. Christopher and Nevis, St. Vincent and + the Grenadines, Antigua and Barbuda, Trinidad and Tobago, and Barbados. Dedicated a + memorial to U.S. servicemen. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2946 president Ronald Reagan @@ -498,13 +527,14 @@ 1986-05-02 Indonesia Bali - Attended an ASEAN Ministerial meeting; met with Indonesian President Soeharto and Philippine Vice President Laurel. + Attended an ASEAN Ministerial meeting; met with Indonesian President Soeharto and + Philippine Vice President Laurel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2947 president Ronald Reagan @@ -512,13 +542,14 @@ 1986-05-07 Japan Tokyo - Attended Economic Summit Meeting of the Heads of State and Government of Canada, France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. + Attended Economic Summit Meeting of the Heads of State and Government of Canada, + France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2948 president Ronald Reagan @@ -526,13 +557,14 @@ 1986-10-12 Iceland Reykjavik - Pre-Summit meeting (October 10-11) with Soviet General Secretary Gorbachev. Met with President Finnbogadottir October 10. + Pre-Summit meeting (October 10-11) with Soviet General Secretary Gorbachev. Met + with President Finnbogadottir October 10. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2949 president Ronald Reagan @@ -540,13 +572,14 @@ 1987-04-06 Canada Ottawa - Official visit; met with Prime Minister Mulroney. Addressed Parliament April 6. + Official visit; met with Prime Minister Mulroney. Addressed Parliament April + 6. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2950 president Ronald Reagan @@ -554,13 +587,16 @@ 1987-06-11 Italy Venice, Rome - Attended Economic Summit Meeting (June 8-10) of the Heads of State and Government of Canada, France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. Met with President Cossiga and Prime Minister Fanfani in Rome on June 6. + Attended Economic Summit Meeting (June 8-10) of the Heads of State and Government + of Canada, France, the Federal Republic of Germany, Italy, Japan, and the United + Kingdom. Met with President Cossiga and Prime Minister Fanfani in Rome on June + 6. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2951 president Ronald Reagan @@ -574,7 +610,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2952 president Ronald Reagan @@ -588,7 +624,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2953 president Ronald Reagan @@ -602,7 +638,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2954 president Ronald Reagan @@ -616,7 +652,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2955 president Ronald Reagan @@ -624,13 +660,15 @@ 1988-03-03 Belgium Brussels - Attended NATO Summit Meeting. Present were the Heads of State and Government of Canada, Denmark, France, Federal Republic of Germany, Greece, Iceland, Italy, Luxembourg, Norway, Portugal, Spain, Turkey, and the United Kingdom. + Attended NATO Summit Meeting. Present were the Heads of State and Government of + Canada, Denmark, France, Federal Republic of Germany, Greece, Iceland, Italy, + Luxembourg, Norway, Portugal, Spain, Turkey, and the United Kingdom. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2956 president Ronald Reagan @@ -638,13 +676,14 @@ 1988-05-29 Finland Helsinki - Met with President Koivisto and Prime Minister Holkeri; rested en route to U.S.-Soviet Summit. + Met with President Koivisto and Prime Minister Holkeri; rested en route to + U.S.-Soviet Summit. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2957 president Ronald Reagan @@ -652,13 +691,14 @@ 1988-06-02 U.S.S.R. Moscow - Summit meeting with General Secretary Gorbachev. Exchanged ratifications of the INF Treaty. + Summit meeting with General Secretary Gorbachev. Exchanged ratifications of the INF + Treaty. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2958 president Ronald Reagan @@ -666,13 +706,14 @@ 1988-06-03 United Kingdom London - Met with Queen Elizabeth II, Prime Minister Thatcher, and Japanese Prime Minister Takeshita. + Met with Queen Elizabeth II, Prime Minister Thatcher, and Japanese Prime Minister + Takeshita. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2959 president Ronald Reagan @@ -680,10 +721,11 @@ 1988-06-21 Canada Toronto - Attended Economic Summit Meeting of the Heads of State and Government of Canada, France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. + Attended Economic Summit Meeting of the Heads of State and Government of Canada, + France, the Federal Republic of Germany, Italy, Japan, and the United Kingdom. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/president-travels/roosevelt-franklin-d.xml b/president-travels/roosevelt-franklin-d.xml index 01e7549..bb6dd2f 100644 --- a/president-travels/roosevelt-franklin-d.xml +++ b/president-travels/roosevelt-franklin-d.xml @@ -1,6 +1,6 @@ - + 2681 president Franklin Delano Roosevelt @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2682 president Franklin Delano Roosevelt @@ -28,7 +28,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2683 president Franklin Delano Roosevelt @@ -42,7 +42,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2684 president Franklin Delano Roosevelt @@ -56,7 +56,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2685 president Franklin Delano Roosevelt @@ -70,7 +70,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2686 president Franklin Delano Roosevelt @@ -84,7 +84,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2687 president Franklin Delano Roosevelt @@ -98,7 +98,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2688 president Franklin Delano Roosevelt @@ -106,13 +106,14 @@ 1935-10-16 Panama Balboa - Informal visit with President Arias while returning to Washington, D.C. from West Coast. + Informal visit with President Arias while returning to Washington, D.C. from West + Coast. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2689 president Franklin Delano Roosevelt @@ -126,7 +127,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2690 president Franklin Delano Roosevelt @@ -140,7 +141,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2691 president Franklin Delano Roosevelt @@ -154,7 +155,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2692 president Franklin Delano Roosevelt @@ -168,7 +169,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2693 president Franklin Delano Roosevelt @@ -182,7 +183,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2694 president Franklin Delano Roosevelt @@ -190,13 +191,14 @@ 1936-12-02 Argentina Buenos Aires - Attended session of Inter-American Conference for the Maintenance of Peace. + Attended session of Inter-American Conference for the Maintenance of + Peace. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2695 president Franklin Delano Roosevelt @@ -210,7 +212,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2696 president Franklin Delano Roosevelt @@ -224,7 +226,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 3894 president Franklin Delano Roosevelt @@ -238,7 +240,7 @@ faithti 2020-01-23T14:35:48.889-04:00 - + 2697 president Franklin Delano Roosevelt @@ -252,7 +254,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2698 president Franklin Delano Roosevelt @@ -260,13 +262,14 @@ 1938-08-18 Canada Kingston - Received honorary degree from Queens University and dedicated Thousand Islands Bridge. + Received honorary degree from Queens University and dedicated Thousand Islands + Bridge. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2699 president Franklin Delano Roosevelt @@ -280,7 +283,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2700 president Franklin Delano Roosevelt @@ -294,7 +297,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2701 president Franklin Delano Roosevelt @@ -308,7 +311,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2702 president Franklin Delano Roosevelt @@ -322,7 +325,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2703 president Franklin Delano Roosevelt @@ -336,7 +339,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2704 president Franklin Delano Roosevelt @@ -350,7 +353,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2705 president Franklin Delano Roosevelt @@ -364,7 +367,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2706 president Franklin Delano Roosevelt @@ -378,7 +381,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2707 president Franklin Delano Roosevelt @@ -386,13 +389,14 @@ 1940-12-13 United Kingdom The Bahamas - Inspected British base sites for possible American use. Met with the Duke of Windsor at Eleutheria Island, December 13. Returned to the U.S. December 14. + Inspected British base sites for possible American use. Met with the Duke of + Windsor at Eleutheria Island, December 13. Returned to the U.S. December 14. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2708 president Franklin Delano Roosevelt @@ -400,13 +404,14 @@ 1941-08-12 United Kingdom Argentia (Newfoundland) - Attended conference with Prime Minister Churchill. Announced the Atlantic Charter. + Attended conference with Prime Minister Churchill. Announced the Atlantic + Charter. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2709 president Franklin Delano Roosevelt @@ -420,7 +425,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2710 president Franklin Delano Roosevelt @@ -434,7 +439,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2711 president Franklin Delano Roosevelt @@ -448,7 +453,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2712 president Franklin Delano Roosevelt @@ -462,7 +467,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2713 president Franklin Delano Roosevelt @@ -476,7 +481,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2714 president Franklin Delano Roosevelt @@ -490,7 +495,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2715 president Franklin Delano Roosevelt @@ -504,7 +509,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2716 president Franklin Delano Roosevelt @@ -518,7 +523,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2717 president Franklin Delano Roosevelt @@ -532,7 +537,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2718 president Franklin Delano Roosevelt @@ -546,7 +551,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2719 president Franklin Delano Roosevelt @@ -560,7 +565,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2720 president Franklin Delano Roosevelt @@ -574,7 +579,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2721 president Franklin Delano Roosevelt @@ -582,13 +587,14 @@ 1943-11-26 Egypt Cairo - Attended First Cairo Conference with British Prime Minister Churchill and Chinese Generalissimo Chiang Kai-shek. + Attended First Cairo Conference with British Prime Minister Churchill and Chinese + Generalissimo Chiang Kai-shek. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2722 president Franklin Delano Roosevelt @@ -596,13 +602,14 @@ 1943-12-02 Iran Tehran - Attended Tehran Conference with Soviet Premier Stalin and British Prime Minister Churchill. + Attended Tehran Conference with Soviet Premier Stalin and British Prime Minister + Churchill. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2723 president Franklin Delano Roosevelt @@ -610,13 +617,14 @@ 1943-12-07 Egypt Cairo - Attended Second Cairo Conference with British Prime Minister Churchill and Turkish President Inonu. + Attended Second Cairo Conference with British Prime Minister Churchill and Turkish + President Inonu. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2724 president Franklin Delano Roosevelt @@ -630,7 +638,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2725 president Franklin Delano Roosevelt @@ -644,7 +652,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2726 president Franklin Delano Roosevelt @@ -658,7 +666,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2727 president Franklin Delano Roosevelt @@ -672,7 +680,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2728 president Franklin Delano Roosevelt @@ -686,7 +694,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2729 president Franklin Delano Roosevelt @@ -700,7 +708,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2730 president Franklin Delano Roosevelt @@ -708,13 +716,14 @@ 1945-02-12 U.S.S.R. Yalta - Attended Yalta Conference with Soviet Premier Stalin and British Prime Minister Churchill. + Attended Yalta Conference with Soviet Premier Stalin and British Prime Minister + Churchill. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2731 president Franklin Delano Roosevelt @@ -722,13 +731,14 @@ 1945-02-15 Egypt Great Bitter Lake, Suez Canal, Alexandria - Met with King Farouk, Ethiopian Emperor Haile Selassie, Saudi Arabian King Ibn Saud, and British Prime Minister Churchill. + Met with King Farouk, Ethiopian Emperor Haile Selassie, Saudi Arabian King Ibn + Saud, and British Prime Minister Churchill. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2732 president Franklin Delano Roosevelt @@ -736,10 +746,11 @@ 1945-02-18 France Algiers (Algeria) - Briefed U.S. Ambassadors to the United Kingdom, France, and Italy on the Yalta Conference. + Briefed U.S. Ambassadors to the United Kingdom, France, and Italy on the Yalta + Conference. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/president-travels/roosevelt-theodore.xml b/president-travels/roosevelt-theodore.xml index 8c0195e..b3dc09c 100644 --- a/president-travels/roosevelt-theodore.xml +++ b/president-travels/roosevelt-theodore.xml @@ -1,6 +1,6 @@ - + 2654 president Theodore Roosevelt @@ -8,10 +8,11 @@ 1906-11-17 Panama Colon, Panama City - To inspect construction of Panama Canal. First visit abroad by any President or President-elect. Departed the U.S. November 9; returned to U.S. November 26. + To inspect construction of Panama Canal. First visit abroad by any President or + President-elect. Departed the U.S. November 9; returned to U.S. November 26. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/president-travels/taft-william-howard.xml b/president-travels/taft-william-howard.xml index 1cdbf99..f789f71 100644 --- a/president-travels/taft-william-howard.xml +++ b/president-travels/taft-william-howard.xml @@ -1,6 +1,6 @@ - + 2655 president William Howard Taft @@ -8,13 +8,14 @@ 1909-02-07 Panama Colon, Panama City - Inspected construction of Panama Canal. Met with President Obaldia. [Visit made as President-elect.] + Inspected construction of Panama Canal. Met with President Obaldia. [Visit made as + President-elect.] wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2656 president William Howard Taft @@ -28,4 +29,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/president-travels/truman-harry-s.xml b/president-travels/truman-harry-s.xml index 2f3f9ff..3abd295 100644 --- a/president-travels/truman-harry-s.xml +++ b/president-travels/truman-harry-s.xml @@ -1,6 +1,6 @@ - + 2733 president Harry S Truman @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2734 president Harry S Truman @@ -22,13 +22,14 @@ 1945-08-02 Germany Potsdam - Potsdam Conference with British Prime Ministers Churchill and Attlee and Soviet Premier Stalin. + Potsdam Conference with British Prime Ministers Churchill and Attlee and Soviet + Premier Stalin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2735 president Harry S Truman @@ -42,7 +43,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 3202 president Harry S Truman @@ -50,13 +51,14 @@ 1946-08-30 United Kingdom Bermuda - Informal visit; met with the Governor of Bermuda, Admiral Sir Ralph Leatham, K.C.B. and inspected U.S. military facilities. + Informal visit; met with the Governor of Bermuda, Admiral Sir Ralph Leatham, K.C.B. + and inspected U.S. military facilities. wicentowskijc 2012-09-25T14:35:48.889-04:00 wicentowskijc 2012-09-25T14:35:48.889-04:00 - + 2736 president Harry S Truman @@ -70,7 +72,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2737 president Harry S Truman @@ -78,13 +80,14 @@ 1947-06-12 Canada Ottawa - Official visit; met with Governor General Alexander and Prime Minister Mackenzie King. + Official visit; met with Governor General Alexander and Prime Minister Mackenzie + King. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2738 president Harry S Truman @@ -92,10 +95,11 @@ 1947-09-07 Brazil Rio de Janeiro - State visit; addressed Rio de Janiero Conference for the Maintenance of Continental Peace and Security and the Brazilian Congress. + State visit; addressed Rio de Janiero Conference for the Maintenance of Continental + Peace and Security and the Brazilian Congress. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/president-travels/trump-donald-j.xml b/president-travels/trump-donald-j.xml index 7b23d82..44c7d67 100644 --- a/president-travels/trump-donald-j.xml +++ b/president-travels/trump-donald-j.xml @@ -1,6 +1,6 @@ - + 3730 president Donald J. Trump @@ -8,13 +8,14 @@ 2017-05-22 Saudi Arabia Riyadh - Met with King Salman bin Abdel Aziz Al-Saud. Signed military sales agreement. Met with leaders of the Gulf Cooperation Council. + Met with King Salman bin Abdel Aziz Al-Saud. Signed military sales agreement. Met + with leaders of the Gulf Cooperation Council. faithti 2017-09-19T14:29:13.672-04:00 faithti 2017-09-19T14:29:13.672-04:00 - + 3731 president Donald J. Trump @@ -22,13 +23,14 @@ 2017-05-23 Israel Jerusalem - Met with President Reuven Rivlin and Prime Minister Benjamin Netanyahu. Visited the Western Wall and Yad Vashem. + Met with President Reuven Rivlin and Prime Minister Benjamin Netanyahu. Visited the + Western Wall and Yad Vashem. faithti 2017-09-19T14:29:13.672-04:00 faithti 2017-09-19T14:29:13.672-04:00 - + 3732 president Donald J. Trump @@ -42,7 +44,7 @@ faithti 2017-09-19T14:29:13.672-04:00 - + 3733 president Donald J. Trump @@ -56,7 +58,7 @@ faithti 2017-09-19T14:29:13.672-04:00 - + 3734 president Donald J. Trump @@ -70,7 +72,7 @@ faithti 2017-09-19T14:29:13.672-04:00 - + 3735 president Donald J. Trump @@ -84,7 +86,7 @@ faithti 2017-09-19T14:29:13.672-04:00 - + 3736 president Donald J. Trump @@ -92,13 +94,14 @@ 2017-05-27 Italy Taormina, Sigonella - Attended the G–7 Summit Meeting. Stopped at NAS Sigonella while returning to the United States. + Attended the G–7 Summit Meeting. Stopped at NAS Sigonella while returning to the + United States. faithti 2017-09-19T14:29:13.672-04:00 faithti 2017-09-19T14:29:13.672-04:00 - + 3737 president Donald J. Trump @@ -106,13 +109,14 @@ 2017-07-06 Poland Warsaw - Met with President Andrzej Duda, delivered a public address, and addressed the Three Seas Summit. + Met with President Andrzej Duda, delivered a public address, and addressed the + Three Seas Summit. faithti 2017-09-19T14:29:13.672-04:00 faithti 2017-09-19T14:29:13.672-04:00 - + 3738 president Donald J. Trump @@ -126,7 +130,7 @@ faithti 2017-09-19T14:29:13.672-04:00 - + 3739 president Donald J. Trump @@ -134,13 +138,14 @@ 2017-07-14 France Paris - Official visit. Met with President Emmanuel Macron. Commemorated Bastille Day and the entry of the United States into World War I. + Official visit. Met with President Emmanuel Macron. Commemorated Bastille Day and + the entry of the United States into World War I. faithti 2017-09-19T14:29:13.672-04:00 faithti 2017-09-19T14:29:13.672-04:00 - + 3895 president Donald J. Trump @@ -154,7 +159,7 @@ faithti 2018-03-12T14:29:13.672-04:00 - + 3896 president Donald J. Trump @@ -162,13 +167,14 @@ 2017-11-08 Korea, Republic of Osan, Seoul - Met with President Moon Jae-in. Visited U.S. Military personnel at Garrisons Humphreys and Yongsan. + Met with President Moon Jae-in. Visited U.S. Military personnel at Garrisons + Humphreys and Yongsan. faithti 2018-03-12T14:29:13.672-04:00 faithti 2018-03-12T14:29:13.672-04:00 - + 3897 president Donald J. Trump @@ -182,7 +188,7 @@ faithti 2018-03-12T14:29:13.672-04:00 - + 3898 president Donald J. Trump @@ -190,13 +196,14 @@ 2017-11-12 Vietnam Danang, Hanoi - Attended the APEC Economic Leaders Meeting. Met with President Tran Dai Quang. + Attended the APEC Economic Leaders Meeting. Met with President Tran Dai + Quang. faithti 2018-03-12T14:29:13.672-04:00 faithti 2018-03-12T14:29:13.672-04:00 - + 3899 president Donald J. Trump @@ -204,13 +211,14 @@ 2017-11-14 Philippines Manila - Met with President Rodrigo Duterte and attended the 31st ASEAN Summit Meeting. + Met with President Rodrigo Duterte and attended the 31st ASEAN Summit + Meeting. faithti 2018-03-12T14:29:13.672-04:00 faithti 2018-03-12T14:29:13.672-04:00 - + 3900 president Donald J. Trump @@ -224,7 +232,7 @@ wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3813 president Donald J. Trump @@ -238,7 +246,7 @@ wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3814 president Donald J. Trump @@ -246,13 +254,14 @@ 2018-06-13 Singapore Singapore - Participated in the summit with North Korean leader Kim Jong-un and bilateral events with Singaporean Prime Minister Lee Hsien Loong. + Participated in the summit with North Korean leader Kim Jong-un and bilateral + events with Singaporean Prime Minister Lee Hsien Loong. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3815 president Donald J. Trump @@ -266,7 +275,7 @@ wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3816 president Donald J. Trump @@ -280,7 +289,7 @@ wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3817 president Donald J. Trump @@ -294,7 +303,7 @@ wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3818 president Donald J. Trump @@ -302,13 +311,14 @@ 2018-11-11 France Paris - Commemorated the 100th anniversary of the end of the WWI and met with French President Emmanuel Macron. + Commemorated the 100th anniversary of the end of the WWI and met with French + President Emmanuel Macron. wicentowskijc 2019-07-25T16:12:57.84-04:00 wicentowskijc 2019-07-25T16:12:57.84-04:00 - + 3819 president Donald J. Trump @@ -322,7 +332,7 @@ wicentowskijc 2019-07-25T16:12:57.84-04:00 - + 3901 president Donald J. Trump @@ -336,7 +346,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3886 president Donald J. Trump @@ -350,7 +360,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3887 president Donald J. Trump @@ -364,7 +374,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3888 president Donald J. Trump @@ -378,7 +388,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3889 president Donald J. Trump @@ -392,7 +402,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3890 president Donald J. Trump @@ -400,13 +410,14 @@ 2019-06-30 Korea, South Seoul - Met with President Moon Jae-in, and crossed briefly into North Korean territory where he was photographed with and spoke to Chairman Kim Jong-un. + Met with President Moon Jae-in, and crossed briefly into North Korean territory + where he was photographed with and spoke to Chairman Kim Jong-un. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3891 president Donald J. Trump @@ -420,7 +431,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3892 president Donald J. Trump @@ -434,7 +445,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3893 president Donald J. Trump @@ -448,7 +459,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3987 president Donald J. Trump @@ -462,7 +473,7 @@ bottsjd 2022-01-05T07:54:38-04:00 - + 3988 president Donald J. Trump @@ -476,4 +487,4 @@ doa-exist-temp 2022-01-05T07:52:50-04:00 - \ No newline at end of file + diff --git a/president-travels/wilson-woodrow.xml b/president-travels/wilson-woodrow.xml index a85e79f..de426d1 100644 --- a/president-travels/wilson-woodrow.xml +++ b/president-travels/wilson-woodrow.xml @@ -1,6 +1,6 @@ - + 2657 president Woodrow Wilson @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2658 president Woodrow Wilson @@ -22,13 +22,14 @@ 1918-12-25 France Paris, Chaumont - Attended Preliminary to the Paris Peace Conference. Departed the U.S. December 4. + Attended Preliminary to the Paris Peace Conference. Departed the U.S. December + 4. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2659 president Woodrow Wilson @@ -42,7 +43,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2660 president Woodrow Wilson @@ -56,7 +57,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2661 president Woodrow Wilson @@ -70,7 +71,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2662 president Woodrow Wilson @@ -84,7 +85,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2663 president Woodrow Wilson @@ -98,7 +99,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2664 president Woodrow Wilson @@ -112,7 +113,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2665 president Woodrow Wilson @@ -126,7 +127,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2666 president Woodrow Wilson @@ -140,4 +141,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/presidents.xconf b/presidents.xconf index c7b402a..94da538 100644 --- a/presidents.xconf +++ b/presidents.xconf @@ -2,8 +2,8 @@ - + - \ No newline at end of file + diff --git a/presidents/presidents.xml b/presidents/presidents.xml index 54e6ce2..4cfd153 100644 --- a/presidents/presidents.xml +++ b/presidents/presidents.xml @@ -1,4 +1,4 @@ - + http://en.wikipedia.org/wiki/List_of_Presidents_of_the_United_States 2011-08-18T17:30:09.653-04:00 diff --git a/repo.xml b/repo.xml index e37e869..beb31ef 100644 --- a/repo.xml +++ b/repo.xml @@ -1,5 +1,5 @@ - + Travels (data) Office of the Historian https://history.state.gov @@ -10,5 +10,5 @@ travels pre-install.xql - + diff --git a/repo.xml.tmpl b/repo.xml.tmpl index 33125e8..f696970 100644 --- a/repo.xml.tmpl +++ b/repo.xml.tmpl @@ -1,5 +1,5 @@ - + Travels (data) Office of the Historian https://history.state.gov @@ -10,5 +10,5 @@ travels pre-install.xql - + diff --git a/schema/trips.rnc b/schema/trips.rnc index df20406..c257bed 100644 --- a/schema/trips.rnc +++ b/schema/trips.rnc @@ -1,24 +1,24 @@ default namespace = "" start = - element trips { - element trip { - attribute role { xsd:NCName }, - attribute who { xsd:NCName }, - element id { xsd:integer }, - element role { xsd:NCName }, - element name { text }, - element start-date { xsd:date }, - element end-date { xsd:date }, - element country { - attribute id { xsd:NCName }, - text - }, - element locale { text }, - element remarks { text }, - element created-by { xsd:NCName }, - element created-datetime { xsd:dateTime }, - element last-modified-by { xsd:NCName }, - element last-modified-datetime { xsd:dateTime } - }+ - } + element trips { + element trip { + attribute role { xsd:NCName }, + attribute who { xsd:NCName }, + element id { xsd:integer }, + element role { xsd:NCName }, + element name { text }, + element start-date { xsd:date }, + element end-date { xsd:date }, + element country { + attribute id { xsd:NCName }, + text + }, + element locale { text }, + element remarks { text }, + element created-by { xsd:NCName }, + element created-datetime { xsd:dateTime }, + element last-modified-by { xsd:NCName }, + element last-modified-datetime { xsd:dateTime } + }+ + } diff --git a/schema/trips.sch b/schema/trips.sch index 8a68e78..a544905 100644 --- a/schema/trips.sch +++ b/schema/trips.sch @@ -1,20 +1,24 @@ - - + - Date problem: End date must come on or after the start date. + Date problem: End date must come + on or after the start date. - Remarks should not be empty. - Remarks should end with a punctuation character. + Remarks should not be + empty. + Remarks + should end with a punctuation character. @@ -22,14 +26,16 @@ - Trip ID problem: other trip(s) also use this ID."/> + Trip ID problem: other trip(s) also use this ID."/> - Fix ID (use next available ID, ) + Fix ID (use next available ID, ) - \ No newline at end of file + diff --git a/secretary-travels.xconf b/secretary-travels.xconf index 7f0f966..dc9dc01 100644 --- a/secretary-travels.xconf +++ b/secretary-travels.xconf @@ -1,5 +1,6 @@ - + @@ -7,20 +8,23 @@ - + - - + + - + - \ No newline at end of file + diff --git a/secretary-travels/acheson-dean-gooderham.xml b/secretary-travels/acheson-dean-gooderham.xml index 17242c0..e369e37 100644 --- a/secretary-travels/acheson-dean-gooderham.xml +++ b/secretary-travels/acheson-dean-gooderham.xml @@ -1,6 +1,6 @@ - + 3290 secretary Dean Gooderham Acheson @@ -14,7 +14,7 @@ wicentowskijc 2013-12-16T07:25:22.673-04:00 - + 3291 secretary Dean Gooderham Acheson @@ -22,13 +22,14 @@ 1949-11-11 France Paris - Met with the Foreign Ministers of the United Kingdom, France, Belgium, Luxembourg, and the Netherlands. + Met with the Foreign Ministers of the United Kingdom, France, Belgium, Luxembourg, + and the Netherlands. wicentowskijc 2013-12-16T07:39:58.699-04:00 wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3292 secretary Dean Gooderham Acheson @@ -42,7 +43,7 @@ wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3293 secretary Dean Gooderham Acheson @@ -50,13 +51,14 @@ 1949-11-14 Germany Berlin - Met with West Berlin officials and the commandants of the occupation sectors. Briefly visited East Berlin. + Met with West Berlin officials and the commandants of the occupation sectors. + Briefly visited East Berlin. wicentowskijc 2013-12-16T07:39:58.699-04:00 wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3294 secretary Dean Gooderham Acheson @@ -70,7 +72,7 @@ wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3295 secretary Dean Gooderham Acheson @@ -84,7 +86,7 @@ wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3296 secretary Dean Gooderham Acheson @@ -98,7 +100,7 @@ wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3297 secretary Dean Gooderham Acheson @@ -112,7 +114,7 @@ wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3298 secretary Dean Gooderham Acheson @@ -126,7 +128,7 @@ wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3299 secretary Dean Gooderham Acheson @@ -140,7 +142,7 @@ wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3300 secretary Dean Gooderham Acheson @@ -148,13 +150,14 @@ 1952-02-19 United Kingdom London - Attended the funeral of King George VI and conferred with the British and French Foreign Ministers and with West German Chancellor Adenauer. + Attended the funeral of King George VI and conferred with the British and French + Foreign Ministers and with West German Chancellor Adenauer. wicentowskijc 2013-12-16T07:39:58.699-04:00 wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3301 secretary Dean Gooderham Acheson @@ -168,7 +171,7 @@ wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3302 secretary Dean Gooderham Acheson @@ -176,13 +179,14 @@ 1952-05-26 Germany Bonn - Signed Bonn Agreements providing for West German membership in NATO and the European Defense Community. + Signed Bonn Agreements providing for West German membership in NATO and the + European Defense Community. wicentowskijc 2013-12-16T07:39:58.699-04:00 wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3303 secretary Dean Gooderham Acheson @@ -190,13 +194,14 @@ 1952-05-29 France Paris - Signed Protocol to the North Atlantic Treaty regarding the European Defense Community, May 28. + Signed Protocol to the North Atlantic Treaty regarding the European Defense + Community, May 28. wicentowskijc 2013-12-16T07:39:58.699-04:00 wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3304 secretary Dean Gooderham Acheson @@ -204,13 +209,14 @@ 1952-06-28 United Kingdom London, Oxford - Met with British and French Foreign Ministers. Received honorary degree from Oxford University. + Met with British and French Foreign Ministers. Received honorary degree from Oxford + University. wicentowskijc 2013-12-16T07:39:58.699-04:00 wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3305 secretary Dean Gooderham Acheson @@ -224,7 +230,7 @@ wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3306 secretary Dean Gooderham Acheson @@ -238,7 +244,7 @@ wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3307 secretary Dean Gooderham Acheson @@ -252,7 +258,7 @@ wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3308 secretary Dean Gooderham Acheson @@ -266,7 +272,7 @@ wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3309 secretary Dean Gooderham Acheson @@ -280,7 +286,7 @@ wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3310 secretary Dean Gooderham Acheson @@ -294,7 +300,7 @@ wicentowskijc 2013-12-16T07:39:58.699-04:00 - + 3311 secretary Dean Gooderham Acheson @@ -308,4 +314,4 @@ wicentowskijc 2013-12-16T07:39:58.699-04:00 - \ No newline at end of file + diff --git a/secretary-travels/albright-madeleine-korbel.xml b/secretary-travels/albright-madeleine-korbel.xml index 27fb0ec..5a7b88c 100644 --- a/secretary-travels/albright-madeleine-korbel.xml +++ b/secretary-travels/albright-madeleine-korbel.xml @@ -1,6 +1,6 @@ - + 1 secretary Madeleine Korbel Albright @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2 secretary Madeleine Korbel Albright @@ -28,7 +28,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 3 secretary Madeleine Korbel Albright @@ -36,13 +36,14 @@ 1997-02-18 France Paris - Met with President Chirac, Prime Minister Juppe, and Foreign Minister de Charette. + Met with President Chirac, Prime Minister Juppe, and Foreign Minister de + Charette. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 4 secretary Madeleine Korbel Albright @@ -56,7 +57,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 5 secretary Madeleine Korbel Albright @@ -70,7 +71,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 6 secretary Madeleine Korbel Albright @@ -78,13 +79,14 @@ 1997-02-21 Russia Moscow - Met with President Yeltsin, Prime Minister Chernomyrdin, and Foreign Minister Primakov. + Met with President Yeltsin, Prime Minister Chernomyrdin, and Foreign Minister + Primakov. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 7 secretary Madeleine Korbel Albright @@ -92,13 +94,14 @@ 1997-02-23 Korea, Republic of Seoul, Camp Bonifas, Panmunjon - Met with President Kim, Foreign Minister Yoo, and visited U.S. troops at the Demilitarized Zone. + Met with President Kim, Foreign Minister Yoo, and visited U.S. troops at the + Demilitarized Zone. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 8 secretary Madeleine Korbel Albright @@ -112,7 +115,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 9 secretary Madeleine Korbel Albright @@ -126,7 +129,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 10 secretary Madeleine Korbel Albright @@ -134,13 +137,14 @@ 1997-03-21 Finland Helsinki - Accompanied President Clinton to a summit meeting with Russian President Yeltsin. + Accompanied President Clinton to a summit meeting with Russian President + Yeltsin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 11 secretary Madeleine Korbel Albright @@ -154,7 +158,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 12 secretary Madeleine Korbel Albright @@ -162,13 +166,14 @@ 1997-05-04 Guatemala Guatemala City, Tuluche - Signed agreement on cross-border auto thefts and visited a demobilization camp. + Signed agreement on cross-border auto thefts and visited a demobilization + camp. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 13 secretary Madeleine Korbel Albright @@ -176,13 +181,14 @@ 1997-05-07 Mexico Mexico, D.F. - Accompanied President Clinton on a State Visit and attended a meeting of the U.S.-Mexico Binational Commission. + Accompanied President Clinton on a State Visit and attended a meeting of the + U.S.-Mexico Binational Commission. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 14 secretary Madeleine Korbel Albright @@ -190,13 +196,14 @@ 1997-05-09 Costa Rica San Jose - Accompanied President Clinton to a Summit Meeting with the Presidents of the Central American Republics. + Accompanied President Clinton to a Summit Meeting with the Presidents of the + Central American Republics. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 15 secretary Madeleine Korbel Albright @@ -204,13 +211,14 @@ 1997-05-11 Barbados Bridgetown - Accompanied President Clinton to a U.S.-Caribbean Community Summit Meeting. + Accompanied President Clinton to a U.S.-Caribbean Community Summit + Meeting. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 16 secretary Madeleine Korbel Albright @@ -218,13 +226,14 @@ 1997-05-27 France Paris - Accompanied President Clinton to the signing of the NATO-Russia Founding Act. + Accompanied President Clinton to the signing of the NATO-Russia Founding + Act. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 17 secretary Madeleine Korbel Albright @@ -232,13 +241,14 @@ 1997-05-28 Netherlands The Hague - Accompanied President Clinton to the U.S.-EU Summit Meeting, commemorated the 50th anniversary of the Marshall Plan, and visited the UN War Crimes Tribunal. + Accompanied President Clinton to the U.S.-EU Summit Meeting, commemorated the 50th + anniversary of the Marshall Plan, and visited the UN War Crimes Tribunal. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 18 secretary Madeleine Korbel Albright @@ -246,13 +256,15 @@ 1997-05-30 Portugal Sintra - Attended NATO Ministerial Meeting, the inaugural meeting of the Euro-Atlantic Partnership Council, and a meeting of the Bosnian Peace Implementation Council. Also met with the Co-Presidents of Bosnia. + Attended NATO Ministerial Meeting, the inaugural meeting of the Euro-Atlantic + Partnership Council, and a meeting of the Bosnian Peace Implementation Council. Also met + with the Co-Presidents of Bosnia. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 19 secretary Madeleine Korbel Albright @@ -266,7 +278,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 20 secretary Madeleine Korbel Albright @@ -280,7 +292,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 21 secretary Madeleine Korbel Albright @@ -288,13 +300,14 @@ 1997-06-01 Bosnia Sarajevo, Brcko, Banja Luka - Met with the Collective Presidency, dedicated a bridge over the Sava River, and met with Bosnian Serb President Plavsic. + Met with the Collective Presidency, dedicated a bridge over the Sava River, and met + with Bosnian Serb President Plavsic. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 22 secretary Madeleine Korbel Albright @@ -302,13 +315,14 @@ 1997-06-29 Vietnam Hanoi, Ho Chi Minh City - Met with Prime Minister Kiet and senior Vietnamese officials. Laid cornerstone of a new Consulate in Ho Chi Minh City. + Met with Prime Minister Kiet and senior Vietnamese officials. Laid cornerstone of a + new Consulate in Ho Chi Minh City. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 23 secretary Madeleine Korbel Albright @@ -322,7 +336,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 24 secretary Madeleine Korbel Albright @@ -336,7 +350,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 25 secretary Madeleine Korbel Albright @@ -350,7 +364,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 26 secretary Madeleine Korbel Albright @@ -364,7 +378,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 27 secretary Madeleine Korbel Albright @@ -378,7 +392,7 @@ wicentowskijc 2017-05-31T14:35:48.889-04:00 - + 28 secretary Madeleine Korbel Albright @@ -392,7 +406,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 29 secretary Madeleine Korbel Albright @@ -406,7 +420,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 30 secretary Madeleine Korbel Albright @@ -420,7 +434,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 31 secretary Madeleine Korbel Albright @@ -434,7 +448,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 32 secretary Madeleine Korbel Albright @@ -448,7 +462,7 @@ wicentowskijc 2017-05-31T14:35:48.889-04:00 - + 33 secretary Madeleine Korbel Albright @@ -456,13 +470,14 @@ 1997-09-02 Czech Republic Letohrad, Kostelec, Terezin - Visiting the birthplaces of her parents and the site of the concentration camp where her grandparents were held. + Visiting the birthplaces of her parents and the site of the concentration camp + where her grandparents were held. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 34 secretary Madeleine Korbel Albright @@ -476,7 +491,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 35 secretary Madeleine Korbel Albright @@ -490,7 +505,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 36 secretary Madeleine Korbel Albright @@ -504,7 +519,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 37 secretary Madeleine Korbel Albright @@ -518,7 +533,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 38 secretary Madeleine Korbel Albright @@ -526,13 +541,14 @@ 1997-09-14 Saudi Arabia Jeddah, Abha, Prince Sultan Air Base - Met with King Fahd and Crown Prince Abdullah, with Gulf Cooperation Council Foreign Ministers, and visited U.S. military personnel. + Met with King Fahd and Crown Prince Abdullah, with Gulf Cooperation Council Foreign + Ministers, and visited U.S. military personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 39 secretary Madeleine Korbel Albright @@ -546,7 +562,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 40 secretary Madeleine Korbel Albright @@ -560,7 +576,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 41 secretary Madeleine Korbel Albright @@ -568,13 +584,14 @@ 1997-09-15 Lebanon Beirut - Met with President Hrawi and senior Lebanese officials; addressed Beirut Forum. + Met with President Hrawi and senior Lebanese officials; addressed Beirut + Forum. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 42 secretary Madeleine Korbel Albright @@ -588,7 +605,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 43 secretary Madeleine Korbel Albright @@ -602,7 +619,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 44 secretary Madeleine Korbel Albright @@ -616,7 +633,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 45 secretary Madeleine Korbel Albright @@ -630,7 +647,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 46 secretary Madeleine Korbel Albright @@ -638,13 +655,14 @@ 1997-11-15 United Kingdom Edinburgh, London - Discussed the Iraq crisis with Foreign Secretary Cook, and the Middle East peace process with Israeli Prime Minister Netanyahu. + Discussed the Iraq crisis with Foreign Secretary Cook, and the Middle East peace + process with Israeli Prime Minister Netanyahu. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 47 secretary Madeleine Korbel Albright @@ -658,7 +676,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 48 secretary Madeleine Korbel Albright @@ -672,7 +690,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 49 secretary Madeleine Korbel Albright @@ -686,7 +704,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 50 secretary Madeleine Korbel Albright @@ -700,7 +718,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 51 secretary Madeleine Korbel Albright @@ -714,7 +732,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 52 secretary Madeleine Korbel Albright @@ -728,7 +746,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 53 secretary Madeleine Korbel Albright @@ -742,7 +760,7 @@ wicentowskijc 2017-05-31T14:35:48.889-04:00 - + 54 secretary Madeleine Korbel Albright @@ -750,13 +768,14 @@ 1997-11-20 Switzerland Geneva - Discussed Iraq crisis with the Foreign Ministers of Britain, France, and Russia. + Discussed Iraq crisis with the Foreign Ministers of Britain, France, and + Russia. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 55 secretary Madeleine Korbel Albright @@ -770,7 +789,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 56 secretary Madeleine Korbel Albright @@ -784,7 +803,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 57 secretary Madeleine Korbel Albright @@ -798,7 +817,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 58 secretary Madeleine Korbel Albright @@ -806,13 +825,14 @@ 1997-12-08 France Paris - Met with Israeli Prime Minister Netanyahu and French Foreign Minister Vedrine. + Met with Israeli Prime Minister Netanyahu and French Foreign Minister + Vedrine. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 59 secretary Madeleine Korbel Albright @@ -826,7 +846,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 60 secretary Madeleine Korbel Albright @@ -834,13 +854,14 @@ 1997-12-11 Uganda Kampala, Gulu - Met with President Musaveni, northern Ugandan refugees, and Sudanese opposition leaders. + Met with President Musaveni, northern Ugandan refugees, and Sudanese opposition + leaders. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 61 secretary Madeleine Korbel Albright @@ -854,7 +875,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 62 secretary Madeleine Korbel Albright @@ -868,7 +889,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 63 secretary Madeleine Korbel Albright @@ -882,7 +903,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 64 secretary Madeleine Korbel Albright @@ -896,7 +917,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 65 secretary Madeleine Korbel Albright @@ -910,7 +931,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 66 secretary Madeleine Korbel Albright @@ -918,13 +939,15 @@ 1997-12-17 Belgium Brussels - Attended NATO Foreign Ministers' Meeting and meetings of the NATO-Ukraine Commission, the Euro-Atlantic Partnership Council, and the NATO-Russia Permanent Joint Council. + Attended NATO Foreign Ministers' Meeting and meetings of the NATO-Ukraine + Commission, the Euro-Atlantic Partnership Council, and the NATO-Russia Permanent Joint + Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 67 secretary Madeleine Korbel Albright @@ -938,7 +961,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 68 secretary Madeleine Korbel Albright @@ -952,7 +975,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 69 secretary Madeleine Korbel Albright @@ -960,13 +983,14 @@ 1997-12-22 Bosnia-Herzegovina Sarajevo, Tuzla - Accompanied President Clinton to meetings with Bosnian officials and U.S. military personnel. + Accompanied President Clinton to meetings with Bosnian officials and U.S. military + personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 70 secretary Madeleine Korbel Albright @@ -980,7 +1004,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 71 secretary Madeleine Korbel Albright @@ -994,7 +1018,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 72 secretary Madeleine Korbel Albright @@ -1008,7 +1032,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 73 secretary Madeleine Korbel Albright @@ -1022,7 +1046,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 74 secretary Madeleine Korbel Albright @@ -1030,13 +1054,14 @@ 1998-01-31 United Kingdom London, Ascot - Discussed the Iraq crisis with British Foreign Secretary Cook and King Hussein of Jordan. + Discussed the Iraq crisis with British Foreign Secretary Cook and King Hussein of + Jordan. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 75 secretary Madeleine Korbel Albright @@ -1050,7 +1075,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 76 secretary Madeleine Korbel Albright @@ -1064,7 +1089,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 77 secretary Madeleine Korbel Albright @@ -1078,7 +1103,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 78 secretary Madeleine Korbel Albright @@ -1092,7 +1117,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 79 secretary Madeleine Korbel Albright @@ -1106,7 +1131,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 80 secretary Madeleine Korbel Albright @@ -1114,13 +1139,14 @@ 1998-02-03 Egypt Cairo - Discussed the Iraq crisis with President Mubarak and Foreign Minister Moussa. + Discussed the Iraq crisis with President Mubarak and Foreign Minister + Moussa. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 81 secretary Madeleine Korbel Albright @@ -1134,7 +1160,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 82 secretary Madeleine Korbel Albright @@ -1142,13 +1168,14 @@ 1998-03-08 Italy Rome - Discussed the Kosovo crisis with Prime Minister Prodi and Foreign Minister Dini. + Discussed the Kosovo crisis with Prime Minister Prodi and Foreign Minister + Dini. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 83 secretary Madeleine Korbel Albright @@ -1162,7 +1189,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 84 secretary Madeleine Korbel Albright @@ -1176,7 +1203,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 85 secretary Madeleine Korbel Albright @@ -1190,7 +1217,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 86 secretary Madeleine Korbel Albright @@ -1204,7 +1231,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 87 secretary Madeleine Korbel Albright @@ -1218,7 +1245,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 88 secretary Madeleine Korbel Albright @@ -1232,7 +1259,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 89 secretary Madeleine Korbel Albright @@ -1246,7 +1273,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 90 secretary Madeleine Korbel Albright @@ -1254,13 +1281,14 @@ 1998-03-24 Vatican City - Discussed the Kosovo crisis and the situation in Cuba with Vatican officials. + Discussed the Kosovo crisis and the situation in Cuba with Vatican + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 91 secretary Madeleine Korbel Albright @@ -1274,7 +1302,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 92 secretary Madeleine Korbel Albright @@ -1282,13 +1310,14 @@ 1998-04-04 Haiti Port-au-Prince, Jacmel - Met with President Preval and Haitian political leaders. Discussed narcotics control with Haitian and Dominican officials aboard USCG Dallas. + Met with President Preval and Haitian political leaders. Discussed narcotics + control with Haitian and Dominican officials aboard USCG Dallas. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 93 secretary Madeleine Korbel Albright @@ -1302,7 +1331,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 94 secretary Madeleine Korbel Albright @@ -1310,13 +1339,14 @@ 1998-04-19 Chile Santiago - Accompanied President Clinton on a state visit and to the Second Summit of the Americas. + Accompanied President Clinton on a state visit and to the Second Summit of the + Americas. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 95 secretary Madeleine Korbel Albright @@ -1324,13 +1354,14 @@ 1998-04-29 Japan Tokyo - Met with Prime Minister Hashimoto and Foreign Minister Obuchi. Signed amended Acquisitions and Cross-Servicing Agreement. + Met with Prime Minister Hashimoto and Foreign Minister Obuchi. Signed amended + Acquisitions and Cross-Servicing Agreement. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 96 secretary Madeleine Korbel Albright @@ -1338,13 +1369,14 @@ 1998-05-01 China Beijing - Met with President Jiang and senior Chinese officials and made arrangements for President Clinton's state visit. + Met with President Jiang and senior Chinese officials and made arrangements for + President Clinton's state visit. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 97 secretary Madeleine Korbel Albright @@ -1358,7 +1390,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 98 secretary Madeleine Korbel Albright @@ -1366,13 +1398,14 @@ 1998-05-02 Mongolia Ulaanbaatar - Met with President Bagabandi and senior Mongolian officials and addressed the Great Hural. + Met with President Bagabandi and senior Mongolian officials and addressed the Great + Hural. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 99 secretary Madeleine Korbel Albright @@ -1380,13 +1413,14 @@ 1998-05-09 United Kingdom London - Met with Prime Minister Blair, Israeli Prime Minister Netanyahu, and PLO Chairman Arafat. Attended G-8 Foreign Ministers' Meeting. + Met with Prime Minister Blair, Israeli Prime Minister Netanyahu, and PLO Chairman + Arafat. Attended G-8 Foreign Ministers' Meeting. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 100 secretary Madeleine Korbel Albright @@ -1400,7 +1434,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 101 secretary Madeleine Korbel Albright @@ -1414,7 +1448,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 102 secretary Madeleine Korbel Albright @@ -1428,7 +1462,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 103 secretary Madeleine Korbel Albright @@ -1442,7 +1476,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 104 secretary Madeleine Korbel Albright @@ -1450,13 +1484,14 @@ 1998-06-04 Switzerland Geneva - Discussed the India-Pakistan nuclear crisis with the Foreign Ministers of the permanent member states of the UN Security Council. + Discussed the India-Pakistan nuclear crisis with the Foreign Ministers of the + permanent member states of the UN Security Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 105 secretary Madeleine Korbel Albright @@ -1464,13 +1499,14 @@ 1998-06-12 United Kingdom London - Discussed the South Asian nuclear crisis and the Kosovo crisis with the G-8 Foreign Ministers. + Discussed the South Asian nuclear crisis and the Kosovo crisis with the G-8 Foreign + Ministers. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 106 secretary Madeleine Korbel Albright @@ -1484,7 +1520,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 107 secretary Madeleine Korbel Albright @@ -1498,7 +1534,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 108 secretary Madeleine Korbel Albright @@ -1506,13 +1542,14 @@ 1998-07-29 Philippines Manila - Attended ASEAN Regional Forum and Post Ministerial Conference. Met with Russian Foreign Minister Primakov. + Attended ASEAN Regional Forum and Post Ministerial Conference. Met with Russian + Foreign Minister Primakov. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 109 secretary Madeleine Korbel Albright @@ -1520,13 +1557,14 @@ 1998-07-29 Papua New Guinea Port Moresby - Met with Prime Minister Skate and announced additional U.S. humanitarian assistance. + Met with Prime Minister Skate and announced additional U.S. humanitarian + assistance. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 110 secretary Madeleine Korbel Albright @@ -1540,7 +1578,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 111 secretary Madeleine Korbel Albright @@ -1554,7 +1592,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 112 secretary Madeleine Korbel Albright @@ -1562,13 +1600,14 @@ 1998-08-07 Italy Rome - Was to have attended wedding of Spokesman James Rubin; returned to Washington after bombings of U.S. Embassies in Kenya and Tanzania. + Was to have attended wedding of Spokesman James Rubin; returned to Washington after + bombings of U.S. Embassies in Kenya and Tanzania. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 113 secretary Madeleine Korbel Albright @@ -1576,13 +1615,14 @@ 1998-08-13 Germany Ramstein Air Force Base, Landstuhl - Visited Embassy personnel wounded in the bombings in Kenya and Tanzania; accompanied the dead back to the United States. + Visited Embassy personnel wounded in the bombings in Kenya and Tanzania; + accompanied the dead back to the United States. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 114 secretary Madeleine Korbel Albright @@ -1596,7 +1636,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 115 secretary Madeleine Korbel Albright @@ -1610,7 +1650,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 116 secretary Madeleine Korbel Albright @@ -1624,7 +1664,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 117 secretary Madeleine Korbel Albright @@ -1638,7 +1678,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 118 secretary Madeleine Korbel Albright @@ -1652,7 +1692,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 119 secretary Madeleine Korbel Albright @@ -1660,13 +1700,14 @@ 1998-09-03 Austria Vienna - Official visit. Attended U.S.-European Union ministerial meeting and addressed the OSCE Permanent Council. + Official visit. Attended U.S.-European Union ministerial meeting and addressed the + OSCE Permanent Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 120 secretary Madeleine Korbel Albright @@ -1680,7 +1721,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 121 secretary Madeleine Korbel Albright @@ -1694,7 +1735,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 122 secretary Madeleine Korbel Albright @@ -1708,7 +1749,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 123 secretary Madeleine Korbel Albright @@ -1722,7 +1763,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 124 secretary Madeleine Korbel Albright @@ -1730,13 +1771,14 @@ 1998-11-15 Malaysia Kuala Lumpur - Attended APEC Ministerial Meeting and met with the wife of former Deputy Prime Minister Anwar Ibrahim. + Attended APEC Ministerial Meeting and met with the wife of former Deputy Prime + Minister Anwar Ibrahim. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 125 secretary Madeleine Korbel Albright @@ -1744,13 +1786,15 @@ 1998-12-09 Belgium Brussels - Attended NATO Ministerial meeting, and ministerial meetings of the Euro-Atlantic Partnership Council, NATO-Russia Permanent Joint Council, and NATO-Ukraine Commission. + Attended NATO Ministerial meeting, and ministerial meetings of the Euro-Atlantic + Partnership Council, NATO-Russia Permanent Joint Council, and NATO-Ukraine + Commission. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 126 secretary Madeleine Korbel Albright @@ -1758,13 +1802,14 @@ 1998-12-10 France Lyon, Paris - Announced opening of the American Presence Post in Lyon. Met with President Chirac and senior French officials. + Announced opening of the American Presence Post in Lyon. Met with President Chirac + and senior French officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 127 secretary Madeleine Korbel Albright @@ -1778,7 +1823,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 128 secretary Madeleine Korbel Albright @@ -1786,13 +1831,14 @@ 1998-12-15 Palestinian Authority Gaza, Erez - Accompanied President Clinton. On December 15, attended meeting with Prime Minister Netanyahu and Chairman Arafat. + Accompanied President Clinton. On December 15, attended meeting with Prime Minister + Netanyahu and Chairman Arafat. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 129 secretary Madeleine Korbel Albright @@ -1806,7 +1852,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 130 secretary Madeleine Korbel Albright @@ -1814,13 +1860,14 @@ 1999-01-27 Russia Moscow - Discussed strategic arms limitations and the Kosovo crisis with Prime Minister Primakov. + Discussed strategic arms limitations and the Kosovo crisis with Prime Minister + Primakov. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 131 secretary Madeleine Korbel Albright @@ -1828,13 +1875,14 @@ 1999-01-27 Egypt Cairo - Discussed the Iraq crisis with President Mubarak and Foreign Minister Moussa. + Discussed the Iraq crisis with President Mubarak and Foreign Minister + Moussa. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 132 secretary Madeleine Korbel Albright @@ -1842,13 +1890,14 @@ 1999-01-28 Saudi Arabia Riyadh, Prince Sultan Air Base - Discussed the Iraq crisis with King Fahd and senior Saudi officials and addressed U.S. military personnel. + Discussed the Iraq crisis with King Fahd and senior Saudi officials and addressed + U.S. military personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 133 secretary Madeleine Korbel Albright @@ -1862,7 +1911,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 134 secretary Madeleine Korbel Albright @@ -1876,7 +1925,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 135 secretary Madeleine Korbel Albright @@ -1890,7 +1939,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 136 secretary Madeleine Korbel Albright @@ -1898,13 +1947,14 @@ 1999-02-14 France Paris, Rambouillet - Met with Contact Group Foreign Ministers and with the delegations to the Kosovo peace conference. + Met with Contact Group Foreign Ministers and with the delegations to the Kosovo + peace conference. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 137 secretary Madeleine Korbel Albright @@ -1918,7 +1968,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 138 secretary Madeleine Korbel Albright @@ -1932,7 +1982,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 139 secretary Madeleine Korbel Albright @@ -1946,7 +1996,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 140 secretary Madeleine Korbel Albright @@ -1954,13 +2004,14 @@ 1999-03-04 Thailand Chiang Mai, Bangkok - Visited the Hill Tribes Institute in Chiang Mai; met with senior Thai officials. + Visited the Hill Tribes Institute in Chiang Mai; met with senior Thai + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 141 secretary Madeleine Korbel Albright @@ -1974,7 +2025,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 142 secretary Madeleine Korbel Albright @@ -1982,13 +2033,14 @@ 1999-03-06 United Kingdom London - Discussed the U.S. peace plan for Kosovo with special envoy Dole and Foreign Secretary Cook. + Discussed the U.S. peace plan for Kosovo with special envoy Dole and Foreign + Secretary Cook. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 143 secretary Madeleine Korbel Albright @@ -2002,7 +2054,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 144 secretary Madeleine Korbel Albright @@ -2016,7 +2068,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 145 secretary Madeleine Korbel Albright @@ -2030,7 +2082,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 146 secretary Madeleine Korbel Albright @@ -2044,7 +2096,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 147 secretary Madeleine Korbel Albright @@ -2058,7 +2110,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 148 secretary Madeleine Korbel Albright @@ -2066,13 +2118,14 @@ 1999-06-11 Germany Bonn, Cologne - Attended a G-8 Foreign Ministers meeting on the Kosovo conflict and the G-8 and U.S.-EU Ministerial meetings; met with Kosovar political leaders. + Attended a G-8 Foreign Ministers meeting on the Kosovo conflict and the G-8 and + U.S.-EU Ministerial meetings; met with Kosovar political leaders. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 149 secretary Madeleine Korbel Albright @@ -2086,7 +2139,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 150 secretary Madeleine Korbel Albright @@ -2100,7 +2153,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 151 secretary Madeleine Korbel Albright @@ -2108,13 +2161,14 @@ 1999-06-18 Finland Helsinki - Met with the Russian Foreign and Defense Ministers to discuss a Russian role in peacekeeping in Kosovo; met with President Atisaari. + Met with the Russian Foreign and Defense Ministers to discuss a Russian role in + peacekeeping in Kosovo; met with President Atisaari. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 152 secretary Madeleine Korbel Albright @@ -2128,7 +2182,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 153 secretary Madeleine Korbel Albright @@ -2142,7 +2196,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 154 secretary Madeleine Korbel Albright @@ -2150,13 +2204,14 @@ 1999-06-22 Slovenia Ljubljana - Accompanied President Clinton and met with Montenegrin President Djukanovic. + Accompanied President Clinton and met with Montenegrin President + Djukanovic. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 155 secretary Madeleine Korbel Albright @@ -2170,7 +2225,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 156 secretary Madeleine Korbel Albright @@ -2184,7 +2239,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 157 secretary Madeleine Korbel Albright @@ -2198,7 +2253,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 158 secretary Madeleine Korbel Albright @@ -2212,7 +2267,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 159 secretary Madeleine Korbel Albright @@ -2220,13 +2275,15 @@ 1999-07-27 Singapore Singapore - Attended ASEAN Regional Forum, ASEAN Post-Ministerial Conference, and trilateral ministerial consultations with Japan and South Korea. Met with Russian Foreign Minister Ivanov. + Attended ASEAN Regional Forum, ASEAN Post-Ministerial Conference, and trilateral + ministerial consultations with Japan and South Korea. Met with Russian Foreign Minister + Ivanov. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 160 secretary Madeleine Korbel Albright @@ -2240,7 +2297,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 161 secretary Madeleine Korbel Albright @@ -2248,13 +2305,14 @@ 1999-07-30 Italy Rome, Aviano - Met with Foreign Minister Dini. Joined President Clinton July 30 at Aviano Air Force Base for visit to Sarajevo. + Met with Foreign Minister Dini. Joined President Clinton July 30 at Aviano Air + Force Base for visit to Sarajevo. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 162 secretary Madeleine Korbel Albright @@ -2268,7 +2326,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 163 secretary Madeleine Korbel Albright @@ -2276,13 +2334,14 @@ 1999-07-29 Serbia-Montenegro (Kosovo) Pristina - Met with UN and NATO officials, U.S. military personnel, and representatives of the people of Kosovo. + Met with UN and NATO officials, U.S. military personnel, and representatives of the + people of Kosovo. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 164 secretary Madeleine Korbel Albright @@ -2296,7 +2355,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 165 secretary Madeleine Korbel Albright @@ -2310,7 +2369,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 166 secretary Madeleine Korbel Albright @@ -2324,7 +2383,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 167 secretary Madeleine Korbel Albright @@ -2332,13 +2391,14 @@ 1999-09-02 Egypt Alexandria - Met with President Mubarak, Foreign Minister Moussa, and Palestinian Authority Chairman Arafat. + Met with President Mubarak, Foreign Minister Moussa, and Palestinian Authority + Chairman Arafat. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 168 secretary Madeleine Korbel Albright @@ -2346,13 +2406,14 @@ 1999-09-04 Israel Tel Aviv, Jerusalem - Discussed the Israeli-Palestinian peace process with senior Israeli officials. + Discussed the Israeli-Palestinian peace process with senior Israeli + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 169 secretary Madeleine Korbel Albright @@ -2360,13 +2421,14 @@ 1999-09-03 Palestinian Authority Gaza - Discussed the Israeli-Palestinian peace process with senior Palestinian Authority officials. + Discussed the Israeli-Palestinian peace process with senior Palestinian Authority + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 170 secretary Madeleine Korbel Albright @@ -2374,13 +2436,14 @@ 1999-09-04 Syria Damascus - Discussed the Israeli-Palestinian peace process with President Assad and Foreign Minister Sharaa. + Discussed the Israeli-Palestinian peace process with President Assad and Foreign + Minister Sharaa. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 171 secretary Madeleine Korbel Albright @@ -2394,7 +2457,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 172 secretary Madeleine Korbel Albright @@ -2408,7 +2471,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 173 secretary Madeleine Korbel Albright @@ -2422,7 +2485,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 174 secretary Madeleine Korbel Albright @@ -2436,7 +2499,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 175 secretary Madeleine Korbel Albright @@ -2444,13 +2507,14 @@ 1999-09-08 Vietnam Hanoi, Ho Chi Minh City - Met with senior Vietnamese officials and opened new U.S. Consulate General in Ho Chi Minh City. + Met with senior Vietnamese officials and opened new U.S. Consulate General in Ho + Chi Minh City. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 176 secretary Madeleine Korbel Albright @@ -2464,7 +2528,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 177 secretary Madeleine Korbel Albright @@ -2478,7 +2542,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 178 secretary Madeleine Korbel Albright @@ -2486,13 +2550,14 @@ 1999-10-18 Sierra Leone Freetown, Murray Town - Met with President Kabbah, former rebel leaders, and ECOMOG and UNOMSIL officials; visited the Amputee and War Wounded Camp at Murray Town. + Met with President Kabbah, former rebel leaders, and ECOMOG and UNOMSIL officials; + visited the Amputee and War Wounded Camp at Murray Town. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 179 secretary Madeleine Korbel Albright @@ -2506,7 +2571,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 180 secretary Madeleine Korbel Albright @@ -2514,13 +2579,14 @@ 1999-10-20 Nigeria Abuja, Kano - Met with President Obasanjo, senior Nigerian officials, representatives of ECOWAS, and officials and political leaders of northern Nigeria. + Met with President Obasanjo, senior Nigerian officials, representatives of ECOWAS, + and officials and political leaders of northern Nigeria. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 181 secretary Madeleine Korbel Albright @@ -2528,13 +2594,14 @@ 1999-10-23 Kenya Nairobi - Met with President Moi and inaugurated a new Embassy building. Also met with IGAD representatives and representatives of Sudanese civil society. + Met with President Moi and inaugurated a new Embassy building. Also met with IGAD + representatives and representatives of Sudanese civil society. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 182 secretary Madeleine Korbel Albright @@ -2542,13 +2609,14 @@ 1999-10-21 Tanzania Dar es Salaam - Attended the state funeral of former President Nyerere. Met with President Mkapa and President Buyoya of Burundi. + Attended the state funeral of former President Nyerere. Met with President Mkapa + and President Buyoya of Burundi. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 183 secretary Madeleine Korbel Albright @@ -2556,13 +2624,14 @@ 1999-11-02 Norway Oslo - Accompanied President Clinton on a State visit to commemorative ceremony for former Israeli Prime Minister Rabin. + Accompanied President Clinton on a State visit to commemorative ceremony for former + Israeli Prime Minister Rabin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 184 secretary Madeleine Korbel Albright @@ -2570,13 +2639,14 @@ 1999-11-19 Turkey Ankara, Ephesus, Istanbul - Accompanied President Clinton on a State visit; attended OSCE Summit meeting in Istanbul. + Accompanied President Clinton on a State visit; attended OSCE Summit meeting in + Istanbul. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 185 secretary Madeleine Korbel Albright @@ -2590,7 +2660,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 186 secretary Madeleine Korbel Albright @@ -2598,13 +2668,14 @@ 1999-11-21 Italy Florence - Accompanied President Clinton to conference on Progressive Governance for the 21st Century. + Accompanied President Clinton to conference on Progressive Governance for the 21st + Century. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 187 secretary Madeleine Korbel Albright @@ -2612,13 +2683,14 @@ 1999-11-22 Slovakia Bratislava - Met with President Schuster, Prime Minister Dzurinda, and other senior officials. + Met with President Schuster, Prime Minister Dzurinda, and other senior + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 188 secretary Madeleine Korbel Albright @@ -2632,7 +2704,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 189 secretary Madeleine Korbel Albright @@ -2646,7 +2718,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 190 secretary Madeleine Korbel Albright @@ -2660,7 +2732,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 191 secretary Madeleine Korbel Albright @@ -2674,7 +2746,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 192 secretary Madeleine Korbel Albright @@ -2688,7 +2760,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 193 secretary Madeleine Korbel Albright @@ -2702,7 +2774,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 194 secretary Madeleine Korbel Albright @@ -2716,7 +2788,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 195 secretary Madeleine Korbel Albright @@ -2724,13 +2796,14 @@ 1999-12-17 Germany Berlin - Attended G-8 Foreign Ministers meeting; met with President Djukanovic of Montenegro and Serbian opposition leaders. + Attended G-8 Foreign Ministers meeting; met with President Djukanovic of Montenegro + and Serbian opposition leaders. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 196 secretary Madeleine Korbel Albright @@ -2744,7 +2817,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 197 secretary Madeleine Korbel Albright @@ -2758,7 +2831,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 198 secretary Madeleine Korbel Albright @@ -2772,7 +2845,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 199 secretary Madeleine Korbel Albright @@ -2786,7 +2859,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 200 secretary Madeleine Korbel Albright @@ -2800,7 +2873,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 201 secretary Madeleine Korbel Albright @@ -2814,7 +2887,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 202 secretary Madeleine Korbel Albright @@ -2828,7 +2901,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 203 secretary Madeleine Korbel Albright @@ -2836,13 +2909,14 @@ 2000-02-19 Croatia Zagreb - Led the U.S. delegation to the inauguration of President Mesic. Met with Serbian opposition leaders. + Led the U.S. delegation to the inauguration of President Mesic. Met with Serbian + opposition leaders. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 204 secretary Madeleine Korbel Albright @@ -2850,13 +2924,14 @@ 2000-02-19 Albania Tirana - Met with President Meidani and Prime Minister Meta; addressed the Albanian Parliament. + Met with President Meidani and Prime Minister Meta; addressed the Albanian + Parliament. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 205 secretary Madeleine Korbel Albright @@ -2870,7 +2945,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 206 secretary Madeleine Korbel Albright @@ -2878,13 +2953,14 @@ 2000-03-08 Czech Republic Prague, Brno, Hodinin - Met with President Havel and senior officials, commemorated the 150th birthday of former President Thomas Masaryk; met with representatives of Serbian NGOs. + Met with President Havel and senior officials, commemorated the 150th birthday of + former President Thomas Masaryk; met with representatives of Serbian NGOs. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 207 secretary Madeleine Korbel Albright @@ -2892,13 +2968,14 @@ 2000-03-09 Bosnia-Herzegovina Sarajevo, Brcko, Banja Luka - Met with Bosnian political leaders and International community representatives; inaugurated Brcko Statute. + Met with Bosnian political leaders and International community representatives; + inaugurated Brcko Statute. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 208 secretary Madeleine Korbel Albright @@ -2912,7 +2989,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 209 secretary Madeleine Korbel Albright @@ -2920,13 +2997,14 @@ 2000-03-19 Italy Venice - Attended Aspen Institute Italia "European Dialogue" conference; met with Foreign Minister Dini. + Attended Aspen Institute Italia "European Dialogue" conference; met with Foreign + Minister Dini. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 210 secretary Madeleine Korbel Albright @@ -2940,7 +3018,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 211 secretary Madeleine Korbel Albright @@ -2954,7 +3032,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 212 secretary Madeleine Korbel Albright @@ -2962,13 +3040,14 @@ 2000-03-23 Switzerland Geneva - Addressed the UN Human Rights Commission; met with Foreign Minister Deiss. + Addressed the UN Human Rights Commission; met with Foreign Minister + Deiss. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 213 secretary Madeleine Korbel Albright @@ -2982,7 +3061,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 214 secretary Madeleine Korbel Albright @@ -2990,13 +3069,14 @@ 2000-03-25 Pakistan Islamabad - Accompanied President Clinton to meetings with President Musharraf and senior officials. + Accompanied President Clinton to meetings with President Musharraf and senior + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 215 secretary Madeleine Korbel Albright @@ -3010,7 +3090,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 216 secretary Madeleine Korbel Albright @@ -3024,7 +3104,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 217 secretary Madeleine Korbel Albright @@ -3038,7 +3118,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 218 secretary Madeleine Korbel Albright @@ -3052,7 +3132,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 219 secretary Madeleine Korbel Albright @@ -3066,7 +3146,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 220 secretary Madeleine Korbel Albright @@ -3074,13 +3154,14 @@ 2000-04-19 Uzbekistan Tashkent, Samarkand, Bukhara - Met with President Kamilov, senior officials, and members of non-governmental organizations. + Met with President Kamilov, senior officials, and members of non-governmental + organizations. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 221 secretary Madeleine Korbel Albright @@ -3088,13 +3169,14 @@ 2000-05-26 Italy Florence - Attended NATO Foreign Ministers' meeting; NATO-Russia Permanent Joint Council, Euro-Atlantic Partnership Council, and NATO-Ukraine Commission meetings. + Attended NATO Foreign Ministers' meeting; NATO-Russia Permanent Joint Council, + Euro-Atlantic Partnership Council, and NATO-Ukraine Commission meetings. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 222 secretary Madeleine Korbel Albright @@ -3108,7 +3190,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 223 secretary Madeleine Korbel Albright @@ -3116,13 +3198,14 @@ 2000-06-01 Portugal Lisbon - Accompanied President Clinton to the U.S.-EU Summit Meeting and to a meeting with Israeli Prime Minister Barak. + Accompanied President Clinton to the U.S.-EU Summit Meeting and to a meeting with + Israeli Prime Minister Barak. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 224 secretary Madeleine Korbel Albright @@ -3136,7 +3219,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 225 secretary Madeleine Korbel Albright @@ -3150,7 +3233,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 226 secretary Madeleine Korbel Albright @@ -3158,13 +3241,14 @@ 2000-06-07 Israel Jerusalem - Discussed the Middle East peace process with Prime Minister Barak and senior Israeli officials. + Discussed the Middle East peace process with Prime Minister Barak and senior + Israeli officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 227 secretary Madeleine Korbel Albright @@ -3178,7 +3262,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 228 secretary Madeleine Korbel Albright @@ -3186,13 +3270,14 @@ 2000-06-07 Egypt Cairo - Met with President Mubarak and the Foreign Ministers of Egypt, Syria, and Oman. + Met with President Mubarak and the Foreign Ministers of Egypt, Syria, and + Oman. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 229 secretary Madeleine Korbel Albright @@ -3206,7 +3291,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 230 secretary Madeleine Korbel Albright @@ -3220,7 +3305,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 231 secretary Madeleine Korbel Albright @@ -3234,7 +3319,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 232 secretary Madeleine Korbel Albright @@ -3248,7 +3333,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 233 secretary Madeleine Korbel Albright @@ -3256,13 +3341,15 @@ 2000-06-27 Poland Warsaw, Gdansk - Attended Ministerial Panel on Democracy and International Organizations and the World Forum on Democracy; received an honorary degree from the University of Gdansk. + Attended Ministerial Panel on Democracy and International Organizations and the + World Forum on Democracy; received an honorary degree from the University of + Gdansk. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 234 secretary Madeleine Korbel Albright @@ -3270,13 +3357,14 @@ 2000-06-29 Israel Jerusalem - Discussed the Middle East peace process with Prime Minister Barak and senior Israeli officials. + Discussed the Middle East peace process with Prime Minister Barak and senior + Israeli officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 235 secretary Madeleine Korbel Albright @@ -3290,7 +3378,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 236 secretary Madeleine Korbel Albright @@ -3304,7 +3392,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 237 secretary Madeleine Korbel Albright @@ -3312,13 +3400,14 @@ 2000-07-29 Thailand Bangkok - Attended ASEAN Regional Forum and Post-Ministerial Conference; met with North Korean Foreign Minister Paek Nam Sun. + Attended ASEAN Regional Forum and Post-Ministerial Conference; met with North + Korean Foreign Minister Paek Nam Sun. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 238 secretary Madeleine Korbel Albright @@ -3326,13 +3415,14 @@ 2000-07-31 Japan Tokyo, Miyazaki - Met with Prime Minister Mori and Foreign Minister Kono; attended the dedication of Albright Hall in Miyazaki. + Met with Prime Minister Mori and Foreign Minister Kono; attended the dedication of + Albright Hall in Miyazaki. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 239 secretary Madeleine Korbel Albright @@ -3346,7 +3436,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 240 secretary Madeleine Korbel Albright @@ -3360,7 +3450,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 241 secretary Madeleine Korbel Albright @@ -3374,7 +3464,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 242 secretary Madeleine Korbel Albright @@ -3388,7 +3478,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 243 secretary Madeleine Korbel Albright @@ -3402,7 +3492,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 244 secretary Madeleine Korbel Albright @@ -3416,7 +3506,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 245 secretary Madeleine Korbel Albright @@ -3430,7 +3520,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 246 secretary Madeleine Korbel Albright @@ -3444,7 +3534,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 247 secretary Madeleine Korbel Albright @@ -3458,7 +3548,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 248 secretary Madeleine Korbel Albright @@ -3472,7 +3562,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 249 secretary Madeleine Korbel Albright @@ -3486,7 +3576,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 250 secretary Madeleine Korbel Albright @@ -3500,7 +3590,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 251 secretary Madeleine Korbel Albright @@ -3508,13 +3598,14 @@ 2000-10-03 France Bordeaux, Paris - Opened American Presence Post at Bordeaux; attended U.S.-EU Ministerial Meeting and met with President Chirac. + Opened American Presence Post at Bordeaux; attended U.S.-EU Ministerial Meeting and + met with President Chirac. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 252 secretary Madeleine Korbel Albright @@ -3522,13 +3613,14 @@ 2000-10-03 Germany Dresden - Attended ceremonies commemorating the 10th anniversary of German reunification. + Attended ceremonies commemorating the 10th anniversary of German + reunification. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 253 secretary Madeleine Korbel Albright @@ -3536,13 +3628,14 @@ 2000-10-05 France Paris - Discussed the Israeli-Palestinian conflict with Prime Minister Barak and Chairman Arafat. + Discussed the Israeli-Palestinian conflict with Prime Minister Barak and Chairman + Arafat. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 254 secretary Madeleine Korbel Albright @@ -3550,13 +3643,14 @@ 2000-10-05 Egypt Sharm el-Sheikh - Discussed the Israeli-Palestinian conflict with President Mubarak, Foreign Minister Moussa, and Chairman Arafat. + Discussed the Israeli-Palestinian conflict with President Mubarak, Foreign Minister + Moussa, and Chairman Arafat. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 255 secretary Madeleine Korbel Albright @@ -3570,7 +3664,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 256 secretary Madeleine Korbel Albright @@ -3578,13 +3672,14 @@ 2000-10-18 Saudi Arabia Riyadh - Discussed the Middle East peace process with King Fahd and senior officials; also met with Syrian President Bashar Assad. + Discussed the Middle East peace process with King Fahd and senior officials; also + met with Syrian President Bashar Assad. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 257 secretary Madeleine Korbel Albright @@ -3598,7 +3693,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 258 secretary Madeleine Korbel Albright @@ -3606,13 +3701,14 @@ 2000-10-26 Korea, Republic of Seoul - Met with President Kim Dae Jung and the Foreign Ministers of South Korea and Japan. + Met with President Kim Dae Jung and the Foreign Ministers of South Korea and + Japan. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 259 secretary Madeleine Korbel Albright @@ -3626,7 +3722,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 260 secretary Madeleine Korbel Albright @@ -3640,7 +3736,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 261 secretary Madeleine Korbel Albright @@ -3654,7 +3750,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 262 secretary Madeleine Korbel Albright @@ -3662,13 +3758,14 @@ 2000-12-09 South Africa Cape Town, Pretoria - Met with President Mbeki and Foreign Minister Zuma; delivered addresses on public health issues. + Met with President Mbeki and Foreign Minister Zuma; delivered addresses on public + health issues. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 263 secretary Madeleine Korbel Albright @@ -3682,7 +3779,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 264 secretary Madeleine Korbel Albright @@ -3696,7 +3793,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 265 secretary Madeleine Korbel Albright @@ -3710,7 +3807,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 266 secretary Madeleine Korbel Albright @@ -3718,13 +3815,14 @@ 2000-12-13 Hungary Budapest - Met with Prime Minister Orban and Foreign Minister Martony; received an honorary degree from Szeged University. + Met with Prime Minister Orban and Foreign Minister Martony; received an honorary + degree from Szeged University. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 267 secretary Madeleine Korbel Albright @@ -3732,13 +3830,14 @@ 2000-12-16 Belgium Brussels - Attended NATO and NATO-Russia Permanent Joint Council Ministerial meetings. + Attended NATO and NATO-Russia Permanent Joint Council Ministerial + meetings. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 268 secretary Madeleine Korbel Albright @@ -3752,7 +3851,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 269 secretary Madeleine Korbel Albright @@ -3766,4 +3865,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/baker-james-addison.xml b/secretary-travels/baker-james-addison.xml index c280f83..927863d 100644 --- a/secretary-travels/baker-james-addison.xml +++ b/secretary-travels/baker-james-addison.xml @@ -1,6 +1,6 @@ - + 270 secretary James Addison Baker @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 271 secretary James Addison Baker @@ -28,7 +28,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 272 secretary James Addison Baker @@ -42,7 +42,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 273 secretary James Addison Baker @@ -50,13 +50,14 @@ 1989-02-14 Germany, Federal Republic of Bonn - Discussed modernization of short-range NATO nuclear missiles with Foreign Minister Genscher. + Discussed modernization of short-range NATO nuclear missiles with Foreign Minister + Genscher. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 274 secretary James Addison Baker @@ -70,7 +71,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 275 secretary James Addison Baker @@ -84,7 +85,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 276 secretary James Addison Baker @@ -98,7 +99,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 277 secretary James Addison Baker @@ -112,7 +113,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 278 secretary James Addison Baker @@ -126,7 +127,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 279 secretary James Addison Baker @@ -140,7 +141,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 280 secretary James Addison Baker @@ -154,7 +155,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 281 secretary James Addison Baker @@ -168,7 +169,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 282 secretary James Addison Baker @@ -182,7 +183,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 283 secretary James Addison Baker @@ -196,7 +197,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 284 secretary James Addison Baker @@ -210,7 +211,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 285 secretary James Addison Baker @@ -224,7 +225,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 286 secretary James Addison Baker @@ -238,7 +239,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 287 secretary James Addison Baker @@ -246,13 +247,15 @@ 1989-03-07 Austria Vienna - Attended CSCE Meetings on confidence- and security-building measures and conventional armed forces in Europe. Met with Soviet Foreign Minister Shevardnadze. + Attended CSCE Meetings on confidence- and security-building measures and + conventional armed forces in Europe. Met with Soviet Foreign Minister + Shevardnadze. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 288 secretary James Addison Baker @@ -266,7 +269,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 289 secretary James Addison Baker @@ -274,13 +277,14 @@ 1989-05-11 U.S.S.R. Moscow - Met with President Gorbachev, senior Soviet officials, and human rights activists. + Met with President Gorbachev, senior Soviet officials, and human rights + activists. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 290 secretary James Addison Baker @@ -294,7 +298,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 291 secretary James Addison Baker @@ -302,13 +306,14 @@ 1989-05-28 Italy Rome - Accompanied President Bush. Also met with South African Foreign Minister Botha. + Accompanied President Bush. Also met with South African Foreign Minister + Botha. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 292 secretary James Addison Baker @@ -322,7 +327,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 293 secretary James Addison Baker @@ -336,7 +341,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 294 secretary James Addison Baker @@ -350,7 +355,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 295 secretary James Addison Baker @@ -364,7 +369,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 296 secretary James Addison Baker @@ -372,13 +377,14 @@ 1989-07-05 Japan Tokyo - Attended the Multilateral Assistance Initiative for the Philippines conference. + Attended the Multilateral Assistance Initiative for the Philippines + conference. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 297 secretary James Addison Baker @@ -392,7 +398,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 298 secretary James Addison Baker @@ -406,7 +412,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 299 secretary James Addison Baker @@ -420,7 +426,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 300 secretary James Addison Baker @@ -434,7 +440,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 301 secretary James Addison Baker @@ -448,7 +454,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 302 secretary James Addison Baker @@ -462,7 +468,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 303 secretary James Addison Baker @@ -470,13 +476,14 @@ 1989-07-31 France Paris - Attended the opening of the International Conference on Cambodia. Also met with Soviet Foreign Minister Shevardnadze. + Attended the opening of the International Conference on Cambodia. Also met with + Soviet Foreign Minister Shevardnadze. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 304 secretary James Addison Baker @@ -490,7 +497,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 305 secretary James Addison Baker @@ -504,7 +511,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 306 secretary James Addison Baker @@ -512,13 +519,14 @@ 1989-11-08 Australia Sydney, Canberra - Attended U.S.-Australian Bilateral Ministerial Meeting and Conference on Asia Pacific Economic Cooperation. + Attended U.S.-Australian Bilateral Ministerial Meeting and Conference on Asia + Pacific Economic Cooperation. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 307 secretary James Addison Baker @@ -532,7 +540,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 308 secretary James Addison Baker @@ -540,13 +548,14 @@ 1989-12-04 Belgium Brussels - Accompanied President Bush to meetings with NATO heads of state and government. + Accompanied President Bush to meetings with NATO heads of state and + government. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 309 secretary James Addison Baker @@ -560,7 +569,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 310 secretary James Addison Baker @@ -574,7 +583,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 311 secretary James Addison Baker @@ -588,7 +597,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 312 secretary James Addison Baker @@ -596,13 +605,14 @@ 1989-12-15 Belgium Brussels - Discussed aid to Eastern Europe with representatives of the Group of 24; attended a NATO Foreign Ministers Meeting. + Discussed aid to Eastern Europe with representatives of the Group of 24; attended a + NATO Foreign Ministers Meeting. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 313 secretary James Addison Baker @@ -610,13 +620,14 @@ 1989-12-16 Netherlands Antilles St. Maartin - Accompanied President Bush en route to meeting with French President Mitterrand. + Accompanied President Bush en route to meeting with French President + Mitterrand. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 314 secretary James Addison Baker @@ -624,13 +635,14 @@ 1989-12-16 France St. Martin Island (West Indies) - Accompanied President Bush to an informal meeting with President Mitterrand. + Accompanied President Bush to an informal meeting with President + Mitterrand. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 315 secretary James Addison Baker @@ -644,7 +656,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 316 secretary James Addison Baker @@ -658,7 +670,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 317 secretary James Addison Baker @@ -666,13 +678,14 @@ 1990-02-10 U.S.S.R. Moscow - Met with Soviet leaders; addressed the International Affairs Committee of the Supreme Soviet. + Met with Soviet leaders; addressed the International Affairs Committee of the + Supreme Soviet. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 318 secretary James Addison Baker @@ -686,7 +699,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 319 secretary James Addison Baker @@ -700,7 +713,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 320 secretary James Addison Baker @@ -708,13 +721,14 @@ 1990-02-13 Canada Ottawa - Attended Open Skies Ministerial Conference of NATO and Warsaw Pact Foreign Ministers. + Attended Open Skies Ministerial Conference of NATO and Warsaw Pact Foreign + Ministers. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 321 secretary James Addison Baker @@ -722,13 +736,14 @@ 1990-02-15 Colombia Cartagena - Accompanied President Bush to Drug Summit Meeting with the Presidents of Colombia, Bolivia, and Peru. + Accompanied President Bush to Drug Summit Meeting with the Presidents of Colombia, + Bolivia, and Peru. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 322 secretary James Addison Baker @@ -736,13 +751,14 @@ 1990-03-22 Namibia Windhoek - Attended Namibian independence ceremonies. Met with Soviet Foreign Minister Shevardnadze. + Attended Namibian independence ceremonies. Met with Soviet Foreign Minister + Shevardnadze. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 323 secretary James Addison Baker @@ -750,13 +766,14 @@ 1990-03-23 South Africa Cape Town, Johannesburg, Soweto - Met with President De Klerk, South African officials, and leaders of the African National Congress (ANC). + Met with President De Klerk, South African officials, and leaders of the African + National Congress (ANC). wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 324 secretary James Addison Baker @@ -770,7 +787,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 325 secretary James Addison Baker @@ -778,13 +795,14 @@ 1990-04-14 United Kingdom Bermuda - Accompanied President Bush to an informal meeting with Prime Minister Thatcher. + Accompanied President Bush to an informal meeting with Prime Minister + Thatcher. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 326 secretary James Addison Baker @@ -798,7 +816,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 327 secretary James Addison Baker @@ -812,7 +830,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 328 secretary James Addison Baker @@ -826,7 +844,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 329 secretary James Addison Baker @@ -834,13 +852,15 @@ 1990-05-19 U.S.S.R. Moscow, Zagorsk, Radonezsh - Attended pre-summit and arms reduction negotiations with senior Soviet officials. Also met with Egyptian President Mubarak and Lithuanian Prime Minister Prunskiene. + Attended pre-summit and arms reduction negotiations with senior Soviet officials. + Also met with Egyptian President Mubarak and Lithuanian Prime Minister + Prunskiene. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 330 secretary James Addison Baker @@ -854,7 +874,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 331 secretary James Addison Baker @@ -868,7 +888,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 332 secretary James Addison Baker @@ -882,7 +902,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 333 secretary James Addison Baker @@ -896,7 +916,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 334 secretary James Addison Baker @@ -910,7 +930,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 335 secretary James Addison Baker @@ -924,7 +944,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 336 secretary James Addison Baker @@ -938,7 +958,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 337 secretary James Addison Baker @@ -952,7 +972,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 338 secretary James Addison Baker @@ -966,7 +986,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 339 secretary James Addison Baker @@ -980,7 +1000,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 340 secretary James Addison Baker @@ -994,7 +1014,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 341 secretary James Addison Baker @@ -1008,7 +1028,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 342 secretary James Addison Baker @@ -1016,13 +1036,14 @@ 1990-08-03 U.S.S.R. Moscow - Met with Foreign Minister Shevardnadze; issued a joint statement on the Iraqi invasion of Kuwait. + Met with Foreign Minister Shevardnadze; issued a joint statement on the Iraqi + invasion of Kuwait. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 343 secretary James Addison Baker @@ -1036,7 +1057,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 344 secretary James Addison Baker @@ -1050,7 +1071,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 345 secretary James Addison Baker @@ -1058,13 +1079,14 @@ 1990-09-07 Saudi Arabia Jeddah, Taif - Met with King Fahd and with Emir al-Sabah of Kuwait; discussed financing of U.S. military presence. Visited U.S. military personnel. + Met with King Fahd and with Emir al-Sabah of Kuwait; discussed financing of U.S. + military presence. Visited U.S. military personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 346 secretary James Addison Baker @@ -1078,7 +1100,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 347 secretary James Addison Baker @@ -1086,13 +1108,14 @@ 1990-09-08 Egypt Cairo, Alexandria - Met with President Mubarak. Discussed increased Egyptian military commitment in the Persian Gulf. + Met with President Mubarak. Discussed increased Egyptian military commitment in the + Persian Gulf. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 348 secretary James Addison Baker @@ -1100,13 +1123,14 @@ 1990-09-10 Finland Helsinki - Accompanied President Bush to summit meeting with Soviet President Gorbachev. + Accompanied President Bush to summit meeting with Soviet President + Gorbachev. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 349 secretary James Addison Baker @@ -1114,13 +1138,14 @@ 1990-09-10 Belgium Brussels - Briefed NATO Foreign Ministers on the U.S.-Soviet summit meeting and the Persian Gulf crisis. + Briefed NATO Foreign Ministers on the U.S.-Soviet summit meeting and the Persian + Gulf crisis. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 350 secretary James Addison Baker @@ -1128,13 +1153,15 @@ 1990-09-13 U.S.S.R. Moscow - Met with President Gorbachev and Foreign Minister Shevardnadze. Attended Two-Plus-Four Foreign Ministers Meeting. Signed Treaty on the Final Settlement With Respect to Germany. + Met with President Gorbachev and Foreign Minister Shevardnadze. Attended + Two-Plus-Four Foreign Ministers Meeting. Signed Treaty on the Final Settlement With + Respect to Germany. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 351 secretary James Addison Baker @@ -1148,7 +1175,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 352 secretary James Addison Baker @@ -1162,7 +1189,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 353 secretary James Addison Baker @@ -1176,7 +1203,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 354 secretary James Addison Baker @@ -1190,7 +1217,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 355 secretary James Addison Baker @@ -1198,13 +1225,14 @@ 1990-11-06 Saudi Arabia Jeddah, Taif - Met with King Fahd, Foreign Minister Prince Saud, and the Emir of Kuwait. Addressed U.S. military personnel. + Met with King Fahd, Foreign Minister Prince Saud, and the Emir of Kuwait. Addressed + U.S. military personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 356 secretary James Addison Baker @@ -1218,7 +1246,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 357 secretary James Addison Baker @@ -1232,7 +1260,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 358 secretary James Addison Baker @@ -1246,7 +1274,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 359 secretary James Addison Baker @@ -1260,7 +1288,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 360 secretary James Addison Baker @@ -1274,7 +1302,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 361 secretary James Addison Baker @@ -1288,7 +1316,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 362 secretary James Addison Baker @@ -1302,7 +1330,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 363 secretary James Addison Baker @@ -1310,13 +1338,14 @@ 1990-11-17 Switzerland Geneva - Discussed the Persian Gulf crisis with the Foreign Ministers of Ethiopia, Cote d'Ivoire, and Zaire. + Discussed the Persian Gulf crisis with the Foreign Ministers of Ethiopia, Cote + d'Ivoire, and Zaire. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 364 secretary James Addison Baker @@ -1324,13 +1353,16 @@ 1990-11-21 France Paris - Discussed the Persian Gulf crisis with the Foreign Ministers of Romania, Finland, France, the United Kingdom, and the Soviet Union. Joined President Bush for meetings with Soviet President Gorbachev, CSCE Summit meeting, and signing of the Conventional Forces in Europe Treaty. + Discussed the Persian Gulf crisis with the Foreign Ministers of Romania, Finland, + France, the United Kingdom, and the Soviet Union. Joined President Bush for meetings + with Soviet President Gorbachev, CSCE Summit meeting, and signing of the Conventional + Forces in Europe Treaty. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 365 secretary James Addison Baker @@ -1338,13 +1370,14 @@ 1990-11-22 Saudi Arabia Jeddah - Accompanied President Bush to meetings with King Fahd and the Amir of Kuwait. + Accompanied President Bush to meetings with King Fahd and the Amir of + Kuwait. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 366 secretary James Addison Baker @@ -1358,7 +1391,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 367 secretary James Addison Baker @@ -1372,7 +1405,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 368 secretary James Addison Baker @@ -1380,13 +1413,14 @@ 1990-11-24 Colombia Bogota - Discussed the Persian Gulf crisis with President Gaviria and Foreign Minister Jaramillo. + Discussed the Persian Gulf crisis with President Gaviria and Foreign Minister + Jaramillo. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 369 secretary James Addison Baker @@ -1400,7 +1434,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 370 secretary James Addison Baker @@ -1408,13 +1442,15 @@ 1991-01-08 United Kingdom London - Discussed the Persian Gulf crisis with Foreign Secretary Hurd, EC Chairman Poos, Spanish Foreign Minister Fernandez Ordonez, and NATO Secretary General Woerner. + Discussed the Persian Gulf crisis with Foreign Secretary Hurd, EC Chairman Poos, + Spanish Foreign Minister Fernandez Ordonez, and NATO Secretary General + Woerner. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 371 secretary James Addison Baker @@ -1422,13 +1458,14 @@ 1991-01-08 France Paris - Discussed the Persian Gulf crisis with President Mitterrand and Foreign Minister Dumas. + Discussed the Persian Gulf crisis with President Mitterrand and Foreign Minister + Dumas. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 372 secretary James Addison Baker @@ -1442,7 +1479,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 373 secretary James Addison Baker @@ -1456,7 +1493,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 374 secretary James Addison Baker @@ -1470,7 +1507,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 375 secretary James Addison Baker @@ -1478,13 +1515,14 @@ 1991-01-11 Saudi Arabia Riyadh - Discussed the Persian Gulf crisis with King Fahd and Foreign Minister Prince Saud. + Discussed the Persian Gulf crisis with King Fahd and Foreign Minister Prince + Saud. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 376 secretary James Addison Baker @@ -1498,7 +1536,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 377 secretary James Addison Baker @@ -1506,13 +1544,14 @@ 1991-01-11 Saudi Arabia Taif - Discussed the Persian Gulf crisis with the Amir of Kuwait. Addressed U.S. military personnel in eastern Saudi Arabia. + Discussed the Persian Gulf crisis with the Amir of Kuwait. Addressed U.S. military + personnel in eastern Saudi Arabia. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 378 secretary James Addison Baker @@ -1520,13 +1559,14 @@ 1991-01-12 Egypt Cairo - Discussed the Persian Gulf crisis with President Mubarak and Foreign Minister Abdel-Meguid. + Discussed the Persian Gulf crisis with President Mubarak and Foreign Minister + Abdel-Meguid. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 379 secretary James Addison Baker @@ -1534,13 +1574,14 @@ 1991-01-12 Syria Damascus - Discussed the Persian Gulf crisis with President Assad and Foreign Minister Sharaa. + Discussed the Persian Gulf crisis with President Assad and Foreign Minister + Sharaa. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 380 secretary James Addison Baker @@ -1548,13 +1589,14 @@ 1991-01-13 Turkey Incirlik, Ankara - Discussed the Persian Gulf crisis with President Ozal and Foreign Minister Alptemocin. + Discussed the Persian Gulf crisis with President Ozal and Foreign Minister + Alptemocin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 381 secretary James Addison Baker @@ -1568,7 +1610,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 382 secretary James Addison Baker @@ -1582,7 +1624,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 383 secretary James Addison Baker @@ -1590,13 +1632,14 @@ 1991-03-10 Saudi Arabia Taif, Riyadh - Met with the Amir of Kuwait and with the Foreign Ministers of Egypt, Syria, and the Gulf Cooperation Council. + Met with the Amir of Kuwait and with the Foreign Ministers of Egypt, Syria, and the + Gulf Cooperation Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 384 secretary James Addison Baker @@ -1610,7 +1653,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 385 secretary James Addison Baker @@ -1618,13 +1661,14 @@ 1991-03-13 Israel Jerusalem, Karmeil - Discussed the Middle East peace process with President Herzog, Prime Minister Shamir, Foreign Minister Levy, and Palestinian representatives. + Discussed the Middle East peace process with President Herzog, Prime Minister + Shamir, Foreign Minister Levy, and Palestinian representatives. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 386 secretary James Addison Baker @@ -1632,13 +1676,14 @@ 1991-03-14 Syria Damascus - Discussed the Middle East peace process with President Assad and Foreign Minister Sharaa. + Discussed the Middle East peace process with President Assad and Foreign Minister + Sharaa. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 387 secretary James Addison Baker @@ -1652,7 +1697,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 388 secretary James Addison Baker @@ -1666,7 +1711,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 389 secretary James Addison Baker @@ -1674,13 +1719,14 @@ 1991-04-08 Turkey Ankara, Diyarbakir, Cukurca, Uzumlu - Discussed emergency aid to Kurdish refugees with President Ozal; visited refugee camps. + Discussed emergency aid to Kurdish refugees with President Ozal; visited refugee + camps. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 390 secretary James Addison Baker @@ -1688,13 +1734,14 @@ 1991-04-10 Israel Jerusalem - Discussed the Middle East peace process with Prime Minister Shamir, Israeli officials, and a Palestinian delegation. + Discussed the Middle East peace process with Prime Minister Shamir, Israeli + officials, and a Palestinian delegation. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 391 secretary James Addison Baker @@ -1702,13 +1749,14 @@ 1991-04-11 Egypt Cairo - Discussed the Middle East peace process with President Mubarak, Foreign Minister Abdel-Meguid, and Saudi Foreign Minister Prince Saud. + Discussed the Middle East peace process with President Mubarak, Foreign Minister + Abdel-Meguid, and Saudi Foreign Minister Prince Saud. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 392 secretary James Addison Baker @@ -1716,13 +1764,14 @@ 1991-04-12 Syria Damascus - Discussed the Middle East peace process with President Assad, Foreign Minister Sharaa, and Tunisian Foreign Minister Ben Yahya. + Discussed the Middle East peace process with President Assad, Foreign Minister + Sharaa, and Tunisian Foreign Minister Ben Yahya. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 393 secretary James Addison Baker @@ -1730,13 +1779,14 @@ 1991-04-12 Switzerland Geneva - Discussed the Middle East peace process with Jordanian Foreign Minister Masri. Also discussed aid to Kurdish refugees with heads of international relief agencies. + Discussed the Middle East peace process with Jordanian Foreign Minister Masri. Also + discussed aid to Kurdish refugees with heads of international relief agencies. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 394 secretary James Addison Baker @@ -1744,13 +1794,14 @@ 1991-04-18 Luxembourg Luxembourg - Discussed aid to Kurdish refugees and the Middle East peace process with European Community Foreign Ministers. + Discussed aid to Kurdish refugees and the Middle East peace process with European + Community Foreign Ministers. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 395 secretary James Addison Baker @@ -1758,13 +1809,14 @@ 1991-04-20 Israel Jerusalem - Discussed the Middle East peace process with senior Israeli officials and Palestinian representatives. + Discussed the Middle East peace process with senior Israeli officials and + Palestinian representatives. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 396 secretary James Addison Baker @@ -1778,7 +1830,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 397 secretary James Addison Baker @@ -1786,13 +1838,14 @@ 1991-04-21 Egypt Cairo - Discussed the Middle East peace process with President Mubarak and Foreign Minister Abdel-Meguid. + Discussed the Middle East peace process with President Mubarak and Foreign Minister + Abdel-Meguid. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 398 secretary James Addison Baker @@ -1800,13 +1853,14 @@ 1991-04-22 Saudi Arabia Jeddah - Discussed the Middle East peace process with King Fahd and Foreign Minister Prince Saud. + Discussed the Middle East peace process with King Fahd and Foreign Minister Prince + Saud. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 399 secretary James Addison Baker @@ -1820,7 +1874,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 400 secretary James Addison Baker @@ -1834,7 +1888,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 401 secretary James Addison Baker @@ -1842,13 +1896,14 @@ 1991-04-25 U.S.S.R. Kislovodsk - Discussed the Middle East peace process and implementation of the CFE Treaty with Foreign Minister Bessmertnykh. + Discussed the Middle East peace process and implementation of the CFE Treaty with + Foreign Minister Bessmertnykh. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 402 secretary James Addison Baker @@ -1862,7 +1917,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 403 secretary James Addison Baker @@ -1876,7 +1931,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 404 secretary James Addison Baker @@ -1884,13 +1939,14 @@ 1991-05-14 Egypt Cairo - Discussed the Middle East peace process with President Mubarak and Soviet Foreign Minister Bessmertnykh. + Discussed the Middle East peace process with President Mubarak and Soviet Foreign + Minister Bessmertnykh. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 405 secretary James Addison Baker @@ -1904,7 +1960,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 406 secretary James Addison Baker @@ -1912,13 +1968,14 @@ 1991-05-16 Israel Jerusalem - Discussed the Middle East peace process with Prime Minister Shamir and senior Israeli officials. + Discussed the Middle East peace process with Prime Minister Shamir and senior + Israeli officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 407 secretary James Addison Baker @@ -1932,7 +1989,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 408 secretary James Addison Baker @@ -1946,7 +2003,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 409 secretary James Addison Baker @@ -1960,7 +2017,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 410 secretary James Addison Baker @@ -1968,13 +2025,14 @@ 1991-06-21 Germany Berlin, Halle - Attended CSCE Foreign Ministers' Meeting and discussed strategic arms reductions with Soviet Foreign Minister Bessmertnykh. + Attended CSCE Foreign Ministers' Meeting and discussed strategic arms reductions + with Soviet Foreign Minister Bessmertnykh. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 411 secretary James Addison Baker @@ -1982,13 +2040,14 @@ 1991-06-22 Yugoslavia Belgrade - Met with Prime Minister Markovic and with the presidents of the 6 republics. + Met with Prime Minister Markovic and with the presidents of the 6 + republics. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 412 secretary James Addison Baker @@ -1996,13 +2055,14 @@ 1991-06-22 Albania Tirana - Met with President Alia and senior officials; addressed the Albanian Parliament. + Met with President Alia and senior officials; addressed the Albanian + Parliament. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 413 secretary James Addison Baker @@ -2010,13 +2070,14 @@ 1991-07-18 United Kingdom London - Attended Economic Summit Meeting and accompanied President Bush to meetings with Soviet President Gorbachev. + Attended Economic Summit Meeting and accompanied President Bush to meetings with + Soviet President Gorbachev. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 414 secretary James Addison Baker @@ -2030,7 +2091,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 415 secretary James Addison Baker @@ -2044,7 +2105,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 416 secretary James Addison Baker @@ -2058,7 +2119,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 417 secretary James Addison Baker @@ -2072,7 +2133,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 418 secretary James Addison Baker @@ -2080,13 +2141,14 @@ 1991-07-22 Israel Jerusalem - Discussed a Middle East peace conference with Prime Minister Shamir, senior Israeli officials, and Palestinian representatives. + Discussed a Middle East peace conference with Prime Minister Shamir, senior Israeli + officials, and Palestinian representatives. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 419 secretary James Addison Baker @@ -2100,7 +2162,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 420 secretary James Addison Baker @@ -2108,13 +2170,14 @@ 1991-07-29 Mongolia Ulaanbaatar - Met with senior Mongolian officials, addressed the Mongolian Parliament, and observed wildlife in the Gobi Desert. + Met with senior Mongolian officials, addressed the Mongolian Parliament, and + observed wildlife in the Gobi Desert. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 421 secretary James Addison Baker @@ -2128,7 +2191,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 422 secretary James Addison Baker @@ -2136,13 +2199,14 @@ 1991-08-02 Israel Jerusalem - Discussed a Middle East peace conference with senior Israeli officials and Palestinian representatives. + Discussed a Middle East peace conference with senior Israeli officials and + Palestinian representatives. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 423 secretary James Addison Baker @@ -2150,13 +2214,14 @@ 1991-08-03 Jordan Amman - Discussed a Middle East peace conference with King Hussein and Foreign Minister Masri. + Discussed a Middle East peace conference with King Hussein and Foreign Minister + Masri. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 424 secretary James Addison Baker @@ -2164,13 +2229,14 @@ 1991-08-04 Morocco Rabat - Discussed a Middle East peace conference with King Hassan II and Foreign Minister Filali. + Discussed a Middle East peace conference with King Hassan II and Foreign Minister + Filali. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 425 secretary James Addison Baker @@ -2178,13 +2244,14 @@ 1991-08-04 Tunisia Tunis - Discussed a Middle East peace conference with President Ben Ali and Foreign Minister Benyahia. Returned to Morocco afterwards. + Discussed a Middle East peace conference with President Ben Ali and Foreign + Minister Benyahia. Returned to Morocco afterwards. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 426 secretary James Addison Baker @@ -2192,13 +2259,14 @@ 1991-08-05 Algeria Algiers - Discussed a Middle East peace conference with President Benjedid and Foreign Minister Ghozali. + Discussed a Middle East peace conference with President Benjedid and Foreign + Minister Ghozali. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 427 secretary James Addison Baker @@ -2212,7 +2280,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 428 secretary James Addison Baker @@ -2226,7 +2294,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 429 secretary James Addison Baker @@ -2234,13 +2302,14 @@ 1991-09-16 U.S.S.R. Moscow, St. Petersburg, Alma Ata - Met with senior officials of the Soviet Union, the Russian Republic, and Kazakhstan. Attended the CSCE Conference on the Human Dimension. + Met with senior officials of the Soviet Union, the Russian Republic, and + Kazakhstan. Attended the CSCE Conference on the Human Dimension. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 430 secretary James Addison Baker @@ -2254,7 +2323,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 431 secretary James Addison Baker @@ -2268,7 +2337,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 432 secretary James Addison Baker @@ -2282,7 +2351,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 433 secretary James Addison Baker @@ -2290,13 +2359,14 @@ 1991-09-17 Israel Jerusalem - Discussed a Middle East peace conference with senior Israeli officials and Palestinian representatives. + Discussed a Middle East peace conference with senior Israeli officials and + Palestinian representatives. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 434 secretary James Addison Baker @@ -2304,13 +2374,14 @@ 1991-09-18 Egypt Cairo - Discussed a Middle East peace conference with President Mubarak and Foreign Minister Amr Moussa. + Discussed a Middle East peace conference with President Mubarak and Foreign + Minister Amr Moussa. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 435 secretary James Addison Baker @@ -2318,13 +2389,14 @@ 1991-09-19 Syria Damascus - Discussed a Middle East peace conference with President Assad and Foreign Minister Sharaa. + Discussed a Middle East peace conference with President Assad and Foreign Minister + Sharaa. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 436 secretary James Addison Baker @@ -2338,7 +2410,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 437 secretary James Addison Baker @@ -2352,7 +2424,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 438 secretary James Addison Baker @@ -2366,7 +2438,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 439 secretary James Addison Baker @@ -2380,7 +2452,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 440 secretary James Addison Baker @@ -2394,7 +2466,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 441 secretary James Addison Baker @@ -2402,13 +2474,15 @@ 1991-10-19 Israel Jerusalem - Discussed a Middle East peace conference with senior Israeli officials and Palestinian representatives. Also met with Soviet Foreign Minister Pankin and announced a Middle East Peace Conference. + Discussed a Middle East peace conference with senior Israeli officials and + Palestinian representatives. Also met with Soviet Foreign Minister Pankin and announced + a Middle East Peace Conference. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 442 secretary James Addison Baker @@ -2416,13 +2490,14 @@ 1991-10-19 Spain Madrid - Discussed arrangements for a Middle East Peace Conference with senior Spanish officials. + Discussed arrangements for a Middle East Peace Conference with senior Spanish + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 443 secretary James Addison Baker @@ -2430,13 +2505,14 @@ 1991-10-23 France Paris - Attended the signing of the Cambodian Comprehensive Peace Accords and discussed normalization of relations with Vietnamese Foreign Minister Ngueyn. + Attended the signing of the Cambodian Comprehensive Peace Accords and discussed + normalization of relations with Vietnamese Foreign Minister Ngueyn. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 444 secretary James Addison Baker @@ -2444,13 +2520,14 @@ 1991-11-03 Spain Madrid - Accompanied President Bush to a meeting with Soviet President Gorbachev and to the opening session of the Middle East Peace Conference. + Accompanied President Bush to a meeting with Soviet President Gorbachev and to the + opening session of the Middle East Peace Conference. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 445 secretary James Addison Baker @@ -2464,7 +2541,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 446 secretary James Addison Baker @@ -2478,7 +2555,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 447 secretary James Addison Baker @@ -2492,7 +2569,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 448 secretary James Addison Baker @@ -2506,7 +2583,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 449 secretary James Addison Baker @@ -2520,7 +2597,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 450 secretary James Addison Baker @@ -2534,7 +2611,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 451 secretary James Addison Baker @@ -2548,7 +2625,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 452 secretary James Addison Baker @@ -2562,7 +2639,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 453 secretary James Addison Baker @@ -2576,7 +2653,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 454 secretary James Addison Baker @@ -2590,7 +2667,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 455 secretary James Addison Baker @@ -2598,13 +2675,14 @@ 1991-12-21 Belgium Brussels - Attended NATO Ministerial Meeting and met with Foreign Ministers of the European Community. + Attended NATO Ministerial Meeting and met with Foreign Ministers of the European + Community. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 456 secretary James Addison Baker @@ -2618,7 +2696,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 457 secretary James Addison Baker @@ -2632,7 +2710,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 458 secretary James Addison Baker @@ -2646,7 +2724,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 459 secretary James Addison Baker @@ -2660,7 +2738,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 460 secretary James Addison Baker @@ -2674,7 +2752,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 461 secretary James Addison Baker @@ -2682,13 +2760,14 @@ 1992-02-10 Germany Frankfurt - Attended ceremonies inaugurating emergency aid to the former Soviet republics. + Attended ceremonies inaugurating emergency aid to the former Soviet + republics. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 462 secretary James Addison Baker @@ -2702,7 +2781,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 463 secretary James Addison Baker @@ -2716,7 +2795,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 464 secretary James Addison Baker @@ -2724,13 +2803,14 @@ 1992-02-12 Azerbaijan Baku - Met with President Mutalibov and discussed possible establishment of diplomatic relations. + Met with President Mutalibov and discussed possible establishment of diplomatic + relations. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 465 secretary James Addison Baker @@ -2738,13 +2818,14 @@ 1992-02-12 Tajikistan Dushanbe - Met with President Nabiyev and discussed possible establishment of diplomatic relations. + Met with President Nabiyev and discussed possible establishment of diplomatic + relations. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 466 secretary James Addison Baker @@ -2758,7 +2839,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 467 secretary James Addison Baker @@ -2772,7 +2853,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 468 secretary James Addison Baker @@ -2786,7 +2867,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 469 secretary James Addison Baker @@ -2794,13 +2875,14 @@ 1992-02-18 U.S.S.R. Moscow - Discussed strategic arms reductions with President Yeltsin and Foreign Minister Kozyrev. + Discussed strategic arms reductions with President Yeltsin and Foreign Minister + Kozyrev. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 470 secretary James Addison Baker @@ -2808,13 +2890,16 @@ 1992-03-11 Belgium Brussels - Attended NATO Ministerial Meeting and met with North Atlantic Cooperation Council Foreign Ministers. Discussed peace-keeping efforts in Yugoslavia with European Community Foreign Ministers, and strategic arms reductions with Russian Foreign Minister Kozyrev. + Attended NATO Ministerial Meeting and met with North Atlantic Cooperation Council + Foreign Ministers. Discussed peace-keeping efforts in Yugoslavia with European Community + Foreign Ministers, and strategic arms reductions with Russian Foreign Minister + Kozyrev. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 471 secretary James Addison Baker @@ -2828,7 +2913,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 472 secretary James Addison Baker @@ -2836,13 +2921,14 @@ 1992-05-24 Portugal Lisbon - Attended Conference on Assistance to the New Independent States. Signed protocol making Russia, Belarus, Kazakhstan and Ukraine parties to the START Treaty. + Attended Conference on Assistance to the New Independent States. Signed protocol + making Russia, Belarus, Kazakhstan and Ukraine parties to the START Treaty. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 473 secretary James Addison Baker @@ -2856,7 +2942,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 474 secretary James Addison Baker @@ -2864,13 +2950,14 @@ 1992-06-12 United Kingdom London - Discussed strategic arms reductions with Russian Foreign Minister Kozyrev. + Discussed strategic arms reductions with Russian Foreign Minister + Kozyrev. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 475 secretary James Addison Baker @@ -2884,7 +2971,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 476 secretary James Addison Baker @@ -2892,13 +2979,14 @@ 1992-07-08 Germany Munich - Accompanied President Bush to the Economic Summit Meeting and to meetings with Russian President Yeltsin. + Accompanied President Bush to the Economic Summit Meeting and to meetings with + Russian President Yeltsin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 477 secretary James Addison Baker @@ -2912,7 +3000,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 478 secretary James Addison Baker @@ -2920,13 +3008,14 @@ 1992-07-21 Israel Jerusalem - Discussed the Middle East peace process with Prime Minister Rabin, Israeli officials, and Palestinian representatives. + Discussed the Middle East peace process with Prime Minister Rabin, Israeli + officials, and Palestinian representatives. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 479 secretary James Addison Baker @@ -2934,13 +3023,14 @@ 1992-07-21 Jordan Amman - Discussed the Middle East peace process and the Iraq crisis with King Hussein. + Discussed the Middle East peace process and the Iraq crisis with King + Hussein. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 480 secretary James Addison Baker @@ -2948,13 +3038,14 @@ 1992-07-22 Syria Damascus - Discussed the Middle East peace process and the Iraq crisis with President Assad. + Discussed the Middle East peace process and the Iraq crisis with President + Assad. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 481 secretary James Addison Baker @@ -2962,13 +3053,14 @@ 1992-07-22 Egypt Cairo - Discussed the Middle East peace process and the Iraq crisis with President Mubarak. + Discussed the Middle East peace process and the Iraq crisis with President + Mubarak. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 482 secretary James Addison Baker @@ -2976,13 +3068,14 @@ 1992-07-23 Syria Damascus - Discussed the Middle East peace process and the Iraq crisis with President Assad. + Discussed the Middle East peace process and the Iraq crisis with President + Assad. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 483 secretary James Addison Baker @@ -2990,13 +3083,14 @@ 1992-07-23 Lebanon Zahle - Discussed the Middle East peace process and the Taif Accord with President Hrawi. + Discussed the Middle East peace process and the Taif Accord with President + Hrawi. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 484 secretary James Addison Baker @@ -3004,13 +3098,14 @@ 1992-07-24 Saudi Arabia Jeddah - Discussed the Middle East peace process and the Iraq crisis with King Fahd and Foreign Minister Prince Saud. + Discussed the Middle East peace process and the Iraq crisis with King Fahd and + Foreign Minister Prince Saud. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 485 secretary James Addison Baker @@ -3024,7 +3119,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 486 secretary James Addison Baker @@ -3038,4 +3133,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/byrnes-james-francis.xml b/secretary-travels/byrnes-james-francis.xml index 7698da6..fc41496 100644 --- a/secretary-travels/byrnes-james-francis.xml +++ b/secretary-travels/byrnes-james-francis.xml @@ -1,6 +1,6 @@ - + 487 secretary James Francis Byrnes @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 488 secretary James Francis Byrnes @@ -22,13 +22,14 @@ 1945-07-25 Germany Potsdam - Accompanied President Truman to the Tripartite Conference of Berlin (Potsdam Conference). + Accompanied President Truman to the Tripartite Conference of Berlin (Potsdam + Conference). wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 489 secretary James Francis Byrnes @@ -36,13 +37,14 @@ 1945-08-02 United Kingdom Plymouth - Accompanied President Truman to a meeting with King George VI. Returned to U.S. August 7. + Accompanied President Truman to a meeting with King George VI. Returned to U.S. + August 7. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 490 secretary James Francis Byrnes @@ -56,7 +58,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 491 secretary James Francis Byrnes @@ -70,7 +72,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 492 secretary James Francis Byrnes @@ -84,7 +86,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 493 secretary James Francis Byrnes @@ -98,7 +100,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 494 secretary James Francis Byrnes @@ -106,13 +108,14 @@ 1946-07-13 France Paris - Attended second part of the Second Session of the Council of Foreign Ministers. + Attended second part of the Second Session of the Council of Foreign + Ministers. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 495 secretary James Francis Byrnes @@ -126,4 +129,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/christopher-warren-minor.xml b/secretary-travels/christopher-warren-minor.xml index 8c67f5e..4f89de5 100644 --- a/secretary-travels/christopher-warren-minor.xml +++ b/secretary-travels/christopher-warren-minor.xml @@ -1,6 +1,6 @@ - + 496 secretary Warren Minor Christopher @@ -8,13 +8,14 @@ 1993-02-19 Egypt Cairo - Discussed Middle East peace process with President Mubarak and Foreign Minister Moussa. + Discussed Middle East peace process with President Mubarak and Foreign Minister + Moussa. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 497 secretary Warren Minor Christopher @@ -28,7 +29,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 498 secretary Warren Minor Christopher @@ -42,7 +43,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 499 secretary Warren Minor Christopher @@ -56,7 +57,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 500 secretary Warren Minor Christopher @@ -70,7 +71,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 501 secretary Warren Minor Christopher @@ -84,7 +85,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 502 secretary Warren Minor Christopher @@ -98,7 +99,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 503 secretary Warren Minor Christopher @@ -106,13 +107,14 @@ 1993-02-25 Israel Jerusalem - Discussed the Middle East peace process with senior Israeli officials and Palestinian representatives. + Discussed the Middle East peace process with senior Israeli officials and + Palestinian representatives. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 504 secretary Warren Minor Christopher @@ -126,7 +128,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 505 secretary Warren Minor Christopher @@ -140,7 +142,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 506 secretary Warren Minor Christopher @@ -148,13 +150,14 @@ 1993-04-04 Canada Vancouver - Accompanied President Clinton to a summit meeting with Russian President Yeltsin. + Accompanied President Clinton to a summit meeting with Russian President + Yeltsin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 507 secretary Warren Minor Christopher @@ -162,13 +165,14 @@ 1993-04-15 Japan Tokyo - Attended a meeting of the G-7 Foreign and Finance Ministers on aid to the former Soviet Union. + Attended a meeting of the G-7 Foreign and Finance Ministers on aid to the former + Soviet Union. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 508 secretary Warren Minor Christopher @@ -176,13 +180,14 @@ 1993-05-03 United Kingdom London, Chevening - Discussed the Bosnian crisis with senior British officials and with the Foreign Ministers of Spain and Greece. + Discussed the Bosnian crisis with senior British officials and with the Foreign + Ministers of Spain and Greece. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 509 secretary Warren Minor Christopher @@ -196,7 +201,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 510 secretary Warren Minor Christopher @@ -210,7 +215,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 511 secretary Warren Minor Christopher @@ -224,7 +229,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 512 secretary Warren Minor Christopher @@ -238,7 +243,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 513 secretary Warren Minor Christopher @@ -252,7 +257,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 514 secretary Warren Minor Christopher @@ -266,7 +271,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 515 secretary Warren Minor Christopher @@ -280,7 +285,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 516 secretary Warren Minor Christopher @@ -294,7 +299,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 517 secretary Warren Minor Christopher @@ -308,7 +313,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 518 secretary Warren Minor Christopher @@ -316,13 +321,14 @@ 1993-07-10 Japan Tokyo - Accompanied President Clinton to the Economic Summit Meeting and to meetings with Russian President Yeltsin. + Accompanied President Clinton to the Economic Summit Meeting and to meetings with + Russian President Yeltsin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 519 secretary Warren Minor Christopher @@ -336,7 +342,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 520 secretary Warren Minor Christopher @@ -350,7 +356,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 521 secretary Warren Minor Christopher @@ -364,7 +370,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 522 secretary Warren Minor Christopher @@ -378,7 +384,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 523 secretary Warren Minor Christopher @@ -392,7 +398,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 524 secretary Warren Minor Christopher @@ -406,7 +412,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 525 secretary Warren Minor Christopher @@ -420,7 +426,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 526 secretary Warren Minor Christopher @@ -434,7 +440,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 527 secretary Warren Minor Christopher @@ -448,7 +454,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 528 secretary Warren Minor Christopher @@ -462,7 +468,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 529 secretary Warren Minor Christopher @@ -476,7 +482,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 530 secretary Warren Minor Christopher @@ -484,13 +490,14 @@ 1993-10-21 Hungary Budapest - Met with Foreign Minister Jeszensky and addressed the American Chamber of Commerce. + Met with Foreign Minister Jeszensky and addressed the American Chamber of + Commerce. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 531 secretary Warren Minor Christopher @@ -498,13 +505,14 @@ 1993-10-23 Russia Moscow - Met with senior Russian officials and addressed the Academy of the National Economy. + Met with senior Russian officials and addressed the Academy of the National + Economy. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 532 secretary Warren Minor Christopher @@ -512,13 +520,14 @@ 1993-10-24 Kazakhstan Almaty - Met with President Nazarbayev and signed taxation and economic assistance agreements. + Met with President Nazarbayev and signed taxation and economic assistance + agreements. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 533 secretary Warren Minor Christopher @@ -532,7 +541,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 534 secretary Warren Minor Christopher @@ -546,7 +555,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 535 secretary Warren Minor Christopher @@ -560,7 +569,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 536 secretary Warren Minor Christopher @@ -574,7 +583,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 537 secretary Warren Minor Christopher @@ -582,13 +591,14 @@ 1993-12-03 Belgium Brussels - Met with EC Foreign Ministers and attended NATO and NACC Ministerial Meetings. + Met with EC Foreign Ministers and attended NATO and NACC Ministerial + Meetings. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 538 secretary Warren Minor Christopher @@ -602,7 +612,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 539 secretary Warren Minor Christopher @@ -616,7 +626,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 540 secretary Warren Minor Christopher @@ -624,13 +634,14 @@ 1993-12-06 Jordan Amman - Discussed the Middle East peace process with senior Jordanian officials and PLO Chairman Arafat. + Discussed the Middle East peace process with senior Jordanian officials and PLO + Chairman Arafat. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 541 secretary Warren Minor Christopher @@ -638,13 +649,14 @@ 1993-12-08 Israel Jerusalem - Discussed the Middle East peace process with senior Israeli officials and Palestinian representatives. + Discussed the Middle East peace process with senior Israeli officials and + Palestinian representatives. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 542 secretary Warren Minor Christopher @@ -658,7 +670,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 543 secretary Warren Minor Christopher @@ -672,7 +684,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 544 secretary Warren Minor Christopher @@ -686,7 +698,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 545 secretary Warren Minor Christopher @@ -700,7 +712,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 546 secretary Warren Minor Christopher @@ -714,7 +726,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 547 secretary Warren Minor Christopher @@ -728,7 +740,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 548 secretary Warren Minor Christopher @@ -736,13 +748,14 @@ 1994-01-12 Czech Republic Prague - Accompanied President Clinton to meetings with the Presidents of the Czech Republic, Poland, and Hungary; and with the Prime Minister of Slovakia. + Accompanied President Clinton to meetings with the Presidents of the Czech + Republic, Poland, and Hungary; and with the Prime Minister of Slovakia. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 549 secretary Warren Minor Christopher @@ -756,7 +769,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 550 secretary Warren Minor Christopher @@ -764,13 +777,14 @@ 1994-01-15 Russia Moscow - Accompanied President Clinton to meetings with President Yeltsin and senior Russian officials. + Accompanied President Clinton to meetings with President Yeltsin and senior Russian + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 551 secretary Warren Minor Christopher @@ -784,7 +798,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 552 secretary Warren Minor Christopher @@ -798,7 +812,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 553 secretary Warren Minor Christopher @@ -806,13 +820,14 @@ 1994-01-23 Norway Oslo - Attended the funeral of Norwegian Foreign Minister Holst. Met with Israeli Foreign Minister Peres and PLO Chairman Arafat. + Attended the funeral of Norwegian Foreign Minister Holst. Met with Israeli Foreign + Minister Peres and PLO Chairman Arafat. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 554 secretary Warren Minor Christopher @@ -820,13 +835,14 @@ 1994-01-24 France Paris - Met with Chinese Foreign Minister Qian and discussed the Bosnian conflict with senior French officials. + Met with Chinese Foreign Minister Qian and discussed the Bosnian conflict with + senior French officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 555 secretary Warren Minor Christopher @@ -840,7 +856,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 556 secretary Warren Minor Christopher @@ -848,13 +864,14 @@ 1994-03-11 Japan Tokyo - Met with senior Japanese officials and attended a meeting of the International Committee on the Reconstruction of Cambodia. + Met with senior Japanese officials and attended a meeting of the International + Committee on the Reconstruction of Cambodia. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 557 secretary Warren Minor Christopher @@ -868,7 +885,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 558 secretary Warren Minor Christopher @@ -882,7 +899,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 559 secretary Warren Minor Christopher @@ -890,13 +907,14 @@ 1994-04-26 United Kingdom London - Discussed the Bosnian conflict with the Foreign Ministers of the United Kingdom and France. Also met with King Hussein of Jordan. + Discussed the Bosnian conflict with the Foreign Ministers of the United Kingdom and + France. Also met with King Hussein of Jordan. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 560 secretary Warren Minor Christopher @@ -910,7 +928,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 561 secretary Warren Minor Christopher @@ -924,7 +942,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 562 secretary Warren Minor Christopher @@ -932,13 +950,14 @@ 1994-04-28 Egypt Cairo - Met with President Mubarak, the Foreign Ministers of Egypt and Israel, and PLO Chairman Arafat. + Met with President Mubarak, the Foreign Ministers of Egypt and Israel, and PLO + Chairman Arafat. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 563 secretary Warren Minor Christopher @@ -952,7 +971,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 564 secretary Warren Minor Christopher @@ -960,13 +979,14 @@ 1994-05-01 Syria Damascus, Palmyra - Discussed the status of the Golan Heights with President Assad and Foreign Minister Sharaa. + Discussed the status of the Golan Heights with President Assad and Foreign Minister + Sharaa. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 565 secretary Warren Minor Christopher @@ -980,7 +1000,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 566 secretary Warren Minor Christopher @@ -988,13 +1008,15 @@ 1994-05-04 Egypt Cairo - Attended the signing of the agreement to implement the Israel-Palestinian Declaration of Principles, and discussed the Bosnian conflict with Russian Foreign Minister Kozyrev. + Attended the signing of the agreement to implement the Israel-Palestinian + Declaration of Principles, and discussed the Bosnian conflict with Russian Foreign + Minister Kozyrev. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 567 secretary Warren Minor Christopher @@ -1008,7 +1030,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 568 secretary Warren Minor Christopher @@ -1016,13 +1038,14 @@ 1994-05-15 Switzerland Geneva - Attended conference of European Union Foreign Ministers on the Bosnian conflict. + Attended conference of European Union Foreign Ministers on the Bosnian + conflict. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 569 secretary Warren Minor Christopher @@ -1036,7 +1059,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 570 secretary Warren Minor Christopher @@ -1044,13 +1067,14 @@ 1994-05-18 Israel Jerusalem - Discussed the future status of the Golan Heights with Prime Minister Rabin. + Discussed the future status of the Golan Heights with Prime Minister + Rabin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 571 secretary Warren Minor Christopher @@ -1064,7 +1088,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 572 secretary Warren Minor Christopher @@ -1078,7 +1102,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 573 secretary Warren Minor Christopher @@ -1092,7 +1116,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 3289 secretary Warren Minor Christopher @@ -1100,13 +1124,14 @@ 1994-06-02 Vatican City - Accompanied President Clinton to Vatican City for meetings with senior church officials. + Accompanied President Clinton to Vatican City for meetings with senior church + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 574 secretary Warren Minor Christopher @@ -1114,13 +1139,14 @@ 1994-06-04 Italy Rome, Nettuno - Accompanied President Clinton to meetings with Prime Minister Berlusconi, President Scalfaro, and senior Italian officials. + Accompanied President Clinton to meetings with Prime Minister Berlusconi, President + Scalfaro, and senior Italian officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 575 secretary Warren Minor Christopher @@ -1128,13 +1154,14 @@ 1994-06-05 United Kingdom Cambridge, London, Portsmouth - Accompanied President Clinton to meeting with Prime Minister Major and to D-Day commemorative ceremonies. + Accompanied President Clinton to meeting with Prime Minister Major and to D-Day + commemorative ceremonies. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 576 secretary Warren Minor Christopher @@ -1142,13 +1169,15 @@ 1994-06-08 France Caen, Colleville, Paris - Accompanied President Clinton to D-Day memorial ceremonies and to meetings with President Mitterrand and senior French officials. Addressed OECD ministerial meeting. + Accompanied President Clinton to D-Day memorial ceremonies and to meetings with + President Mitterrand and senior French officials. Addressed OECD ministerial + meeting. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 577 secretary Warren Minor Christopher @@ -1162,7 +1191,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 578 secretary Warren Minor Christopher @@ -1170,13 +1199,14 @@ 1994-06-22 Belgium Brussels - Attended NATO Ministerial Meeting and met with Russian Foreign Minister Kozyrev. + Attended NATO Ministerial Meeting and met with Russian Foreign Minister + Kozyrev. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 579 secretary Warren Minor Christopher @@ -1190,7 +1220,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 580 secretary Warren Minor Christopher @@ -1204,7 +1234,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 581 secretary Warren Minor Christopher @@ -1212,13 +1242,14 @@ 1994-07-06 Latvia Riga - Accompanied President Clinton to a meeting with the Presidents of the Baltic States. + Accompanied President Clinton to a meeting with the Presidents of the Baltic + States. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 582 secretary Warren Minor Christopher @@ -1232,7 +1263,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 583 secretary Warren Minor Christopher @@ -1240,13 +1271,14 @@ 1994-07-11 Italy Naples - Accompanied President Clinton to the G-7 Economic Summit and to meetings with Russian President Yeltsin. + Accompanied President Clinton to the G-7 Economic Summit and to meetings with + Russian President Yeltsin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 584 secretary Warren Minor Christopher @@ -1254,13 +1286,14 @@ 1994-07-12 Germany Bonn, Berlin - Accompanied President Clinton to meetings with Chancellor Kohl and EU President Delors. + Accompanied President Clinton to meetings with Chancellor Kohl and EU President + Delors. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 585 secretary Warren Minor Christopher @@ -1268,13 +1301,14 @@ 1994-07-19 Israel Jerusalem - Discussed the Middle East peace process with Prime Minister Rabin and Foreign Minister Peres. + Discussed the Middle East peace process with Prime Minister Rabin and Foreign + Minister Peres. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 586 secretary Warren Minor Christopher @@ -1282,13 +1316,14 @@ 1994-07-20 Syria Damascus - Discussed the Middle East peace process with President Assad and Foreign Minster Sharaa. + Discussed the Middle East peace process with President Assad and Foreign Minster + Sharaa. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 587 secretary Warren Minor Christopher @@ -1302,7 +1337,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 588 secretary Warren Minor Christopher @@ -1316,7 +1351,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 589 secretary Warren Minor Christopher @@ -1330,7 +1365,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 590 secretary Warren Minor Christopher @@ -1344,7 +1379,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 591 secretary Warren Minor Christopher @@ -1352,13 +1387,14 @@ 1994-07-30 Switzerland Geneva - Attended a meeting of Contact Group Foreign Ministers about the Bosnian conflict. + Attended a meeting of Contact Group Foreign Ministers about the Bosnian + conflict. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 592 secretary Warren Minor Christopher @@ -1366,13 +1402,14 @@ 1994-08-06 Egypt Alexandria - Discussed the Middle East Peace Process with President Mubarak and PLO Chairman Arafat. + Discussed the Middle East Peace Process with President Mubarak and PLO Chairman + Arafat. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 593 secretary Warren Minor Christopher @@ -1380,13 +1417,14 @@ 1994-08-07 Israel Jerusalem - Discussed the Middle East peace process with Prime Minister Rabin and Foreign Minister Peres. + Discussed the Middle East peace process with Prime Minister Rabin and Foreign + Minister Peres. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 594 secretary Warren Minor Christopher @@ -1394,13 +1432,14 @@ 1994-08-08 Syria Damascus - Discussed the Middle East peace process with President Assad and Foreign Minister Sharaa. + Discussed the Middle East peace process with President Assad and Foreign Minister + Sharaa. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 595 secretary Warren Minor Christopher @@ -1408,13 +1447,14 @@ 1994-08-08 Jordan Aqaba, Amman - Attended inauguration of the Jordan-Israel Border Crossing, and discussed the Middle East peace process with King Hussein. + Attended inauguration of the Jordan-Israel Border Crossing, and discussed the + Middle East peace process with King Hussein. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 596 secretary Warren Minor Christopher @@ -1422,13 +1462,14 @@ 1994-08-09 Israel Jerusalem - Discussed the Middle East peace process with Prime Minister Rabin and Foreign Minister Peres. + Discussed the Middle East peace process with Prime Minister Rabin and Foreign + Minister Peres. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 597 secretary Warren Minor Christopher @@ -1442,7 +1483,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 598 secretary Warren Minor Christopher @@ -1456,7 +1497,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 599 secretary Warren Minor Christopher @@ -1470,7 +1511,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 600 secretary Warren Minor Christopher @@ -1484,7 +1525,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 601 secretary Warren Minor Christopher @@ -1498,7 +1539,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 602 secretary Warren Minor Christopher @@ -1506,13 +1547,14 @@ 1994-10-12 Kuwait Kuwait City, Camp Doha - Met with the Foreign Ministers of the Gulf Cooperation Council and the United Kingdom. Addressed U.S. military personnel. + Met with the Foreign Ministers of the Gulf Cooperation Council and the United + Kingdom. Addressed U.S. military personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 603 secretary Warren Minor Christopher @@ -1526,7 +1568,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 604 secretary Warren Minor Christopher @@ -1540,7 +1582,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 605 secretary Warren Minor Christopher @@ -1548,13 +1590,14 @@ 1994-10-14 Egypt Cairo - Discussed the Middle East peace process with President Mubarak and PLO Chairman Arafat. + Discussed the Middle East peace process with President Mubarak and PLO Chairman + Arafat. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 606 secretary Warren Minor Christopher @@ -1562,13 +1605,14 @@ 1994-10-14 Germany Frankfurt - Commented to the press on the Middle East peace process and the Iraq-Kuwait crisis. + Commented to the press on the Middle East peace process and the Iraq-Kuwait + crisis. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 607 secretary Warren Minor Christopher @@ -1582,7 +1626,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 608 secretary Warren Minor Christopher @@ -1590,13 +1634,14 @@ 1994-10-26 Egypt Cairo - Accompanied President Clinton to meetings with President Mubarak and PLO Chairman Arafat. + Accompanied President Clinton to meetings with President Mubarak and PLO Chairman + Arafat. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 609 secretary Warren Minor Christopher @@ -1604,13 +1649,14 @@ 1994-10-27 Jordan Aqaba, Wadi Arava, Amman - Accompanied President Clinton to the signing of the Israel-Jordan peace treaty and to meetings with senior Jordanian officials. + Accompanied President Clinton to the signing of the Israel-Jordan peace treaty and + to meetings with senior Jordanian officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 610 secretary Warren Minor Christopher @@ -1624,7 +1670,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 611 secretary Warren Minor Christopher @@ -1638,7 +1684,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 612 secretary Warren Minor Christopher @@ -1652,7 +1698,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 613 secretary Warren Minor Christopher @@ -1666,7 +1712,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 614 secretary Warren Minor Christopher @@ -1680,7 +1726,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 615 secretary Warren Minor Christopher @@ -1688,13 +1734,15 @@ 1994-11-10 Korea, Republic of Seoul, Osan - Discussed the security situation on the Korean Peninsula with senior Korean officials, addressed Korean-American Friendship Society and U.S. military personnel. + Discussed the security situation on the Korean Peninsula with senior Korean + officials, addressed Korean-American Friendship Society and U.S. military + personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 616 secretary Warren Minor Christopher @@ -1708,7 +1756,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 617 secretary Warren Minor Christopher @@ -1722,7 +1770,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 618 secretary Warren Minor Christopher @@ -1736,7 +1784,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 619 secretary Warren Minor Christopher @@ -1750,7 +1798,7 @@ wicentowskijc 2017-05-31T14:35:48.889-04:00 - + 620 secretary Warren Minor Christopher @@ -1764,7 +1812,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 621 secretary Warren Minor Christopher @@ -1778,7 +1826,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 622 secretary Warren Minor Christopher @@ -1792,7 +1840,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 623 secretary Warren Minor Christopher @@ -1806,7 +1854,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 624 secretary Warren Minor Christopher @@ -1820,7 +1868,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 625 secretary Warren Minor Christopher @@ -1834,7 +1882,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 626 secretary Warren Minor Christopher @@ -1848,7 +1896,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 627 secretary Warren Minor Christopher @@ -1862,7 +1910,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 628 secretary Warren Minor Christopher @@ -1876,7 +1924,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 629 secretary Warren Minor Christopher @@ -1890,7 +1938,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 630 secretary Warren Minor Christopher @@ -1898,13 +1946,14 @@ 1995-03-12 Saudi Arabia Jeddah - Met with the Gulf Cooperation Council Foreign Ministers and discussed the situation in Iraq with King Fahd. + Met with the Gulf Cooperation Council Foreign Ministers and discussed the situation + in Iraq with King Fahd. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 631 secretary Warren Minor Christopher @@ -1918,7 +1967,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 632 secretary Warren Minor Christopher @@ -1932,7 +1981,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 633 secretary Warren Minor Christopher @@ -1946,7 +1995,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 634 secretary Warren Minor Christopher @@ -1960,7 +2009,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 635 secretary Warren Minor Christopher @@ -1974,7 +2023,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 636 secretary Warren Minor Christopher @@ -1988,7 +2037,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 637 secretary Warren Minor Christopher @@ -2002,7 +2051,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 638 secretary Warren Minor Christopher @@ -2016,7 +2065,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 639 secretary Warren Minor Christopher @@ -2024,13 +2073,14 @@ 1995-06-01 Netherlands The Hague, Noordwijk - Attended a meeting of the Contact Group Foreign Ministers and NATO and NACC Ministerial Meetings. + Attended a meeting of the Contact Group Foreign Ministers and NATO and NACC + Ministerial Meetings. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 640 secretary Warren Minor Christopher @@ -2044,7 +2094,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 641 secretary Warren Minor Christopher @@ -2058,7 +2108,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 642 secretary Warren Minor Christopher @@ -2066,13 +2116,14 @@ 1995-06-04 Haiti Montrouis - Attended an OAS ministerial meeting and the inauguration of a new Haitian police force. + Attended an OAS ministerial meeting and the inauguration of a new Haitian police + force. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 643 secretary Warren Minor Christopher @@ -2080,13 +2131,14 @@ 1995-06-09 Israel Tel Aviv, Jerusalem - Discussed the Israel-Syrian peace process with Prime Minister Rabin and Foreign Minister Peres. + Discussed the Israel-Syrian peace process with Prime Minister Rabin and Foreign + Minister Peres. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 644 secretary Warren Minor Christopher @@ -2100,7 +2152,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 645 secretary Warren Minor Christopher @@ -2114,7 +2166,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 646 secretary Warren Minor Christopher @@ -2128,7 +2180,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 647 secretary Warren Minor Christopher @@ -2142,7 +2194,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 648 secretary Warren Minor Christopher @@ -2156,7 +2208,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 649 secretary Warren Minor Christopher @@ -2170,7 +2222,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 650 secretary Warren Minor Christopher @@ -2178,13 +2230,14 @@ 1995-07-22 United Kingdom London - Discussed the Bosnian conflict with NATO and Contact Group representatives. + Discussed the Bosnian conflict with NATO and Contact Group + representatives. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 651 secretary Warren Minor Christopher @@ -2192,13 +2245,14 @@ 1995-08-03 Brunei Darussalam Bandar Seri Begawan - Met with the Foreign Ministers of China and Russia and attended ASEAN Post- Ministerial Conference. + Met with the Foreign Ministers of China and Russia and attended ASEAN Post- + Ministerial Conference. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 652 secretary Warren Minor Christopher @@ -2206,13 +2260,14 @@ 1995-08-04 Malaysia Kuala Lumpur - Discussed the Bosnian conflict with Prime Minister Mahathir; signed commercial and educational exchange agreements. + Discussed the Bosnian conflict with Prime Minister Mahathir; signed commercial and + educational exchange agreements. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 653 secretary Warren Minor Christopher @@ -2220,13 +2275,14 @@ 1995-08-05 Cambodia Phnom Penh - Met with King Sihanouk and senior Cambodian officials. Signed AID and OPIC agreements. + Met with King Sihanouk and senior Cambodian officials. Signed AID and OPIC + agreements. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 654 secretary Warren Minor Christopher @@ -2234,13 +2290,14 @@ 1995-08-07 Vietnam Hanoi - Signed agreements normalizing relations with Vietnam and opened the U.S. Embassy. + Signed agreements normalizing relations with Vietnam and opened the U.S. + Embassy. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 655 secretary Warren Minor Christopher @@ -2248,13 +2305,14 @@ 1995-10-30 Jordan Amman - Attended the opening session of the Middle East and North Africa Economic Summit. + Attended the opening session of the Middle East and North Africa Economic + Summit. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 656 secretary Warren Minor Christopher @@ -2268,7 +2326,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 657 secretary Warren Minor Christopher @@ -2282,7 +2340,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 658 secretary Warren Minor Christopher @@ -2296,7 +2354,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 659 secretary Warren Minor Christopher @@ -2310,7 +2368,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 660 secretary Warren Minor Christopher @@ -2324,7 +2382,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 661 secretary Warren Minor Christopher @@ -2338,7 +2396,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 662 secretary Warren Minor Christopher @@ -2352,7 +2410,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 663 secretary Warren Minor Christopher @@ -2366,7 +2424,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 664 secretary Warren Minor Christopher @@ -2380,7 +2438,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 665 secretary Warren Minor Christopher @@ -2394,7 +2452,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 666 secretary Warren Minor Christopher @@ -2402,13 +2460,14 @@ 1996-01-11 Israel Jerusalem - Discussed the Israel-Syrian peace process with senior Israeli officials and King Hussein of Jordan. + Discussed the Israel-Syrian peace process with senior Israeli officials and King + Hussein of Jordan. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 667 secretary Warren Minor Christopher @@ -2422,7 +2481,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 668 secretary Warren Minor Christopher @@ -2436,7 +2495,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 669 secretary Warren Minor Christopher @@ -2450,7 +2509,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 670 secretary Warren Minor Christopher @@ -2464,7 +2523,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 671 secretary Warren Minor Christopher @@ -2478,7 +2537,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 672 secretary Warren Minor Christopher @@ -2492,7 +2551,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 673 secretary Warren Minor Christopher @@ -2506,7 +2565,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 674 secretary Warren Minor Christopher @@ -2520,7 +2579,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 675 secretary Warren Minor Christopher @@ -2528,13 +2587,14 @@ 1996-02-11 Finland Helsinki - Met with Russian Foreign Minister Primakov and Ukrainian President Kuchma. + Met with Russian Foreign Minister Primakov and Ukrainian President + Kuchma. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 676 secretary Warren Minor Christopher @@ -2542,13 +2602,15 @@ 1996-02-27 El Salvador San Salvador - Address the Legislative Assembly and met with the Presidents of El Salvador, Honduras, and Costa Rica, the Prime Minister of Belize, and the Vice President of Nicaragua. + Address the Legislative Assembly and met with the Presidents of El Salvador, + Honduras, and Costa Rica, the Prime Minister of Belize, and the Vice President of + Nicaragua. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 677 secretary Warren Minor Christopher @@ -2562,7 +2624,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 678 secretary Warren Minor Christopher @@ -2570,13 +2632,14 @@ 1996-03-01 Argentina Buenos Aires - Met with President Menem and Foreign Minister Di Tella. Signed agreement on space cooperation. + Met with President Menem and Foreign Minister Di Tella. Signed agreement on space + cooperation. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 679 secretary Warren Minor Christopher @@ -2584,13 +2647,15 @@ 1996-03-03 Brazil Sao Paulo, Brasilia, Manaus - Met with President Cardoso and Foreign Minister Lampreia. Signed agreement on peaceful uses of atomic energy, visited National Institute for Amazon Research. + Met with President Cardoso and Foreign Minister Lampreia. Signed agreement on + peaceful uses of atomic energy, visited National Institute for Amazon + Research. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 680 secretary Warren Minor Christopher @@ -2604,7 +2669,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 681 secretary Warren Minor Christopher @@ -2618,7 +2683,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 682 secretary Warren Minor Christopher @@ -2626,13 +2691,14 @@ 1996-03-16 Israel Jerusalem, Tel Aviv - Accompanied President Clinton and held further discussions with Israeli officials on cooperation against terrorism. + Accompanied President Clinton and held further discussions with Israeli officials + on cooperation against terrorism. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 683 secretary Warren Minor Christopher @@ -2646,7 +2712,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 684 secretary Warren Minor Christopher @@ -2654,13 +2720,14 @@ 1996-03-18 Switzerland Geneva - Attended meeting with the Presidents of Serbia and Croatia, and the Acting President of Bosnia; and addressed the Conference on Disarmament. + Attended meeting with the Presidents of Serbia and Croatia, and the Acting + President of Bosnia; and addressed the Conference on Disarmament. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 685 secretary Warren Minor Christopher @@ -2674,7 +2741,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 686 secretary Warren Minor Christopher @@ -2688,7 +2755,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 687 secretary Warren Minor Christopher @@ -2696,13 +2763,14 @@ 1996-03-23 Russia Moscow - Met with President Yeltsin and Foreign Minister Primakov and attended a meeting of Contact Group Foreign Ministers. + Met with President Yeltsin and Foreign Minister Primakov and attended a meeting of + Contact Group Foreign Ministers. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 688 secretary Warren Minor Christopher @@ -2716,7 +2784,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 689 secretary Warren Minor Christopher @@ -2730,7 +2798,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 690 secretary Warren Minor Christopher @@ -2744,7 +2812,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 691 secretary Warren Minor Christopher @@ -2758,7 +2826,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 692 secretary Warren Minor Christopher @@ -2772,7 +2840,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 693 secretary Warren Minor Christopher @@ -2786,7 +2854,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 694 secretary Warren Minor Christopher @@ -2800,7 +2868,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 695 secretary Warren Minor Christopher @@ -2814,7 +2882,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 696 secretary Warren Minor Christopher @@ -2828,7 +2896,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 697 secretary Warren Minor Christopher @@ -2842,7 +2910,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 698 secretary Warren Minor Christopher @@ -2850,13 +2918,14 @@ 1996-04-24 Lebanon Shtoura - Met with Prime Minister Hariri and Speaker Berri; attempted to resolve the Israel-Lebanon conflict. + Met with Prime Minister Hariri and Speaker Berri; attempted to resolve the + Israel-Lebanon conflict. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 699 secretary Warren Minor Christopher @@ -2870,7 +2939,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 700 secretary Warren Minor Christopher @@ -2878,13 +2947,14 @@ 1996-04-25 Syria Damascus - Attempted to resolve the Israel-Lebanon conflict. Also met with Lebanese Prime Minister Hariri and Speaker Berri. + Attempted to resolve the Israel-Lebanon conflict. Also met with Lebanese Prime + Minister Hariri and Speaker Berri. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 701 secretary Warren Minor Christopher @@ -2898,7 +2968,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 702 secretary Warren Minor Christopher @@ -2912,7 +2982,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 703 secretary Warren Minor Christopher @@ -2926,7 +2996,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 704 secretary Warren Minor Christopher @@ -2940,7 +3010,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 705 secretary Warren Minor Christopher @@ -2948,13 +3018,14 @@ 1996-06-03 Switzerland Geneva - Discussed implementation of the Dayton Accords with the Presidents of Bosnia, Croatia, and Serbia, and with representatives of IFOR and OSCE. + Discussed implementation of the Dayton Accords with the Presidents of Bosnia, + Croatia, and Serbia, and with representatives of IFOR and OSCE. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 706 secretary Warren Minor Christopher @@ -2968,7 +3039,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 707 secretary Warren Minor Christopher @@ -2982,7 +3053,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 708 secretary Warren Minor Christopher @@ -2996,7 +3067,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 709 secretary Warren Minor Christopher @@ -3004,13 +3075,14 @@ 1996-06-26 Saudi Arabia Dhahran - Met with Foreign Minister Prince Saud and with U.S. and Saudi military personnel. + Met with Foreign Minister Prince Saud and with U.S. and Saudi military + personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 710 secretary Warren Minor Christopher @@ -3024,7 +3096,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 711 secretary Warren Minor Christopher @@ -3032,13 +3104,14 @@ 1996-07-25 Indonesia Jakarta - Ministerial Conference. Met with the Indonesian Human Rights Commission and with Russian Foreign Minister Primakov. + Ministerial Conference. Met with the Indonesian Human Rights Commission and with + Russian Foreign Minister Primakov. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 712 secretary Warren Minor Christopher @@ -3052,7 +3125,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 713 secretary Warren Minor Christopher @@ -3060,13 +3133,14 @@ 1996-08-13 Belgium Brussels - Discussed implementation of the Dayton Accords with senior NATO and OSCE officials. + Discussed implementation of the Dayton Accords with senior NATO and OSCE + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 714 secretary Warren Minor Christopher @@ -3080,7 +3154,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 715 secretary Warren Minor Christopher @@ -3088,13 +3162,14 @@ 1996-08-15 Bosnia Sarajevo - Met with President Izetbegovic and five political leaders to discuss national elections. + Met with President Izetbegovic and five political leaders to discuss national + elections. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 716 secretary Warren Minor Christopher @@ -3102,13 +3177,14 @@ 1996-09-06 United Kingdom London - Discussed the Northern Iraq and Bosnian crises with Prime Minister Major and Foreign Secretary Rifkind. + Discussed the Northern Iraq and Bosnian crises with Prime Minister Major and + Foreign Secretary Rifkind. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 717 secretary Warren Minor Christopher @@ -3116,13 +3192,14 @@ 1996-09-05 France Paris - Discussed the Northern Iraq and Bosnian crises with President Chirac and Foreign Minister de Charette. + Discussed the Northern Iraq and Bosnian crises with President Chirac and Foreign + Minister de Charette. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 718 secretary Warren Minor Christopher @@ -3136,7 +3213,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 719 secretary Warren Minor Christopher @@ -3150,7 +3227,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 720 secretary Warren Minor Christopher @@ -3164,7 +3241,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 721 secretary Warren Minor Christopher @@ -3178,7 +3255,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 722 secretary Warren Minor Christopher @@ -3192,7 +3269,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 723 secretary Warren Minor Christopher @@ -3200,13 +3277,14 @@ 1996-10-11 Ethiopia Addis Ababa - Met with Prime Minister Zenawi and discussed plans for an African crisis-response force with OAU officials. + Met with Prime Minister Zenawi and discussed plans for an African crisis-response + force with OAU officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 724 secretary Warren Minor Christopher @@ -3214,13 +3292,14 @@ 1996-10-12 Tanzania Arusha - Discussed the Burundi crisis with the Presidents of Tanzania, Kenya, and Uganda. Also met with the Chief Prosecutor of the International War Crimes Tribunal. + Discussed the Burundi crisis with the Presidents of Tanzania, Kenya, and Uganda. + Also met with the Chief Prosecutor of the International War Crimes Tribunal. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 725 secretary Warren Minor Christopher @@ -3228,13 +3307,14 @@ 1996-10-14 South Africa Cape Town, Johannesburg, Pretoria - Met with President Mandela and delivered an address at the University of the Witwatersrand. + Met with President Mandela and delivered an address at the University of the + Witwatersrand. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 726 secretary Warren Minor Christopher @@ -3248,7 +3328,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 727 secretary Warren Minor Christopher @@ -3262,7 +3342,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 728 secretary Warren Minor Christopher @@ -3270,13 +3350,14 @@ 1996-11-14 France Paris - Attended a meeting of the Steering Board of the Bosnian Peace Implementation Council. + Attended a meeting of the Steering Board of the Bosnian Peace Implementation + Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 729 secretary Warren Minor Christopher @@ -3290,7 +3371,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 730 secretary Warren Minor Christopher @@ -3304,7 +3385,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 731 secretary Warren Minor Christopher @@ -3318,7 +3399,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 732 secretary Warren Minor Christopher @@ -3332,4 +3413,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/clinton-hillary-rodham.xml b/secretary-travels/clinton-hillary-rodham.xml index f882299..841ec42 100644 --- a/secretary-travels/clinton-hillary-rodham.xml +++ b/secretary-travels/clinton-hillary-rodham.xml @@ -1,6 +1,6 @@ - + 2985 secretary Hillary Rodham Clinton @@ -14,7 +14,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 2986 secretary Hillary Rodham Clinton @@ -28,7 +28,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 2987 secretary Hillary Rodham Clinton @@ -42,7 +42,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 2988 secretary Hillary Rodham Clinton @@ -56,7 +56,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 2989 secretary Hillary Rodham Clinton @@ -64,13 +64,14 @@ 2009-03-03 Egypt Sharm el-Sheikh - Attended the International Conference in Support of the Palestinian Economy for the Reconstruction of Gaza. + Attended the International Conference in Support of the Palestinian Economy for the + Reconstruction of Gaza. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 2990 secretary Hillary Rodham Clinton @@ -78,13 +79,14 @@ 2009-03-05 Israel Tel Aviv, Jerusalem - Met with President Peres, Prime Minister Olmert, and Foreign Minister Livni. + Met with President Peres, Prime Minister Olmert, and Foreign Minister + Livni. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 2991 secretary Hillary Rodham Clinton @@ -98,7 +100,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 2992 secretary Hillary Rodham Clinton @@ -106,13 +108,14 @@ 2009-03-06 Belgium Brussels - Attended a NATO Foreign Ministers’ meeting and met with the EU and Swiss Foreign Ministers. + Attended a NATO Foreign Ministers’ meeting and met with the EU and Swiss Foreign + Ministers. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 2993 secretary Hillary Rodham Clinton @@ -126,7 +129,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 2994 secretary Hillary Rodham Clinton @@ -140,7 +143,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 2995 secretary Hillary Rodham Clinton @@ -154,7 +157,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 2996 secretary Hillary Rodham Clinton @@ -168,7 +171,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 2997 secretary Hillary Rodham Clinton @@ -182,7 +185,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 2998 secretary Hillary Rodham Clinton @@ -196,7 +199,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 2999 secretary Hillary Rodham Clinton @@ -210,7 +213,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3000 secretary Hillary Rodham Clinton @@ -224,7 +227,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3001 secretary Hillary Rodham Clinton @@ -238,7 +241,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3002 secretary Hillary Rodham Clinton @@ -252,7 +255,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3003 secretary Hillary Rodham Clinton @@ -266,7 +269,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3004 secretary Hillary Rodham Clinton @@ -274,13 +277,14 @@ 2009-04-25 Kuwait Kuwait City - Met with Foreign Minister al-Sabah and members of the Office of Military Cooperation. + Met with Foreign Minister al-Sabah and members of the Office of Military + Cooperation. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3005 secretary Hillary Rodham Clinton @@ -288,13 +292,15 @@ 2009-04-25 Iraq Baghdad - Met with President Talebani, Prime Minister al-Maliki and senior officials. Visited U.S. military personnel, a Provincial Reconstruction Team, and attended a town meeting. + Met with President Talebani, Prime Minister al-Maliki and senior officials. Visited + U.S. military personnel, a Provincial Reconstruction Team, and attended a town + meeting. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3006 secretary Hillary Rodham Clinton @@ -308,7 +314,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3007 secretary Hillary Rodham Clinton @@ -316,13 +322,14 @@ 2009-06-01 El Salvador San Salvador - Attended the inauguration of President Funes and a ministerial meeting of Pathways to Prosperity in America. + Attended the inauguration of President Funes and a ministerial meeting of Pathways + to Prosperity in America. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3008 secretary Hillary Rodham Clinton @@ -336,7 +343,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3009 secretary Hillary Rodham Clinton @@ -344,13 +351,14 @@ 2009-06-13 Canada Niagara Falls (Ontario) - Commemorated the 100th anniversary of the Canada-U.S. Boundary Waters Treaty, and met with Foreign Minister Cannon. + Commemorated the 100th anniversary of the Canada-U.S. Boundary Waters Treaty, and + met with Foreign Minister Cannon. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3010 secretary Hillary Rodham Clinton @@ -358,13 +366,14 @@ 2009-07-21 India Mumbai, New Delhi - Met with Prime Minister Singh and External Affairs Minister Krishna. Discussed a U.S.-India strategic partnership. + Met with Prime Minister Singh and External Affairs Minister Krishna. Discussed a + U.S.-India strategic partnership. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3011 secretary Hillary Rodham Clinton @@ -372,13 +381,14 @@ 2009-07-23 Thailand Bangkok, Phuket - Met with Prime Minister Abhisit and Foreign Minister Kasit. Attended the ASEAN Post-Ministerial Conference and Regional Forum in Phuket. + Met with Prime Minister Abhisit and Foreign Minister Kasit. Attended the ASEAN + Post-Ministerial Conference and Regional Forum in Phuket. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3012 secretary Hillary Rodham Clinton @@ -392,7 +402,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3013 secretary Hillary Rodham Clinton @@ -400,13 +410,14 @@ 2009-08-09 South Africa Johannesburg, Pretoria, Durban - Addressed an International Development Corporation event. Met with former Presidents Mandela and de Klerk and with President Zuma. + Addressed an International Development Corporation event. Met with former + Presidents Mandela and de Klerk and with President Zuma. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3014 secretary Hillary Rodham Clinton @@ -414,13 +425,14 @@ 2009-08-10 Angola Luanda - Met with Foreign Minister dos Anjos, addressed the National Assembly and signed a memorandum of understanding with Chevron and USAID. + Met with Foreign Minister dos Anjos, addressed the National Assembly and signed a + memorandum of understanding with Chevron and USAID. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3015 secretary Hillary Rodham Clinton @@ -428,13 +440,14 @@ 2009-08-11 Democratic Republic of the Congo (Zaire) Kinshasa, Goma - Met with Prime Minister Muzito and President Kabila. Attended a round-table on gender-based violence issues. + Met with Prime Minister Muzito and President Kabila. Attended a round-table on + gender-based violence issues. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3016 secretary Hillary Rodham Clinton @@ -448,7 +461,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3017 secretary Hillary Rodham Clinton @@ -462,7 +475,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3018 secretary Hillary Rodham Clinton @@ -476,7 +489,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3019 secretary Hillary Rodham Clinton @@ -484,13 +497,14 @@ 2009-10-10 Switzerland Zurich - Witnessed the signing of a protocol to normalize relations between Armenia and Turkey. + Witnessed the signing of a protocol to normalize relations between Armenia and + Turkey. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3020 secretary Hillary Rodham Clinton @@ -504,7 +518,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3021 secretary Hillary Rodham Clinton @@ -518,7 +532,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3022 secretary Hillary Rodham Clinton @@ -526,13 +540,15 @@ 2009-10-12 United Kingdom Belfast - Met with Northern Irish First Minister Robinson and Deputy First Minister McGuiness. Addressed the Northern Ireland Assembly and the Northern Ireland Business Working Group. + Met with Northern Irish First Minister Robinson and Deputy First Minister + McGuiness. Addressed the Northern Ireland Assembly and the Northern Ireland Business + Working Group. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3023 secretary Hillary Rodham Clinton @@ -540,13 +556,15 @@ 2009-10-14 Russia Moscow, Kazan - Met with President Medvedev and Foreign Minister Lavrov concerning arms control, nonproliferation, and counterterrorism. In Kazan, met with Tatarstan President Shaymiyev and attended a dialogue on diversity at Kazan State University. + Met with President Medvedev and Foreign Minister Lavrov concerning arms control, + nonproliferation, and counterterrorism. In Kazan, met with Tatarstan President Shaymiyev + and attended a dialogue on diversity at Kazan State University. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3024 secretary Hillary Rodham Clinton @@ -560,7 +578,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3025 secretary Hillary Rodham Clinton @@ -574,7 +592,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3026 secretary Hillary Rodham Clinton @@ -588,7 +606,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3027 secretary Hillary Rodham Clinton @@ -596,13 +614,14 @@ 2009-11-03 Morocco Marrakesh - Met with King Mohammed VI and Foreign Minister Fassi-Fihri and with the GCC+3 Foreign Ministers. Attended the 6th Forum for the Future. + Met with King Mohammed VI and Foreign Minister Fassi-Fihri and with the GCC+3 + Foreign Ministers. Attended the 6th Forum for the Future. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3028 secretary Hillary Rodham Clinton @@ -610,13 +629,14 @@ 2009-11-04 Egypt Cairo - Met with President Mubarak, Foreign Minister Aboul Gheit, and Special Envoy Mitchell. + Met with President Mubarak, Foreign Minister Aboul Gheit, and Special Envoy + Mitchell. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3029 secretary Hillary Rodham Clinton @@ -624,13 +644,14 @@ 2009-11-09 Germany Berlin - Attended ceremonies commemorating the 20th anniversary of the fall of the Berlin Wall. Met with Chancellor Merkel and Foreign Minister Westerwelle. + Attended ceremonies commemorating the 20th anniversary of the fall of the Berlin + Wall. Met with Chancellor Merkel and Foreign Minister Westerwelle. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3030 secretary Hillary Rodham Clinton @@ -644,7 +665,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3031 secretary Hillary Rodham Clinton @@ -652,13 +673,14 @@ 2009-11-13 Philippines Manila - Met with President Arroyo and Foreign Secretary Romulo. Announced new disaster relief program. + Met with President Arroyo and Foreign Secretary Romulo. Announced new disaster + relief program. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3032 secretary Hillary Rodham Clinton @@ -672,7 +694,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3033 secretary Hillary Rodham Clinton @@ -680,13 +702,14 @@ 2009-11-18 China, People’s Republic of Beijing, Shanghai - Accompanied President Obama. Dedicated the USA Pavilion at the Shanghai Expo. + Accompanied President Obama. Dedicated the USA Pavilion at the Shanghai + Expo. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3034 secretary Hillary Rodham Clinton @@ -700,7 +723,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3035 secretary Hillary Rodham Clinton @@ -708,13 +731,14 @@ 2009-12-04 Belgium Brussels - Attended a NATO Foreign Minister’s Meeting, a meeting of the NATO-Russia Council, and met with representatives of non-NATO ISAF-contributing countries. + Attended a NATO Foreign Minister’s Meeting, a meeting of the NATO-Russia Council, + and met with representatives of non-NATO ISAF-contributing countries. wicentowskijc 2010-10-20T18:03:04.023-04:00 wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3036 secretary Hillary Rodham Clinton @@ -728,7 +752,7 @@ wicentowskijc 2010-10-20T18:03:04.023-04:00 - + 3902 secretary Hillary Rodham Clinton @@ -742,7 +766,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3903 secretary Hillary Rodham Clinton @@ -756,7 +780,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3904 secretary Hillary Rodham Clinton @@ -764,13 +788,14 @@ 2010-01-29 United Kingdom London - Attended a ministerial meeting on Yemen and the International Conference on Afghanistan. + Attended a ministerial meeting on Yemen and the International Conference on + Afghanistan. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3905 secretary Hillary Rodham Clinton @@ -778,13 +803,14 @@ 2010-01-29 France Paris - Met with President Sarkozy and Foreign Minister Kouchner. Delivered an address on European security. + Met with President Sarkozy and Foreign Minister Kouchner. Delivered an address on + European security. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3906 secretary Hillary Rodham Clinton @@ -792,13 +818,14 @@ 2010-02-15 Qatar Doha - Met with Amir Sheikh Hamad bin Khalifa al-Thani and Foreign Minister Hamad bin Jassin al-Thani. Addressed the U.S.-Islamic World Forum. + Met with Amir Sheikh Hamad bin Khalifa al-Thani and Foreign Minister Hamad bin + Jassin al-Thani. Addressed the U.S.-Islamic World Forum. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3907 secretary Hillary Rodham Clinton @@ -806,13 +833,15 @@ 2010-02-16 Saudi Arabia Riyadh, Jeddah - Met with King Abdullah and Foreign Minister Prince Saud. Visited the Organization of the Islamic Conference headquarters and made a speech at the Dar Al-Hekma College in Jeddah on February 16. + Met with King Abdullah and Foreign Minister Prince Saud. Visited the Organization + of the Islamic Conference headquarters and made a speech at the Dar Al-Hekma College in + Jeddah on February 16. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3908 secretary Hillary Rodham Clinton @@ -826,7 +855,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3909 secretary Hillary Rodham Clinton @@ -840,7 +869,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3910 secretary Hillary Rodham Clinton @@ -848,13 +877,14 @@ 2010-03-02 Chile Santiago - Met with President Bachelet and President-elect Pinera. Discussed disaster relief. + Met with President Bachelet and President-elect Pinera. Discussed disaster + relief. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3911 secretary Hillary Rodham Clinton @@ -862,13 +892,14 @@ 2010-03-03 Brazil Brasilia, Sao Paulo - Met with President Lula da Silva and Foreign Minister Amorim. Held a Townterview at Zumbi dos Palmares University in Sao Paulo. + Met with President Lula da Silva and Foreign Minister Amorim. Held a Townterview at + Zumbi dos Palmares University in Sao Paulo. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3056 secretary Hillary Rodham Clinton @@ -876,13 +907,14 @@ 2010-03-05 Costa Rica San Jose - Addressed the Pathways to Prosperity in the Americas Ministerial Meeting and met with President Arias and President-elect Chinchilla. + Addressed the Pathways to Prosperity in the Americas Ministerial Meeting and met + with President Arias and President-elect Chinchilla. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3057 secretary Hillary Rodham Clinton @@ -890,13 +922,14 @@ 2010-03-05 Guatemala Guatemala City - Met with President Colom and with leaders of the Central American countries and the Dominican Republic. + Met with President Colom and with leaders of the Central American countries and the + Dominican Republic. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3058 secretary Hillary Rodham Clinton @@ -910,7 +943,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3059 secretary Hillary Rodham Clinton @@ -918,13 +951,14 @@ 2010-03-23 Mexico Mexico City - Attended a U.S.-Mexico High Level Consultative Group meeting and met with President Calderon and Foreign Secretary Espinosa. + Attended a U.S.-Mexico High Level Consultative Group meeting and met with President + Calderon and Foreign Secretary Espinosa. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3060 secretary Hillary Rodham Clinton @@ -932,13 +966,14 @@ 2010-03-30 Canada Ottawa, Gatineau - Attended a meeting of the Foreign Ministers of the Arctic Coastal States and a meeting of the G-8 Foreign Ministers. + Attended a meeting of the Foreign Ministers of the Arctic Coastal States and a + meeting of the G-8 Foreign Ministers. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3061 secretary Hillary Rodham Clinton @@ -946,13 +981,14 @@ 2010-04-09 Czech Republic Prague - Accompanied President Obama to the signing of a Strategic Arms Reduction Treaty with Russia. + Accompanied President Obama to the signing of a Strategic Arms Reduction Treaty + with Russia. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3062 secretary Hillary Rodham Clinton @@ -960,13 +996,14 @@ 2010-04-23 Estonia Tallinn - Attended a NATO Informal Ministerial Meeting. Met with President Ilves and Foreign Minister Paet. + Attended a NATO Informal Ministerial Meeting. Met with President Ilves and Foreign + Minister Paet. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3063 secretary Hillary Rodham Clinton @@ -980,7 +1017,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3064 secretary Hillary Rodham Clinton @@ -988,13 +1025,15 @@ 2010-05-26 China, People’s Republic of Shanghai, Beijing - Visited the Shanghai 2010 Expo and attended a dinner for sponsors of the USA Pavilion. In Beijing, attended the second meeting of the U.S.-China Strategic and Economic Dialogue. + Visited the Shanghai 2010 Expo and attended a dinner for sponsors of the USA + Pavilion. In Beijing, attended the second meeting of the U.S.-China Strategic and + Economic Dialogue. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3065 secretary Hillary Rodham Clinton @@ -1008,7 +1047,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3066 secretary Hillary Rodham Clinton @@ -1016,13 +1055,14 @@ 2010-06-08 Peru Lima - Attended a meeting of the General Assembly of the Organization of American States. + Attended a meeting of the General Assembly of the Organization of American + States. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3067 secretary Hillary Rodham Clinton @@ -1036,7 +1076,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3068 secretary Hillary Rodham Clinton @@ -1050,7 +1090,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3069 secretary Hillary Rodham Clinton @@ -1058,13 +1098,14 @@ 2010-06-10 Barbados Bridgetown - Attended a meeting of the CARICOM Foreign Ministers and announced the Caribbean Basin Security Initiative. + Attended a meeting of the CARICOM Foreign Ministers and announced the Caribbean + Basin Security Initiative. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3070 secretary Hillary Rodham Clinton @@ -1072,13 +1113,14 @@ 2010-07-02 Ukraine Kyiv - Met with President Yanukovych and Foreign Minister Hryshchenko. Attended the second meeting of the U.S.-Ukraine Strategic Partnership. + Met with President Yanukovych and Foreign Minister Hryshchenko. Attended the second + meeting of the U.S.-Ukraine Strategic Partnership. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3071 secretary Hillary Rodham Clinton @@ -1086,13 +1128,15 @@ 2010-07-03 Poland Krakow - Met with Foreign Minister Sikorski. Commemorated the 10th anniversary of the founding of the Community of Democracies. Signed a ballistic missile defense agreement. + Met with Foreign Minister Sikorski. Commemorated the 10th anniversary of the + founding of the Community of Democracies. Signed a ballistic missile defense + agreement. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3072 secretary Hillary Rodham Clinton @@ -1106,7 +1150,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3073 secretary Hillary Rodham Clinton @@ -1114,13 +1158,14 @@ 2010-07-05 Armenia Yerevan - Met with President Sargsian and Foreign Minister Nalbandian and with civic leaders. + Met with President Sargsian and Foreign Minister Nalbandian and with civic + leaders. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3074 secretary Hillary Rodham Clinton @@ -1128,13 +1173,14 @@ 2010-07-05 Georgia Tbilisi - Met with President Saakashvili, Foreign Minister Vashadze, and political and civil leaders. + Met with President Saakashvili, Foreign Minister Vashadze, and political and civil + leaders. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3075 secretary Hillary Rodham Clinton @@ -1142,13 +1188,15 @@ 2010-07-19 Pakistan Islamabad - Met with President Zardari, Prime Minister Gillani and Foreign Minister Qureshi. Attended a Strategic Dialogue meeting and announced a series of aid agreements. Promoted a trade agreement between Pakistan and Afghanistan. + Met with President Zardari, Prime Minister Gillani and Foreign Minister Qureshi. + Attended a Strategic Dialogue meeting and announced a series of aid agreements. Promoted + a trade agreement between Pakistan and Afghanistan. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3076 secretary Hillary Rodham Clinton @@ -1156,13 +1204,14 @@ 2010-07-20 Afghanistan Kabul - Met with President Karzai and attended an international conference on the future of Afghanistan. + Met with President Karzai and attended an international conference on the future of + Afghanistan. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3077 secretary Hillary Rodham Clinton @@ -1170,13 +1219,15 @@ 2010-07-21 Korea, Republic of Seoul, Panmunjon - Commemorated the 60th anniversary of the Korean War. Visited the DMZ. With Secretary of Defense Gates, attended a 2+2 meeting with South Korea’s Foreign Minister and Minister of National Defense and with President Lee Myung-bak. + Commemorated the 60th anniversary of the Korean War. Visited the DMZ. With + Secretary of Defense Gates, attended a 2+2 meeting with South Korea’s Foreign Minister + and Minister of National Defense and with President Lee Myung-bak. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3078 secretary Hillary Rodham Clinton @@ -1184,13 +1235,14 @@ 2010-07-23 Vietnam Hanoi - Attended the ASEAN Post-Ministerial Conference and Regional Forum Ministerial. Discussed the Lower Mekong Initiative. + Attended the ASEAN Post-Ministerial Conference and Regional Forum Ministerial. + Discussed the Lower Mekong Initiative. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3079 secretary Hillary Rodham Clinton @@ -1204,7 +1256,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3080 secretary Hillary Rodham Clinton @@ -1212,13 +1264,14 @@ 2010-09-16 Israel Jerusalem - Met with President Peres and participated in Israeli-Palestinian negotiations. + Met with President Peres and participated in Israeli-Palestinian + negotiations. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3081 secretary Hillary Rodham Clinton @@ -1232,7 +1285,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3082 secretary Hillary Rodham Clinton @@ -1246,7 +1299,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3083 secretary Hillary Rodham Clinton @@ -1254,13 +1307,14 @@ 2010-10-12 Bosnia-Herzegovina Sarajevo - Dedicated new embassy compound, met with senior officials and with civil society representatives. + Dedicated new embassy compound, met with senior officials and with civil society + representatives. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3084 secretary Hillary Rodham Clinton @@ -1274,7 +1328,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3085 secretary Hillary Rodham Clinton @@ -1288,7 +1342,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3086 secretary Hillary Rodham Clinton @@ -1296,13 +1350,14 @@ 2010-10-14 Belgium Brussels - Attended a NATO Ministerial meeting and met with the European Council President and the High Representative for Foreign Affairs. + Attended a NATO Ministerial meeting and met with the European Council President and + the High Representative for Foreign Affairs. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3087 secretary Hillary Rodham Clinton @@ -1316,7 +1371,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3088 secretary Hillary Rodham Clinton @@ -1330,7 +1385,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3089 secretary Hillary Rodham Clinton @@ -1344,7 +1399,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3090 secretary Hillary Rodham Clinton @@ -1358,7 +1413,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3091 secretary Hillary Rodham Clinton @@ -1366,13 +1421,14 @@ 2010-11-03 Papua New Guinea Port Moresby - Met with Prime Minister Somare and visited a mangrove reforestation project. + Met with Prime Minister Somare and visited a mangrove reforestation + project. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3092 secretary Hillary Rodham Clinton @@ -1380,13 +1436,14 @@ 2010-11-05 New Zealand Wellington, Christchurch - Met with Prime Minister Key and Foreign Minister McCully. Visited the U.S. Antarctic Center. + Met with Prime Minister Key and Foreign Minister McCully. Visited the U.S. + Antarctic Center. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3093 secretary Hillary Rodham Clinton @@ -1394,13 +1451,14 @@ 2010-11-07 Australia Melbourne - Attended the Australia-United States Ministerial Consultation. Met with the Prime Minister Gillard and Foreign Minister Rudd. + Attended the Australia-United States Ministerial Consultation. Met with the Prime + Minister Gillard and Foreign Minister Rudd. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3094 secretary Hillary Rodham Clinton @@ -1408,13 +1466,14 @@ 2010-11-20 Portugal Lisbon - Attended the NATO and U.S.-European Union Summits, the NATO-Russia Summit, and the International Security Assistance Force Summit. + Attended the NATO and U.S.-European Union Summits, the NATO-Russia Summit, and the + International Security Assistance Force Summit. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3095 secretary Hillary Rodham Clinton @@ -1422,13 +1481,14 @@ 2010-12-02 Kazakhstan Astana - Led the U.S. delegation to the OSCE. Met with President Nazarbayev and Foreign Minister Saudabayev. + Led the U.S. delegation to the OSCE. Met with President Nazarbayev and Foreign + Minister Saudabayev. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3096 secretary Hillary Rodham Clinton @@ -1436,13 +1496,14 @@ 2010-12-02 Kyrgyz Republic Bishkek - Met with President Otunbayeva and addressed U.S. military personnel at the Manas Transit Center. + Met with President Otunbayeva and addressed U.S. military personnel at the Manas + Transit Center. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3097 secretary Hillary Rodham Clinton @@ -1456,7 +1517,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3098 secretary Hillary Rodham Clinton @@ -1464,13 +1525,14 @@ 2010-12-04 Bahrain Manama - Met with Foreign Minister al-Khalifa. Delivered the keynote address at the Manama Dialogue 2010. + Met with Foreign Minister al-Khalifa. Delivered the keynote address at the Manama + Dialogue 2010. wicentowskijc 2011-03-18T15:19:12.242-04:00 wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3099 secretary Hillary Rodham Clinton @@ -1484,7 +1546,7 @@ wicentowskijc 2011-03-18T15:19:12.242-04:00 - + 3912 secretary Hillary Rodham Clinton @@ -1498,7 +1560,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3150 secretary Hillary Rodham Clinton @@ -1512,7 +1574,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3151 secretary Hillary Rodham Clinton @@ -1526,7 +1588,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3152 secretary Hillary Rodham Clinton @@ -1540,7 +1602,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3153 secretary Hillary Rodham Clinton @@ -1548,13 +1610,14 @@ 2011-01-13 Qatar Doha - Met with Prime Minister al-Thani. Addressed the Seventh Forum for the Future. + Met with Prime Minister al-Thani. Addressed the Seventh Forum for the + Future. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3154 secretary Hillary Rodham Clinton @@ -1568,7 +1631,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3155 secretary Hillary Rodham Clinton @@ -1582,7 +1645,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3156 secretary Hillary Rodham Clinton @@ -1590,13 +1653,14 @@ 2011-02-06 Germany Munich - Attended the Munich Security Conference and exchanged ratifications of the new START Treaty with Russian Foreign Minister Lavrov. + Attended the Munich Security Conference and exchanged ratifications of the new + START Treaty with Russian Foreign Minister Lavrov. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3157 secretary Hillary Rodham Clinton @@ -1604,13 +1668,14 @@ 2011-02-28 Switzerland Geneva - Discussed the crisis in Libya and addressed the Conference on Disarmament and the UN Human Rights Council. + Discussed the crisis in Libya and addressed the Conference on Disarmament and the + UN Human Rights Council. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3158 secretary Hillary Rodham Clinton @@ -1624,7 +1689,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3159 secretary Hillary Rodham Clinton @@ -1632,13 +1697,14 @@ 2011-03-17 Egypt Cairo - Met with Prime Minister Sharaf, Foreign Minister al-Araby, and civic leaders. + Met with Prime Minister Sharaf, Foreign Minister al-Araby, and civic + leaders. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3160 secretary Hillary Rodham Clinton @@ -1652,7 +1718,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3161 secretary Hillary Rodham Clinton @@ -1666,7 +1732,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3162 secretary Hillary Rodham Clinton @@ -1680,7 +1746,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3163 secretary Hillary Rodham Clinton @@ -1688,13 +1754,15 @@ 2011-04-15 Germany Berlin - Attended a NATO Foreign Ministers’ Meeting and meetings of the NATO-Georgia and NATO Ukraine Commisions and the NATO-Russia Council. Attended a memorial Service for Ambassador Holbrooke and received the Rathenau Prize. + Attended a NATO Foreign Ministers’ Meeting and meetings of the NATO-Georgia and + NATO Ukraine Commisions and the NATO-Russia Council. Attended a memorial Service for + Ambassador Holbrooke and received the Rathenau Prize. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3164 secretary Hillary Rodham Clinton @@ -1708,7 +1776,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3165 secretary Hillary Rodham Clinton @@ -1722,7 +1790,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3166 secretary Hillary Rodham Clinton @@ -1736,7 +1804,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3167 secretary Hillary Rodham Clinton @@ -1744,13 +1812,14 @@ 2011-05-12 Denmark (Greenland) Nuuk - Attended the Seventh Ministerial Meeting of the Arctic Council. Signed Arctic Search and Rescue Agreement. + Attended the Seventh Ministerial Meeting of the Arctic Council. Signed Arctic + Search and Rescue Agreement. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3168 secretary Hillary Rodham Clinton @@ -1764,7 +1833,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3169 secretary Hillary Rodham Clinton @@ -1772,13 +1841,14 @@ 2011-05-26 France Paris - Attended the 5oth Anniversary OECD Ministerial Meeting. Inaugurated UNESCO’s Global Partnership for Girls’ and Women’s Education. + Attended the 5oth Anniversary OECD Ministerial Meeting. Inaugurated UNESCO’s Global + Partnership for Girls’ and Women’s Education. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3170 secretary Hillary Rodham Clinton @@ -1792,7 +1862,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3171 secretary Hillary Rodham Clinton @@ -1806,7 +1876,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3172 secretary Hillary Rodham Clinton @@ -1814,13 +1884,14 @@ 2011-06-11 Zambia Lusaka - Attended a meeting of the African Growth and Opportunity Act Ministerial Forum. Met with President Banda. + Attended a meeting of the African Growth and Opportunity Act Ministerial Forum. Met + with President Banda. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3173 secretary Hillary Rodham Clinton @@ -1828,13 +1899,14 @@ 2011-06-13 Tanzania Dar es Salaam - Attended a meeting on nutrition and the 1,000 Days Initiative. Met with President Kikwete. + Attended a meeting on nutrition and the 1,000 Days Initiative. Met with President + Kikwete. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3174 secretary Hillary Rodham Clinton @@ -1842,13 +1914,14 @@ 2011-06-14 Ethiopia Addis Ababa - Addressed the African Union Assembly. Met with Chairperson Ping and Ethiopian Prime Minister Zenawi. + Addressed the African Union Assembly. Met with Chairperson Ping and Ethiopian Prime + Minister Zenawi. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3175 secretary Hillary Rodham Clinton @@ -1856,13 +1929,14 @@ 2011-06-22 Guatemala Guatemala City - Attended the Conference of Support for the Central American Security Strategy. + Attended the Conference of Support for the Central American Security + Strategy. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3176 secretary Hillary Rodham Clinton @@ -1876,7 +1950,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3177 secretary Hillary Rodham Clinton @@ -1884,13 +1958,14 @@ 2011-06-30 Hungary Budapest - Dedicated the Lantos Institute. Met with Prime Minister Orban and Foreign Minister Martonyi. + Dedicated the Lantos Institute. Met with Prime Minister Orban and Foreign Minister + Martonyi. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3178 secretary Hillary Rodham Clinton @@ -1898,13 +1973,14 @@ 2011-07-01 Lithuania Vilnius - Attended the 6th Ministerial meeting of the Community of Democracies. Met with President Grybauskaite and Prime Minister Kubilius. + Attended the 6th Ministerial meeting of the Community of Democracies. Met with + President Grybauskaite and Prime Minister Kubilius. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3179 secretary Hillary Rodham Clinton @@ -1918,7 +1994,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3180 secretary Hillary Rodham Clinton @@ -1926,13 +2002,15 @@ 2011-07-17 Turkey Istanbul - Attended a Libya Contact Group meeting. Met with President Gul, Prime Minister Erdogan, and Foreign Minister Davutoglu. Attended a meeting of the Organization of the Islamic Conference on combating religious intolerance. + Attended a Libya Contact Group meeting. Met with President Gul, Prime Minister + Erdogan, and Foreign Minister Davutoglu. Attended a meeting of the Organization of the + Islamic Conference on combating religious intolerance. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3181 secretary Hillary Rodham Clinton @@ -1940,13 +2018,15 @@ 2011-07-18 Greece Athens - Met with President Papoulios, Prime Minister Panandreou, and Foreign Minister Lambrinidis. Signed a memorandum of understanding to preserve Greece’s cultural heritage. + Met with President Papoulios, Prime Minister Panandreou, and Foreign Minister + Lambrinidis. Signed a memorandum of understanding to preserve Greece’s cultural + heritage. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3182 secretary Hillary Rodham Clinton @@ -1954,13 +2034,15 @@ 2011-07-25 Indonesia Bali - Attended the ASEAN Regional Forum and the U.S.-Lower Mekong Ministerial meetings, the Second U.S.-Indonesia Joint Committee meeting, and the U.S.-Japan-Republic of Korea Trilateral meeting. + Attended the ASEAN Regional Forum and the U.S.-Lower Mekong Ministerial meetings, + the Second U.S.-Indonesia Joint Committee meeting, and the U.S.-Japan-Republic of Korea + Trilateral meeting. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3183 secretary Hillary Rodham Clinton @@ -1968,13 +2050,14 @@ 2011-07-25 China, People’s Republic of Hong Kong, Shenzhen - Met with the Hong Kong Executive and Legislative Council, and with State Councilor Dai Bingguo in Shenzhen. + Met with the Hong Kong Executive and Legislative Council, and with State Councilor + Dai Bingguo in Shenzhen. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3184 secretary Hillary Rodham Clinton @@ -1988,7 +2071,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3185 secretary Hillary Rodham Clinton @@ -2002,7 +2085,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3186 secretary Hillary Rodham Clinton @@ -2010,13 +2093,14 @@ 2011-10-18 Libya Tripoli - Met with Transitional National Council President Jalil and Prime Minister Jabril. + Met with Transitional National Council President Jalil and Prime Minister + Jabril. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3187 secretary Hillary Rodham Clinton @@ -2030,7 +2114,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3188 secretary Hillary Rodham Clinton @@ -2044,7 +2128,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3189 secretary Hillary Rodham Clinton @@ -2052,13 +2136,14 @@ 2011-10-21 Pakistan Islamabad - Met with Prime Minister Gilani, Foreign Minister Khar, and President Zardari. + Met with Prime Minister Gilani, Foreign Minister Khar, and President + Zardari. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3190 secretary Hillary Rodham Clinton @@ -2066,13 +2151,14 @@ 2011-10-22 Tajikistan Dushanbe - Met with President Rahmon and Foreign Minister Zarifi. Addressed civil society representatives. + Met with President Rahmon and Foreign Minister Zarifi. Addressed civil society + representatives. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3191 secretary Hillary Rodham Clinton @@ -2086,7 +2172,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3192 secretary Hillary Rodham Clinton @@ -2094,13 +2180,14 @@ 2011-11-16 Philippines Manila - Signed the Manila Declaration and a Partnership for Growth agreement. Received the Order of Lakandula. + Signed the Manila Declaration and a Partnership for Growth agreement. Received the + Order of Lakandula. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3193 secretary Hillary Rodham Clinton @@ -2108,13 +2195,14 @@ 2011-11-17 Thailand Bangkok - Met with Prime Minister Yingluck Shinawatra. Announced flood recovery assistance. + Met with Prime Minister Yingluck Shinawatra. Announced flood recovery + assistance. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3194 secretary Hillary Rodham Clinton @@ -2122,13 +2210,14 @@ 2011-11-19 Indonesia Bali - Attended the East Asia Summit and the U.S.-ASEAN Leaders Meeting. Addressed the Millenium Challenge Corporation signing ceremony. + Attended the East Asia Summit and the U.S.-ASEAN Leaders Meeting. Addressed the + Millenium Challenge Corporation signing ceremony. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3195 secretary Hillary Rodham Clinton @@ -2136,13 +2225,14 @@ 2011-11-30 Korea, Republic of Busan - Attended the Fourth High-Level Forum on Aid Effectiveness and the Partnership for Growth Meeting. + Attended the Fourth High-Level Forum on Aid Effectiveness and the Partnership for + Growth Meeting. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3196 secretary Hillary Rodham Clinton @@ -2150,13 +2240,14 @@ 2011-12-02 Burma Nay Pyi Taw, Rangoon - Met with President Thein Sein, Foreign Minister Lwin, Aung San Suu Kyi, and civic and minority representatives. + Met with President Thein Sein, Foreign Minister Lwin, Aung San Suu Kyi, and civic + and minority representatives. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3197 secretary Hillary Rodham Clinton @@ -2170,7 +2261,7 @@ wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3198 secretary Hillary Rodham Clinton @@ -2178,13 +2269,14 @@ 2011-12-06 Lithuania Vilnius - Attended an OSCE Ministerial Meeting. Met with members of Belarus civil society. + Attended an OSCE Ministerial Meeting. Met with members of Belarus civil + society. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3199 secretary Hillary Rodham Clinton @@ -2192,13 +2284,15 @@ 2011-12-07 Switzerland Geneva - Commemorated International Human Rights Day and the anniversaries of the Refugee and Statelessness Conventions. Met with members of the Syrian National Council. Addressed the 7th Biological and Toxin Weapons Review Conference. + Commemorated International Human Rights Day and the anniversaries of the Refugee + and Statelessness Conventions. Met with members of the Syrian National Council. + Addressed the 7th Biological and Toxin Weapons Review Conference. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3200 secretary Hillary Rodham Clinton @@ -2206,13 +2300,14 @@ 2011-12-08 Belgium Brussels - Attended the NATO Ministerial Meeting and a meeting of the NATO-Russia Council. Signed the U.S.-Slovak Joint Action Plan to Combat Nuclear Smuggling. + Attended the NATO Ministerial Meeting and a meeting of the NATO-Russia Council. + Signed the U.S.-Slovak Joint Action Plan to Combat Nuclear Smuggling. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3201 secretary Hillary Rodham Clinton @@ -2220,13 +2315,14 @@ 2011-12-08 Netherlands The Hague - Met with Foreign Minister Rosenthal and addressed the Conference on Internet Freedom. + Met with Foreign Minister Rosenthal and addressed the Conference on Internet + Freedom. wicentowskijc 2012-04-11T16:59:41.331-04:00 wicentowskijc 2012-04-11T16:59:41.331-04:00 - + 3408 secretary Hillary Rodham Clinton @@ -2240,7 +2336,7 @@ marrsaw 2015-03-23T16:59:41.331-04:00 - + 3210 secretary Hillary Rodham Clinton @@ -2254,7 +2350,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3211 secretary Hillary Rodham Clinton @@ -2262,13 +2358,14 @@ 2012-01-17 Liberia Monrovia - Attended the inauguration of President Ellen Johnson Sirleaf; dedicated a new U.S. Embassy compound. + Attended the inauguration of President Ellen Johnson Sirleaf; dedicated a new U.S. + Embassy compound. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3212 secretary Hillary Rodham Clinton @@ -2276,13 +2373,14 @@ 2012-01-17 Cote d'Ivoire Abidjan - Met with President Alassane Ouattara and Foreign Minister Daniel Kablan Duncan. Addressed the Center for Research and Action for Peace. + Met with President Alassane Ouattara and Foreign Minister Daniel Kablan Duncan. + Addressed the Center for Research and Action for Peace. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3213 secretary Hillary Rodham Clinton @@ -2296,7 +2394,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3214 secretary Hillary Rodham Clinton @@ -2310,7 +2408,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3215 secretary Hillary Rodham Clinton @@ -2324,7 +2422,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3216 secretary Hillary Rodham Clinton @@ -2332,13 +2430,14 @@ 2012-02-05 Bulgaria Sofia - Met with President Rosen Plevneliev, senior officials and young Roma professionals. + Met with President Rosen Plevneliev, senior officials and young Roma + professionals. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3217 secretary Hillary Rodham Clinton @@ -2346,13 +2445,14 @@ 2012-02-20 Mexico Los Cabos - Attended a G-20 Ministerial Meeting. Signed U.S.-Mexico Transboundary Agreement. + Attended a G-20 Ministerial Meeting. Signed U.S.-Mexico Transboundary + Agreement. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3218 secretary Hillary Rodham Clinton @@ -2366,7 +2466,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3219 secretary Hillary Rodham Clinton @@ -2374,13 +2474,14 @@ 2012-02-25 Tunisia Tunis - Attended the “Friends of Syria” meeting. Met with President Moncef Marzouki and Prime Minister Hamadi Jebali. Held a townhall meeting. + Attended the “Friends of Syria” meeting. Met with President Moncef Marzouki and + Prime Minister Hamadi Jebali. Held a townhall meeting. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3220 secretary Hillary Rodham Clinton @@ -2388,13 +2489,14 @@ 2012-02-26 Algeria Algiers - Met with President Abdelaziz Bouteflika and held a civil society roundtable. + Met with President Abdelaziz Bouteflika and held a civil society + roundtable. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3221 secretary Hillary Rodham Clinton @@ -2402,13 +2504,14 @@ 2012-02-26 Morocco Rabat - Met with Royal Counselor Fahri Fihri and Foreign Minister Saad Eddine al-Othmani. Hosted the ground-breaking ceremony for a new Embassy. + Met with Royal Counselor Fahri Fihri and Foreign Minister Saad Eddine al-Othmani. + Hosted the ground-breaking ceremony for a new Embassy. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3222 secretary Hillary Rodham Clinton @@ -2416,13 +2519,15 @@ 2012-03-31 Saudi Arabia Riyadh - Met with King Abdullah and Foreign Minister Prince Saud. Attended the First Ministerial Meeting of the Gulf Cooperation Council-U.S. Strategic Cooperation Forum. + Met with King Abdullah and Foreign Minister Prince Saud. Attended the First + Ministerial Meeting of the Gulf Cooperation Council-U.S. Strategic Cooperation + Forum. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3223 secretary Hillary Rodham Clinton @@ -2430,13 +2535,15 @@ 2012-04-01 Turkey Istanbul - Attended the second meeting of the “Friends of the Syrian People.” Met with Prime Minister Tayyip Erdogan, Foreign Minister Ahmed Davutoglu, Arab League Secretary-General Nabil al-Araby, and the Syrian National Council. + Attended the second meeting of the “Friends of the Syrian People.” Met with Prime + Minister Tayyip Erdogan, Foreign Minister Ahmed Davutoglu, Arab League Secretary-General + Nabil al-Araby, and the Syrian National Council. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3224 secretary Hillary Rodham Clinton @@ -2450,7 +2557,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3225 secretary Hillary Rodham Clinton @@ -2458,13 +2565,14 @@ 2012-04-18 Brazil Brasilia - Attended the 3rd U.S.-Brazil Global Partnership Dialogue. Addressed the First Annual meeting of the Open Government Partnership. + Attended the 3rd U.S.-Brazil Global Partnership Dialogue. Addressed the First + Annual meeting of the Open Government Partnership. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3226 secretary Hillary Rodham Clinton @@ -2472,13 +2580,14 @@ 2012-04-19 Belgium Brussels - Attended a joint meeting of NATO Foreign and Defense Ministers, and a meeting of the NATO-Russia Council. + Attended a joint meeting of NATO Foreign and Defense Ministers, and a meeting of + the NATO-Russia Council. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3227 secretary Hillary Rodham Clinton @@ -2492,7 +2601,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3228 secretary Hillary Rodham Clinton @@ -2500,13 +2609,14 @@ 2012-05-05 China, People’s Republic of Beijing - Attended the 4th joint meeting of the U.S.-China Economic and Strategic Dialogue and the 3rd U.S.-China High Level Consultation on People-to-People Exchange. + Attended the 4th joint meeting of the U.S.-China Economic and Strategic Dialogue + and the 3rd U.S.-China High Level Consultation on People-to-People Exchange. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3229 secretary Hillary Rodham Clinton @@ -2514,13 +2624,14 @@ 2012-05-06 Bangladesh Dhaka - Met with Prime Minister Sheikh Hasina Wajed, Foreign Minister Dipu Moni, and civil society representatives. Signed Agreement to Establish Partnership. + Met with Prime Minister Sheikh Hasina Wajed, Foreign Minister Dipu Moni, and civil + society representatives. Signed Agreement to Establish Partnership. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3230 secretary Hillary Rodham Clinton @@ -2528,13 +2639,14 @@ 2012-05-08 India Kolkata, New Delhi - Attended an Anti-Trafficking Champions event. Met with Prime Minister Manmohan Singh and Foreign Minister Somanahalli Krishna. + Attended an Anti-Trafficking Champions event. Met with Prime Minister Manmohan + Singh and Foreign Minister Somanahalli Krishna. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3231 secretary Hillary Rodham Clinton @@ -2542,13 +2654,14 @@ 2012-06-01 Denmark Copenhagen - Met with Queen Margrethe II, Prime Minister Helle Thorning-Schmidt, and Foreign Minister Villy Sovndal. Attended a green partnership for growth event. + Met with Queen Margrethe II, Prime Minister Helle Thorning-Schmidt, and Foreign + Minister Villy Sovndal. Attended a green partnership for growth event. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3232 secretary Hillary Rodham Clinton @@ -2556,13 +2669,15 @@ 2012-06-03 Norway Oslo, Tromso - Met with King Harald V, Prime Minister Jens Stoltenberg, and Foreign Minister Jonas Stoere. Addressed a global health conference. Took part in a meeting on the High North at Tromso. + Met with King Harald V, Prime Minister Jens Stoltenberg, and Foreign Minister Jonas + Stoere. Addressed a global health conference. Took part in a meeting on the High North + at Tromso. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:37:22.822-04:00 - + 3233 secretary Hillary Rodham Clinton @@ -2570,13 +2685,14 @@ 2012-06-04 Sweden Stockholm - Met with Prime Minister Fredrik Reinfeldt and Foreign Minister Carl Bildt. Addressed a meeting of the Climate and Clean Air Coalition. + Met with Prime Minister Fredrik Reinfeldt and Foreign Minister Carl Bildt. + Addressed a meeting of the Climate and Clean Air Coalition. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3234 secretary Hillary Rodham Clinton @@ -2584,13 +2700,14 @@ 2012-06-05 Armenia Yerevan - Met with President Serz Sargsian and Foreign Minister Eduard Nalbandian. Addressed the Universal Rights Award Ceremony. + Met with President Serz Sargsian and Foreign Minister Eduard Nalbandian. Addressed + the Universal Rights Award Ceremony. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3235 secretary Hillary Rodham Clinton @@ -2598,13 +2715,14 @@ 2012-06-06 Georgia Batumi - Met with President Mikheil Saakashvili and Prime Minister Nika Gilauri. Opened the omnibus session of the U.S.-Georgia Strategic Partnership Commission. + Met with President Mikheil Saakashvili and Prime Minister Nika Gilauri. Opened the + omnibus session of the U.S.-Georgia Strategic Partnership Commission. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3236 secretary Hillary Rodham Clinton @@ -2612,13 +2730,14 @@ 2012-06-07 Azerbaijan Baku - Met with President Ilham Alyiev and Foreign Minister Elmar Mammadyarov. Attended the Caspian Oil and Gas Show. + Met with President Ilham Alyiev and Foreign Minister Elmar Mammadyarov. Attended + the Caspian Oil and Gas Show. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3237 secretary Hillary Rodham Clinton @@ -2626,13 +2745,15 @@ 2012-06-07 Turkey Istanbul - Met with Foreign Minister Ahmet Davutoglu, Deputy Prime Minister Ali Babacan, and Swiss Foreign Minister Didier Burkhalter. Co-chaired the Global Counterterrorism Forum. + Met with Foreign Minister Ahmet Davutoglu, Deputy Prime Minister Ali Babacan, and + Swiss Foreign Minister Didier Burkhalter. Co-chaired the Global Counterterrorism + Forum. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3238 secretary Hillary Rodham Clinton @@ -2646,7 +2767,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3239 secretary Hillary Rodham Clinton @@ -2660,7 +2781,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3240 secretary Hillary Rodham Clinton @@ -2668,13 +2789,15 @@ 2012-06-28 Finland Helsinki - Met with President Sauli Niinisto, Prime Minister Jyrki Katainen, and Foreign Minister Erkki Tuomioja. Signed General Security of Information Agreement. Attended Climate Clean Air Coalition Event. + Met with President Sauli Niinisto, Prime Minister Jyrki Katainen, and Foreign + Minister Erkki Tuomioja. Signed General Security of Information Agreement. Attended + Climate Clean Air Coalition Event. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3241 secretary Hillary Rodham Clinton @@ -2682,13 +2805,15 @@ 2012-06-28 Latvia Riga - Met with President Andris Berzins, Prime Minister Valdis Dombrovskis, and Foreign Minister Edgar Rinkevics. Signed Academic Exchange Program Agreement and an agreement supporting justice sector reform in Moldova. Dedicated Sumner Welles Street. + Met with President Andris Berzins, Prime Minister Valdis Dombrovskis, and Foreign + Minister Edgar Rinkevics. Signed Academic Exchange Program Agreement and an agreement + supporting justice sector reform in Moldova. Dedicated Sumner Welles Street. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3242 secretary Hillary Rodham Clinton @@ -2696,13 +2821,14 @@ 2012-06-29 Russia St. Petersburg - Attended the APEC Women and the Economy Forum. Met with Foreign Minister Sergei Lavrov. + Attended the APEC Women and the Economy Forum. Met with Foreign Minister Sergei + Lavrov. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3243 secretary Hillary Rodham Clinton @@ -2710,13 +2836,14 @@ 2012-06-30 Switzerland Geneva - Attended a P3 meeting and the opening session of the Action Group on Syria. + Attended a P3 meeting and the opening session of the Action Group on + Syria. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3244 secretary Hillary Rodham Clinton @@ -2724,13 +2851,15 @@ 2012-07-07 France Paris - Met with President Francois Hollande, Foreign Minister Laurent Fabius, Syrian opposition leaders, and Palestinian Authority President Mahmoud Abbas. Attended a Friends of the Syrian People Ministerial Meeting. + Met with President Francois Hollande, Foreign Minister Laurent Fabius, Syrian + opposition leaders, and Palestinian Authority President Mahmoud Abbas. Attended a + Friends of the Syrian People Ministerial Meeting. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3245 secretary Hillary Rodham Clinton @@ -2738,13 +2867,14 @@ 2012-07-07 Afghanistan Kabul - Met with President Hamid Karzai. Announced the designation of Afghanistan as a Major Non-NATO Ally. + Met with President Hamid Karzai. Announced the designation of Afghanistan as a + Major Non-NATO Ally. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3246 secretary Hillary Rodham Clinton @@ -2752,13 +2882,14 @@ 2012-07-09 Japan Tokyo - Met with Prime Minister Yoshihiko Noda and Foreign Minister Koichiro Gemba. Attended the Conference on Afghanistan. + Met with Prime Minister Yoshihiko Noda and Foreign Minister Koichiro Gemba. + Attended the Conference on Afghanistan. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3247 secretary Hillary Rodham Clinton @@ -2766,13 +2897,15 @@ 2012-07-09 Mongolia Ulaanbaatar - Met with President Tsakhiagiin Elbegdorj and Prime Minister Sukhbaatar Batbold. Addressed the International Women’s Leadership Forum, the Leaders Engaged in New Democracies Network, and the Community of Democracies Governing Council. + Met with President Tsakhiagiin Elbegdorj and Prime Minister Sukhbaatar Batbold. + Addressed the International Women’s Leadership Forum, the Leaders Engaged in New + Democracies Network, and the Community of Democracies Governing Council. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3248 secretary Hillary Rodham Clinton @@ -2780,13 +2913,14 @@ 2012-07-11 Vietnam Hanoi - Met with Prime Minister Nguyen Tan Dung and Foreign Minister Pham Binh Minh. Attended an American Chamber of Commerce Reception. + Met with Prime Minister Nguyen Tan Dung and Foreign Minister Pham Binh Minh. + Attended an American Chamber of Commerce Reception. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3249 secretary Hillary Rodham Clinton @@ -2794,13 +2928,14 @@ 2012-07-11 Laos Vientiane - Met with Prime Minister Thongsing Thammavong and Foreign Minister Thongloun Sisoulith. + Met with Prime Minister Thongsing Thammavong and Foreign Minister Thongloun + Sisoulith. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3250 secretary Hillary Rodham Clinton @@ -2808,13 +2943,17 @@ 2012-07-13 Cambodia Phnom Penh, Siem Reap - Met with Prime Minister Hun Sen. Attended the U.S.-ASEAN and East Asia Summit Ministerial Meetings and the East Asia Regional Forum Retreat. Attended a Friends of the Lower Mekong Ministerial Meeting. In Siem Reap, met with the Prime Minister of Thailand and the President of Burma, addressed the Gender Equality and Women’s Empowerment Policy Dialogue, and attended a U.S.-ASEAN Business Forum. + Met with Prime Minister Hun Sen. Attended the U.S.-ASEAN and East Asia Summit + Ministerial Meetings and the East Asia Regional Forum Retreat. Attended a Friends of the + Lower Mekong Ministerial Meeting. In Siem Reap, met with the Prime Minister of Thailand + and the President of Burma, addressed the Gender Equality and Women’s Empowerment Policy + Dialogue, and attended a U.S.-ASEAN Business Forum. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3251 secretary Hillary Rodham Clinton @@ -2822,13 +2961,15 @@ 2012-07-16 Egypt Cairo, Alexandria - Met with President Mohammed Morsi, Foreign Minister Mohamed Kamel Amr, Field Marshal Mohamed Tantawi, and Christian leaders. Dedicated the Consulate General at Alexandria. + Met with President Mohammed Morsi, Foreign Minister Mohamed Kamel Amr, Field + Marshal Mohamed Tantawi, and Christian leaders. Dedicated the Consulate General at + Alexandria. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3252 secretary Hillary Rodham Clinton @@ -2836,13 +2977,15 @@ 2012-07-16 Israel Jerusalem - Met with President Shimon Peres, Prime Minister Benjamin Netanyahu, Foreign Minister Avigdor Liberman, Defense Minister Ehud Barak, Palestinian Authority President Salam Fayyad, and Quartet Representative Tony Blair. + Met with President Shimon Peres, Prime Minister Benjamin Netanyahu, Foreign + Minister Avigdor Liberman, Defense Minister Ehud Barak, Palestinian Authority President + Salam Fayyad, and Quartet Representative Tony Blair. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3253 secretary Hillary Rodham Clinton @@ -2856,7 +2999,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3254 secretary Hillary Rodham Clinton @@ -2870,7 +3013,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3255 secretary Hillary Rodham Clinton @@ -2878,13 +3021,14 @@ 2012-08-03 South Sudan Juba - Met with President Salva Kiir and Foreign Minister Nhial Deng Nhial. Afterwards returned to Kampala. + Met with President Salva Kiir and Foreign Minister Nhial Deng Nhial. Afterwards + returned to Kampala. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3256 secretary Hillary Rodham Clinton @@ -2892,13 +3036,15 @@ 2012-08-05 Kenya Nairobi - Met with President Mwai Kibaki, Chief Justice Willy Mutunga, Prime Minister Raila Odinga, Somali Roadmap Signatories and the Independent Electoral and Boundaries Commission and Civil Society. + Met with President Mwai Kibaki, Chief Justice Willy Mutunga, Prime Minister Raila + Odinga, Somali Roadmap Signatories and the Independent Electoral and Boundaries + Commission and Civil Society. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3257 secretary Hillary Rodham Clinton @@ -2912,7 +3058,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3258 secretary Hillary Rodham Clinton @@ -2920,13 +3066,17 @@ 2012-08-09 South Africa Qunu, Johannesburg, Cape Town - Met with former President Nelson Mandela at Qunu. Attended U.S.-South Africa Business Partnership Summit and U.S.-South Africa Strategic Dialogue Plenary Session in Johannesburg. Met with Foreign Minister Maite Nekoana-Mashabane and AU Chair-Designate Nkosazana Dlamini-Zuma. Participated in a PEPFAR Transition signing and met with former President F.W. de Klerk in Cape Town. + Met with former President Nelson Mandela at Qunu. Attended U.S.-South Africa + Business Partnership Summit and U.S.-South Africa Strategic Dialogue Plenary Session in + Johannesburg. Met with Foreign Minister Maite Nekoana-Mashabane and AU Chair-Designate + Nkosazana Dlamini-Zuma. Participated in a PEPFAR Transition signing and met with former + President F.W. de Klerk in Cape Town. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3259 secretary Hillary Rodham Clinton @@ -2934,13 +3084,14 @@ 2012-08-09 Nigeria Abuja - Met with President Goodluck Jonathan, the Nigerian National Security Council, and Anti-Corruption Leaders. + Met with President Goodluck Jonathan, the Nigerian National Security Council, and + Anti-Corruption Leaders. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3260 secretary Hillary Rodham Clinton @@ -2948,13 +3099,14 @@ 2012-08-10 Ghana Accra - Met with President John Dramani Mahama. Attended funeral service for the late President John Atta Mills. + Met with President John Dramani Mahama. Attended funeral service for the late + President John Atta Mills. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3261 secretary Hillary Rodham Clinton @@ -2968,7 +3120,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3262 secretary Hillary Rodham Clinton @@ -2976,13 +3128,14 @@ 2012-08-12 Turkey Istanbul - Met with President Abdullah Gul, Prime Minister Recep Erdogan, Foreign Minister Ahmet Davutoglu, and Syrian activists and refugees. + Met with President Abdullah Gul, Prime Minister Recep Erdogan, Foreign Minister + Ahmet Davutoglu, and Syrian activists and refugees. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3263 secretary Hillary Rodham Clinton @@ -2996,7 +3149,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3264 secretary Hillary Rodham Clinton @@ -3004,13 +3157,15 @@ 2012-09-04 Indonesia Jakarta - Met with Foreign Minister Marty Natalegawa, President Susilo Yudhoyono and ASEAN Secretary-General Surin Pitsuwan. Discussed U.S.-Indonesian Comprehensive Partnership. + Met with Foreign Minister Marty Natalegawa, President Susilo Yudhoyono and ASEAN + Secretary-General Surin Pitsuwan. Discussed U.S.-Indonesian Comprehensive + Partnership. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3265 secretary Hillary Rodham Clinton @@ -3018,13 +3173,14 @@ 2012-09-06 China, People’s Republic of Beijing - Met with Foreign Minister Yang Jiechi, President Hu Jintao, Premier Wen Jiabao, and State Councilor Dai Bingguo. + Met with Foreign Minister Yang Jiechi, President Hu Jintao, Premier Wen Jiabao, and + State Councilor Dai Bingguo. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3266 secretary Hillary Rodham Clinton @@ -3038,7 +3194,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3267 secretary Hillary Rodham Clinton @@ -3046,13 +3202,14 @@ 2012-09-07 Brunei Bandar Seri Begawan - Met with Sultan Hassanal Bolkiah and Foreign Minister Prince Mohamed. Inaugurated Brunei-U.S. English Language Enrichment Project. + Met with Sultan Hassanal Bolkiah and Foreign Minister Prince Mohamed. Inaugurated + Brunei-U.S. English Language Enrichment Project. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3268 secretary Hillary Rodham Clinton @@ -3060,13 +3217,15 @@ 2012-09-09 Russia Vladivostok - Attended APEC Economic Leaders Meeting. Signed a Memorandum of Understanding on U.S.-Russian Cooperation in the Antarctic and a Joint Statement on Strengthening U.S.-Russian Inter-Regional Cooperation. + Attended APEC Economic Leaders Meeting. Signed a Memorandum of Understanding on + U.S.-Russian Cooperation in the Antarctic and a Joint Statement on Strengthening + U.S.-Russian Inter-Regional Cooperation. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3269 secretary Hillary Rodham Clinton @@ -3074,13 +3233,14 @@ 2012-10-16 Peru Lima - Met with President Ollanta Humala. Addressed Conference on Power: Women as Drivers of Growth and Social Inclusion. + Met with President Ollanta Humala. Addressed Conference on Power: Women as Drivers + of Growth and Social Inclusion. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3270 secretary Hillary Rodham Clinton @@ -3088,13 +3248,14 @@ 2012-10-22 Haiti Cap Haitien - Attended the opening of the Caracol Industrial Park. Met with President Michel Martelly and Prime Minister Laurent Lamothe. + Attended the opening of the Caracol Industrial Park. Met with President Michel + Martelly and Prime Minister Laurent Lamothe. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3271 secretary Hillary Rodham Clinton @@ -3108,7 +3269,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3272 secretary Hillary Rodham Clinton @@ -3116,13 +3277,14 @@ 2012-10-30 Bosnia-Herzegovina Sarajevo - Met with EU High Representative Catherine Ashton and the members of the Bosnian Presidency. + Met with EU High Representative Catherine Ashton and the members of the Bosnian + Presidency. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3273 secretary Hillary Rodham Clinton @@ -3136,7 +3298,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3274 secretary Hillary Rodham Clinton @@ -3144,13 +3306,14 @@ 2012-10-31 Kosovo Pristina - Met with EU High Representative Ashton and President Atifete Jahjaga and Prime Minister Hashim Thaci. + Met with EU High Representative Ashton and President Atifete Jahjaga and Prime + Minister Hashim Thaci. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3275 secretary Hillary Rodham Clinton @@ -3158,13 +3321,14 @@ 2012-11-01 Croatia Zagreb - Met with President Ivo Josipovic, Prime Minister Zoran Milanovic, and Foreign Minister Vesna Pusic. + Met with President Ivo Josipovic, Prime Minister Zoran Milanovic, and Foreign + Minister Vesna Pusic. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3276 secretary Hillary Rodham Clinton @@ -3172,13 +3336,15 @@ 2012-11-01 Albania Tirana - Met with President Bujar Nishani, Prime Minister Sali Berisha, and Socialist Party leader Edi Rama. Addressed the Parliament and received the Order of the National Flag. + Met with President Bujar Nishani, Prime Minister Sali Berisha, and Socialist Party + leader Edi Rama. Addressed the Parliament and received the Order of the National + Flag. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3277 secretary Hillary Rodham Clinton @@ -3186,13 +3352,15 @@ 2012-11-15 Australia Perth, Adelaide - Met with Prime Minister Julia Gillard, Foreign Minister Robert Carr, and Defense Minister Stephen Smith. Opened the Perth USAsia Center. Attended the Australia-United States Ministerial Consultations. + Met with Prime Minister Julia Gillard, Foreign Minister Robert Carr, and Defense + Minister Stephen Smith. Opened the Perth USAsia Center. Attended the Australia-United + States Ministerial Consultations. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3278 secretary Hillary Rodham Clinton @@ -3200,13 +3368,14 @@ 2012-11-18 Singapore Singapore - Met with former Prime Minister Lee Kuan Yew, Prime Minister Lee Hsien Loong, and Foreign Minister Kasiviswanathan Shanmugam. + Met with former Prime Minister Lee Kuan Yew, Prime Minister Lee Hsien Loong, and + Foreign Minister Kasiviswanathan Shanmugam. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3279 secretary Hillary Rodham Clinton @@ -3220,7 +3389,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3280 secretary Hillary Rodham Clinton @@ -3228,13 +3397,14 @@ 2012-11-19 Burma (Myanmar) Rangoon - Accompanied President Obama. Met with President Thein Sein and opposition leader Aung San Suu Kyi. + Accompanied President Obama. Met with President Thein Sein and opposition leader + Aung San Suu Kyi. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3281 secretary Hillary Rodham Clinton @@ -3248,7 +3418,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3282 secretary Hillary Rodham Clinton @@ -3256,13 +3426,14 @@ 2012-11-21 Israel Jerusalem - Discussed the Gaza Crisis with Prime Minister Benjamin Netanyahu and UN Secretary-General Ban Ki-Moon. + Discussed the Gaza Crisis with Prime Minister Benjamin Netanyahu and UN + Secretary-General Ban Ki-Moon. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3283 secretary Hillary Rodham Clinton @@ -3276,7 +3447,7 @@ wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3284 secretary Hillary Rodham Clinton @@ -3284,13 +3455,14 @@ 2012-11-21 Egypt Cairo - Discussed the Gaza Crisis with President Mohammed Morsi and Foreign Minister Mohamed Kamal Amr. + Discussed the Gaza Crisis with President Mohammed Morsi and Foreign Minister + Mohamed Kamal Amr. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3285 secretary Hillary Rodham Clinton @@ -3298,13 +3470,14 @@ 2012-12-04 Czech Republic Prague - Met with Prime Minister Petr Necas and Foreign Minister Karel Schwarzenberg. + Met with Prime Minister Petr Necas and Foreign Minister Karel + Schwarzenberg. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3286 secretary Hillary Rodham Clinton @@ -3312,13 +3485,15 @@ 2012-12-05 Belgium Brussels - Attended the 28th session of the North Atlantic Council and meetings of the NATO-Georgia Council, with Non-NATO ISAF Contributing Countries, and the U.S.-EU Energy Council. + Attended the 28th session of the North Atlantic Council and meetings of the + NATO-Georgia Council, with Non-NATO ISAF Contributing Countries, and the U.S.-EU Energy + Council. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3287 secretary Hillary Rodham Clinton @@ -3326,13 +3501,14 @@ 2012-12-07 Ireland Dublin - Attended the OSCE Ministerial Council meeting, and met with President Michael Higgins and Prime Minister Enda Kenny. + Attended the OSCE Ministerial Council meeting, and met with President Michael + Higgins and Prime Minister Enda Kenny. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - + 3288 secretary Hillary Rodham Clinton @@ -3340,10 +3516,11 @@ 2012-12-07 United Kingdom (Northern Ireland) Belfast - Met with First Minister Peter Robinson and Deputy First Minister Martin McGuinness. + Met with First Minister Peter Robinson and Deputy First Minister Martin + McGuinness. wicentowskijc 2013-01-30T19:24:22.822-04:00 wicentowskijc 2013-01-30T19:24:22.822-04:00 - \ No newline at end of file + diff --git a/secretary-travels/colby-bainbridge.xml b/secretary-travels/colby-bainbridge.xml index daef232..846ee05 100644 --- a/secretary-travels/colby-bainbridge.xml +++ b/secretary-travels/colby-bainbridge.xml @@ -1,6 +1,6 @@ - + 733 secretary Bainbridge Colby @@ -8,13 +8,14 @@ 1920-12-10 United Kingdom Bridgetown (Barbados) - Met with British colonial officials during a refueling stop en route to South America. Left U.S. December 4. + Met with British colonial officials during a refueling stop en route to South + America. Left U.S. December 4. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 734 secretary Bainbridge Colby @@ -28,7 +29,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 735 secretary Bainbridge Colby @@ -36,13 +37,14 @@ 1920-12-31 Uruguay Montevideo - Official visit; repaid 1918 visit by President (then Foreign Minister) Brum. + Official visit; repaid 1918 visit by President (then Foreign Minister) + Brum. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 736 secretary Bainbridge Colby @@ -56,7 +58,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 737 secretary Bainbridge Colby @@ -64,10 +66,11 @@ 1921-01-21 United Kingdom Port-of-Spain - Met with British colonial (Trinidad) officials while returning from South America. Returned to U.S. January 26. + Met with British colonial (Trinidad) officials while returning from South America. + Returned to U.S. January 26. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/dulles-john-foster.xml b/secretary-travels/dulles-john-foster.xml index 9d63af3..2430dbf 100644 --- a/secretary-travels/dulles-john-foster.xml +++ b/secretary-travels/dulles-john-foster.xml @@ -1,6 +1,6 @@ - + 738 secretary John Foster Dulles @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 739 secretary John Foster Dulles @@ -22,13 +22,14 @@ 1953-02-03 France Paris - Met with senior French officials and with representatives of NATO and the Organization for European Economic Cooperation. + Met with senior French officials and with representatives of NATO and the + Organization for European Economic Cooperation. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 740 secretary John Foster Dulles @@ -42,7 +43,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 741 secretary John Foster Dulles @@ -56,7 +57,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 742 secretary John Foster Dulles @@ -70,7 +71,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 743 secretary John Foster Dulles @@ -84,7 +85,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 744 secretary John Foster Dulles @@ -98,7 +99,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 745 secretary John Foster Dulles @@ -112,7 +113,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 746 secretary John Foster Dulles @@ -120,13 +121,14 @@ 1953-05-13 Egypt Cairo - Met with Prime Minister Naguib, Foreign Minister Fawzi, and Egyptian military leaders. Attended regional conference of U.S. Ambassadors. + Met with Prime Minister Naguib, Foreign Minister Fawzi, and Egyptian military + leaders. Attended regional conference of U.S. Ambassadors. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 747 secretary John Foster Dulles @@ -140,7 +142,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 748 secretary John Foster Dulles @@ -154,7 +156,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 749 secretary John Foster Dulles @@ -168,7 +170,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 750 secretary John Foster Dulles @@ -182,7 +184,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 751 secretary John Foster Dulles @@ -196,7 +198,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 752 secretary John Foster Dulles @@ -210,7 +212,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 753 secretary John Foster Dulles @@ -224,7 +226,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 754 secretary John Foster Dulles @@ -238,7 +240,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 755 secretary John Foster Dulles @@ -246,13 +248,14 @@ 1953-05-27 Turkey Ankara, Istanbul - Met with President Bayer, Prime Minister Menderes, and senior Turkish officials. + Met with President Bayer, Prime Minister Menderes, and senior Turkish + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 756 secretary John Foster Dulles @@ -266,7 +269,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 757 secretary John Foster Dulles @@ -280,7 +283,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 758 secretary John Foster Dulles @@ -294,7 +297,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 759 secretary John Foster Dulles @@ -308,7 +311,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 760 secretary John Foster Dulles @@ -316,13 +319,14 @@ 1953-08-08 Japan Tokyo - Met with Prime Minister Yoshida while returning to U.S. Announced return of the Amami Islands to Japan. Returned to U.S. August 10. + Met with Prime Minister Yoshida while returning to U.S. Announced return of the + Amami Islands to Japan. Returned to U.S. August 10. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 761 secretary John Foster Dulles @@ -336,7 +340,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 762 secretary John Foster Dulles @@ -350,7 +354,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 763 secretary John Foster Dulles @@ -364,7 +368,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 764 secretary John Foster Dulles @@ -372,13 +376,14 @@ 1954-02-18 Germany Berlin - Attended Big Four Foreign Ministers Meeting. Sessions of February 1-6, 15, and 17 were held in East Berlin. + Attended Big Four Foreign Ministers Meeting. Sessions of February 1-6, 15, and 17 + were held in East Berlin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 765 secretary John Foster Dulles @@ -392,7 +397,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 766 secretary John Foster Dulles @@ -406,7 +411,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 767 secretary John Foster Dulles @@ -420,7 +425,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 768 secretary John Foster Dulles @@ -434,7 +439,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 769 secretary John Foster Dulles @@ -448,7 +453,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 770 secretary John Foster Dulles @@ -462,7 +467,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 771 secretary John Foster Dulles @@ -476,7 +481,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 772 secretary John Foster Dulles @@ -484,13 +489,14 @@ 1954-07-15 France Paris - Conferred with Prime Ministers Eden and Mendes-France on the Genera Conference. + Conferred with Prime Ministers Eden and Mendes-France on the Genera + Conference. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 773 secretary John Foster Dulles @@ -504,7 +510,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 774 secretary John Foster Dulles @@ -518,7 +524,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 775 secretary John Foster Dulles @@ -526,13 +532,14 @@ 1954-09-10 Japan Tokyo - Met with Prime Minister Yoshida and Foreign Minister Okazaki en route from Manila. + Met with Prime Minister Yoshida and Foreign Minister Okazaki en route from + Manila. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 776 secretary John Foster Dulles @@ -546,7 +553,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 777 secretary John Foster Dulles @@ -560,7 +567,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 778 secretary John Foster Dulles @@ -574,7 +581,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 779 secretary John Foster Dulles @@ -582,13 +589,14 @@ 1954-10-23 France Paris - Attended NATO, Four- and Nine-Power Conferences. Returned to U.S. October 25. + Attended NATO, Four- and Nine-Power Conferences. Returned to U.S. October + 25. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 780 secretary John Foster Dulles @@ -602,7 +610,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 781 secretary John Foster Dulles @@ -616,7 +624,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 782 secretary John Foster Dulles @@ -630,7 +638,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 783 secretary John Foster Dulles @@ -644,7 +652,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 784 secretary John Foster Dulles @@ -658,7 +666,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 785 secretary John Foster Dulles @@ -672,7 +680,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 786 secretary John Foster Dulles @@ -686,7 +694,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 787 secretary John Foster Dulles @@ -700,7 +708,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 788 secretary John Foster Dulles @@ -714,7 +722,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 789 secretary John Foster Dulles @@ -728,7 +736,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 790 secretary John Foster Dulles @@ -742,7 +750,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 791 secretary John Foster Dulles @@ -756,7 +764,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 792 secretary John Foster Dulles @@ -770,7 +778,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 793 secretary John Foster Dulles @@ -778,13 +786,14 @@ 1955-07-16 France Paris - Met with the French and British Foreign Ministers and attended a North Atlantic Council meeting. + Met with the French and British Foreign Ministers and attended a North Atlantic + Council meeting. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 794 secretary John Foster Dulles @@ -798,7 +807,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 795 secretary John Foster Dulles @@ -806,13 +815,14 @@ 1955-09-26 Canada Ottawa - Attended meeting of the Joint U.S.-Canadian Commission on Trade and Economic Affairs. + Attended meeting of the Joint U.S.-Canadian Commission on Trade and Economic + Affairs. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 796 secretary John Foster Dulles @@ -820,13 +830,14 @@ 1955-10-23 Italy Rome - Met with President Gronchi and Foreign Minister Martino. Left Washington October 21. + Met with President Gronchi and Foreign Minister Martino. Left Washington October + 21. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 797 secretary John Foster Dulles @@ -840,7 +851,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 798 secretary John Foster Dulles @@ -854,7 +865,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 799 secretary John Foster Dulles @@ -862,13 +873,14 @@ 1955-11-16 Switzerland Geneva - Attended meeting of the Foreign Ministers of the United Kingdom, France, the Soviet Union, and the United States. + Attended meeting of the Foreign Ministers of the United Kingdom, France, the Soviet + Union, and the United States. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 800 secretary John Foster Dulles @@ -882,7 +894,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 801 secretary John Foster Dulles @@ -896,7 +908,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 802 secretary John Foster Dulles @@ -910,7 +922,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 803 secretary John Foster Dulles @@ -924,7 +936,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 804 secretary John Foster Dulles @@ -938,7 +950,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 805 secretary John Foster Dulles @@ -952,7 +964,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 806 secretary John Foster Dulles @@ -966,7 +978,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 807 secretary John Foster Dulles @@ -980,7 +992,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 808 secretary John Foster Dulles @@ -994,7 +1006,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 809 secretary John Foster Dulles @@ -1008,7 +1020,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 810 secretary John Foster Dulles @@ -1022,7 +1034,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 811 secretary John Foster Dulles @@ -1036,7 +1048,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 812 secretary John Foster Dulles @@ -1050,7 +1062,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 813 secretary John Foster Dulles @@ -1064,7 +1076,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 814 secretary John Foster Dulles @@ -1078,7 +1090,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 815 secretary John Foster Dulles @@ -1092,7 +1104,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 816 secretary John Foster Dulles @@ -1100,13 +1112,14 @@ 1956-07-24 Panama Panama City - Accompanied President Eisenhower to a meeting of the Presidents of the American Republics. + Accompanied President Eisenhower to a meeting of the Presidents of the American + Republics. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 817 secretary John Foster Dulles @@ -1120,7 +1133,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 818 secretary John Foster Dulles @@ -1134,7 +1147,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 819 secretary John Foster Dulles @@ -1148,7 +1161,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 820 secretary John Foster Dulles @@ -1156,13 +1169,14 @@ 1956-08-02 United Kingdom London - Attended Tripartite Conference on the Suez Canal with the British and French Foreign Ministers. + Attended Tripartite Conference on the Suez Canal with the British and French + Foreign Ministers. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 821 secretary John Foster Dulles @@ -1176,7 +1190,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 822 secretary John Foster Dulles @@ -1190,7 +1204,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 823 secretary John Foster Dulles @@ -1204,7 +1218,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 824 secretary John Foster Dulles @@ -1212,13 +1226,14 @@ 1957-03-14 Australia Canberra - Attended Third Meeting of SEATO Council of Ministers. Left Washington March 6; returned March 17. + Attended Third Meeting of SEATO Council of Ministers. Left Washington March 6; + returned March 17. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 825 secretary John Foster Dulles @@ -1226,13 +1241,14 @@ 1957-03-24 United Kingdom Bermuda - Attended a meeting between President Eisenhower and Prime Minister Macmillan. + Attended a meeting between President Eisenhower and Prime Minister + Macmillan. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 826 secretary John Foster Dulles @@ -1246,7 +1262,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 827 secretary John Foster Dulles @@ -1254,13 +1270,14 @@ 1957-05-06 France Paris - Met with Prime Minister Mollet and attended meeting of U.S. Chiefs of Mission to European countries. + Met with Prime Minister Mollet and attended meeting of U.S. Chiefs of Mission to + European countries. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 828 secretary John Foster Dulles @@ -1268,13 +1285,14 @@ 1957-07-28 Canada Kingston, Ottawa - Personal and private visit. Met informally with Prime Minister Diefenbaker. + Personal and private visit. Met informally with Prime Minister + Diefenbaker. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 829 secretary John Foster Dulles @@ -1288,7 +1306,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 830 secretary John Foster Dulles @@ -1302,7 +1320,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 831 secretary John Foster Dulles @@ -1310,13 +1328,14 @@ 1957-12-20 Spain Madrid - Met with Generalissimo Franco and senior Spanish officials while returning from Paris. + Met with Generalissimo Franco and senior Spanish officials while returning from + Paris. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 832 secretary John Foster Dulles @@ -1324,13 +1343,14 @@ 1958-01-23 Morocco Marrakesh - Met with King Mohammed V, Foreign Minister Balafrej, and senior Moroccan officials. + Met with King Mohammed V, Foreign Minister Balafrej, and senior Moroccan + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 833 secretary John Foster Dulles @@ -1344,7 +1364,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 834 secretary John Foster Dulles @@ -1358,7 +1378,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 835 secretary John Foster Dulles @@ -1366,13 +1386,14 @@ 1958-03-13 Philippines Manila - Attended Fourth Meeting of the SEATO Ministerial Council. Left U.S. March 7. + Attended Fourth Meeting of the SEATO Ministerial Council. Left U.S. March + 7. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 836 secretary John Foster Dulles @@ -1380,13 +1401,14 @@ 1958-03-16 Republic of China Taipei - Met with President Chiang and attended a conference of U.S. Chiefs of Mission to Asian countries. Returned March 18. + Met with President Chiang and attended a conference of U.S. Chiefs of Mission to + Asian countries. Returned March 18. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 837 secretary John Foster Dulles @@ -1400,7 +1422,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 838 secretary John Foster Dulles @@ -1414,7 +1436,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 839 secretary John Foster Dulles @@ -1422,13 +1444,14 @@ 1958-05-10 France Paris - Attended the opening session of a conference of U.S. Chiefs of Mission to European countries. + Attended the opening session of a conference of U.S. Chiefs of Mission to European + countries. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 840 secretary John Foster Dulles @@ -1442,7 +1465,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 841 secretary John Foster Dulles @@ -1456,7 +1479,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 842 secretary John Foster Dulles @@ -1470,7 +1493,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 843 secretary John Foster Dulles @@ -1484,7 +1507,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 844 secretary John Foster Dulles @@ -1498,7 +1521,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 845 secretary John Foster Dulles @@ -1512,7 +1535,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 846 secretary John Foster Dulles @@ -1526,7 +1549,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 847 secretary John Foster Dulles @@ -1540,7 +1563,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 848 secretary John Foster Dulles @@ -1554,7 +1577,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 849 secretary John Foster Dulles @@ -1568,7 +1591,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 850 secretary John Foster Dulles @@ -1582,7 +1605,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 851 secretary John Foster Dulles @@ -1596,7 +1619,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 852 secretary John Foster Dulles @@ -1610,7 +1633,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 853 secretary John Foster Dulles @@ -1618,13 +1641,14 @@ 1959-02-07 France Paris - Met with President De Gaulle, Foreign Minister Couve de Murville, and NATO Secretary General Spaak. + Met with President De Gaulle, Foreign Minister Couve de Murville, and NATO + Secretary General Spaak. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 854 secretary John Foster Dulles @@ -1638,4 +1662,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/haig-alexander-meigs.xml b/secretary-travels/haig-alexander-meigs.xml index 09d5203..df49b88 100644 --- a/secretary-travels/haig-alexander-meigs.xml +++ b/secretary-travels/haig-alexander-meigs.xml @@ -1,6 +1,6 @@ - + 855 secretary Alexander Meigs Haig @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 856 secretary Alexander Meigs Haig @@ -22,13 +22,14 @@ 1981-04-05 Egypt Cairo - Reviewed the Middle East peace process with President Sadat and Foreign Minister Ali. + Reviewed the Middle East peace process with President Sadat and Foreign Minister + Ali. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 857 secretary Alexander Meigs Haig @@ -36,13 +37,14 @@ 1981-04-06 Israel Jerusalem - Reviewed the Middle East peace process with Prime Minister Begin and Foreign Minister Shamir. + Reviewed the Middle East peace process with Prime Minister Begin and Foreign + Minister Shamir. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 858 secretary Alexander Meigs Haig @@ -50,13 +52,14 @@ 1981-04-07 Jordan Amman - Reviewed the Middle East peace process with King Hussein and Prime Minister Rifai. + Reviewed the Middle East peace process with King Hussein and Prime Minister + Rifai. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 859 secretary Alexander Meigs Haig @@ -64,13 +67,14 @@ 1981-04-08 Saudi Arabia Riyadh - Discussed the Middle East peace process and AWACS sales with King Fahd and Foreign Minister Prince Saud. + Discussed the Middle East peace process and AWACS sales with King Fahd and Foreign + Minister Prince Saud. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 860 secretary Alexander Meigs Haig @@ -84,7 +88,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 861 secretary Alexander Meigs Haig @@ -92,13 +96,14 @@ 1981-04-09 Spain Madrid - Met with King Juan Carlos, Prime Minister Calvo Sotelo, and senior Spanish officials. + Met with King Juan Carlos, Prime Minister Calvo Sotelo, and senior Spanish + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 862 secretary Alexander Meigs Haig @@ -112,7 +117,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 863 secretary Alexander Meigs Haig @@ -120,13 +125,14 @@ 1981-04-11 France Paris - Met with President Giscard d'Estaing and Foreign Minister Francois-Poncet. + Met with President Giscard d'Estaing and Foreign Minister + Francois-Poncet. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 864 secretary Alexander Meigs Haig @@ -140,7 +146,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 865 secretary Alexander Meigs Haig @@ -154,7 +160,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 866 secretary Alexander Meigs Haig @@ -168,7 +174,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 867 secretary Alexander Meigs Haig @@ -182,7 +188,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 868 secretary Alexander Meigs Haig @@ -196,7 +202,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 869 secretary Alexander Meigs Haig @@ -210,7 +216,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 870 secretary Alexander Meigs Haig @@ -224,7 +230,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 871 secretary Alexander Meigs Haig @@ -232,13 +238,14 @@ 1981-07-11 Bahamas Nassau - Attended a meeting with the Canadian, Mexican, and Venezuelan Foreign Ministers on economic cooperation in the Caribbean. + Attended a meeting with the Canadian, Mexican, and Venezuelan Foreign Ministers on + economic cooperation in the Caribbean. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 872 secretary Alexander Meigs Haig @@ -252,7 +259,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 873 secretary Alexander Meigs Haig @@ -260,13 +267,14 @@ 1981-08-02 Mexico Cancun - Attended a Foreign Ministers meeting preliminary to Conference on Cooperation and Development. + Attended a Foreign Ministers meeting preliminary to Conference on Cooperation and + Development. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 874 secretary Alexander Meigs Haig @@ -280,7 +288,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 875 secretary Alexander Meigs Haig @@ -288,13 +296,14 @@ 1981-09-13 Yugoslavia Belgrade - Official visit; met with President Kraigher and senior Yugoslav officials. + Official visit; met with President Kraigher and senior Yugoslav + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 876 secretary Alexander Meigs Haig @@ -308,7 +317,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 877 secretary Alexander Meigs Haig @@ -322,7 +331,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 878 secretary Alexander Meigs Haig @@ -336,7 +345,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 879 secretary Alexander Meigs Haig @@ -344,13 +353,14 @@ 1981-10-24 Mexico Cancun - Accompanied President Reagan to the International Meeting on Cooperation and Development. + Accompanied President Reagan to the International Meeting on Cooperation and + Development. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 880 secretary Alexander Meigs Haig @@ -358,13 +368,14 @@ 1981-11-24 Mexico Mexico, D.F. - Deposited the instrument of ratification of the Treaty for the Prohibition of Nuclear Weapons in Latin America. + Deposited the instrument of ratification of the Treaty for the Prohibition of + Nuclear Weapons in Latin America. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 881 secretary Alexander Meigs Haig @@ -378,7 +389,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 882 secretary Alexander Meigs Haig @@ -392,7 +403,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 883 secretary Alexander Meigs Haig @@ -406,7 +417,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 884 secretary Alexander Meigs Haig @@ -420,7 +431,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 885 secretary Alexander Meigs Haig @@ -434,7 +445,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 886 secretary Alexander Meigs Haig @@ -448,7 +459,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 887 secretary Alexander Meigs Haig @@ -456,13 +467,14 @@ 1982-01-28 Israel Jerusalem - Discussed prospects for Palestinian autonomy talks with Israeli officials. + Discussed prospects for Palestinian autonomy talks with Israeli + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 888 secretary Alexander Meigs Haig @@ -470,13 +482,14 @@ 1982-01-29 Egypt Cairo - Discussed prospects for Palestinian autonomy talks with Egyptian officials. + Discussed prospects for Palestinian autonomy talks with Egyptian + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 889 secretary Alexander Meigs Haig @@ -490,7 +503,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 890 secretary Alexander Meigs Haig @@ -504,7 +517,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 891 secretary Alexander Meigs Haig @@ -518,7 +531,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 892 secretary Alexander Meigs Haig @@ -532,7 +545,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 893 secretary Alexander Meigs Haig @@ -546,7 +559,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 894 secretary Alexander Meigs Haig @@ -560,7 +573,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 895 secretary Alexander Meigs Haig @@ -568,13 +581,14 @@ 1982-04-11 Argentina Buenos Aires - Attempted to resolve the Falkland/Malvinas crisis. Stopped in Dakar, Senegal, April 9 on way from London. + Attempted to resolve the Falkland/Malvinas crisis. Stopped in Dakar, Senegal, April + 9 on way from London. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 896 secretary Alexander Meigs Haig @@ -588,7 +602,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 897 secretary Alexander Meigs Haig @@ -602,7 +616,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 898 secretary Alexander Meigs Haig @@ -616,7 +630,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 899 secretary Alexander Meigs Haig @@ -630,7 +644,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 900 secretary Alexander Meigs Haig @@ -638,13 +652,14 @@ 1982-05-16 Greece Athens - Official visit. Met with President Karamanlis, Prime Minister Papandreou, and senior Greek officials. + Official visit. Met with President Karamanlis, Prime Minister Papandreou, and + senior Greek officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 901 secretary Alexander Meigs Haig @@ -658,7 +673,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 902 secretary Alexander Meigs Haig @@ -666,13 +681,14 @@ 1982-06-07 France Paris, Versailles - Accompanied President Reagan on State visit and to Economic Summit Meeting. + Accompanied President Reagan on State visit and to Economic Summit + Meeting. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 903 secretary Alexander Meigs Haig @@ -686,7 +702,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 904 secretary Alexander Meigs Haig @@ -700,7 +716,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 905 secretary Alexander Meigs Haig @@ -714,7 +730,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 906 secretary Alexander Meigs Haig @@ -722,13 +738,14 @@ 1982-06-11 Germany, Federal Republic of Bonn - Accompanied President Reagan on a State visit and to a NATO Summit Meeting. + Accompanied President Reagan on a State visit and to a NATO Summit + Meeting. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 907 secretary Alexander Meigs Haig @@ -742,4 +759,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/hay-john-milton.xml b/secretary-travels/hay-john-milton.xml index cc9b916..bd0f071 100644 --- a/secretary-travels/hay-john-milton.xml +++ b/secretary-travels/hay-john-milton.xml @@ -1,6 +1,6 @@ - + 908 secretary John Milton Hay @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 909 secretary John Milton Hay @@ -28,7 +28,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 910 secretary John Milton Hay @@ -42,7 +42,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 911 secretary John Milton Hay @@ -56,4 +56,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/herter-christian-archibald.xml b/secretary-travels/herter-christian-archibald.xml index 9c9e90d..06ef62e 100644 --- a/secretary-travels/herter-christian-archibald.xml +++ b/secretary-travels/herter-christian-archibald.xml @@ -1,6 +1,6 @@ - + 912 secretary Christian Archibald Herter @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 913 secretary Christian Archibald Herter @@ -22,13 +22,14 @@ 1959-06-20 Switzerland Geneva - Attended a Conference of the Foreign Ministers of France, the United Kingdom, the Soviet Union, and the United States on the questions of Germany and Berlin. + Attended a Conference of the Foreign Ministers of France, the United Kingdom, the + Soviet Union, and the United States on the questions of Germany and Berlin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 914 secretary Christian Archibald Herter @@ -36,13 +37,14 @@ 1959-07-11 Canada Ottawa - Informal meeting with Prime Minister Diefenbaker and Secretary for External Affairs Green. + Informal meeting with Prime Minister Diefenbaker and Secretary for External Affairs + Green. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 915 secretary Christian Archibald Herter @@ -56,7 +58,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 916 secretary Christian Archibald Herter @@ -70,7 +72,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 917 secretary Christian Archibald Herter @@ -78,13 +80,14 @@ 1959-08-18 Chile Santiago - Attended the 5th Meeting of Consultation of Ministers of Foreign Affairs of the American States. + Attended the 5th Meeting of Consultation of Ministers of Foreign Affairs of the + American States. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 918 secretary Christian Archibald Herter @@ -98,7 +101,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 919 secretary Christian Archibald Herter @@ -106,13 +109,14 @@ 1959-09-02 United Kingdom London, Chequers - Accompanied President Eisenhower on an informal visit. Also met with Spanish Foreign Minister Castiella. + Accompanied President Eisenhower on an informal visit. Also met with Spanish + Foreign Minister Castiella. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 920 secretary Christian Archibald Herter @@ -120,13 +124,14 @@ 1959-09-04 France Paris - Accompanied President Eisenhower to meeting of the North Atlantic Council. + Accompanied President Eisenhower to meeting of the North Atlantic + Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 921 secretary Christian Archibald Herter @@ -134,13 +139,14 @@ 1959-12-22 France Paris - Attended NATO Ministerial Meeting and a meeting of the Heads of State and Government of France, Germany, the United Kingdom, and the United States. + Attended NATO Ministerial Meeting and a meeting of the Heads of State and + Government of France, Germany, the United Kingdom, and the United States. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 922 secretary Christian Archibald Herter @@ -154,7 +160,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 923 secretary Christian Archibald Herter @@ -168,7 +174,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 924 secretary Christian Archibald Herter @@ -182,7 +188,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 925 secretary Christian Archibald Herter @@ -196,7 +202,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 926 secretary Christian Archibald Herter @@ -210,7 +216,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 927 secretary Christian Archibald Herter @@ -224,7 +230,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 928 secretary Christian Archibald Herter @@ -238,7 +244,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 929 secretary Christian Archibald Herter @@ -252,7 +258,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 930 secretary Christian Archibald Herter @@ -260,13 +266,15 @@ 1960-05-21 France Paris - Accompanied President Eisenhower to a meeting of the Chiefs of State and Heads of Government of France, the Soviet Union, the United Kingdom, and the United States. Also attended a meeting of NATO's Permanent Council. + Accompanied President Eisenhower to a meeting of the Chiefs of State and Heads of + Government of France, the Soviet Union, the United Kingdom, and the United States. Also + attended a meeting of NATO's Permanent Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 931 secretary Christian Archibald Herter @@ -274,13 +282,14 @@ 1960-08-29 Costa Rica San Jose - Attended the 6th and 7th Meetings of Consultation of the American Foreign Ministers. + Attended the 6th and 7th Meetings of Consultation of the American Foreign + Ministers. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 932 secretary Christian Archibald Herter @@ -294,7 +303,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 933 secretary Christian Archibald Herter @@ -308,7 +317,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 934 secretary Christian Archibald Herter @@ -322,4 +331,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/hughes-charles-evans.xml b/secretary-travels/hughes-charles-evans.xml index 0b0ed98..f7fe2c9 100644 --- a/secretary-travels/hughes-charles-evans.xml +++ b/secretary-travels/hughes-charles-evans.xml @@ -1,6 +1,6 @@ - + 935 secretary Charles Evans Hughes @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 936 secretary Charles Evans Hughes @@ -22,13 +22,14 @@ 1922-09-12 Brazil Rio de Janeiro - U.S. Special Mission to Brazil. Attended ceremonies commemorating centenary of Brazilian independence. Left U.S. August 24; returned September 23. + U.S. Special Mission to Brazil. Attended ceremonies commemorating centenary of + Brazilian independence. Left U.S. August 24; returned September 23. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2018-09-17T09:06:57.03-04:00 - + 937 secretary Charles Evans Hughes @@ -42,7 +43,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 938 secretary Charles Evans Hughes @@ -50,13 +51,14 @@ 1924-07-28 United Kingdom London - As President of the American Bar Association, attended an international law convention. Left U.S. July 12. + As President of the American Bar Association, attended an international law + convention. Left U.S. July 12. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 939 secretary Charles Evans Hughes @@ -70,7 +72,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 940 secretary Charles Evans Hughes @@ -84,7 +86,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 941 secretary Charles Evans Hughes @@ -92,10 +94,11 @@ 1924-08-04 Germany Berlin - Met with President Ebert and Foreign Minister Stresemann. Returned to U.S. August 14. + Met with President Ebert and Foreign Minister Stresemann. Returned to U.S. August + 14. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/hull-cordell.xml b/secretary-travels/hull-cordell.xml index c6addba..f0a7f96 100644 --- a/secretary-travels/hull-cordell.xml +++ b/secretary-travels/hull-cordell.xml @@ -1,6 +1,6 @@ - + 942 secretary Cordell Hull @@ -8,13 +8,14 @@ 1933-07-27 United Kingdom London - Chairman of U.S. Delegation to the Monetary and Economic Conference. Left U.S. May 31; returned August 1. + Chairman of U.S. Delegation to the Monetary and Economic Conference. Left U.S. May + 31; returned August 1. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 943 secretary Cordell Hull @@ -22,13 +23,15 @@ 1933-11-25 Brazil Rio de Janeiro, Sao Paulo, Santos - Met with President Vargas and Foreign Minister de Mello Franco en route to Inter-American Conference in Montevideo. Delivered several public addresses. Left U.S. November 17. + Met with President Vargas and Foreign Minister de Mello Franco en route to + Inter-American Conference in Montevideo. Delivered several public addresses. Left U.S. + November 17. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 944 secretary Cordell Hull @@ -42,7 +45,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 945 secretary Cordell Hull @@ -50,13 +53,14 @@ 1933-12-31 Argentina Buenos Aires - Met with President Justo and addressed the American Club. Toured Argentine Lakes District en route to Chile. + Met with President Justo and addressed the American Club. Toured Argentine Lakes + District en route to Chile. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 946 secretary Cordell Hull @@ -64,13 +68,14 @@ 1934-01-08 Chile Santiago, Valparaiso, Antofagasta - Met with President Alessandri, addressed the Senate, and delivered several public addresses. + Met with President Alessandri, addressed the Senate, and delivered several public + addresses. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 947 secretary Cordell Hull @@ -78,13 +83,14 @@ 1934-01-13 Peru Mollendo, Callao, Lima, Talara - Met with President Benvenidez and Foreign Minister Solon Polo and delivered several public addresses. + Met with President Benvenidez and Foreign Minister Solon Polo and delivered several + public addresses. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 948 secretary Cordell Hull @@ -98,7 +104,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 949 secretary Cordell Hull @@ -112,7 +118,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 950 secretary Cordell Hull @@ -120,13 +126,14 @@ 1934-01-17 Panama Panama City - Met with President Arias and Foreign Minister Arosemena. Returned to U.S. January 19. + Met with President Arias and Foreign Minister Arosemena. Returned to U.S. January + 19. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 951 secretary Cordell Hull @@ -134,13 +141,14 @@ 1936-11-21 Brazil Rio de Janeiro, Santos - Met with President Vargas and Foreign Minister Macedo Soares en route to Inter-American Conference for the Maintenance of Peace. Left U.S. November 7. + Met with President Vargas and Foreign Minister Macedo Soares en route to + Inter-American Conference for the Maintenance of Peace. Left U.S. November 7. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 952 secretary Cordell Hull @@ -154,7 +162,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 953 secretary Cordell Hull @@ -168,7 +176,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 954 secretary Cordell Hull @@ -176,13 +184,14 @@ 1936-12-31 Brazil Santos, Rio de Janeiro - Met with President Vargas and delivered public addresses while returning to U.S. + Met with President Vargas and delivered public addresses while returning to + U.S. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 955 secretary Cordell Hull @@ -196,7 +205,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 956 secretary Cordell Hull @@ -210,7 +219,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 957 secretary Cordell Hull @@ -218,13 +227,14 @@ 1938-12-01 Panama Panama City - Met with President Arosemena and addressed a conference of Foreign Service officers while en route to conference in Lima. Left U.S. November 25. + Met with President Arosemena and addressed a conference of Foreign Service officers + while en route to conference in Lima. Left U.S. November 25. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 958 secretary Cordell Hull @@ -238,7 +248,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 959 secretary Cordell Hull @@ -252,7 +262,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 960 secretary Cordell Hull @@ -266,7 +276,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 961 secretary Cordell Hull @@ -280,7 +290,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 962 secretary Cordell Hull @@ -294,7 +304,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 963 secretary Cordell Hull @@ -308,7 +318,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 964 secretary Cordell Hull @@ -316,13 +326,14 @@ 1940-07-30 Cuba Havana - Attended Conference of American States. Left U.S. July 19; returned August 1. + Attended Conference of American States. Left U.S. July 19; returned August + 1. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 965 secretary Cordell Hull @@ -336,7 +347,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 966 secretary Cordell Hull @@ -350,7 +361,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 967 secretary Cordell Hull @@ -364,7 +375,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 968 secretary Cordell Hull @@ -378,7 +389,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 969 secretary Cordell Hull @@ -386,13 +397,14 @@ 1943-10-17 Iran Tehran - Met with Shah Mohammed Reza Pahlavi and with British Foreign Secretary Eden. + Met with Shah Mohammed Reza Pahlavi and with British Foreign Secretary + Eden. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 970 secretary Cordell Hull @@ -400,10 +412,11 @@ 1943-11-03 U.S.S.R. Moscow - Attended Moscow Conference with British Foreign Secretary Eden and Soviet Foreign Minister Molotov. Returned to U.S. November 10. + Attended Moscow Conference with British Foreign Secretary Eden and Soviet Foreign + Minister Molotov. Returned to U.S. November 10. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/kellogg-frank-billings.xml b/secretary-travels/kellogg-frank-billings.xml index 4f6a872..70d487c 100644 --- a/secretary-travels/kellogg-frank-billings.xml +++ b/secretary-travels/kellogg-frank-billings.xml @@ -1,6 +1,6 @@ - + 971 secretary Frank Billings Kellogg @@ -8,13 +8,14 @@ 1927-08-07 Canada Ft. Erie - Attended dedication of the "Peace Bridge" between Buffalo, New York and Ft. Erie. + Attended dedication of the "Peace Bridge" between Buffalo, New York and Ft. + Erie. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 972 secretary Frank Billings Kellogg @@ -22,13 +23,14 @@ 1928-01-17 Cuba Havana - Attended the Sixth International Conference of American States with President Coolidge. Left U.S. January 14; returned January 20. + Attended the Sixth International Conference of American States with President + Coolidge. Left U.S. January 14; returned January 20. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2018-09-17T09:06:57.03-04:00 - + 973 secretary Frank Billings Kellogg @@ -42,7 +44,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 974 secretary Frank Billings Kellogg @@ -50,13 +52,14 @@ 1928-08-29 France Paris - Negotiated and signed the Treaty on the Renunciation of War (Kellogg-Briand Pact). Left U.S. August 19. + Negotiated and signed the Treaty on the Renunciation of War (Kellogg-Briand Pact). + Left U.S. August 19. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 975 secretary Frank Billings Kellogg @@ -70,7 +73,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 976 secretary Frank Billings Kellogg @@ -84,4 +87,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/kerry-john-forbes.xml b/secretary-travels/kerry-john-forbes.xml index 62e1d3d..654fc05 100644 --- a/secretary-travels/kerry-john-forbes.xml +++ b/secretary-travels/kerry-john-forbes.xml @@ -1,6 +1,6 @@ - + 3324 secretary John Forbes Kerry @@ -8,13 +8,14 @@ 2013-02-26 United Kingdom London - Met with Prime Minister David Cameron and Foreign Secretary William Hague. + Met with Prime Minister David Cameron and Foreign Secretary William + Hague. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3325 secretary John Forbes Kerry @@ -22,13 +23,14 @@ 2013-02-27 Germany Berlin - Met with Foreign Minister Guido Westerwelle, Chancellor Angela Merkel, and Russian Foreign Minister Sergey Lavrov. + Met with Foreign Minister Guido Westerwelle, Chancellor Angela Merkel, and Russian + Foreign Minister Sergey Lavrov. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3326 secretary John Forbes Kerry @@ -36,13 +38,14 @@ 2013-02-27 France Paris - Met with President Francois Hollande and Foreign Minister Laurent Fabius. Discussed the situation in Mali. + Met with President Francois Hollande and Foreign Minister Laurent Fabius. Discussed + the situation in Mali. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3327 secretary John Forbes Kerry @@ -50,13 +53,15 @@ 2013-03-01 Italy Rome - Met with Prime Minister Mario Monti, Foreign Minister Guilio de Sant’Agata, NATO Secretary General Anders Fogh Rasmussen, and the Foreign Ministers of the Baltic States. Also attended an Ad Hoc Meeting on Syria with Syrian Opposition leaders. + Met with Prime Minister Mario Monti, Foreign Minister Guilio de Sant’Agata, NATO + Secretary General Anders Fogh Rasmussen, and the Foreign Ministers of the Baltic States. + Also attended an Ad Hoc Meeting on Syria with Syrian Opposition leaders. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3328 secretary John Forbes Kerry @@ -64,13 +69,14 @@ 2013-03-02 Turkey Ankara - Met with President Abdullah Gul, Prime Minister Recep Tayyip Erdogan, and Foreign Minister Ahmed Davutoglu. Discussed the Syrian crisis. + Met with President Abdullah Gul, Prime Minister Recep Tayyip Erdogan, and Foreign + Minister Ahmed Davutoglu. Discussed the Syrian crisis. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3329 secretary John Forbes Kerry @@ -78,13 +84,15 @@ 2013-03-03 Egypt Cairo - Met with Arab League Secretary General Nabil al-Araby, Foreign Minister Mohamed Amr, President Mohammed Morsi, Defense Minister Abdul Fatah al-Sisi, and Egyptian political and business leaders. + Met with Arab League Secretary General Nabil al-Araby, Foreign Minister Mohamed + Amr, President Mohammed Morsi, Defense Minister Abdul Fatah al-Sisi, and Egyptian + political and business leaders. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3330 secretary John Forbes Kerry @@ -92,13 +100,14 @@ 2013-03-04 Saudi Arabia Riyadh - Met with the Gulf Cooperation Council Foreign Ministers and with Foreign Minister Prince Saud al-Faisal. + Met with the Gulf Cooperation Council Foreign Ministers and with Foreign Minister + Prince Saud al-Faisal. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3331 secretary John Forbes Kerry @@ -106,13 +115,14 @@ 2013-03-05 United Arab Emirates Abu Dhabi - Met with Crown Prince Mohamed bin Zayed al-Nahyan and Foreign Minister Abdullah bin Zayed al-Nahyan. + Met with Crown Prince Mohamed bin Zayed al-Nahyan and Foreign Minister Abdullah bin + Zayed al-Nahyan. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3332 secretary John Forbes Kerry @@ -120,13 +130,14 @@ 2013-03-06 Qatar Doha - Met with Emir Hamad bin Khalifa al-Thani, Heir Apparent Tamim bin Hammad al-Thani, and Prime Minister/Foreign Minister Hamad bin Jassin bin Jaber al-Thani. + Met with Emir Hamad bin Khalifa al-Thani, Heir Apparent Tamim bin Hammad al-Thani, + and Prime Minister/Foreign Minister Hamad bin Jassin bin Jaber al-Thani. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3333 secretary John Forbes Kerry @@ -134,13 +145,14 @@ 2013-03-06 Ireland Shannon - Met with Foreign Affairs Minister Eamon Gilmore while returning to the United States. + Met with Foreign Affairs Minister Eamon Gilmore while returning to the United + States. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3334 secretary John Forbes Kerry @@ -154,7 +166,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3335 secretary John Forbes Kerry @@ -168,7 +180,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3336 secretary John Forbes Kerry @@ -182,7 +194,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3337 secretary John Forbes Kerry @@ -196,7 +208,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3338 secretary John Forbes Kerry @@ -210,7 +222,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3339 secretary John Forbes Kerry @@ -218,13 +230,14 @@ 2013-03-27 France Paris - Met with Foreign Minister Laurent Fabius and addressed French business leaders. + Met with Foreign Minister Laurent Fabius and addressed French business + leaders. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3340 secretary John Forbes Kerry @@ -238,7 +251,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3341 secretary John Forbes Kerry @@ -246,13 +259,14 @@ 2013-04-09 Israel Jerusalem, Tel Aviv - Met with President Shimon Peres, Prime Minister Benjamin Netanyahu, and Palestinian Authority Prime Minister Salam Fayyad. + Met with President Shimon Peres, Prime Minister Benjamin Netanyahu, and Palestinian + Authority Prime Minister Salam Fayyad. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3342 secretary John Forbes Kerry @@ -266,7 +280,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3343 secretary John Forbes Kerry @@ -280,7 +294,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3344 secretary John Forbes Kerry @@ -288,13 +302,14 @@ 2013-04-13 Korea, Republic of Seoul - Met with President Park Gyeun-hye and Prime Minister Yun Byun-se. Addressed the American Chamber of Commerce. + Met with President Park Gyeun-hye and Prime Minister Yun Byun-se. Addressed the + American Chamber of Commerce. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3345 secretary John Forbes Kerry @@ -302,13 +317,14 @@ 2013-04-14 China, People’s Republic of Beijing - Met with President Xi Jinping, Premier Li Liqiang, and Foreign Minister Wang Yi. + Met with President Xi Jinping, Premier Li Liqiang, and Foreign Minister Wang + Yi. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3346 secretary John Forbes Kerry @@ -322,7 +338,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3347 secretary John Forbes Kerry @@ -330,13 +346,15 @@ 2013-04-21 Turkey Istanbul - Met with Foreign Minister Ahmed Davutoglu and attended a ministerial meeting of the Friends of the Syrian People Core Group. Also met with Palestinian Authority President Mahmoud Abbas and Ecumenical Patriarch Bartholomew. + Met with Foreign Minister Ahmed Davutoglu and attended a ministerial meeting of the + Friends of the Syrian People Core Group. Also met with Palestinian Authority President + Mahmoud Abbas and Ecumenical Patriarch Bartholomew. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3348 secretary John Forbes Kerry @@ -344,13 +362,15 @@ 2013-04-24 Belgium Brussels - Attended a NATO Foreign Minister’s Meeting. Also attended a NATO-Russia Council Ministerial meeting. Signed agreement with Lithuania on countering nuclear smuggling. Met with Afghan President Hamad Karzai and Pakistani General Ashfaq Kayani. + Attended a NATO Foreign Minister’s Meeting. Also attended a NATO-Russia Council + Ministerial meeting. Signed agreement with Lithuania on countering nuclear smuggling. + Met with Afghan President Hamad Karzai and Pakistani General Ashfaq Kayani. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3349 secretary John Forbes Kerry @@ -364,7 +384,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3350 secretary John Forbes Kerry @@ -372,13 +392,14 @@ 2013-05-09 Italy Rome - Met with Foreign Minister Emma Bonino, Jordanian Foreign Minister Nasser Judeh, and Israeli Justice Minister Tzipi Livni. + Met with Foreign Minister Emma Bonino, Jordanian Foreign Minister Nasser Judeh, and + Israeli Justice Minister Tzipi Livni. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3351 secretary John Forbes Kerry @@ -386,13 +407,14 @@ 2013-05-15 Sweden Stockholm, Kiruna - Met with Prime Minister Fredrik Reinfeldt and Foreign Minister Carl Bildt. Attended the Arctic Council Ministerial Meeting at Kiruna. + Met with Prime Minister Fredrik Reinfeldt and Foreign Minister Carl Bildt. Attended + the Arctic Council Ministerial Meeting at Kiruna. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3352 secretary John Forbes Kerry @@ -400,13 +422,14 @@ 2013-05-22 Oman Muscat - Met with Sultan Qaboos bin Said al Said and Defense Minister Said Badr al-Busaidi. + Met with Sultan Qaboos bin Said al Said and Defense Minister Said Badr + al-Busaidi. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3353 secretary John Forbes Kerry @@ -414,13 +437,14 @@ 2013-05-22 Jordan Amman - Met with King Abdullah II and Foreign Minister Nasser Judeh. Attended a London Eleven plenary meeting. + Met with King Abdullah II and Foreign Minister Nasser Judeh. Attended a London + Eleven plenary meeting. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3354 secretary John Forbes Kerry @@ -434,7 +458,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3355 secretary John Forbes Kerry @@ -448,7 +472,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3356 secretary John Forbes Kerry @@ -456,13 +480,14 @@ 2013-05-26 Ethiopia Addis Ababa - Attended the African Union Summit and commemorated the Golden Jubilee of the Organization of African Unity. + Attended the African Union Summit and commemorated the Golden Jubilee of the + Organization of African Unity. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3357 secretary John Forbes Kerry @@ -476,7 +501,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3358 secretary John Forbes Kerry @@ -484,13 +509,14 @@ 2013-05-28 France Paris - Met with French Foreign Minister Laurent Fabius and Russian Foreign Minister Sergey Lavrov. + Met with French Foreign Minister Laurent Fabius and Russian Foreign Minister Sergey + Lavrov. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3359 secretary John Forbes Kerry @@ -504,7 +530,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3360 secretary John Forbes Kerry @@ -512,13 +538,15 @@ 2013-06-23 Qatar Doha - Attended the London Eleven Plenary Meeting and met with Heir Apparent Sheikh Tamin al-Thani, Prime Minister/Foreign Minister Sheikh Hamad al-Thani and Amir Hamad al-Thani. + Attended the London Eleven Plenary Meeting and met with Heir Apparent Sheikh Tamin + al-Thani, Prime Minister/Foreign Minister Sheikh Hamad al-Thani and Amir Hamad + al-Thani. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3361 secretary John Forbes Kerry @@ -526,13 +554,14 @@ 2013-06-25 India New Delhi - Attended the Fourth Annual U.S.-India Strategic Dialogue and the Second U.S.-India Education Dialogue. + Attended the Fourth Annual U.S.-India Strategic Dialogue and the Second U.S.-India + Education Dialogue. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3362 secretary John Forbes Kerry @@ -546,7 +575,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3363 secretary John Forbes Kerry @@ -554,13 +583,14 @@ 2013-06-26 Kuwait Kuwait City - Met with Amir Sheikh Sabah al-Ahmed al-Sabah and Deputy Prime Minister/Foreign Minister Sheikh Sabah Khalid al-Sabah. + Met with Amir Sheikh Sabah al-Ahmed al-Sabah and Deputy Prime Minister/Foreign + Minister Sheikh Sabah Khalid al-Sabah. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3364 secretary John Forbes Kerry @@ -568,13 +598,14 @@ 2013-06-27 Jordan Amman - Met with King Abdullah II and Palestinian Authority President Mahmoud Abbas. + Met with King Abdullah II and Palestinian Authority President Mahmoud + Abbas. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3366 secretary John Forbes Kerry @@ -588,7 +619,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3367 secretary John Forbes Kerry @@ -602,7 +633,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3365 secretary John Forbes Kerry @@ -610,13 +641,14 @@ 2013-06-29 Jordan Amman - Met with King Abdullah II and Palestinian Authority President Mahmoud Abbas. + Met with King Abdullah II and Palestinian Authority President Mahmoud + Abbas. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3368 secretary John Forbes Kerry @@ -630,7 +662,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3369 secretary John Forbes Kerry @@ -638,13 +670,15 @@ 2013-07-02 Brunei Bandar Seri Begawan - Attended the ASEAN-U.S. Ministerial, Lower Mekong Initiative and Friends of the Lower Mekong Ministerial Meetings, the 20th ASEAN Regional Forum, and the 3rd East Asia Summit Foreign Ministers Meeting. + Attended the ASEAN-U.S. Ministerial, Lower Mekong Initiative and Friends of the + Lower Mekong Ministerial Meetings, the 20th ASEAN Regional Forum, and the 3rd East Asia + Summit Foreign Ministers Meeting. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3370 secretary John Forbes Kerry @@ -652,13 +686,15 @@ 2013-07-19 Jordan Amman - Met with Foreign Minister Nasser Judeh and Palestinian Authority President Mahmoud Abbas. Attended an Arab League Peace Initiative Meeting. Visited the Za’atri Refugee Camp. + Met with Foreign Minister Nasser Judeh and Palestinian Authority President Mahmoud + Abbas. Attended an Arab League Peace Initiative Meeting. Visited the Za’atri Refugee + Camp. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3371 secretary John Forbes Kerry @@ -672,7 +708,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3372 secretary John Forbes Kerry @@ -680,13 +716,14 @@ 2013-08-02 Pakistan Islamabad - Met with President Asif Zardari, Prime Minister Nawaz Sharif, National Security Adviser Sartaj Aziz. Visited Zero Point Power Plant. + Met with President Asif Zardari, Prime Minister Nawaz Sharif, National Security + Adviser Sartaj Aziz. Visited Zero Point Power Plant. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3373 secretary John Forbes Kerry @@ -700,7 +737,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3374 secretary John Forbes Kerry @@ -708,13 +745,14 @@ 2013-08-13 Colombia Bogota - Met with President Juan Manuel Santos, Foreign Minister Maria Angela Holguin, Defense Minister Juan Carlos Pinzon, and Colombian Peace Negotiators. + Met with President Juan Manuel Santos, Foreign Minister Maria Angela Holguin, + Defense Minister Juan Carlos Pinzon, and Colombian Peace Negotiators. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3375 secretary John Forbes Kerry @@ -722,13 +760,14 @@ 2013-08-13 Brazil Brasilia - Met with President Dilma Roussef, Foreign Minister Antonio Patriota, and Education Minister Aloizio Mercadante. + Met with President Dilma Roussef, Foreign Minister Antonio Patriota, and Education + Minister Aloizio Mercadante. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3376 secretary John Forbes Kerry @@ -736,13 +775,14 @@ 2013-09-07 Lithuania Vilnius - Met with the EU Foreign Ministers and with Lithuanian President Dalia Gribauskaite and Foreign Minister Linas Linkevicius. + Met with the EU Foreign Ministers and with Lithuanian President Dalia Gribauskaite + and Foreign Minister Linas Linkevicius. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3377 secretary John Forbes Kerry @@ -750,13 +790,14 @@ 2013-09-08 France Paris - Met with Foreign Minister Laurent Fabius and the Ministerial Delegation of the Arab Peace Initiative. + Met with Foreign Minister Laurent Fabius and the Ministerial Delegation of the Arab + Peace Initiative. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3378 secretary John Forbes Kerry @@ -764,13 +805,14 @@ 2013-09-09 United Kingdom London - Met with Palestinian Authority President Mahmoud Abbas and with Foreign Secretary William Hague. + Met with Palestinian Authority President Mahmoud Abbas and with Foreign Secretary + William Hague. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3379 secretary John Forbes Kerry @@ -778,13 +820,14 @@ 2013-09-15 Switzerland Geneva - Discussed the Syrian crisis with Russian Foreign Minister Sergey Lavrov. Announced Framework for the Elimination of Syrian Chemical Weapons. + Discussed the Syrian crisis with Russian Foreign Minister Sergey Lavrov. Announced + Framework for the Elimination of Syrian Chemical Weapons. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3380 secretary John Forbes Kerry @@ -798,7 +841,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3381 secretary John Forbes Kerry @@ -806,13 +849,15 @@ 2013-09-16 France Paris - Met with President Francois Hollande, Foreign Minister Laurent Fabius, British Foreign Secretary William Hague, Turkish Foreign Minister Ahmet Davutoglu, and Saudi Foreign Minister Saud al-Faisal. + Met with President Francois Hollande, Foreign Minister Laurent Fabius, British + Foreign Secretary William Hague, Turkish Foreign Minister Ahmet Davutoglu, and Saudi + Foreign Minister Saud al-Faisal. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3382 secretary John Forbes Kerry @@ -820,13 +865,15 @@ 2013-10-04 Japan Tokyo - Attended the U.S.-Japan Security Consultative Committee meeting. Signed Protocol to amend the Guam International Agreement concerning redeployment of U.S. forces from Okinawa to Guam. + Attended the U.S.-Japan Security Consultative Committee meeting. Signed Protocol to + amend the Guam International Agreement concerning redeployment of U.S. forces from + Okinawa to Guam. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3383 secretary John Forbes Kerry @@ -834,13 +881,14 @@ 2013-10-09 Indonesia Bali - Attended the APEC Ministerial Meeting and the APEC CEO Summit Meeting. Signed Nuclear Risk Reduction Agreement with Russian Foreign Minister Sergey Lavrov. + Attended the APEC Ministerial Meeting and the APEC CEO Summit Meeting. Signed + Nuclear Risk Reduction Agreement with Russian Foreign Minister Sergey Lavrov. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3384 secretary John Forbes Kerry @@ -854,7 +902,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3385 secretary John Forbes Kerry @@ -868,7 +916,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3386 secretary John Forbes Kerry @@ -882,7 +930,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3615 secretary John Forbes Kerry @@ -890,13 +938,15 @@ 2013-10-14 United Kingdom London - Met with EU High Representative Catherine Ashton. Addressed the AIPAC National Summit by satellite. Also met with UN Special Representative for Syria Lakhdar Brahimi. + Met with EU High Representative Catherine Ashton. Addressed the AIPAC National + Summit by satellite. Also met with UN Special Representative for Syria Lakhdar + Brahimi. wicentowskijc 2016-08-16T10:38:12.81-04:00 wicentowskijc 2016-08-16T10:38:12.81-04:00 - + 3387 secretary John Forbes Kerry @@ -904,13 +954,15 @@ 2013-10-22 France Paris - Met with members of the Arab Peace Initiative Follow-up Committee, Saudi Foreign Minister Saud al-Faisal, Foreign Minister Laurent Fabius, and members of the Syrian Opposition Coalition. + Met with members of the Arab Peace Initiative Follow-up Committee, Saudi Foreign + Minister Saud al-Faisal, Foreign Minister Laurent Fabius, and members of the Syrian + Opposition Coalition. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3388 secretary John Forbes Kerry @@ -924,7 +976,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3389 secretary John Forbes Kerry @@ -932,13 +984,14 @@ 2013-10-24 Italy Rome - Met with Prime Minister Enrico Letta and Israeli Prime Minister Benjamin Netanyahu. + Met with Prime Minister Enrico Letta and Israeli Prime Minister Benjamin + Netanyahu. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3390 secretary John Forbes Kerry @@ -946,13 +999,14 @@ 2013-11-03 Egypt Cairo - Met with Interim President Adly Mansour, Foreign Minister Nabil Fahmy, and Defense Minister Abdul Fatah al-Sisi. + Met with Interim President Adly Mansour, Foreign Minister Nabil Fahmy, and Defense + Minister Abdul Fatah al-Sisi. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3391 secretary John Forbes Kerry @@ -960,13 +1014,14 @@ 2013-11-04 Saudi Arabia Riyadh - Met with Foreign Minister Saud al-Faisal and King Abdullah bin Abdulaziz al-Saud. + Met with Foreign Minister Saud al-Faisal and King Abdullah bin Abdulaziz + al-Saud. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3392 secretary John Forbes Kerry @@ -974,13 +1029,15 @@ 2013-11-05 Poland Warsaw, Lask - Wreath-laying at the grave of former Prime Minister Tadeusz Mazowiecki. Met with Prime Minister Donald Tusk and Foreign Minister Radoslaw Sikorski. Medal award ceremony at Lask air base. + Wreath-laying at the grave of former Prime Minister Tadeusz Mazowiecki. Met with + Prime Minister Donald Tusk and Foreign Minister Radoslaw Sikorski. Medal award ceremony + at Lask air base. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3393 secretary John Forbes Kerry @@ -988,13 +1045,14 @@ 2013-11-07 Israel Tel Aviv, Jerusalem - Wreath-laying ceremony at the Yitzhak Rabin Memorial. Met with President Shimon Peres and Prime Minister Benjamin Netanyahu. + Wreath-laying ceremony at the Yitzhak Rabin Memorial. Met with President Shimon + Peres and Prime Minister Benjamin Netanyahu. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3394 secretary John Forbes Kerry @@ -1002,13 +1060,14 @@ 2013-11-06 Palestinian Authority Bethlehem - Met with President Mahmoud Abbas and attended a High Impact Microfinance Infrastructure Initiative Event. + Met with President Mahmoud Abbas and attended a High Impact Microfinance + Infrastructure Initiative Event. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3395 secretary John Forbes Kerry @@ -1016,13 +1075,14 @@ 2013-11-06 Jordan Amman - Met with King Abdullah II, Foreign Minister Nasser Judeh, and Palestinian Authority President Mahmoud Abbas. + Met with King Abdullah II, Foreign Minister Nasser Judeh, and Palestinian Authority + President Mahmoud Abbas. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3396 secretary John Forbes Kerry @@ -1036,7 +1096,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3397 secretary John Forbes Kerry @@ -1044,13 +1104,14 @@ 2013-11-10 Switzerland Geneva - Met with EU High Representative Catherine Ashton, French Foreign Minister Laurent Fabius, and Iranian Foreign Minister Mohammed Zarif. + Met with EU High Representative Catherine Ashton, French Foreign Minister Laurent + Fabius, and Iranian Foreign Minister Mohammed Zarif. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3398 secretary John Forbes Kerry @@ -1058,13 +1119,14 @@ 2013-11-11 United Arab Emirates Abu Dhabi - Met with Crown Prince Mohammed bin Zayed al-Nahyan and Foreign Minister Abdullah bin Zayed al-Nahyan. + Met with Crown Prince Mohammed bin Zayed al-Nahyan and Foreign Minister Abdullah + bin Zayed al-Nahyan. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3399 secretary John Forbes Kerry @@ -1072,13 +1134,14 @@ 2013-11-24 Switzerland Geneva - Met with the P5+1 representatives and Iranian Foreign Minister Mohammed Zarif. Announced a First Step Agreement on Iran’s Nuclear Program. + Met with the P5+1 representatives and Iranian Foreign Minister Mohammed Zarif. + Announced a First Step Agreement on Iran’s Nuclear Program. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3400 secretary John Forbes Kerry @@ -1086,13 +1149,14 @@ 2013-11-25 United Kingdom London - Met with Foreign Secretary William Hague and Libyan Prime Minister Ali Zeidan. + Met with Foreign Secretary William Hague and Libyan Prime Minister Ali + Zeidan. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3401 secretary John Forbes Kerry @@ -1100,13 +1164,14 @@ 2013-12-04 Belgium Brussels - Attended the NATO Foreign Ministers’ Meeting and a NATO-Russia Council Meeting. Signed Cyber Partnership Agreement with Estonia. + Attended the NATO Foreign Ministers’ Meeting and a NATO-Russia Council Meeting. + Signed Cyber Partnership Agreement with Estonia. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3402 secretary John Forbes Kerry @@ -1114,13 +1179,14 @@ 2013-12-04 Moldova Chisinau - Met with President Nicolae Timofti and Prime Minister Iurie Leanca. Attended a Trade and Investment Showcast. + Met with President Nicolae Timofti and Prime Minister Iurie Leanca. Attended a + Trade and Investment Showcast. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3403 secretary John Forbes Kerry @@ -1128,13 +1194,14 @@ 2013-12-06 Israel Jerusalem - Met with Prime Minister Benjamin Netanyahu and Finance Minister Yair Lapid. + Met with Prime Minister Benjamin Netanyahu and Finance Minister Yair + Lapid. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3404 secretary John Forbes Kerry @@ -1148,7 +1215,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3405 secretary John Forbes Kerry @@ -1162,7 +1229,7 @@ wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3406 secretary John Forbes Kerry @@ -1170,13 +1237,15 @@ 2013-12-17 Vietnam Ho Chi Minh City, Ca Mau, Hanoi - Met with American and Vietnamese business leaders, addressed the American Chamber of Commerce, delivered an address on climate change, and met with Foreign Minister Pham Binh Minh. + Met with American and Vietnamese business leaders, addressed the American Chamber + of Commerce, delivered an address on climate change, and met with Foreign Minister Pham + Binh Minh. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3407 secretary John Forbes Kerry @@ -1184,13 +1253,14 @@ 2013-12-18 Philippines Manila, Tacloban - Met with President Benigno Aquino and Foreign Secretary Albert del Rosario. Visited a USAID Forward Operating Base. + Met with President Benigno Aquino and Foreign Secretary Albert del Rosario. Visited + a USAID Forward Operating Base. wicentowskijc 2014-06-10T10:38:12.81-04:00 wicentowskijc 2014-06-10T10:38:12.81-04:00 - + 3445 secretary John Forbes Kerry @@ -1198,13 +1268,14 @@ 2014-01-05 Israel Jerusalem - Met with Prime Minister Benjamin Netanyahu and Foreign Minister Avigdor Lieberman. + Met with Prime Minister Benjamin Netanyahu and Foreign Minister Avigdor + Lieberman. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3446 secretary John Forbes Kerry @@ -1218,7 +1289,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3447 secretary John Forbes Kerry @@ -1232,7 +1303,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3448 secretary John Forbes Kerry @@ -1246,7 +1317,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3449 secretary John Forbes Kerry @@ -1254,13 +1325,14 @@ 2014-01-14 France Paris - Attended the London 11 Ministerial Meeting and the Arab Peace Initiative Follow-up Committee Meeting. Met with Russian Foreign Minister Sergei Lavrov. + Attended the London 11 Ministerial Meeting and the Arab Peace Initiative Follow-up + Committee Meeting. Met with Russian Foreign Minister Sergei Lavrov. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3450 secretary John Forbes Kerry @@ -1274,7 +1346,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3451 secretary John Forbes Kerry @@ -1288,7 +1360,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3452 secretary John Forbes Kerry @@ -1302,7 +1374,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3453 secretary John Forbes Kerry @@ -1310,13 +1382,14 @@ 2014-02-02 Germany Berlin, Munich - Met with Chancellor Angela Merkel and Foreign Minister Frank-Walter Steinmeier. Attended the 50th Munich Security Conference. + Met with Chancellor Angela Merkel and Foreign Minister Frank-Walter Steinmeier. + Attended the 50th Munich Security Conference. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3454 secretary John Forbes Kerry @@ -1330,7 +1403,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3455 secretary John Forbes Kerry @@ -1338,13 +1411,14 @@ 2014-02-15 China, People’s Republic of Beijing - Met with President Xi Jinping, Foreign Minister Wang Yi, and Premier Li Keqiang. Visited a joint venture plant. + Met with President Xi Jinping, Foreign Minister Wang Yi, and Premier Li Keqiang. + Visited a joint venture plant. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3456 secretary John Forbes Kerry @@ -1352,13 +1426,16 @@ 2014-02-17 Indonesia Jakarta - Met with ASEAN Secretary-General Li Luong Minh, Foreign Minister Marty Natalegawa. Delivered an address on climate change. Attended a Joint Commission meeting. Signed Memoranda of Understanding on South-South Triangular Cooperation and Wildlife Trafficking. + Met with ASEAN Secretary-General Li Luong Minh, Foreign Minister Marty Natalegawa. + Delivered an address on climate change. Attended a Joint Commission meeting. Signed + Memoranda of Understanding on South-South Triangular Cooperation and Wildlife + Trafficking. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3457 secretary John Forbes Kerry @@ -1366,13 +1443,14 @@ 2014-02-18 United Arab Emirates Abu Dhabi - Met with Crown Prince Mohammed bin Zayed al-Nahyan and Foreign Minister Abdullah bin Zayed al-Nahyan. + Met with Crown Prince Mohammed bin Zayed al-Nahyan and Foreign Minister Abdullah + bin Zayed al-Nahyan. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3458 secretary John Forbes Kerry @@ -1386,7 +1464,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3459 secretary John Forbes Kerry @@ -1394,13 +1472,14 @@ 2014-02-20 France Paris - Met with Foreign Minister Laurent Fabius, Palestinian Authority President Mahmoud Abbas, and Jordanian Foreign Minister Nasser Judeh. + Met with Foreign Minister Laurent Fabius, Palestinian Authority President Mahmoud + Abbas, and Jordanian Foreign Minister Nasser Judeh. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3460 secretary John Forbes Kerry @@ -1408,13 +1487,14 @@ 2014-03-04 Ukraine Kyiv - Met with Acting President Oleksandr Turchynov, Prime Minister Arseniy Yatsenyuk, and political and religious leaders. + Met with Acting President Oleksandr Turchynov, Prime Minister Arseniy Yatsenyuk, + and political and religious leaders. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3461 secretary John Forbes Kerry @@ -1422,13 +1502,14 @@ 2014-03-05 France Paris - Attended the Budapest Memorandum Ministerial Meeting and a meeting of the International Support Group for Lebanon. + Attended the Budapest Memorandum Ministerial Meeting and a meeting of the + International Support Group for Lebanon. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3462 secretary John Forbes Kerry @@ -1436,13 +1517,14 @@ 2014-03-06 Italy Rome - Met with Prime Minister Matteo Renzi and Foreign Minister Federica Mogherini. Attended a conference on International Support to Libya. + Met with Prime Minister Matteo Renzi and Foreign Minister Federica Mogherini. + Attended a conference on International Support to Libya. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3463 secretary John Forbes Kerry @@ -1456,7 +1538,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3464 secretary John Forbes Kerry @@ -1464,13 +1546,14 @@ 2014-03-14 United Kingdom London - Discussed the Ukrainian crisis with Russian Foreign Minister Sergei Lavrov. + Discussed the Ukrainian crisis with Russian Foreign Minister Sergei + Lavrov. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3465 secretary John Forbes Kerry @@ -1478,13 +1561,14 @@ 2014-03-25 Netherlands The Hague - Accompanied President Obama to a G-7 Leaders’ Meeting on the Ukrainian crisis. + Accompanied President Obama to a G-7 Leaders’ Meeting on the Ukrainian + crisis. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3466 secretary John Forbes Kerry @@ -1498,7 +1582,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3467 secretary John Forbes Kerry @@ -1512,7 +1596,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3468 secretary John Forbes Kerry @@ -1520,13 +1604,14 @@ 2014-03-26 Jordan Amman - Met with King Abdullah II and Palestinian Authority President Mahmoud Abbas. + Met with King Abdullah II and Palestinian Authority President Mahmoud + Abbas. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3469 secretary John Forbes Kerry @@ -1540,7 +1625,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3470 secretary John Forbes Kerry @@ -1554,7 +1639,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3471 secretary John Forbes Kerry @@ -1562,13 +1647,14 @@ 2014-03-30 France Paris - Met with Foreign Minister Laurent Fabius and Russian Foreign Minister Sergei Lavrov. + Met with Foreign Minister Laurent Fabius and Russian Foreign Minister Sergei + Lavrov. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3472 secretary John Forbes Kerry @@ -1582,7 +1668,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3473 secretary John Forbes Kerry @@ -1596,7 +1682,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3474 secretary John Forbes Kerry @@ -1604,13 +1690,14 @@ 2014-04-02 Belgium Brussels - Attended the NATO Foreign Ministerial Meeting and meetings of the NATO-Ukraine and NATO-Georgia Commissions. Co-chaired the 5th U.S.-EU Energy Council Meeting. + Attended the NATO Foreign Ministerial Meeting and meetings of the NATO-Ukraine and + NATO-Georgia Commissions. Co-chaired the 5th U.S.-EU Energy Council Meeting. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3475 secretary John Forbes Kerry @@ -1624,7 +1711,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3476 secretary John Forbes Kerry @@ -1638,7 +1725,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3477 secretary John Forbes Kerry @@ -1646,13 +1733,15 @@ 2014-04-17 Switzerland Geneva - Discussed the Ukrainian crisis with representatives of Russia, Ukraine, and the European Union. Discussed the Syrian crisis with Joint Special Representative Lakhdar Brahimi. + Discussed the Ukrainian crisis with representatives of Russia, Ukraine, and the + European Union. Discussed the Syrian crisis with Joint Special Representative Lakhdar + Brahimi. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3478 secretary John Forbes Kerry @@ -1660,13 +1749,14 @@ 2014-05-03 Ethiopia Addis Ababa - Co-convened the 4th Session of the U.S.-AU High Level Dialogue. Met with Somali President Hassan Sheikh Mohamud. + Co-convened the 4th Session of the U.S.-AU High Level Dialogue. Met with Somali + President Hassan Sheikh Mohamud. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3479 secretary John Forbes Kerry @@ -1674,13 +1764,14 @@ 2014-05-02 South Sudan Juba - Met with President Salva Kiir, civil society leaders and UNMISS representatives. + Met with President Salva Kiir, civil society leaders and UNMISS + representatives. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3480 secretary John Forbes Kerry @@ -1688,13 +1779,15 @@ 2014-05-04 Congo, Democratic Republic of Kinshasa - Met with Foreign Minister Raymond Tshibanda, participants in the Young Africa Leaders Initiative UN Special Representative Martin Kobler, and President Joseph Kabila. + Met with Foreign Minister Raymond Tshibanda, participants in the Young Africa + Leaders Initiative UN Special Representative Martin Kobler, and President Joseph + Kabila. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3481 secretary John Forbes Kerry @@ -1702,13 +1795,14 @@ 2014-05-05 Angola Luanda - Met with President Jose Eduardo dos Santos and Foreign Minister Georges Chikoli. Visited a GE facility. + Met with President Jose Eduardo dos Santos and Foreign Minister Georges Chikoli. + Visited a GE facility. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3482 secretary John Forbes Kerry @@ -1716,13 +1810,14 @@ 2014-05-16 United Kingdom London - Attended a meeting of the London 11 (Friends of the Syrian People) and the Syrian Opposition Coalition. + Attended a meeting of the London 11 (Friends of the Syrian People) and the Syrian + Opposition Coalition. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3483 secretary John Forbes Kerry @@ -1730,13 +1825,15 @@ 2014-05-22 Mexico Mexico City - Met with President Enrico Pena Nieto and Foreign Secretary Jose Antonio Meade. Attended a Joint Bilateral Forum on Higher Education, Innovation, and Research; a CleanTech Challenge Launch event, and a U.S.-Mexico CEO Dialogue dinner. + Met with President Enrico Pena Nieto and Foreign Secretary Jose Antonio Meade. + Attended a Joint Bilateral Forum on Higher Education, Innovation, and Research; a + CleanTech Challenge Launch event, and a U.S.-Mexico CEO Dialogue dinner. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3484 secretary John Forbes Kerry @@ -1744,13 +1841,14 @@ 2014-06-04 Poland Warsaw - Accompanied President Obama. Signed a Framework Agreement on Innovation. Met with Ukrainian President-elect Petro Poroshenko. + Accompanied President Obama. Signed a Framework Agreement on Innovation. Met with + Ukrainian President-elect Petro Poroshenko. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3485 secretary John Forbes Kerry @@ -1758,13 +1856,14 @@ 2014-06-04 Lebanon Beirut - Met with Prime Minister Tammam Salam. Participated in a round-table with non-governmental organizations. + Met with Prime Minister Tammam Salam. Participated in a round-table with + non-governmental organizations. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3486 secretary John Forbes Kerry @@ -1772,13 +1871,14 @@ 2014-06-07 France Paris, Normandy, St. Briac - Accompanied President Obama. Took part in commemorations of the 70th anniversary of the Normandy invasion. + Accompanied President Obama. Took part in commemorations of the 70th anniversary of + the Normandy invasion. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3487 secretary John Forbes Kerry @@ -1792,7 +1892,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3488 secretary John Forbes Kerry @@ -1800,13 +1900,14 @@ 2014-06-22 Egypt Cairo - Met with President Abdel Fattah al-Sisi, Foreign Minister Sameh Shoukry, and Arab League Secretary-General Nabil al-Araby. + Met with President Abdel Fattah al-Sisi, Foreign Minister Sameh Shoukry, and Arab + League Secretary-General Nabil al-Araby. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3489 secretary John Forbes Kerry @@ -1820,7 +1921,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3490 secretary John Forbes Kerry @@ -1828,13 +1929,14 @@ 2014-06-24 Iraq Baghdad, Erbil - Met with President Nouri al-Maliki and Iraqi political leaders, and with Kurdistan regional leaders in Erbil. + Met with President Nouri al-Maliki and Iraqi political leaders, and with Kurdistan + regional leaders in Erbil. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3491 secretary John Forbes Kerry @@ -1848,7 +1950,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3492 secretary John Forbes Kerry @@ -1856,13 +1958,14 @@ 2014-06-27 France Paris - Met with Foreign Minister Laurent Fabius and with the Foreign Ministers of Israel, Saudi Arabia, the United Arab Emirates, and Jordan. + Met with Foreign Minister Laurent Fabius and with the Foreign Ministers of Israel, + Saudi Arabia, the United Arab Emirates, and Jordan. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3493 secretary John Forbes Kerry @@ -1870,13 +1973,14 @@ 2014-06-27 Saudi Arabia Jeddah - Met with King Abdullah bin Abdulaziz al-Saud and Syrian Opposition Coalition President Ahmad Jarba. + Met with King Abdullah bin Abdulaziz al-Saud and Syrian Opposition Coalition + President Ahmad Jarba. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3494 secretary John Forbes Kerry @@ -1884,13 +1988,14 @@ 2014-07-01 Panama Panama City - Attended the inauguration of President Juan Carlos Varela Rodriguez. Met with the Presidents of El Salvador, Guatemala, and Honduras. + Attended the inauguration of President Juan Carlos Varela Rodriguez. Met with the + Presidents of El Salvador, Guatemala, and Honduras. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3495 secretary John Forbes Kerry @@ -1898,13 +2003,14 @@ 2014-07-10 China, People’s Republic of Beijing - Attended the Sixth Round of the U.S.-China Strategic and Economic Dialogue. + Attended the Sixth Round of the U.S.-China Strategic and Economic + Dialogue. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3496 secretary John Forbes Kerry @@ -1912,13 +2018,14 @@ 2014-07-12 Afghanistan Kabul - Met with President Hamid Karzai, Afghan political leaders, and the head of the UN Assistance Mission. + Met with President Hamid Karzai, Afghan political leaders, and the head of the UN + Assistance Mission. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3497 secretary John Forbes Kerry @@ -1926,13 +2033,14 @@ 2014-07-15 Austria Vienna - Met with Iranian Foreign Minister Javad Zarif and various P5+1 Foreign Ministers. + Met with Iranian Foreign Minister Javad Zarif and various P5+1 Foreign + Ministers. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3498 secretary John Forbes Kerry @@ -1940,13 +2048,15 @@ 2014-07-23 Egypt Cairo - Discussed the Gaza crisis with UN Secretary-General Ban Ki-Moon, Arab League Secretary-General Nabil al-Araby, President Abdel Fattah al-Sisi, and Foreign Minister Sameh Shoukry. + Discussed the Gaza crisis with UN Secretary-General Ban Ki-Moon, Arab League + Secretary-General Nabil al-Araby, President Abdel Fattah al-Sisi, and Foreign Minister + Sameh Shoukry. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3499 secretary John Forbes Kerry @@ -1954,13 +2064,14 @@ 2014-07-23 Israel Jerusalem, Tel Aviv - Met with UN Secretary-General Ban Ki-Moon and Prime Minister Benjamin Netanyahu. + Met with UN Secretary-General Ban Ki-Moon and Prime Minister Benjamin + Netanyahu. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3500 secretary John Forbes Kerry @@ -1974,7 +2085,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3501 secretary John Forbes Kerry @@ -1982,13 +2093,15 @@ 2014-07-25 Egypt Cairo - Discussed the Gaza crisis with UN Secretary-General Ban Ki-Moon, Arab League Secretary-General Nabil al-Araby, President Abdel Fattah al-Sisi, and Foreign Minister Sameh Shoukry. + Discussed the Gaza crisis with UN Secretary-General Ban Ki-Moon, Arab League + Secretary-General Nabil al-Araby, President Abdel Fattah al-Sisi, and Foreign Minister + Sameh Shoukry. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3502 secretary John Forbes Kerry @@ -1996,13 +2109,14 @@ 2014-07-26 France Paris - Met with the Foreign Ministers of France, the United Kingdom, Germany, Italy, Qatar, and Turkey. + Met with the Foreign Ministers of France, the United Kingdom, Germany, Italy, + Qatar, and Turkey. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3503 secretary John Forbes Kerry @@ -2016,7 +2130,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3504 secretary John Forbes Kerry @@ -2024,13 +2138,14 @@ 2014-08-08 Afghanistan Kabul - Met with President Hamid Karzai and presidential candidates Abdullah Abdullah and Ashraf Ghani. + Met with President Hamid Karzai and presidential candidates Abdullah Abdullah and + Ashraf Ghani. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3505 secretary John Forbes Kerry @@ -2038,13 +2153,14 @@ 2014-08-10 Burma Nay Pyi Taw, Rangoon - Attended the U.S.-ASEAN and Lower Mekong Initiatives, the ASEAN Regional Forum, and the East Asia Summit ministerial meetings. + Attended the U.S.-ASEAN and Lower Mekong Initiatives, the ASEAN Regional Forum, and + the East Asia Summit ministerial meetings. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3506 secretary John Forbes Kerry @@ -2058,7 +2174,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3507 secretary John Forbes Kerry @@ -2066,13 +2182,15 @@ 2014-08-13 Solomon Islands Honiara - Met with Governor General Frank Kabui and Prime Minister Gordon Lilo. Attended wreath-laying ceremonies at the Guadalcanal American Memorial and the Solomons Scouts and Coastwatchers Memorial. + Met with Governor General Frank Kabui and Prime Minister Gordon Lilo. Attended + wreath-laying ceremonies at the Guadalcanal American Memorial and the Solomons Scouts + and Coastwatchers Memorial. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3508 secretary John Forbes Kerry @@ -2086,7 +2204,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3509 secretary John Forbes Kerry @@ -2094,13 +2212,14 @@ 2014-09-10 Iraq Baghdad - Met with President Fuad Masum, Prime Minister Haidar al-Abadi, Foreign Minister Ibrahim al-Ja’fari, and Council of Representatives Speaker Salim al-Jabouri. + Met with President Fuad Masum, Prime Minister Haidar al-Abadi, Foreign Minister + Ibrahim al-Ja’fari, and Council of Representatives Speaker Salim al-Jabouri. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3510 secretary John Forbes Kerry @@ -2114,7 +2233,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3511 secretary John Forbes Kerry @@ -2122,13 +2241,15 @@ 2014-09-12 Saudi Arabia Jeddah - Met with King Abdullah, attended a meeting of the Gulf Cooperation Council and Regional Partners, and met with representatives of the Organization of the Islamic Conference. + Met with King Abdullah, attended a meeting of the Gulf Cooperation Council and + Regional Partners, and met with representatives of the Organization of the Islamic + Conference. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3512 secretary John Forbes Kerry @@ -2136,13 +2257,14 @@ 2014-09-13 Turkey Ankara - Met with President Recep Tayyip Erdogan, Prime Minister Ahmed Davutoglu, and Foreign Minister Mevlut Cavusoglu. + Met with President Recep Tayyip Erdogan, Prime Minister Ahmed Davutoglu, and + Foreign Minister Mevlut Cavusoglu. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3513 secretary John Forbes Kerry @@ -2150,13 +2272,14 @@ 2014-09-14 Egypt Cairo - Met with President Abdel Fattah al-Sisi, Foreign Minister Sameh Shoukry, and Arab League Secretary-General Nabil al-Araby. + Met with President Abdel Fattah al-Sisi, Foreign Minister Sameh Shoukry, and Arab + League Secretary-General Nabil al-Araby. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3514 secretary John Forbes Kerry @@ -2170,7 +2293,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3515 secretary John Forbes Kerry @@ -2184,7 +2307,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3516 secretary John Forbes Kerry @@ -2192,13 +2315,14 @@ 2014-10-14 France Paris - Met with Foreign Minister Laurent Fabius, Russian Foreign Minister Sergei Lavrov, and Libyan Foreign Minister Mohammed al-Dairi. + Met with Foreign Minister Laurent Fabius, Russian Foreign Minister Sergei Lavrov, + and Libyan Foreign Minister Mohammed al-Dairi. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3517 secretary John Forbes Kerry @@ -2206,13 +2330,14 @@ 2014-10-15 Austria Vienna - Trilateral meeting with EU High Representative Lady Catherine Ashton and Iranian Foreign Minister Mohammad Javad Zarif. + Trilateral meeting with EU High Representative Lady Catherine Ashton and Iranian + Foreign Minister Mohammad Javad Zarif. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3518 secretary John Forbes Kerry @@ -2226,7 +2351,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3519 secretary John Forbes Kerry @@ -2234,13 +2359,14 @@ 2014-10-22 Germany Berlin - Met with Chancellor Angela Merkel and Foreign Minister Frank-Walter Steinmeier. + Met with Chancellor Angela Merkel and Foreign Minister Frank-Walter + Steinmeier. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3520 secretary John Forbes Kerry @@ -2254,7 +2380,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3521 secretary John Forbes Kerry @@ -2262,13 +2388,14 @@ 2014-11-06 France Paris - Met with Foreign Minister Laurent Fabius, Jordanian Foreign Minister Nasser Judeh and Quartet Representative Tony Blair. + Met with Foreign Minister Laurent Fabius, Jordanian Foreign Minister Nasser Judeh + and Quartet Representative Tony Blair. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3522 secretary John Forbes Kerry @@ -2282,7 +2409,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3523 secretary John Forbes Kerry @@ -2290,13 +2417,14 @@ 2014-11-11 Oman Muscat - Attended a trilateral meeting with EU High Representative Lady Catherine Ashton and Iranian Foreign Minister Mohammad Javad Zarif. + Attended a trilateral meeting with EU High Representative Lady Catherine Ashton and + Iranian Foreign Minister Mohammad Javad Zarif. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3524 secretary John Forbes Kerry @@ -2310,7 +2438,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3525 secretary John Forbes Kerry @@ -2318,13 +2446,15 @@ 2014-11-13 Jordan Amman - Met with King Abdullah II, Foreign Minister Nasser Judeh, and Palestinian Authority President Mahmoud Abbas. Attended a bilateral meeting of King Abdullah II and Israeli Prime Minister Benjamin Netanyahu. + Met with King Abdullah II, Foreign Minister Nasser Judeh, and Palestinian Authority + President Mahmoud Abbas. Attended a bilateral meeting of King Abdullah II and Israeli + Prime Minister Benjamin Netanyahu. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3526 secretary John Forbes Kerry @@ -2338,7 +2468,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3527 secretary John Forbes Kerry @@ -2346,13 +2476,14 @@ 2014-11-24 Austria Vienna - Attended meetings with the P5+1 representatives, EU High Representative Ashton, and Iranian Foreign Minister Zarif. + Attended meetings with the P5+1 representatives, EU High Representative Ashton, and + Iranian Foreign Minister Zarif. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3528 secretary John Forbes Kerry @@ -2360,13 +2491,14 @@ 2014-12-03 Belgium Brussels - Attended the NATO Foreign Ministers meeting, the first ministerial meeting of the Counter-ISIL Coalition, and the 6th U.S.-EU Energy Council meeting. + Attended the NATO Foreign Ministers meeting, the first ministerial meeting of the + Counter-ISIL Coalition, and the 6th U.S.-EU Energy Council meeting. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3529 secretary John Forbes Kerry @@ -2380,7 +2512,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3530 secretary John Forbes Kerry @@ -2394,7 +2526,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3531 secretary John Forbes Kerry @@ -2402,13 +2534,14 @@ 2014-12-11 Peru Lima - Met with President Ollanta Humala Tasso and French Foreign Minister Fabius. Addressed the COP-20. + Met with President Ollanta Humala Tasso and French Foreign Minister Fabius. + Addressed the COP-20. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3532 secretary John Forbes Kerry @@ -2416,13 +2549,14 @@ 2014-12-12 Colombia Bogota - Met with President Juan Manuel Santos and Foreign Minister Maria Angela Holguin. + Met with President Juan Manuel Santos and Foreign Minister Maria Angela + Holguin. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3533 secretary John Forbes Kerry @@ -2430,13 +2564,14 @@ 2014-12-15 Italy Rome - Met with Russian Foreign Minister Sergei Lavrov and Israeli Prime Minister Benjamin Netanyahu. + Met with Russian Foreign Minister Sergei Lavrov and Israeli Prime Minister Benjamin + Netanyahu. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3534 secretary John Forbes Kerry @@ -2450,7 +2585,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3535 secretary John Forbes Kerry @@ -2458,13 +2593,14 @@ 2014-12-16 United Kingdom London - Met with the Arab League Special Committee and with Quartet Representative Tony Blair. + Met with the Arab League Special Committee and with Quartet Representative Tony + Blair. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3536 secretary John Forbes Kerry @@ -2478,7 +2614,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3537 secretary John Forbes Kerry @@ -2492,7 +2628,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3538 secretary John Forbes Kerry @@ -2506,7 +2642,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3539 secretary John Forbes Kerry @@ -2514,13 +2650,14 @@ 2015-01-14 Switzerland Geneva - Met with UN Special Envoy for Syria Steffan de Mistura and Iranian Foreign Minister Mohammed Javad Zarif. + Met with UN Special Envoy for Syria Steffan de Mistura and Iranian Foreign Minister + Mohammed Javad Zarif. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3540 secretary John Forbes Kerry @@ -2528,13 +2665,14 @@ 2015-01-15 Bulgaria Sofia - Met with President Rosen Plevneliev, Prime Minister Boyko Borissov, Foreign Minister Daniel Mitov, and British Foreign Secretary Phillp Hammond. + Met with President Rosen Plevneliev, Prime Minister Boyko Borissov, Foreign + Minister Daniel Mitov, and British Foreign Secretary Phillp Hammond. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3541 secretary John Forbes Kerry @@ -2542,13 +2680,14 @@ 2015-01-16 France Paris - Met with President Francois Hollande, Foreign Minister Laurent Fabius, Mayor Anne Hidlago, and Iranian Foreign Minister Mohammed Javad Zarif. + Met with President Francois Hollande, Foreign Minister Laurent Fabius, Mayor Anne + Hidlago, and Iranian Foreign Minister Mohammed Javad Zarif. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3542 secretary John Forbes Kerry @@ -2556,13 +2695,14 @@ 2015-01-22 United Kingdom London - Attended a meeting of the Counter-ISIL Coalition Small Group and met with Foreign Secretary Philip Hammond. + Attended a meeting of the Counter-ISIL Coalition Small Group and met with Foreign + Secretary Philip Hammond. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3543 secretary John Forbes Kerry @@ -2576,7 +2716,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3544 secretary John Forbes Kerry @@ -2584,13 +2724,14 @@ 2015-01-25 Nigeria Lagos - Met with President Goodluck Jonathan and presidential candidate Muhammedu Buhari. + Met with President Goodluck Jonathan and presidential candidate Muhammedu + Buhari. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3545 secretary John Forbes Kerry @@ -2604,7 +2745,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3546 secretary John Forbes Kerry @@ -2612,13 +2753,14 @@ 2015-01-27 Saudi Arabia Riyadh - Accompanied President Obama to offer condolences to King Salman bin Abd al Aziz bin Saud after the passing of King Abdullah. + Accompanied President Obama to offer condolences to King Salman bin Abd al Aziz bin + Saud after the passing of King Abdullah. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3547 secretary John Forbes Kerry @@ -2632,7 +2774,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3548 secretary John Forbes Kerry @@ -2646,7 +2788,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3549 secretary John Forbes Kerry @@ -2660,7 +2802,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3550 secretary John Forbes Kerry @@ -2674,7 +2816,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3551 secretary John Forbes Kerry @@ -2682,13 +2824,15 @@ 2015-03-04 Switzerland Geneva, Montreux - Attended the 28th Session of the UN Human Rights Commission and met with Russian Foreign Minister Sergei Lavrov. Met with Iranian Foreign Minister Mohammed Javad Zarif in Montreux. + Attended the 28th Session of the UN Human Rights Commission and met with Russian + Foreign Minister Sergei Lavrov. Met with Iranian Foreign Minister Mohammed Javad Zarif + in Montreux. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3552 secretary John Forbes Kerry @@ -2696,13 +2840,14 @@ 2015-03-06 Saudi Arabia Riyadh - Met with King Salman and Foreign Minister Saud al-Faisal and attended a meeting of Gulf Cooperation Council Foreign Ministers. + Met with King Salman and Foreign Minister Saud al-Faisal and attended a meeting of + Gulf Cooperation Council Foreign Ministers. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3553 secretary John Forbes Kerry @@ -2716,7 +2861,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3554 secretary John Forbes Kerry @@ -2724,13 +2869,14 @@ 2015-03-07 France Paris - Met with the Foreign Ministers of France, Germany, and the United Kingdom, and with EU High Representative Federica Mogherini. + Met with the Foreign Ministers of France, Germany, and the United Kingdom, and with + EU High Representative Federica Mogherini. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3555 secretary John Forbes Kerry @@ -2744,7 +2890,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3556 secretary John Forbes Kerry @@ -2758,7 +2904,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3557 secretary John Forbes Kerry @@ -2766,13 +2912,14 @@ 2015-03-21 United Kingdom London - Met with the Foreign Ministers of France, Germany, and the United Kingdom, and with EU High Representative Federica Mogherini. + Met with the Foreign Ministers of France, Germany, and the United Kingdom, and with + EU High Representative Federica Mogherini. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3558 secretary John Forbes Kerry @@ -2786,7 +2933,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3559 secretary John Forbes Kerry @@ -2800,7 +2947,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3560 secretary John Forbes Kerry @@ -2814,7 +2961,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3561 secretary John Forbes Kerry @@ -2828,7 +2975,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3562 secretary John Forbes Kerry @@ -2836,13 +2983,14 @@ 2015-05-03 Sri Lanka Colombo - Met with President Maithripala Sirisena, Prime Minister Ranil Wikremesinghe, and Foreign Minister Mangala Samaraweera. + Met with President Maithripala Sirisena, Prime Minister Ranil Wikremesinghe, and + Foreign Minister Mangala Samaraweera. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3563 secretary John Forbes Kerry @@ -2850,13 +2998,14 @@ 2015-05-05 Kenya Nairobi - Met with President Uhuru Kenyatta and Chief Justice Willy Mutunga. Visited the Dadaab refugee camp. + Met with President Uhuru Kenyatta and Chief Justice Willy Mutunga. Visited the + Dadaab refugee camp. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3564 secretary John Forbes Kerry @@ -2864,13 +3013,15 @@ 2015-05-06 Somalia Mogadishu - Met with President Hassan Sheikh Mahmoud, Prime Minister Omar Abdirashid Ali Sharmarke and regional leaders. Announced plans to re-establish a U.S. Embassy. + Met with President Hassan Sheikh Mahmoud, Prime Minister Omar Abdirashid Ali + Sharmarke and regional leaders. Announced plans to re-establish a U.S. + Embassy. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2018-09-17T09:06:57.03-04:00 - + 3565 secretary John Forbes Kerry @@ -2884,7 +3035,7 @@ wicentowskijc 2018-09-06T11:07:07.012-04:00 - + 3566 secretary John Forbes Kerry @@ -2892,13 +3043,14 @@ 2015-05-07 Saudi Arabia Riyadh - Met with King Salman, Crown Prince Mohammed bin Nayef, Foreign Minister Adel al-Jubeir, and Yemeni President Abd Rabbuh Mansur Hadi. + Met with King Salman, Crown Prince Mohammed bin Nayef, Foreign Minister Adel + al-Jubeir, and Yemeni President Abd Rabbuh Mansur Hadi. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3567 secretary John Forbes Kerry @@ -2906,13 +3058,15 @@ 2015-05-08 France Paris - Attended ceremonies commemorating the 70th anniversary of VE-Day, Met with Foreign Minister Laurent Fabius and with the Gulf Cooperation Council Foreign Ministers. + Attended ceremonies commemorating the 70th anniversary of VE-Day, Met with Foreign + Minister Laurent Fabius and with the Gulf Cooperation Council Foreign + Ministers. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3568 secretary John Forbes Kerry @@ -2926,7 +3080,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3569 secretary John Forbes Kerry @@ -2940,7 +3094,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3570 secretary John Forbes Kerry @@ -2948,13 +3102,14 @@ 2015-05-17 China, People’s Republic of Beijing - Met with Foreign Minister Wang Yi, Premier Li Keqiang, State Counselor Yang Jiechi, and President Xi Jingping. + Met with Foreign Minister Wang Yi, Premier Li Keqiang, State Counselor Yang Jiechi, + and President Xi Jingping. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3571 secretary John Forbes Kerry @@ -2968,7 +3123,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3572 secretary John Forbes Kerry @@ -2982,7 +3137,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3573 secretary John Forbes Kerry @@ -2996,7 +3151,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3574 secretary John Forbes Kerry @@ -3004,13 +3159,15 @@ 2015-07-14 Austria Vienna - Met with Iranian Foreign Minister Mohammad Javad Zarif and the Foreign Ministers of the P5+ 1. Negotiated Joint Comprehensive Plan of Action concerning Iran’s nuclear energy program. + Met with Iranian Foreign Minister Mohammad Javad Zarif and the Foreign Ministers of + the P5+ 1. Negotiated Joint Comprehensive Plan of Action concerning Iran’s nuclear + energy program. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3575 secretary John Forbes Kerry @@ -3024,7 +3181,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3576 secretary John Forbes Kerry @@ -3038,7 +3195,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3577 secretary John Forbes Kerry @@ -3046,13 +3203,14 @@ 2015-08-04 Singapore Singapore - Met with Prime Minister Lee Hsien Loung and Foreign Minister K. Shanmugan. Delivered an address at Singapore Management University. + Met with Prime Minister Lee Hsien Loung and Foreign Minister K. Shanmugan. + Delivered an address at Singapore Management University. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3578 secretary John Forbes Kerry @@ -3066,7 +3224,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3579 secretary John Forbes Kerry @@ -3074,13 +3232,14 @@ 2015-08-08 Vietnam Hanoi - Met with Deputy Prime Minister/Foreign Minister Pham Binh Minh and commemorated the 20th anniversary of the establishment of diplomatic relations. + Met with Deputy Prime Minister/Foreign Minister Pham Binh Minh and commemorated the + 20th anniversary of the establishment of diplomatic relations. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3580 secretary John Forbes Kerry @@ -3088,13 +3247,14 @@ 2015-08-14 Cuba Havana - Formally inaugurated the U.S. Embassy. Met with Foreign Minister Bruno Eduardo Rodrigues Parilla. + Formally inaugurated the U.S. Embassy. Met with Foreign Minister Bruno Eduardo + Rodrigues Parilla. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3581 secretary John Forbes Kerry @@ -3102,13 +3262,14 @@ 2015-09-19 United Kingdom London - Met with Foreign Secretary Philip Hammond and UAE Foreign Minister Abdullah bin Zayed. + Met with Foreign Secretary Philip Hammond and UAE Foreign Minister Abdullah bin + Zayed. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3582 secretary John Forbes Kerry @@ -3122,7 +3283,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3583 secretary John Forbes Kerry @@ -3136,7 +3297,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3584 secretary John Forbes Kerry @@ -3150,7 +3311,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3585 secretary John Forbes Kerry @@ -3158,13 +3319,14 @@ 2015-10-17 Italy Milan - Commemorated World Food Day, visited the USA Pavilion at Malan EXPO 2015, and met with Foreign Minister Paolo Gentiloni. + Commemorated World Food Day, visited the USA Pavilion at Malan EXPO 2015, and met + with Foreign Minister Paolo Gentiloni. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3586 secretary John Forbes Kerry @@ -3178,7 +3340,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3587 secretary John Forbes Kerry @@ -3186,13 +3348,14 @@ 2015-10-19 Spain Madrid - Met with King Felipe VI, President Mariano Rajoy, and Foreign Minister Jose Manuel Garcia-Margallo. + Met with King Felipe VI, President Mariano Rajoy, and Foreign Minister Jose Manuel + Garcia-Margallo. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2018-09-17T09:06:57.03-04:00 - + 3588 secretary John Forbes Kerry @@ -3200,13 +3363,14 @@ 2015-10-22 Germany Berlin - Met with Foreign Minister Frank-Walter Steinmeier, Israeli Prime Minister Benjamin Netanyahu, and EU High Representative Federica Mogherini. + Met with Foreign Minister Frank-Walter Steinmeier, Israeli Prime Minister Benjamin + Netanyahu, and EU High Representative Federica Mogherini. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3589 secretary John Forbes Kerry @@ -3214,13 +3378,14 @@ 2015-10-23 Austria Vienna - Met with Quartet representatives and the Foreign Ministers of Russia, Turkey, and Saudi Arabia. + Met with Quartet representatives and the Foreign Ministers of Russia, Turkey, and + Saudi Arabia. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3590 secretary John Forbes Kerry @@ -3228,13 +3393,14 @@ 2015-10-24 Saudi Arabia Riyadh - Met with King Salman, Foreign Minister Adel al-Jubeir, Crown Prince Mohammed bin Nayef, and Deputy Crown Prince Mohammed bin Salman. + Met with King Salman, Foreign Minister Adel al-Jubeir, Crown Prince Mohammed bin + Nayef, and Deputy Crown Prince Mohammed bin Salman. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3591 secretary John Forbes Kerry @@ -3242,13 +3408,15 @@ 2015-10-31 Austria Vienna - Met with Austrian Foreign Minister Sebastian Kurz, UN Special Envoy for Syria Steffan de Mistura, and the Foreign Ministers of Iran, Russia, Saudi Arabia, and Turkey. Attended a meeting on Syria. + Met with Austrian Foreign Minister Sebastian Kurz, UN Special Envoy for Syria + Steffan de Mistura, and the Foreign Ministers of Iran, Russia, Saudi Arabia, and Turkey. + Attended a meeting on Syria. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3592 secretary John Forbes Kerry @@ -3256,13 +3424,15 @@ 2015-11-01 Kyrgyzstan Bishkek - Attended the dedication of a new Embassy compound, Met with President Almazbek Atambaev and Foreign Minister Erlan Abdyldaev. Addressed the American University of Central Asia. + Attended the dedication of a new Embassy compound, Met with President Almazbek + Atambaev and Foreign Minister Erlan Abdyldaev. Addressed the American University of + Central Asia. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3593 secretary John Forbes Kerry @@ -3270,13 +3440,14 @@ 2015-11-01 Uzbekistan Samarkand - Met with President Islam Karimov and the Foreign Ministers of Kazakhstan, Kyryzstan, Tajikistan, Turkmenistan, and Uzbekistan. + Met with President Islam Karimov and the Foreign Ministers of Kazakhstan, + Kyryzstan, Tajikistan, Turkmenistan, and Uzbekistan. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3594 secretary John Forbes Kerry @@ -3284,13 +3455,14 @@ 2015-11-02 Kazakhstan Astana - Met with President Nursultan Nazarbayev and attended the Fourth U.S. Kazakhstan Strategic Partnership Dialogue. + Met with President Nursultan Nazarbayev and attended the Fourth U.S. Kazakhstan + Strategic Partnership Dialogue. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3595 secretary John Forbes Kerry @@ -3304,7 +3476,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3596 secretary John Forbes Kerry @@ -3318,7 +3490,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3597 secretary John Forbes Kerry @@ -3332,7 +3504,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3598 secretary John Forbes Kerry @@ -3346,7 +3518,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3599 secretary John Forbes Kerry @@ -3354,13 +3526,14 @@ 2015-11-14 Austria Vienna - Met with the Foreign Ministers of Saudi Arabia, Turkey, Russia, and Iran, and with UN Special Envoy for Syria Steffan de Mistura. Attended a meeting on Syria. + Met with the Foreign Ministers of Saudi Arabia, Turkey, Russia, and Iran, and with + UN Special Envoy for Syria Steffan de Mistura. Attended a meeting on Syria. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3600 secretary John Forbes Kerry @@ -3374,7 +3547,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3601 secretary John Forbes Kerry @@ -3388,7 +3561,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3602 secretary John Forbes Kerry @@ -3396,13 +3569,14 @@ 2015-11-23 United Arab Emirates Abu Dhabi - Met with Crown Prince Mohammed bin Zayed and with the Foreign Ministers of the United Arab Emirates and Saudi Arabia. + Met with Crown Prince Mohammed bin Zayed and with the Foreign Ministers of the + United Arab Emirates and Saudi Arabia. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3603 secretary John Forbes Kerry @@ -3410,13 +3584,14 @@ 2015-11-24 Israel Jerusalem - Met with President Reuven Rivlin, Prime Minister Benjamin Netanyahu, and Opposition leader Yitzhak Herzog. + Met with President Reuven Rivlin, Prime Minister Benjamin Netanyahu, and Opposition + leader Yitzhak Herzog. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3604 secretary John Forbes Kerry @@ -3430,7 +3605,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3605 secretary John Forbes Kerry @@ -3438,13 +3613,14 @@ 2015-12-01 France Paris - Attended the UN Climate Change Summit and met with Egyptian Foreign Minister Sameh Shoukry. + Attended the UN Climate Change Summit and met with Egyptian Foreign Minister Sameh + Shoukry. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3606 secretary John Forbes Kerry @@ -3458,7 +3634,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3607 secretary John Forbes Kerry @@ -3472,7 +3648,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3608 secretary John Forbes Kerry @@ -3480,13 +3656,15 @@ 2015-12-03 Serbia Belgrade - Attended an OSCE Ministerial Meeting and a meeting of OSCE Minsk Group Co-Chair Countries. Met with Prime Minister Aleksandar Vucic and Ukrainian Foreign Minister Pavlo Klimkin. + Attended an OSCE Ministerial Meeting and a meeting of OSCE Minsk Group Co-Chair + Countries. Met with Prime Minister Aleksandar Vucic and Ukrainian Foreign Minister Pavlo + Klimkin. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3609 secretary John Forbes Kerry @@ -3494,13 +3672,14 @@ 2015-12-03 Cyprus Nicosia - Met with President Nicos Anastasiades, Foreign Minister Ioannis Kasoulides, Turkish Cypriot leader Mustafa Akinci, and UN Special Adviser Espen Barth Eide. + Met with President Nicos Anastasiades, Foreign Minister Ioannis Kasoulides, Turkish + Cypriot leader Mustafa Akinci, and UN Special Adviser Espen Barth Eide. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3610 secretary John Forbes Kerry @@ -3508,13 +3687,14 @@ 2015-12-04 Greece Athens - Met with Prime Minister Alexis Tsipras and Foreign Minister Nikos Kotzias. Visited migrants and volunteers. + Met with Prime Minister Alexis Tsipras and Foreign Minister Nikos Kotzias. Visited + migrants and volunteers. wicentowskijc 2016-05-05T14:02:07.012-04:00 wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3611 secretary John Forbes Kerry @@ -3528,7 +3708,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3612 secretary John Forbes Kerry @@ -3542,7 +3722,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3613 secretary John Forbes Kerry @@ -3556,7 +3736,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3614 secretary John Forbes Kerry @@ -3570,7 +3750,7 @@ wicentowskijc 2016-05-05T14:02:07.012-04:00 - + 3635 secretary John Forbes Kerry @@ -3584,7 +3764,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3636 secretary John Forbes Kerry @@ -3592,13 +3772,14 @@ 2016-01-16 Austria Vienna - Discussed the Joint Comprehensive Plan of Action with Iranian Foreign Minister Javad Zarif and EU High Representative Federica Mogherini. + Discussed the Joint Comprehensive Plan of Action with Iranian Foreign Minister + Javad Zarif and EU High Representative Federica Mogherini. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3637 secretary John Forbes Kerry @@ -3606,13 +3787,14 @@ 2016-01-22 Switzerland Zurich, Davos - Discussed the Syrian and Ukrainian crises with Russian Foreign Minister Sergei Lavrov. Attended the World Economic Forum Annual Meeting. + Discussed the Syrian and Ukrainian crises with Russian Foreign Minister Sergei + Lavrov. Attended the World Economic Forum Annual Meeting. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3638 secretary John Forbes Kerry @@ -3620,13 +3802,15 @@ 2016-01-25 Saudi Arabia Riyadh - Met with Foreign Minister Adel al-Jubeir, members of the Syrian Opposition’s High Negotiations Committee, and with the Foreign Ministers of the Gulf Cooperation Council states. + Met with Foreign Minister Adel al-Jubeir, members of the Syrian Opposition’s High + Negotiations Committee, and with the Foreign Ministers of the Gulf Cooperation Council + states. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3639 secretary John Forbes Kerry @@ -3634,13 +3818,14 @@ 2016-01-25 Laos Vientiane - Met with Prime Minister Thongsing Thammavong and Foreign Minister Thongloun Sisoulith. Addressed a YSEALI Interaction Event. + Met with Prime Minister Thongsing Thammavong and Foreign Minister Thongloun + Sisoulith. Addressed a YSEALI Interaction Event. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3640 secretary John Forbes Kerry @@ -3654,7 +3839,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3641 secretary John Forbes Kerry @@ -3662,13 +3847,14 @@ 2016-01-27 China, People’s Republic of Beijing - Met with President Xi Jinping, Foreign Minister Wang Li, and State Councilor Jang Jiechi. + Met with President Xi Jinping, Foreign Minister Wang Li, and State Councilor Jang + Jiechi. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3642 secretary John Forbes Kerry @@ -3682,7 +3868,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3643 secretary John Forbes Kerry @@ -3690,13 +3876,14 @@ 2016-02-02 Italy Rome - Attended a Ministerial Meeting of the Small Group of the Global Coalition to Counter ISIL. + Attended a Ministerial Meeting of the Small Group of the Global Coalition to + Counter ISIL. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3644 secretary John Forbes Kerry @@ -3710,7 +3897,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3645 secretary John Forbes Kerry @@ -3718,13 +3905,14 @@ 2016-02-14 Germany Munich - Attended the 52nd Munich Security Conference and an International Syria Support Group meeting. + Attended the 52nd Munich Security Conference and an International Syria Support + Group meeting. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3646 secretary John Forbes Kerry @@ -3738,7 +3926,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3647 secretary John Forbes Kerry @@ -3752,7 +3940,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3648 secretary John Forbes Kerry @@ -3760,13 +3948,14 @@ 2016-02-21 Jordan Amman - Met with King Abdullah II, Foreign Minister Nasser Judeh, and Palestinian Authority President Mahmoud Abbas. + Met with King Abdullah II, Foreign Minister Nasser Judeh, and Palestinian Authority + President Mahmoud Abbas. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3649 secretary John Forbes Kerry @@ -3774,13 +3963,14 @@ 2016-03-12 Saudi Arabia Hafr al-Batin - Met with King Salman bin Abdulaziz al-Saud, Crown Prince Mohammed bin Nayef, Deputy Crown Prince Mohammad bin Salman al-Saud, and Foreign Minister Adel al-Jubeir. + Met with King Salman bin Abdulaziz al-Saud, Crown Prince Mohammed bin Nayef, Deputy + Crown Prince Mohammad bin Salman al-Saud, and Foreign Minister Adel al-Jubeir. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3650 secretary John Forbes Kerry @@ -3788,13 +3978,14 @@ 2016-03-13 France Paris - Met with the Foreign Ministers of France, Germany, Italy, and the United Kingdom, and with EU High Representative Mogherini. + Met with the Foreign Ministers of France, Germany, Italy, and the United Kingdom, + and with EU High Representative Mogherini. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3651 secretary John Forbes Kerry @@ -3808,7 +3999,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3652 secretary John Forbes Kerry @@ -3822,7 +4013,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3653 secretary John Forbes Kerry @@ -3830,13 +4021,14 @@ 2016-03-25 Belgium Brussels - Met with Belgian and EU officials and expressed condolences following a March 22 terrorist attack. + Met with Belgian and EU officials and expressed condolences following a March 22 + terrorist attack. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3654 secretary John Forbes Kerry @@ -3850,7 +4042,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3655 secretary John Forbes Kerry @@ -3858,13 +4050,15 @@ 2016-04-08 Iraq Baghdad - Met with Prime Minister Haider al-Abadi, Foreign Minister Ibrahim al-Jaafari, Council of Representatives Speaker Saleem al Jabouri, and Kurdish Regional Government Prime Minister Nechrivan Barzani. + Met with Prime Minister Haider al-Abadi, Foreign Minister Ibrahim al-Jaafari, + Council of Representatives Speaker Saleem al Jabouri, and Kurdish Regional Government + Prime Minister Nechrivan Barzani. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3656 secretary John Forbes Kerry @@ -3878,7 +4072,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3657 secretary John Forbes Kerry @@ -3892,7 +4086,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3658 secretary John Forbes Kerry @@ -3900,13 +4094,14 @@ 2016-04-20 Egypt Cairo - Met with President Abdel Fattah al-Sisi and Foreign Minister Sameh Shoukry. + Met with President Abdel Fattah al-Sisi and Foreign Minister Sameh + Shoukry. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3659 secretary John Forbes Kerry @@ -3920,7 +4115,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3660 secretary John Forbes Kerry @@ -3928,13 +4123,15 @@ 2016-05-02 Switzerland Geneva - Discussed the Syrian conflict with Jordanian Foreign Minister Nasser Judeh, Saudi Arabian Foreign Minister Adel al-Jubeir, and UN Special Envoy Staffan de Mistura. + Discussed the Syrian conflict with Jordanian Foreign Minister Nasser Judeh, Saudi + Arabian Foreign Minister Adel al-Jubeir, and UN Special Envoy Staffan de + Mistura. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3661 secretary John Forbes Kerry @@ -3948,7 +4145,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3662 secretary John Forbes Kerry @@ -3962,7 +4159,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3663 secretary John Forbes Kerry @@ -3970,13 +4167,14 @@ 2016-05-15 Saudi Arabia Jeddah, Al Wajh - Met with King Salman bin Abdulaziz al-Saud, Crown Prince Mohammed bin Nayef, and Deputy Crown Prince Mohammad bin Salman al-Saud. + Met with King Salman bin Abdulaziz al-Saud, Crown Prince Mohammed bin Nayef, and + Deputy Crown Prince Mohammad bin Salman al-Saud. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3664 secretary John Forbes Kerry @@ -3984,13 +4182,15 @@ 2016-05-18 Austria Vienna - Co-hosted meetings on Libya and of the International Syria Support Group. Co-hosted a meeting of the Presidents of Armenia and Azerbaijan on the Nagorno Karabakh conflict. + Co-hosted meetings on Libya and of the International Syria Support Group. Co-hosted + a meeting of the Presidents of Armenia and Azerbaijan on the Nagorno Karabakh + conflict. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3665 secretary John Forbes Kerry @@ -4004,7 +4204,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3666 secretary John Forbes Kerry @@ -4018,7 +4218,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3667 secretary John Forbes Kerry @@ -4032,7 +4232,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3668 secretary John Forbes Kerry @@ -4046,7 +4246,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3669 secretary John Forbes Kerry @@ -4054,13 +4254,14 @@ 2016-06-04 France Paris - Attended a French-hosted ministerial meeting on Middle East peace, and discussed the Counter-ISIL Coalition ‘s efforts with Foreign Minister Jean-Marc Ayrault. + Attended a French-hosted ministerial meeting on Middle East peace, and discussed + the Counter-ISIL Coalition ‘s efforts with Foreign Minister Jean-Marc Ayrault. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3670 secretary John Forbes Kerry @@ -4074,7 +4275,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3671 secretary John Forbes Kerry @@ -4082,13 +4283,15 @@ 2016-06-08 China, People’s Republic of Beijing - With Treasury Secretary Jacob J. Lew, attended the 8th U.S.-China Strategic and Economic Dialogue. Also attended the 7th Annual U.S.-China Consultation on People-to-People Exchange. + With Treasury Secretary Jacob J. Lew, attended the 8th U.S.-China Strategic and + Economic Dialogue. Also attended the 7th Annual U.S.-China Consultation on + People-to-People Exchange. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3672 secretary John Forbes Kerry @@ -4102,7 +4305,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3673 secretary John Forbes Kerry @@ -4116,7 +4319,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3674 secretary John Forbes Kerry @@ -4130,7 +4333,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3675 secretary John Forbes Kerry @@ -4138,13 +4341,14 @@ 2016-06-17 Denmark Copenhagen - Met with Prime Minister Lars Lokke Rasmussen and Foreign Minister Kristian Jensen. + Met with Prime Minister Lars Lokke Rasmussen and Foreign Minister Kristian + Jensen. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3676 secretary John Forbes Kerry @@ -4158,7 +4362,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3677 secretary John Forbes Kerry @@ -4166,13 +4370,14 @@ 2016-06-27 Italy Rome - Met with Foreign Minister Paolo Gentiloni and Israeli Prime Minister Benjamin Netanyahu. + Met with Foreign Minister Paolo Gentiloni and Israeli Prime Minister Benjamin + Netanyahu. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3678 secretary John Forbes Kerry @@ -4180,13 +4385,14 @@ 2016-06-27 Belgium Brussels - Met with EU High Representative Federica Mogherini and NATO Secretary General Jens Stoltenberg. + Met with EU High Representative Federica Mogherini and NATO Secretary General Jens + Stoltenberg. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3679 secretary John Forbes Kerry @@ -4200,7 +4406,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3680 secretary John Forbes Kerry @@ -4214,7 +4420,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3681 secretary John Forbes Kerry @@ -4222,13 +4428,14 @@ 2016-07-07 Georgia Tbilisi - Met with President Giorgi Margvelashvili and Prime Minister Giorgi Kirivikashvili and co-chaired a meeting of the U.S.-Georgia Strategic Partnership Commission. + Met with President Giorgi Margvelashvili and Prime Minister Giorgi Kirivikashvili + and co-chaired a meeting of the U.S.-Georgia Strategic Partnership Commission. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3682 secretary John Forbes Kerry @@ -4236,13 +4443,14 @@ 2016-07-07 Ukraine Kyiv - Met with President Petro Porochenko and Prime Minister Volodymyr Groysman. + Met with President Petro Porochenko and Prime Minister Volodymyr + Groysman. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3683 secretary John Forbes Kerry @@ -4256,7 +4464,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3684 secretary John Forbes Kerry @@ -4270,7 +4478,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3685 secretary John Forbes Kerry @@ -4284,7 +4492,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3686 secretary John Forbes Kerry @@ -4298,7 +4506,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3687 secretary John Forbes Kerry @@ -4306,13 +4514,14 @@ 2016-07-18 Belgium Brussels - Met with EU Member States Foreign Ministers and with EU High Representative Mogherini. + Met with EU Member States Foreign Ministers and with EU High Representative + Mogherini. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3688 secretary John Forbes Kerry @@ -4326,7 +4535,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3689 secretary John Forbes Kerry @@ -4334,13 +4543,14 @@ 2016-07-22 Austria Vienna - Attended the opening of the Extraordinary Meeting of the Parties to the Montreal Protocol. + Attended the opening of the Extraordinary Meeting of the Parties to the Montreal + Protocol. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3690 secretary John Forbes Kerry @@ -4354,7 +4564,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3691 secretary John Forbes Kerry @@ -4362,13 +4572,15 @@ 2016-07-26 Laos Vientiane - Attended the ASEAN Regional Forum, the East Asian Summit Foreign Ministers’ Meeting, the ASEAN-U.S. Ministerial Meeting and the Lower Mekong Initiative Ministerial Meeting. + Attended the ASEAN Regional Forum, the East Asian Summit Foreign Ministers’ + Meeting, the ASEAN-U.S. Ministerial Meeting and the Lower Mekong Initiative Ministerial + Meeting. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3692 secretary John Forbes Kerry @@ -4382,7 +4594,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3693 secretary John Forbes Kerry @@ -4390,13 +4602,14 @@ 2016-07-31 France Paris - Met with Foreign Minister Jean-Marc Ayrault and Palestinian Authority President Mahmoud Abbas. + Met with Foreign Minister Jean-Marc Ayrault and Palestinian Authority President + Mahmoud Abbas. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3694 secretary John Forbes Kerry @@ -4404,13 +4617,14 @@ 2016-08-04 Argentina Buenos Aires - Met with President Mauricio Macri, opened the U.S.-Argentina High Level Dialogue, and addressed the Argentine-American Chamber of Commerce. + Met with President Mauricio Macri, opened the U.S.-Argentina High Level Dialogue, + and addressed the Argentine-American Chamber of Commerce. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3695 secretary John Forbes Kerry @@ -4418,13 +4632,14 @@ 2016-08-06 Brazil Rio de Janeiro - Met with Foreign Minister Jose Serra and attended the Opening Ceremony of the 2016 Summer Olympic Games. + Met with Foreign Minister Jose Serra and attended the Opening Ceremony of the 2016 + Summer Olympic Games. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3696 secretary John Forbes Kerry @@ -4432,13 +4647,14 @@ 2016-08-22 Kenya Nairobi - Met with President Uhuru Kenyatta and Foreign Minister Amina Mohamed and regional Foreign Ministers. + Met with President Uhuru Kenyatta and Foreign Minister Amina Mohamed and regional + Foreign Ministers. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3697 secretary John Forbes Kerry @@ -4446,13 +4662,14 @@ 2016-08-24 Nigeria Sokoto, Abuja - Met with local civic and religious leaders in Sokoto, and with President Muhammedu Buhari, Foreign Minister Geoffrey Onyeama, and northern governors. + Met with local civic and religious leaders in Sokoto, and with President Muhammedu + Buhari, Foreign Minister Geoffrey Onyeama, and northern governors. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3698 secretary John Forbes Kerry @@ -4460,13 +4677,14 @@ 2016-08-25 Saudi Arabia Jeddah - Met with the Foreign Ministers of the Gulf Cooperation Council and of the United Kingdom, and the UN Special Envoy for Yemen. + Met with the Foreign Ministers of the Gulf Cooperation Council and of the United + Kingdom, and the UN Special Envoy for Yemen. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3699 secretary John Forbes Kerry @@ -4480,7 +4698,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3700 secretary John Forbes Kerry @@ -4488,13 +4706,14 @@ 2016-08-29 Bangladesh Dhaka - Met with Prime Minister Sheikh Hasina, Foreign Minister Mahmood Ali, and Nationalist Party Chairperson Khaleda Zia. + Met with Prime Minister Sheikh Hasina, Foreign Minister Mahmood Ali, and + Nationalist Party Chairperson Khaleda Zia. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3701 secretary John Forbes Kerry @@ -4502,13 +4721,15 @@ 2016-09-01 India New Delhi - Met with President Narendra Modi. With Commerce Secretary Penny Pritzker, co-chaired the second U.S.-India Strategic and Commercial Dialogue. Met with Egyptian President Abdel Fattah al-Sisi. + Met with President Narendra Modi. With Commerce Secretary Penny Pritzker, + co-chaired the second U.S.-India Strategic and Commercial Dialogue. Met with Egyptian + President Abdel Fattah al-Sisi. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3702 secretary John Forbes Kerry @@ -4522,7 +4743,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3703 secretary John Forbes Kerry @@ -4530,13 +4751,14 @@ 2016-09-09 Switzerland Geneva - Discussed the Syrian conflict with Russian Foreign Minister Sergey Lavrov and UN Special Envoy Staffan de Mistura. + Discussed the Syrian conflict with Russian Foreign Minister Sergey Lavrov and UN + Special Envoy Staffan de Mistura. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3704 secretary John Forbes Kerry @@ -4550,7 +4772,7 @@ faithti 2018-07-26T14:29:13.672-04:00 - + 3705 secretary John Forbes Kerry @@ -4564,7 +4786,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3706 secretary John Forbes Kerry @@ -4572,13 +4794,14 @@ 2016-10-14 Rwanda Kigali - With EPA Administrator Gina McCarthy, attended the 28th Meeting of the Parties to the Montreal Protocol. + With EPA Administrator Gina McCarthy, attended the 28th Meeting of the Parties to + the Montreal Protocol. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3707 secretary John Forbes Kerry @@ -4586,13 +4809,14 @@ 2016-10-15 Switzerland Lausanne - Met with the Foreign Ministers of Russia, Saudi Arabia, Qatar, Turkey, Egypt, Iraq, Jordan, and Iran, and UN Special Envoy de Mistura. + Met with the Foreign Ministers of Russia, Saudi Arabia, Qatar, Turkey, Egypt, Iraq, + Jordan, and Iran, and UN Special Envoy de Mistura. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3708 secretary John Forbes Kerry @@ -4600,13 +4824,14 @@ 2016-10-16 United Kingdom London - Met with Foreign Secretary Boris Johnson and UN Special Envoy for Yemen Ismail Ouldh Cheikh Ahmed. + Met with Foreign Secretary Boris Johnson and UN Special Envoy for Yemen Ismail + Ouldh Cheikh Ahmed. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3709 secretary John Forbes Kerry @@ -4614,13 +4839,14 @@ 2016-10-30 Ireland Tipperary - Met with Foreign Minister Charles Flanagan and received the Tipperary International Peace Award. + Met with Foreign Minister Charles Flanagan and received the Tipperary International + Peace Award. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3710 secretary John Forbes Kerry @@ -4628,13 +4854,14 @@ 2016-10-31 United Kingdom London - Attended a Libya Ministerial Meeting and received the Benjamin Franklin House Medal for Leadership and the Chatham House Prize. + Attended a Libya Ministerial Meeting and received the Benjamin Franklin House Medal + for Leadership and the Chatham House Prize. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3711 secretary John Forbes Kerry @@ -4642,13 +4869,14 @@ 2016-11-12 Antarctica McMurdo Sound, South Pole - Visited the McMurdo Station and the Amundsen-Scott South Pole Station. First visit of a Secretary of State to Antarctica. + Visited the McMurdo Station and the Amundsen-Scott South Pole Station. First visit + of a Secretary of State to Antarctica. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3712 secretary John Forbes Kerry @@ -4656,13 +4884,14 @@ 2016-11-13 New Zealand Wellington - Met with Prime Minister John Key and Foreign Minister Murray McCully. Dedicated the site of the United States Memorial. + Met with Prime Minister John Key and Foreign Minister Murray McCully. Dedicated the + site of the United States Memorial. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3713 secretary John Forbes Kerry @@ -4670,13 +4899,14 @@ 2016-11-14 Oman Muscat - Discussed the Yemen conflict with Sultan Qaboos and Foreign Minister Yusuf bin Alawi. + Discussed the Yemen conflict with Sultan Qaboos and Foreign Minister Yusuf bin + Alawi. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3714 secretary John Forbes Kerry @@ -4690,7 +4920,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3715 secretary John Forbes Kerry @@ -4698,13 +4928,14 @@ 2016-11-16 Morocco Marrakesh - Attended and addressed the 22nd Conference of the Parties to the UN Framework Convention on Climate Change. + Attended and addressed the 22nd Conference of the Parties to the UN Framework + Convention on Climate Change. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3716 secretary John Forbes Kerry @@ -4718,7 +4949,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3717 secretary John Forbes Kerry @@ -4726,13 +4957,14 @@ 2016-12-03 Italy Rome - Met with Foreign Minister Paolo Gentiloni and attended the Rome Mediterranean Dialogues. + Met with Foreign Minister Paolo Gentiloni and attended the Rome Mediterranean + Dialogues. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3718 secretary John Forbes Kerry @@ -4746,7 +4978,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3719 secretary John Forbes Kerry @@ -4754,13 +4986,14 @@ 2016-12-05 Germany Berlin - Met with Foreign Minister Frank-Walter Steinmeier. Received the Federal Cross of Merit. + Met with Foreign Minister Frank-Walter Steinmeier. Received the Federal Cross of + Merit. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3720 secretary John Forbes Kerry @@ -4768,13 +5001,14 @@ 2016-12-07 Belgium Brussels - Attended a NATO Ministerial Meeting. Met with EU High Representative Mogherini. + Attended a NATO Ministerial Meeting. Met with EU High Representative + Mogherini. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3721 secretary John Forbes Kerry @@ -4788,7 +5022,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3722 secretary John Forbes Kerry @@ -4796,13 +5030,14 @@ 2016-12-11 France Paris - Discussed the Syrian conflict with the Foreign Ministers of France, Germany, and Qatar. Received the Legion of Honor. + Discussed the Syrian conflict with the Foreign Ministers of France, Germany, and + Qatar. Received the Legion of Honor. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3723 secretary John Forbes Kerry @@ -4810,13 +5045,14 @@ 2016-12-19 Saudi Arabia Riyadh - Met with King Salman bin Abdulaziz al-Saud and with the Foreign Ministers of Saudi Arabia and Oman. + Met with King Salman bin Abdulaziz al-Saud and with the Foreign Ministers of Saudi + Arabia and Oman. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3724 secretary John Forbes Kerry @@ -4824,13 +5060,14 @@ 2017-01-14 Vietnam Hanoi, Ho Chi Minh City, Camau Province - Met with Prime Minister Nguyen Xuan Phuc and Acting Foreign Minister Bui Thanh Son. Delivered a speech at the Ho Chi Minh University of Technology and Education. + Met with Prime Minister Nguyen Xuan Phuc and Acting Foreign Minister Bui Thanh Son. + Delivered a speech at the Ho Chi Minh University of Technology and Education. wicentowskijc 2017-04-21T14:29:13.672-04:00 wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3725 secretary John Forbes Kerry @@ -4844,7 +5081,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3726 secretary John Forbes Kerry @@ -4858,7 +5095,7 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - + 3727 secretary John Forbes Kerry @@ -4872,4 +5109,4 @@ wicentowskijc 2017-04-21T14:29:13.672-04:00 - \ No newline at end of file + diff --git a/secretary-travels/kissinger-henry-a.xml b/secretary-travels/kissinger-henry-a.xml index 83c3be9..ab5591f 100644 --- a/secretary-travels/kissinger-henry-a.xml +++ b/secretary-travels/kissinger-henry-a.xml @@ -1,6 +1,6 @@ - + 977 secretary Henry A. (Heinz Alfred) Kissinger @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 978 secretary Henry A. (Heinz Alfred) Kissinger @@ -28,7 +28,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 979 secretary Henry A. (Heinz Alfred) Kissinger @@ -42,7 +42,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 980 secretary Henry A. (Heinz Alfred) Kissinger @@ -56,7 +56,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 981 secretary Henry A. (Heinz Alfred) Kissinger @@ -70,7 +70,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 982 secretary Henry A. (Heinz Alfred) Kissinger @@ -78,13 +78,14 @@ 1973-11-07 Egypt Cairo - Met with President Sadat; announced agreement to resume diplomatic relations. + Met with President Sadat; announced agreement to resume diplomatic + relations. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 983 secretary Henry A. (Heinz Alfred) Kissinger @@ -98,7 +99,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 984 secretary Henry A. (Heinz Alfred) Kissinger @@ -112,7 +113,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 985 secretary Henry A. (Heinz Alfred) Kissinger @@ -126,7 +127,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 986 secretary Henry A. (Heinz Alfred) Kissinger @@ -140,7 +141,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 987 secretary Henry A. (Heinz Alfred) Kissinger @@ -148,13 +149,14 @@ 1973-11-14 China Peking - Met with Chairman Mao Tse-tung, Premier Chou En-lai, and senior Chinese officials. + Met with Chairman Mao Tse-tung, Premier Chou En-lai, and senior Chinese + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 988 secretary Henry A. (Heinz Alfred) Kissinger @@ -168,7 +170,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 989 secretary Henry A. (Heinz Alfred) Kissinger @@ -182,7 +184,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 990 secretary Henry A. (Heinz Alfred) Kissinger @@ -196,7 +198,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 991 secretary Henry A. (Heinz Alfred) Kissinger @@ -210,7 +212,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 992 secretary Henry A. (Heinz Alfred) Kissinger @@ -224,7 +226,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 993 secretary Henry A. (Heinz Alfred) Kissinger @@ -238,7 +240,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 994 secretary Henry A. (Heinz Alfred) Kissinger @@ -252,7 +254,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 995 secretary Henry A. (Heinz Alfred) Kissinger @@ -266,7 +268,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 996 secretary Henry A. (Heinz Alfred) Kissinger @@ -280,7 +282,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 997 secretary Henry A. (Heinz Alfred) Kissinger @@ -294,7 +296,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 998 secretary Henry A. (Heinz Alfred) Kissinger @@ -308,7 +310,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 999 secretary Henry A. (Heinz Alfred) Kissinger @@ -322,7 +324,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1000 secretary Henry A. (Heinz Alfred) Kissinger @@ -336,7 +338,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1001 secretary Henry A. (Heinz Alfred) Kissinger @@ -350,7 +352,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1002 secretary Henry A. (Heinz Alfred) Kissinger @@ -364,7 +366,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1003 secretary Henry A. (Heinz Alfred) Kissinger @@ -378,7 +380,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1004 secretary Henry A. (Heinz Alfred) Kissinger @@ -386,13 +388,14 @@ 1974-01-18 Egypt Aswan, Luxor - Negotiations leading to Egyptian-Israeli ("Kilometer 101") disengagement agreement. Was in Egypt January 11-12, 13-14, 16, and 18. + Negotiations leading to Egyptian-Israeli ("Kilometer 101") disengagement agreement. + Was in Egypt January 11-12, 13-14, 16, and 18. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1005 secretary Henry A. (Heinz Alfred) Kissinger @@ -400,13 +403,14 @@ 1974-01-17 Israel Tel Aviv, Jerusalem - Negotiations leading to the Egyptian-Israeli ("Kilometer 101") disengagement agreement. Was in Israel January 12-13, 14-15, 16-17. + Negotiations leading to the Egyptian-Israeli ("Kilometer 101") disengagement + agreement. Was in Israel January 12-13, 14-15, 16-17. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1006 secretary Henry A. (Heinz Alfred) Kissinger @@ -420,7 +424,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1007 secretary Henry A. (Heinz Alfred) Kissinger @@ -434,7 +438,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1008 secretary Henry A. (Heinz Alfred) Kissinger @@ -448,7 +452,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1009 secretary Henry A. (Heinz Alfred) Kissinger @@ -456,13 +460,14 @@ 1974-02-07 Panama Panama City - Signed a statement of principles for negotiation of a new Panama Canal treaty. + Signed a statement of principles for negotiation of a new Panama Canal + treaty. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1010 secretary Henry A. (Heinz Alfred) Kissinger @@ -476,7 +481,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1011 secretary Henry A. (Heinz Alfred) Kissinger @@ -484,13 +489,14 @@ 1974-02-25 United Kingdom London - Met with Prime Minister Heath and Foreign Secretary Douglas-Home en route to the Middle East. + Met with Prime Minister Heath and Foreign Secretary Douglas-Home en route to the + Middle East. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1012 secretary Henry A. (Heinz Alfred) Kissinger @@ -504,7 +510,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1013 secretary Henry A. (Heinz Alfred) Kissinger @@ -518,7 +524,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1014 secretary Henry A. (Heinz Alfred) Kissinger @@ -532,7 +538,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1015 secretary Henry A. (Heinz Alfred) Kissinger @@ -540,13 +546,14 @@ 1974-03-02 Syria Damascus - Presented an Israeli proposal for military disengagement to President Assad. + Presented an Israeli proposal for military disengagement to President + Assad. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1016 secretary Henry A. (Heinz Alfred) Kissinger @@ -560,7 +567,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1017 secretary Henry A. (Heinz Alfred) Kissinger @@ -574,7 +581,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1018 secretary Henry A. (Heinz Alfred) Kissinger @@ -588,7 +595,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1019 secretary Henry A. (Heinz Alfred) Kissinger @@ -602,7 +609,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1020 secretary Henry A. (Heinz Alfred) Kissinger @@ -616,7 +623,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1021 secretary Henry A. (Heinz Alfred) Kissinger @@ -630,7 +637,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1022 secretary Henry A. (Heinz Alfred) Kissinger @@ -644,7 +651,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1023 secretary Henry A. (Heinz Alfred) Kissinger @@ -658,7 +665,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1024 secretary Henry A. (Heinz Alfred) Kissinger @@ -672,7 +679,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1025 secretary Henry A. (Heinz Alfred) Kissinger @@ -686,7 +693,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1026 secretary Henry A. (Heinz Alfred) Kissinger @@ -700,7 +707,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1027 secretary Henry A. (Heinz Alfred) Kissinger @@ -714,7 +721,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1028 secretary Henry A. (Heinz Alfred) Kissinger @@ -722,13 +729,15 @@ 1974-05-29 Syria Damascus - Shuttle negotiations leading to an Israeli-Syrian disengagement agreement. Kissinger was in Damascus May 3-4, 12, 14, 16-17, 18, 20, 21, 22, 23, 25, 26, 27, 28, and 29. + Shuttle negotiations leading to an Israeli-Syrian disengagement agreement. + Kissinger was in Damascus May 3-4, 12, 14, 16-17, 18, 20, 21, 22, 23, 25, 26, 27, 28, + and 29. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1029 secretary Henry A. (Heinz Alfred) Kissinger @@ -736,13 +745,15 @@ 1974-05-31 Israel Jerusalem - Shuttle negotiations leading to an Israeli-Syrian disengagement agreement. Kissinger was in Jerusalem May 4-5, 6-7, 7-8, 8-9, 10-12, 12-14, 14-16, 17-18, 18-20, 21-22, 22-23, 23-25, 25-26, 27-28, and 29-30. + Shuttle negotiations leading to an Israeli-Syrian disengagement agreement. + Kissinger was in Jerusalem May 4-5, 6-7, 7-8, 8-9, 10-12, 12-14, 14-16, 17-18, 18-20, + 21-22, 22-23, 23-25, 25-26, 27-28, and 29-30. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1030 secretary Henry A. (Heinz Alfred) Kissinger @@ -750,13 +761,14 @@ 1974-05-06 Jordan Amman - Briefed King Hussein and Prime Minister Rifai on the Israeli-Syrian negotiations. + Briefed King Hussein and Prime Minister Rifai on the Israeli-Syrian + negotiations. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1031 secretary Henry A. (Heinz Alfred) Kissinger @@ -764,13 +776,14 @@ 1974-05-07 Cyprus Nicosia - Met with Soviet Foreign Minister Gromyko to discuss Soviet-American relations and the Middle East situation. + Met with Soviet Foreign Minister Gromyko to discuss Soviet-American relations and + the Middle East situation. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1032 secretary Henry A. (Heinz Alfred) Kissinger @@ -778,13 +791,14 @@ 1974-05-09 Saudi Arabia Riyadh - Briefed King Faisal and Foreign Minister Saqqaf on the Israeli-Syrian negotiations. + Briefed King Faisal and Foreign Minister Saqqaf on the Israeli-Syrian + negotiations. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1033 secretary Henry A. (Heinz Alfred) Kissinger @@ -792,13 +806,14 @@ 1974-05-10 Egypt Cairo - Briefed President Sadat on Israeli-Syrian negotiations. Also visited Cairo May 30. + Briefed President Sadat on Israeli-Syrian negotiations. Also visited Cairo May + 30. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1034 secretary Henry A. (Heinz Alfred) Kissinger @@ -812,7 +827,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1035 secretary Henry A. (Heinz Alfred) Kissinger @@ -826,7 +841,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1036 secretary Henry A. (Heinz Alfred) Kissinger @@ -840,7 +855,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1037 secretary Henry A. (Heinz Alfred) Kissinger @@ -854,7 +869,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1038 secretary Henry A. (Heinz Alfred) Kissinger @@ -868,7 +883,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1039 secretary Henry A. (Heinz Alfred) Kissinger @@ -882,7 +897,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1040 secretary Henry A. (Heinz Alfred) Kissinger @@ -896,7 +911,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1041 secretary Henry A. (Heinz Alfred) Kissinger @@ -910,7 +925,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1042 secretary Henry A. (Heinz Alfred) Kissinger @@ -924,7 +939,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1043 secretary Henry A. (Heinz Alfred) Kissinger @@ -938,7 +953,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1044 secretary Henry A. (Heinz Alfred) Kissinger @@ -946,13 +961,14 @@ 1974-07-05 France Paris - Briefed President Giscard d'Estaing and Foreign Minister Sauvagnargues on the U.S.-Soviet summit. + Briefed President Giscard d'Estaing and Foreign Minister Sauvagnargues on the + U.S.-Soviet summit. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1045 secretary Henry A. (Heinz Alfred) Kissinger @@ -966,7 +982,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1046 secretary Henry A. (Heinz Alfred) Kissinger @@ -980,7 +996,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1047 secretary Henry A. (Heinz Alfred) Kissinger @@ -994,7 +1010,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1048 secretary Henry A. (Heinz Alfred) Kissinger @@ -1008,7 +1024,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1049 secretary Henry A. (Heinz Alfred) Kissinger @@ -1022,7 +1038,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1050 secretary Henry A. (Heinz Alfred) Kissinger @@ -1030,13 +1046,14 @@ 1974-10-10 Egypt Cairo - Reviewed the Middle East peace process with President Sadat and Foreign Minister Fahmy. + Reviewed the Middle East peace process with President Sadat and Foreign Minister + Fahmy. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1051 secretary Henry A. (Heinz Alfred) Kissinger @@ -1050,7 +1067,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1052 secretary Henry A. (Heinz Alfred) Kissinger @@ -1058,13 +1075,14 @@ 1974-10-12 Jordan Amman, Aqaba - Reviewed the Middle East peace process with King Hussein and Prime Minister Rifai. + Reviewed the Middle East peace process with King Hussein and Prime Minister + Rifai. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1053 secretary Henry A. (Heinz Alfred) Kissinger @@ -1072,13 +1090,14 @@ 1974-10-13 Israel Tel Aviv - Reviewed the Middle East peace process with Prime Minister Rabin and Foreign Minister Allon. + Reviewed the Middle East peace process with Prime Minister Rabin and Foreign + Minister Allon. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1054 secretary Henry A. (Heinz Alfred) Kissinger @@ -1086,13 +1105,14 @@ 1974-10-13 Saudi Arabia Riyadh - Reviewed the Middle East peace process with King Faisal and Foreign Minister Saqqaf. + Reviewed the Middle East peace process with King Faisal and Foreign Minister + Saqqaf. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1055 secretary Henry A. (Heinz Alfred) Kissinger @@ -1106,7 +1126,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1056 secretary Henry A. (Heinz Alfred) Kissinger @@ -1120,7 +1140,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1057 secretary Henry A. (Heinz Alfred) Kissinger @@ -1134,7 +1154,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1058 secretary Henry A. (Heinz Alfred) Kissinger @@ -1142,13 +1162,14 @@ 1974-10-15 Morocco Rabat - Reviewed bilateral relations and the Middle East peace process with King Hassan II. + Reviewed bilateral relations and the Middle East peace process with King Hassan + II. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1059 secretary Henry A. (Heinz Alfred) Kissinger @@ -1162,7 +1183,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1060 secretary Henry A. (Heinz Alfred) Kissinger @@ -1176,7 +1197,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1061 secretary Henry A. (Heinz Alfred) Kissinger @@ -1184,13 +1205,14 @@ 1974-10-27 U.S.S.R. Moscow - Met with General Secretary Brezhnev, Foreign Minister Gromyko, and other Soviet officials. + Met with General Secretary Brezhnev, Foreign Minister Gromyko, and other Soviet + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1062 secretary Henry A. (Heinz Alfred) Kissinger @@ -1198,13 +1220,14 @@ 1974-10-30 India New Delhi - Official visit. Signed an agreement establishing a U.S.-Indian Joint Commission. + Official visit. Signed an agreement establishing a U.S.-Indian Joint + Commission. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1063 secretary Henry A. (Heinz Alfred) Kissinger @@ -1218,7 +1241,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1064 secretary Henry A. (Heinz Alfred) Kissinger @@ -1232,7 +1255,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1065 secretary Henry A. (Heinz Alfred) Kissinger @@ -1240,13 +1263,14 @@ 1974-11-01 Afghanistan Kabul - Official visit. Met with Prime Minister Daoud and senior Afghan officials. + Official visit. Met with Prime Minister Daoud and senior Afghan + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1066 secretary Henry A. (Heinz Alfred) Kissinger @@ -1254,13 +1278,14 @@ 1974-11-03 Iran Tehran - Met with Shah Mohammed Reza Pahlavi and senior Iranian officials. Established U.S.-Iran Joint Commission. + Met with Shah Mohammed Reza Pahlavi and senior Iranian officials. Established + U.S.-Iran Joint Commission. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1067 secretary Henry A. (Heinz Alfred) Kissinger @@ -1268,13 +1293,14 @@ 1974-11-04 Romania Bucharest - Official visit. Met with President Ceausescu and Foreign Minister Mancovescu. + Official visit. Met with President Ceausescu and Foreign Minister + Mancovescu. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1068 secretary Henry A. (Heinz Alfred) Kissinger @@ -1288,7 +1314,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1069 secretary Henry A. (Heinz Alfred) Kissinger @@ -1296,13 +1322,14 @@ 1974-11-05 Italy Rome - Met with President Leone and Foreign Minister Moro. Addressed the World Food Conference November 5. + Met with President Leone and Foreign Minister Moro. Addressed the World Food + Conference November 5. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1070 secretary Henry A. (Heinz Alfred) Kissinger @@ -1310,13 +1337,14 @@ 1974-11-06 Egypt Cairo - Discussed the Middle East peace process with President Sadat and Foreign Minister Fahmy. + Discussed the Middle East peace process with President Sadat and Foreign Minister + Fahmy. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1071 secretary Henry A. (Heinz Alfred) Kissinger @@ -1324,13 +1352,14 @@ 1974-11-06 Saudi Arabia Riyadh - Discussed the Middle East peace process with King Faisal and Foreign Minister Saqqaf. + Discussed the Middle East peace process with King Faisal and Foreign Minister + Saqqaf. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1072 secretary Henry A. (Heinz Alfred) Kissinger @@ -1338,13 +1367,14 @@ 1974-11-07 Jordan Amman - Discussed the Middle East peace process with King Hussein and Prime Minister Rifai. + Discussed the Middle East peace process with King Hussein and Prime Minister + Rifai. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1073 secretary Henry A. (Heinz Alfred) Kissinger @@ -1358,7 +1388,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1074 secretary Henry A. (Heinz Alfred) Kissinger @@ -1366,13 +1396,14 @@ 1974-11-08 Israel Jerusalem - Discussed the Middle East peace process with Prime Minister Rabin and Foreign Minister Allon. + Discussed the Middle East peace process with Prime Minister Rabin and Foreign + Minister Allon. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1075 secretary Henry A. (Heinz Alfred) Kissinger @@ -1380,13 +1411,14 @@ 1974-11-09 Tunisia Tunis - Discussed the Middle East peace process with President Bourguiba and Foreign Minister Chatti. + Discussed the Middle East peace process with President Bourguiba and Foreign + Minister Chatti. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1076 secretary Henry A. (Heinz Alfred) Kissinger @@ -1400,7 +1432,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1077 secretary Henry A. (Heinz Alfred) Kissinger @@ -1414,7 +1446,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1078 secretary Henry A. (Heinz Alfred) Kissinger @@ -1422,13 +1454,14 @@ 1974-11-24 U.S.S.R. Vladivostok - Accompanied President Ford to a discussion on strategic arms limitations with General Secretary Brezhnev. + Accompanied President Ford to a discussion on strategic arms limitations with + General Secretary Brezhnev. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1079 secretary Henry A. (Heinz Alfred) Kissinger @@ -1442,7 +1475,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1080 secretary Henry A. (Heinz Alfred) Kissinger @@ -1456,7 +1489,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1081 secretary Henry A. (Heinz Alfred) Kissinger @@ -1470,7 +1503,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1082 secretary Henry A. (Heinz Alfred) Kissinger @@ -1478,13 +1511,14 @@ 1974-12-16 France Martinique - Joined President Ford for a meeting with French President Giscard d'Estaing. + Joined President Ford for a meeting with French President Giscard + d'Estaing. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1083 secretary Henry A. (Heinz Alfred) Kissinger @@ -1492,13 +1526,14 @@ 1975-02-12 Israel Jerusalem - Official visit. Discussed prospects for a second Egyptian-Israeli disengagement agreement. + Official visit. Discussed prospects for a second Egyptian-Israeli disengagement + agreement. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1084 secretary Henry A. (Heinz Alfred) Kissinger @@ -1506,13 +1541,14 @@ 1975-02-13 Egypt Cairo - Discussed prospects for a second Egyptian-Israeli disengagement agreement. + Discussed prospects for a second Egyptian-Israeli disengagement + agreement. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2017-05-30T14:35:48.889-04:00 - + 1085 secretary Henry A. (Heinz Alfred) Kissinger @@ -1526,7 +1562,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1086 secretary Henry A. (Heinz Alfred) Kissinger @@ -1534,13 +1570,14 @@ 1975-02-14 Israel Tel Aviv, Jerusalem - Discussed prospects for a second Egyptian-Israeli disengagement agreement. + Discussed prospects for a second Egyptian-Israeli disengagement + agreement. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1087 secretary Henry A. (Heinz Alfred) Kissinger @@ -1548,13 +1585,14 @@ 1975-02-14 Jordan Aqaba - Briefed King Hussein and Prime Minister Rifai on the Middle East peace process. + Briefed King Hussein and Prime Minister Rifai on the Middle East peace + process. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1088 secretary Henry A. (Heinz Alfred) Kissinger @@ -1568,7 +1606,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1089 secretary Henry A. (Heinz Alfred) Kissinger @@ -1582,7 +1620,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1090 secretary Henry A. (Heinz Alfred) Kissinger @@ -1596,7 +1634,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1091 secretary Henry A. (Heinz Alfred) Kissinger @@ -1610,7 +1648,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1092 secretary Henry A. (Heinz Alfred) Kissinger @@ -1624,7 +1662,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1093 secretary Henry A. (Heinz Alfred) Kissinger @@ -1638,7 +1676,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1094 secretary Henry A. (Heinz Alfred) Kissinger @@ -1652,7 +1690,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1095 secretary Henry A. (Heinz Alfred) Kissinger @@ -1666,7 +1704,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1096 secretary Henry A. (Heinz Alfred) Kissinger @@ -1674,13 +1712,14 @@ 1975-03-18 Egypt Aswan - Discussed a further Egyptian-Israeli disengagement. Discussions continued in Aswan March 9, 12-14, and 17-18. + Discussed a further Egyptian-Israeli disengagement. Discussions continued in Aswan + March 9, 12-14, and 17-18. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1097 secretary Henry A. (Heinz Alfred) Kissinger @@ -1694,7 +1733,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1098 secretary Henry A. (Heinz Alfred) Kissinger @@ -1702,13 +1741,14 @@ 1975-03-23 Israel Tel Aviv, Jerusalem - Egyptian-Israeli disengagement. Discussions continued in Jerusalem March 9-10, 12, 14, 16-17, 18, and 20-23. + Egyptian-Israeli disengagement. Discussions continued in Jerusalem March 9-10, 12, + 14, 16-17, 18, and 20-23. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1099 secretary Henry A. (Heinz Alfred) Kissinger @@ -1722,7 +1762,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1100 secretary Henry A. (Heinz Alfred) Kissinger @@ -1736,7 +1776,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1101 secretary Henry A. (Heinz Alfred) Kissinger @@ -1750,7 +1790,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1102 secretary Henry A. (Heinz Alfred) Kissinger @@ -1758,13 +1798,14 @@ 1975-03-19 Saudi Arabia Riyadh - Met with King Faisal to review the Middle East peace process and bilateral relations. + Met with King Faisal to review the Middle East peace process and bilateral + relations. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1103 secretary Henry A. (Heinz Alfred) Kissinger @@ -1778,7 +1819,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1104 secretary Henry A. (Heinz Alfred) Kissinger @@ -1792,7 +1833,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1105 secretary Henry A. (Heinz Alfred) Kissinger @@ -1806,7 +1847,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1106 secretary Henry A. (Heinz Alfred) Kissinger @@ -1820,7 +1861,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1107 secretary Henry A. (Heinz Alfred) Kissinger @@ -1834,7 +1875,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1108 secretary Henry A. (Heinz Alfred) Kissinger @@ -1848,7 +1889,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1109 secretary Henry A. (Heinz Alfred) Kissinger @@ -1862,7 +1903,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1110 secretary Henry A. (Heinz Alfred) Kissinger @@ -1876,7 +1917,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1111 secretary Henry A. (Heinz Alfred) Kissinger @@ -1890,7 +1931,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1112 secretary Henry A. (Heinz Alfred) Kissinger @@ -1904,7 +1945,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1113 secretary Henry A. (Heinz Alfred) Kissinger @@ -1918,7 +1959,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1114 secretary Henry A. (Heinz Alfred) Kissinger @@ -1932,7 +1973,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1115 secretary Henry A. (Heinz Alfred) Kissinger @@ -1946,7 +1987,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1116 secretary Henry A. (Heinz Alfred) Kissinger @@ -1960,7 +2001,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1117 secretary Henry A. (Heinz Alfred) Kissinger @@ -1974,7 +2015,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1118 secretary Henry A. (Heinz Alfred) Kissinger @@ -1988,7 +2029,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1119 secretary Henry A. (Heinz Alfred) Kissinger @@ -1996,13 +2037,14 @@ 1975-08-01 Finland Helsinki - Accompanied President Ford to the signing ceremony for the Final Act of the Conference on Security and Cooperation in Europe. + Accompanied President Ford to the signing ceremony for the Final Act of the + Conference on Security and Cooperation in Europe. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1120 secretary Henry A. (Heinz Alfred) Kissinger @@ -2016,7 +2058,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1121 secretary Henry A. (Heinz Alfred) Kissinger @@ -2030,7 +2072,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1122 secretary Henry A. (Heinz Alfred) Kissinger @@ -2044,7 +2086,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1123 secretary Henry A. (Heinz Alfred) Kissinger @@ -2058,7 +2100,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1124 secretary Henry A. (Heinz Alfred) Kissinger @@ -2066,13 +2108,14 @@ 1975-08-31 Egypt Alexandria - Negotiated a second Egyptian-Israeli disengagement agreement. Negotiations continued in Alexandria August 23, 25, 28, and 31. + Negotiated a second Egyptian-Israeli disengagement agreement. Negotiations + continued in Alexandria August 23, 25, 28, and 31. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1125 secretary Henry A. (Heinz Alfred) Kissinger @@ -2086,7 +2129,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1126 secretary Henry A. (Heinz Alfred) Kissinger @@ -2094,13 +2137,14 @@ 1975-09-01 Israel Jerusalem - Attended the signing of a second Egyptian-Israeli disengagement agreement. + Attended the signing of a second Egyptian-Israeli disengagement + agreement. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1127 secretary Henry A. (Heinz Alfred) Kissinger @@ -2114,7 +2158,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1128 secretary Henry A. (Heinz Alfred) Kissinger @@ -2122,13 +2166,14 @@ 1975-09-02 Jordan Amman - Briefed King Hussein and Prime Minister Rifai on the Middle East peace process. + Briefed King Hussein and Prime Minister Rifai on the Middle East peace + process. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1129 secretary Henry A. (Heinz Alfred) Kissinger @@ -2142,7 +2187,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1130 secretary Henry A. (Heinz Alfred) Kissinger @@ -2156,7 +2201,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1131 secretary Henry A. (Heinz Alfred) Kissinger @@ -2170,7 +2215,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1132 secretary Henry A. (Heinz Alfred) Kissinger @@ -2184,7 +2229,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1133 secretary Henry A. (Heinz Alfred) Kissinger @@ -2198,7 +2243,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1134 secretary Henry A. (Heinz Alfred) Kissinger @@ -2206,13 +2251,15 @@ 1975-11-17 France Rambouillet - Accompanied President Ford to the first Economic Summit Meeting of the Heads of State and Government of France, West Germany, the United Kingdom, Italy, and Japan. + Accompanied President Ford to the first Economic Summit Meeting of the Heads of + State and Government of France, West Germany, the United Kingdom, Italy, and + Japan. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1135 secretary Henry A. (Heinz Alfred) Kissinger @@ -2226,7 +2273,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1136 secretary Henry A. (Heinz Alfred) Kissinger @@ -2240,7 +2287,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1137 secretary Henry A. (Heinz Alfred) Kissinger @@ -2254,7 +2301,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1138 secretary Henry A. (Heinz Alfred) Kissinger @@ -2268,7 +2315,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1139 secretary Henry A. (Heinz Alfred) Kissinger @@ -2282,7 +2329,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1140 secretary Henry A. (Heinz Alfred) Kissinger @@ -2296,7 +2343,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1141 secretary Henry A. (Heinz Alfred) Kissinger @@ -2310,7 +2357,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1142 secretary Henry A. (Heinz Alfred) Kissinger @@ -2324,7 +2371,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1143 secretary Henry A. (Heinz Alfred) Kissinger @@ -2332,13 +2379,14 @@ 1976-01-23 U.S.S.R. Moscow - Discussed further limitations on strategic arms with General Secretary Brezhnev and Foreign Minister Gromyko. + Discussed further limitations on strategic arms with General Secretary Brezhnev and + Foreign Minister Gromyko. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1144 secretary Henry A. (Heinz Alfred) Kissinger @@ -2352,7 +2400,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1145 secretary Henry A. (Heinz Alfred) Kissinger @@ -2366,7 +2414,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1146 secretary Henry A. (Heinz Alfred) Kissinger @@ -2380,7 +2428,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1147 secretary Henry A. (Heinz Alfred) Kissinger @@ -2394,7 +2442,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1148 secretary Henry A. (Heinz Alfred) Kissinger @@ -2408,7 +2456,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1149 secretary Henry A. (Heinz Alfred) Kissinger @@ -2422,7 +2470,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1150 secretary Henry A. (Heinz Alfred) Kissinger @@ -2430,13 +2478,14 @@ 1976-02-24 Costa Rica San Jose - Met with President Oduber, Foreign Minister Facio, and with Central American Foreign Ministers. + Met with President Oduber, Foreign Minister Facio, and with Central American + Foreign Ministers. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1151 secretary Henry A. (Heinz Alfred) Kissinger @@ -2444,13 +2493,14 @@ 1976-02-24 Guatemala Guatemala City - Discussed disaster relief assistance with President Laugerud Garcia and senior Guatemalan officials. + Discussed disaster relief assistance with President Laugerud Garcia and senior + Guatemalan officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1152 secretary Henry A. (Heinz Alfred) Kissinger @@ -2464,7 +2514,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1153 secretary Henry A. (Heinz Alfred) Kissinger @@ -2478,7 +2528,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1154 secretary Henry A. (Heinz Alfred) Kissinger @@ -2492,7 +2542,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1155 secretary Henry A. (Heinz Alfred) Kissinger @@ -2506,7 +2556,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1156 secretary Henry A. (Heinz Alfred) Kissinger @@ -2520,7 +2570,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1157 secretary Henry A. (Heinz Alfred) Kissinger @@ -2534,7 +2584,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1158 secretary Henry A. (Heinz Alfred) Kissinger @@ -2548,7 +2598,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1159 secretary Henry A. (Heinz Alfred) Kissinger @@ -2562,7 +2612,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1160 secretary Henry A. (Heinz Alfred) Kissinger @@ -2570,13 +2620,14 @@ 1976-05-07 France Paris - Met with President Giscard d'Estaing and with President Houphouet-Boigny of the Ivory Coast. + Met with President Giscard d'Estaing and with President Houphouet-Boigny of the + Ivory Coast. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1161 secretary Henry A. (Heinz Alfred) Kissinger @@ -2590,7 +2641,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1162 secretary Henry A. (Heinz Alfred) Kissinger @@ -2604,7 +2655,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1163 secretary Henry A. (Heinz Alfred) Kissinger @@ -2618,7 +2669,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1164 secretary Henry A. (Heinz Alfred) Kissinger @@ -2632,7 +2683,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1165 secretary Henry A. (Heinz Alfred) Kissinger @@ -2646,7 +2697,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1166 secretary Henry A. (Heinz Alfred) Kissinger @@ -2660,7 +2711,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1167 secretary Henry A. (Heinz Alfred) Kissinger @@ -2674,7 +2725,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1168 secretary Henry A. (Heinz Alfred) Kissinger @@ -2688,7 +2739,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1169 secretary Henry A. (Heinz Alfred) Kissinger @@ -2702,7 +2753,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1170 secretary Henry A. (Heinz Alfred) Kissinger @@ -2716,7 +2767,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1171 secretary Henry A. (Heinz Alfred) Kissinger @@ -2724,13 +2775,14 @@ 1976-06-24 Germany, Federal Republic of Bodenmais, Grafenau - Met with Foreign Minister Genscher and South African Prime Minister Vorster. + Met with Foreign Minister Genscher and South African Prime Minister + Vorster. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1172 secretary Henry A. (Heinz Alfred) Kissinger @@ -2744,7 +2796,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1173 secretary Henry A. (Heinz Alfred) Kissinger @@ -2758,7 +2810,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1174 secretary Henry A. (Heinz Alfred) Kissinger @@ -2772,7 +2824,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1175 secretary Henry A. (Heinz Alfred) Kissinger @@ -2780,13 +2832,14 @@ 1976-08-08 Afghanistan Kabul - Official visit. Met with Prime Minister Daoud and senior Afghan officials. + Official visit. Met with Prime Minister Daoud and senior Afghan + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1176 secretary Henry A. (Heinz Alfred) Kissinger @@ -2800,7 +2853,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1177 secretary Henry A. (Heinz Alfred) Kissinger @@ -2814,7 +2867,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1178 secretary Henry A. (Heinz Alfred) Kissinger @@ -2828,7 +2881,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1179 secretary Henry A. (Heinz Alfred) Kissinger @@ -2842,7 +2895,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1180 secretary Henry A. (Heinz Alfred) Kissinger @@ -2856,7 +2909,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1181 secretary Henry A. (Heinz Alfred) Kissinger @@ -2864,13 +2917,14 @@ 1976-09-07 France Paris - Discussed southern African issues with President Giscard d'Estaing and senior French officials. + Discussed southern African issues with President Giscard d'Estaing and senior + French officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1182 secretary Henry A. (Heinz Alfred) Kissinger @@ -2884,7 +2938,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1183 secretary Henry A. (Heinz Alfred) Kissinger @@ -2898,7 +2952,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1184 secretary Henry A. (Heinz Alfred) Kissinger @@ -2912,7 +2966,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1185 secretary Henry A. (Heinz Alfred) Kissinger @@ -2920,13 +2974,14 @@ 1976-09-20 South Africa Pretoria - Discussed Rhodesia and Namibia with Prime Minister Vorster. Met with a Rhodesian delegation. + Discussed Rhodesia and Namibia with Prime Minister Vorster. Met with a Rhodesian + delegation. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1186 secretary Henry A. (Heinz Alfred) Kissinger @@ -2940,7 +2995,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1187 secretary Henry A. (Heinz Alfred) Kissinger @@ -2954,7 +3009,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1188 secretary Henry A. (Heinz Alfred) Kissinger @@ -2962,13 +3017,14 @@ 1976-09-23 Kenya Nairobi - Discussed Rhodesia and Namibia with President Kenyatta and Acting Foreign Minister Osogo. + Discussed Rhodesia and Namibia with President Kenyatta and Acting Foreign Minister + Osogo. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1189 secretary Henry A. (Heinz Alfred) Kissinger @@ -2982,7 +3038,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1190 secretary Henry A. (Heinz Alfred) Kissinger @@ -2996,7 +3052,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1191 secretary Henry A. (Heinz Alfred) Kissinger @@ -3010,7 +3066,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1192 secretary Henry A. (Heinz Alfred) Kissinger @@ -3024,4 +3080,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/knox-philander-chase.xml b/secretary-travels/knox-philander-chase.xml index d78fbf5..b34dfe3 100644 --- a/secretary-travels/knox-philander-chase.xml +++ b/secretary-travels/knox-philander-chase.xml @@ -1,6 +1,6 @@ - + 1193 secretary Philander Chase Knox @@ -8,13 +8,14 @@ 1912-02-29 Panama Colon, Panama City - Met with President Chiari and Foreign Minister Arjona. Left U.S. February 23. + Met with President Chiari and Foreign Minister Arjona. Left U.S. February + 23. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1194 secretary Philander Chase Knox @@ -28,7 +29,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1195 secretary Philander Chase Knox @@ -36,13 +37,14 @@ 1912-03-07 Nicaragua Corinto, Managua - Met with President Diaz and Foreign Minister Chamorro; addressed the National Assembly. + Met with President Diaz and Foreign Minister Chamorro; addressed the National + Assembly. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1196 secretary Philander Chase Knox @@ -56,7 +58,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1197 secretary Philander Chase Knox @@ -70,7 +72,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1198 secretary Philander Chase Knox @@ -78,13 +80,14 @@ 1912-03-17 Guatemala San Jose, Guatemala City, Quirigua, Puerto Barrios - Met with President Estrada Cabrera and Foreign Minister Toledo Herrarte; addressed the Legislature. + Met with President Estrada Cabrera and Foreign Minister Toledo Herrarte; addressed + the Legislature. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2018-09-17T09:06:57.03-04:00 - + 1199 secretary Philander Chase Knox @@ -92,13 +95,14 @@ 1912-03-25 Venezuela La Guaira, Caracas, Porto Cabello - Met with President Gomez and Foreign Minister Matos; delivered several public addresses. + Met with President Gomez and Foreign Minister Matos; delivered several public + addresses. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1200 secretary Philander Chase Knox @@ -112,7 +116,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1201 secretary Philander Chase Knox @@ -126,7 +130,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1202 secretary Philander Chase Knox @@ -140,7 +144,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1203 secretary Philander Chase Knox @@ -148,13 +152,14 @@ 1912-04-13 Cuba Guantanamo, Santiago, Havana - Met with President Gomez and Secretary of State Sanguily; returned to U.S. April 16. + Met with President Gomez and Secretary of State Sanguily; returned to U.S. April + 16. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1204 secretary Philander Chase Knox @@ -168,7 +173,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1205 secretary Philander Chase Knox @@ -176,10 +181,11 @@ 1912-09-22 Japan Tokyo - Attended funeral ceremony for Emperor Mutsuhito; left U.S. August 22; returned October 11. + Attended funeral ceremony for Emperor Mutsuhito; left U.S. August 22; returned + October 11. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/lansing-robert.xml b/secretary-travels/lansing-robert.xml index a680f72..04c1345 100644 --- a/secretary-travels/lansing-robert.xml +++ b/secretary-travels/lansing-robert.xml @@ -1,6 +1,6 @@ - + 1206 secretary Robert Lansing @@ -8,10 +8,11 @@ 1919-07-14 France Paris - Accompanied President Wilson to the Paris Peace Conference. Left U.S December 4, 1918; returned July 22, 1919. + Accompanied President Wilson to the Paris Peace Conference. Left U.S December 4, + 1918; returned July 22, 1919. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/marshall-george-catlett.xml b/secretary-travels/marshall-george-catlett.xml index 37785db..f18c2d5 100644 --- a/secretary-travels/marshall-george-catlett.xml +++ b/secretary-travels/marshall-george-catlett.xml @@ -1,6 +1,6 @@ - + 1207 secretary George Catlett Marshall @@ -8,13 +8,14 @@ 1947-03-07 France Paris - Met with President Auriol and senior officials. Laid a wreath at the tomb of France's Unknown Soldier. Left U.S. March 5. + Met with President Auriol and senior officials. Laid a wreath at the tomb of + France's Unknown Soldier. Left U.S. March 5. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1208 secretary George Catlett Marshall @@ -28,7 +29,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1209 secretary George Catlett Marshall @@ -42,7 +43,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1210 secretary George Catlett Marshall @@ -56,7 +57,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1211 secretary George Catlett Marshall @@ -64,13 +65,14 @@ 1947-09-03 Brazil Petropolis - Attended Inter-American Conference for the Maintenance of Continental Peace. + Attended Inter-American Conference for the Maintenance of Continental + Peace. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1212 secretary George Catlett Marshall @@ -84,7 +86,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1213 secretary George Catlett Marshall @@ -98,7 +100,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1214 secretary George Catlett Marshall @@ -106,13 +108,14 @@ 1948-10-09 France Paris - Attended Third Session of the UN General Assembly. Returned to U.S. October 9-11 to confer with President Truman on the Berlin Crisis. + Attended Third Session of the UN General Assembly. Returned to U.S. October 9-11 to + confer with President Truman on the Berlin Crisis. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2018-09-14T14:35:48.889-04:00 - + 1215 secretary George Catlett Marshall @@ -126,7 +129,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1216 secretary George Catlett Marshall @@ -140,7 +143,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1217 secretary George Catlett Marshall @@ -148,13 +151,14 @@ 1948-10-19 Italy Rome, Castel Gandolfo - Met with Prime Minister De Gasperi, Foreign Minister Sforza, and Pope Pius XII. + Met with Prime Minister De Gasperi, Foreign Minister Sforza, and Pope Pius + XII. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2018-09-14T14:35:48.889-04:00 - + 1218 secretary George Catlett Marshall @@ -168,7 +172,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1219 secretary George Catlett Marshall @@ -182,7 +186,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1220 secretary George Catlett Marshall @@ -196,4 +200,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/muskie-edmund-sixtus.xml b/secretary-travels/muskie-edmund-sixtus.xml index d3b1d5e..c32670b 100644 --- a/secretary-travels/muskie-edmund-sixtus.xml +++ b/secretary-travels/muskie-edmund-sixtus.xml @@ -1,6 +1,6 @@ - + 1221 secretary Edmund Sixtus Muskie @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1222 secretary Edmund Sixtus Muskie @@ -22,13 +22,14 @@ 1980-05-16 Austria Vienna - Attended ceremonies for the 25th anniversary of the Austrian State Treaty and met with Soviet Foreign Minister Gromyko. + Attended ceremonies for the 25th anniversary of the Austrian State Treaty and met + with Soviet Foreign Minister Gromyko. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1223 secretary Edmund Sixtus Muskie @@ -36,13 +37,14 @@ 1980-06-24 Italy Rome, Venice - Accompanied President Carter on a State visit and to Economic Summit Meeting. + Accompanied President Carter on a State visit and to Economic Summit + Meeting. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1224 secretary Edmund Sixtus Muskie @@ -56,7 +58,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1225 secretary Edmund Sixtus Muskie @@ -70,7 +72,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1226 secretary Edmund Sixtus Muskie @@ -84,7 +86,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1227 secretary Edmund Sixtus Muskie @@ -92,13 +94,14 @@ 1980-07-10 Japan Tokyo - Accompanied President Carter to funeral of Prime Minister Ohira. Met with Chinese Premier Hua Guofeng. + Accompanied President Carter to funeral of Prime Minister Ohira. Met with Chinese + Premier Hua Guofeng. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1228 secretary Edmund Sixtus Muskie @@ -112,7 +115,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1229 secretary Edmund Sixtus Muskie @@ -126,7 +129,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1230 secretary Edmund Sixtus Muskie @@ -140,4 +143,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/pompeo-michael-r.xml b/secretary-travels/pompeo-michael-r.xml index 4d410f6..b78387d 100644 --- a/secretary-travels/pompeo-michael-r.xml +++ b/secretary-travels/pompeo-michael-r.xml @@ -1,6 +1,6 @@ - + 3792 secretary Michael R. Pompeo @@ -14,7 +14,7 @@ wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3793 secretary Michael R. Pompeo @@ -28,7 +28,7 @@ wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3794 secretary Michael R. Pompeo @@ -42,7 +42,7 @@ wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3795 secretary Michael R. Pompeo @@ -50,13 +50,14 @@ 2018-04-30 Jordan Amman - Met with King Abdullah II and Jordanian Foreign Minister Ayman al-Safadi. Also met with Japanese Foreign Minister Taro Kono. + Met with King Abdullah II and Jordanian Foreign Minister Ayman al-Safadi. Also met + with Japanese Foreign Minister Taro Kono. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3796 secretary Michael R. Pompeo @@ -64,13 +65,14 @@ 2018-05-09 Korea, North Pyongyang - Met with Chairman Kim Jong-un and other North Korean Government officials. Also secured the release of three Americans. + Met with Chairman Kim Jong-un and other North Korean Government officials. Also + secured the release of three Americans. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3797 secretary Michael R. Pompeo @@ -84,7 +86,7 @@ wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3798 secretary Michael R. Pompeo @@ -92,13 +94,14 @@ 2018-06-13 Singapore Singapore - Participated in the President’s summit with North Korean leader Kim Jong-un and bilateral events with Singaporean Prime Minister Lee Hsien Loong. + Participated in the President’s summit with North Korean leader Kim Jong-un and + bilateral events with Singaporean Prime Minister Lee Hsien Loong. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3799 secretary Michael R. Pompeo @@ -106,13 +109,15 @@ 2018-06-14 Korea, South Seoul - Met with senior Korean and Japanese officials to discuss the U.S.-Republic of Korea alliance, the U.S.-Japan alliance, and next steps in our shared approach to North Korea. + Met with senior Korean and Japanese officials to discuss the U.S.-Republic of Korea + alliance, the U.S.-Japan alliance, and next steps in our shared approach to North + Korea. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3800 secretary Michael R. Pompeo @@ -120,13 +125,14 @@ 2018-06-14 China Beijing - Met with Chinese officials on bilateral, regional, and global issues that affect both countries. + Met with Chinese officials on bilateral, regional, and global issues that affect + both countries. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3801 secretary Michael R. Pompeo @@ -134,13 +140,14 @@ 2018-07-07 Korea, North Pyongyang - Continued consultations and implementation of the forward progress made by President Trump and Chairman Kim in Singapore. + Continued consultations and implementation of the forward progress made by + President Trump and Chairman Kim in Singapore. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3802 secretary Michael R. Pompeo @@ -148,13 +155,15 @@ 2018-07-08 Japan Tokyo - Met with Japanese and South Korean leaders to discuss our shared commitment to the final, fully verified denuclearization of the DPRK, as well as other bilateral and regional issues. + Met with Japanese and South Korean leaders to discuss our shared commitment to the + final, fully verified denuclearization of the DPRK, as well as other bilateral and + regional issues. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3803 secretary Michael R. Pompeo @@ -162,13 +171,15 @@ 2018-07-09 Vietnam Hanoi - Met with senior Vietnamese officials to discuss our shared commitment to the final, fully verified denuclearization of the DPRK and other bilateral and regional issues. + Met with senior Vietnamese officials to discuss our shared commitment to the final, + fully verified denuclearization of the DPRK and other bilateral and regional + issues. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3804 secretary Michael R. Pompeo @@ -182,7 +193,7 @@ wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3805 secretary Michael R. Pompeo @@ -190,13 +201,14 @@ 2018-07-10 United Arab Emirates Abu Dhabi - Met with UAE leaders to discuss ways to further strengthen the U.S.-UAE partnership. + Met with UAE leaders to discuss ways to further strengthen the U.S.-UAE + partnership. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3806 secretary Michael R. Pompeo @@ -204,13 +216,15 @@ 2018-07-12 Belgium Brussels - Accompanied President Trump to the NATO Summit and also participated in the U.S.-EU Energy Council and co-hosted a meeting of foreign ministers of the Global Coalition to Defeat ISIS. + Accompanied President Trump to the NATO Summit and also participated in the U.S.-EU + Energy Council and co-hosted a meeting of foreign ministers of the Global Coalition to + Defeat ISIS. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3807 secretary Michael R. Pompeo @@ -218,13 +232,14 @@ 2018-07-13 Mexico Mexico City - Met with President Enrique Peña Nieto, Foreign Secretary Luis Videgaray Caso, and President-elect Andres Manuel Lopez Obrador. + Met with President Enrique Peña Nieto, Foreign Secretary Luis Videgaray Caso, and + President-elect Andres Manuel Lopez Obrador. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3808 secretary Michael R. Pompeo @@ -232,13 +247,15 @@ 2018-07-16 Finland Helsinki - Accompanied President Trump to his meeting with Russian President Vladimir Putin. Also met with Russian Foreign Minister Sergey Lavrov and Finnish Foreign Minister Timo Soini, to discuss bilateral and regional issues. + Accompanied President Trump to his meeting with Russian President Vladimir Putin. + Also met with Russian Foreign Minister Sergey Lavrov and Finnish Foreign Minister Timo + Soini, to discuss bilateral and regional issues. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3809 secretary Michael R. Pompeo @@ -246,13 +263,14 @@ 2018-08-03 Malaysia Kuala Lumpur - Met with senior Malaysian officials to discuss strengthening the Comprehensive Partnership and advancing common security and economic interests. + Met with senior Malaysian officials to discuss strengthening the Comprehensive + Partnership and advancing common security and economic interests. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3810 secretary Michael R. Pompeo @@ -266,7 +284,7 @@ wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3811 secretary Michael R. Pompeo @@ -274,13 +292,14 @@ 2018-08-05 Indonesia Jakarta - Met with senior Indonesian officials to discuss U.S.-Indonesia Strategic Partnership. + Met with senior Indonesian officials to discuss U.S.-Indonesia Strategic + Partnership. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3820 secretary Michael R. Pompeo @@ -288,13 +307,14 @@ 2018-09-05 Pakistan Islamabad - Met with Prime Minister Imran Khan, Foreign Minister Qureshi, and Chief of Army Staff Qamar Javed Bajwa to discuss U.S.-Pakistan bilateral relations. + Met with Prime Minister Imran Khan, Foreign Minister Qureshi, and Chief of Army + Staff Qamar Javed Bajwa to discuss U.S.-Pakistan bilateral relations. wicentowskijc 2019-07-25T16:12:57.84-04:00 wicentowskijc 2019-07-25T16:12:57.84-04:00 - + 3821 secretary Michael R. Pompeo @@ -302,13 +322,14 @@ 2018-09-06 India New Delhi - Participated in the inaugural U.S.-India “2+2” dialogue and met with senior officials. + Participated in the inaugural U.S.-India “2+2” dialogue and met with senior + officials. wicentowskijc 2019-07-25T16:12:57.84-04:00 wicentowskijc 2019-07-25T16:12:57.84-04:00 - + 3822 secretary Michael R. Pompeo @@ -322,7 +343,7 @@ wicentowskijc 2019-07-25T16:12:57.84-04:00 - + 3823 secretary Michael R. Pompeo @@ -336,7 +357,7 @@ wicentowskijc 2019-07-25T16:12:57.84-04:00 - + 3824 secretary Michael R. Pompeo @@ -350,7 +371,7 @@ wicentowskijc 2019-07-25T16:12:57.84-04:00 - + 3825 secretary Michael R. Pompeo @@ -358,13 +379,14 @@ 2018-10-08 China Beijing - Met with Chinese counterparts to discuss bilateral, regional, and global issues. + Met with Chinese counterparts to discuss bilateral, regional, and global + issues. wicentowskijc 2019-07-25T16:12:57.84-04:00 wicentowskijc 2019-07-25T16:12:57.84-04:00 - + 3826 secretary Michael R. Pompeo @@ -372,13 +394,14 @@ 2018-10-17 Saudi Arabia Riyadh - Met with Crown Prince Mohammed bin Salman and Foreign Minister Adel al-Jubeir regarding the investigation into the disappearance of Jamal Khashoggi. + Met with Crown Prince Mohammed bin Salman and Foreign Minister Adel al-Jubeir + regarding the investigation into the disappearance of Jamal Khashoggi. wicentowskijc 2019-07-25T16:12:57.84-04:00 wicentowskijc 2019-07-25T16:12:57.84-04:00 - + 3827 secretary Michael R. Pompeo @@ -386,13 +409,15 @@ 2018-10-18 Panama Panama City - Met with President Juan Carlos Varela and Vice President and Foreign Minister Isabel de Saint Malo de Alvarado to discuss ongoing U.S.-Panama collaboration on regional priorities. + Met with President Juan Carlos Varela and Vice President and Foreign Minister + Isabel de Saint Malo de Alvarado to discuss ongoing U.S.-Panama collaboration on + regional priorities. wicentowskijc 2019-07-25T16:12:57.84-04:00 wicentowskijc 2019-07-25T16:12:57.84-04:00 - + 3828 secretary Michael R. Pompeo @@ -400,13 +425,14 @@ 2018-10-19 Mexico Mexico City - Met with President Enrique Peña Nieto, Foreign Secretary Luis Videgaray Caso, and Foreign Secretary-designate Marcelo Luis Ebrard Casaubon. + Met with President Enrique Peña Nieto, Foreign Secretary Luis Videgaray Caso, and + Foreign Secretary-designate Marcelo Luis Ebrard Casaubon. wicentowskijc 2019-07-25T16:12:57.84-04:00 wicentowskijc 2019-07-25T16:12:57.84-04:00 - + 3829 secretary Michael R. Pompeo @@ -414,13 +440,15 @@ 2018-11-11 France Paris - Joined President Trump in commemorating the 100th anniversary of the end of the WWI. Also participated in the President’s meeting with French President Emmanuel Macron. + Joined President Trump in commemorating the 100th anniversary of the end of the + WWI. Also participated in the President’s meeting with French President Emmanuel + Macron. wicentowskijc 2019-07-25T16:12:57.84-04:00 wicentowskijc 2019-07-25T16:12:57.84-04:00 - + 3830 secretary Michael R. Pompeo @@ -434,7 +462,7 @@ wicentowskijc 2019-07-25T16:12:57.84-04:00 - + 3831 secretary Michael R. Pompeo @@ -442,13 +470,14 @@ 2018-12-05 Belgium Brussels - Participated in the semi-annual meeting of NATO Foreign Ministers and also met with Belgian Prime Minister Charles Michel. + Participated in the semi-annual meeting of NATO Foreign Ministers and also met with + Belgian Prime Minister Charles Michel. wicentowskijc 2019-07-25T16:12:57.84-04:00 wicentowskijc 2019-07-25T16:12:57.84-04:00 - + 3832 secretary Michael R. Pompeo @@ -462,7 +491,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3833 secretary Michael R. Pompeo @@ -470,13 +499,14 @@ 2019-02-12 Slovakia Bratislava - Met with President Kiska, Prime Minister Pellegrini, and Foreign Minister Lajčák. + Met with President Kiska, Prime Minister Pellegrini, and Foreign Minister + Lajčák. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3834 secretary Michael R. Pompeo @@ -490,7 +520,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3835 secretary Michael R. Pompeo @@ -498,13 +528,14 @@ 2019-02-14 Belgium Brussels - Met with EU High Representative for Foreign Affairs and Security Policy Federica Mogherini. + Met with EU High Representative for Foreign Affairs and Security Policy Federica + Mogherini. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3836 secretary Michael R. Pompeo @@ -518,7 +549,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3837 secretary Michael R. Pompeo @@ -526,13 +557,14 @@ 2019-02-28 Vietnam Hanoi - Participated in the President’s summit with North Korean leader Kim Jong-un and bilateral meetings with Vietnamese leaders. + Participated in the President’s summit with North Korean leader Kim Jong-un and + bilateral meetings with Vietnamese leaders. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3838 secretary Michael R. Pompeo @@ -540,13 +572,14 @@ 2019-03-01 Philippines Manila - Met with President Rodrigo Duterte and Secretary of Foreign Affairs Teodoro Locsin, Jr. + Met with President Rodrigo Duterte and Secretary of Foreign Affairs Teodoro Locsin, + Jr. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3839 secretary Michael R. Pompeo @@ -560,7 +593,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3840 secretary Michael R. Pompeo @@ -574,7 +607,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3841 secretary Michael R. Pompeo @@ -582,13 +615,14 @@ 2019-03-23 Lebanon Beirut - Met with Lebanese leaders to discuss political, security, economic, and humanitarian challenges. + Met with Lebanese leaders to discuss political, security, economic, and + humanitarian challenges. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3842 secretary Michael R. Pompeo @@ -602,7 +636,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3843 secretary Michael R. Pompeo @@ -616,7 +650,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3844 secretary Michael R. Pompeo @@ -630,7 +664,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3845 secretary Michael R. Pompeo @@ -638,13 +672,14 @@ 2019-04-14 Colombia Cucuta - Visited entities supporting Venezuelan refugees and assessed the challenges due to the closed border. + Visited entities supporting Venezuelan refugees and assessed the challenges due to + the closed border. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3846 secretary Michael R. Pompeo @@ -652,13 +687,14 @@ 2019-05-06 Finland Rovaniemi - Participated in the Eleventh Ministerial Meeting of the Arctic Council and delivered a speech on U.S. Arctic policy. + Participated in the Eleventh Ministerial Meeting of the Arctic Council and + delivered a speech on U.S. Arctic policy. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3847 secretary Michael R. Pompeo @@ -666,13 +702,14 @@ 2019-05-07 Iraq Baghdad - Met with Iraqi Prime Minister Adil Abd al-Mahdi and Iraqi President Barham Salih. + Met with Iraqi Prime Minister Adil Abd al-Mahdi and Iraqi President Barham + Salih. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3848 secretary Michael R. Pompeo @@ -680,13 +717,15 @@ 2019-05-08 United Kingdom London - Met with Prime Minister Theresa May and Foreign Secretary Jeremy Hunt to discuss shared global priorities, and gave a speech on the U.S.‑UK Special Relationship. + Met with Prime Minister Theresa May and Foreign Secretary Jeremy Hunt to discuss + shared global priorities, and gave a speech on the U.S.‑UK Special + Relationship. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3849 secretary Michael R. Pompeo @@ -694,13 +733,14 @@ 2019-05-14 Belgium Brussels - Met with European allies to discuss recent threatening actions and statements by the Islamic Republic of Iran. + Met with European allies to discuss recent threatening actions and statements by + the Islamic Republic of Iran. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3850 secretary Michael R. Pompeo @@ -708,13 +748,14 @@ 2019-05-14 Russia Sochi - Met with Russian Foreign Minister Sergey Lavrov and President Vladimir Putin. + Met with Russian Foreign Minister Sergey Lavrov and President Vladimir + Putin. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3851 secretary Michael R. Pompeo @@ -728,7 +769,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3852 secretary Michael R. Pompeo @@ -736,13 +777,14 @@ 2019-06-03 Switzerland Bern, Bellinzona - Met with Foreign Minister Ignazio Cassis, Swiss business leaders, and World Health Organization Director General Dr. Tedros Adhanom Ghebreyesus. + Met with Foreign Minister Ignazio Cassis, Swiss business leaders, and World Health + Organization Director General Dr. Tedros Adhanom Ghebreyesus. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3853 secretary Michael R. Pompeo @@ -750,13 +792,14 @@ 2019-06-03 Netherlands The Hague - Participated in the opening of the Global Entrepreneurship Summit with Prime Minister Mark Rutte and met with Foreign Minister Stef Blok. + Participated in the opening of the Global Entrepreneurship Summit with Prime + Minister Mark Rutte and met with Foreign Minister Stef Blok. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3854 secretary Michael R. Pompeo @@ -770,7 +813,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3855 secretary Michael R. Pompeo @@ -778,13 +821,14 @@ 2019-06-24 Saudi Arabia Jeddah - Met with King Salman bin Abdulaziz Al Saud and Crown Prince Mohammed bin Salman Al Saud. + Met with King Salman bin Abdulaziz Al Saud and Crown Prince Mohammed bin Salman Al + Saud. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3856 secretary Michael R. Pompeo @@ -798,7 +842,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3857 secretary Michael R. Pompeo @@ -806,13 +850,15 @@ 2019-06-25 Afghanistan Kabul - Met with President Ashraf Ghani, Chief Executive Abdullah Abdullah, former President Hamid Karzai, and others to discuss next steps in the Afghan Peace Process. + Met with President Ashraf Ghani, Chief Executive Abdullah Abdullah, former + President Hamid Karzai, and others to discuss next steps in the Afghan Peace + Process. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3858 secretary Michael R. Pompeo @@ -820,13 +866,14 @@ 2019-06-26 India New Delhi - Met with Prime Minister Narendra Modi and Minister of External Affairs S. Jaishankar to discuss the U.S.-India strategic partnership. + Met with Prime Minister Narendra Modi and Minister of External Affairs S. + Jaishankar to discuss the U.S.-India strategic partnership. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3859 secretary Michael R. Pompeo @@ -840,7 +887,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3860 secretary Michael R. Pompeo @@ -854,7 +901,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3861 secretary Michael R. Pompeo @@ -862,13 +909,14 @@ 2019-07-19 Argentina Buenos Aires - Joined regional leaders for the Second Western Hemisphere Counterterrorism Ministerial. + Joined regional leaders for the Second Western Hemisphere Counterterrorism + Ministerial. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3862 secretary Michael R. Pompeo @@ -882,7 +930,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3863 secretary Michael R. Pompeo @@ -896,7 +944,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3864 secretary Michael R. Pompeo @@ -910,7 +958,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3865 secretary Michael R. Pompeo @@ -918,13 +966,14 @@ 2019-08-02 Thailand Bangkok - Co-chaired the U.S.-Association of Southeast Asian Nations (ASEAN) Ministerial and held a bilateral meeting with Foreign Minister Don Pramudwinai. + Co-chaired the U.S.-Association of Southeast Asian Nations (ASEAN) Ministerial and + held a bilateral meeting with Foreign Minister Don Pramudwinai. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3866 secretary Michael R. Pompeo @@ -932,13 +981,14 @@ 2019-08-05 Australia Sydney - Led the U.S. delegation to the Australia-United States Ministerial Consultations and met with Prime Minister Scott Morrison. + Led the U.S. delegation to the Australia-United States Ministerial Consultations + and met with Prime Minister Scott Morrison. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3867 secretary Michael R. Pompeo @@ -946,13 +996,15 @@ 2019-08-05 Micronesia, Federated States of Pohnpei - Met with the leaders of the Federated States of Micronesia, the Republic of the Marshall Islands, and the Republic of Palau in the first-ever visit by a Secretary of State to the Federated States of Micronesia. + Met with the leaders of the Federated States of Micronesia, the Republic of the + Marshall Islands, and the Republic of Palau in the first-ever visit by a Secretary of + State to the Federated States of Micronesia. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3868 secretary Michael R. Pompeo @@ -960,13 +1012,14 @@ 2019-08-22 Canada Ottawa - Met with Prime Minister Justin Trudeau and Foreign Minister Chrystia Freeland. + Met with Prime Minister Justin Trudeau and Foreign Minister Chrystia + Freeland. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3869 secretary Michael R. Pompeo @@ -974,13 +1027,16 @@ 2019-09-03 Belgium Brussels - Met with Belgian Prime Minister and European Council President-elect Michel, NATO Secretary General Stoltenberg, European Parliament President Sassoli, European Commission President-elect von der Leyen, and Acting Spanish Foreign Minister Josep Borrell. + Met with Belgian Prime Minister and European Council President-elect Michel, NATO + Secretary General Stoltenberg, European Parliament President Sassoli, European + Commission President-elect von der Leyen, and Acting Spanish Foreign Minister Josep + Borrell. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3870 secretary Michael R. Pompeo @@ -994,7 +1050,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3871 secretary Michael R. Pompeo @@ -1008,7 +1064,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3872 secretary Michael R. Pompeo @@ -1016,13 +1072,14 @@ 2019-10-02 Italy Rome - Met with President Sergio Mattarella, Prime Minister Giuseppe Conte, and Foreign Minister Luigi Di Maio. + Met with President Sergio Mattarella, Prime Minister Giuseppe Conte, and Foreign + Minister Luigi Di Maio. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3873 secretary Michael R. Pompeo @@ -1030,13 +1087,14 @@ 2019-10-03 Holy See - Audience with His Holiness Pope Francis and met with Secretary of State Cardinal Pietro Parolin. + Audience with His Holiness Pope Francis and met with Secretary of State Cardinal + Pietro Parolin. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3874 secretary Michael R. Pompeo @@ -1044,13 +1102,14 @@ 2019-10-04 Montenegro Podgorica - Met with President Milo Djukanovic, Prime Minister Dusko Markovic, and Foreign Minister Srdjan Darmanovic. + Met with President Milo Djukanovic, Prime Minister Dusko Markovic, and Foreign + Minister Srdjan Darmanovic. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3875 secretary Michael R. Pompeo @@ -1058,13 +1117,14 @@ 2019-10-05 Greece Athens - Met with Prime Minister Kyriakos Mitsotakis, Foreign Minister Nikos Dendias, and Defense Minister Nikolaos Panagiotopoulos. + Met with Prime Minister Kyriakos Mitsotakis, Foreign Minister Nikos Dendias, and + Defense Minister Nikolaos Panagiotopoulos. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3876 secretary Michael R. Pompeo @@ -1072,13 +1132,14 @@ 2019-10-17 Turkey Ankara - Participated in a meeting with Vice President Mike Pence and Turkish President Recep Tayyip Erdoğan to discuss the situation in northeast Syria. + Participated in a meeting with Vice President Mike Pence and Turkish President + Recep Tayyip Erdoğan to discuss the situation in northeast Syria. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3877 secretary Michael R. Pompeo @@ -1086,13 +1147,14 @@ 2019-10-18 Israel Jerusalem - Met with Prime Minister Benjamin Netanyahu to discuss developments in Syria. + Met with Prime Minister Benjamin Netanyahu to discuss developments in + Syria. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3878 secretary Michael R. Pompeo @@ -1106,7 +1168,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3879 secretary Michael R. Pompeo @@ -1114,13 +1176,14 @@ 2019-11-06 Germany Grafenwohr, Vilseck, Modlareuth, Leipzig - Participated in events to commemorate the end of the Cold War and met with German Foreign Minister Heiko Maas. + Participated in events to commemorate the end of the Cold War and met with German + Foreign Minister Heiko Maas. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3880 secretary Michael R. Pompeo @@ -1128,13 +1191,14 @@ 2019-11-08 Germany Berlin - Met with German Chancellor Angela Merkel and commemorated the 30th anniversary of the fall of the Berlin Wall. + Met with German Chancellor Angela Merkel and commemorated the 30th anniversary of + the fall of the Berlin Wall. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3881 secretary Michael R. Pompeo @@ -1148,7 +1212,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3882 secretary Michael R. Pompeo @@ -1156,13 +1220,14 @@ 2019-12-04 United Kingdom London - Joined U.S. delegation led by President Trump to attend the NATO Leaders Meeting. + Joined U.S. delegation led by President Trump to attend the NATO Leaders + Meeting. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3883 secretary Michael R. Pompeo @@ -1170,13 +1235,14 @@ 2019-12-05 Portugal Lisbon - Met with Prime Minister António Costa and Foreign Minister Augusto Santos Silva. + Met with Prime Minister António Costa and Foreign Minister Augusto Santos + Silva. wicentowskijc 2020-03-27T17:19:34.816-04:00 wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3884 secretary Michael R. Pompeo @@ -1190,7 +1256,7 @@ wicentowskijc 2020-03-27T17:19:34.816-04:00 - + 3930 secretary Michael R. Pompeo @@ -1204,7 +1270,7 @@ doa-exist-temp 2022-01-05T07:52:20-04:00 - + 3931 secretary Michael R. Pompeo @@ -1212,13 +1278,14 @@ 2020-01-20 Colombia Bogota - Addressed the Third Western Hemisphere Counterterrorism Ministerial and met with President Duque and other regional leaders. + Addressed the Third Western Hemisphere Counterterrorism Ministerial and met with + President Duque and other regional leaders. cabrerath 2021-06-01T11:44:00-04:00 doa-exist-temp 2022-01-05T07:52:53-04:00 - + 3932 secretary Michael R. Pompeo @@ -1226,13 +1293,14 @@ 2020-01-21 Costa Rica San Jose - Met with President Carlos Alvarado and visited the Joint Operations Center. + Met with President Carlos Alvarado and visited the Joint Operations + Center. cabrerath 2021-06-01T12:08:00-04:00 doa-exist-temp 2022-01-05T07:54:31-04:00 - + 3933 secretary Michael R. Pompeo @@ -1240,13 +1308,14 @@ 2020-01-23 Jamaica Kingston - Met with Prime Minister Holness, conducted a multilateral roundtable discussion with Caribbean leaders, and delivered remarks on U.S.-Caribbean relations. + Met with Prime Minister Holness, conducted a multilateral roundtable discussion + with Caribbean leaders, and delivered remarks on U.S.-Caribbean relations. doa-exist-temp 2021-06-01T12:09:35-04:00 doa-exist-temp 2022-01-05T07:53:14-04:00 - + 3934 secretary Michael R. Pompeo @@ -1254,13 +1323,14 @@ 2020-01-29 United Kingdom London - Met with U.K. Prime Minister Boris Johnson and U.K. Foreign Secretary Dominic Raab. + Met with U.K. Prime Minister Boris Johnson and U.K. Foreign Secretary Dominic + Raab. doa-exist-temp 2021-06-01T12:12:00-04:00 doa-exist-temp 2022-01-05T07:54:56-04:00 - + 3935 secretary Michael R. Pompeo @@ -1268,13 +1338,14 @@ 2020-01-30 Ukraine Kyiv - Met with President Zelenskyy, Foreign Minister Prystaiko, and Defense Minister Zahorodnyuk. + Met with President Zelenskyy, Foreign Minister Prystaiko, and Defense Minister + Zahorodnyuk. doa-exist-temp 2021-06-01T12:13:28-04:00 doa-exist-temp 2022-01-05T07:53:48-04:00 - + 3936 secretary Michael R. Pompeo @@ -1288,7 +1359,7 @@ doa-exist-temp 2022-01-05T07:52:56-04:00 - + 3937 secretary Michael R. Pompeo @@ -1296,13 +1367,14 @@ 2020-02-02 Kazakhstan Nur-Sultan - Met with Kazakhstani President Tokayev, First President Nazarbayev, and Foreign Minister Tileuberdi. + Met with Kazakhstani President Tokayev, First President Nazarbayev, and Foreign + Minister Tileuberdi. doa-exist-temp 2021-06-01T12:16:52-04:00 doa-exist-temp 2022-01-05T07:53:29-04:00 - + 3938 secretary Michael R. Pompeo @@ -1310,13 +1382,15 @@ 2020-02-03 Uzbekistan Tashkent - Met with President Mirziyoyev and Foreign Minister Kamilov. Participated in a C5+1 Ministerial with the foreign ministers of Kazakhstan, the Kyrgyz Republic, Tajikistan, Turkmenistan, and Uzbekistan. + Met with President Mirziyoyev and Foreign Minister Kamilov. Participated in a C5+1 + Ministerial with the foreign ministers of Kazakhstan, the Kyrgyz Republic, Tajikistan, + Turkmenistan, and Uzbekistan. doa-exist-temp 2021-06-01T12:19:28-04:00 doa-exist-temp 2022-01-05T07:52:55-04:00 - + 3939 secretary Michael R. Pompeo @@ -1330,7 +1404,7 @@ doa-exist-temp 2022-01-05T07:54:54-04:00 - + 3940 secretary Michael R. Pompeo @@ -1344,7 +1418,7 @@ doa-exist-temp 2022-01-05T07:52:12-04:00 - + 3941 secretary Michael R. Pompeo @@ -1358,7 +1432,7 @@ doa-exist-temp 2022-01-05T07:52:03-04:00 - + 3943 secretary Michael R. Pompeo @@ -1366,13 +1440,14 @@ 2020-02-19 Ethiopia Addis Ababa - Met with Prime Minister Abiy Ahmed and President Sahle-Work Zewde. Also met with African Union Commission Chairperson Moussa Faki Mahamat. + Met with Prime Minister Abiy Ahmed and President Sahle-Work Zewde. Also met with + African Union Commission Chairperson Moussa Faki Mahamat. doa-exist-temp 2021-06-01T12:44:45-04:00 doa-exist-temp 2022-01-05T07:52:31-04:00 - + 3944 secretary Michael R. Pompeo @@ -1386,7 +1461,7 @@ doa-exist-temp 2022-01-05T07:52:02-04:00 - + 3945 secretary Michael R. Pompeo @@ -1394,13 +1469,14 @@ 2020-02-21 Oman Muscat - Met with Sultan Haitham bin Tarik and expressed his condolences on the death of Oman’s Sultan Qaboos bin Said. + Met with Sultan Haitham bin Tarik and expressed his condolences on the death of + Oman’s Sultan Qaboos bin Said. doa-exist-temp 2021-06-01T12:47:32-04:00 doa-exist-temp 2022-01-05T07:53:19-04:00 - + 3946 secretary Michael R. Pompeo @@ -1408,13 +1484,15 @@ 2020-03-01 Qatar Doha - Met with Qatari Amir Sheikh Tamim bin Hamad Al Thani and Foreign Minister Sheikh Mohammad bin Abdulrahman Al Thani. Attended the signing of the U.S.-Taliban Peace Deal. + Met with Qatari Amir Sheikh Tamim bin Hamad Al Thani and Foreign Minister Sheikh + Mohammad bin Abdulrahman Al Thani. Attended the signing of the U.S.-Taliban Peace + Deal. doa-exist-temp 2021-06-01T12:49:10-04:00 doa-exist-temp 2022-01-05T07:53:35-04:00 - + 3947 secretary Michael R. Pompeo @@ -1428,7 +1506,7 @@ doa-exist-temp 2022-01-05T07:53:23-04:00 - + 3948 secretary Michael R. Pompeo @@ -1442,7 +1520,7 @@ doa-exist-temp 2022-01-05T07:54:10-04:00 - + 3949 secretary Michael R. Pompeo @@ -1450,13 +1528,14 @@ 2020-05-13 Israel Jerusalem - Met with Prime Minister Benjamin Netanyahu and Speaker of the Knesset Benny Gantz. + Met with Prime Minister Benjamin Netanyahu and Speaker of the Knesset Benny + Gantz. doa-exist-temp 2021-06-01T12:53:03-04:00 doa-exist-temp 2022-01-05T07:52:08-04:00 - + 3950 secretary Michael R. Pompeo @@ -1470,7 +1549,7 @@ doa-exist-temp 2022-01-05T07:53:06-04:00 - + 3951 secretary Michael R. Pompeo @@ -1478,13 +1557,15 @@ 2020-07-22 Denmark Copenhagen - Met with Danish Prime Minister Mette Frederiksen. Also met with Danish Minister of Foreign Affairs Jeppe Koford, Faroese Minister of Foreign Affairs and Education Jenis av Rana, and Greenlandic Minister of Foreign Affairs and Energy Steen Lynge. + Met with Danish Prime Minister Mette Frederiksen. Also met with Danish Minister of + Foreign Affairs Jeppe Koford, Faroese Minister of Foreign Affairs and Education Jenis av + Rana, and Greenlandic Minister of Foreign Affairs and Energy Steen Lynge. doa-exist-temp 2021-06-02T11:12:05-04:00 doa-exist-temp 2022-01-05T07:54:42-04:00 - + 3952 secretary Michael R. Pompeo @@ -1492,13 +1573,15 @@ 2020-08-12 Czech Republic Pilsen, Prague - Joined Foreign Minister Petricek in Pilsen to commemorate the liberation of Western Czechoslovakia. In Prague, met with Prime Minister Babis and had a courtesy call with President Zeman. + Joined Foreign Minister Petricek in Pilsen to commemorate the liberation of Western + Czechoslovakia. In Prague, met with Prime Minister Babis and had a courtesy call with + President Zeman. doa-exist-temp 2021-06-02T11:13:45-04:00 doa-exist-temp 2022-01-05T07:52:08-04:00 - + 3954 secretary Michael R. Pompeo @@ -1512,7 +1595,7 @@ doa-exist-temp 2022-01-05T07:53:54-04:00 - + 3955 secretary Michael R. Pompeo @@ -1520,13 +1603,14 @@ 2020-08-14 Austria Vienna - Met with Foreign Minister Schallenberg and Chancellor Kurz. Also met with IAEA Director General Grossi. + Met with Foreign Minister Schallenberg and Chancellor Kurz. Also met with IAEA + Director General Grossi. doa-exist-temp 2021-06-02T11:18:05-04:00 doa-exist-temp 2022-01-05T07:54:12-04:00 - + 3956 secretary Michael R. Pompeo @@ -1534,13 +1618,14 @@ 2020-08-15 Poland Warsaw - Met with Prime Minister Morawiecki and Foreign Minister Czaputowicz. Also met with President Duda. + Met with Prime Minister Morawiecki and Foreign Minister Czaputowicz. Also met with + President Duda. doa-exist-temp 2021-06-02T13:14:10-04:00 doa-exist-temp 2022-01-05T07:52:48-04:00 - + 3957 secretary Michael R. Pompeo @@ -1548,13 +1633,14 @@ 2020-08-16 Dominican Republic Santo Domingo - Led the U.S. delegation to the presidential inauguration of Luis Abinader. + Led the U.S. delegation to the presidential inauguration of Luis + Abinader. doa-exist-temp 2021-06-02T13:15:35-04:00 doa-exist-temp 2022-01-05T07:53:23-04:00 - + 3958 secretary Michael R. Pompeo @@ -1568,7 +1654,7 @@ doa-exist-temp 2022-01-05T07:52:06-04:00 - + 3959 secretary Michael R. Pompeo @@ -1576,13 +1662,14 @@ 2020-08-25 Sudan Khartoum - Met with Prime Minister Abdalla Hamdok and Sovereign Council Chair General Abdel Fattah el-Burhan. + Met with Prime Minister Abdalla Hamdok and Sovereign Council Chair General Abdel + Fattah el-Burhan. doa-exist-temp 2021-06-02T13:18:01-04:00 doa-exist-temp 2022-01-05T07:52:59-04:00 - + 3960 secretary Michael R. Pompeo @@ -1590,13 +1677,14 @@ 2020-08-26 Bahrain Manama - Met with King Hamad Al Khalifa and Crown Prince Salman bin Hamad Al Khalifa. + Met with King Hamad Al Khalifa and Crown Prince Salman bin Hamad Al + Khalifa. doa-exist-temp 2021-06-02T13:19:32-04:00 doa-exist-temp 2022-01-05T07:53:55-04:00 - + 3961 secretary Michael R. Pompeo @@ -1604,13 +1692,14 @@ 2020-08-26 United Arab Emirates Abu Dhabi - Met with Minister of Foreign Affairs and International Cooperation Sheikh Abdullah bin Zayed Al Nahyan. + Met with Minister of Foreign Affairs and International Cooperation Sheikh Abdullah + bin Zayed Al Nahyan. doa-exist-temp 2021-06-02T13:20:37-04:00 doa-exist-temp 2022-01-05T07:54:22-04:00 - + 3962 secretary Michael R. Pompeo @@ -1624,7 +1713,7 @@ doa-exist-temp 2022-01-05T07:54:12-04:00 - + 3963 secretary Michael R. Pompeo @@ -1638,7 +1727,7 @@ doa-exist-temp 2022-01-05T07:53:03-04:00 - + 3964 secretary Michael R. Pompeo @@ -1652,7 +1741,7 @@ doa-exist-temp 2022-01-05T07:52:09-04:00 - + 3965 secretary Michael R. Pompeo @@ -1666,7 +1755,7 @@ doa-exist-temp 2022-01-05T07:54:22-04:00 - + 3966 secretary Michael R. Pompeo @@ -1674,13 +1763,14 @@ 2020-09-18 Guyana Georgetown - Met with President Irfaan Ali and CARICOM Secretary-General Irwin LaRocque. + Met with President Irfaan Ali and CARICOM Secretary-General Irwin + LaRocque. doa-exist-temp 2021-06-02T13:26:52-04:00 doa-exist-temp 2022-01-05T07:53:26-04:00 - + 3967 secretary Michael R. Pompeo @@ -1694,7 +1784,7 @@ doa-exist-temp 2022-01-05T07:53:32-04:00 - + 3968 secretary Michael R. Pompeo @@ -1708,7 +1798,7 @@ doa-exist-temp 2022-01-05T07:52:28-04:00 - + 3969 secretary Michael R. Pompeo @@ -1722,7 +1812,7 @@ doa-exist-temp 2022-01-05T07:52:26-04:00 - + 3970 secretary Michael R. Pompeo @@ -1736,7 +1826,7 @@ doa-exist-temp 2022-01-05T07:53:06-04:00 - + 3971 secretary Michael R. Pompeo @@ -1744,13 +1834,14 @@ 2020-09-30 Vatican City - Met with Secretary of State Cardinal Parolin and Secretary for Relations with States Archbishop Gallagher. + Met with Secretary of State Cardinal Parolin and Secretary for Relations with + States Archbishop Gallagher. doa-exist-temp 2021-06-02T13:37:38-04:00 doa-exist-temp 2022-01-05T07:53:28-04:00 - + 3972 secretary Michael R. Pompeo @@ -1758,13 +1849,14 @@ 2020-10-02 Croatia Dubrovnik - Met with Prime Minister Plenković, Foreign Minister Grlić Radman, and Defense Minister Banožić. + Met with Prime Minister Plenković, Foreign Minister Grlić Radman, and Defense + Minister Banožić. doa-exist-temp 2021-06-02T13:38:59-04:00 doa-exist-temp 2022-01-05T07:54:20-04:00 - + 3973 secretary Michael R. Pompeo @@ -1772,13 +1864,15 @@ 2020-10-06 Japan Tokyo - Met with Prime Minister Suga and participated in the second meeting of the Quad Foreign Ministers of Australia (Payne), India (Jaishankar), and Japan (Motegi). + Met with Prime Minister Suga and participated in the second meeting of the Quad + Foreign Ministers of Australia (Payne), India (Jaishankar), and Japan + (Motegi). doa-exist-temp 2021-06-02T13:40:21-04:00 doa-exist-temp 2022-01-05T07:54:01-04:00 - + 3974 secretary Michael R. Pompeo @@ -1786,13 +1880,15 @@ 2020-10-27 India New Delhi - Led, with Secretary of Defense Mark T. Esper, the third annual U.S.-India 2+2 Ministerial Dialogue. Met with Minister of External Affairs Subrahmanyam Jaishankar and Minister of Defense Rajnath Singh. + Led, with Secretary of Defense Mark T. Esper, the third annual U.S.-India 2+2 + Ministerial Dialogue. Met with Minister of External Affairs Subrahmanyam Jaishankar and + Minister of Defense Rajnath Singh. doa-exist-temp 2021-06-02T13:41:22-04:00 doa-exist-temp 2022-01-05T07:53:01-04:00 - + 3975 secretary Michael R. Pompeo @@ -1806,7 +1902,7 @@ doa-exist-temp 2022-01-05T07:53:14-04:00 - + 3976 secretary Michael R. Pompeo @@ -1820,7 +1916,7 @@ doa-exist-temp 2022-01-05T07:53:25-04:00 - + 3977 secretary Michael R. Pompeo @@ -1834,7 +1930,7 @@ doa-exist-temp 2022-01-05T07:54:20-04:00 - + 3978 secretary Michael R. Pompeo @@ -1842,13 +1938,14 @@ 2020-10-30 Vietnam Hanoi - Met with Prime Minister Phuc, Foreign Minister Minh, and Minister for Public Security Lam. + Met with Prime Minister Phuc, Foreign Minister Minh, and Minister for Public + Security Lam. doa-exist-temp 2021-06-02T13:47:05-04:00 doa-exist-temp 2022-01-05T07:53:28-04:00 - + 3979 secretary Michael R. Pompeo @@ -1862,7 +1959,7 @@ doa-exist-temp 2022-01-05T07:52:25-04:00 - + 3980 secretary Michael R. Pompeo @@ -1870,13 +1967,14 @@ 2020-11-16 Turkey Istanbul - Met with His All Holiness the Ecumenical Patriarch of Constantinople, Bartholomew I. + Met with His All Holiness the Ecumenical Patriarch of Constantinople, Bartholomew + I. doa-exist-temp 2021-06-02T13:49:25-04:00 doa-exist-temp 2022-01-05T07:53:09-04:00 - + 3981 secretary Michael R. Pompeo @@ -1884,13 +1982,15 @@ 2020-11-18 Georgia Tbilisi - Met with President Zourabichvili, Prime Minister Gakharia, and Foreign Minister Zalkaliani. Also met with Patriarch of the Georgian Orthodox Church, Hi Holiness Ilia II. + Met with President Zourabichvili, Prime Minister Gakharia, and Foreign Minister + Zalkaliani. Also met with Patriarch of the Georgian Orthodox Church, Hi Holiness Ilia + II. doa-exist-temp 2021-06-02T13:50:37-04:00 doa-exist-temp 2022-01-05T07:53:30-04:00 - + 3983 secretary Michael R. Pompeo @@ -1898,13 +1998,15 @@ 2020-11-19 Israel Jerusalem - Met with Prime Minister Benjamin Netanyahu and Foreign Minister Gabi Ashkenazi. Also held trilateral meeting with Prime Minister Netanyahu and Bahraini Foreign Minister Abdullatif bin Rashid Al Zayani. + Met with Prime Minister Benjamin Netanyahu and Foreign Minister Gabi Ashkenazi. + Also held trilateral meeting with Prime Minister Netanyahu and Bahraini Foreign Minister + Abdullatif bin Rashid Al Zayani. doa-exist-temp 2021-06-02T13:51:50-04:00 doa-exist-temp 2022-01-05T07:52:09-04:00 - + 3984 secretary Michael R. Pompeo @@ -1918,7 +2020,7 @@ doa-exist-temp 2022-01-05T07:52:24-04:00 - + 3985 secretary Michael R. Pompeo @@ -1926,13 +2028,16 @@ 2020-11-21 Qatar Doha - Met with Amir Tamim bin Hamad Al Thani and Deputy Prime Minister and Minister of Foreign Affairs Mohammed bin Abdulrahman Al Thani. Also met with delegations representing the Islamic Republic of Afghanistan and the Taliban in Afghanistan peace negotiations. + Met with Amir Tamim bin Hamad Al Thani and Deputy Prime Minister and Minister of + Foreign Affairs Mohammed bin Abdulrahman Al Thani. Also met with delegations + representing the Islamic Republic of Afghanistan and the Taliban in Afghanistan peace + negotiations. doa-exist-temp 2021-06-02T13:54:46-04:00 doa-exist-temp 2022-01-05T07:53:38-04:00 - + 3986 secretary Michael R. Pompeo @@ -1946,4 +2051,4 @@ doa-exist-temp 2022-01-05T07:52:19-04:00 - \ No newline at end of file + diff --git a/secretary-travels/powell-colin-luther.xml b/secretary-travels/powell-colin-luther.xml index 5d8da68..4df01c5 100644 --- a/secretary-travels/powell-colin-luther.xml +++ b/secretary-travels/powell-colin-luther.xml @@ -1,6 +1,6 @@ - + 1231 secretary Colin Luther Powell @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1232 secretary Colin Luther Powell @@ -22,13 +22,14 @@ 2001-02-24 Egypt Cairo - Met with senior Egyptian officials and with Russian Foreign Minister Ivanov. + Met with senior Egyptian officials and with Russian Foreign Minister + Ivanov. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1233 secretary Colin Luther Powell @@ -42,7 +43,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1234 secretary Colin Luther Powell @@ -56,7 +57,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1235 secretary Colin Luther Powell @@ -70,7 +71,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1236 secretary Colin Luther Powell @@ -78,13 +79,14 @@ 2001-02-26 Kuwait Kuwait City - Attended ceremonies commemorating the 10th anniversary of the liberation of Kuwait. + Attended ceremonies commemorating the 10th anniversary of the liberation of + Kuwait. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1237 secretary Colin Luther Powell @@ -98,7 +100,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1238 secretary Colin Luther Powell @@ -112,7 +114,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1239 secretary Colin Luther Powell @@ -126,7 +128,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1240 secretary Colin Luther Powell @@ -134,13 +136,14 @@ 2001-04-12 France Paris - Met with Contact Group Foreign Ministers, with Russian Foreign Minister Ivanov and with President Chirac. + Met with Contact Group Foreign Ministers, with Russian Foreign Minister Ivanov and + with President Chirac. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1241 secretary Colin Luther Powell @@ -148,13 +151,15 @@ 2001-04-13 Macedonia, Former Yugoslav Republic of Skopje - Met with the Foreign Ministers of Croatia, Hungary, Bosnia, Slovenia, Romania, Albania, Greece, and Turkey, and with Macedonian political leaders. Later met with the UN Administrator for Kosovo and with Kosovo political leaders. + Met with the Foreign Ministers of Croatia, Hungary, Bosnia, Slovenia, Romania, + Albania, Greece, and Turkey, and with Macedonian political leaders. Later met with the + UN Administrator for Kosovo and with Kosovo political leaders. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1242 secretary Colin Luther Powell @@ -162,13 +167,14 @@ 2001-04-13 Bosnia-Herzegovina Sarajevo - Met with the Collective Presidency, Bosnian political leaders, and with NATO and OSCE officials. + Met with the Collective Presidency, Bosnian political leaders, and with NATO and + OSCE officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1243 secretary Colin Luther Powell @@ -182,7 +188,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1244 secretary Colin Luther Powell @@ -196,7 +202,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1245 secretary Colin Luther Powell @@ -204,13 +210,14 @@ 2001-05-24 Mali Bamako - Met with President Konare and toured the Malaria Research and Training Center at the University of Mali. + Met with President Konare and toured the Malaria Research and Training Center at + the University of Mali. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1246 secretary Colin Luther Powell @@ -218,13 +225,14 @@ 2001-05-25 South Africa Pretoria - Met with President Mbeki and delivered an address at Witwatersrand University. + Met with President Mbeki and delivered an address at Witwatersrand + University. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1247 secretary Colin Luther Powell @@ -232,13 +240,14 @@ 2001-05-27 Kenya Nairobi - Met with President Moi, Kenyan civil and political leaders, and UN and NGO representatives. + Met with President Moi, Kenyan civil and political leaders, and UN and NGO + representatives. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1248 secretary Colin Luther Powell @@ -252,7 +261,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1249 secretary Colin Luther Powell @@ -266,7 +275,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1250 secretary Colin Luther Powell @@ -280,7 +289,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1251 secretary Colin Luther Powell @@ -294,7 +303,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1252 secretary Colin Luther Powell @@ -308,7 +317,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1253 secretary Colin Luther Powell @@ -322,7 +331,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1254 secretary Colin Luther Powell @@ -330,13 +339,14 @@ 2001-06-16 Slovenia Ljubljana - Accompanied President Bush to meetings with President Kucan, Prime Minister Drnovsek, and Russian President Putin. + Accompanied President Bush to meetings with President Kucan, Prime Minister + Drnovsek, and Russian President Putin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1255 secretary Colin Luther Powell @@ -350,7 +360,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1256 secretary Colin Luther Powell @@ -364,7 +374,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1257 secretary Colin Luther Powell @@ -378,7 +388,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1258 secretary Colin Luther Powell @@ -392,7 +402,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1259 secretary Colin Luther Powell @@ -406,7 +416,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1260 secretary Colin Luther Powell @@ -420,7 +430,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1261 secretary Colin Luther Powell @@ -434,7 +444,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1262 secretary Colin Luther Powell @@ -448,7 +458,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1263 secretary Colin Luther Powell @@ -462,7 +472,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1264 secretary Colin Luther Powell @@ -476,7 +486,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1265 secretary Colin Luther Powell @@ -490,7 +500,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1266 secretary Colin Luther Powell @@ -504,7 +514,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1267 secretary Colin Luther Powell @@ -512,13 +522,14 @@ 2001-10-16 Pakistan Islamabad - Discussed cooperation against terrorism with President Musharraf and senior officials. + Discussed cooperation against terrorism with President Musharraf and senior + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1268 secretary Colin Luther Powell @@ -526,13 +537,14 @@ 2001-10-17 India New Delhi - Discussed cooperation against terrorism with Prime Minister Vajpayee and senior officials. + Discussed cooperation against terrorism with Prime Minister Vajpayee and senior + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1269 secretary Colin Luther Powell @@ -546,7 +558,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1270 secretary Colin Luther Powell @@ -560,7 +572,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1271 secretary Colin Luther Powell @@ -574,7 +586,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1272 secretary Colin Luther Powell @@ -582,13 +594,14 @@ 2001-12-07 Belgium Brussels - Attended NATO Ministerial Meeting; addressed EU Justice and Home Affairs Council. + Attended NATO Ministerial Meeting; addressed EU Justice and Home Affairs + Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1273 secretary Colin Luther Powell @@ -602,7 +615,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1274 secretary Colin Luther Powell @@ -616,7 +629,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1275 secretary Colin Luther Powell @@ -630,7 +643,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1276 secretary Colin Luther Powell @@ -644,7 +657,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1277 secretary Colin Luther Powell @@ -658,7 +671,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1278 secretary Colin Luther Powell @@ -672,7 +685,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1279 secretary Colin Luther Powell @@ -680,13 +693,14 @@ 2002-01-17 Pakistan Islamabad - Met with President Musharraf and senior officials. Returned to Pakistan after visiting Afghanistan. + Met with President Musharraf and senior officials. Returned to Pakistan after + visiting Afghanistan. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1280 secretary Colin Luther Powell @@ -694,13 +708,14 @@ 2002-01-17 Afghanistan Kabul - Met with leaders of the Afghan Interim Authority. Announced the upgrading of the U.S. Liaison Office to Embassy status. + Met with leaders of the Afghan Interim Authority. Announced the upgrading of the + U.S. Liaison Office to Embassy status. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1281 secretary Colin Luther Powell @@ -708,13 +723,14 @@ 2002-01-18 India New Delhi - Met with Prime Minister Vajpayee, Foreign Minister Singh, and senior officials. + Met with Prime Minister Vajpayee, Foreign Minister Singh, and senior + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1282 secretary Colin Luther Powell @@ -728,7 +744,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1283 secretary Colin Luther Powell @@ -736,13 +752,14 @@ 2002-01-21 Japan Tokyo - Attended the International Conference on Reconstruction Assistance to Afghanistan. + Attended the International Conference on Reconstruction Assistance to + Afghanistan. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1284 secretary Colin Luther Powell @@ -756,7 +773,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1285 secretary Colin Luther Powell @@ -770,7 +787,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1286 secretary Colin Luther Powell @@ -784,7 +801,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1287 secretary Colin Luther Powell @@ -798,7 +815,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1288 secretary Colin Luther Powell @@ -806,13 +823,14 @@ 2002-03-22 Mexico Monterrey - Accompanied President Bush to the UN Conference on International Development. + Accompanied President Bush to the UN Conference on International + Development. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1289 secretary Colin Luther Powell @@ -820,13 +838,14 @@ 2002-03-23 Peru Lima - Accompanied President Bush to meetings with the Presidents of Peru, Colombia, and Bolivia, and the Vice President of Ecuador. + Accompanied President Bush to meetings with the Presidents of Peru, Colombia, and + Bolivia, and the Vice President of Ecuador. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1290 secretary Colin Luther Powell @@ -834,13 +853,14 @@ 2002-03-24 El Salvador San Salvador - Accompanied President Bush to meetings with Central American heads of state. + Accompanied President Bush to meetings with Central American heads of + state. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1291 secretary Colin Luther Powell @@ -854,7 +874,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1292 secretary Colin Luther Powell @@ -868,7 +888,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1293 secretary Colin Luther Powell @@ -876,13 +896,15 @@ 2002-04-11 Spain Madrid - Attended U.S.-EU Ministerial Meeting. Met with UN Secretary-General Annan and Russian Foreign Minister Ivanov. Signed Defense Cooperation agreements with Spain. + Attended U.S.-EU Ministerial Meeting. Met with UN Secretary-General Annan and + Russian Foreign Minister Ivanov. Signed Defense Cooperation agreements with + Spain. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1294 secretary Colin Luther Powell @@ -896,7 +918,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1295 secretary Colin Luther Powell @@ -904,13 +926,14 @@ 2002-04-15 Israel Tel Aviv, Jerusalem, Safed - Met with Prime Minister Sharon, Foreign Minister Peres, and senior Israeli officials. + Met with Prime Minister Sharon, Foreign Minister Peres, and senior Israeli + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1296 secretary Colin Luther Powell @@ -924,7 +947,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1297 secretary Colin Luther Powell @@ -932,13 +955,14 @@ 2002-04-15 Lebanon Beirut - Met with President Lahoud, Prime Minister Hariri and Foreign Minister Hammoud. + Met with President Lahoud, Prime Minister Hariri and Foreign Minister + Hammoud. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1298 secretary Colin Luther Powell @@ -952,7 +976,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1299 secretary Colin Luther Powell @@ -960,13 +984,14 @@ 2002-04-17 Israel Jerusalem - Continued meetings with Israeli officials and Palestinian representatives. + Continued meetings with Israeli officials and Palestinian + representatives. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1300 secretary Colin Luther Powell @@ -980,7 +1005,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1301 secretary Colin Luther Powell @@ -994,7 +1019,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1302 secretary Colin Luther Powell @@ -1008,7 +1033,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1303 secretary Colin Luther Powell @@ -1016,13 +1041,15 @@ 2002-05-15 Iceland Reykjavik - Attended NATO Foreign Ministers’ Meeting and meetings of the NATO-Ukraine Commission and Euro-Atlantic Partnership Council. Also met with Russian Foreign Minister Ivanov. + Attended NATO Foreign Ministers’ Meeting and meetings of the NATO-Ukraine + Commission and Euro-Atlantic Partnership Council. Also met with Russian Foreign Minister + Ivanov. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1304 secretary Colin Luther Powell @@ -1036,7 +1063,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1305 secretary Colin Luther Powell @@ -1050,7 +1077,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1306 secretary Colin Luther Powell @@ -1064,7 +1091,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1307 secretary Colin Luther Powell @@ -1072,13 +1099,14 @@ 2002-05-28 Italy Rome - Accompanied President Bush to a NATO Summit Meeting and the inauguration of the NATO-Russia Council. + Accompanied President Bush to a NATO Summit Meeting and the inauguration of the + NATO-Russia Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1308 secretary Colin Luther Powell @@ -1092,7 +1120,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1309 secretary Colin Luther Powell @@ -1100,13 +1128,14 @@ 2002-06-03 Barbados Bridgetown - Attended OAS General Assembly and signed the Inter-American Convention Against Terrorism. + Attended OAS General Assembly and signed the Inter-American Convention Against + Terrorism. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1310 secretary Colin Luther Powell @@ -1120,7 +1149,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1311 secretary Colin Luther Powell @@ -1134,7 +1163,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1312 secretary Colin Luther Powell @@ -1148,7 +1177,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1313 secretary Colin Luther Powell @@ -1162,7 +1191,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1314 secretary Colin Luther Powell @@ -1176,7 +1205,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1315 secretary Colin Luther Powell @@ -1190,7 +1219,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1316 secretary Colin Luther Powell @@ -1198,13 +1227,14 @@ 2002-08-01 Brunei Darussalam Bandar Seri Begawan - Attended ASEAN Regional Forum and Post-Ministerial Conference. Met with North Korean Foreign Minister Paek Nam Sun. + Attended ASEAN Regional Forum and Post-Ministerial Conference. Met with North + Korean Foreign Minister Paek Nam Sun. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1317 secretary Colin Luther Powell @@ -1218,7 +1248,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1318 secretary Colin Luther Powell @@ -1232,7 +1262,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1319 secretary Colin Luther Powell @@ -1246,7 +1276,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1320 secretary Colin Luther Powell @@ -1254,13 +1284,14 @@ 2002-09-05 Angola Luanda - Met with President dos Santos and attended a meeting of the Joint Commission for the Implementation of the Lusaka Protocols. + Met with President dos Santos and attended a meeting of the Joint Commission for + the Implementation of the Lusaka Protocols. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1321 secretary Colin Luther Powell @@ -1268,13 +1299,14 @@ 2002-09-06 Gabon Libreville - Met with President Bongo and Foreign Minister Ping. Visited Pongara National Park. + Met with President Bongo and Foreign Minister Ping. Visited Pongara National + Park. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1322 secretary Colin Luther Powell @@ -1288,7 +1320,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1323 secretary Colin Luther Powell @@ -1302,7 +1334,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1324 secretary Colin Luther Powell @@ -1316,7 +1348,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1325 secretary Colin Luther Powell @@ -1330,7 +1362,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1326 secretary Colin Luther Powell @@ -1344,7 +1376,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1327 secretary Colin Luther Powell @@ -1352,13 +1384,14 @@ 2002-11-23 Lithuania Vilnius - Accompanied President Bush to a meeting with the Presidents of the Baltic States. + Accompanied President Bush to a meeting with the Presidents of the Baltic + States. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1328 secretary Colin Luther Powell @@ -1372,7 +1405,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1329 secretary Colin Luther Powell @@ -1386,7 +1419,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1330 secretary Colin Luther Powell @@ -1400,7 +1433,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1331 secretary Colin Luther Powell @@ -1414,7 +1447,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1332 secretary Colin Luther Powell @@ -1428,7 +1461,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1333 secretary Colin Luther Powell @@ -1442,7 +1475,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1334 secretary Colin Luther Powell @@ -1456,7 +1489,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1335 secretary Colin Luther Powell @@ -1464,13 +1497,14 @@ 2003-04-02 Turkey Ankara - Discussed the conflict in Iraq and economic aid with senior Turkish officials. + Discussed the conflict in Iraq and economic aid with senior Turkish + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1336 secretary Colin Luther Powell @@ -1484,7 +1518,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1337 secretary Colin Luther Powell @@ -1492,13 +1526,14 @@ 2003-04-03 Belgium Brussels - Discussed the conflict in Iraq with NATO, EU, and Russian Foreign Ministers. + Discussed the conflict in Iraq with NATO, EU, and Russian Foreign + Ministers. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1338 secretary Colin Luther Powell @@ -1506,13 +1541,14 @@ 2003-04-08 United Kingdom Belfast, Hillsborough (Northern Ireland) - Accompanied President Bush to meetings with Prime Minister Blair and with Irish Prime Minister Ahern and Northern Irish political leaders. + Accompanied President Bush to meetings with Prime Minister Blair and with Irish + Prime Minister Ahern and Northern Irish political leaders. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1339 secretary Colin Luther Powell @@ -1526,7 +1562,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1340 secretary Colin Luther Powell @@ -1534,13 +1570,14 @@ 2003-05-02 Albania Tirana - Signed the Adriatic Charter of Partnership with the Foreign Ministers of Albania, Croatia, and Macedonia. + Signed the Adriatic Charter of Partnership with the Foreign Ministers of Albania, + Croatia, and Macedonia. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1341 secretary Colin Luther Powell @@ -1554,7 +1591,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1342 secretary Colin Luther Powell @@ -1568,7 +1605,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1343 secretary Colin Luther Powell @@ -1576,13 +1613,14 @@ 2003-05-12 Israel Jerusalem - Met with Prime Minister Sharon and senior Israeli officials; attended a Quartet working group meeting. + Met with Prime Minister Sharon and senior Israeli officials; attended a Quartet + working group meeting. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1344 secretary Colin Luther Powell @@ -1596,7 +1634,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1345 secretary Colin Luther Powell @@ -1610,7 +1648,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1346 secretary Colin Luther Powell @@ -1624,7 +1662,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1347 secretary Colin Luther Powell @@ -1632,13 +1670,14 @@ 2003-05-13 Saudi Arabia Riyadh - Met with Crown Prince Abdullah and visited the Vinnell Compound after a terrorist attack. + Met with Crown Prince Abdullah and visited the Vinnell Compound after a terrorist + attack. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1348 secretary Colin Luther Powell @@ -1652,7 +1691,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1349 secretary Colin Luther Powell @@ -1660,13 +1699,14 @@ 2003-05-15 Bulgaria Sofia - Met with Prime Minister Saxe-Coburg and Foreign Minister Passy; commemorated the 100th anniversary of U.S.-Bulgarian relations. + Met with Prime Minister Saxe-Coburg and Foreign Minister Passy; commemorated the + 100th anniversary of U.S.-Bulgarian relations. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1350 secretary Colin Luther Powell @@ -1680,7 +1720,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1351 secretary Colin Luther Powell @@ -1694,7 +1734,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1352 secretary Colin Luther Powell @@ -1708,7 +1748,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1353 secretary Colin Luther Powell @@ -1722,7 +1762,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1354 secretary Colin Luther Powell @@ -1736,7 +1776,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1355 secretary Colin Luther Powell @@ -1744,13 +1784,14 @@ 2003-06-02 Vatican City - Briefed Pope John Paul II on the Middle East Summit and relief efforts in Iraq. + Briefed Pope John Paul II on the Middle East Summit and relief efforts in + Iraq. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1356 secretary Colin Luther Powell @@ -1758,13 +1799,14 @@ 2003-06-04 Egypt Sharm el-Sheikh - Accompanied President Bush to meetings with the leaders of Bahrain, Egypt, Jordan and Saudi Arabia, and with Palestinian Prime Minister Abbas. + Accompanied President Bush to meetings with the leaders of Bahrain, Egypt, Jordan + and Saudi Arabia, and with Palestinian Prime Minister Abbas. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1357 secretary Colin Luther Powell @@ -1772,13 +1814,14 @@ 2003-06-04 Jordan Aqaba - Accompanied President Bush to meetings with Israeli Prime Minister Sharon and Palestinian Prime Minister Abbas. + Accompanied President Bush to meetings with Israeli Prime Minister Sharon and + Palestinian Prime Minister Abbas. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1358 secretary Colin Luther Powell @@ -1792,7 +1835,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1359 secretary Colin Luther Powell @@ -1806,7 +1849,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1360 secretary Colin Luther Powell @@ -1820,7 +1863,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1361 secretary Colin Luther Powell @@ -1834,7 +1877,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1362 secretary Colin Luther Powell @@ -1848,7 +1891,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1363 secretary Colin Luther Powell @@ -1856,13 +1899,14 @@ 2003-06-23 Jordan Shuneh, Suweima, Petra - Attended the World Economic Forum, met with Quartet representatives, and visited Petra. + Attended the World Economic Forum, met with Quartet representatives, and visited + Petra. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1364 secretary Colin Luther Powell @@ -1876,7 +1920,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1365 secretary Colin Luther Powell @@ -1890,7 +1934,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1366 secretary Colin Luther Powell @@ -1904,7 +1948,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1367 secretary Colin Luther Powell @@ -1918,7 +1962,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1368 secretary Colin Luther Powell @@ -1932,7 +1976,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1369 secretary Colin Luther Powell @@ -1946,7 +1990,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1370 secretary Colin Luther Powell @@ -1960,7 +2004,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1371 secretary Colin Luther Powell @@ -1968,13 +2012,14 @@ 2003-09-13 Switzerland Geneva - Met with UN Secretary-General Annan and the Foreign Ministers of the Permanent Members of the Security Council. + Met with UN Secretary-General Annan and the Foreign Ministers of the Permanent + Members of the Security Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1372 secretary Colin Luther Powell @@ -1988,7 +2033,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1373 secretary Colin Luther Powell @@ -1996,13 +2041,14 @@ 2003-09-15 Iraq Baghdad, Halabja - Met with U.S. military and civilian authorities and with the Iraqi Governing Council; also met with Kurdish leaders in Halabja. + Met with U.S. military and civilian authorities and with the Iraqi Governing + Council; also met with Kurdish leaders in Halabja. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1374 secretary Colin Luther Powell @@ -2016,7 +2062,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1375 secretary Colin Luther Powell @@ -2030,7 +2076,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1376 secretary Colin Luther Powell @@ -2044,7 +2090,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1377 secretary Colin Luther Powell @@ -2058,7 +2104,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1378 secretary Colin Luther Powell @@ -2072,7 +2118,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1379 secretary Colin Luther Powell @@ -2080,13 +2126,14 @@ 2003-11-03 Panama Panama City - Attended a ceremony honoring the centennial of Panamanian independence. Greeted Taiwanese President Chen Shu-bian. + Attended a ceremony honoring the centennial of Panamanian independence. Greeted + Taiwanese President Chen Shu-bian. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1380 secretary Colin Luther Powell @@ -2100,7 +2147,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1381 secretary Colin Luther Powell @@ -2114,7 +2161,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1382 secretary Colin Luther Powell @@ -2128,7 +2175,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1383 secretary Colin Luther Powell @@ -2142,7 +2189,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1384 secretary Colin Luther Powell @@ -2156,7 +2203,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1385 secretary Colin Luther Powell @@ -2170,7 +2217,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1386 secretary Colin Luther Powell @@ -2184,7 +2231,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1387 secretary Colin Luther Powell @@ -2198,7 +2245,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1388 secretary Colin Luther Powell @@ -2212,7 +2259,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1389 secretary Colin Luther Powell @@ -2226,7 +2273,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1390 secretary Colin Luther Powell @@ -2234,13 +2281,14 @@ 2004-01-25 Georgia Tbilisi - Attended the inauguration of President Saakashvili and met with former President Shevardnadze. + Attended the inauguration of President Saakashvili and met with former President + Shevardnadze. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1391 secretary Colin Luther Powell @@ -2254,7 +2302,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1392 secretary Colin Luther Powell @@ -2268,7 +2316,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1393 secretary Colin Luther Powell @@ -2282,7 +2330,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1394 secretary Colin Luther Powell @@ -2296,7 +2344,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1395 secretary Colin Luther Powell @@ -2304,13 +2352,14 @@ 2004-03-20 Kuwait Kuwait City - Met with Amir Jabir al-Sabah, Prime Minister Sabah, and Foreign Minister Sabah. + Met with Amir Jabir al-Sabah, Prime Minister Sabah, and Foreign Minister + Sabah. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1396 secretary Colin Luther Powell @@ -2318,13 +2367,14 @@ 2004-03-19 Iraq Baghdad - Met with members of the Coalition Provisional Authority and the Iraqi Governing Council. + Met with members of the Coalition Provisional Authority and the Iraqi Governing + Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1397 secretary Colin Luther Powell @@ -2338,7 +2388,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1398 secretary Colin Luther Powell @@ -2352,7 +2402,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1399 secretary Colin Luther Powell @@ -2366,7 +2416,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1400 secretary Colin Luther Powell @@ -2380,7 +2430,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1401 secretary Colin Luther Powell @@ -2394,7 +2444,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1402 secretary Colin Luther Powell @@ -2408,7 +2458,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1403 secretary Colin Luther Powell @@ -2422,7 +2472,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1404 secretary Colin Luther Powell @@ -2436,7 +2486,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1405 secretary Colin Luther Powell @@ -2450,7 +2500,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1406 secretary Colin Luther Powell @@ -2464,7 +2514,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1407 secretary Colin Luther Powell @@ -2478,7 +2528,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1408 secretary Colin Luther Powell @@ -2492,7 +2542,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1409 secretary Colin Luther Powell @@ -2506,7 +2556,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1410 secretary Colin Luther Powell @@ -2520,7 +2570,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1411 secretary Colin Luther Powell @@ -2528,13 +2578,14 @@ 2004-06-30 Sudan Khartoum, El Fasher, Abu Shouk - Met with President Bashir and Foreign Minister Ismail. Visited a refugee camp in the Darfur region. + Met with President Bashir and Foreign Minister Ismail. Visited a refugee camp in + the Darfur region. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1412 secretary Colin Luther Powell @@ -2548,7 +2599,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1413 secretary Colin Luther Powell @@ -2562,7 +2613,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1414 secretary Colin Luther Powell @@ -2570,13 +2621,14 @@ 2004-07-27 Hungary Budapest - Met with Foreign Minister Kovacs and addressed a conference of Hungarian ambassadors. + Met with Foreign Minister Kovacs and addressed a conference of Hungarian + ambassadors. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1415 secretary Colin Luther Powell @@ -2584,13 +2636,14 @@ 2004-07-28 Egypt Cairo - Met with President Mubarak, Prime Minister Aboul Gheit, and Foreign Minister Gheit. + Met with President Mubarak, Prime Minister Aboul Gheit, and Foreign Minister + Gheit. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1416 secretary Colin Luther Powell @@ -2598,13 +2651,14 @@ 2004-07-29 Saudi Arabia Jeddah - Met with Crown Prince Abdullah, Foreign Minister Prince Saud, and Iraqi Prime Minister Allawi. + Met with Crown Prince Abdullah, Foreign Minister Prince Saud, and Iraqi Prime + Minister Allawi. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1417 secretary Colin Luther Powell @@ -2618,7 +2672,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1418 secretary Colin Luther Powell @@ -2626,13 +2680,14 @@ 2004-07-30 Iraq Baghdad - Met with President Yawer and Deputy Prime Minister Salih. Returned to Kuwait afterwards. + Met with President Yawer and Deputy Prime Minister Salih. Returned to Kuwait + afterwards. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1419 secretary Colin Luther Powell @@ -2646,7 +2701,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1420 secretary Colin Luther Powell @@ -2654,13 +2709,14 @@ 2004-08-01 Poland Warsaw - Met with Foreign Minister Cimoszewicz and attended ceremonies commemorating the 60th anniversary of the Warsaw Uprising. + Met with Foreign Minister Cimoszewicz and attended ceremonies commemorating the + 60th anniversary of the Warsaw Uprising. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1421 secretary Colin Luther Powell @@ -2674,7 +2730,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1422 secretary Colin Luther Powell @@ -2688,7 +2744,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1423 secretary Colin Luther Powell @@ -2696,13 +2752,14 @@ 2004-10-06 Brazil Brasilia, Sao Paulo - Met with President Lula da Silva and Foreign Minister Amorim and addressed the American Chamber of Commerce. + Met with President Lula da Silva and Foreign Minister Amorim and addressed the + American Chamber of Commerce. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1424 secretary Colin Luther Powell @@ -2716,7 +2773,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1425 secretary Colin Luther Powell @@ -2730,7 +2787,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1426 secretary Colin Luther Powell @@ -2744,7 +2801,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1427 secretary Colin Luther Powell @@ -2758,7 +2815,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1428 secretary Colin Luther Powell @@ -2772,7 +2829,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1429 secretary Colin Luther Powell @@ -2780,13 +2837,14 @@ 2004-11-21 Chile Santiago - Attended APEC Ministerial meetings and accompanied President Bush to the APEC Summit meeting. + Attended APEC Ministerial meetings and accompanied President Bush to the APEC + Summit meeting. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1430 secretary Colin Luther Powell @@ -2794,13 +2852,14 @@ 2004-11-22 Israel Jerusalem - Attended APEC Summit meeting. Met with Prime Minister Sharon and Foreign Minister Shalom. + Attended APEC Summit meeting. Met with Prime Minister Sharon and Foreign Minister + Shalom. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1431 secretary Colin Luther Powell @@ -2808,13 +2867,14 @@ 2004-11-22 Palestinian Authority Jericho - Met with Prime Minister Qureia, acting President Fattouh, and former Prime Minister Abbas. + Met with Prime Minister Qureia, acting President Fattouh, and former Prime Minister + Abbas. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1432 secretary Colin Luther Powell @@ -2828,7 +2888,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1433 secretary Colin Luther Powell @@ -2842,7 +2902,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1434 secretary Colin Luther Powell @@ -2850,13 +2910,14 @@ 2004-12-01 Haiti Port-au-Prince - Met with President Alexandre, Prime Minister Latortue, and political leaders. + Met with President Alexandre, Prime Minister Latortue, and political + leaders. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1435 secretary Colin Luther Powell @@ -2870,7 +2931,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1436 secretary Colin Luther Powell @@ -2878,13 +2939,14 @@ 2004-12-10 Belgium Brussels - Attended North Atlantic Council, NATO-Russia and Euro-Atlantic Partnership Council meetings. + Attended North Atlantic Council, NATO-Russia and Euro-Atlantic Partnership Council + meetings. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1437 secretary Colin Luther Powell @@ -2898,7 +2960,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1438 secretary Colin Luther Powell @@ -2912,7 +2974,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1439 secretary Colin Luther Powell @@ -2926,7 +2988,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1440 secretary Colin Luther Powell @@ -2940,7 +3002,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1441 secretary Colin Luther Powell @@ -2948,13 +3010,14 @@ 2005-01-07 Indonesia Jakarta, Banda Aceh - Assessed tsunami damage and relief efforts. Attended ASEAN Leaders’ Special Meeting on Tsunami Relief. + Assessed tsunami damage and relief efforts. Attended ASEAN Leaders’ Special Meeting + on Tsunami Relief. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1442 secretary Colin Luther Powell @@ -2968,7 +3031,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1443 secretary Colin Luther Powell @@ -2982,7 +3045,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1444 secretary Colin Luther Powell @@ -2996,4 +3059,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/rice-condoleezza.xml b/secretary-travels/rice-condoleezza.xml index 11be4c0..cf2af42 100644 --- a/secretary-travels/rice-condoleezza.xml +++ b/secretary-travels/rice-condoleezza.xml @@ -1,6 +1,6 @@ - + 1445 secretary Condoleezza Rice @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1446 secretary Condoleezza Rice @@ -28,7 +28,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1447 secretary Condoleezza Rice @@ -42,7 +42,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1448 secretary Condoleezza Rice @@ -56,7 +56,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1449 secretary Condoleezza Rice @@ -70,7 +70,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1450 secretary Condoleezza Rice @@ -84,7 +84,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1451 secretary Condoleezza Rice @@ -98,7 +98,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1452 secretary Condoleezza Rice @@ -112,7 +112,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1453 secretary Condoleezza Rice @@ -120,13 +120,14 @@ 2005-02-09 France Paris - Met with President Chirac and Foreign Minister Barnier; addressed the Institute of Political Sciences. + Met with President Chirac and Foreign Minister Barnier; addressed the Institute of + Political Sciences. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1454 secretary Condoleezza Rice @@ -140,7 +141,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1455 secretary Condoleezza Rice @@ -154,7 +155,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1456 secretary Condoleezza Rice @@ -168,7 +169,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1457 secretary Condoleezza Rice @@ -182,7 +183,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1458 secretary Condoleezza Rice @@ -196,7 +197,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1459 secretary Condoleezza Rice @@ -210,7 +211,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1460 secretary Condoleezza Rice @@ -224,7 +225,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1461 secretary Condoleezza Rice @@ -238,7 +239,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1462 secretary Condoleezza Rice @@ -252,7 +253,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1463 secretary Condoleezza Rice @@ -260,13 +261,14 @@ 2005-03-17 Afghanistan Kabul - Met with President Karzai and Afghan political leaders; addressed U.S. military personnel. + Met with President Karzai and Afghan political leaders; addressed U.S. military + personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1464 secretary Condoleezza Rice @@ -280,7 +282,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1465 secretary Condoleezza Rice @@ -294,7 +296,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1466 secretary Condoleezza Rice @@ -308,7 +310,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1467 secretary Condoleezza Rice @@ -322,7 +324,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1468 secretary Condoleezza Rice @@ -330,13 +332,14 @@ 2005-04-20 Russia Moscow - Met with President Putin, Prime Minister Lavrov, and senior Russian officials. + Met with President Putin, Prime Minister Lavrov, and senior Russian + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1469 secretary Condoleezza Rice @@ -344,13 +347,14 @@ 2005-04-21 Lithuania Vilnius - Attended a NATO Foreign Ministers’ Meeting and meetings of the NATO-Russia Council and the NATO-Ukraine Commission. + Attended a NATO Foreign Ministers’ Meeting and meetings of the NATO-Russia Council + and the NATO-Ukraine Commission. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1470 secretary Condoleezza Rice @@ -364,7 +368,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1471 secretary Condoleezza Rice @@ -378,7 +382,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1472 secretary Condoleezza Rice @@ -392,7 +396,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1473 secretary Condoleezza Rice @@ -406,7 +410,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1474 secretary Condoleezza Rice @@ -414,13 +418,14 @@ 2005-05-07 Latvia Riga - Accompanied President Bush to meetings with the presidents of the Baltic States. + Accompanied President Bush to meetings with the presidents of the Baltic + States. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1475 secretary Condoleezza Rice @@ -434,7 +439,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1476 secretary Condoleezza Rice @@ -448,7 +453,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1477 secretary Condoleezza Rice @@ -462,7 +467,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1478 secretary Condoleezza Rice @@ -476,7 +481,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1479 secretary Condoleezza Rice @@ -490,7 +495,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1480 secretary Condoleezza Rice @@ -504,7 +509,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1481 secretary Condoleezza Rice @@ -518,7 +523,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1482 secretary Condoleezza Rice @@ -532,7 +537,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1483 secretary Condoleezza Rice @@ -546,7 +551,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1484 secretary Condoleezza Rice @@ -554,13 +559,14 @@ 2005-06-20 Egypt Sharm el-Sheikh, Cairo - Met with President Mubarak, Foreign Minister Aboul Ghait, and political leaders; gave a speech at the American University in Cairo. + Met with President Mubarak, Foreign Minister Aboul Ghait, and political leaders; + gave a speech at the American University in Cairo. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1485 secretary Condoleezza Rice @@ -574,7 +580,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1486 secretary Condoleezza Rice @@ -588,7 +594,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1487 secretary Condoleezza Rice @@ -602,7 +608,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1488 secretary Condoleezza Rice @@ -616,7 +622,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1489 secretary Condoleezza Rice @@ -624,13 +630,14 @@ 2005-07-11 Thailand Phuket, Ban Bang Sak - Met with Foreign Minister Suphamongkhon and Deputy Prime Minister Sathirathai and assessed tsunami relief aid. + Met with Foreign Minister Suphamongkhon and Deputy Prime Minister Sathirathai and + assessed tsunami relief aid. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1490 secretary Condoleezza Rice @@ -644,7 +651,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1491 secretary Condoleezza Rice @@ -658,7 +665,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1492 secretary Condoleezza Rice @@ -666,13 +673,14 @@ 2005-07-20 Senegal Dakar - Attended the U.S.-Sub-Saharan Africa Trade and Economic Cooperation Forum. + Attended the U.S.-Sub-Saharan Africa Trade and Economic Cooperation + Forum. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1493 secretary Condoleezza Rice @@ -686,7 +694,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1494 secretary Condoleezza Rice @@ -700,7 +708,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1495 secretary Condoleezza Rice @@ -708,13 +716,14 @@ 2005-07-22 Lebanon Beirut - Met with Prime Minister Seniora and Lebanese political leaders.  Laid a wreath on the grave of former Prime Minister Hariri. + Met with Prime Minister Seniora and Lebanese political leaders.  Laid a wreath on + the grave of former Prime Minister Hariri. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1496 secretary Condoleezza Rice @@ -728,7 +737,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1497 secretary Condoleezza Rice @@ -742,7 +751,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1498 secretary Condoleezza Rice @@ -756,7 +765,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1499 secretary Condoleezza Rice @@ -764,13 +773,14 @@ 2005-10-12 Kyrgyzstan Bishkek - Met with President Bakiyev, addressed coalition military personnel, signed agreement concerning access to the Manas airfield. + Met with President Bakiyev, addressed coalition military personnel, signed + agreement concerning access to the Manas airfield. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1500 secretary Condoleezza Rice @@ -784,7 +794,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1501 secretary Condoleezza Rice @@ -792,13 +802,14 @@ 2005-10-12 Pakistan Islamabad - Met with President Musharraf and Prime Minister Aziz.  Discussed disaster relief. + Met with President Musharraf and Prime Minister Aziz.  Discussed disaster + relief. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1502 secretary Condoleezza Rice @@ -806,13 +817,14 @@ 2005-10-13 Kazakhstan Astana - Met with President Nazarbayev and made a speech at Eurasian National University. + Met with President Nazarbayev and made a speech at Eurasian National + University. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1503 secretary Condoleezza Rice @@ -826,7 +838,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1504 secretary Condoleezza Rice @@ -840,7 +852,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1505 secretary Condoleezza Rice @@ -854,7 +866,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1506 secretary Condoleezza Rice @@ -868,7 +880,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1507 secretary Condoleezza Rice @@ -882,7 +894,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1508 secretary Condoleezza Rice @@ -896,7 +908,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1509 secretary Condoleezza Rice @@ -910,7 +922,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1510 secretary Condoleezza Rice @@ -924,7 +936,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1511 secretary Condoleezza Rice @@ -938,7 +950,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1512 secretary Condoleezza Rice @@ -946,13 +958,14 @@ 2005-11-13 Saudi Arabia Jeddah - Attended a Strategic Dialogue meeting and met with Foreign Minister Prince Saud. + Attended a Strategic Dialogue meeting and met with Foreign Minister Prince + Saud. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1513 secretary Condoleezza Rice @@ -960,13 +973,15 @@ 2005-11-15 Israel Jerusalem - Attended the Saban Forum meeting and a memorial service for the late Prime Minister Rabin; took part in negotiating a border crossing agreement with the Palestinian Authority. + Attended the Saban Forum meeting and a memorial service for the late Prime Minister + Rabin; took part in negotiating a border crossing agreement with the Palestinian + Authority. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1514 secretary Condoleezza Rice @@ -980,7 +995,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1515 secretary Condoleezza Rice @@ -988,13 +1003,14 @@ 2005-11-14 Palestinian Authority Ramallah - Met with President Abbas and negotiated a border crossing agreement with Israel. + Met with President Abbas and negotiated a border crossing agreement with + Israel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1516 secretary Condoleezza Rice @@ -1008,7 +1024,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1517 secretary Condoleezza Rice @@ -1022,7 +1038,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1518 secretary Condoleezza Rice @@ -1036,7 +1052,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1519 secretary Condoleezza Rice @@ -1050,7 +1066,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1520 secretary Condoleezza Rice @@ -1064,7 +1080,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1521 secretary Condoleezza Rice @@ -1072,13 +1088,14 @@ 2005-12-07 Ukraine Kiev - Met with President Yushchenko and addressed students at Shevchenko University. + Met with President Yushchenko and addressed students at Shevchenko + University. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1522 secretary Condoleezza Rice @@ -1086,13 +1103,14 @@ 2005-12-09 Belgium Brussels - Attended NATO Ministerial Meeting and meetings of the European-Atlantic Council and the NATO-Ukraine Commission. + Attended NATO Ministerial Meeting and meetings of the European-Atlantic Council and + the NATO-Ukraine Commission. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1523 secretary Condoleezza Rice @@ -1106,7 +1124,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1588 secretary Condoleezza Rice @@ -1114,13 +1132,14 @@ 2006-01-25 France Paris - Headed the U.S. delegation to the International Conference for Support to Lebanon. + Headed the U.S. delegation to the International Conference for Support to + Lebanon. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1524 secretary Condoleezza Rice @@ -1128,13 +1147,14 @@ 2006-02-01 United Kingdom London - Attended a Middle East Quartet Foreign Ministers’ meeting and the London Conference on Afghanistan. + Attended a Middle East Quartet Foreign Ministers’ meeting and the London Conference + on Afghanistan. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1525 secretary Condoleezza Rice @@ -1142,13 +1162,14 @@ 2006-02-22 Egypt Cairo - Met with Foreign Minister Aboul Gheit, President Mubarak and Egyptian dissidents. + Met with Foreign Minister Aboul Gheit, President Mubarak and Egyptian + dissidents. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1526 secretary Condoleezza Rice @@ -1162,7 +1183,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1527 secretary Condoleezza Rice @@ -1176,7 +1197,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1528 secretary Condoleezza Rice @@ -1184,13 +1205,14 @@ 2006-02-24 United Arab Emirates Abu Dhabi - Met with senior officials and the Gulf Cooperation Council Foreign Ministers. + Met with senior officials and the Gulf Cooperation Council Foreign + Ministers. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1529 secretary Condoleezza Rice @@ -1204,7 +1226,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1530 secretary Condoleezza Rice @@ -1218,7 +1240,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1531 secretary Condoleezza Rice @@ -1232,7 +1254,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1532 secretary Condoleezza Rice @@ -1246,7 +1268,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1533 secretary Condoleezza Rice @@ -1260,7 +1282,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1534 secretary Condoleezza Rice @@ -1268,13 +1290,14 @@ 2006-03-15 Indonesia Jakarta - Met with President Yudhoyono and Foreign Minister Wirajuda.  Addressed Indonesia Council on World Affairs. + Met with President Yudhoyono and Foreign Minister Wirajuda.  Addressed Indonesia + Council on World Affairs. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1535 secretary Condoleezza Rice @@ -1282,13 +1305,14 @@ 2006-03-18 Australia Sydney, Melbourne - Met with Foreign Minister Downer and held Trilateral Strategic Dialogue with Australia and Japan. + Met with Foreign Minister Downer and held Trilateral Strategic Dialogue with + Australia and Japan. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1536 secretary Condoleezza Rice @@ -1302,7 +1326,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1537 secretary Condoleezza Rice @@ -1310,13 +1334,14 @@ 2006-03-31 Germany Berlin - Met with Chancellor Merkel and with the Foreign Ministers of the Permanent Members of the UN Security Council. + Met with Chancellor Merkel and with the Foreign Ministers of the Permanent Members + of the UN Security Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1538 secretary Condoleezza Rice @@ -1330,7 +1355,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1539 secretary Condoleezza Rice @@ -1338,13 +1363,14 @@ 2006-04-02 United Kingdom Blackburn, Liverpool - Met with British Foreign Secretary Straw and gave several public addresses. + Met with British Foreign Secretary Straw and gave several public + addresses. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1540 secretary Condoleezza Rice @@ -1352,13 +1378,14 @@ 2006-04-03 Iraq Baghdad - Travelled with British Foreign Secretary Straw and met with Iraqi political leaders. + Travelled with British Foreign Secretary Straw and met with Iraqi political + leaders. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1541 secretary Condoleezza Rice @@ -1372,7 +1399,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1542 secretary Condoleezza Rice @@ -1386,7 +1413,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1543 secretary Condoleezza Rice @@ -1394,13 +1421,14 @@ 2006-04-27 Iraq Baghdad - Met with Prime Minister-designate al-Maliki and with Iraqi political leaders. + Met with Prime Minister-designate al-Maliki and with Iraqi political + leaders. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1544 secretary Condoleezza Rice @@ -1408,13 +1436,14 @@ 2006-04-28 Bulgaria Sofia - Attended NATO Ministerial Meeting and signed Defense Cooperation Agreement. + Attended NATO Ministerial Meeting and signed Defense Cooperation + Agreement. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1545 secretary Condoleezza Rice @@ -1422,13 +1451,14 @@ 2006-06-03 Austria Vienna - Discussed the Iranian nuclear crisis with the Foreign Ministers of the Permanent Members of the UN Security Council and Germany. + Discussed the Iranian nuclear crisis with the Foreign Ministers of the Permanent + Members of the UN Security Council and Germany. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1546 secretary Condoleezza Rice @@ -1442,7 +1472,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1547 secretary Condoleezza Rice @@ -1456,7 +1486,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1548 secretary Condoleezza Rice @@ -1470,7 +1500,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1549 secretary Condoleezza Rice @@ -1484,7 +1514,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1550 secretary Condoleezza Rice @@ -1498,7 +1528,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1551 secretary Condoleezza Rice @@ -1512,7 +1542,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1552 secretary Condoleezza Rice @@ -1526,7 +1556,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1553 secretary Condoleezza Rice @@ -1540,7 +1570,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1554 secretary Condoleezza Rice @@ -1554,7 +1584,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1555 secretary Condoleezza Rice @@ -1568,7 +1598,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1556 secretary Condoleezza Rice @@ -1582,7 +1612,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1557 secretary Condoleezza Rice @@ -1596,7 +1626,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1558 secretary Condoleezza Rice @@ -1610,7 +1640,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1559 secretary Condoleezza Rice @@ -1624,7 +1654,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1560 secretary Condoleezza Rice @@ -1638,7 +1668,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1561 secretary Condoleezza Rice @@ -1652,7 +1682,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1562 secretary Condoleezza Rice @@ -1666,7 +1696,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1563 secretary Condoleezza Rice @@ -1674,13 +1704,14 @@ 2006-10-04 Egypt Cairo - Met with President Mubarak and the Foreign Ministers of Egypt, Jordan, and the Gulf Cooperation Council. + Met with President Mubarak and the Foreign Ministers of Egypt, Jordan, and the Gulf + Cooperation Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1564 secretary Condoleezza Rice @@ -1694,7 +1725,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1565 secretary Condoleezza Rice @@ -1708,7 +1739,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1566 secretary Condoleezza Rice @@ -1716,13 +1747,14 @@ 2006-10-06 Iraq Baghdad, Irbil - Met with Prime Minster al-Maliki and with Kurdish Regional President Barzani. + Met with Prime Minster al-Maliki and with Kurdish Regional President + Barzani. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1567 secretary Condoleezza Rice @@ -1736,7 +1768,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1568 secretary Condoleezza Rice @@ -1750,7 +1782,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1569 secretary Condoleezza Rice @@ -1764,7 +1796,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1570 secretary Condoleezza Rice @@ -1778,7 +1810,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1571 secretary Condoleezza Rice @@ -1792,7 +1824,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1572 secretary Condoleezza Rice @@ -1800,13 +1832,14 @@ 2006-11-20 Vietnam Hanoi, Ho Chi Minh City - Attended the APEC Cooperation Forum Ministerial Meeting and accompanied President Bush. + Attended the APEC Cooperation Forum Ministerial Meeting and accompanied President + Bush. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1573 secretary Condoleezza Rice @@ -1820,7 +1853,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1574 secretary Condoleezza Rice @@ -1834,7 +1867,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1575 secretary Condoleezza Rice @@ -1848,7 +1881,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1576 secretary Condoleezza Rice @@ -1856,13 +1889,14 @@ 2006-11-30 Jordan Dead Sea - Accompanied President Bush to meetings with King Abdullah II and Iraqi Prime Minister al-Maliki. Attended Forum for the Future. + Accompanied President Bush to meetings with King Abdullah II and Iraqi Prime + Minister al-Maliki. Attended Forum for the Future. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1577 secretary Condoleezza Rice @@ -1876,7 +1910,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1578 secretary Condoleezza Rice @@ -1890,7 +1924,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1579 secretary Condoleezza Rice @@ -1904,7 +1938,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1580 secretary Condoleezza Rice @@ -1918,7 +1952,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1581 secretary Condoleezza Rice @@ -1932,7 +1966,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1582 secretary Condoleezza Rice @@ -1946,7 +1980,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1583 secretary Condoleezza Rice @@ -1954,13 +1988,14 @@ 2007-01-15 Egypt Luxor - Met with President Mubarak and Foreign Minister Aboul Gheit.  Proposed an Israeli-Palestinian summit meeting. + Met with President Mubarak and Foreign Minister Aboul Gheit.  Proposed an + Israeli-Palestinian summit meeting. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1584 secretary Condoleezza Rice @@ -1974,7 +2009,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1585 secretary Condoleezza Rice @@ -1982,13 +2017,14 @@ 2007-01-17 Kuwait Kuwait City - Met with the Foreign Ministers of Egypt, Jordan, and the Gulf Cooperation Council. + Met with the Foreign Ministers of Egypt, Jordan, and the Gulf Cooperation + Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1586 secretary Condoleezza Rice @@ -2002,7 +2038,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1587 secretary Condoleezza Rice @@ -2016,7 +2052,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1589 secretary Condoleezza Rice @@ -2030,7 +2066,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1590 secretary Condoleezza Rice @@ -2038,13 +2074,14 @@ 2007-02-20 Israel Jerusalem - Met with Prime Minister Olmert and Foreign Minister Livni.  Met with Prime Minister Olmert and Palestinian President Abbas on February 19. + Met with Prime Minister Olmert and Foreign Minister Livni.  Met with Prime Minister + Olmert and Palestinian President Abbas on February 19. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1591 secretary Condoleezza Rice @@ -2058,7 +2095,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1592 secretary Condoleezza Rice @@ -2066,13 +2103,14 @@ 2007-02-21 Germany Berlin - Attended a Quartet meeting and met with Foreign Minister Steinmeier and Chancellor Merkel. + Attended a Quartet meeting and met with Foreign Minister Steinmeier and Chancellor + Merkel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1593 secretary Condoleezza Rice @@ -2086,7 +2124,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1594 secretary Condoleezza Rice @@ -2094,13 +2132,14 @@ 2007-03-09 Brazil Sao Paulo - Accompanied President Bush.  Signed memorandum of understanding on biofuels cooperation. + Accompanied President Bush.  Signed memorandum of understanding on biofuels + cooperation. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1595 secretary Condoleezza Rice @@ -2114,7 +2153,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1596 secretary Condoleezza Rice @@ -2128,7 +2167,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1597 secretary Condoleezza Rice @@ -2142,7 +2181,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1598 secretary Condoleezza Rice @@ -2156,7 +2195,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1599 secretary Condoleezza Rice @@ -2170,7 +2209,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1600 secretary Condoleezza Rice @@ -2184,7 +2223,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1601 secretary Condoleezza Rice @@ -2198,7 +2237,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1602 secretary Condoleezza Rice @@ -2212,7 +2251,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1603 secretary Condoleezza Rice @@ -2226,7 +2265,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1604 secretary Condoleezza Rice @@ -2234,13 +2273,14 @@ 2007-05-04 Egypt Sharm el-Sheikh - Attended the International Compact with Iraq meeting.  Met with Syrian Foreign Minister al-Moualem. + Attended the International Compact with Iraq meeting.  Met with Syrian Foreign + Minister al-Moualem. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1605 secretary Condoleezza Rice @@ -2254,7 +2294,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1606 secretary Condoleezza Rice @@ -2268,7 +2308,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1607 secretary Condoleezza Rice @@ -2276,13 +2316,14 @@ 2007-06-01 Austria Vienna - Attended the Women’s Empowerment Strategy Group and the Roundtable on Networking for Peace and Security in the Middle East. + Attended the Women’s Empowerment Strategy Group and the Roundtable on Networking + for Peace and Security in the Middle East. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1608 secretary Condoleezza Rice @@ -2296,7 +2337,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1609 secretary Condoleezza Rice @@ -2310,7 +2351,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1610 secretary Condoleezza Rice @@ -2318,13 +2359,15 @@ 2007-06-26 France Paris - Met with President Sarkozy, Foreign Minister Kouchner, and Lebanese Prime Minister Siniora.  Attended a meeting of the International Contact Group on Sudan/Darfur. + Met with President Sarkozy, Foreign Minister Kouchner, and Lebanese Prime Minister + Siniora.  Attended a meeting of the International Contact Group on + Sudan/Darfur. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1611 secretary Condoleezza Rice @@ -2338,7 +2381,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1612 secretary Condoleezza Rice @@ -2346,13 +2389,14 @@ 2007-08-01 Egypt Sharm el-Sheikh - Met with the Foreign Ministers of Egypt, Jordan, Saudi Arabia, and the Gulf Cooperation Council and with President Mubarak. + Met with the Foreign Ministers of Egypt, Jordan, Saudi Arabia, and the Gulf + Cooperation Council and with President Mubarak. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1613 secretary Condoleezza Rice @@ -2366,7 +2410,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1614 secretary Condoleezza Rice @@ -2380,7 +2424,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1615 secretary Condoleezza Rice @@ -2394,7 +2438,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1616 secretary Condoleezza Rice @@ -2408,7 +2452,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1617 secretary Condoleezza Rice @@ -2416,13 +2460,14 @@ 2007-09-20 Israel Jerusalem - Met with President Peres, Prime Minister Olmert, and Foreign Minister Livni. + Met with President Peres, Prime Minister Olmert, and Foreign Minister + Livni. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1618 secretary Condoleezza Rice @@ -2430,13 +2475,14 @@ 2007-09-20 Palestinian Authority Ramallah - Discussed prospects for an Israel-Palestinian peace conference with President Abbas. + Discussed prospects for an Israel-Palestinian peace conference with President + Abbas. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1619 secretary Condoleezza Rice @@ -2450,7 +2496,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1620 secretary Condoleezza Rice @@ -2464,7 +2510,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1621 secretary Condoleezza Rice @@ -2478,7 +2524,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1622 secretary Condoleezza Rice @@ -2492,7 +2538,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1623 secretary Condoleezza Rice @@ -2500,13 +2546,14 @@ 2007-10-17 Palestinian Authority Bethlehem, Ramallah - Visited the Church of the Nativity and met with civil leaders.  Met with President Abbas. + Visited the Church of the Nativity and met with civil leaders.  Met with President + Abbas. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1624 secretary Condoleezza Rice @@ -2520,7 +2567,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1625 secretary Condoleezza Rice @@ -2534,7 +2581,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1626 secretary Condoleezza Rice @@ -2542,13 +2589,15 @@ 2007-11-03 Turkey Ankara, Istanbul - Met with President Gul, Prime Minister Erdogan, and Foreign Minister Babacan.  Attended an expanded ministerial meeting of countries adjoining Iraq in Istanbul. + Met with President Gul, Prime Minister Erdogan, and Foreign Minister Babacan.  + Attended an expanded ministerial meeting of countries adjoining Iraq in + Istanbul. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1627 secretary Condoleezza Rice @@ -2556,13 +2605,14 @@ 2007-11-05 Israel Tel Aviv, Jerusalem - Discussed proposed Middle East peace conference with Prime Minister Olmert and Foreign Minister Livni.  Addressed the Saban Forum. + Discussed proposed Middle East peace conference with Prime Minister Olmert and + Foreign Minister Livni.  Addressed the Saban Forum. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1628 secretary Condoleezza Rice @@ -2576,7 +2626,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1629 secretary Condoleezza Rice @@ -2584,13 +2634,14 @@ 2007-12-06 Ethiopia Addis Ababa - Met with leaders of the African Great Lakes States and discussed the situation in Somalia and the Sudan with representatives of the African Union and the UN. + Met with leaders of the African Great Lakes States and discussed the situation in + Somalia and the Sudan with representatives of the African Union and the UN. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1630 secretary Condoleezza Rice @@ -2598,13 +2649,14 @@ 2007-12-07 Belgium Brussels - Attended NATO Ministerial meeting, and meetings of the NATO-Russia Council and the NATO-Ukraine Commission. + Attended NATO Ministerial meeting, and meetings of the NATO-Russia Council and the + NATO-Ukraine Commission. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1631 secretary Condoleezza Rice @@ -2612,13 +2664,14 @@ 2007-12-18 France Paris - Attended a Quartet meeting and the Palestinian Donors’ Conference.  Met with President Sarkozy. + Attended a Quartet meeting and the Palestinian Donors’ Conference.  Met with + President Sarkozy. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1632 secretary Condoleezza Rice @@ -2626,13 +2679,15 @@ 2007-12-18 Iraq Kirkuk, Baghdad - Met with members of a civil-military reconstruction team and local politicians in Kirkuk and with the UN Special Representative and with Iraqi political leaders in Baghdad. + Met with members of a civil-military reconstruction team and local politicians in + Kirkuk and with the UN Special Representative and with Iraqi political leaders in + Baghdad. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1633 secretary Condoleezza Rice @@ -2646,7 +2701,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1634 secretary Condoleezza Rice @@ -2660,7 +2715,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1635 secretary Condoleezza Rice @@ -2674,7 +2729,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1636 secretary Condoleezza Rice @@ -2688,7 +2743,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1637 secretary Condoleezza Rice @@ -2702,7 +2757,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1638 secretary Condoleezza Rice @@ -2716,7 +2771,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1639 secretary Condoleezza Rice @@ -2730,7 +2785,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1640 secretary Condoleezza Rice @@ -2744,7 +2799,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1641 secretary Condoleezza Rice @@ -2752,13 +2807,14 @@ 2008-01-23 Switzerland Davos - Addressed the World Economic Forum and met with Foreign Minister Calmy-Rey. + Addressed the World Economic Forum and met with Foreign Minister + Calmy-Rey. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1642 secretary Condoleezza Rice @@ -2766,13 +2822,14 @@ 2008-01-25 Colombia Medellin - Led a Congressional delegation to discuss a free-trade agreement and security issues. + Led a Congressional delegation to discuss a free-trade agreement and security + issues. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1643 secretary Condoleezza Rice @@ -2786,7 +2843,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1644 secretary Condoleezza Rice @@ -2794,13 +2851,14 @@ 2008-02-07 Afghanistan Kandahar, Kabul - Accompanied British Foreign Secretary Miliband.  Met with President Karzai. + Accompanied British Foreign Secretary Miliband.  Met with President + Karzai. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1645 secretary Condoleezza Rice @@ -2814,7 +2872,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1646 secretary Condoleezza Rice @@ -2828,7 +2886,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1647 secretary Condoleezza Rice @@ -2836,13 +2894,14 @@ 2008-02-18 Kenya Nairobi - Met with President Kibaki, former Secretary-General Annan, and Kenyan political leaders. + Met with President Kibaki, former Secretary-General Annan, and Kenyan political + leaders. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1648 secretary Condoleezza Rice @@ -2856,7 +2915,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1649 secretary Condoleezza Rice @@ -2870,7 +2929,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1650 secretary Condoleezza Rice @@ -2884,7 +2943,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1651 secretary Condoleezza Rice @@ -2892,13 +2951,14 @@ 2008-02-26 Korea, Republic of Seoul - Attended the inauguration of President Lee Myung-Bak and discussed the Six-Party talks and a proposed Free Trade Agreement. + Attended the inauguration of President Lee Myung-Bak and discussed the Six-Party + talks and a proposed Free Trade Agreement. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1652 secretary Condoleezza Rice @@ -2912,7 +2972,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1653 secretary Condoleezza Rice @@ -2926,7 +2986,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1654 secretary Condoleezza Rice @@ -2934,13 +2994,14 @@ 2008-03-04 Egypt Cairo - Met with President Mubarak and Foreign Minister Aboul Gheit to discuss the Gaza crisis.. + Met with President Mubarak and Foreign Minister Aboul Gheit to discuss the Gaza + crisis.. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1655 secretary Condoleezza Rice @@ -2954,7 +3015,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1656 secretary Condoleezza Rice @@ -2962,13 +3023,14 @@ 2008-03-05 Israel Jerusalem - Met with Prime Minister Olmert and Foreign Minister Livni to discuss the Gaza crisis. + Met with Prime Minister Olmert and Foreign Minister Livni to discuss the Gaza + crisis. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1657 secretary Condoleezza Rice @@ -2976,13 +3038,14 @@ 2008-03-07 Belgium Brussels - Attended NATO and EU Ministerial Meetings.  Addressed Women Leaders Working Group. + Attended NATO and EU Ministerial Meetings.  Addressed Women Leaders Working + Group. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1658 secretary Condoleezza Rice @@ -2990,13 +3053,14 @@ 2008-03-14 Brazil Brasilia, Salvador da Bahia - Met with President Lula da Silva and Foreign Minister Amorim.  In Salvador da Bahia, met with the president of Neoenergia and with the state governor. + Met with President Lula da Silva and Foreign Minister Amorim.  In Salvador da + Bahia, met with the president of Neoenergia and with the state governor. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1659 secretary Condoleezza Rice @@ -3010,7 +3074,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1660 secretary Condoleezza Rice @@ -3018,13 +3082,15 @@ 2008-03-19 Russia Moscow - Accompanied Secretary of Defense Gates and met with President Putin, President-elect Medvedev, Foreign Minister Lavrov, and Defense Minister Serdyukov. + Accompanied Secretary of Defense Gates and met with President Putin, + President-elect Medvedev, Foreign Minister Lavrov, and Defense Minister + Serdyukov. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1661 secretary Condoleezza Rice @@ -3032,13 +3098,14 @@ 2008-03-30 Israel Jerusalem - Met with Foreign Minister Livni and Defense Minister Barak and with Palestinian President Abbas and Prime Minister Fayyad. + Met with Foreign Minister Livni and Defense Minister Barak and with Palestinian + President Abbas and Prime Minister Fayyad. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1662 secretary Condoleezza Rice @@ -3052,7 +3119,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1663 secretary Condoleezza Rice @@ -3066,7 +3133,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1664 secretary Condoleezza Rice @@ -3080,7 +3147,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1665 secretary Condoleezza Rice @@ -3094,7 +3161,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1666 secretary Condoleezza Rice @@ -3108,7 +3175,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1667 secretary Condoleezza Rice @@ -3116,13 +3183,14 @@ 2008-04-20 Iraq Baghdad - Met with U.S. Embassy and military personnel and with Iraqi political leaders. + Met with U.S. Embassy and military personnel and with Iraqi political + leaders. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1668 secretary Condoleezza Rice @@ -3130,13 +3198,14 @@ 2008-04-22 Bahrain Manama - Met with the Foreign Ministers of the Gulf Cooperation Council, Egypt, and Jordan. + Met with the Foreign Ministers of the Gulf Cooperation Council, Egypt, and + Jordan. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 3100 secretary Condoleezza Rice @@ -3150,7 +3219,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3101 secretary Condoleezza Rice @@ -3158,13 +3227,15 @@ 2008-05-03 United Kingdom London - Attended meetings of the Quartet, Ad Hoc Liaison Committee and the P5+1. Also discussed Kosovo with European Foreign Ministers. Met with Israeli Foreign Minister Livni and Palestinian Prime Minister Fayyad. + Attended meetings of the Quartet, Ad Hoc Liaison Committee and the P5+1. Also + discussed Kosovo with European Foreign Ministers. Met with Israeli Foreign Minister + Livni and Palestinian Prime Minister Fayyad. wicentowskijc 2010-10-20T19:28:16.345-04:00 wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3102 secretary Condoleezza Rice @@ -3172,13 +3243,14 @@ 2008-05-05 Israel Jerusalem - Met with Prime Minister Olmert, Foreign Minister Livni, and other senior officials. + Met with Prime Minister Olmert, Foreign Minister Livni, and other senior + officials. wicentowskijc 2010-10-20T19:28:16.345-04:00 wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3103 secretary Condoleezza Rice @@ -3192,7 +3264,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3104 secretary Condoleezza Rice @@ -3206,7 +3278,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3105 secretary Condoleezza Rice @@ -3220,7 +3292,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3106 secretary Condoleezza Rice @@ -3234,7 +3306,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3107 secretary Condoleezza Rice @@ -3248,7 +3320,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3108 secretary Condoleezza Rice @@ -3262,7 +3334,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3109 secretary Condoleezza Rice @@ -3276,7 +3348,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3110 secretary Condoleezza Rice @@ -3290,7 +3362,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3111 secretary Condoleezza Rice @@ -3304,7 +3376,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3112 secretary Condoleezza Rice @@ -3312,13 +3384,14 @@ 2008-06-16 Lebanon Beirut - Met with President Suleiman, Prime Minister-designate Siniora, and Lebanese political leaders. + Met with President Suleiman, Prime Minister-designate Siniora, and Lebanese + political leaders. wicentowskijc 2010-10-20T19:28:16.345-04:00 wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3113 secretary Condoleezza Rice @@ -3326,13 +3399,14 @@ 2008-06-25 Germany Berlin - Attended the Conference in Support of Palestinian Civil Security and Rule of Law. + Attended the Conference in Support of Palestinian Civil Security and Rule of + Law. wicentowskijc 2010-10-20T19:28:16.345-04:00 wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3114 secretary Condoleezza Rice @@ -3340,13 +3414,14 @@ 2008-06-28 Japan Kyoto - Attended the G-8 Ministerial Meeting and the Trilateral Strategic Dialogue with the Foreign Ministers of Australia and Japan. + Attended the G-8 Ministerial Meeting and the Trilateral Strategic Dialogue with the + Foreign Ministers of Australia and Japan. wicentowskijc 2010-10-20T19:28:16.345-04:00 wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3115 secretary Condoleezza Rice @@ -3360,7 +3435,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3116 secretary Condoleezza Rice @@ -3368,13 +3443,14 @@ 2008-06-30 China, People’s Republic of Chengdu, Beijing - Met with local officials and aid workers in Chengdu. Met with President Hu and senior officials. + Met with local officials and aid workers in Chengdu. Met with President Hu and + senior officials. wicentowskijc 2010-10-20T19:28:16.345-04:00 wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3117 secretary Condoleezza Rice @@ -3388,7 +3464,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3118 secretary Condoleezza Rice @@ -3396,13 +3472,14 @@ 2008-07-09 Bulgaria Sofia - Received the Order of Stara Planina, First Class and met with Foreign Minister Kalfin. + Received the Order of Stara Planina, First Class and met with Foreign Minister + Kalfin. wicentowskijc 2010-10-20T19:28:16.345-04:00 wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3119 secretary Condoleezza Rice @@ -3416,7 +3493,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3120 secretary Condoleezza Rice @@ -3424,13 +3501,14 @@ 2008-07-22 United Arab Emirates Abu Dhabi - Met with the Foreign Ministers of the Gulf Cooperation Council, Egypt, Jordan, and Iraq. + Met with the Foreign Ministers of the Gulf Cooperation Council, Egypt, Jordan, and + Iraq. wicentowskijc 2010-10-20T19:28:16.345-04:00 wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3121 secretary Condoleezza Rice @@ -3444,7 +3522,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3122 secretary Condoleezza Rice @@ -3458,7 +3536,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3123 secretary Condoleezza Rice @@ -3466,13 +3544,14 @@ 2008-07-27 New Zealand Auckland - Met with Prime Minister Clark, Foreign Minister Peters, and Opposition Leader Keys. + Met with Prime Minister Clark, Foreign Minister Peters, and Opposition Leader + Keys. wicentowskijc 2010-10-20T19:28:16.345-04:00 wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3124 secretary Condoleezza Rice @@ -3480,13 +3559,14 @@ 2008-07-26 Samoa Apia - Met with representatives of the Pacific Island Forum nations. (Crossed International Date Line.) + Met with representatives of the Pacific Island Forum nations. (Crossed + International Date Line.) wicentowskijc 2010-10-20T19:28:16.345-04:00 wicentowskijc 2018-09-17T09:06:57.03-04:00 - + 3125 secretary Condoleezza Rice @@ -3500,7 +3580,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3126 secretary Condoleezza Rice @@ -3514,7 +3594,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3127 secretary Condoleezza Rice @@ -3522,13 +3602,14 @@ 2008-08-19 Belgium Brussels - Attended an emergency meeting of the North Atlantic Council and discussed the Georgia crisis with EU leaders. + Attended an emergency meeting of the North Atlantic Council and discussed the + Georgia crisis with EU leaders. wicentowskijc 2010-10-20T19:28:16.345-04:00 wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3128 secretary Condoleezza Rice @@ -3542,7 +3623,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3129 secretary Condoleezza Rice @@ -3556,7 +3637,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3130 secretary Condoleezza Rice @@ -3570,7 +3651,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3131 secretary Condoleezza Rice @@ -3584,7 +3665,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3132 secretary Condoleezza Rice @@ -3598,7 +3679,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3133 secretary Condoleezza Rice @@ -3612,7 +3693,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3134 secretary Condoleezza Rice @@ -3626,7 +3707,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3135 secretary Condoleezza Rice @@ -3640,7 +3721,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3136 secretary Condoleezza Rice @@ -3654,7 +3735,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3137 secretary Condoleezza Rice @@ -3668,7 +3749,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3138 secretary Condoleezza Rice @@ -3676,13 +3757,14 @@ 2008-10-05 Kazakhstan Astana - Met with President Nazarbayev, Prime Minister Masimov, and Foreign Minister Tazhin. + Met with President Nazarbayev, Prime Minister Masimov, and Foreign Minister + Tazhin. wicentowskijc 2010-10-20T19:28:16.345-04:00 wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3139 secretary Condoleezza Rice @@ -3696,7 +3778,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3140 secretary Condoleezza Rice @@ -3710,7 +3792,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3141 secretary Condoleezza Rice @@ -3718,13 +3800,14 @@ 2008-11-08 Palestinian Authority Ramallah, Jenin - Met with President Abbas and Foreign Minister Fayyad (November 7). Announced development aid program for Jenin (November 8). + Met with President Abbas and Foreign Minister Fayyad (November 7). Announced + development aid program for Jenin (November 8). wicentowskijc 2010-10-20T19:28:16.345-04:00 wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3142 secretary Condoleezza Rice @@ -3738,7 +3821,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3143 secretary Condoleezza Rice @@ -3752,7 +3835,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3144 secretary Condoleezza Rice @@ -3766,7 +3849,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3145 secretary Condoleezza Rice @@ -3780,7 +3863,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3146 secretary Condoleezza Rice @@ -3794,7 +3877,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3147 secretary Condoleezza Rice @@ -3808,7 +3891,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3148 secretary Condoleezza Rice @@ -3822,7 +3905,7 @@ wicentowskijc 2010-10-20T19:28:16.345-04:00 - + 3149 secretary Condoleezza Rice @@ -3830,10 +3913,11 @@ 2008-12-10 Panama Panama City - Met with President Torrijos and attended the first Pathways to Prosperity in the Americas Ministerial Meeting. + Met with President Torrijos and attended the first Pathways to Prosperity in the + Americas Ministerial Meeting. wicentowskijc 2010-10-20T19:28:16.345-04:00 wicentowskijc 2010-10-20T19:28:16.345-04:00 - \ No newline at end of file + diff --git a/secretary-travels/rogers-william-pierce.xml b/secretary-travels/rogers-william-pierce.xml index 5a90a6a..65dd9fd 100644 --- a/secretary-travels/rogers-william-pierce.xml +++ b/secretary-travels/rogers-william-pierce.xml @@ -1,6 +1,6 @@ - + 1669 secretary William Pierce Rogers @@ -8,13 +8,14 @@ 1969-02-24 Belgium Brussels - Accompanied President Nixon; attended the 23d meeting of the North Atlantic Council. + Accompanied President Nixon; attended the 23d meeting of the North Atlantic + Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1670 secretary William Pierce Rogers @@ -28,7 +29,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1671 secretary William Pierce Rogers @@ -42,7 +43,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1672 secretary William Pierce Rogers @@ -56,7 +57,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1673 secretary William Pierce Rogers @@ -70,7 +71,7 @@ wicentowskijc 2017-05-30T14:35:48.889-04:00 - + 3812 secretary William Pierce Rogers @@ -84,7 +85,7 @@ wicentowskijc 2018-09-14T14:35:48.889-04:00 - + 1674 secretary William Pierce Rogers @@ -98,7 +99,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1675 secretary William Pierce Rogers @@ -106,13 +107,14 @@ 1969-05-19 Vietnam Saigon - Met with President Thieu and U.S. and Vietnamese officials. Left U.S. May 12. + Met with President Thieu and U.S. and Vietnamese officials. Left U.S. May + 12. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1676 secretary William Pierce Rogers @@ -126,7 +128,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1677 secretary William Pierce Rogers @@ -140,7 +142,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1678 secretary William Pierce Rogers @@ -154,7 +156,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1679 secretary William Pierce Rogers @@ -168,7 +170,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1680 secretary William Pierce Rogers @@ -182,7 +184,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1681 secretary William Pierce Rogers @@ -190,13 +192,14 @@ 1969-06-27 Canada Montreal - Accompanied President Nixon to the 10th Anniversary ceremonies of the St. Lawrence Seaway. + Accompanied President Nixon to the 10th Anniversary ceremonies of the St. Lawrence + Seaway. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1682 secretary William Pierce Rogers @@ -210,7 +213,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1683 secretary William Pierce Rogers @@ -224,7 +227,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1684 secretary William Pierce Rogers @@ -232,13 +235,14 @@ 1969-07-31 Japan Tokyo - Attended a meeting of the Joint Committee on Trade and Economic Development. Signed a space cooperation agreement. + Attended a meeting of the Joint Committee on Trade and Economic Development. Signed + a space cooperation agreement. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1685 secretary William Pierce Rogers @@ -252,7 +256,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1686 secretary William Pierce Rogers @@ -266,7 +270,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1687 secretary William Pierce Rogers @@ -280,7 +284,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1688 secretary William Pierce Rogers @@ -294,7 +298,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1689 secretary William Pierce Rogers @@ -308,7 +312,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1690 secretary William Pierce Rogers @@ -322,7 +326,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1691 secretary William Pierce Rogers @@ -336,7 +340,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1692 secretary William Pierce Rogers @@ -344,13 +348,14 @@ 1969-12-05 Belgium Brussels - Attended NATO Ministerial Meeting. Visited the Commission of the European Communities. + Attended NATO Ministerial Meeting. Visited the Commission of the European + Communities. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1693 secretary William Pierce Rogers @@ -358,13 +363,14 @@ 1969-12-05 Germany, Federal Republic of Bonn - Met with Chancellor Brandt, Foreign Minister Scheel, and senior German officials. + Met with Chancellor Brandt, Foreign Minister Scheel, and senior German + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1694 secretary William Pierce Rogers @@ -378,7 +384,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1695 secretary William Pierce Rogers @@ -386,13 +392,14 @@ 1969-12-08 France Paris - Met with President Pompidou, senior French officials, and with the U.S. delegation to the Vietnam Peace Talks. + Met with President Pompidou, senior French officials, and with the U.S. delegation + to the Vietnam Peace Talks. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1696 secretary William Pierce Rogers @@ -400,13 +407,14 @@ 1970-02-09 Morocco Rabat - Met with King Hassan II and senior Moroccan officials. Signed an air transport agreement. + Met with King Hassan II and senior Moroccan officials. Signed an air transport + agreement. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1697 secretary William Pierce Rogers @@ -420,7 +428,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1698 secretary William Pierce Rogers @@ -428,13 +436,14 @@ 1970-02-13 Ethiopia Addis Ababa - Met with Emperor Haile Selassie and senior Ethiopian officials. Addressed the Organization of African Unity February 12. + Met with Emperor Haile Selassie and senior Ethiopian officials. Addressed the + Organization of African Unity February 12. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1699 secretary William Pierce Rogers @@ -448,7 +457,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1700 secretary William Pierce Rogers @@ -462,7 +471,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1701 secretary William Pierce Rogers @@ -470,13 +479,14 @@ 1970-02-18 Democratic Republic of the Congo (Zaire) Kinshasa - Met with President Mobutu and senior Congolese officials. Attended a conference of U.S. Chiefs of Mission to African countries. + Met with President Mobutu and senior Congolese officials. Attended a conference of + U.S. Chiefs of Mission to African countries. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1702 secretary William Pierce Rogers @@ -490,7 +500,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1703 secretary William Pierce Rogers @@ -504,7 +514,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1704 secretary William Pierce Rogers @@ -518,7 +528,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1705 secretary William Pierce Rogers @@ -532,7 +542,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1706 secretary William Pierce Rogers @@ -546,7 +556,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1707 secretary William Pierce Rogers @@ -560,7 +570,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1708 secretary William Pierce Rogers @@ -574,7 +584,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1709 secretary William Pierce Rogers @@ -582,13 +592,14 @@ 1970-05-31 Portugal Lisbon - Met with Prime Minister Caetano and senior Portuguese officials. Amended an air transport agreement. + Met with Prime Minister Caetano and senior Portuguese officials. Amended an air + transport agreement. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1710 secretary William Pierce Rogers @@ -602,7 +613,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1711 secretary William Pierce Rogers @@ -610,13 +621,14 @@ 1970-07-07 Vietnam Saigon - Met with the Foreign Ministers of countries contributing troops to Vietnam. + Met with the Foreign Ministers of countries contributing troops to + Vietnam. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1712 secretary William Pierce Rogers @@ -624,13 +636,14 @@ 1970-07-10 Japan Tokyo - Attended a meeting of U.S. Chiefs of Mission to Asian countries and met with Prime Minister Sato and senior Japanese officials. + Attended a meeting of U.S. Chiefs of Mission to Asian countries and met with Prime + Minister Sato and senior Japanese officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1713 secretary William Pierce Rogers @@ -644,7 +657,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1714 secretary William Pierce Rogers @@ -658,7 +671,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1715 secretary William Pierce Rogers @@ -672,7 +685,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1716 secretary William Pierce Rogers @@ -686,7 +699,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1717 secretary William Pierce Rogers @@ -700,7 +713,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1718 secretary William Pierce Rogers @@ -714,7 +727,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1719 secretary William Pierce Rogers @@ -728,7 +741,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1720 secretary William Pierce Rogers @@ -742,7 +755,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1721 secretary William Pierce Rogers @@ -750,13 +763,14 @@ 1970-11-24 Canada Ottawa - Attended a meeting of the Joint U.S.-Canadian Committee on Trade and Economic Affairs. + Attended a meeting of the Joint U.S.-Canadian Committee on Trade and Economic + Affairs. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1722 secretary William Pierce Rogers @@ -770,7 +784,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1723 secretary William Pierce Rogers @@ -784,7 +798,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1724 secretary William Pierce Rogers @@ -798,7 +812,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1725 secretary William Pierce Rogers @@ -812,7 +826,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1726 secretary William Pierce Rogers @@ -826,7 +840,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1727 secretary William Pierce Rogers @@ -840,7 +854,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1728 secretary William Pierce Rogers @@ -854,7 +868,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1729 secretary William Pierce Rogers @@ -868,7 +882,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1730 secretary William Pierce Rogers @@ -876,13 +890,14 @@ 1971-05-03 Jordan Amman - Met with King Hussein and senior Jordanian officials. Discussed the Jarring Middle East peace initiative. + Met with King Hussein and senior Jordanian officials. Discussed the Jarring Middle + East peace initiative. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1731 secretary William Pierce Rogers @@ -896,7 +911,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1732 secretary William Pierce Rogers @@ -904,13 +919,14 @@ 1971-05-06 Egypt Cairo - Met with President Sadat and senior Egyptian officials. Discussed the Jarring peace initiative. + Met with President Sadat and senior Egyptian officials. Discussed the Jarring peace + initiative. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1733 secretary William Pierce Rogers @@ -918,13 +934,14 @@ 1971-05-08 Israel Tel Aviv - Met with Prime Minister Meir, Foreign Minister Eban, and senior Israeli officials. Discussed the Jarring peace initiative. + Met with Prime Minister Meir, Foreign Minister Eban, and senior Israeli officials. + Discussed the Jarring peace initiative. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1734 secretary William Pierce Rogers @@ -938,7 +955,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1735 secretary William Pierce Rogers @@ -952,7 +969,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1736 secretary William Pierce Rogers @@ -966,7 +983,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1737 secretary William Pierce Rogers @@ -980,7 +997,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1738 secretary William Pierce Rogers @@ -994,7 +1011,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1739 secretary William Pierce Rogers @@ -1008,7 +1025,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1740 secretary William Pierce Rogers @@ -1016,13 +1033,14 @@ 1971-12-14 Portugal Terceira Island (Azores) - Accoompanied President Nixon to meeting with French President Pompidou and Portuguese Prime Minister Caetano. + Accoompanied President Nixon to meeting with French President Pompidou and + Portuguese Prime Minister Caetano. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1741 secretary William Pierce Rogers @@ -1036,7 +1054,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1742 secretary William Pierce Rogers @@ -1050,7 +1068,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1743 secretary William Pierce Rogers @@ -1064,7 +1082,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1744 secretary William Pierce Rogers @@ -1078,7 +1096,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1745 secretary William Pierce Rogers @@ -1086,13 +1104,14 @@ 1972-05-04 United Kingdom London - Pre-summit consultation with Prime Minister Heath and Foreign Secretary Douglas Home. + Pre-summit consultation with Prime Minister Heath and Foreign Secretary Douglas + Home. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1746 secretary William Pierce Rogers @@ -1100,13 +1119,14 @@ 1972-05-05 Belgium Brussels - Met with the Belgian and Dutch Foreign Ministers and with the President of the Commission of the European Community. + Met with the Belgian and Dutch Foreign Ministers and with the President of the + Commission of the European Community. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1747 secretary William Pierce Rogers @@ -1120,7 +1140,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1748 secretary William Pierce Rogers @@ -1134,7 +1154,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1749 secretary William Pierce Rogers @@ -1148,7 +1168,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1750 secretary William Pierce Rogers @@ -1162,7 +1182,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1751 secretary William Pierce Rogers @@ -1176,7 +1196,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1752 secretary William Pierce Rogers @@ -1184,13 +1204,14 @@ 1972-06-01 Poland Warsaw - Accompanied President Nixon on official visit. Signed consular convention with Poland. + Accompanied President Nixon on official visit. Signed consular convention with + Poland. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1753 secretary William Pierce Rogers @@ -1204,7 +1225,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1754 secretary William Pierce Rogers @@ -1218,7 +1239,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1755 secretary William Pierce Rogers @@ -1226,13 +1247,14 @@ 1972-06-03 Germany Berlin - Signed Final Quadripartite Protocol to the Quadripartite Agreement on Berlin. Visited East and West Berlin. + Signed Final Quadripartite Protocol to the Quadripartite Agreement on Berlin. + Visited East and West Berlin. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1756 secretary William Pierce Rogers @@ -1246,7 +1268,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1757 secretary William Pierce Rogers @@ -1260,7 +1282,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1758 secretary William Pierce Rogers @@ -1274,7 +1296,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1759 secretary William Pierce Rogers @@ -1288,7 +1310,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1760 secretary William Pierce Rogers @@ -1302,7 +1324,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1761 secretary William Pierce Rogers @@ -1316,7 +1338,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1762 secretary William Pierce Rogers @@ -1330,7 +1352,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1763 secretary William Pierce Rogers @@ -1338,13 +1360,14 @@ 1972-07-06 Romania Bucharest - Met with President Ceausescu. Signed consular convention and cultural and scientific exchange agreements. + Met with President Ceausescu. Signed consular convention and cultural and + scientific exchange agreements. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1764 secretary William Pierce Rogers @@ -1352,13 +1375,14 @@ 1972-07-07 Hungary Budapest - Met with First Secretary Kadar. Signed consular convention and scientific and technical exchange agreements. + Met with First Secretary Kadar. Signed consular convention and scientific and + technical exchange agreements. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1765 secretary William Pierce Rogers @@ -1372,7 +1396,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1766 secretary William Pierce Rogers @@ -1386,7 +1410,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1767 secretary William Pierce Rogers @@ -1400,7 +1424,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1768 secretary William Pierce Rogers @@ -1414,7 +1438,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1769 secretary William Pierce Rogers @@ -1428,7 +1452,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1770 secretary William Pierce Rogers @@ -1442,7 +1466,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1771 secretary William Pierce Rogers @@ -1456,7 +1480,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1772 secretary William Pierce Rogers @@ -1470,7 +1494,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1773 secretary William Pierce Rogers @@ -1478,13 +1502,14 @@ 1973-05-15 Venezuela Caracas - Met with President Caldera, Foreign Minister Calvani and senior Venezuelan officials. + Met with President Caldera, Foreign Minister Calvani and senior Venezuelan + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1774 secretary William Pierce Rogers @@ -1498,7 +1523,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1775 secretary William Pierce Rogers @@ -1506,13 +1531,14 @@ 1973-05-18 Colombia Bogota - Met with President Pastrana, Foreign Minister Vasquez, and senior Colombian officials. + Met with President Pastrana, Foreign Minister Vasquez, and senior Colombian + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1776 secretary William Pierce Rogers @@ -1526,7 +1552,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1777 secretary William Pierce Rogers @@ -1540,7 +1566,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1778 secretary William Pierce Rogers @@ -1554,7 +1580,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1779 secretary William Pierce Rogers @@ -1568,7 +1594,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1780 secretary William Pierce Rogers @@ -1582,7 +1608,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1781 secretary William Pierce Rogers @@ -1596,7 +1622,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1782 secretary William Pierce Rogers @@ -1610,7 +1636,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1783 secretary William Pierce Rogers @@ -1624,7 +1650,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1784 secretary William Pierce Rogers @@ -1632,13 +1658,14 @@ 1973-07-03 Finland Helsinki - Attended the first phase of the Conference on Security and Cooperation in Europe. + Attended the first phase of the Conference on Security and Cooperation in + Europe. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1785 secretary William Pierce Rogers @@ -1652,7 +1679,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1786 secretary William Pierce Rogers @@ -1660,13 +1687,14 @@ 1973-07-17 Japan Tokyo - Attended a meeting of the Joint U.S.-Japan Committee on Trade and Economic Affairs. + Attended a meeting of the Joint U.S.-Japan Committee on Trade and Economic + Affairs. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1787 secretary William Pierce Rogers @@ -1680,4 +1708,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/root-elihu.xml b/secretary-travels/root-elihu.xml index a787b30..69592b3 100644 --- a/secretary-travels/root-elihu.xml +++ b/secretary-travels/root-elihu.xml @@ -1,6 +1,6 @@ - + 1788 secretary Elihu Root @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1789 secretary Elihu Root @@ -22,13 +22,14 @@ 1906-08-07 Brazil Para, Pernambuco, Bahia, Rio de Janeiro, Sao Paulo, Santos - Attended Third International Conference of American States. Left U.S. July 4. + Attended Third International Conference of American States. Left U.S. July + 4. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1790 secretary Elihu Root @@ -36,13 +37,14 @@ 1906-08-13 Uruguay Montevideo - Met with President Batlle y Ordonez and Foreign Minister Romeu; delivered several public addresses. + Met with President Batlle y Ordonez and Foreign Minister Romeu; delivered several + public addresses. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1791 secretary Elihu Root @@ -50,13 +52,14 @@ 1906-08-21 Argentina Buenos Aires, Bahia Blanca - Met with President Figueroa and Foreign Minister Montes; delivered several public addresses. + Met with President Figueroa and Foreign Minister Montes; delivered several public + addresses. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1792 secretary Elihu Root @@ -64,13 +67,14 @@ 1906-09-04 Chile Lota, Santiago, Valparaiso - Met with President Riesco and Foreign Minister Huneeus; delivered several public addresses. + Met with President Riesco and Foreign Minister Huneeus; delivered several public + addresses. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1793 secretary Elihu Root @@ -78,13 +82,14 @@ 1906-09-16 Peru Callao, Lima - Met with President Pardo and Foreign Minister Prado; delivered several public addresses. + Met with President Pardo and Foreign Minister Prado; delivered several public + addresses. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1794 secretary Elihu Root @@ -98,7 +103,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1795 secretary Elihu Root @@ -112,7 +117,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1796 secretary Elihu Root @@ -126,7 +131,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1797 secretary Elihu Root @@ -134,10 +139,12 @@ 1907-10-16 Mexico Mexico, D.F., Cuernavaca, Puebla, Orizaba, Guadalajara, Potosi - Met with President Diaz, Foreign Minister Mariscal, and Governors of several Mexican States. Delivered several public addresses Left Washington September 26. + Met with President Diaz, Foreign Minister Mariscal, and Governors of several + Mexican States. Delivered several public addresses Left Washington September + 26. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/rusk-david-dean.xml b/secretary-travels/rusk-david-dean.xml index be2f631..b758f86 100644 --- a/secretary-travels/rusk-david-dean.xml +++ b/secretary-travels/rusk-david-dean.xml @@ -1,6 +1,6 @@ - + 1798 secretary David Dean Rusk @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1799 secretary David Dean Rusk @@ -28,7 +28,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1800 secretary David Dean Rusk @@ -42,7 +42,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1801 secretary David Dean Rusk @@ -56,7 +56,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1802 secretary David Dean Rusk @@ -70,7 +70,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1803 secretary David Dean Rusk @@ -84,7 +84,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1804 secretary David Dean Rusk @@ -98,7 +98,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1805 secretary David Dean Rusk @@ -112,7 +112,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1806 secretary David Dean Rusk @@ -120,13 +120,14 @@ 1961-08-09 France Paris - Attended a Foreign Ministers meeting on Berlin and met with the NATO Permanent Council. + Attended a Foreign Ministers meeting on Berlin and met with the NATO Permanent + Council. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1807 secretary David Dean Rusk @@ -134,13 +135,14 @@ 1961-08-10 Italy Rome, Milan, Cadenabbia - Met with Italian Prime Minister Fanfani and Foreign Minister Segni, and, on August 10, with German Chancellor Adenauer. + Met with Italian Prime Minister Fanfani and Foreign Minister Segni, and, on August + 10, with German Chancellor Adenauer. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1808 secretary David Dean Rusk @@ -148,13 +150,14 @@ 1961-11-04 Japan Hakone - Attended a meeting of U.S.-Japan Joint Committee on Trade and Economic Affairs. + Attended a meeting of U.S.-Japan Joint Committee on Trade and Economic + Affairs. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1809 secretary David Dean Rusk @@ -168,7 +171,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1810 secretary David Dean Rusk @@ -182,7 +185,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1811 secretary David Dean Rusk @@ -196,7 +199,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1812 secretary David Dean Rusk @@ -210,7 +213,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1813 secretary David Dean Rusk @@ -218,13 +221,14 @@ 1962-02-01 Uruguay Punta del Este - Attended the 8th Meeting of Consultation of the American Foreign Ministers. + Attended the 8th Meeting of Consultation of the American Foreign + Ministers. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1814 secretary David Dean Rusk @@ -238,7 +242,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1815 secretary David Dean Rusk @@ -252,7 +256,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1816 secretary David Dean Rusk @@ -266,7 +270,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1817 secretary David Dean Rusk @@ -280,7 +284,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1818 secretary David Dean Rusk @@ -294,7 +298,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1819 secretary David Dean Rusk @@ -308,7 +312,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1820 secretary David Dean Rusk @@ -322,7 +326,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1821 secretary David Dean Rusk @@ -330,13 +334,14 @@ 1962-06-23 Germany, Federal Republic of Bonn - Discussed the Berlin crisis with Chancellor Adenauer and Foreign Minister Schroeder. + Discussed the Berlin crisis with Chancellor Adenauer and Foreign Minister + Schroeder. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1822 secretary David Dean Rusk @@ -350,7 +355,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1823 secretary David Dean Rusk @@ -358,13 +363,14 @@ 1962-06-27 United Kingdom London, Oxford - Met with Prime Minister Macmillan and Foreign Secretary Home. Received an honorary degree from Oxford University. + Met with Prime Minister Macmillan and Foreign Secretary Home. Received an honorary + degree from Oxford University. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1824 secretary David Dean Rusk @@ -378,7 +384,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1825 secretary David Dean Rusk @@ -392,7 +398,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1826 secretary David Dean Rusk @@ -400,13 +406,14 @@ 1962-08-26 Canada Ottawa - Met with Prime Minister Diefenbaker and Secretary for External Affairs Green. + Met with Prime Minister Diefenbaker and Secretary for External Affairs + Green. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1827 secretary David Dean Rusk @@ -420,7 +427,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1828 secretary David Dean Rusk @@ -434,7 +441,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1829 secretary David Dean Rusk @@ -442,13 +449,14 @@ 1963-03-20 Costa Rica San Jose - Accompanied President Kennedy to the Conference of the Presidents of Central American Republics. + Accompanied President Kennedy to the Conference of the Presidents of Central + American Republics. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1830 secretary David Dean Rusk @@ -462,7 +470,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1831 secretary David Dean Rusk @@ -476,7 +484,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1832 secretary David Dean Rusk @@ -490,7 +498,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1833 secretary David Dean Rusk @@ -504,7 +512,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1834 secretary David Dean Rusk @@ -518,7 +526,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1835 secretary David Dean Rusk @@ -526,13 +534,14 @@ 1963-05-05 Yugoslavia Belgrade - Met with President Tito; returned official visit by the Yugoslav Secretary of State for Foreign Affairs. + Met with President Tito; returned official visit by the Yugoslav Secretary of State + for Foreign Affairs. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1836 secretary David Dean Rusk @@ -546,7 +555,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1837 secretary David Dean Rusk @@ -560,7 +569,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1838 secretary David Dean Rusk @@ -574,7 +583,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1839 secretary David Dean Rusk @@ -588,7 +597,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1840 secretary David Dean Rusk @@ -602,7 +611,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1841 secretary David Dean Rusk @@ -616,7 +625,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1842 secretary David Dean Rusk @@ -624,13 +633,14 @@ 1963-08-11 Germany, Federal Republic of Bonn - Discussed the Test Ban Treaty with Chancellor Adenauer and Foreign Minister Schroeder. + Discussed the Test Ban Treaty with Chancellor Adenauer and Foreign Minister + Schroeder. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1843 secretary David Dean Rusk @@ -644,7 +654,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1844 secretary David Dean Rusk @@ -658,7 +668,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1845 secretary David Dean Rusk @@ -672,7 +682,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1846 secretary David Dean Rusk @@ -680,13 +690,14 @@ 1964-01-28 Japan Tokyo - Attended a meeting of Joint U.S.-Japan Committee on Trade and Economic Affairs. + Attended a meeting of Joint U.S.-Japan Committee on Trade and Economic + Affairs. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1847 secretary David Dean Rusk @@ -700,7 +711,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1848 secretary David Dean Rusk @@ -714,7 +725,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1849 secretary David Dean Rusk @@ -728,7 +739,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1850 secretary David Dean Rusk @@ -742,7 +753,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1851 secretary David Dean Rusk @@ -750,13 +761,14 @@ 1964-04-30 Canada Ottawa - Attended a meeting of the Joint U.S.-Canadian Committee on Trade and Economic Affairs. + Attended a meeting of the Joint U.S.-Canadian Committee on Trade and Economic + Affairs. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1852 secretary David Dean Rusk @@ -764,13 +776,14 @@ 1964-05-10 Belgium Brussels - Met with Foreign Minister Spaak and officials of the European Economic Community. + Met with Foreign Minister Spaak and officials of the European Economic + Community. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1853 secretary David Dean Rusk @@ -784,7 +797,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1854 secretary David Dean Rusk @@ -798,7 +811,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1855 secretary David Dean Rusk @@ -812,7 +825,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1856 secretary David Dean Rusk @@ -826,7 +839,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1857 secretary David Dean Rusk @@ -840,7 +853,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1858 secretary David Dean Rusk @@ -854,7 +867,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1859 secretary David Dean Rusk @@ -868,7 +881,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1860 secretary David Dean Rusk @@ -882,7 +895,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1861 secretary David Dean Rusk @@ -896,7 +909,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1862 secretary David Dean Rusk @@ -910,7 +923,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1863 secretary David Dean Rusk @@ -924,7 +937,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1864 secretary David Dean Rusk @@ -938,7 +951,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1865 secretary David Dean Rusk @@ -952,7 +965,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1866 secretary David Dean Rusk @@ -966,7 +979,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1867 secretary David Dean Rusk @@ -980,7 +993,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1868 secretary David Dean Rusk @@ -994,7 +1007,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1869 secretary David Dean Rusk @@ -1008,7 +1021,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1870 secretary David Dean Rusk @@ -1022,7 +1035,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1871 secretary David Dean Rusk @@ -1036,7 +1049,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1872 secretary David Dean Rusk @@ -1050,7 +1063,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1873 secretary David Dean Rusk @@ -1064,7 +1077,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1874 secretary David Dean Rusk @@ -1078,7 +1091,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1875 secretary David Dean Rusk @@ -1086,13 +1099,14 @@ 1966-04-16 Mexico Mexico, D.F. - Accompanied President Johnson on an informal visit. Dedicated a statue of President Lincoln. + Accompanied President Johnson on an informal visit. Dedicated a statue of President + Lincoln. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1876 secretary David Dean Rusk @@ -1106,7 +1120,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1877 secretary David Dean Rusk @@ -1120,7 +1134,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1878 secretary David Dean Rusk @@ -1134,7 +1148,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1879 secretary David Dean Rusk @@ -1148,7 +1162,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1880 secretary David Dean Rusk @@ -1162,7 +1176,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1881 secretary David Dean Rusk @@ -1176,7 +1190,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1882 secretary David Dean Rusk @@ -1190,7 +1204,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1883 secretary David Dean Rusk @@ -1204,7 +1218,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1884 secretary David Dean Rusk @@ -1218,7 +1232,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1885 secretary David Dean Rusk @@ -1232,7 +1246,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1886 secretary David Dean Rusk @@ -1240,13 +1254,14 @@ 1966-07-09 Korea, Republic of Seoul - Met with President Park and signed an agreement on the status of U.S. forces. + Met with President Park and signed an agreement on the status of U.S. + forces. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1887 secretary David Dean Rusk @@ -1260,7 +1275,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1888 secretary David Dean Rusk @@ -1274,7 +1289,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1889 secretary David Dean Rusk @@ -1288,7 +1303,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1890 secretary David Dean Rusk @@ -1302,7 +1317,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1891 secretary David Dean Rusk @@ -1316,7 +1331,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1892 secretary David Dean Rusk @@ -1330,7 +1345,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1893 secretary David Dean Rusk @@ -1344,7 +1359,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1894 secretary David Dean Rusk @@ -1358,7 +1373,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1895 secretary David Dean Rusk @@ -1372,7 +1387,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1896 secretary David Dean Rusk @@ -1386,7 +1401,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1897 secretary David Dean Rusk @@ -1400,7 +1415,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1898 secretary David Dean Rusk @@ -1414,7 +1429,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1899 secretary David Dean Rusk @@ -1428,7 +1443,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1900 secretary David Dean Rusk @@ -1442,7 +1457,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1901 secretary David Dean Rusk @@ -1456,7 +1471,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1902 secretary David Dean Rusk @@ -1470,7 +1485,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1903 secretary David Dean Rusk @@ -1484,7 +1499,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1904 secretary David Dean Rusk @@ -1498,7 +1513,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1905 secretary David Dean Rusk @@ -1512,7 +1527,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1906 secretary David Dean Rusk @@ -1526,7 +1541,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1907 secretary David Dean Rusk @@ -1540,7 +1555,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1908 secretary David Dean Rusk @@ -1554,7 +1569,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1909 secretary David Dean Rusk @@ -1568,7 +1583,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1910 secretary David Dean Rusk @@ -1582,7 +1597,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1911 secretary David Dean Rusk @@ -1596,7 +1611,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1912 secretary David Dean Rusk @@ -1610,7 +1625,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1913 secretary David Dean Rusk @@ -1624,4 +1639,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/seward-william-henry.xml b/secretary-travels/seward-william-henry.xml index d51b7f3..9ef28b8 100644 --- a/secretary-travels/seward-william-henry.xml +++ b/secretary-travels/seward-william-henry.xml @@ -1,6 +1,6 @@ - + 1914 secretary William Henry Seward @@ -8,13 +8,14 @@ 1866-01-12 Denmark St. Thomas, St. Croix, Frederikstadt, Christianstadt (Virgin Islands) - Met with Danish colonial officials during a working vacation. Also met with former Mexican President Santa Anna. Departed from Washington January 1. + Met with Danish colonial officials during a working vacation. Also met with former + Mexican President Santa Anna. Departed from Washington January 1. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1915 secretary William Henry Seward @@ -28,7 +29,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1916 secretary William Henry Seward @@ -42,7 +43,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1917 secretary William Henry Seward @@ -56,4 +57,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/shultz-george-pratt.xml b/secretary-travels/shultz-george-pratt.xml index 7dcb195..837b894 100644 --- a/secretary-travels/shultz-george-pratt.xml +++ b/secretary-travels/shultz-george-pratt.xml @@ -1,6 +1,6 @@ - + 1918 secretary George Pratt Shultz @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1919 secretary George Pratt Shultz @@ -22,13 +22,14 @@ 1982-10-09 Mexico Tijuana - Accompanied President Reagan to a meeting with President-elect De la Madrid. + Accompanied President Reagan to a meeting with President-elect De la + Madrid. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1920 secretary George Pratt Shultz @@ -42,7 +43,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1921 secretary George Pratt Shultz @@ -56,7 +57,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1922 secretary George Pratt Shultz @@ -70,7 +71,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1923 secretary George Pratt Shultz @@ -84,7 +85,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1924 secretary George Pratt Shultz @@ -98,7 +99,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1925 secretary George Pratt Shultz @@ -112,7 +113,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1926 secretary George Pratt Shultz @@ -120,13 +121,14 @@ 1982-12-11 Belgium Brussels - Attended NATO Ministerial Meeting and met with European Economic Community officials. + Attended NATO Ministerial Meeting and met with European Economic Community + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1927 secretary George Pratt Shultz @@ -140,7 +142,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1928 secretary George Pratt Shultz @@ -154,7 +156,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1929 secretary George Pratt Shultz @@ -168,7 +170,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1930 secretary George Pratt Shultz @@ -176,13 +178,14 @@ 1982-12-16 Spain Madrid - Met with Prime Minister Gonzalez and with Western delegates to the CSCE Meeting. + Met with Prime Minister Gonzalez and with Western delegates to the CSCE + Meeting. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1931 secretary George Pratt Shultz @@ -196,7 +199,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1932 secretary George Pratt Shultz @@ -210,7 +213,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1933 secretary George Pratt Shultz @@ -224,7 +227,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1934 secretary George Pratt Shultz @@ -232,13 +235,14 @@ 1983-02-08 Korea, Republic of Seoul - Met with President Chun and Prime Minister Kim. Visited American and Korean military personnel. + Met with President Chun and Prime Minister Kim. Visited American and Korean + military personnel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1935 secretary George Pratt Shultz @@ -246,13 +250,14 @@ 1983-02-09 United Kingdom Hong Kong - Attended a meeting of Chiefs of U.S. Diplomatic Missions in Asia and the Pacific. + Attended a meeting of Chiefs of U.S. Diplomatic Missions in Asia and the + Pacific. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1936 secretary George Pratt Shultz @@ -266,7 +271,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1937 secretary George Pratt Shultz @@ -280,7 +285,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1938 secretary George Pratt Shultz @@ -294,7 +299,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1939 secretary George Pratt Shultz @@ -308,7 +313,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1940 secretary George Pratt Shultz @@ -322,7 +327,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1941 secretary George Pratt Shultz @@ -336,7 +341,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1942 secretary George Pratt Shultz @@ -350,7 +355,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1943 secretary George Pratt Shultz @@ -364,7 +369,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1944 secretary George Pratt Shultz @@ -378,7 +383,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1945 secretary George Pratt Shultz @@ -392,7 +397,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1946 secretary George Pratt Shultz @@ -406,7 +411,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1947 secretary George Pratt Shultz @@ -420,7 +425,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1948 secretary George Pratt Shultz @@ -428,13 +433,14 @@ 1983-05-08 Saudi Arabia Jidda - Discussed the proposed Israeli-Lebanon agreement with Foreign Minister Prince Saud. + Discussed the proposed Israeli-Lebanon agreement with Foreign Minister Prince + Saud. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1949 secretary George Pratt Shultz @@ -448,7 +454,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1950 secretary George Pratt Shultz @@ -462,7 +468,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1951 secretary George Pratt Shultz @@ -476,7 +482,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1952 secretary George Pratt Shultz @@ -490,7 +496,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1953 secretary George Pratt Shultz @@ -504,7 +510,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1954 secretary George Pratt Shultz @@ -518,7 +524,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1955 secretary George Pratt Shultz @@ -532,7 +538,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1956 secretary George Pratt Shultz @@ -540,13 +546,14 @@ 1983-07-04 Pakistan Islamabad, Peshawar - Met with President Zia and Foreign Minister Yaqub Khan. Visited an Afghan refugee camp. + Met with President Zia and Foreign Minister Yaqub Khan. Visited an Afghan refugee + camp. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2018-09-17T09:06:57.03-04:00 - + 1957 secretary George Pratt Shultz @@ -560,7 +567,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1958 secretary George Pratt Shultz @@ -574,7 +581,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1959 secretary George Pratt Shultz @@ -588,7 +595,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1960 secretary George Pratt Shultz @@ -602,7 +609,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1961 secretary George Pratt Shultz @@ -616,7 +623,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1962 secretary George Pratt Shultz @@ -630,7 +637,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1963 secretary George Pratt Shultz @@ -644,7 +651,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1964 secretary George Pratt Shultz @@ -652,13 +659,14 @@ 1983-09-09 Spain Madrid - Attended the final session of the CSCE Follow-up Meeting. Met with Soviet Foreign Minister Gromyko. + Attended the final session of the CSCE Follow-up Meeting. Met with Soviet Foreign + Minister Gromyko. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1965 secretary George Pratt Shultz @@ -672,7 +680,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1966 secretary George Pratt Shultz @@ -680,13 +688,14 @@ 1983-10-27 France Paris - Discussed the Lebanon situation with the Foreign Ministers of France, Italy, and the United Kingdom. + Discussed the Lebanon situation with the Foreign Ministers of France, Italy, and + the United Kingdom. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1967 secretary George Pratt Shultz @@ -700,7 +709,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1968 secretary George Pratt Shultz @@ -714,7 +723,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1969 secretary George Pratt Shultz @@ -728,7 +737,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1970 secretary George Pratt Shultz @@ -742,7 +751,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1971 secretary George Pratt Shultz @@ -756,7 +765,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1972 secretary George Pratt Shultz @@ -770,7 +779,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1973 secretary George Pratt Shultz @@ -784,7 +793,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1974 secretary George Pratt Shultz @@ -798,7 +807,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1975 secretary George Pratt Shultz @@ -806,13 +815,14 @@ 1984-01-19 Sweden Stockholm - Attended the opening session of the Conference on Confidence- and Security-Building Measures and Disarmament in Europe. + Attended the opening session of the Conference on Confidence- and Security-Building + Measures and Disarmament in Europe. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1976 secretary George Pratt Shultz @@ -826,7 +836,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1977 secretary George Pratt Shultz @@ -840,7 +850,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1978 secretary George Pratt Shultz @@ -848,13 +858,14 @@ 1984-02-03 Venezuela Caracas - Attended the inauguration of President Lusinchi and met with Central American Foreign Ministers. + Attended the inauguration of President Lusinchi and met with Central American + Foreign Ministers. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1979 secretary George Pratt Shultz @@ -868,7 +879,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1980 secretary George Pratt Shultz @@ -876,13 +887,14 @@ 1984-02-07 Grenada St. George's - Met with the Governor General and members of the interim government; attended 10th anniversary of independence celebrations. + Met with the Governor General and members of the interim government; attended 10th + anniversary of independence celebrations. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1981 secretary George Pratt Shultz @@ -896,7 +908,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1982 secretary George Pratt Shultz @@ -910,7 +922,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1983 secretary George Pratt Shultz @@ -924,7 +936,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1984 secretary George Pratt Shultz @@ -938,7 +950,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1985 secretary George Pratt Shultz @@ -952,7 +964,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1986 secretary George Pratt Shultz @@ -966,7 +978,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1987 secretary George Pratt Shultz @@ -980,7 +992,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1988 secretary George Pratt Shultz @@ -994,7 +1006,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1989 secretary George Pratt Shultz @@ -1008,7 +1020,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1990 secretary George Pratt Shultz @@ -1022,7 +1034,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1991 secretary George Pratt Shultz @@ -1036,7 +1048,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1992 secretary George Pratt Shultz @@ -1050,7 +1062,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1993 secretary George Pratt Shultz @@ -1064,7 +1076,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1994 secretary George Pratt Shultz @@ -1078,7 +1090,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1995 secretary George Pratt Shultz @@ -1092,7 +1104,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1996 secretary George Pratt Shultz @@ -1106,7 +1118,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1997 secretary George Pratt Shultz @@ -1120,7 +1132,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1998 secretary George Pratt Shultz @@ -1134,7 +1146,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 1999 secretary George Pratt Shultz @@ -1148,7 +1160,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2000 secretary George Pratt Shultz @@ -1162,7 +1174,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2001 secretary George Pratt Shultz @@ -1176,7 +1188,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2002 secretary George Pratt Shultz @@ -1190,7 +1202,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2003 secretary George Pratt Shultz @@ -1204,7 +1216,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2004 secretary George Pratt Shultz @@ -1212,13 +1224,14 @@ 1985-01-08 Switzerland Geneva - Discussed future strategic arms negotiations with Soviet Foreign Minister Gromyko. + Discussed future strategic arms negotiations with Soviet Foreign Minister + Gromyko. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2005 secretary George Pratt Shultz @@ -1232,7 +1245,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2006 secretary George Pratt Shultz @@ -1246,7 +1259,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2007 secretary George Pratt Shultz @@ -1254,13 +1267,14 @@ 1985-03-02 Uruguay Montevideo - Attended the inauguration of President Sanguinetti. Returned to Washington March 3. + Attended the inauguration of President Sanguinetti. Returned to Washington March + 3. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2008 secretary George Pratt Shultz @@ -1268,13 +1282,14 @@ 1985-03-13 U.S.S.R. Moscow - Accompanied Vice President Bush to the funeral of Soviet President Chernenko. + Accompanied Vice President Bush to the funeral of Soviet President + Chernenko. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2009 secretary George Pratt Shultz @@ -1288,7 +1303,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2010 secretary George Pratt Shultz @@ -1302,7 +1317,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2011 secretary George Pratt Shultz @@ -1310,13 +1325,14 @@ 1985-05-06 Germany, Federal Republic of Bonn - Accompanied President Reagan to the Economic Summit Meeting and on a State visit. + Accompanied President Reagan to the Economic Summit Meeting and on a State + visit. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2012 secretary George Pratt Shultz @@ -1330,7 +1346,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2013 secretary George Pratt Shultz @@ -1344,7 +1360,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2014 secretary George Pratt Shultz @@ -1358,7 +1374,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2015 secretary George Pratt Shultz @@ -1372,7 +1388,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2016 secretary George Pratt Shultz @@ -1386,7 +1402,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2017 secretary George Pratt Shultz @@ -1400,7 +1416,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2018 secretary George Pratt Shultz @@ -1408,13 +1424,14 @@ 1985-05-15 Austria Vienna - Attended ceremonies commemorating the 30th anniversary of the Austrian State Treaty. Met with Soviet Foreign Minister Gromyko. + Attended ceremonies commemorating the 30th anniversary of the Austrian State + Treaty. Met with Soviet Foreign Minister Gromyko. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2019 secretary George Pratt Shultz @@ -1428,7 +1445,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2020 secretary George Pratt Shultz @@ -1436,13 +1453,14 @@ 1985-06-08 United Kingdom London - Met with Prime Minister Thatcher. Attended a conference of U.S. Chiefs of Mission. Returned by way of Bermuda. + Met with Prime Minister Thatcher. Attended a conference of U.S. Chiefs of Mission. + Returned by way of Bermuda. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2021 secretary George Pratt Shultz @@ -1456,7 +1474,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2022 secretary George Pratt Shultz @@ -1464,13 +1482,14 @@ 1985-07-10 Thailand Bangkok - Met with Prime Minister Prem and senior Thai officials. Also visited Cambodian refugee camps on the Thai border. + Met with Prime Minister Prem and senior Thai officials. Also visited Cambodian + refugee camps on the Thai border. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2023 secretary George Pratt Shultz @@ -1484,7 +1503,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2024 secretary George Pratt Shultz @@ -1498,7 +1517,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2025 secretary George Pratt Shultz @@ -1512,7 +1531,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2026 secretary George Pratt Shultz @@ -1526,7 +1545,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2027 secretary George Pratt Shultz @@ -1534,13 +1553,15 @@ 1985-08-01 Finland Helsinki - Attended ceremonies commemorating 10th anniversary of the Final Act of the Conference on Security and Cooperation in Europe. Met with Soviet Foreign Minister Shevardnadze. + Attended ceremonies commemorating 10th anniversary of the Final Act of the + Conference on Security and Cooperation in Europe. Met with Soviet Foreign Minister + Shevardnadze. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2028 secretary George Pratt Shultz @@ -1554,7 +1575,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2029 secretary George Pratt Shultz @@ -1568,7 +1589,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2030 secretary George Pratt Shultz @@ -1582,7 +1603,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2031 secretary George Pratt Shultz @@ -1590,13 +1611,14 @@ 1985-11-03 Finland Helsinki - Met with President Koivisto and Foreign Minister Vayrynen while en route to Moscow. + Met with President Koivisto and Foreign Minister Vayrynen while en route to + Moscow. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2032 secretary George Pratt Shultz @@ -1610,7 +1632,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2033 secretary George Pratt Shultz @@ -1624,7 +1646,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2034 secretary George Pratt Shultz @@ -1632,13 +1654,14 @@ 1985-11-21 Switzerland Geneva - Accompanied President Reagan to the Summit Meeting with Soviet General Secretary Gorbachev. + Accompanied President Reagan to the Summit Meeting with Soviet General Secretary + Gorbachev. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2035 secretary George Pratt Shultz @@ -1652,7 +1675,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2036 secretary George Pratt Shultz @@ -1666,7 +1689,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2037 secretary George Pratt Shultz @@ -1680,7 +1703,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2038 secretary George Pratt Shultz @@ -1688,13 +1711,14 @@ 1985-12-13 Belgium Brussels - Attended NATO Ministerial Meeting and a U.S.-European Community Ministerial Meeting. + Attended NATO Ministerial Meeting and a U.S.-European Community Ministerial + Meeting. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2039 secretary George Pratt Shultz @@ -1708,7 +1732,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2040 secretary George Pratt Shultz @@ -1722,7 +1746,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2041 secretary George Pratt Shultz @@ -1736,7 +1760,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2042 secretary George Pratt Shultz @@ -1750,7 +1774,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2043 secretary George Pratt Shultz @@ -1764,7 +1788,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2044 secretary George Pratt Shultz @@ -1778,7 +1802,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2045 secretary George Pratt Shultz @@ -1792,7 +1816,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2046 secretary George Pratt Shultz @@ -1806,7 +1830,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2047 secretary George Pratt Shultz @@ -1814,13 +1838,14 @@ 1986-03-16 Sweden Stockholm - Attended the funeral of Prime Minister Palme and met with Soviet Premier Ryzhkov. + Attended the funeral of Prime Minister Palme and met with Soviet Premier + Ryzhkov. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2048 secretary George Pratt Shultz @@ -1834,7 +1859,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2049 secretary George Pratt Shultz @@ -1842,13 +1867,14 @@ 1986-03-25 Turkey Istanbul, Ankara - Discussed economic and defense matters with Prime Minister Ozal and senior Turkish officials. + Discussed economic and defense matters with Prime Minister Ozal and senior Turkish + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2050 secretary George Pratt Shultz @@ -1856,13 +1882,14 @@ 1986-03-28 Greece Athens - Discussed defense issues with Prime Minister Papandreou and senior Greek officials. + Discussed defense issues with Prime Minister Papandreou and senior Greek + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2051 secretary George Pratt Shultz @@ -1876,7 +1903,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2052 secretary George Pratt Shultz @@ -1890,7 +1917,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2053 secretary George Pratt Shultz @@ -1904,7 +1931,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2054 secretary George Pratt Shultz @@ -1918,7 +1945,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2055 secretary George Pratt Shultz @@ -1932,7 +1959,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2056 secretary George Pratt Shultz @@ -1946,7 +1973,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2057 secretary George Pratt Shultz @@ -1960,7 +1987,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2058 secretary George Pratt Shultz @@ -1974,7 +2001,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2059 secretary George Pratt Shultz @@ -1988,7 +2015,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2060 secretary George Pratt Shultz @@ -2002,7 +2029,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2061 secretary George Pratt Shultz @@ -2010,13 +2037,14 @@ 1986-06-28 Philippines Manila - Attended ASEAN Post-Ministerial Meeting. Also met with New Zealand Prime Minister Lange. + Attended ASEAN Post-Ministerial Meeting. Also met with New Zealand Prime Minister + Lange. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2062 secretary George Pratt Shultz @@ -2030,7 +2058,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2063 secretary George Pratt Shultz @@ -2044,7 +2072,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2064 secretary George Pratt Shultz @@ -2058,7 +2086,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2065 secretary George Pratt Shultz @@ -2072,7 +2100,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2066 secretary George Pratt Shultz @@ -2080,13 +2108,14 @@ 1986-10-12 Iceland Reykjavik - Accompanied President Reagan to a meeting with Soviet General Secretary Gorbachev. + Accompanied President Reagan to a meeting with Soviet General Secretary + Gorbachev. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2067 secretary George Pratt Shultz @@ -2100,7 +2129,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2068 secretary George Pratt Shultz @@ -2114,7 +2143,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2069 secretary George Pratt Shultz @@ -2122,13 +2151,14 @@ 1986-11-06 Austria Vienna - Attended the opening of the Follow-up Meeting of the Conference on Security and Cooperation in Europe. + Attended the opening of the Follow-up Meeting of the Conference on Security and + Cooperation in Europe. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2070 secretary George Pratt Shultz @@ -2142,7 +2172,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2071 secretary George Pratt Shultz @@ -2156,7 +2186,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2072 secretary George Pratt Shultz @@ -2170,7 +2200,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2073 secretary George Pratt Shultz @@ -2184,7 +2214,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2074 secretary George Pratt Shultz @@ -2198,7 +2228,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2075 secretary George Pratt Shultz @@ -2212,7 +2242,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2076 secretary George Pratt Shultz @@ -2226,7 +2256,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2077 secretary George Pratt Shultz @@ -2240,7 +2270,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2078 secretary George Pratt Shultz @@ -2254,7 +2284,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2079 secretary George Pratt Shultz @@ -2268,7 +2298,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2080 secretary George Pratt Shultz @@ -2282,7 +2312,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2081 secretary George Pratt Shultz @@ -2296,7 +2326,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2082 secretary George Pratt Shultz @@ -2310,7 +2340,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2083 secretary George Pratt Shultz @@ -2324,7 +2354,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2084 secretary George Pratt Shultz @@ -2338,7 +2368,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2085 secretary George Pratt Shultz @@ -2352,7 +2382,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2086 secretary George Pratt Shultz @@ -2366,7 +2396,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2087 secretary George Pratt Shultz @@ -2380,7 +2410,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2088 secretary George Pratt Shultz @@ -2394,7 +2424,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2089 secretary George Pratt Shultz @@ -2408,7 +2438,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2090 secretary George Pratt Shultz @@ -2422,7 +2452,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2091 secretary George Pratt Shultz @@ -2436,7 +2466,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2092 secretary George Pratt Shultz @@ -2450,7 +2480,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2093 secretary George Pratt Shultz @@ -2458,13 +2488,14 @@ 1987-06-17 Philippines Manila - Met with President Aquino. Signed an emergency aid package. Visited Corregidor. + Met with President Aquino. Signed an emergency aid package. Visited + Corregidor. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2094 secretary George Pratt Shultz @@ -2478,7 +2509,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2095 secretary George Pratt Shultz @@ -2492,7 +2523,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2096 secretary George Pratt Shultz @@ -2506,7 +2537,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2097 secretary George Pratt Shultz @@ -2520,7 +2551,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2098 secretary George Pratt Shultz @@ -2534,7 +2565,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2099 secretary George Pratt Shultz @@ -2548,7 +2579,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2100 secretary George Pratt Shultz @@ -2556,13 +2587,14 @@ 1987-10-19 Israel Jerusalem, Tel Aviv, Rehovot - Further meetings with Israeli officials. Received an honorary degree from the Weizmann Institute. + Further meetings with Israeli officials. Received an honorary degree from the + Weizmann Institute. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2101 secretary George Pratt Shultz @@ -2576,7 +2608,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2102 secretary George Pratt Shultz @@ -2590,7 +2622,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2103 secretary George Pratt Shultz @@ -2604,7 +2636,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2104 secretary George Pratt Shultz @@ -2618,7 +2650,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2105 secretary George Pratt Shultz @@ -2632,7 +2664,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2106 secretary George Pratt Shultz @@ -2646,7 +2678,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2107 secretary George Pratt Shultz @@ -2660,7 +2692,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2108 secretary George Pratt Shultz @@ -2668,13 +2700,14 @@ 1987-12-12 Belgium Brussels - Attended a NATO Ministerial Meeting and met with EEC representatives. Signed the INF Basing Inspection Agreement. + Attended a NATO Ministerial Meeting and met with EEC representatives. Signed the + INF Basing Inspection Agreement. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2109 secretary George Pratt Shultz @@ -2688,7 +2721,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2110 secretary George Pratt Shultz @@ -2702,7 +2735,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2111 secretary George Pratt Shultz @@ -2716,7 +2749,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2112 secretary George Pratt Shultz @@ -2730,7 +2763,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2113 secretary George Pratt Shultz @@ -2744,7 +2777,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2114 secretary George Pratt Shultz @@ -2758,7 +2791,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2115 secretary George Pratt Shultz @@ -2772,7 +2805,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2116 secretary George Pratt Shultz @@ -2786,7 +2819,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2117 secretary George Pratt Shultz @@ -2800,7 +2833,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2118 secretary George Pratt Shultz @@ -2808,13 +2841,14 @@ 1988-02-27 Israel Tel Aviv, Jerusalem - Met with Prime Minister Shamir and senior Israeli officials. Discussed a Middle East peace initiative. + Met with Prime Minister Shamir and senior Israeli officials. Discussed a Middle + East peace initiative. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2119 secretary George Pratt Shultz @@ -2822,13 +2856,14 @@ 1988-02-27 Syria Damascus - Met with President Assad and Foreign Minister Khaddam regarding a Middle East peace initiative. + Met with President Assad and Foreign Minister Khaddam regarding a Middle East peace + initiative. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2120 secretary George Pratt Shultz @@ -2836,13 +2871,14 @@ 1988-02-27 Jordan Amman - Met with Crown Prince Hassan and Prime Minister Rifai regarding a Middle East peace initiative. + Met with Crown Prince Hassan and Prime Minister Rifai regarding a Middle East peace + initiative. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2121 secretary George Pratt Shultz @@ -2856,7 +2892,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2122 secretary George Pratt Shultz @@ -2870,7 +2906,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2123 secretary George Pratt Shultz @@ -2884,7 +2920,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2124 secretary George Pratt Shultz @@ -2892,13 +2928,14 @@ 1988-02-29 Jordan Amman - Briefed Crown Prince Hassan and senior officials on meetings with other Arab leaders. + Briefed Crown Prince Hassan and senior officials on meetings with other Arab + leaders. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2125 secretary George Pratt Shultz @@ -2912,7 +2949,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2126 secretary George Pratt Shultz @@ -2926,7 +2963,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2127 secretary George Pratt Shultz @@ -2940,7 +2977,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2128 secretary George Pratt Shultz @@ -2954,7 +2991,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2129 secretary George Pratt Shultz @@ -2968,7 +3005,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2130 secretary George Pratt Shultz @@ -2982,7 +3019,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2131 secretary George Pratt Shultz @@ -2996,7 +3033,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2132 secretary George Pratt Shultz @@ -3010,7 +3047,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2133 secretary George Pratt Shultz @@ -3024,7 +3061,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2134 secretary George Pratt Shultz @@ -3038,7 +3075,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2135 secretary George Pratt Shultz @@ -3052,7 +3089,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2136 secretary George Pratt Shultz @@ -3066,7 +3103,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2137 secretary George Pratt Shultz @@ -3080,7 +3117,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2138 secretary George Pratt Shultz @@ -3094,7 +3131,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2139 secretary George Pratt Shultz @@ -3108,7 +3145,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2140 secretary George Pratt Shultz @@ -3122,7 +3159,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2141 secretary George Pratt Shultz @@ -3136,7 +3173,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2142 secretary George Pratt Shultz @@ -3144,13 +3181,14 @@ 1988-04-14 Switzerland Geneva - Attended the signing of an agreement for the withdrawal of Soviet forces from Afghanistan. + Attended the signing of an agreement for the withdrawal of Soviet forces from + Afghanistan. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2143 secretary George Pratt Shultz @@ -3164,7 +3202,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2144 secretary George Pratt Shultz @@ -3178,7 +3216,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2145 secretary George Pratt Shultz @@ -3192,7 +3230,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2146 secretary George Pratt Shultz @@ -3200,13 +3238,14 @@ 1988-05-12 Switzerland Geneva - Met with Soviet Foreign Minister Shevardnadze; discussed INF verification procedures. + Met with Soviet Foreign Minister Shevardnadze; discussed INF verification + procedures. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2147 secretary George Pratt Shultz @@ -3220,7 +3259,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2148 secretary George Pratt Shultz @@ -3228,13 +3267,14 @@ 1988-05-29 Finland Helsinki - Accompanied President Reagan to meetings with President Koivisto en route to Moscow. + Accompanied President Reagan to meetings with President Koivisto en route to + Moscow. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2149 secretary George Pratt Shultz @@ -3248,7 +3288,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 3885 secretary George Pratt Shultz @@ -3262,7 +3302,7 @@ bottsjd 2020-10-28T14:35:48.889-04:00 - + 2150 secretary George Pratt Shultz @@ -3276,7 +3316,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2151 secretary George Pratt Shultz @@ -3290,7 +3330,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2152 secretary George Pratt Shultz @@ -3304,7 +3344,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2153 secretary George Pratt Shultz @@ -3318,7 +3358,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2154 secretary George Pratt Shultz @@ -3332,7 +3372,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2155 secretary George Pratt Shultz @@ -3346,7 +3386,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2156 secretary George Pratt Shultz @@ -3360,7 +3400,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2157 secretary George Pratt Shultz @@ -3374,7 +3414,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2158 secretary George Pratt Shultz @@ -3382,13 +3422,14 @@ 1988-06-29 Guatemala Guatemala City - Met with President Vicinio Cerezo. Signed an economic assistance agreement. Met with Nicaraguan Resistance leaders. + Met with President Vicinio Cerezo. Signed an economic assistance agreement. Met + with Nicaraguan Resistance leaders. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2159 secretary George Pratt Shultz @@ -3396,13 +3437,14 @@ 1988-06-30 El Salvador San Salvador - Met with Acting President Castillo Claramount and Salvadoran officials and military officers. Signed an economic assistance agreement. + Met with Acting President Castillo Claramount and Salvadoran officials and military + officers. Signed an economic assistance agreement. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2160 secretary George Pratt Shultz @@ -3416,7 +3458,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2161 secretary George Pratt Shultz @@ -3430,7 +3472,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2162 secretary George Pratt Shultz @@ -3444,7 +3486,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2163 secretary George Pratt Shultz @@ -3458,7 +3500,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2164 secretary George Pratt Shultz @@ -3466,13 +3508,14 @@ 1988-07-11 Indonesia Jakarta - Met with President Suharto and senior Indonesian officials. Signed agreements on double taxation. + Met with President Suharto and senior Indonesian officials. Signed agreements on + double taxation. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2165 secretary George Pratt Shultz @@ -3486,7 +3529,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2166 secretary George Pratt Shultz @@ -3500,7 +3543,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2167 secretary George Pratt Shultz @@ -3514,7 +3557,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2168 secretary George Pratt Shultz @@ -3528,7 +3571,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2169 secretary George Pratt Shultz @@ -3542,7 +3585,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2170 secretary George Pratt Shultz @@ -3556,7 +3599,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2171 secretary George Pratt Shultz @@ -3564,13 +3607,14 @@ 1988-08-01 Guatemala Guatemala City - Met with the Foreign Ministers of Guatemala, Costa Rica, Honduras, and El Salvador. + Met with the Foreign Ministers of Guatemala, Costa Rica, Honduras, and El + Salvador. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2172 secretary George Pratt Shultz @@ -3584,7 +3628,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2173 secretary George Pratt Shultz @@ -3598,7 +3642,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2174 secretary George Pratt Shultz @@ -3612,7 +3656,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2175 secretary George Pratt Shultz @@ -3626,7 +3670,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2176 secretary George Pratt Shultz @@ -3640,7 +3684,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2177 secretary George Pratt Shultz @@ -3654,7 +3698,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2178 secretary George Pratt Shultz @@ -3668,7 +3712,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2179 secretary George Pratt Shultz @@ -3682,7 +3726,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2180 secretary George Pratt Shultz @@ -3696,7 +3740,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2181 secretary George Pratt Shultz @@ -3710,7 +3754,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2182 secretary George Pratt Shultz @@ -3724,7 +3768,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2183 secretary George Pratt Shultz @@ -3738,7 +3782,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2184 secretary George Pratt Shultz @@ -3752,7 +3796,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2185 secretary George Pratt Shultz @@ -3766,7 +3810,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2186 secretary George Pratt Shultz @@ -3780,7 +3824,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2187 secretary George Pratt Shultz @@ -3794,4 +3838,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/stettinius-edward-reilly.xml b/secretary-travels/stettinius-edward-reilly.xml index a556708..2e2cfba 100644 --- a/secretary-travels/stettinius-edward-reilly.xml +++ b/secretary-travels/stettinius-edward-reilly.xml @@ -1,6 +1,6 @@ - + 2188 secretary Edward Reilly Stettinius @@ -14,7 +14,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2189 secretary Edward Reilly Stettinius @@ -22,13 +22,14 @@ 1945-01-31 Italy Naples - Discussed postwar issues and policy toward Italy with Presidential adviser Harry Hopkins. + Discussed postwar issues and policy toward Italy with Presidential adviser Harry + Hopkins. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2190 secretary Edward Reilly Stettinius @@ -42,7 +43,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2191 secretary Edward Reilly Stettinius @@ -50,13 +51,14 @@ 1945-02-14 U.S.S.R. Yalta, Moscow - Accompanied President Roosevelt to the Crimea Conference. Met afterward (February 11-14) with Soviet Foreign Minister Molotov. + Accompanied President Roosevelt to the Crimea Conference. Met afterward (February + 11-14) with Soviet Foreign Minister Molotov. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2192 secretary Edward Reilly Stettinius @@ -70,7 +72,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2193 secretary Edward Reilly Stettinius @@ -84,7 +86,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2194 secretary Edward Reilly Stettinius @@ -98,7 +100,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2195 secretary Edward Reilly Stettinius @@ -106,13 +108,14 @@ 1945-02-20 Guatemala Guatemala City - Met with the Presidential Triumvirate and Secretary of Foreign Relations Munoz Meany. + Met with the Presidential Triumvirate and Secretary of Foreign Relations Munoz + Meany. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2196 secretary Edward Reilly Stettinius @@ -126,7 +129,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2197 secretary Edward Reilly Stettinius @@ -140,4 +143,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/stimson-henry-lewis.xml b/secretary-travels/stimson-henry-lewis.xml index 227149c..b0ad7af 100644 --- a/secretary-travels/stimson-henry-lewis.xml +++ b/secretary-travels/stimson-henry-lewis.xml @@ -1,6 +1,6 @@ - + 2198 secretary Henry Lewis Stimson @@ -8,13 +8,14 @@ 1930-04-22 United Kingdom London - Attended the London Naval Conference. Left U.S. January 8; returned April 30. + Attended the London Naval Conference. Left U.S. January 8; returned April + 30. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2199 secretary Henry Lewis Stimson @@ -28,7 +29,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2200 secretary Henry Lewis Stimson @@ -36,13 +37,14 @@ 1931-07-14 Italy Rome - Discussed the European debt crisis and disarmament with Prime Minister Mussolini and Foreign Minister Grandi. Left U.S. June 27. + Discussed the European debt crisis and disarmament with Prime Minister Mussolini + and Foreign Minister Grandi. Left U.S. June 27. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2018-09-17T09:06:57.03-04:00 - + 2201 secretary Henry Lewis Stimson @@ -56,7 +58,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2202 secretary Henry Lewis Stimson @@ -70,7 +72,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2203 secretary Henry Lewis Stimson @@ -84,7 +86,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2204 secretary Henry Lewis Stimson @@ -98,7 +100,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2205 secretary Henry Lewis Stimson @@ -106,13 +108,14 @@ 1931-08-28 United Kingdom London, Rogart - Met with Prime Minister MacDonald; vacationed in Scotland. Returned to U.S. September 3. + Met with Prime Minister MacDonald; vacationed in Scotland. Returned to U.S. + September 3. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2206 secretary Henry Lewis Stimson @@ -120,10 +123,11 @@ 1932-05-01 Switzerland Geneva - Chairman of U.S. Delegation to Disarmament Conference. Left U.S. April 8; returned May 14. + Chairman of U.S. Delegation to Disarmament Conference. Left U.S. April 8; returned + May 14. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file + diff --git a/secretary-travels/tillerson-rex-wayne.xml b/secretary-travels/tillerson-rex-wayne.xml index d35b429..ada3e5a 100644 --- a/secretary-travels/tillerson-rex-wayne.xml +++ b/secretary-travels/tillerson-rex-wayne.xml @@ -1,6 +1,6 @@ - + 3913 secretary Rex W. Tillerson @@ -14,7 +14,7 @@ faithti 2017-10-20T14:29:13.672-04:00 - + 3914 secretary Rex W. Tillerson @@ -22,13 +22,15 @@ 2017-02-23 Mexico Mexico City - Discussed bilateral relations with President Enrique Pena Nieto and Foreign Minister Luis Videgaray. Was joined by Secretary of Homeland Security John Kelly. + Discussed bilateral relations with President Enrique Pena Nieto and Foreign + Minister Luis Videgaray. Was joined by Secretary of Homeland Security John + Kelly. faithti 2017-10-20T14:29:13.672-04:00 faithti 2017-10-20T14:29:13.672-04:00 - + 3915 secretary Rex W. Tillerson @@ -42,7 +44,7 @@ faithti 2017-10-20T14:29:13.672-04:00 - + 3916 secretary Rex W. Tillerson @@ -50,13 +52,14 @@ 2017-03-18 Korea, Republic of Seoul - Met with Acting President Hwang Kyo-ahn and Foreign Minister Yun Byung-se. Visited the Demilitarized Zone. + Met with Acting President Hwang Kyo-ahn and Foreign Minister Yun Byung-se. Visited + the Demilitarized Zone. faithti 2017-10-20T14:29:13.672-04:00 faithti 2017-10-20T14:29:13.672-04:00 - + 3917 secretary Rex W. Tillerson @@ -64,13 +67,14 @@ 2017-03-19 China, People’s Republic of Beijing - Met with Xi Jinping, Foreign Minister Wang Yi and State Counselor Yang Jiechi. + Met with Xi Jinping, Foreign Minister Wang Yi and State Counselor Yang + Jiechi. faithti 2017-10-20T14:29:13.672-04:00 faithti 2017-10-20T14:29:13.672-04:00 - + 3918 secretary Rex W. Tillerson @@ -78,13 +82,14 @@ 2017-03-31 Turkey Ankara - Met with President Recep Erdogan, Prime Minister Binali Yilderim, and Foreign Minister Mevlut Cavusoglu. + Met with President Recep Erdogan, Prime Minister Binali Yilderim, and Foreign + Minister Mevlut Cavusoglu. faithti 2017-10-20T14:29:13.672-04:00 faithti 2017-10-20T14:29:13.672-04:00 - + 3919 secretary Rex W. Tillerson @@ -98,7 +103,7 @@ faithti 2017-10-20T14:29:13.672-04:00 - + 3920 secretary Rex W. Tillerson @@ -112,7 +117,7 @@ faithti 2017-10-20T14:29:13.672-04:00 - + 3921 secretary Rex W. Tillerson @@ -126,7 +131,7 @@ faithti 2017-10-20T14:29:13.672-04:00 - + 3922 secretary Rex W. Tillerson @@ -140,7 +145,7 @@ faithti 2017-10-20T14:29:13.672-04:00 - + 3923 secretary Rex W. Tillerson @@ -154,7 +159,7 @@ faithti 2017-10-20T14:29:13.672-04:00 - + 3924 secretary Rex W. Tillerson @@ -168,7 +173,7 @@ faithti 2017-10-20T14:29:13.672-04:00 - + 3925 secretary Rex W. Tillerson @@ -182,7 +187,7 @@ faithti 2017-10-20T14:29:13.672-04:00 - + 3926 secretary Rex W. Tillerson @@ -196,7 +201,7 @@ faithti 2017-10-20T14:29:13.672-04:00 - + 3927 secretary Rex W. Tillerson @@ -210,7 +215,7 @@ faithti 2017-10-20T14:29:13.672-04:00 - + 3928 secretary Rex W. Tillerson @@ -218,13 +223,14 @@ 2017-05-26 United Kingdom London - Met with Foreign Secretary Boris Johnson. Signed book of condolences for the Manchester terrorist attack. + Met with Foreign Secretary Boris Johnson. Signed book of condolences for the + Manchester terrorist attack. faithti 2017-10-20T14:29:13.672-04:00 faithti 2017-10-20T14:29:13.672-04:00 - + 3746 secretary Rex W. Tillerson @@ -238,7 +244,7 @@ faithti 2017-10-20T14:29:13.672-04:00 - + 3747 secretary Rex W. Tillerson @@ -252,7 +258,7 @@ faithti 2017-10-20T14:29:13.672-04:00 - + 3748 secretary Rex W. Tillerson @@ -266,7 +272,7 @@ faithti 2017-10-20T14:29:13.672-04:00 - + 3740 secretary Rex W. Tillerson @@ -280,7 +286,7 @@ faithti 2017-10-20T14:29:13.672-04:00 - + 3749 secretary Rex W. Tillerson @@ -294,7 +300,7 @@ faithti 2017-10-20T14:29:13.672-04:00 - + 3741 secretary Rex W. Tillerson @@ -302,13 +308,14 @@ 2017-07-11 Kuwait Kuwait City - Met with Emir Sheikh Sabah al-Ahmad al-Sabah and senior Kuwaiti officials. + Met with Emir Sheikh Sabah al-Ahmad al-Sabah and senior Kuwaiti + officials. faithti 2017-10-20T14:29:13.672-04:00 faithti 2017-10-20T14:29:13.672-04:00 - + 3742 secretary Rex W. Tillerson @@ -316,13 +323,14 @@ 2017-07-11 Qatar Doha - Met with Emir Sheikh Tamim bin Hamad al-Thani and Foreign Minister Sheikh Mohammed bin Abdulrahman al-Thani. Signed MOU to prevent financing of terrorism. + Met with Emir Sheikh Tamim bin Hamad al-Thani and Foreign Minister Sheikh Mohammed + bin Abdulrahman al-Thani. Signed MOU to prevent financing of terrorism. faithti 2017-10-20T14:29:13.672-04:00 faithti 2017-10-20T14:29:13.672-04:00 - + 3743 secretary Rex W. Tillerson @@ -330,13 +338,15 @@ 2017-07-12 Saudi Arabia Jeddah - Met with King Salman bin Abdulaziz al-Saud, Crown Prince Mohammed bin Salman, and the Foreign Ministers of Saudi Arabia, Bahrain, the United Arab Emirates, and Egypt. + Met with King Salman bin Abdulaziz al-Saud, Crown Prince Mohammed bin Salman, and + the Foreign Ministers of Saudi Arabia, Bahrain, the United Arab Emirates, and + Egypt. faithti 2017-10-20T14:29:13.672-04:00 faithti 2017-10-20T14:29:13.672-04:00 - + 3744 secretary Rex W. Tillerson @@ -350,7 +360,7 @@ faithti 2017-10-20T14:29:13.672-04:00 - + 3745 secretary Rex W. Tillerson @@ -364,7 +374,7 @@ faithti 2017-10-20T14:29:13.672-04:00 - + 3750 secretary Rex W. Tillerson @@ -378,7 +388,7 @@ faithti 2018-03-12T14:29:13.672-04:00 - + 3751 secretary Rex W. Tillerson @@ -386,13 +396,14 @@ 2017-08-08 Thailand Bangkok - Met with Prime Minister Prayut Chan-o-Cha and Foreign Minister Don Pramudwinai. + Met with Prime Minister Prayut Chan-o-Cha and Foreign Minister Don + Pramudwinai. faithti 2018-03-12T14:29:13.672-04:00 faithti 2018-03-12T14:29:13.672-04:00 - + 3752 secretary Rex W. Tillerson @@ -406,7 +417,7 @@ faithti 2019-11-20T14:29:13.672-04:00 - + 3753 secretary Rex W. Tillerson @@ -414,13 +425,14 @@ 2017-09-14 United Kingdom London - Attended a Six-Party Ministerial meeting on Libya. Met with Prime Minister Theresa May. + Attended a Six-Party Ministerial meeting on Libya. Met with Prime Minister Theresa + May. faithti 2018-03-12T14:29:13.672-04:00 faithti 2018-03-12T14:29:13.672-04:00 - + 3754 secretary Rex W. Tillerson @@ -428,13 +440,14 @@ 2017-10-01 China, People’s Republic of Beijing - Met with President Xi Jinping, Foreign Minister Wang Yi, and State Councilor Yang Jiechi. + Met with President Xi Jinping, Foreign Minister Wang Yi, and State Councilor Yang + Jiechi. faithti 2018-03-12T14:29:13.672-04:00 faithti 2018-03-12T14:29:13.672-04:00 - + 3755 secretary Rex W. Tillerson @@ -442,13 +455,15 @@ 2017-10-22 Saudi Arabia Riyadh - Met with King Salman bin Abdulaziz al-Saud, Crown Prince Mohammed bin Salman, and Foreign Minister Adel al-Jubeir. Attended the first meeting of the Saudi Arabia-Iraq Coordination Council. + Met with King Salman bin Abdulaziz al-Saud, Crown Prince Mohammed bin Salman, and + Foreign Minister Adel al-Jubeir. Attended the first meeting of the Saudi Arabia-Iraq + Coordination Council. faithti 2018-03-12T14:29:13.672-04:00 faithti 2018-03-12T14:29:13.672-04:00 - + 3756 secretary Rex W. Tillerson @@ -456,13 +471,14 @@ 2017-10-23 Qatar Doha - Met with Emir Sheikh Tamim bin Hamad al-Thani and Foreign Minister Sheikh Mohammed bin Abdulrahman bin Jassim al-Thani. + Met with Emir Sheikh Tamim bin Hamad al-Thani and Foreign Minister Sheikh Mohammed + bin Abdulrahman bin Jassim al-Thani. faithti 2018-03-12T14:29:13.672-04:00 faithti 2018-03-12T14:29:13.672-04:00 - + 3757 secretary Rex W. Tillerson @@ -476,7 +492,7 @@ faithti 2018-03-12T14:29:13.672-04:00 - + 3758 secretary Rex W. Tillerson @@ -490,7 +506,7 @@ faithti 2018-03-12T14:29:13.672-04:00 - + 3759 secretary Rex W. Tillerson @@ -504,7 +520,7 @@ faithti 2018-03-12T14:29:13.672-04:00 - + 3760 secretary Rex W. Tillerson @@ -518,7 +534,7 @@ faithti 2018-03-12T14:29:13.672-04:00 - + 3761 secretary Rex W. Tillerson @@ -526,13 +542,15 @@ 2017-10-26 Switzerland Geneva - Met with UN Special Envoy Staffan de Mistura, UN High Commissioner for Refugees Filippo Grandi, and International Committee of the Red Cross President Peter Maurer. + Met with UN Special Envoy Staffan de Mistura, UN High Commissioner for Refugees + Filippo Grandi, and International Committee of the Red Cross President Peter + Maurer. faithti 2018-03-12T14:29:13.672-04:00 faithti 2018-03-12T14:29:13.672-04:00 - + 3762 secretary Rex W. Tillerson @@ -546,7 +564,7 @@ faithti 2018-03-12T14:29:13.672-04:00 - + 3763 secretary Rex W. Tillerson @@ -560,7 +578,7 @@ faithti 2018-03-12T14:29:13.672-04:00 - + 3764 secretary Rex W. Tillerson @@ -574,7 +592,7 @@ faithti 2018-03-12T14:29:13.672-04:00 - + 3765 secretary Rex W. Tillerson @@ -588,7 +606,7 @@ faithti 2018-03-12T14:29:13.672-04:00 - + 3766 secretary Rex W. Tillerson @@ -602,7 +620,7 @@ faithti 2018-03-12T14:29:13.672-04:00 - + 3767 secretary Rex W. Tillerson @@ -610,13 +628,14 @@ 2017-11-15 Burma Nay Pyi Taw - Met with State Councilor Aung San Suu Kyi and Commander-in-Chief Min Aung Hlang. + Met with State Councilor Aung San Suu Kyi and Commander-in-Chief Min Aung + Hlang. faithti 2018-03-12T14:29:13.672-04:00 faithti 2018-03-12T14:29:13.672-04:00 - + 3768 secretary Rex W. Tillerson @@ -624,13 +643,14 @@ 2017-12-06 Belgium Brussels - Attended a NATO Foreign Ministers Meeting and met with EU Foreign Ministers. + Attended a NATO Foreign Ministers Meeting and met with EU Foreign + Ministers. faithti 2018-03-12T14:29:13.672-04:00 faithti 2018-03-12T14:29:13.672-04:00 - + 3769 secretary Rex W. Tillerson @@ -644,7 +664,7 @@ faithti 2018-03-12T14:29:13.672-04:00 - + 3770 secretary Rex W. Tillerson @@ -652,13 +672,14 @@ 2017-12-08 France Paris - Attended the International Support Group for Lebanon Ministerial Meeting and met with President Emmanuel Macron and Foreign Minister Jean-Yves Le Drian. + Attended the International Support Group for Lebanon Ministerial Meeting and met + with President Emmanuel Macron and Foreign Minister Jean-Yves Le Drian. faithti 2018-03-12T14:29:13.672-04:00 faithti 2018-03-12T14:29:13.672-04:00 - + 3771 secretary Rex W. Tillerson @@ -666,13 +687,14 @@ 2017-12-19 Canada Ottawa - Met with President Justin Trudeau and Foreign Minister Chrystia Freedland. + Met with President Justin Trudeau and Foreign Minister Chrystia + Freedland. faithti 2018-03-12T14:29:13.672-04:00 faithti 2018-03-12T14:29:13.672-04:00 - + 3772 secretary Rex W. Tillerson @@ -680,13 +702,14 @@ 2018-01-17 Canada Vancouver - Co-hosted the Vancouver Foreign Ministers’ Meeting on Security and Stability on the Korean Peninsula with Canadian Foreign Minister Chrystia Freeland. + Co-hosted the Vancouver Foreign Ministers’ Meeting on Security and Stability on the + Korean Peninsula with Canadian Foreign Minister Chrystia Freeland. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3773 secretary Rex W. Tillerson @@ -694,13 +717,14 @@ 2018-01-22 United Kingdom London - Met with Prime Minister Theresa May, Foreign Secretary Boris Johnson, and National Security Advisor Mark Sedwill. + Met with Prime Minister Theresa May, Foreign Secretary Boris Johnson, and National + Security Advisor Mark Sedwill. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3774 secretary Rex W. Tillerson @@ -708,13 +732,14 @@ 2018-01-24 France Paris - Met with senior French officials and attended the launch of the International Partnership against Impunity for the Use of Chemical Weapons. + Met with senior French officials and attended the launch of the International + Partnership against Impunity for the Use of Chemical Weapons. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3775 secretary Rex W. Tillerson @@ -728,7 +753,7 @@ wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3776 secretary Rex W. Tillerson @@ -742,7 +767,7 @@ wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3777 secretary Rex W. Tillerson @@ -750,13 +775,14 @@ 2018-02-02 Mexico Mexico City - Met with President Enrique Peña Nieto and Foreign Secretary Luis Videgaray. + Met with President Enrique Peña Nieto and Foreign Secretary Luis + Videgaray. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3778 secretary Rex W. Tillerson @@ -770,7 +796,7 @@ wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3779 secretary Rex W. Tillerson @@ -778,13 +804,14 @@ 2018-02-06 Peru Lima - Met with President Pedro Pablo Kuczynski and Foreign Minister Cayetana Aljovin. + Met with President Pedro Pablo Kuczynski and Foreign Minister Cayetana + Aljovin. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3780 secretary Rex W. Tillerson @@ -792,13 +819,14 @@ 2018-02-06 Colombia Bogota - Met with President Juan Manuel Santos and Foreign Minister Maria Angela Holguin. + Met with President Juan Manuel Santos and Foreign Minister Maria Angela + Holguin. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3781 secretary Rex W. Tillerson @@ -806,13 +834,14 @@ 2018-02-07 Jamaica Kingston - Met with Prime Minister Andrew Holness and Foreign Minister Kamina Johnson-Smith. + Met with Prime Minister Andrew Holness and Foreign Minister Kamina + Johnson-Smith. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3782 secretary Rex W. Tillerson @@ -826,7 +855,7 @@ wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3783 secretary Rex W. Tillerson @@ -834,13 +863,14 @@ 2018-02-13 Kuwait Kuwait City - Led the U.S. delegation to the Ministerial meeting of the Global Coalition to Defeat ISIS in Kuwait and participated in the Iraq Reconstruction Conference. + Led the U.S. delegation to the Ministerial meeting of the Global Coalition to + Defeat ISIS in Kuwait and participated in the Iraq Reconstruction Conference. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3784 secretary Rex W. Tillerson @@ -854,7 +884,7 @@ wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3785 secretary Rex W. Tillerson @@ -862,13 +892,14 @@ 2018-02-15 Lebanon Beirut - Met with Lebanese President Michel Aoun, Prime Minister Saad Hariri, and Speaker of Parliament Nabih Berri. + Met with Lebanese President Michel Aoun, Prime Minister Saad Hariri, and Speaker of + Parliament Nabih Berri. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3786 secretary Rex W. Tillerson @@ -882,7 +913,7 @@ wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3787 secretary Rex W. Tillerson @@ -890,13 +921,15 @@ 2018-03-08 Ethiopia Addis Ababa - Met with Ethiopian Prime Minister Hailemariam Desalegn, Ethiopian Foreign Minister Workneh Gebeyehu, and African Union Commission Chairperson Moussa Faki Mahamat. + Met with Ethiopian Prime Minister Hailemariam Desalegn, Ethiopian Foreign Minister + Workneh Gebeyehu, and African Union Commission Chairperson Moussa Faki + Mahamat. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3788 secretary Rex W. Tillerson @@ -904,13 +937,14 @@ 2018-03-09 Djibouti Djibouti City - Met With Djiboutian President Ismaïl Omar Guelleh and Foreign Minister Mahamoud Ali Youssouf. + Met With Djiboutian President Ismaïl Omar Guelleh and Foreign Minister Mahamoud Ali + Youssouf. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3789 secretary Rex W. Tillerson @@ -918,13 +952,14 @@ 2018-03-11 Kenya Nairobi - Met with Kenyan President Uhuru Kenyatta and Foreign Minister Monica Juma. + Met with Kenyan President Uhuru Kenyatta and Foreign Minister Monica + Juma. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3790 secretary Rex W. Tillerson @@ -932,13 +967,14 @@ 2018-03-12 Chad N’Djamena - Met with Chadian President Idriss Deby and Foreign Minister Mahamat Zene Cherif. + Met with Chadian President Idriss Deby and Foreign Minister Mahamat Zene + Cherif. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - + 3791 secretary Rex W. Tillerson @@ -946,10 +982,11 @@ 2018-03-12 Nigeria Abuja - Met with Nigerian President Muhammadu Buhari and Foreign Minister Geoffrey Onyeama. + Met with Nigerian President Muhammadu Buhari and Foreign Minister Geoffrey + Onyeama. wicentowskijc 2018-09-05T15:37:55.683-04:00 wicentowskijc 2018-09-05T15:37:55.683-04:00 - \ No newline at end of file + diff --git a/secretary-travels/vance-cyrus-roberts.xml b/secretary-travels/vance-cyrus-roberts.xml index 57cb8be..67777e8 100644 --- a/secretary-travels/vance-cyrus-roberts.xml +++ b/secretary-travels/vance-cyrus-roberts.xml @@ -1,6 +1,6 @@ - + 2207 secretary Cyrus Roberts Vance @@ -8,13 +8,14 @@ 1977-02-17 Israel Jerusalem - Met with Prime Minister Rabin and Foreign Minister Allon; reviewed the Middle East peace process. + Met with Prime Minister Rabin and Foreign Minister Allon; reviewed the Middle East + peace process. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2208 secretary Cyrus Roberts Vance @@ -22,13 +23,14 @@ 1977-02-18 Egypt Cairo - Met with President Sadat and Foreign Minister Fahmy; reviewed the Middle East peace process. + Met with President Sadat and Foreign Minister Fahmy; reviewed the Middle East peace + process. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2209 secretary Cyrus Roberts Vance @@ -42,7 +44,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2210 secretary Cyrus Roberts Vance @@ -56,7 +58,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2211 secretary Cyrus Roberts Vance @@ -64,13 +66,14 @@ 1977-02-20 Saudi Arabia Riyadh - Met with Crown Prince Fahd and Foreign Minister Prince Saud; reviewed the Middle East peace process. + Met with Crown Prince Fahd and Foreign Minister Prince Saud; reviewed the Middle + East peace process. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2212 secretary Cyrus Roberts Vance @@ -84,7 +87,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2213 secretary Cyrus Roberts Vance @@ -98,7 +101,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2214 secretary Cyrus Roberts Vance @@ -106,13 +109,14 @@ 1977-03-30 U.S.S.R. Moscow - Presented arms reduction proposal to General Secretary Brezhnev and Foreign Minister Gromyko. + Presented arms reduction proposal to General Secretary Brezhnev and Foreign + Minister Gromyko. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2215 secretary Cyrus Roberts Vance @@ -120,13 +124,14 @@ 1977-03-31 Germany, Federal Republic of Bonn - Briefed Chancellor Schmidt and Foreign Minister Genscher on meetings with Soviet leaders. + Briefed Chancellor Schmidt and Foreign Minister Genscher on meetings with Soviet + leaders. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2216 secretary Cyrus Roberts Vance @@ -140,7 +145,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2217 secretary Cyrus Roberts Vance @@ -148,13 +153,14 @@ 1977-04-01 France Paris - Briefed President Giscard d'Estaing and senior French officials on meetings with Soviet leaders. + Briefed President Giscard d'Estaing and senior French officials on meetings with + Soviet leaders. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2218 secretary Cyrus Roberts Vance @@ -162,13 +168,14 @@ 1977-05-11 United Kingdom London - Accompanied President Carter to Economic Summit Meeting. Attended NATO Ministerial Meeting (May 10-11). Met May 11 with Israeli Foreign Minister Allon. + Accompanied President Carter to Economic Summit Meeting. Attended NATO Ministerial + Meeting (May 10-11). Met May 11 with Israeli Foreign Minister Allon. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2219 secretary Cyrus Roberts Vance @@ -182,7 +189,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2220 secretary Cyrus Roberts Vance @@ -196,7 +203,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2221 secretary Cyrus Roberts Vance @@ -210,7 +217,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2222 secretary Cyrus Roberts Vance @@ -218,13 +225,14 @@ 1977-05-21 Switzerland Geneva - Met with Soviet Foreign Minister Gromyko. Signed Convention on the Prohibition of Military or Any Other Hostile Use of Environmental Modification Techniques. + Met with Soviet Foreign Minister Gromyko. Signed Convention on the Prohibition of + Military or Any Other Hostile Use of Environmental Modification Techniques. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2223 secretary Cyrus Roberts Vance @@ -238,7 +246,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2224 secretary Cyrus Roberts Vance @@ -252,7 +260,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2225 secretary Cyrus Roberts Vance @@ -266,7 +274,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2226 secretary Cyrus Roberts Vance @@ -280,7 +288,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2227 secretary Cyrus Roberts Vance @@ -288,13 +296,14 @@ 1977-08-03 Egypt Alexandria - Met with President Sadat; discussed the Middle East peace process. Revisited. + Met with President Sadat; discussed the Middle East peace process. + Revisited. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2228 secretary Cyrus Roberts Vance @@ -302,13 +311,14 @@ 1977-08-03 Lebanon Beirut - Met with President Sarkis and senior Lebanese officials; reviewed the Middle East peace process. + Met with President Sarkis and senior Lebanese officials; reviewed the Middle East + peace process. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2229 secretary Cyrus Roberts Vance @@ -316,13 +326,14 @@ 1977-08-05 Syria Damascus - Reviewed the Middle East peace process with President Assad. Revisited Syria August 11. + Reviewed the Middle East peace process with President Assad. Revisited Syria August + 11. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2230 secretary Cyrus Roberts Vance @@ -330,13 +341,14 @@ 1977-08-07 Jordan Amman - Reviewed the Middle East peace process with King Hussein. Revisited Jordan August 11. + Reviewed the Middle East peace process with King Hussein. Revisited Jordan August + 11. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2231 secretary Cyrus Roberts Vance @@ -344,13 +356,14 @@ 1977-08-09 Saudi Arabia Taif - Reviewed the Middle East peace process with King Khalid and senior Saudi officials. + Reviewed the Middle East peace process with King Khalid and senior Saudi + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2232 secretary Cyrus Roberts Vance @@ -358,13 +371,14 @@ 1977-08-11 Israel Jerusalem - Reviewed the Middle East peace process with Prime Minister Begin and Foreign Minister Dayan. + Reviewed the Middle East peace process with Prime Minister Begin and Foreign + Minister Dayan. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2233 secretary Cyrus Roberts Vance @@ -378,7 +392,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2234 secretary Cyrus Roberts Vance @@ -386,13 +400,14 @@ 1977-08-26 China Peking - Met with Chairman Hua, Foreign Minister Huang, and senior Chinese officials. + Met with Chairman Hua, Foreign Minister Huang, and senior Chinese + officials. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2235 secretary Cyrus Roberts Vance @@ -406,7 +421,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2236 secretary Cyrus Roberts Vance @@ -420,7 +435,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2237 secretary Cyrus Roberts Vance @@ -434,7 +449,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2238 secretary Cyrus Roberts Vance @@ -448,7 +463,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2239 secretary Cyrus Roberts Vance @@ -462,7 +477,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2240 secretary Cyrus Roberts Vance @@ -476,7 +491,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2241 secretary Cyrus Roberts Vance @@ -490,7 +505,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2242 secretary Cyrus Roberts Vance @@ -504,7 +519,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2243 secretary Cyrus Roberts Vance @@ -518,7 +533,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2244 secretary Cyrus Roberts Vance @@ -532,7 +547,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2245 secretary Cyrus Roberts Vance @@ -546,7 +561,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2246 secretary Cyrus Roberts Vance @@ -560,7 +575,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2247 secretary Cyrus Roberts Vance @@ -574,7 +589,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2248 secretary Cyrus Roberts Vance @@ -588,7 +603,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2249 secretary Cyrus Roberts Vance @@ -602,7 +617,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2250 secretary Cyrus Roberts Vance @@ -616,7 +631,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2251 secretary Cyrus Roberts Vance @@ -630,7 +645,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2252 secretary Cyrus Roberts Vance @@ -644,7 +659,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2253 secretary Cyrus Roberts Vance @@ -658,7 +673,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2254 secretary Cyrus Roberts Vance @@ -666,13 +681,14 @@ 1978-01-20 Israel Jerusalem - Attended the opening session of the Egyptian- Israeli Political Committee. + Attended the opening session of the Egyptian- Israeli Political + Committee. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2255 secretary Cyrus Roberts Vance @@ -686,7 +702,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2256 secretary Cyrus Roberts Vance @@ -700,7 +716,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2257 secretary Cyrus Roberts Vance @@ -714,7 +730,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2258 secretary Cyrus Roberts Vance @@ -728,7 +744,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2259 secretary Cyrus Roberts Vance @@ -742,7 +758,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2260 secretary Cyrus Roberts Vance @@ -756,7 +772,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2261 secretary Cyrus Roberts Vance @@ -770,7 +786,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2262 secretary Cyrus Roberts Vance @@ -784,7 +800,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2263 secretary Cyrus Roberts Vance @@ -792,13 +808,14 @@ 1978-04-16 Tanzania Dar es Salaam - Discussed the Rhodesian question with British Foreign Secretary Owen and leaders of Zimbabwe's Patriotic Front. + Discussed the Rhodesian question with British Foreign Secretary Owen and leaders of + Zimbabwe's Patriotic Front. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2264 secretary Cyrus Roberts Vance @@ -806,13 +823,14 @@ 1978-04-17 South Africa Pretoria - Discussed Rhodesia and Namibia with Foreign Minister Botha and British Foreign Secretary Owen. + Discussed Rhodesia and Namibia with Foreign Minister Botha and British Foreign + Secretary Owen. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2265 secretary Cyrus Roberts Vance @@ -820,13 +838,14 @@ 1978-04-17 Southern Rhodesia (Zimbabwe) Salisbury - Discussed the Rhodesian question with members of the Transitional Government and British Foreign Secretary Owen. + Discussed the Rhodesian question with members of the Transitional Government and + British Foreign Secretary Owen. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2266 secretary Cyrus Roberts Vance @@ -840,7 +859,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2267 secretary Cyrus Roberts Vance @@ -854,7 +873,7 @@ wicentowskijc 2017-05-30T14:35:48.889-04:00 - + 2268 secretary Cyrus Roberts Vance @@ -862,13 +881,14 @@ 1978-05-05 Mexico Mexico, D.F., Puerto Vallarta - Official visit. Met with President Lopez Portillo and Foreign Relations Secretary Roel. + Official visit. Met with President Lopez Portillo and Foreign Relations Secretary + Roel. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2269 secretary Cyrus Roberts Vance @@ -882,7 +902,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2270 secretary Cyrus Roberts Vance @@ -896,7 +916,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2271 secretary Cyrus Roberts Vance @@ -910,7 +930,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2272 secretary Cyrus Roberts Vance @@ -918,13 +938,14 @@ 1978-07-17 Germany, Federal Republic of Frankfurt, Bonn - Accompanied President Carter on a State visit and to the Economic Summit Meeting. + Accompanied President Carter on a State visit and to the Economic Summit + Meeting. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2273 secretary Cyrus Roberts Vance @@ -938,7 +959,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2274 secretary Cyrus Roberts Vance @@ -946,13 +967,14 @@ 1978-07-20 United Kingdom London, Hollingbourne - Discussed the Rhodesia question with Foreign Secretary Owen. Also met with the Egyptian and Israeli Foreign Ministers at Leeds Castle, July 18. + Discussed the Rhodesia question with Foreign Secretary Owen. Also met with the + Egyptian and Israeli Foreign Ministers at Leeds Castle, July 18. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2275 secretary Cyrus Roberts Vance @@ -960,13 +982,14 @@ 1978-08-07 Israel Jerusalem - Met with Prime Minister Begin and delivered an invitation to meet with Presidents Carter and Sadat at Camp David. + Met with Prime Minister Begin and delivered an invitation to meet with Presidents + Carter and Sadat at Camp David. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2276 secretary Cyrus Roberts Vance @@ -974,13 +997,14 @@ 1978-08-09 Egypt Alexandria - Met with President Sadat and delivered an invitation to meet with President Carter and Prime Minister Begin at Camp David. + Met with President Sadat and delivered an invitation to meet with President Carter + and Prime Minister Begin at Camp David. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2277 secretary Cyrus Roberts Vance @@ -994,7 +1018,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2278 secretary Cyrus Roberts Vance @@ -1008,7 +1032,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2279 secretary Cyrus Roberts Vance @@ -1022,7 +1046,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2280 secretary Cyrus Roberts Vance @@ -1036,7 +1060,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2281 secretary Cyrus Roberts Vance @@ -1050,7 +1074,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2282 secretary Cyrus Roberts Vance @@ -1064,7 +1088,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2283 secretary Cyrus Roberts Vance @@ -1072,13 +1096,14 @@ 1978-10-24 U.S.S.R. Moscow - Discussed SALT negotiations with President Brezhnev and Foreign Minister Gromyko. + Discussed SALT negotiations with President Brezhnev and Foreign Minister + Gromyko. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2284 secretary Cyrus Roberts Vance @@ -1092,7 +1117,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2285 secretary Cyrus Roberts Vance @@ -1106,7 +1131,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2286 secretary Cyrus Roberts Vance @@ -1114,13 +1139,14 @@ 1978-12-15 Egypt Cairo - Discussed the Egyptian- Israeli peace process. Visited Cairo December 10-11, 12-13, and 14-15. + Discussed the Egyptian- Israeli peace process. Visited Cairo December 10-11, 12-13, + and 14-15. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2287 secretary Cyrus Roberts Vance @@ -1128,13 +1154,14 @@ 1978-12-12 Israel Tel Aviv, Jerusalem - Discussed the Egyptian-Israeli peace process and attended the funeral of former Prime Minister Meir. + Discussed the Egyptian-Israeli peace process and attended the funeral of former + Prime Minister Meir. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2288 secretary Cyrus Roberts Vance @@ -1148,7 +1175,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2289 secretary Cyrus Roberts Vance @@ -1162,7 +1189,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2290 secretary Cyrus Roberts Vance @@ -1176,7 +1203,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2291 secretary Cyrus Roberts Vance @@ -1190,7 +1217,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2292 secretary Cyrus Roberts Vance @@ -1204,7 +1231,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2293 secretary Cyrus Roberts Vance @@ -1218,7 +1245,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2294 secretary Cyrus Roberts Vance @@ -1226,13 +1253,14 @@ 1979-03-13 Egypt Cairo - Accompanied President Carter during final Egyptian-Israeli peace negotiations. + Accompanied President Carter during final Egyptian-Israeli peace + negotiations. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2295 secretary Cyrus Roberts Vance @@ -1240,13 +1268,14 @@ 1979-05-24 United Kingdom London - Met with Prime Minister Thatcher and Foreign Secretary Lord Carrington. Also met with Israeli Prime Minister Begin May 24. + Met with Prime Minister Thatcher and Foreign Secretary Lord Carrington. Also met + with Israeli Prime Minister Begin May 24. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2296 secretary Cyrus Roberts Vance @@ -1260,7 +1289,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2297 secretary Cyrus Roberts Vance @@ -1268,13 +1297,15 @@ 1979-05-27 Israel Tel Aviv, Beersheva, El Arish - Attended opening session of Egyptian-Israeli autonomy talks on the West Bank and Gaza at Beersheva, and the exchange of ratifications of the Egyptian-Israeli Peace Treaty. + Attended opening session of Egyptian-Israeli autonomy talks on the West Bank and + Gaza at Beersheva, and the exchange of ratifications of the Egyptian-Israeli Peace + Treaty. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2298 secretary Cyrus Roberts Vance @@ -1288,7 +1319,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2299 secretary Cyrus Roberts Vance @@ -1302,7 +1333,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2300 secretary Cyrus Roberts Vance @@ -1316,7 +1347,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2301 secretary Cyrus Roberts Vance @@ -1330,7 +1361,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2302 secretary Cyrus Roberts Vance @@ -1338,13 +1369,14 @@ 1979-06-18 Austria Vienna - Accompanied President Carter to U.S.-Soviet Summit and the signing of the SALT II Treaty. + Accompanied President Carter to U.S.-Soviet Summit and the signing of the SALT II + Treaty. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2303 secretary Cyrus Roberts Vance @@ -1358,7 +1390,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2304 secretary Cyrus Roberts Vance @@ -1366,13 +1398,14 @@ 1979-06-29 Japan Tokyo - Accompanied President Carter on a State visit and to the Economic Summit Meeting. + Accompanied President Carter on a State visit and to the Economic Summit + Meeting. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2305 secretary Cyrus Roberts Vance @@ -1386,7 +1419,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2306 secretary Cyrus Roberts Vance @@ -1400,7 +1433,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2307 secretary Cyrus Roberts Vance @@ -1414,7 +1447,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2308 secretary Cyrus Roberts Vance @@ -1428,7 +1461,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2309 secretary Cyrus Roberts Vance @@ -1442,7 +1475,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2310 secretary Cyrus Roberts Vance @@ -1456,7 +1489,7 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2311 secretary Cyrus Roberts Vance @@ -1464,13 +1497,14 @@ 1979-12-10 United Kingdom London - Discussed international responses to the Iranian hostage crisis with Prime Minister Thatcher and Foreign Secretary Lord Carrington. + Discussed international responses to the Iranian hostage crisis with Prime Minister + Thatcher and Foreign Secretary Lord Carrington. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2312 secretary Cyrus Roberts Vance @@ -1478,13 +1512,15 @@ 1979-12-11 France Paris - Discussed international responses to the Iranian hostage crisis with President Giscard d'Estaing and Foreign Minister Francois-Poncet. Also met with Japanese Foreign Minister Okita. + Discussed international responses to the Iranian hostage crisis with President + Giscard d'Estaing and Foreign Minister Francois-Poncet. Also met with Japanese Foreign + Minister Okita. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2313 secretary Cyrus Roberts Vance @@ -1492,13 +1528,14 @@ 1979-12-11 Italy Rome - Discussed international responses to the Iranian hostage crisis with President Pertini and Prime Minister Cossiga. + Discussed international responses to the Iranian hostage crisis with President + Pertini and Prime Minister Cossiga. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2314 secretary Cyrus Roberts Vance @@ -1506,13 +1543,14 @@ 1979-12-12 Germany, Federal Republic of Bonn - Discussed international responses to the Iranian hostage crisis with Chancellor Schmidt and Foreign Minister Genscher. + Discussed international responses to the Iranian hostage crisis with Chancellor + Schmidt and Foreign Minister Genscher. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2315 secretary Cyrus Roberts Vance @@ -1520,13 +1558,14 @@ 1979-12-14 Belgium Brussels - Attended NATO Ministerial Meeting and a special meeting of NATO Foreign and Defense Ministers. + Attended NATO Ministerial Meeting and a special meeting of NATO Foreign and Defense + Ministers. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2316 secretary Cyrus Roberts Vance @@ -1534,13 +1573,14 @@ 1980-02-20 Germany, Federal Republic of Bonn - Discussed responses to Soviet invasion of Afghanistan with Chancellor Schmidt and Foreign Minister Genscher. + Discussed responses to Soviet invasion of Afghanistan with Chancellor Schmidt and + Foreign Minister Genscher. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2317 secretary Cyrus Roberts Vance @@ -1548,13 +1588,14 @@ 1980-02-21 Italy Rome - Discussed responses to Soviet invasion of Afghanistan with President Pertini and Foreign Minister Ruffini. + Discussed responses to Soviet invasion of Afghanistan with President Pertini and + Foreign Minister Ruffini. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2318 secretary Cyrus Roberts Vance @@ -1562,13 +1603,14 @@ 1980-02-21 France Paris - Discussed responses to Soviet invasion of Afghanistan with Foreign Minister Francois-Poncet. + Discussed responses to Soviet invasion of Afghanistan with Foreign Minister + Francois-Poncet. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2319 secretary Cyrus Roberts Vance @@ -1576,13 +1618,14 @@ 1980-02-22 United Kingdom London - Discussed responses to Soviet invasion of Afghanistan with Foreign Secretary Lord Carrington. + Discussed responses to Soviet invasion of Afghanistan with Foreign Secretary Lord + Carrington. wicentowskijc 2010-02-27T14:35:48.889-04:00 wicentowskijc 2010-02-27T14:35:48.889-04:00 - + 2320 secretary Cyrus Roberts Vance @@ -1596,4 +1639,4 @@ wicentowskijc 2010-02-27T14:35:48.889-04:00 - \ No newline at end of file +