output_39.json 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706
  1. {
  2. "Messages": [
  3. {
  4. "Time": "05/09/19 05:55:44 PM (579142544)"
  5. },
  6. {
  7. "Flags": "1126401"
  8. },
  9. {
  10. "Is Read": "Yes"
  11. },
  12. {
  13. "Is Invitation": "No"
  14. },
  15. {
  16. "GUID": "63BB99BF-67BC-434B-897E-A843740359D2"
  17. },
  18. {
  19. "Message": "https://nypost.com/2019/05/09/billionaire-pedophile-jeffrey-epstein-illegally- building-virgin-islands-compound/"
  20. },
  21. {
  22. "Sender": "e:jeeitunes@gmail.com"
  23. },
  24. {
  25. "Time": "05/09/19 06:39:40 PM (579145180)"
  26. },
  27. {
  28. "Flags": "1085445"
  29. },
  30. {
  31. "Is Read": "No"
  32. },
  33. {
  34. "Is Invitation": "No"
  35. },
  36. {
  37. "GUID": "48F65572-C11F-41BA-9C43-06E198F24EE7"
  38. },
  39. {
  40. "Message": "Underwater office ? How nuts are these people"
  41. },
  42. {
  43. "Sender": "e:jeeitunes@gmail.com"
  44. },
  45. {
  46. "Time": "05/09/19 06:45:48 PM (579145548)"
  47. },
  48. {
  49. "Flags": "1085445"
  50. },
  51. {
  52. "Is Read": "No"
  53. },
  54. {
  55. "Is Invitation": "No"
  56. },
  57. {
  58. "GUID": "88467E2A-6405-4C42-99F8-E2353C723826"
  59. },
  60. {
  61. "Message": "Have you seen the tv episode fbi - bain the rascist"
  62. },
  63. {
  64. "Time": "05/09/19 08:59:32 PM (579153572)"
  65. },
  66. {
  67. "Flags": "1060865"
  68. },
  69. {
  70. "Is Read": "Yes"
  71. },
  72. {
  73. "Is Invitation": "No"
  74. },
  75. {
  76. "GUID": "18C93019-0A20-4122-A8F6-AB4F7ODE3F1B"
  77. },
  78. {
  79. "Message": "No"
  80. },
  81. {
  82. "Sender": "e:jeeitunes@gmail.com"
  83. },
  84. {
  85. "Time": "05/09/19 11:13:19 PM (579161599)"
  86. },
  87. {
  88. "Flags": "1085445"
  89. },
  90. {
  91. "Is Read": "No"
  92. },
  93. {
  94. "Is Invitation": "No"
  95. },
  96. {
  97. "GUID": "5B61BCDF-A4C0-436D-9865-003A024A28C5"
  98. },
  99. {
  100. "Message": "Fbi episode 12"
  101. },
  102. {
  103. "Sender": "e:jeeitunes@gmail.com"
  104. },
  105. {
  106. "Time": "05/10/19 07:29:20 AM (579191360)"
  107. },
  108. {
  109. "Flags": "1085445"
  110. },
  111. {
  112. "Is Read": "No"
  113. },
  114. {
  115. "Is Invitation": "No"
  116. },
  117. {
  118. "GUID": "D11787BD-AE30-4714-98D4-3465A28EBBOO"
  119. },
  120. {
  121. "Time": "05/10/19 07:35:05 AM (579191705)"
  122. },
  123. {
  124. "Flags": "1060865"
  125. },
  126. {
  127. "Is Read": "Yes"
  128. },
  129. {
  130. "Is Invitation": "No"
  131. },
  132. {
  133. "GUID": "D8778A37-CF16-4695-9024-25D0837D62B3"
  134. },
  135. {
  136. "Message": "Wow-- not cool"
  137. },
  138. {
  139. "Sender": "e:jeeitunes@gmail.com"
  140. },
  141. {
  142. "Time": "05/10/19 07:35:29 AM (579191729)"
  143. },
  144. {
  145. "Flags": "1085445"
  146. },
  147. {
  148. "Is Read": "No"
  149. },
  150. {
  151. "Is Invitation": "No"
  152. },
  153. {
  154. "GUID": "91603FEO-A9EB-44E8-B8E6-88BE55832C2B"
  155. },
  156. {
  157. "Message": "Download. And see how very very not dl"
  158. },
  159. {
  160. "Sender": "e:jeeitunes@gmail.com"
  161. },
  162. {
  163. "Time": "05/10/19 07:35:32 AM (579191732)"
  164. },
  165. {
  166. "Flags": "1085445"
  167. },
  168. {
  169. "Is Read": "No"
  170. },
  171. {
  172. "Is Invitation": "No"
  173. },
  174. {
  175. "GUID": "82DFD3FE-C124-4B94-BFOC-2E2DOCO1A4EC"
  176. },
  177. {
  178. "Message": "cool"
  179. },
  180. {
  181. "Sender": "e:jeeitunes@gmail.com"
  182. },
  183. {
  184. "Time": "05/10/19 07:36:54 AM (579191814)"
  185. },
  186. {
  187. "Flags": "1085445"
  188. },
  189. {
  190. "Is Read": "No"
  191. },
  192. {
  193. "Is Invitation": "No"
  194. },
  195. {
  196. "GUID": "587F38EE-AE00-4400-9A23-0288AAAA4537"
  197. },
  198. {
  199. "Message": "Clearly - you , protest signs . School views and all"
  200. },
  201. {
  202. "Sender": "e:jeeitunes@gmail.com"
  203. },
  204. {
  205. "Time": "05/10/19 08:11:05 AM (579193865)"
  206. },
  207. {
  208. "Flags": "1085445"
  209. },
  210. {
  211. "Is Read": "No"
  212. },
  213. {
  214. "Is Invitation": "No"
  215. },
  216. {
  217. "GUID": "F75476DA-C910-49B4-A182-910649C77BE8"
  218. },
  219. {
  220. "Message": "Fyi, just got a call from James Watson. Who said he wanted to let me know that he made 91 years old , if nothing else to stick it in the face of those that hoped he and his unpleasant facts would have died"
  221. },
  222. {
  223. "Sender": "111111111111"
  224. },
  225. {
  226. "Time": "05/10/19 09:00:47 AM (579196847)"
  227. },
  228. {
  229. "Flags": "1060865"
  230. },
  231. {
  232. "Is Read": "Yes"
  233. },
  234. {
  235. "Is Invitation": "No"
  236. },
  237. {
  238. "GUID": "AO5B9C54-393D-4ABF-B6CC-C6ADAFEC7B8D"
  239. },
  240. {
  241. "Message": "Wow"
  242. },
  243. {
  244. "Time": "05/10/19 09:00:59 AM (579196859)"
  245. },
  246. {
  247. "Flags": "1060865"
  248. },
  249. {
  250. "Is Read": "Yes"
  251. },
  252. {
  253. "Is Invitation": "No"
  254. },
  255. {
  256. "GUID": "8E4FEB8A-1593-4ACF-B9A0-39Al2E4E605E"
  257. },
  258. {
  259. "Message": "Is he in good enough shape for us to film??"
  260. },
  261. {
  262. "Sender": "e:jeeitunes@gmail.com"
  263. },
  264. {
  265. "Time": "05/10/19 09:01:08 AM (579196868)"
  266. },
  267. {
  268. "Flags": "1085445"
  269. },
  270. {
  271. "Is Read": "No"
  272. },
  273. {
  274. "Is Invitation": "No"
  275. },
  276. {
  277. "GUID": "COA842A8-2EE7-4624-B39B-986D164FE6B0"
  278. },
  279. {
  280. "Message": "Think so"
  281. },
  282. {
  283. "Time": "05/10/19 09:19:21 AM (579197961)"
  284. },
  285. {
  286. "Flags": "1060865"
  287. },
  288. {
  289. "Is Read": "Yes"
  290. },
  291. {
  292. "Is Invitation": "No"
  293. },
  294. {
  295. "GUID": "66ACCF7F-BEF6-42FF-90EA-00FE84AA8BC2"
  296. },
  297. {
  298. "Message": "Where does he live ???"
  299. },
  300. {
  301. "Sender": "e:jeeitunes@gmail.com"
  302. },
  303. {
  304. "Time": "05/10/19 09:22:37 AM (579198157)"
  305. },
  306. {
  307. "Flags": "1085445"
  308. },
  309. {
  310. "Is Read": "No"
  311. },
  312. {
  313. "Is Invitation": "No"
  314. },
  315. {
  316. "GUID": "1D2168E1-84DE-4928-9890-2F78EF9ODF39"
  317. },
  318. {
  319. "Message": "Ny"
  320. },
  321. {
  322. "Sender": "e:jeeitunes@gmail.com"
  323. },
  324. {
  325. "Time": "05/10/19 01:37:10 PM (579213430)"
  326. },
  327. {
  328. "Flags": "1150981"
  329. },
  330. {
  331. "Is Read": "No"
  332. },
  333. {
  334. "Is Invitation": "No"
  335. },
  336. {
  337. "GUID": "24152FAE-4862-4956-8CA2-0B6259EE674A"
  338. },
  339. {
  340. "Message": "http://fortune.com/2019/05/10/china-stock-market-trump-trade-tariffs/"
  341. },
  342. {
  343. "Sender": "e:jeeitunes@gmail.com"
  344. },
  345. {
  346. "Time": "05/10/19 07:51:55 PM (579235915)"
  347. },
  348. {
  349. "Flags": "1150981"
  350. },
  351. {
  352. "Is Read": "No"
  353. },
  354. {
  355. "Is Invitation": "No"
  356. },
  357. {
  358. "GUID": "CO2B6D6E-5826-4F98-BEF5-63798EAC5103"
  359. },
  360. {
  361. "Message": "https://www.reuters.com/article/us-usa-iran-shipping/u-s-warns-merchant-ships- of-possible-iranian-attacks-in-middle-east-idUSKCN1SG1MX"
  362. },
  363. {
  364. "Sender": "e:jeeitunes@gmail.com"
  365. },
  366. {
  367. "Time": "05/10/19 11:42:57 PM (579249777)"
  368. },
  369. {
  370. "Flags": "1085445"
  371. },
  372. {
  373. "Is Read": "No"
  374. },
  375. {
  376. "Is Invitation": "No"
  377. },
  378. {
  379. "GUID": "8B2BF3AF-D906-459A-8A70-D03EB4E69D74"
  380. },
  381. {
  382. "Message": "Are your meetings set"
  383. },
  384. {
  385. "Time": "05/11/19 04:09:44 AM (579265784)"
  386. },
  387. {
  388. "Flags": "1126401"
  389. },
  390. {
  391. "Is Read": "Yes"
  392. },
  393. {
  394. "Is Invitation": "No"
  395. },
  396. {
  397. "GUID": "BD4A442C-D233-4259-8CB3-695FFOC940B6"
  398. },
  399. {
  400. "Message": "Yes-- Terje before and afterward and with them Sunday afternoon"
  401. },
  402. {
  403. "Sender": "e:jeeitunes@gmail.com"
  404. },
  405. {
  406. "Time": "05/11/19 04:15:05 AM (579266105)"
  407. },
  408. {
  409. "Flags": "1085445"
  410. },
  411. {
  412. "Is Read": "No"
  413. },
  414. {
  415. "Is Invitation": "No"
  416. },
  417. {
  418. "GUID": "D95E1BBC-E091-40A1-80EF-44DB53204228"
  419. },
  420. {
  421. "Message": "I suggest focus on Europe . Salvini orbahn, movement.etc very Mild- cassens likely to get HUGE judgement but will take time and bad press along the way . Stay away from ... . I want you to be seen as trusted advisor rather than spook"
  422. },
  423. {
  424. "Sender": "e:jeeitunes@gmail.com"
  425. },
  426. {
  427. "Time": "05/11/19 04:16:24 AM (579266184)"
  428. },
  429. {
  430. "Flags": "1085445"
  431. },
  432. {
  433. "Is Read": "No"
  434. },
  435. {
  436. "Is Invitation": "No"
  437. },
  438. {
  439. "GUID": "6542C8B6-2DC9-44D6-92E1-D91407EF9775"
  440. },
  441. {
  442. "Message": "Recall you are their worst nightmare. rights. zilch"
  443. },
  444. {
  445. "Sender": "e:jeeitunes@gmail.com"
  446. },
  447. {
  448. "Time": "05/11/19 04:18:12 AM (579266292)"
  449. },
  450. {
  451. "Flags": "1085445"
  452. },
  453. {
  454. "Is Read": "No"
  455. },
  456. {
  457. "Is Invitation": "No"
  458. },
  459. {
  460. "GUID": "5163718F-A8D1-43BD-AC71-B16A876E3C29"
  461. },
  462. {
  463. "Message": "Their focus is Iran, and finding money working class in their country , no"
  464. },
  465. {
  466. "Sender": "e:jeeitunes@gmail.com"
  467. },
  468. {
  469. "Time": "05/11/19 07:42:22 AM (579278542)"
  470. },
  471. {
  472. "Flags": "1150981"
  473. },
  474. {
  475. "Is Read": "No"
  476. },
  477. {
  478. "Is Invitation": "No"
  479. },
  480. {
  481. "GUID": "173CB026-4E46-47A6-853B-A0181D6F1A3F"
  482. },
  483. {
  484. "Message": "https://www.nbcnews.com/news/world/u-s-sending-patriot-missile-system-another- warship-middle-east-n1004616"
  485. },
  486. {
  487. "Time": "05/11/19 08:05:53 AM (579279953)"
  488. },
  489. {
  490. "Flags": "1060865"
  491. },
  492. {
  493. "Is Read": "Yes"
  494. },
  495. {
  496. "Is Invitation": "No"
  497. },
  498. {
  499. "GUID": "052F2417-2F01-4D73-BB4D-98DCFA46FEF3"
  500. },
  501. {
  502. "Message": "Got it"
  503. },
  504. {
  505. "Sender": "e:jeeitunes@gmail.com"
  506. },
  507. {
  508. "Time": "05/11/19 08:06:58 AM (579280018)"
  509. },
  510. {
  511. "Flags": "1085445"
  512. },
  513. {
  514. "Is Read": "No"
  515. },
  516. {
  517. "Is Invitation": "No"
  518. },
  519. {
  520. "GUID": "5B662794-6CCB-4C7A-B09E-4978582C8B03"
  521. },
  522. {
  523. "Message": "You can give him insight into pompeo and bolton"
  524. },
  525. {
  526. "Time": "05/11/19 08:10:24 AM (579280224)"
  527. },
  528. {
  529. "Flags": "1060865"
  530. },
  531. {
  532. "Is Read": "Yes"
  533. },
  534. {
  535. "Is Invitation": "No"
  536. },
  537. {
  538. "GUID": "B540FD69-0520-41D4-A196-B967F5BDE205"
  539. },
  540. {
  541. "Message": "Easy"
  542. },
  543. {
  544. "Sender": "e:jeeitunes@gmail.com"
  545. },
  546. {
  547. "Time": "05/12/19 03:49:31 AM (579350971)"
  548. },
  549. {
  550. "Flags": "1085445"
  551. },
  552. {
  553. "Is Read": "No"
  554. },
  555. {
  556. "Is Invitation": "No"
  557. },
  558. {
  559. "GUID": "82737589-4BF6-49CD-8750-7BF7C6EFB5AE"
  560. },
  561. {
  562. "Message": "Norway fun?"
  563. },
  564. {
  565. "Time": "05/12/19 03:50:25 AM (579351025)"
  566. },
  567. {
  568. "Flags": "1060865"
  569. },
  570. {
  571. "Is Read": "Yes"
  572. },
  573. {
  574. "Is Invitation": "No"
  575. },
  576. {
  577. "GUID": "44411F96-17A0-4114-B760-F733F005FD39"
  578. },
  579. {
  580. "Message": "Incredible, very bizarre how I was greatest by the right-- pretty amazing"
  581. },
  582. {
  583. "Time": "05/12/19 03:51:25 AM (579351085)"
  584. },
  585. {
  586. "Flags": "1126401"
  587. },
  588. {
  589. "Is Read": "Yes"
  590. },
  591. {
  592. "Is Invitation": "No"
  593. },
  594. {
  595. "GUID": "868CBBF4-80EB-4001-9E76-4E9AAlEE1AF4"
  596. },
  597. {
  598. "Message": "http://www.chinadaily.com.cn/a/201905/12/WS5cd7024da3104842260bb23f.html"
  599. },
  600. {
  601. "Time": "05/12/19 03:51:25 AM (579351085)"
  602. },
  603. {
  604. "Flags": "1060865"
  605. },
  606. {
  607. "Is Read": "Yes"
  608. },
  609. {
  610. "Is Invitation": "No"
  611. },
  612. {
  613. "GUID": "9E3FD0F0-3D52-413D-9CC5-48DFOEB7C624"
  614. },
  615. {
  616. "Message": "There was never a deal to do"
  617. },
  618. {
  619. "Sender": "e:jeeitunes@gmail.com"
  620. },
  621. {
  622. "Time": "05/12/19 03:58:25 AM (579351505)"
  623. },
  624. {
  625. "Flags": "1085445"
  626. },
  627. {
  628. "Is Read": "No"
  629. },
  630. {
  631. "Is Invitation": "No"
  632. },
  633. {
  634. "GUID": "8AB1611B-0E31-49A8-9E6F-8D92DDBD2396"
  635. },
  636. {
  637. "Message": "You guys think theyre smart. . the talk in fortune cookie language. And wash Is mesmerized . Silly The purpose decides everything,\" Liu said, in English."
  638. },
  639. {
  640. "Time": "05/12/19 03:59:00 AM (579351540)"
  641. },
  642. {
  643. "Flags": "1060865"
  644. },
  645. {
  646. "Is Read": "Yes"
  647. },
  648. {
  649. "Is Invitation": "No"
  650. },
  651. {
  652. "GUID": "18717417-6F40-45F4-A106-AB4FEE8BC448"
  653. },
  654. {
  655. "Message": "we will now break them-- watch"
  656. },
  657. {
  658. "Sender": "e:jeeitunes@gmail.com"
  659. },
  660. {
  661. "Time": "05/12/19 03:59:56 AM (579351596)"
  662. },
  663. {
  664. "Flags": "1085445"
  665. },
  666. {
  667. "Is Read": "No"
  668. },
  669. {
  670. "Is Invitation": "No"
  671. },
  672. {
  673. "GUID": "299EFAA9-3011-41B9-9A49-0DFBC16AD866"
  674. },
  675. {
  676. "Message": "Now you and WWF . Systems don't break . Things do"
  677. },
  678. {
  679. "Sender": "e:jeeitunes@gmail.com"
  680. },
  681. {
  682. "Time": "05/12/19 04:04:27 AM (579351867)"
  683. },
  684. {
  685. "Flags": "1085445"
  686. },
  687. {
  688. "Is Read": "No"
  689. },
  690. {
  691. "Is Invitation": "No"
  692. },
  693. {
  694. "GUID": "A8D4E9E5-D687-4AF1-99F4-A42B09389DA3"
  695. },
  696. {
  697. "Message": "They have North Korea, 3 trillion in reserves. People that work 29 hours per day. A command structure that is efficient. Not sure what breaking them means. They will give in , after making many new friends."
  698. },
  699. {
  700. "Sender": "e:jeeitunes@gmail.com"
  701. },
  702. {
  703. "Time": "05/12/19 04:04:57 AM (579351897)"
  704. },
  705. {
  706. "Flags": "1085445"
  707. },
  708. {
  709. "Is Read": "No"
  710. },
  711. {
  712. "Is Invitation": "No"
  713. },
  714. {
  715. "GUID": "4E37644A-EAD5-4ECE-AFEA-68C646DA83F0"
  716. },
  717. {
  718. "Message": "And focusing on trade is a diversion that they love"
  719. },
  720. {
  721. "Time": "05/12/19 04:05:47 AM (579351947)"
  722. },
  723. {
  724. "Flags": "1060865"
  725. },
  726. {
  727. "Is Read": "Yes"
  728. },
  729. {
  730. "Is Invitation": "No"
  731. },
  732. {
  733. "GUID": "A9836CBB-7CAC-45AF-B021-DD4F47172FB3"
  734. },
  735. {
  736. "Message": "Its a group of peasants trying to run a world economy-- Xi barely has high school education , completely panicked when they read thru the deal-- already leaking oil"
  737. },
  738. {
  739. "Sender": "e:jeeitunes@gmail.com"
  740. },
  741. {
  742. "Time": "05/12/19 04:07:00 AM (579352020)"
  743. },
  744. {
  745. "Flags": "1085445"
  746. },
  747. {
  748. "Is Read": "No"
  749. },
  750. {
  751. "Is Invitation": "No"
  752. },
  753. {
  754. "GUID": "2FED936E-36AE-4D1A-8A7B-F0412E051F7F"
  755. },
  756. {
  757. "Message": "My meeting the other day was around how these peasants looked into their own systems , found the nsa cybertools that we had inserted and then used them against us interests. ."
  758. },
  759. {
  760. "Sender": "e:jeeitunes@gmail.com"
  761. },
  762. {
  763. "Time": "05/12/19 04:08:01 AM (579352081)"
  764. },
  765. {
  766. "Flags": "1085445"
  767. },
  768. {
  769. "Is Read": "No"
  770. },
  771. {
  772. "Is Invitation": "No"
  773. },
  774. {
  775. "GUID": "F994D468-C98F-462F-B33F-4E6C4D853033"
  776. },
  777. {
  778. "Message": "ohh. Yes. , I forgot. We have Steve Mnuchin , and ludlow ,"
  779. },
  780. {
  781. "Time": "05/12/19 04:09:31 AM (579352171)"
  782. },
  783. {
  784. "Flags": "1060865"
  785. },
  786. {
  787. "Is Read": "Yes"
  788. },
  789. {
  790. "Is Invitation": "No"
  791. },
  792. {
  793. "GUID": "89942DAE-2A75-4F7A-B9DB-EDDO5FCB9A78"
  794. },
  795. {
  796. "Message": "They are perfect IT automatons I get that-- can't make complicated decisions under pressure-- the key to victory-- think midway"
  797. },
  798. {
  799. "Sender": "e:jeeitunes@gmail.com"
  800. },
  801. {
  802. "Time": "05/12/19 04:11:46 AM (579352306)"
  803. },
  804. {
  805. "Flags": "1085445"
  806. },
  807. {
  808. "Is Read": "No"
  809. },
  810. {
  811. "Is Invitation": "No"
  812. },
  813. {
  814. "GUID": "8E135DFD-B5AE-4146-8B12-0F1FCF8D9770"
  815. },
  816. {
  817. "Message": "Yes when midway occurred they were still eating rats for breakfast. Literally . I guess you could argue ,we broke the whole neighborhood. . South Korea , Japan and china / Long game"
  818. },
  819. {
  820. "Sender": "e:jeeitunes@gmail.com"
  821. },
  822. {
  823. "Time": "05/12/19 04:13:28 AM (579352408)"
  824. },
  825. {
  826. "Flags": "1085445"
  827. },
  828. {
  829. "Is Read": "No"
  830. },
  831. {
  832. "Is Invitation": "No"
  833. },
  834. {
  835. "GUID": "6184704C-91ED-47AB-9949-4635CD6E0E07"
  836. },
  837. {
  838. "Message": "They sent their soldiers to be educated by us, took our money, our tech, and look back to midway with a smile"
  839. },
  840. {
  841. "Sender": "e:jeeitunes@gmail.com"
  842. },
  843. {
  844. "Time": "05/12/19 04:14:13 AM (579352453)"
  845. },
  846. {
  847. "Flags": "1085445"
  848. },
  849. {
  850. "Is Read": "No"
  851. },
  852. {
  853. "Is Invitation": "No"
  854. },
  855. {
  856. "GUID": "E7C64712-1B66-4C48-A0F3-006214DCF45F"
  857. },
  858. {
  859. "Message": "Always show weakness , exagerate it. First chapter art of war"
  860. },
  861. {
  862. "Sender": "e:jeeitunes@gmail.com"
  863. },
  864. {
  865. "Time": "05/12/19 04:15:12 AM (579352512)"
  866. },
  867. {
  868. "Flags": "1085445"
  869. },
  870. {
  871. "Is Read": "No"
  872. },
  873. {
  874. "Is Invitation": "No"
  875. },
  876. {
  877. "GUID": "BD2F8564-6EA0-4997-9EC7-892D5C4D132E"
  878. },
  879. {
  880. "Message": "That's why a military display makes sense. Let them and others see, daddys. Spanking paddle"
  881. },
  882. {
  883. "Sender": "e:jeeitunes@gmail.com"
  884. },
  885. {
  886. "Time": "05/12/19 04:16:02 AM (579352562)"
  887. },
  888. {
  889. "Flags": "1085445"
  890. },
  891. {
  892. "Is Read": "No"
  893. },
  894. {
  895. "Is Invitation": "No"
  896. },
  897. {
  898. "GUID": "78C81316-4D0C-40E9-9EAD-384F3FE7556B"
  899. },
  900. {
  901. "Message": "And its willingness to use it"
  902. },
  903. {
  904. "Sender": "e:jeeitunes@gmail.com"
  905. },
  906. {
  907. "Time": "05/12/19 09:56:18 AM (579372978)"
  908. },
  909. {
  910. "Flags": "1085445"
  911. },
  912. {
  913. "Is Read": "No"
  914. },
  915. {
  916. "Is Invitation": "No"
  917. },
  918. {
  919. "GUID": "A8704703-CE95-4170-94DO-ADE49261AB28"
  920. },
  921. {
  922. "Message": "Fun?"
  923. },
  924. {
  925. "Time": "05/12/19 10:12:17 AM (579373937)"
  926. },
  927. {
  928. "Flags": "1060865"
  929. },
  930. {
  931. "Is Read": "Yes"
  932. },
  933. {
  934. "Is Invitation": "No"
  935. },
  936. {
  937. "GUID": "A242CC2C-DF86-4D55-A3A4-36B8E4870E9E"
  938. },
  939. {
  940. "Message": "Smart guy-- he was one of the guys who pulled Riyadh off"
  941. },
  942. {
  943. "Sender": "e:jeeitunes@gmail.com"
  944. },
  945. {
  946. "Time": "05/12/19 10:13:29 AM (579374009)"
  947. },
  948. {
  949. "Flags": "1085445"
  950. },
  951. {
  952. "Is Read": "No"
  953. },
  954. {
  955. "Is Invitation": "No"
  956. },
  957. {
  958. "GUID": "D57F68DC-0068-4B7F-AA07-2E77361E6642"
  959. },
  960. {
  961. "Message": "?"
  962. },
  963. {
  964. "Sender": "e:jeeitunes@gmail.com"
  965. },
  966. {
  967. "Time": "05/12/19 10:27:41 AM (579374861)"
  968. },
  969. {
  970. "Flags": "1085445"
  971. },
  972. {
  973. "Is Read": "No"
  974. },
  975. {
  976. "Is Invitation": "No"
  977. },
  978. {
  979. "GUID": "11991174-63A2-40A0-AB99-F5C5ODCFD66D"
  980. },
  981. {
  982. "Message": "You received high marks"
  983. },
  984. {
  985. "Sender": "e:jeeitunes@gmail.com"
  986. },
  987. {
  988. "Time": "05/12/19 02:15:25 PM (579388525)"
  989. },
  990. {
  991. "Flags": "1150981"
  992. },
  993. {
  994. "Is Read": "No"
  995. },
  996. {
  997. "Is Invitation": "No"
  998. },
  999. {
  1000. "GUID": "50A88B9E-CDF6-4C3A-AA74-34B157A18C05"
  1001. },
  1002. {
  1003. "Message": "https://twitter.com/sethabramson/status/1127655868164714505?s=21"
  1004. },
  1005. {
  1006. "Sender": "+13108802851"
  1007. },
  1008. {
  1009. "Time": "05/12/19 11:53:28 PM (579423208)"
  1010. },
  1011. {
  1012. "Flags": "1060865"
  1013. },
  1014. {
  1015. "Is Read": "Yes"
  1016. },
  1017. {
  1018. "Is Invitation": "No"
  1019. },
  1020. {
  1021. "GUID": "5DD748B1-4E29-47F9-A57B-8F1D1089A22B"
  1022. },
  1023. {
  1024. "Message": "High marks??"
  1025. },
  1026. {
  1027. "Time": "05/13/19 01:34:09 AM (579429249)"
  1028. },
  1029. {
  1030. "Flags": "1060865"
  1031. },
  1032. {
  1033. "Is Read": "Yes"
  1034. },
  1035. {
  1036. "Is Invitation": "No"
  1037. },
  1038. {
  1039. "GUID": "79EC79B6-3169-4D72-875D-134736C420D9"
  1040. },
  1041. {
  1042. "Message": "Let me know when u can catch up"
  1043. },
  1044. {
  1045. "Sender": "e:jeeitunes@gmail.com"
  1046. },
  1047. {
  1048. "Time": "05/13/19 03:02:13 AM (579434533)"
  1049. },
  1050. {
  1051. "Flags": "1085445"
  1052. },
  1053. {
  1054. "Is Read": "No"
  1055. },
  1056. {
  1057. "Is Invitation": "No"
  1058. },
  1059. {
  1060. "GUID": "6EBCFA3A-AFC1-4466-A7DA-BBDF3C27FAB9"
  1061. },
  1062. {
  1063. "Message": "Free now?"
  1064. },
  1065. {
  1066. "Sender": "e:jeeitunes@gmail.com"
  1067. },
  1068. {
  1069. "Time": "05/13/19 03:04:11 AM (579434651)"
  1070. },
  1071. {
  1072. "Flags": "1085445"
  1073. },
  1074. {
  1075. "Is Read": "No"
  1076. },
  1077. {
  1078. "Is Invitation": "No"
  1079. },
  1080. {
  1081. "GUID": "8499461C-1811-4479-A492-6D91229ABB81"
  1082. },
  1083. {
  1084. "Message": "These trade conversations are now part of the backdrop of global markets for the next ... 10 to 20 years as these countries and economies work out their relative place in the world and how we reorder the overall global structure to account for the rise of China, to account for a multi-polar environment,\" he said."
  1085. },
  1086. {
  1087. "Sender": "e:jeeitunes@gmail.com"
  1088. },
  1089. {
  1090. "Time": "05/13/19 03:06:45 AM (579434805)"
  1091. },
  1092. {
  1093. "Flags": "1085445"
  1094. },
  1095. {
  1096. "Is Read": "No"
  1097. },
  1098. {
  1099. "Is Invitation": "No"
  1100. },
  1101. {
  1102. "GUID": "BB9E7FDO-FF65-4463-A9E7-C1C4C74BE462"
  1103. },
  1104. {
  1105. "Message": "Ill call you from a strange number. , just give me a time"
  1106. },
  1107. {
  1108. "Time": "05/13/19 03:17:30 AM (579435450)"
  1109. },
  1110. {
  1111. "Flags": "1060865"
  1112. },
  1113. {
  1114. "Is Read": "Yes"
  1115. },
  1116. {
  1117. "Is Invitation": "No"
  1118. },
  1119. {
  1120. "GUID": "0E943CB0-55BB-4413-88D2-9A226D7E10B0"
  1121. },
  1122. {
  1123. "Message": "We are going to break china"
  1124. },
  1125. {
  1126. "Sender": "e:jeeitunes@gmail.com"
  1127. },
  1128. {
  1129. "Time": "05/13/19 03:28:00 AM (579436080)"
  1130. },
  1131. {
  1132. "Flags": "1085445"
  1133. },
  1134. {
  1135. "Is Read": "No"
  1136. },
  1137. {
  1138. "Is Invitation": "No"
  1139. },
  1140. {
  1141. "GUID": "48095CF7-55BF-4985-B9A3-DD83231319F7"
  1142. },
  1143. {
  1144. "Message": "sounds like the WWF . . how will you know you are winning? Or have won / Interest rates down now . Better than a rate cut. - still waiting for my dollar. dude. The system is not a machine. Beware Old thinking. . now politics . Markets, cyber. Create Network effects,"
  1145. },
  1146. {
  1147. "Time": "05/13/19 03:31:11 AM (579436271)"
  1148. },
  1149. {
  1150. "Flags": "1060865"
  1151. },
  1152. {
  1153. "Is Read": "Yes"
  1154. },
  1155. {
  1156. "Is Invitation": "No"
  1157. },
  1158. {
  1159. "GUID": "AE2EC51E-632E-4619-ABFE-2EE1987AF1A4"
  1160. },
  1161. {
  1162. "Message": "When Xi and Wang Qishan are removed or step down-- break the radical cadre , install our guys, wreck havoc on all collaborators in the West"
  1163. },
  1164. {
  1165. "Time": "05/13/19 03:31:36 AM (579436296)"
  1166. },
  1167. {
  1168. "Flags": "1060865"
  1169. },
  1170. {
  1171. "Is Read": "Yes"
  1172. },
  1173. {
  1174. "Is Invitation": "No"
  1175. },
  1176. {
  1177. "GUID": "767E36DE-0C3D-46E5-AC8C-F066F01A5EF1"
  1178. },
  1179. {
  1180. "Message": "America the global Hegemon for 100 years"
  1181. },
  1182. {
  1183. "Sender": "e:jeeitunes@gmail.com"
  1184. },
  1185. {
  1186. "Time": "05/13/19 03:38:07 AM (579436687)"
  1187. },
  1188. {
  1189. "Flags": "1085445"
  1190. },
  1191. {
  1192. "Is Read": "No"
  1193. },
  1194. {
  1195. "Is Invitation": "No"
  1196. },
  1197. {
  1198. "GUID": "1BE46ECB-00BE-4B6B-928E-3476D49F9B43"
  1199. },
  1200. {
  1201. "Message": "Ok, so if I understand, you want to win by knock out or tko. Their system is brittle. You guys should decide if trade a huge slow moving sledge hammer is the best way"
  1202. },
  1203. {
  1204. "Sender": "e:jeeitunes@gmail.com"
  1205. },
  1206. {
  1207. "Time": "05/13/19 03:38:29 AM (579436709)"
  1208. },
  1209. {
  1210. "Flags": "1085445"
  1211. },
  1212. {
  1213. "Is Read": "No"
  1214. },
  1215. {
  1216. "Is Invitation": "No"
  1217. },
  1218. {
  1219. "GUID": "OAA46CB2-5CF1-4FEC-A8A8-0C94C9A817F5"
  1220. },
  1221. {
  1222. "Message": "When should i call . \\"
  1223. },
  1224. {
  1225. "Time": "05/13/19 03:41:19 AM (579436879)"
  1226. },
  1227. {
  1228. "Flags": "1126401"
  1229. },
  1230. {
  1231. "Is Read": "Yes"
  1232. },
  1233. {
  1234. "Is Invitation": "No"
  1235. },
  1236. {
  1237. "GUID": "052CD276-7266-4F20-98D5-B69DF841213B"
  1238. },
  1239. {
  1240. "Message": "Now is cool-- call on 310.990.6526"
  1241. },
  1242. {
  1243. "Sender": "e:jeeitunes@gmail.com"
  1244. },
  1245. {
  1246. "Time": "05/13/19 04:31:55 AM (579439915)"
  1247. },
  1248. {
  1249. "Flags": "1085445"
  1250. },
  1251. {
  1252. "Is Read": "No"
  1253. },
  1254. {
  1255. "Is Invitation": "No"
  1256. },
  1257. {
  1258. "GUID": "F68F6A4D-C7E0-4B48-BA83-898B2143CB11"
  1259. },
  1260. {
  1261. "Message": "Austria. No go . Too hot"
  1262. },
  1263. {
  1264. "Sender": "e:jeeitunes@gmail.com"
  1265. },
  1266. {
  1267. "Time": "05/13/19 04:32:50 AM (579439970)"
  1268. },
  1269. {
  1270. "Flags": "1085445"
  1271. },
  1272. {
  1273. "Is Read": "No"
  1274. },
  1275. {
  1276. "Is Invitation": "No"
  1277. },
  1278. {
  1279. "GUID": "FD24E05B-A085-4D69-98BD-9A3193F06C39"
  1280. },
  1281. {
  1282. "Message": "Did you tell Norwegians that the child murderer. Was a lefty radical?"
  1283. },
  1284. {
  1285. "Time": "05/13/19 04:47:07 AM (579440827)"
  1286. },
  1287. {
  1288. "Flags": "1060865"
  1289. },
  1290. {
  1291. "Is Read": "Yes"
  1292. },
  1293. {
  1294. "Is Invitation": "No"
  1295. },
  1296. {
  1297. "GUID": "A8554A99-FB75-4D87-BB93-4F4FD8C98195"
  1298. },
  1299. {
  1300. "Message": "Yes yes yes : went over well!!!"
  1301. },
  1302. {
  1303. "Time": "05/13/19 04:47:48 AM (579440868)"
  1304. },
  1305. {
  1306. "Flags": "1060865"
  1307. },
  1308. {
  1309. "Is Read": "Yes"
  1310. },
  1311. {
  1312. "Is Invitation": "No"
  1313. },
  1314. {
  1315. "GUID": "397B3B3C-2CBF-4125-8D82-7C051BE1585C"
  1316. },
  1317. {
  1318. "Message": "Eco-Fascist"
  1319. },
  1320. {
  1321. "Sender": "e:jeeitunes@gmail.com"
  1322. },
  1323. {
  1324. "Time": "05/13/19 04:47:57 AM (579440877)"
  1325. },
  1326. {
  1327. "Flags": "1085445"
  1328. },
  1329. {
  1330. "Is Read": "No"
  1331. },
  1332. {
  1333. "Is Invitation": "No"
  1334. },
  1335. {
  1336. "GUID": "2E4F4CB6-81BD-4A43-89E5-DD28D97A8DEO"
  1337. },
  1338. {
  1339. "Message": "Though he gave a nazi salute"
  1340. },
  1341. {
  1342. "Sender": "e:jeeitunes@gmail.com"
  1343. },
  1344. {
  1345. "Time": "05/13/19 04:48:55 AM (579440935)"
  1346. },
  1347. {
  1348. "Flags": "1085445"
  1349. },
  1350. {
  1351. "Is Read": "No"
  1352. },
  1353. {
  1354. "Is Invitation": "No"
  1355. },
  1356. {
  1357. "GUID": "67269689-77F2-41C2-80BE-70BAODD5E4FE"
  1358. },
  1359. {
  1360. "Message": "As well as saying the difference between jews and pizza , is that the pizza doesn't scream when you throw it in the oven"
  1361. },
  1362. {
  1363. "Sender": "e:jeeitunes@gmail.com"
  1364. },
  1365. {
  1366. "Time": "05/13/19 05:39:58 AM (579443998)"
  1367. },
  1368. {
  1369. "Flags": "1150981"
  1370. },
  1371. {
  1372. "Is Read": "No"
  1373. },
  1374. {
  1375. "Is Invitation": "No"
  1376. },
  1377. {
  1378. "GUID": "9B73413B-761B-4864-8440-13DF8F0B25B6"
  1379. },
  1380. {
  1381. "Message": "https://www.nytimes.com/2019/05/07/world/europe/austria-far-right-freedom- party.html"
  1382. },
  1383. {
  1384. "Sender": "e:jeeitunes@gmail.com"
  1385. },
  1386. {
  1387. "Time": "05/13/19 05:39:58 AM (579443998)"
  1388. },
  1389. {
  1390. "Flags": "1085445"
  1391. },
  1392. {
  1393. "Is Read": "No"
  1394. },
  1395. {
  1396. "Is Invitation": "No"
  1397. },
  1398. {
  1399. "GUID": "C876C203-D3B7-405F-98E5-361FD45C6AF1"
  1400. },
  1401. {
  1402. "Message": "whoopsie"
  1403. },
  1404. {
  1405. "Time": "05/13/19 05:46:41 AM (579444401)"
  1406. },
  1407. {
  1408. "Flags": "1060865"
  1409. },
  1410. {
  1411. "Is Read": "Yes"
  1412. },
  1413. {
  1414. "Is Invitation": "No"
  1415. },
  1416. {
  1417. "GUID": "09CE1E98-5A05-417B-9B1A-6AF071C35112"
  1418. },
  1419. {
  1420. "Message": "Yes he is NOT a role model"
  1421. },
  1422. {
  1423. "Sender": "e:jeeitunes@gmail.com"
  1424. },
  1425. {
  1426. "Time": "05/13/19 05:47:09 AM (579444429)"
  1427. },
  1428. {
  1429. "Flags": "1150981"
  1430. },
  1431. {
  1432. "Is Read": "No"
  1433. },
  1434. {
  1435. "Is Invitation": "No"
  1436. },
  1437. {
  1438. "GUID": "66ECF2C5-7689-438F-A572-C740933A5578"
  1439. },
  1440. {
  1441. "Message": "https://www.washingtonpost.com/world/middle east/two-saudi-oil-tankers- attacked-in-the-persian-gulf-amid-rising-iran-tensions/2019/05/13/c8907108-755e-11e9- bd25-c989555e7766 story.html?noredirect=on&utm term=.2fbcab4b5787"
  1442. },
  1443. {
  1444. "Sender": "e:jeeitunes@gmail.com"
  1445. },
  1446. {
  1447. "Time": "05/13/19 05:47:24 AM (579444444)"
  1448. },
  1449. {
  1450. "Flags": "1085445"
  1451. },
  1452. {
  1453. "Is Read": "No"
  1454. },
  1455. {
  1456. "Is Invitation": "No"
  1457. },
  1458. {
  1459. "GUID": "AE14B40C-859A-4445-A827-DEC6B3721BAD"
  1460. },
  1461. {
  1462. "Sender": "e:jeeitunes@gmail.com"
  1463. },
  1464. {
  1465. "Time": "05/13/19 06:29:19 AM (579446959)"
  1466. },
  1467. {
  1468. "Flags": "1150981"
  1469. },
  1470. {
  1471. "Is Read": "No"
  1472. },
  1473. {
  1474. "Is Invitation": "No"
  1475. },
  1476. {
  1477. "GUID": "89E4ACB2-837A-44C7-BC95-CC46FD6AB8D0"
  1478. },
  1479. {
  1480. "Message": "https://thehill.com/policy/defense/443345-pompeo-skips-planned-trip-to-moscow"
  1481. },
  1482. {
  1483. "Sender": "e:jeeitunes@gmail.com"
  1484. },
  1485. {
  1486. "Time": "05/13/19 07:01:31 AM (579448891)"
  1487. },
  1488. {
  1489. "Flags": "1085445"
  1490. },
  1491. {
  1492. "Is Read": "No"
  1493. },
  1494. {
  1495. "Is Invitation": "No"
  1496. },
  1497. {
  1498. "GUID": "0E61A72E-9D11-48B7-AAC8-FE02578AEOE3"
  1499. },
  1500. {
  1501. "Message": "bannon squirrel"
  1502. },
  1503. {
  1504. "Sender": "e:jeeitunes@gmail.com"
  1505. },
  1506. {
  1507. "Time": "05/13/19 08:44:35 AM (579455075)"
  1508. },
  1509. {
  1510. "Flags": "1085445"
  1511. },
  1512. {
  1513. "Is Read": "No"
  1514. },
  1515. {
  1516. "Is Invitation": "No"
  1517. },
  1518. {
  1519. "GUID": "4FB7F213-1857-43D7-9730-B3A0EEA336BE"
  1520. },
  1521. {
  1522. "Message": "If someone can send the last filming ?"
  1523. },
  1524. {
  1525. "Sender": "e:jeeitunes@gmail.com"
  1526. },
  1527. {
  1528. "Time": "05/13/19 09:28:15 AM (579457695)"
  1529. },
  1530. {
  1531. "Flags": "1150981"
  1532. },
  1533. {
  1534. "Is Read": "No"
  1535. },
  1536. {
  1537. "Is Invitation": "No"
  1538. },
  1539. {
  1540. "GUID": "3074497A-9873-4B97-BAB3-7C7690E751B5"
  1541. },
  1542. {
  1543. "Message": "https://www.nytimes.com/interactive/2019/05/13/us/politics/trump- investigations.html?action=click&module=Latest&pgtype=Homepage"
  1544. },
  1545. {
  1546. "Sender": "e:jeeitunes@gmail.com"
  1547. },
  1548. {
  1549. "Time": "05/14/19 03:56:59 AM (579524219)"
  1550. },
  1551. {
  1552. "Flags": "1150981"
  1553. },
  1554. {
  1555. "Is Read": "No"
  1556. },
  1557. {
  1558. "Is Invitation": "No"
  1559. },
  1560. {
  1561. "GUID": "12F56A47-ABFA-4B14-9342-671F1D896B16"
  1562. },
  1563. {
  1564. "Message": "It singled out an interview that Larry Kudlow, Trump's top economics adviser, gave to \"Fox News Sunday\" in which he said that US consumers would also suffer from the trade war, contradicting Trump's claim that China would singlehandedly foot the bill."
  1565. },
  1566. {
  1567. "Sender": "e:jeeitunes@gmail.com"
  1568. },
  1569. {
  1570. "Time": "05/14/19 04:15:42 AM (579525342)"
  1571. },
  1572. {
  1573. "Flags": "1150981"
  1574. },
  1575. {
  1576. "Is Read": "No"
  1577. },
  1578. {
  1579. "Is Invitation": "No"
  1580. },
  1581. {
  1582. "GUID": "9D68D5AB-8099-488F-B125-02E31F9367E8"
  1583. },
  1584. {
  1585. "Message": "https://www.politico.com/story/2019/05/14/barr-prosecutor-russia-probe- origins-1319878"
  1586. },
  1587. {
  1588. "Sender": "e:jeeitunes@gmail.com"
  1589. },
  1590. {
  1591. "Time": "05/14/19 04:15:51 AM (579525351)"
  1592. },
  1593. {
  1594. "Flags": "1085445"
  1595. },
  1596. {
  1597. "Is Read": "No"
  1598. },
  1599. {
  1600. "Is Invitation": "No"
  1601. },
  1602. {
  1603. "GUID": "41B58D60-26F9-4F38-A4C4-065E7A950DA6"
  1604. },
  1605. {
  1606. "Message": "Sidney blumental will get subpoena"
  1607. },
  1608. {
  1609. "Time": "05/14/19 04:29:43 AM (579526183)"
  1610. },
  1611. {
  1612. "Flags": "1126401"
  1613. },
  1614. {
  1615. "Is Read": "Yes"
  1616. },
  1617. {
  1618. "Is Invitation": "No"
  1619. },
  1620. {
  1621. "GUID": "ED4EA028-A6E0-464E-BD88-EC93852A2378"
  1622. },
  1623. {
  1624. "Message": "https://news.yahoo.com/steve-bannon-cheering-trade-war-hopes-for-government- to-fall-in-china-090000259.html"
  1625. },
  1626. {
  1627. "Sender": "e:jeeitunes@gmail.com"
  1628. },
  1629. {
  1630. "Time": "05/15/19 03:02:51 AM (579607371)"
  1631. },
  1632. {
  1633. "Flags": "1085445"
  1634. },
  1635. {
  1636. "Is Read": "No"
  1637. },
  1638. {
  1639. "Is Invitation": "No"
  1640. },
  1641. {
  1642. "GUID": "BCOCEBCB-04D3-4DFB-9658-CEAD53020151"
  1643. },
  1644. {
  1645. "Message": "When are you bak?"
  1646. },
  1647. {
  1648. "Time": "05/15/19 03:06:47 AM (579607607)"
  1649. },
  1650. {
  1651. "Flags": "1060865"
  1652. },
  1653. {
  1654. "Is Read": "Yes"
  1655. },
  1656. {
  1657. "Is Invitation": "No"
  1658. },
  1659. {
  1660. "GUID": "22BCA6B5-3611-4D7B-B2E3-CA51E86AA143"
  1661. },
  1662. {
  1663. "Message": "Late May/June???"
  1664. },
  1665. {
  1666. "Sender": "e:jeeitunes@gmail.com"
  1667. },
  1668. {
  1669. "Time": "05/15/19 03:28:28 AM (579608908)"
  1670. },
  1671. {
  1672. "Flags": "1085445"
  1673. },
  1674. {
  1675. "Is Read": "No"
  1676. },
  1677. {
  1678. "Is Invitation": "No"
  1679. },
  1680. {
  1681. "GUID": "AD3A24AE-9961-4F47-A4DF-30C713FlEE28"
  1682. },
  1683. {
  1684. "Message": "No worry , I m on the ranch 27th. Barrs appt of prosecutor HUGE. wild , Saudi hosting next years g 20 . More opportunity Iran"
  1685. },
  1686. {
  1687. "Sender": "e:jeeitunes@gmail.com"
  1688. },
  1689. {
  1690. "Time": "05/15/19 03:37:12 AM (579609432)"
  1691. },
  1692. {
  1693. "Flags": "1150981"
  1694. },
  1695. {
  1696. "Is Read": "No"
  1697. },
  1698. {
  1699. "Is Invitation": "No"
  1700. },
  1701. {
  1702. "GUID": "8AEB0353-D97F-4D9D-AAE7-DF86DF464EE6"
  1703. },
  1704. {
  1705. "Message": "https://www.nytimes.com/2019/05/15/us/politics/us-irag-embassy-evacuation.html"
  1706. },
  1707. {
  1708. "Sender": "e:jeeitunes@gmail.com"
  1709. },
  1710. {
  1711. "Time": "05/15/19 06:12:25 AM (579618745)"
  1712. },
  1713. {
  1714. "Flags": "1085445"
  1715. },
  1716. {
  1717. "Is Read": "No"
  1718. },
  1719. {
  1720. "Is Invitation": "No"
  1721. },
  1722. {
  1723. "GUID": "E3198EC2-E58C-40D9-83F5-9485A3F2F3A2"
  1724. },
  1725. {
  1726. "Message": "Cnbc interview. With tom Friedman on the verge of yelling hallehjuyah amen"
  1727. },
  1728. {
  1729. "Sender": "e:jeeitunes@gmail.com"
  1730. },
  1731. {
  1732. "Time": "05/15/19 06:12:31 AM (579618751)"
  1733. },
  1734. {
  1735. "Flags": "1085445"
  1736. },
  1737. {
  1738. "Is Read": "No"
  1739. },
  1740. {
  1741. "Is Invitation": "No"
  1742. },
  1743. {
  1744. "GUID": "AE4DDA33-8E63-40BB-A208-8B68D4B53DCO"
  1745. },
  1746. {
  1747. "Message": "great"
  1748. },
  1749. {
  1750. "Sender": "e:jeeitunes@gmail.com"
  1751. },
  1752. {
  1753. "Time": "05/15/19 11:31:20 AM (579637880)"
  1754. },
  1755. {
  1756. "Flags": "1085445"
  1757. },
  1758. {
  1759. "Is Read": "No"
  1760. },
  1761. {
  1762. "Is Invitation": "No"
  1763. },
  1764. {
  1765. "GUID": "2F50D35F-002C-43B9-AEA5-1B3AC246DAFB"
  1766. },
  1767. {
  1768. "Message": "If someone thinks their own race and civilization is superior and insists on remolding or replacing other civilizations, it would be a stupid idea and disastrous act,\" Xi said. I think he was talking directly to you 0"
  1769. },
  1770. {
  1771. "Time": "05/15/19 02:04:14 PM (579647054)"
  1772. },
  1773. {
  1774. "Flags": "1060865"
  1775. },
  1776. {
  1777. "Is Read": "Yes"
  1778. },
  1779. {
  1780. "Is Invitation": "No"
  1781. },
  1782. {
  1783. "GUID": "69EE5124-FAF0-4443-80B0-08C9D026E2C0"
  1784. },
  1785. {
  1786. "Message": "I'm just the last cab driver he talked with"
  1787. },
  1788. {
  1789. "Time": "05/15/19 02:05:12 PM (579647112)"
  1790. },
  1791. {
  1792. "Flags": "1060865"
  1793. },
  1794. {
  1795. "Is Read": "Yes"
  1796. },
  1797. {
  1798. "Is Invitation": "No"
  1799. },
  1800. {
  1801. "GUID": "344D6E31-228A-43AD-AAB8-FBADF2B899FD"
  1802. },
  1803. {
  1804. "Message": "Global Times just took their main editorial right @ me between the eyes"
  1805. },
  1806. {
  1807. "Sender": "e:jeeitunes@gmail.com"
  1808. },
  1809. {
  1810. "Time": "05/15/19 02:09:55 PM (579647395)"
  1811. },
  1812. {
  1813. "Flags": "1085445"
  1814. },
  1815. {
  1816. "Is Read": "No"
  1817. },
  1818. {
  1819. "Is Invitation": "No"
  1820. },
  1821. {
  1822. "GUID": "564D0B14-5FC6-46E2-BEDB-A7FBA558DA8D"
  1823. },
  1824. {
  1825. "Message": "saw it. trump prohibition on huawei better."
  1826. },
  1827. {
  1828. "Sender": "e:jeeitunes@gmail.com"
  1829. },
  1830. {
  1831. "Time": "05/15/19 02:10:38 PM (579647438)"
  1832. },
  1833. {
  1834. "Flags": "1085445"
  1835. },
  1836. {
  1837. "Is Read": "No"
  1838. },
  1839. {
  1840. "Is Invitation": "No"
  1841. },
  1842. {
  1843. "GUID": "56A1354D-F1F5-4D77-BC2A-02D45ACA213F"
  1844. },
  1845. {
  1846. "Message": "i did notice your comment about one belt one road giving them the nod to walk away 0"
  1847. },
  1848. {
  1849. "Time": "05/15/19 02:11:34 PM (579647494)"
  1850. },
  1851. {
  1852. "Flags": "1060865"
  1853. },
  1854. {
  1855. "Is Read": "Yes"
  1856. },
  1857. {
  1858. "Is Invitation": "No"
  1859. },
  1860. {
  1861. "GUID": "2B106AF8-835D-4EAF-839B-CDD5E393B8AB"
  1862. },
  1863. {
  1864. "Message": "Trump about to announce jareds immigration plan on day he has china on the run"
  1865. },
  1866. {
  1867. "Sender": "e:jeeitunes@gmail.com"
  1868. },
  1869. {
  1870. "Time": "05/15/19 02:14:18 PM (579647658)"
  1871. },
  1872. {
  1873. "Flags": "1085445"
  1874. },
  1875. {
  1876. "Is Read": "No"
  1877. },
  1878. {
  1879. "Is Invitation": "No"
  1880. },
  1881. {
  1882. "GUID": "COA582B2-F4CD-478C-9D5E-EAEED000875D"
  1883. },
  1884. {
  1885. "Message": "let up on mexico and china. typical. - qatar worried re iran. . yemen at the heart of the trouble."
  1886. },
  1887. {
  1888. "Sender": "e:jeeitunes@gmail.com"
  1889. },
  1890. {
  1891. "Time": "05/15/19 02:17:11 PM (579647831)"
  1892. },
  1893. {
  1894. "Flags": "1085445"
  1895. },
  1896. {
  1897. "Is Read": "No"
  1898. },
  1899. {
  1900. "Is Invitation": "No"
  1901. },
  1902. {
  1903. "GUID": "E247B5BB-7BAD-46FE-B11D-E609F95005DD"
  1904. },
  1905. {
  1906. "Message": "libya in hiding with haftar . - canada not china"
  1907. },
  1908. {
  1909. "Time": "05/15/19 02:17:17 PM (579647837)"
  1910. },
  1911. {
  1912. "Flags": "1060865"
  1913. },
  1914. {
  1915. "Is Read": "Yes"
  1916. },
  1917. {
  1918. "Is Invitation": "No"
  1919. },
  1920. {
  1921. "GUID": "1C440C1D-816F-4F1A-BCF6-E57C2BBBD1F7"
  1922. },
  1923. {
  1924. "Message": "Qatar worried that their sponsor about to Implode"
  1925. },
  1926. {
  1927. "Sender": "e:jeeitunes@gmail.com"
  1928. },
  1929. {
  1930. "Time": "05/15/19 02:17:36 PM (579647856)"
  1931. },
  1932. {
  1933. "Flags": "1085445"
  1934. },
  1935. {
  1936. "Is Read": "No"
  1937. },
  1938. {
  1939. "Is Invitation": "No"
  1940. },
  1941. {
  1942. "GUID": "AF170AA0-9767-4ADC-B89B-5C387AE6CDF9"
  1943. },
  1944. {
  1945. "Message": "not sponsor. partner"
  1946. },
  1947. {
  1948. "Sender": "e:jeeitunes@gmail.com"
  1949. },
  1950. {
  1951. "Time": "05/15/19 02:17:51 PM (579647871)"
  1952. },
  1953. {
  1954. "Flags": "1085445"
  1955. },
  1956. {
  1957. "Is Read": "No"
  1958. },
  1959. {
  1960. "Is Invitation": "No"
  1961. },
  1962. {
  1963. "GUID": "C95A5E3F-8B32-4ED4-B90E-8AA5235E4B5A"
  1964. },
  1965. {
  1966. "Message": "oman wants to mediate"
  1967. },
  1968. {
  1969. "Sender": "e:jeeitunes@gmail.com"
  1970. },
  1971. {
  1972. "Time": "05/15/19 02:18:46 PM (579647926)"
  1973. },
  1974. {
  1975. "Flags": "1085445"
  1976. },
  1977. {
  1978. "Is Read": "No"
  1979. },
  1980. {
  1981. "Is Invitation": "No"
  1982. },
  1983. {
  1984. "GUID": "FO8DFD32-F2D5-4F3E-AE45-814ED972A021"
  1985. },
  1986. {
  1987. "Message": "houthi sponsor is iran. I love the idea that the g20 next year , hosted by MBS ."
  1988. },
  1989. {
  1990. "Sender": "e:jeeitunes@gmail.com"
  1991. },
  1992. {
  1993. "Time": "05/15/19 02:19:31 PM (579647971)"
  1994. },
  1995. {
  1996. "Flags": "1085445"
  1997. },
  1998. {
  1999. "Is Read": "No"
  2000. },
  2001. {
  2002. "Is Invitation": "No"
  2003. },
  2004. {
  2005. "GUID": "D9915182-D585-4CBO-A4A0-12F668499E21"
  2006. },
  2007. {
  2008. "Message": "i wonder if the center pieces will be the \" heads \" of corporations :)"
  2009. },
  2010. {
  2011. "Sender": "e:jeeitunes@gmail.com"
  2012. },
  2013. {
  2014. "Time": "05/15/19 02:20:09 PM (579648009)"
  2015. },
  2016. {
  2017. "Flags": "1085445"
  2018. },
  2019. {
  2020. "Is Read": "No"
  2021. },
  2022. {
  2023. "Is Invitation": "No"
  2024. },
  2025. {
  2026. "GUID": "F299F01C-73BE-488C-A5AC-BBAEA9859554"
  2027. },
  2028. {
  2029. "Message": "would give new meaning to want to be at the head table"
  2030. },
  2031. {
  2032. "Sender": "e:jeeitunes@gmail.com"
  2033. },
  2034. {
  2035. "Time": "05/15/19 02:22:42 PM (579648162)"
  2036. },
  2037. {
  2038. "Flags": "1085445"
  2039. },
  2040. {
  2041. "Is Read": "No"
  2042. },
  2043. {
  2044. "Is Invitation": "No"
  2045. },
  2046. {
  2047. "GUID": "AEE2A05A-DDDB-44B1-8A5F-9F326938783E"
  2048. },
  2049. {
  2050. "Message": "BTW currency markets super stable. sign china move right thing"
  2051. },
  2052. {
  2053. "Sender": "e:jeeitunes@gmail.com"
  2054. },
  2055. {
  2056. "Time": "05/15/19 02:41:17 PM (579649277)"
  2057. },
  2058. {
  2059. "Flags": "1085445"
  2060. },
  2061. {
  2062. "Is Read": "No"
  2063. },
  2064. {
  2065. "Is Invitation": "No"
  2066. },
  2067. {
  2068. "GUID": "B5DCBB27-128E-4DOE-A5D8-9EC834E6139F"
  2069. },
  2070. {
  2071. "Message": "looks like we share the same photo editor"
  2072. },
  2073. {
  2074. "Time": "05/15/19 04:25:09 PM (579655509)"
  2075. },
  2076. {
  2077. "Flags": "1060865"
  2078. },
  2079. {
  2080. "Is Read": "Yes"
  2081. },
  2082. {
  2083. "Is Invitation": "No"
  2084. },
  2085. {
  2086. "GUID": "ED14F0D9-C34A-4ED9-BF60-08E0B45FA23B"
  2087. },
  2088. {
  2089. "Message": "That's scary--- trump just needs to gut this out"
  2090. },
  2091. {
  2092. "Sender": "e:jeeitunes@gmail.com"
  2093. },
  2094. {
  2095. "Time": "05/15/19 04:30:14 PM (579655814)"
  2096. },
  2097. {
  2098. "Flags": "1085445"
  2099. },
  2100. {
  2101. "Is Read": "No"
  2102. },
  2103. {
  2104. "Is Invitation": "No"
  2105. },
  2106. {
  2107. "GUID": "027486D0-17B9-4B3B-BB5C-B99B884A86F0"
  2108. },
  2109. {
  2110. "Message": "Removing Iraq diplomats. Great move. Would dems prefer. Benghazi 2.0"
  2111. },
  2112. {
  2113. "Sender": "e:jeeitunes@gmail.com"
  2114. },
  2115. {
  2116. "Time": "05/15/19 04:31:29 PM (579655889)"
  2117. },
  2118. {
  2119. "Flags": "1085445"
  2120. },
  2121. {
  2122. "Is Read": "No"
  2123. },
  2124. {
  2125. "Is Invitation": "No"
  2126. },
  2127. {
  2128. "GUID": "788E29DC-D480-497E-9AC9-E33CB1AF6810"
  2129. },
  2130. {
  2131. "Message": "Someone on pompeo team should sit with mr evil."
  2132. },
  2133. {
  2134. "Sender": "e:jeeitunes@gmail.com"
  2135. },
  2136. {
  2137. "Time": "05/15/19 04:32:36 PM (579655956)"
  2138. },
  2139. {
  2140. "Flags": "1085445"
  2141. },
  2142. {
  2143. "Is Read": "No"
  2144. },
  2145. {
  2146. "Is Invitation": "No"
  2147. },
  2148. {
  2149. "GUID": "883F8CEC-7415-4C92-AEB3-A53097DAADEE"
  2150. },
  2151. {
  2152. "Message": "They will do a 180 on their sponsor in a heartbeat"
  2153. },
  2154. {
  2155. "Sender": "e:jeeitunes@gmail.com"
  2156. },
  2157. {
  2158. "Time": "05/16/19 02:52:05 AM (579693125)"
  2159. },
  2160. {
  2161. "Flags": "1150981"
  2162. },
  2163. {
  2164. "Is Read": "No"
  2165. },
  2166. {
  2167. "Is Invitation": "No"
  2168. },
  2169. {
  2170. "GUID": "5204EC9F-EB1D-4A51-9697-45B701F514BD"
  2171. },
  2172. {
  2173. "Message": "https://www.foxnews.com/politics/pennsylvania-poll-biden-tops-trump-by-double- digits"
  2174. },
  2175. {
  2176. "Sender": "e:jeeitunes@gmail.com"
  2177. },
  2178. {
  2179. "Time": "05/16/19 02:52:28 AM (579693148)"
  2180. },
  2181. {
  2182. "Flags": "1085445"
  2183. },
  2184. {
  2185. "Is Read": "No"
  2186. },
  2187. {
  2188. "Is Invitation": "No"
  2189. },
  2190. {
  2191. "GUID": "3B7BD4A1-23B8-465E-A453-FAC410BB5B8D"
  2192. },
  2193. {
  2194. "Message": "Just when you thought you were out of the game. . how can they not pull you back in="
  2195. },
  2196. {
  2197. "Time": "05/16/19 03:02:22 AM (579693742)"
  2198. },
  2199. {
  2200. "Flags": "1060865"
  2201. },
  2202. {
  2203. "Is Read": "Yes"
  2204. },
  2205. {
  2206. "Is Invitation": "No"
  2207. },
  2208. {
  2209. "GUID": "5AE5D580-928E-484C-9D73-B3DD89BB20C3"
  2210. },
  2211. {
  2212. "Message": "It's in chaos and full meltdown now the internal polling shows worse-- double digits in Pa; Michigan; Wisconsin plus losing AZ and Texas --- 375 electoral college defeat"
  2213. },
  2214. {
  2215. "Sender": "e:jeeitunes@gmail.com"
  2216. },
  2217. {
  2218. "Time": "05/16/19 03:03:25 AM (579693805)"
  2219. },
  2220. {
  2221. "Flags": "1085445"
  2222. },
  2223. {
  2224. "Is Read": "No"
  2225. },
  2226. {
  2227. "Is Invitation": "No"
  2228. },
  2229. {
  2230. "GUID": "2BA44CBE-D65B-48A9-9C9E-FD958F603B3A"
  2231. },
  2232. {
  2233. "Message": "And then Attica"
  2234. },
  2235. {
  2236. "Sender": "e:jeeitunes@gmail.com"
  2237. },
  2238. {
  2239. "Time": "05/16/19 03:14:06 AM (579694446)"
  2240. },
  2241. {
  2242. "Flags": "1085445"
  2243. },
  2244. {
  2245. "Is Read": "No"
  2246. },
  2247. {
  2248. "Is Invitation": "No"
  2249. },
  2250. {
  2251. "GUID": "1A657C1E-1CO3-4B2A-A798-7FB730C7F47F"
  2252. },
  2253. {
  2254. "Message": "That Alabama abortion bill will not bring lots of women to your side"
  2255. },
  2256. {
  2257. "Sender": "e:jeeitunes@gmail.com"
  2258. },
  2259. {
  2260. "Time": "05/16/19 03:14:58 AM (579694498)"
  2261. },
  2262. {
  2263. "Flags": "1085445"
  2264. },
  2265. {
  2266. "Is Read": "No"
  2267. },
  2268. {
  2269. "Is Invitation": "No"
  2270. },
  2271. {
  2272. "GUID": "9A6F67B6-F02E-4718-AF46-CD7FF792CB5E"
  2273. },
  2274. {
  2275. "Message": "Though not my skill set."
  2276. },
  2277. {
  2278. "Sender": "e:jeeitunes@gmail.com"
  2279. },
  2280. {
  2281. "Time": "05/16/19 04:24:37 AM (579698677)"
  2282. },
  2283. {
  2284. "Flags": "1085445"
  2285. },
  2286. {
  2287. "Is Read": "No"
  2288. },
  2289. {
  2290. "Is Invitation": "No"
  2291. },
  2292. {
  2293. "GUID": "386F64E1-1134-4C16-BB04-99274F257A71"
  2294. },
  2295. {
  2296. "Message": "Deblasio. Presidential bid to be announced."
  2297. },
  2298. {
  2299. "Sender": "e:jeeitunes@gmail.com"
  2300. },
  2301. {
  2302. "Time": "05/16/19 04:24:49 AM (579698689)"
  2303. },
  2304. {
  2305. "Flags": "1085445"
  2306. },
  2307. {
  2308. "Is Read": "No"
  2309. },
  2310. {
  2311. "Is Invitation": "No"
  2312. },
  2313. {
  2314. "GUID": "5F9D9B5D-A723-46B1-8AF3-4FD5AA276673"
  2315. },
  2316. {
  2317. "Message": "Isn't it nice having know this months ago"
  2318. },
  2319. {
  2320. "Sender": "e:jeeitunes@gmail.com"
  2321. },
  2322. {
  2323. "Time": "05/16/19 06:21:50 AM (579705710)"
  2324. },
  2325. {
  2326. "Flags": "1085445"
  2327. },
  2328. {
  2329. "Is Read": "No"
  2330. },
  2331. {
  2332. "Is Invitation": "No"
  2333. },
  2334. {
  2335. "GUID": "C4E0356A-B8F8-4264-9DEA-564C8BC13F65"
  2336. },
  2337. {
  2338. "Message": "Your girl is Paris"
  2339. },
  2340. {
  2341. "Time": "05/16/19 08:37:54 AM (579713874)"
  2342. },
  2343. {
  2344. "Flags": "1060865"
  2345. },
  2346. {
  2347. "Is Read": "Yes"
  2348. },
  2349. {
  2350. "Is Invitation": "No"
  2351. },
  2352. {
  2353. "GUID": "90CE5539-9E2B-4626-A5D5-F6EFF6ODC77A"
  2354. },
  2355. {
  2356. "Message": "What!"
  2357. },
  2358. {
  2359. "Sender": "e:jeeitunes@gmail.com"
  2360. },
  2361. {
  2362. "Time": "05/16/19 08:45:34 AM (579714334)"
  2363. },
  2364. {
  2365. "Flags": "1085445"
  2366. },
  2367. {
  2368. "Is Read": "No"
  2369. },
  2370. {
  2371. "Is Invitation": "No"
  2372. },
  2373. {
  2374. "GUID": "8D823791-FD66-4B9D-B660-C6DOE1F962BD"
  2375. },
  2376. {
  2377. "Message": "are you there - ?"
  2378. },
  2379. {
  2380. "Time": "05/16/19 11:25:07 AM (579723907)"
  2381. },
  2382. {
  2383. "Flags": "1060865"
  2384. },
  2385. {
  2386. "Is Read": "Yes"
  2387. },
  2388. {
  2389. "Is Invitation": "No"
  2390. },
  2391. {
  2392. "GUID": "0091F3F8-3756-4A1F-8160-B8217DFD9EA5"
  2393. },
  2394. {
  2395. "Message": "Yes : been with Front Nationale all day-- about to deliver a death blow to Macron"
  2396. },
  2397. {
  2398. "Sender": "e:jeeitunes@gmail.com"
  2399. },
  2400. {
  2401. "Time": "05/16/19 11:42:02 AM (579724922)"
  2402. },
  2403. {
  2404. "Flags": "1085445"
  2405. },
  2406. {
  2407. "Is Read": "No"
  2408. },
  2409. {
  2410. "Is Invitation": "No"
  2411. },
  2412. {
  2413. "GUID": "3113A7FA-45F9-4DDD-B276-D3ECE9F6A7F5"
  2414. },
  2415. {
  2416. "Message": "Are you in Paris?"
  2417. },
  2418. {
  2419. "Time": "05/16/19 01:13:58 PM (579730438)"
  2420. },
  2421. {
  2422. "Flags": "1060865"
  2423. },
  2424. {
  2425. "Is Read": "Yes"
  2426. },
  2427. {
  2428. "Is Invitation": "No"
  2429. },
  2430. {
  2431. "GUID": "470E5EED-7F3A-4427-A4A6-FD457FCECE2D"
  2432. },
  2433. {
  2434. "Message": "Yes"
  2435. },
  2436. {
  2437. "Sender": "e:jeeitunes@gmail.com"
  2438. },
  2439. {
  2440. "Time": "05/16/19 01:35:28 PM (579731728)"
  2441. },
  2442. {
  2443. "Flags": "1085445"
  2444. },
  2445. {
  2446. "Is Read": "No"
  2447. },
  2448. {
  2449. "Is Invitation": "No"
  2450. },
  2451. {
  2452. "GUID": "1530D532-38FB-4F5F-B3E8-9362D797BBD9"
  2453. },
  2454. {
  2455. "Message": "trumps financials are a lol. no liabilities need to be disclose if they are in the biz or payable to a family member. . there's the scam . funny"
  2456. },
  2457. {
  2458. "Sender": "e:jeeitunes@gmail.com"
  2459. },
  2460. {
  2461. "Time": "05/16/19 01:48:09 PM (579732489)"
  2462. },
  2463. {
  2464. "Flags": "1085445"
  2465. },
  2466. {
  2467. "Is Read": "No"
  2468. },
  2469. {
  2470. "Is Invitation": "No"
  2471. },
  2472. {
  2473. "GUID": "5E350A54-1F18-4ADA-A273-74C409088B51"
  2474. },
  2475. {
  2476. "Message": "do you have for a coffee or meal with our girl . ?"
  2477. },
  2478. {
  2479. "Time": "05/16/19 02:06:14 PM (579733574)"
  2480. },
  2481. {
  2482. "Flags": "1060865"
  2483. },
  2484. {
  2485. "Is Read": "Yes"
  2486. },
  2487. {
  2488. "Is Invitation": "No"
  2489. },
  2490. {
  2491. "GUID": "767C657A-3D79-4220-B60E-DEE77F3D3659"
  2492. },
  2493. {
  2494. "Message": "Would love to either -- she is in town"
  2495. },
  2496. {
  2497. "Sender": "e:jeeitunes@gmail.com"
  2498. },
  2499. {
  2500. "Time": "05/16/19 02:07:11 PM (579733631)"
  2501. },
  2502. {
  2503. "Flags": "1085445"
  2504. },
  2505. {
  2506. "Is Read": "No"
  2507. },
  2508. {
  2509. "Is Invitation": "No"
  2510. },
  2511. {
  2512. "GUID": "CO1C417D-3F29-4805-893C-64986E853612"
  2513. },
  2514. {
  2515. "Message": "yes she's agreed"
  2516. },
  2517. {
  2518. "Sender": "e:jeeitunes@gmail.com"
  2519. },
  2520. {
  2521. "Time": "05/16/19 02:07:30 PM (579733650)"
  2522. },
  2523. {
  2524. "Flags": "1085445"
  2525. },
  2526. {
  2527. "Is Read": "No"
  2528. },
  2529. {
  2530. "Is Invitation": "No"
  2531. },
  2532. {
  2533. "GUID": "575DE98C-7962-46D1-A538-40931D456790"
  2534. },
  2535. {
  2536. "Message": "not only do i do f and b , but now a matchmaker"
  2537. },
  2538. {
  2539. "Sender": "e:jeeitunes@gmail.com"
  2540. },
  2541. {
  2542. "Time": "05/16/19 02:20:32 PM (579734432)"
  2543. },
  2544. {
  2545. "Flags": "1085445"
  2546. },
  2547. {
  2548. "Is Read": "No"
  2549. },
  2550. {
  2551. "Is Invitation": "No"
  2552. },
  2553. {
  2554. "GUID": "1A15CD09-197F-42F7-B693-13851FDEAD42"
  2555. },
  2556. {
  2557. "Message": "Its like Bogart and Hepburn on the African queen"
  2558. },
  2559. {
  2560. "Sender": "e:jeeitunes@gmail.com"
  2561. },
  2562. {
  2563. "Time": "05/16/19 02:21:09 PM (579734469)"
  2564. },
  2565. {
  2566. "Flags": "1150981"
  2567. },
  2568. {
  2569. "Is Read": "No"
  2570. },
  2571. {
  2572. "Is Invitation": "No"
  2573. },
  2574. {
  2575. "GUID": "7482768A-DOCB-42BB-9FC9-69C7CDFB02A8"
  2576. },
  2577. {
  2578. "Message": "202 669 7405"
  2579. },
  2580. {
  2581. "Time": "05/16/19 02:58:11 PM (579736691)"
  2582. },
  2583. {
  2584. "Flags": "1060865"
  2585. },
  2586. {
  2587. "Is Read": "Yes"
  2588. },
  2589. {
  2590. "Is Invitation": "No"
  2591. },
  2592. {
  2593. "GUID": "71AEA806-50CB-4677-ADD2-3E2DF6BDDO9D"
  2594. },
  2595. {
  2596. "Message": "She is way too classy for me-- plus it would end her professionally"
  2597. },
  2598. {
  2599. "Time": "05/17/19 04:02:15 AM (579783735)"
  2600. },
  2601. {
  2602. "Flags": "1060865"
  2603. },
  2604. {
  2605. "Is Read": "Yes"
  2606. },
  2607. {
  2608. "Is Invitation": "No"
  2609. },
  2610. {
  2611. "GUID": "C40630C9-5343-4FEC-B121-4369515543D9"
  2612. },
  2613. {
  2614. "Message": "Did u drop by?"
  2615. },
  2616. {
  2617. "Time": "05/17/19 08:38:09 AM (579800289)"
  2618. },
  2619. {
  2620. "Flags": "1060865"
  2621. },
  2622. {
  2623. "Is Read": "Yes"
  2624. },
  2625. {
  2626. "Is Invitation": "No"
  2627. },
  2628. {
  2629. "GUID": "BCC59371-150D-4FFA-B214-B2D4ADOC9DBF"
  2630. },
  2631. {
  2632. "Message": "You r wrong on this one"
  2633. },
  2634. {
  2635. "Sender": "e:jeeitunes@gmail.com"
  2636. },
  2637. {
  2638. "Time": "05/17/19 08:39:11 AM (579800351)"
  2639. },
  2640. {
  2641. "Flags": "1085445"
  2642. },
  2643. {
  2644. "Is Read": "No"
  2645. },
  2646. {
  2647. "Is Invitation": "No"
  2648. },
  2649. {
  2650. "GUID": "C3ECE921-AA91-4ECO-936A-797291DE2133"
  2651. },
  2652. {
  2653. "Message": "You are not getting out of paying your dollar . . forget It 0"
  2654. },
  2655. {
  2656. "Sender": "e:jeeitunes@gmail.com"
  2657. },
  2658. {
  2659. "Time": "05/17/19 08:41:39 AM (579800499)"
  2660. },
  2661. {
  2662. "Flags": "1085445"
  2663. },
  2664. {
  2665. "Is Read": "No"
  2666. },
  2667. {
  2668. "Is Invitation": "No"
  2669. },
  2670. {
  2671. "GUID": "2042227C-3112-4AF9-8F9F-F71A0C663F8A"
  2672. },
  2673. {
  2674. "Message": "I just went through my reasoning with someone in the know. And they said. Oy !!!"
  2675. },
  2676. {
  2677. "Sender": "e:jeeitunes@gmail.com"
  2678. },
  2679. {
  2680. "Time": "05/20/19 07:32:56 PM (580098776)"
  2681. },
  2682. {
  2683. "Flags": "1085445"
  2684. },
  2685. {
  2686. "Is Read": "No"
  2687. },
  2688. {
  2689. "Is Invitation": "No"
  2690. },
  2691. {
  2692. "GUID": "A5A1C398-9F92-4F2D-85C6-0A2D7ADAAC4E"
  2693. },
  2694. {
  2695. "Message": "I watched your interview, my china intelligence is that they want a crisis. Maybe stop selling silicon. . more when I see you"
  2696. }
  2697. ],
  2698. "Source Entry": "H\\Macintosh HD\\root\\Users\\jee\\Library\\Messages\\Archive\\2019-05-20\\11 on 2019-05-17 at 11.41.39.ichat",
  2699. "Service": "iMessage",
  2700. "Start Time": "05/09/19 05:55:44 PM (579142544)",
  2701. "End Time": "05/20/19 07:32:56 PM (580098776)",
  2702. "Last Message ID": "29287",
  2703. "Chat Room": "",
  2704. "Participants": "jee,",
  2705. "Presentity IDs": "e:jeeitunes@gmail.com,"
  2706. }