-
Notifications
You must be signed in to change notification settings - Fork 3
/
polbooks_rf_sinkhorn_e2_20.gexf
3297 lines (3297 loc) · 144 KB
/
polbooks_rf_sinkhorn_e2_20.gexf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version='1.0' encoding='utf-8'?>
<gexf version="1.2" xmlns="http://www.gexf.net/1.2draft" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/2001/XMLSchema-instance">
<graph defaultedgetype="undirected" mode="static" name="">
<attributes class="edge" mode="static">
<attribute id="2" title="ricciCurvature" type="double" />
<attribute id="3" title="original_RC" type="double" />
</attributes>
<attributes class="node" mode="static">
<attribute id="0" title="value" type="string" />
<attribute id="1" title="ricciCurvature" type="double" />
</attributes>
<meta>
<creator>NetworkX 2.0</creator>
<lastmodified>05/12/2017</lastmodified>
</meta>
<nodes>
<node id="1000 Years for Revenge" label="1000 Years for Revenge">
<attvalues>
<attvalue for="0" value="n" />
<attvalue for="1" value="0.021843954404992334" />
</attvalues>
</node>
<node id="Bush vs. the Beltway" label="Bush vs. the Beltway">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.017549533644846294" />
</attvalues>
</node>
<node id="Charlie Wilson's War" label="Charlie Wilson's War">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.030902899015706364" />
</attvalues>
</node>
<node id="Losing Bin Laden" label="Losing Bin Laden">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.007940171693845397" />
</attvalues>
</node>
<node id="Sleeping With the Devil" label="Sleeping With the Devil">
<attvalues>
<attvalue for="0" value="n" />
<attvalue for="1" value="0.011388522600347395" />
</attvalues>
</node>
<node id="The Man Who Warned America" label="The Man Who Warned America">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.023086740602048756" />
</attvalues>
</node>
<node id="Why America Slept" label="Why America Slept">
<attvalues>
<attvalue for="0" value="n" />
<attvalue for="1" value="0.006280752070329551" />
</attvalues>
</node>
<node id="Ghost Wars" label="Ghost Wars">
<attvalues>
<attvalue for="0" value="n" />
<attvalue for="1" value="-0.0016735370721270293" />
</attvalues>
</node>
<node id="A National Party No More" label="A National Party No More">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.0005446828391883019" />
</attvalues>
</node>
<node id="Bush Country" label="Bush Country">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.009048494729710387" />
</attvalues>
</node>
<node id="Dereliction of Duty" label="Dereliction of Duty">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.0028030088974999442" />
</attvalues>
</node>
<node id="Legacy" label="Legacy">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.0025139808691427104" />
</attvalues>
</node>
<node id="Off with Their Heads" label="Off with Their Heads">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.00900287122477932" />
</attvalues>
</node>
<node id="Persecution" label="Persecution">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.009369707305622246" />
</attvalues>
</node>
<node id="Rumsfeld's War" label="Rumsfeld's War">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.007171999974259867" />
</attvalues>
</node>
<node id="Breakdown" label="Breakdown">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.023906905562779412" />
</attvalues>
</node>
<node id="Betrayal" label="Betrayal">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.015841176449827188" />
</attvalues>
</node>
<node id="Shut Up and Sing" label="Shut Up and Sing">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.004765185024867669" />
</attvalues>
</node>
<node id="Meant To Be" label="Meant To Be">
<attvalues>
<attvalue for="0" value="n" />
<attvalue for="1" value="-0.003028490085375646" />
</attvalues>
</node>
<node id="The Right Man" label="The Right Man">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.00013728856928174604" />
</attvalues>
</node>
<node id="Ten Minutes from Normal" label="Ten Minutes from Normal">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.012466741409336502" />
</attvalues>
</node>
<node id="Hillary's Scheme" label="Hillary's Scheme">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.006614934182184196" />
</attvalues>
</node>
<node id="The French Betrayal of America" label="The French Betrayal of America">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.006767779895431251" />
</attvalues>
</node>
<node id="Tales from the Left Coast" label="Tales from the Left Coast">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.0004767979530011019" />
</attvalues>
</node>
<node id="Hating America" label="Hating America">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.0007611336380267922" />
</attvalues>
</node>
<node id="The Third Terrorist" label="The Third Terrorist">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.00535291981688113" />
</attvalues>
</node>
<node id="Endgame" label="Endgame">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.0011615625629147629" />
</attvalues>
</node>
<node id="Spin Sisters" label="Spin Sisters">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.0003399633624009166" />
</attvalues>
</node>
<node id="All the Shah's Men" label="All the Shah's Men">
<attvalues>
<attvalue for="0" value="n" />
<attvalue for="1" value="-0.010610165992607667" />
</attvalues>
</node>
<node id="Dangerous Dimplomacy" label="Dangerous Dimplomacy">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.0038845383361634234" />
</attvalues>
</node>
<node id="The Price of Loyalty" label="The Price of Loyalty">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.012816843967633246" />
</attvalues>
</node>
<node id="House of Bush, House of Saud" label="House of Bush, House of Saud">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.013347007978388413" />
</attvalues>
</node>
<node id="The Death of Right and Wrong" label="The Death of Right and Wrong">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.0030016818714851735" />
</attvalues>
</node>
<node id="Useful Idiots" label="Useful Idiots">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.016551061783152084" />
</attvalues>
</node>
<node id="The O'Reilly Factor" label="The O'Reilly Factor">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.057196571350063265" />
</attvalues>
</node>
<node id="Let Freedom Ring" label="Let Freedom Ring">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.01862383362271993" />
</attvalues>
</node>
<node id="Those Who Trespass" label="Those Who Trespass">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.003346252147744577" />
</attvalues>
</node>
<node id="Bias" label="Bias">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.027169835950708005" />
</attvalues>
</node>
<node id="Slander" label="Slander">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.03705636212069826" />
</attvalues>
</node>
<node id="The Savage Nation" label="The Savage Nation">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.019704020675940487" />
</attvalues>
</node>
<node id="Deliver Us from Evil" label="Deliver Us from Evil">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.0027878101326433116" />
</attvalues>
</node>
<node id="Give Me a Break" label="Give Me a Break">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.00465555928284922" />
</attvalues>
</node>
<node id="The Enemy Within" label="The Enemy Within">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.01996190275955519" />
</attvalues>
</node>
<node id="The Real America" label="The Real America">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.03568513122813048" />
</attvalues>
</node>
<node id="Who's Looking Out for You?" label="Who's Looking Out for You?">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.0015385943139070378" />
</attvalues>
</node>
<node id="The Official Handbook Vast Right Wing Conspiracy" label="The Official Handbook Vast Right Wing Conspiracy">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.002768175081269327" />
</attvalues>
</node>
<node id="Power Plays" label="Power Plays">
<attvalues>
<attvalue for="0" value="n" />
<attvalue for="1" value="0.0034692691704810708" />
</attvalues>
</node>
<node id="Arrogance" label="Arrogance">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.0021052289192060036" />
</attvalues>
</node>
<node id="The Perfect Wife" label="The Perfect Wife">
<attvalues>
<attvalue for="0" value="n" />
<attvalue for="1" value="0.11918833716720206" />
</attvalues>
</node>
<node id="The Bushes" label="The Bushes">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.048496139902104676" />
</attvalues>
</node>
<node id="Things Worth Fighting For" label="Things Worth Fighting For">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.009817845559746777" />
</attvalues>
</node>
<node id="Surprise, Security, the American Experience" label="Surprise, Security, the American Experience">
<attvalues>
<attvalue for="0" value="n" />
<attvalue for="1" value="-0.05586700144793492" />
</attvalues>
</node>
<node id="Allies" label="Allies">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.04422228473166214" />
</attvalues>
</node>
<node id="Why Courage Matters" label="Why Courage Matters">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.004927078231233217" />
</attvalues>
</node>
<node id="Hollywood Interrupted" label="Hollywood Interrupted">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.0022723253064247384" />
</attvalues>
</node>
<node id="Fighting Back" label="Fighting Back">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.03932445535980986" />
</attvalues>
</node>
<node id="We Will Prevail" label="We Will Prevail">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.016504306861406887" />
</attvalues>
</node>
<node id="The Faith of George W Bush" label="The Faith of George W Bush">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="0.09092450525182191" />
</attvalues>
</node>
<node id="Rise of the Vulcans" label="Rise of the Vulcans">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.04203783682337922" />
</attvalues>
</node>
<node id="Downsize This!" label="Downsize This!">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="0.10162770941753578" />
</attvalues>
</node>
<node id="Stupid White Men" label="Stupid White Men">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="0.07869252237395141" />
</attvalues>
</node>
<node id="Rush Limbaugh Is a Big Fat Idiot" label="Rush Limbaugh Is a Big Fat Idiot">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="0.014399954281052202" />
</attvalues>
</node>
<node id="The Best Democracy Money Can Buy" label="The Best Democracy Money Can Buy">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="0.07891709062641067" />
</attvalues>
</node>
<node id="The Culture of Fear" label="The Culture of Fear">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="0.12965810069350492" />
</attvalues>
</node>
<node id="America Unbound" label="America Unbound">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.038327803128538424" />
</attvalues>
</node>
<node id="The Choice" label="The Choice">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.03941080203734949" />
</attvalues>
</node>
<node id="The Great Unraveling" label="The Great Unraveling">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.009971734094624596" />
</attvalues>
</node>
<node id="Rogue Nation" label="Rogue Nation">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.002366936678325382" />
</attvalues>
</node>
<node id="Soft Power" label="Soft Power">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.05068412782263648" />
</attvalues>
</node>
<node id="Colossus" label="Colossus">
<attvalues>
<attvalue for="0" value="n" />
<attvalue for="1" value="-0.04331368456933029" />
</attvalues>
</node>
<node id="The Sorrows of Empire" label="The Sorrows of Empire">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.012952889208237275" />
</attvalues>
</node>
<node id="Against All Enemies" label="Against All Enemies">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.012682326906106963" />
</attvalues>
</node>
<node id="American Dynasty" label="American Dynasty">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.01000282040291689" />
</attvalues>
</node>
<node id="Big Lies" label="Big Lies">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.010795746585182389" />
</attvalues>
</node>
<node id="The Lies of George W. Bush" label="The Lies of George W. Bush">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.01108937934061116" />
</attvalues>
</node>
<node id="Worse Than Watergate" label="Worse Than Watergate">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.011519639197299716" />
</attvalues>
</node>
<node id="Plan of Attack" label="Plan of Attack">
<attvalues>
<attvalue for="0" value="n" />
<attvalue for="1" value="-0.01265375055055042" />
</attvalues>
</node>
<node id="Bush at War" label="Bush at War">
<attvalues>
<attvalue for="0" value="c" />
<attvalue for="1" value="-0.014080871920395976" />
</attvalues>
</node>
<node id="The New Pearl Harbor" label="The New Pearl Harbor">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.010172921963279924" />
</attvalues>
</node>
<node id="Bushwomen" label="Bushwomen">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.01103875865208101" />
</attvalues>
</node>
<node id="The Bubble of American Supremacy" label="The Bubble of American Supremacy">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.008824623900225204" />
</attvalues>
</node>
<node id="Living History" label="Living History">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.005929133771967576" />
</attvalues>
</node>
<node id="The Politics of Truth" label="The Politics of Truth">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.011690672577468956" />
</attvalues>
</node>
<node id="Fanatics and Fools" label="Fanatics and Fools">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.009763562718567237" />
</attvalues>
</node>
<node id="Bushwhacked" label="Bushwhacked">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.01165251360156464" />
</attvalues>
</node>
<node id="Disarming Iraq" label="Disarming Iraq">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.03654895353032801" />
</attvalues>
</node>
<node id="Lies and the Lying Liars Who Tell Them" label="Lies and the Lying Liars Who Tell Them">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.012618686410846418" />
</attvalues>
</node>
<node id="MoveOn's 50 Ways to Love Your Country" label="MoveOn's 50 Ways to Love Your Country">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.01050559042519512" />
</attvalues>
</node>
<node id="The Buying of the President 2004" label="The Buying of the President 2004">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.008061408785189971" />
</attvalues>
</node>
<node id="Perfectly Legal" label="Perfectly Legal">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.007156892623007931" />
</attvalues>
</node>
<node id="Hegemony or Survival" label="Hegemony or Survival">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.012707264713503941" />
</attvalues>
</node>
<node id="The Exception to the Rulers" label="The Exception to the Rulers">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.010668136040727333" />
</attvalues>
</node>
<node id="Freethinkers" label="Freethinkers">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.008872111100996246" />
</attvalues>
</node>
<node id="Had Enough?" label="Had Enough?">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.017731966412399016" />
</attvalues>
</node>
<node id="It's Still the Economy, Stupid!" label="It's Still the Economy, Stupid!">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="0.002802471928047453" />
</attvalues>
</node>
<node id="We're Right They're Wrong" label="We're Right They're Wrong">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="0.03361132172103479" />
</attvalues>
</node>
<node id="What Liberal Media?" label="What Liberal Media?">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.011030796107315591" />
</attvalues>
</node>
<node id="The Clinton Wars" label="The Clinton Wars">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.006472952310139039" />
</attvalues>
</node>
<node id="Weapons of Mass Deception" label="Weapons of Mass Deception">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.009759691392551461" />
</attvalues>
</node>
<node id="Dude, Where's My Country?" label="Dude, Where's My Country?">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="0.02374926634001896" />
</attvalues>
</node>
<node id="Thieves in High Places" label="Thieves in High Places">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.014042845157799225" />
</attvalues>
</node>
<node id="Shrub" label="Shrub">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="-0.0022116391278055535" />
</attvalues>
</node>
<node id="Buck Up Suck Up" label="Buck Up Suck Up">
<attvalues>
<attvalue for="0" value="l" />
<attvalue for="1" value="0.014724223781546586" />
</attvalues>
</node>
<node id="The Future of Freedom" label="The Future of Freedom">
<attvalues>
<attvalue for="0" value="n" />
<attvalue for="1" value="-0.07879991951611587" />
</attvalues>
</node>
<node id="Empire" label="Empire">
<attvalues>
<attvalue for="0" value="n" />
<attvalue for="1" value="-0.021706357435064178" />
</attvalues>
</node>
</nodes>
<edges>
<edge id="0" source="1000 Years for Revenge" target="Bush vs. the Beltway" weight="0.04301076874687068">
<attvalues>
<attvalue for="2" value="0.031469095002715" />
<attvalue for="3" value="0.3748211488720904" />
</attvalues>
</edge>
<edge id="1" source="1000 Years for Revenge" target="Charlie Wilson's War" weight="0.05053984910814859">
<attvalues>
<attvalue for="2" value="0.031683536003742074" />
<attvalue for="3" value="0.2498882373070208" />
</attvalues>
</edge>
<edge id="2" source="1000 Years for Revenge" target="Losing Bin Laden" weight="4.184220735386861">
<attvalues>
<attvalue for="2" value="-0.026611733900990142" />
<attvalue for="3" value="-0.2793306109781759" />
</attvalues>
</edge>
<edge id="3" source="1000 Years for Revenge" target="Sleeping With the Devil" weight="0.049491224738589586">
<attvalues>
<attvalue for="2" value="0.032165620099338765" />
<attvalue for="3" value="-0.020969594997335417" />
</attvalues>
</edge>
<edge id="4" source="1000 Years for Revenge" target="The Man Who Warned America" weight="0.04529893841179276">
<attvalues>
<attvalue for="2" value="0.030662704050179457" />
<attvalue for="3" value="0.4638422779173085" />
</attvalues>
</edge>
<edge id="5" source="1000 Years for Revenge" target="Why America Slept" weight="0.051927486738121725">
<attvalues>
<attvalue for="2" value="0.03169450517496886" />
<attvalue for="3" value="0.08317448167169039" />
</attvalues>
</edge>
<edge id="6" source="Bush vs. the Beltway" target="Losing Bin Laden" weight="4.175003461510974">
<attvalues>
<attvalue for="2" value="-0.026744265877947093" />
<attvalue for="3" value="-0.13595652402864689" />
</attvalues>
</edge>
<edge id="7" source="Bush vs. the Beltway" target="The Man Who Warned America" weight="0.04652456133795267">
<attvalues>
<attvalue for="2" value="0.03235437627665316" />
<attvalue for="3" value="0.3034570954269902" />
</attvalues>
</edge>
<edge id="8" source="Bush vs. the Beltway" target="Why America Slept" weight="0.04842064120834968">
<attvalues>
<attvalue for="2" value="0.03311892917796411" />
<attvalue for="3" value="0.11348746032145951" />
</attvalues>
</edge>
<edge id="9" source="Charlie Wilson's War" target="Sleeping With the Devil" weight="0.05324815097345498">
<attvalues>
<attvalue for="2" value="0.03256974262612733" />
<attvalue for="3" value="0.12491036904782771" />
</attvalues>
</edge>
<edge id="10" source="Charlie Wilson's War" target="The Man Who Warned America" weight="0.04695019620040861">
<attvalues>
<attvalue for="2" value="0.030343646880148567" />
<attvalue for="3" value="0.321136448586137" />
</attvalues>
</edge>
<edge id="11" source="Charlie Wilson's War" target="Ghost Wars" weight="0.04800603492088731">
<attvalues>
<attvalue for="2" value="0.029014670552807487" />
<attvalue for="3" value="-0.006610242858300586" />
</attvalues>
</edge>
<edge id="12" source="Losing Bin Laden" target="The Man Who Warned America" weight="4.182678358896314">
<attvalues>
<attvalue for="2" value="-0.02664766593397805" />
<attvalue for="3" value="-0.2774582322050043" />
</attvalues>
</edge>
<edge id="13" source="Losing Bin Laden" target="A National Party No More" weight="0.29184811728772275">
<attvalues>
<attvalue for="2" value="-0.007374250295646423" />
<attvalue for="3" value="0.04835284477600332" />
</attvalues>
</edge>
<edge id="14" source="Losing Bin Laden" target="Bush Country" weight="0.30649800888888756">
<attvalues>
<attvalue for="2" value="-0.004908492571196188" />
<attvalue for="3" value="-0.08860405961770979" />
</attvalues>
</edge>
<edge id="15" source="Losing Bin Laden" target="Dereliction of Duty" weight="2.0754534533572437">
<attvalues>
<attvalue for="2" value="-0.04151941229418554" />
<attvalue for="3" value="-0.030573038679934994" />
</attvalues>
</edge>
<edge id="16" source="Losing Bin Laden" target="Legacy" weight="0.2390573337813155">
<attvalues>
<attvalue for="2" value="-0.03320871794220959" />
<attvalue for="3" value="0.1287013601049405" />
</attvalues>
</edge>
<edge id="17" source="Losing Bin Laden" target="Off with Their Heads" weight="0.3192453601154598">
<attvalues>
<attvalue for="2" value="0.006065110255308093" />
<attvalue for="3" value="0.06291008739934667" />
</attvalues>
</edge>
<edge id="18" source="Losing Bin Laden" target="Persecution" weight="0.4478697091692279">
<attvalues>
<attvalue for="2" value="0.012432330503973299" />
<attvalue for="3" value="-0.0908125036439178" />
</attvalues>
</edge>
<edge id="19" source="Losing Bin Laden" target="Rumsfeld's War" weight="0.2406945772802632">
<attvalues>
<attvalue for="2" value="-0.01111050405228231" />
<attvalue for="3" value="0.03382307915756144" />
</attvalues>
</edge>
<edge id="20" source="Losing Bin Laden" target="Breakdown" weight="3.8753664498586207">
<attvalues>
<attvalue for="2" value="-0.037451397402081366" />
<attvalue for="3" value="-0.06825101502197839" />
</attvalues>
</edge>
<edge id="21" source="Losing Bin Laden" target="Betrayal" weight="3.8682129883375374">
<attvalues>
<attvalue for="2" value="-0.03773383144638176" />
<attvalue for="3" value="-0.09428095967863159" />
</attvalues>
</edge>
<edge id="22" source="Losing Bin Laden" target="Shut Up and Sing" weight="0.33369886053808756">
<attvalues>
<attvalue for="2" value="0.008375716985706494" />
<attvalue for="3" value="0.0494546987944805" />
</attvalues>
</edge>
<edge id="23" source="Losing Bin Laden" target="Meant To Be" weight="0.3096177120387793">
<attvalues>
<attvalue for="2" value="0.0069526689300042355" />
<attvalue for="3" value="0.02882103536657976" />
</attvalues>
</edge>
<edge id="24" source="Losing Bin Laden" target="The Right Man" weight="3.8936955340749195">
<attvalues>
<attvalue for="2" value="-0.036660407352435476" />
<attvalue for="3" value="-0.2615819120278826" />
</attvalues>
</edge>
<edge id="25" source="Losing Bin Laden" target="Ten Minutes from Normal" weight="0.34740234408497783">
<attvalues>
<attvalue for="2" value="0.011182310229393977" />
<attvalue for="3" value="-0.15290457144303704" />
</attvalues>
</edge>
<edge id="26" source="Losing Bin Laden" target="Hillary's Scheme" weight="0.32935947811335936">
<attvalues>
<attvalue for="2" value="0.012986650255313426" />
<attvalue for="3" value="0.08152577384328841" />
</attvalues>
</edge>
<edge id="27" source="Losing Bin Laden" target="The French Betrayal of America" weight="0.31090498644603626">
<attvalues>
<attvalue for="2" value="0.006185288383236509" />
<attvalue for="3" value="0.02089843660886559" />
</attvalues>
</edge>
<edge id="28" source="Losing Bin Laden" target="Tales from the Left Coast" weight="0.39094453299022064">
<attvalues>
<attvalue for="2" value="0.018700044173979746" />
<attvalue for="3" value="-0.039217048390868925" />
</attvalues>
</edge>
<edge id="29" source="Losing Bin Laden" target="Hating America" weight="0.3314056989549916">
<attvalues>
<attvalue for="2" value="0.007058480150558433" />
<attvalue for="3" value="0.0007225694616638245" />
</attvalues>
</edge>
<edge id="30" source="Losing Bin Laden" target="The Third Terrorist" weight="0.341875799846678">
<attvalues>
<attvalue for="2" value="0.010646218386350048" />
<attvalue for="3" value="0.02504093410816899" />
</attvalues>
</edge>
<edge id="31" source="Losing Bin Laden" target="Endgame" weight="0.3273693637297405">
<attvalues>
<attvalue for="2" value="0.0008252586278449936" />
<attvalue for="3" value="-0.055783009521002125" />
</attvalues>
</edge>
<edge id="32" source="Losing Bin Laden" target="Spin Sisters" weight="0.3495897253651834">
<attvalues>
<attvalue for="2" value="0.005936653229220545" />
<attvalue for="3" value="-0.03427788956508948" />
</attvalues>
</edge>
<edge id="33" source="Sleeping With the Devil" target="The Man Who Warned America" weight="0.053368107218342085">
<attvalues>
<attvalue for="2" value="0.032784401870419866" />
<attvalue for="3" value="0.053250164782618015" />
</attvalues>
</edge>
<edge id="34" source="Sleeping With the Devil" target="Why America Slept" weight="0.05267369686088488">
<attvalues>
<attvalue for="2" value="0.0309796647451116" />
<attvalue for="3" value="-0.1877195702978074" />
</attvalues>
</edge>
<edge id="35" source="Sleeping With the Devil" target="All the Shah's Men" weight="5.888399650932551">
<attvalues>
<attvalue for="2" value="-0.022697699767371127" />
<attvalue for="3" value="-0.35418038679144703" />
</attvalues>
</edge>
<edge id="36" source="Sleeping With the Devil" target="Dangerous Dimplomacy" weight="0.04691325677593024">
<attvalues>
<attvalue for="2" value="0.03241948843358555" />
<attvalue for="3" value="-0.25006306374398535" />
</attvalues>
</edge>
<edge id="37" source="Sleeping With the Devil" target="The Price of Loyalty" weight="5.779065499707949">
<attvalues>
<attvalue for="2" value="-0.023205240084190226" />
<attvalue for="3" value="-0.5125372360555207" />
</attvalues>
</edge>
<edge id="38" source="Sleeping With the Devil" target="House of Bush, House of Saud" weight="5.712860709186062">
<attvalues>
<attvalue for="2" value="-0.023907797120242602" />
<attvalue for="3" value="-0.5511497034006734" />
</attvalues>
</edge>
<edge id="39" source="The Man Who Warned America" target="Why America Slept" weight="0.05142484161683487">
<attvalues>
<attvalue for="2" value="0.031603323520791204" />
<attvalue for="3" value="0.07127023669706356" />
</attvalues>
</edge>
<edge id="40" source="The Man Who Warned America" target="Ghost Wars" weight="0.04755691188855894">
<attvalues>
<attvalue for="2" value="0.030506397550127073" />
<attvalue for="3" value="-0.07153134763682933" />
</attvalues>
</edge>
<edge id="41" source="Why America Slept" target="Ghost Wars" weight="0.05780665175802698">
<attvalues>
<attvalue for="2" value="0.03251387525569638" />
<attvalue for="3" value="-0.21064176536947143" />
</attvalues>
</edge>
<edge id="42" source="Why America Slept" target="Dereliction of Duty" weight="5.176549610568822">
<attvalues>
<attvalue for="2" value="-0.016299509557980985" />
<attvalue for="3" value="-0.30172401072259736" />
</attvalues>
</edge>
<edge id="43" source="Why America Slept" target="Off with Their Heads" weight="4.2970137359598795">
<attvalues>
<attvalue for="2" value="-0.02453477255862646" />
<attvalue for="3" value="-0.27682091749280113" />
</attvalues>
</edge>
<edge id="44" source="Why America Slept" target="Meant To Be" weight="4.071185367523474">
<attvalues>
<attvalue for="2" value="-0.02694010276725689" />
<attvalue for="3" value="0.06050792277022676" />
</attvalues>
</edge>
<edge id="45" source="Why America Slept" target="The French Betrayal of America" weight="4.101701157787637">
<attvalues>
<attvalue for="2" value="-0.028179850448095678" />
<attvalue for="3" value="-0.0657840370597329" />
</attvalues>
</edge>
<edge id="46" source="Why America Slept" target="The Third Terrorist" weight="4.036870642510271">
<attvalues>
<attvalue for="2" value="-0.028750088434487786" />
<attvalue for="3" value="-0.02744921781673426" />
</attvalues>
</edge>
<edge id="47" source="Why America Slept" target="Dangerous Dimplomacy" weight="0.05091059445239964">
<attvalues>
<attvalue for="2" value="0.03388229866554071" />
<attvalue for="3" value="0.021992446224427198" />
</attvalues>
</edge>
<edge id="48" source="Ghost Wars" target="Rumsfeld's War" weight="4.125630359682401">
<attvalues>
<attvalue for="2" value="-0.027753502488145676" />
<attvalue for="3" value="-0.34726104066243724" />
</attvalues>
</edge>
<edge id="49" source="Ghost Wars" target="The Price of Loyalty" weight="5.791988996130782">
<attvalues>
<attvalue for="2" value="-0.023150345963850683" />
<attvalue for="3" value="-0.4000463977566511" />
</attvalues>
</edge>
<edge id="50" source="Ghost Wars" target="Rise of the Vulcans" weight="4.007019805984095">
<attvalues>
<attvalue for="2" value="-0.015613570435433877" />
<attvalue for="3" value="-0.17838642552894024" />
</attvalues>
</edge>
<edge id="51" source="Ghost Wars" target="Against All Enemies" weight="5.802900856668256">
<attvalues>
<attvalue for="2" value="-0.02339333496802465" />
<attvalue for="3" value="-0.45837814285408673" />
</attvalues>
</edge>
<edge id="52" source="Ghost Wars" target="Disarming Iraq" weight="3.9721540915706446">
<attvalues>
<attvalue for="2" value="-0.01551248608019229" />
<attvalue for="3" value="-0.1375597610221455" />
</attvalues>
</edge>
<edge id="53" source="A National Party No More" target="Bush Country" weight="0.33762109615937885">
<attvalues>
<attvalue for="2" value="0.003283690218239488" />
<attvalue for="3" value="-0.027315681887508658" />
</attvalues>
</edge>
<edge id="54" source="A National Party No More" target="Dereliction of Duty" weight="1.9892434643544774">
<attvalues>
<attvalue for="2" value="-0.04538442807866239" />
<attvalue for="3" value="-0.016974958452766087" />
</attvalues>
</edge>
<edge id="55" source="A National Party No More" target="Legacy" weight="0.2749977604685883">
<attvalues>
<attvalue for="2" value="-0.0029087243205234703" />
<attvalue for="3" value="0.16393977054813735" />
</attvalues>
</edge>
<edge id="56" source="A National Party No More" target="Off with Their Heads" weight="0.27173507020472526">
<attvalues>
<attvalue for="2" value="-0.016114502676909392" />
<attvalue for="3" value="0.21759523898114375" />
</attvalues>
</edge>
<edge id="57" source="A National Party No More" target="Persecution" weight="0.35129763702163547">
<attvalues>
<attvalue for="2" value="0.01212335645557161" />
<attvalue for="3" value="0.06839601851053811" />
</attvalues>
</edge>
<edge id="58" source="A National Party No More" target="Rumsfeld's War" weight="0.34955923094131347">
<attvalues>
<attvalue for="2" value="0.00741763943185314" />
<attvalue for="3" value="-0.06873032316326588" />