forked from lifenoodles/nasearch
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathna-archive.opml
1483 lines (1483 loc) · 220 KB
/
na-archive.opml
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="ISO-8859-1"?>
<!-- OPML generated by OPML Editor v10.1b19 on Wed, 11 Jun 2014 16:39:51 GMT -->
<opml version="2.0">
<head>
<title>shownotesOPMLarchive.opml</title>
<dateCreated>Wed, 11 Jun 2014 16:38:44 GMT</dateCreated>
<dateModified>Wed, 11 Jun 2014 16:39:51 GMT</dateModified>
<ownerName>Adam Curry</ownerName>
<ownerEmail>[email protected]</ownerEmail>
<expansionState></expansionState>
<vertScrollState>1</vertScrollState>
<windowTop>284</windowTop>
<windowLeft>-873</windowLeft>
<windowBottom>484</windowBottom>
<windowRight>-488</windowRight>
</head>
<body>
<outline text="2014" created="Thu, 02 Jan 2014 21:51:59 GMT" pgfnum="6502">
<outline text="January" created="Thu, 02 Jan 2014 21:52:02 GMT" pgfnum="6503">
<outline text="NA-579-2014-01-02" created="Thu, 02 Jan 2014 21:52:06 GMT" domain="579.nashownotes.com" name="na57920140102" pgfnum="6504" type="redirect" url="http://static.curry.com/nashownotes/579/index.html"/>
<outline text="NA-580-2014-01-06" created="Sun, 05 Jan 2014 21:25:22 GMT" domain="580.nashownotes.com" name="na58020140106" pgfnum="6511" type="redirect" url="http://static.curry.com/nashownotes/580/index.html"/>
<outline text="NA-581-2014-01-09" created="Thu, 09 Jan 2014 21:00:23 GMT" domain="581.nashownotes.com" name="na58120140109" pgfnum="6518" type="redirect" url="http://static.curry.com/nashownotes/581/index.html"/>
<outline text="NA-582-2014-01-12" created="Sun, 12 Jan 2014 20:48:50 GMT" domain="582.nashownotes.com" name="na58220140112" pgfnum="6527" type="redirect" url="http://static.curry.com/nashownotes/582/index.html"/>
<outline text="NA-583-2014-01-16" created="Thu, 16 Jan 2014 21:16:31 GMT" domain="583.nashownotes.com" name="na58320140116" pgfnum="6529" type="redirect" url="http://583.noagendanotes.com/"/>
<outline text="NA-584-2014-01-19" created="Sun, 19 Jan 2014 22:24:33 GMT" domain="584.nashownotes.com" name="na58420140119" pgfnum="6531" type="redirect" url="http://584.noagendanotes.com"/>
<outline text="NA-585-2014-01-23" created="Thu, 23 Jan 2014 21:39:09 GMT" domain="585.nashownotes.com" name="na58520140123" pgfnum="6533" type="redirect" url="http://585.noagendanotes.com/"/>
<outline text="NA-586-2014-01-26" created="Sun, 26 Jan 2014 21:09:48 GMT" domain="586.nashownotes.com" name="na58620140126" pgfnum="6535" type="redirect" url="http://static.curry.com/nashownotes/586/index.html"/>
<outline text="NA-587-2014-01-30" created="Thu, 30 Jan 2014 21:28:57 GMT" domain="587.nashownotes.com" pgfnum="6536" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode587Pe-1391115508.html"/>
</outline>
<outline text="February" created="Sun, 02 Feb 2014 20:50:13 GMT" pgfnum="6540">
<outline text="NA-595-2014-02-27" created="Thu, 27 Feb 2014 21:38:35 GMT" domain="595.nashownotes.com" pgfnum="6560" type="redirect" url="http://adam.curry.com/html/NA59520140227-1393534121.html"/>
<outline text="NA-594-2014-02-23" created="Sun, 23 Feb 2014 21:00:44 GMT" domain="594.nashownotes.com" name="na59420140223" pgfnum="6556" type="redirect" url="http://adam.curry.com/html/NA59420140223shownot-1393187118.html"/>
<outline text="NA-593-2014-02-20" created="Thu, 20 Feb 2014 22:03:30 GMT" domain="593.nashownotes.com" pgfnum="6554" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode593Ab-1392932066.html"/>
<outline text="NA-592-2014-02-16" created="Sun, 16 Feb 2014 22:09:20 GMT" domain="592.nashownotes.com" name="na59220140216" pgfnum="6550" type="redirect" url="http://adam.curry.com/html/NA59220140216shownot-1392586582.html"/>
<outline text="NA-591-2014-02-13" created="Thu, 13 Feb 2014 21:59:51 GMT" domain="591.nashownotes.com" name="na59120140213" pgfnum="6548" type="redirect" url="http://591.noagendanotes.com"/>
<outline text="NA-590-2014-02-09" created="Sun, 09 Feb 2014 21:29:27 GMT" domain="590.nashownotes.com" pgfnum="6546" type="redirect" url="http://adam.curry.com/html/NA59020140209shownot-1391979131.html"/>
<outline text="NA-588-2014-02-02" created="Sun, 02 Feb 2014 20:50:19 GMT" domain="588.nashownotes.com" name="na58820140202" pgfnum="6541" type="redirect" url="http://588.noagendanotes.com/"/>
<outline text="NA-589-2014-02-06" created="Thu, 06 Feb 2014 21:16:09 GMT" domain="589.nashownotes.com" pgfnum="6544" type="redirect" url="http://static.curry.com/nashownotes/589/index.html"/>
</outline>
<outline text="March" created="Sun, 02 Mar 2014 21:20:09 GMT" pgfnum="6562">
<outline text="NA-604-2014-03-30" created="Sun, 30 Mar 2014 20:07:54 GMT" domain="604.nashownotes.com" pgfnum="6585" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode604De-1396207549.html"/>
<outline text="NA-603-2014-03-27" created="Thu, 27 Mar 2014 21:55:44 GMT" domain="603.nashownotes.com" pgfnum="6583" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode603Re-1395949385.html"/>
<outline text="NA-602-2014-03-23" created="Sun, 23 Mar 2014 20:13:13 GMT" domain="602.nashownotes.com" name="na60220140323" pgfnum="6581" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode602tw-1395603727.html"/>
<outline text="NA-601-2014-03-20" created="Thu, 20 Mar 2014 20:38:25 GMT" domain="601.nashownotes.com" pgfnum="6579" type="redirect" url="http://adam.curry.com/html/NA60120140320-1395345003.html"/>
<outline text="NA-600-2014-03-16" created="Sun, 16 Mar 2014 21:54:32 GMT" domain="600.nashownotes.com" pgfnum="6577" type="redirect" url="http://adam.curry.com/html/NA60021040316-1395000301.html"/>
<outline text="NA-599-2014-03-13" created="Thu, 13 Mar 2014 20:40:12 GMT" domain="599.nashownotes.com" name="na59920140313" pgfnum="6574" type="redirect" url="http://adam.curry.com/html/NA59920140313-1394741096.html"/>
<outline text="NA-598-2014-03-09" created="Sun, 09 Mar 2014 20:21:08 GMT" domain="598.nashownotes.com" name="na59820140309" pgfnum="6570" type="redirect" url="http://adam.curry.com/html/NA59820140309-1394394537.html"/>
<outline text="NA-597-2014-03-06" created="Thu, 06 Mar 2014 21:32:36 GMT" domain="597.nashownotes.com" name="na59720140306" pgfnum="6566" type="redirect" url="http://adam.curry.com/html/NA59720140306-1394137765.html"/>
<outline text="NA-596-2014-03-03" created="Sun, 02 Mar 2014 21:20:13 GMT" domain="596.nashownotes.com" pgfnum="6563" type="redirect" url="http://adam.curry.com/html/NA59620140302-1393792209.html"/>
</outline>
<outline text="April" created="Thu, 03 Apr 2014 20:27:08 GMT" pgfnum="6587">
<outline text="NA-612-2014-04-27" created="Sun, 27 Apr 2014 19:45:58 GMT" domain="612.nashownotes.com" pgfnum="6611" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode612Cr-1398626527.html"/>
<outline text="NA-611-2014-04-24" created="Thu, 24 Apr 2014 21:42:13 GMT" domain="611.nashownotes.com" pgfnum="6608" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode611Le-1398372810.html"/>
<outline text="NA-610-2014-04-20" created="Sun, 20 Apr 2014 14:23:22 GMT" domain="610.nashownotes.com" pgfnum="6601" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode610Cl-1397768298.html"/>
<outline text="NA-609-2014-04-17" created="Thu, 17 Apr 2014 20:40:43 GMT" domain="609.nashownotes.com" pgfnum="6600" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode609Jo-1397765507.html"/>
<outline text="NA-608-2014-04-13" created="Sun, 13 Apr 2014 20:11:54 GMT" domain="608.nashownotes.com" pgfnum="6598" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode608Cl-1397417956.html"/>
<outline text="NA-607-2014-04-10" created="Thu, 10 Apr 2014 20:33:37 GMT" domain="607.nashownotes.com" pgfnum="6596" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode607Bi-1397158193.html"/>
<outline text="NA-606-2014-04-06" created="Sun, 06 Apr 2014 21:08:42 GMT" domain="606.nashownotes.com" pgfnum="6591" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode606Ge-1396812583.html"/>
<outline text="NA-605-2014-04-03" created="Thu, 03 Apr 2014 20:27:11 GMT" domain="605.nashownotes.com" pgfnum="6588" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode605Bi-1396553235.html"/>
</outline>
<outline text="May" created="Thu, 01 May 2014 21:44:44 GMT" pgfnum="6613">
<outline text="NA-621-2014-05-29" created="Thu, 29 May 2014 20:27:32 GMT" domain="621.nashownotes.com" pgfnum="6620" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode621Gu-1401392068.html"/>
<outline text="NA-620-2014-05-25" created="Sun, 25 May 2014 21:02:40 GMT" domain="620.nashownotes.com" name="na62020140525" pgfnum="6625" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode620De-1401049188.html"/>
<outline text="NA-619-2014-05-22" created="Thu, 22 May 2014 19:08:41 GMT" domain="619.nashownotes.com" name="na61920140522" pgfnum="6623" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode619Dr-1400783700.html"/>
<outline text="NA-618-2014-05-18" created="Sun, 18 May 2014 18:58:17 GMT" domain="618.nashownotes.com" pgfnum="6620" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode618Bi-1400436981.html"/>
<outline text="NA-617-2014-05-15" created="Thu, 15 May 2014 19:07:46 GMT" domain="617.nashownotes.com" pgfnum="6618" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode617Cl-1400178401.html"/>
<outline text="NA-616-2014-05-11" created="Sun, 11 May 2014 21:03:23 GMT" domain="616.nashownotes.com" pgfnum="6615" type="redirect" url="http://adam.curry.com/html/NoAgendaEpsiode616Ji-1399837742.html"/>
<outline text="NA-615-2014-05-08" created="Thu, 08 May 2014 20:43:06 GMT" domain="615.nashownotes.com" pgfnum="6618" type="redirect" url="http://adam.curry.com/html/NoAgendaEpsiode615Gr-1399578675.html"/>
<outline text="NA-614-2014-05-04" created="Sun, 04 May 2014 20:28:13 GMT" domain="614.nashownotes.com" pgfnum="6616" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode614Fr-1399231613.html"/>
<outline text="NA-613-2014-05-01" created="Thu, 01 May 2014 21:44:46 GMT" domain="613.nashownotes.com" pgfnum="6614" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode613Ca-1398976487.html"/>
</outline>
<outline text="June" created="Sun, 01 Jun 2014 20:11:02 GMT" pgfnum="6627">
<outline text="NA-624-2014-06-08" created="Sun, 08 Jun 2014 20:01:58 GMT" domain="624.nashownotes.com" pgfnum="6634" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode624Th-1402255551.html"/>
<outline text="NA-623-2014-06-05" created="Thu, 05 Jun 2014 20:30:27 GMT" domain="623.nashownotes.com" pgfnum="6632" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode623Fa-1401997731.html"/>
<outline text="NA-622-2014-06-01" created="Sun, 01 Jun 2014 20:11:04 GMT" domain="622.nashownotes.com" pgfnum="6628" type="redirect" url="http://adam.curry.com/html/NoAgendaEpisode622Op-1401651007.html"/>
</outline>
</outline>
<outline text="2013" created="Thu, 03 Jan 2013 21:17:52 GMT" pgfnum="923">
<outline text="01" created="Thu, 03 Jan 2013 21:17:58 GMT" pgfnum="924">
<outline text="NA-483-2013-01-31" created="Thu, 31 Jan 2013 22:55:34 GMT" pgfnum="4942" type="link" url="http://483.nashownotes.com/"/>
<outline text="NA-482-2013-01-27" created="Sun, 27 Jan 2013 20:39:00 GMT" pgfnum="4901" type="link" url="http://482.nashownotes.com/"/>
<outline text="NA-481-2013-01-24" created="Thu, 24 Jan 2013 21:24:19 GMT" pgfnum="4867" type="link" url="http://481.nashownotes.com/"/>
<outline text="NA-480-2013-01-20" created="Sun, 20 Jan 2013 21:21:49 GMT" pgfnum="4822" type="link" url="http://480.nashownotes.com/"/>
<outline text="NA-479-2013-01-17" created="Thu, 17 Jan 2013 21:01:30 GMT" pgfnum="4782" type="link" url="http://479.nashownotes.com/"/>
<outline text="NA-478-2013-01-13" created="Sun, 13 Jan 2013 20:43:20 GMT" pgfnum="4733" type="link" url="http://478.nashownotes.com/"/>
<outline text="NA-477-2013-01-10" created="Thu, 10 Jan 2013 21:28:59 GMT" pgfnum="982" type="link" url="http://477.nashownotes.com/"/>
<outline text="NA-476-2013-01-06" created="Sun, 06 Jan 2013 20:55:42 GMT" pgfnum="951" type="link" url="http://476.nashownotes.com/"/>
<outline text="NA-475-2013-01-03" created="Thu, 03 Jan 2013 21:18:07 GMT" pgfnum="925" type="link" url="http://475.nashownotes.com/"/>
</outline>
<outline text="02" created="Sun, 03 Feb 2013 21:07:15 GMT" pgfnum="4984">
<outline text="NA-491-2013-02-28" created="Thu, 28 Feb 2013 22:03:39 GMT" pgfnum="5304" type="link" url="http://491.nashownotes.com/"/>
<outline text="NA-490-2013-02-24" created="Sun, 24 Feb 2013 20:53:35 GMT" pgfnum="5222" type="link" url="http://490.nashownotes.com/"/>
<outline text="NA-489-2013-02-21" created="Thu, 21 Feb 2013 21:38:58 GMT" pgfnum="5181" type="link" url="http://489.nashownotes.com/"/>
<outline text="NA-488-2013-02-17" created="Sun, 17 Feb 2013 22:16:53 GMT" pgfnum="5132" type="link" url="http://488.nashownotes.com/"/>
<outline text="NA-487-2013-02-14" created="Fri, 15 Feb 2013 00:18:30 GMT" pgfnum="5093" type="link" url="http://487.nashownotes.com/"/>
<outline text="NA-486-2013-02-10" created="Sun, 10 Feb 2013 21:35:50 GMT" pgfnum="5079" type="link" url="http://486.nashownotes.com/"/>
<outline text="NA-485-2013-02-07" created="Sun, 10 Feb 2013 14:18:54 GMT" pgfnum="1787" type="link" url="http://485.nashownotes.com/"/>
<outline text="NA-484-2013-02-03" created="Sun, 03 Feb 2013 21:07:17 GMT" pgfnum="4985" type="link" url="http://484.nashownotes.com/"/>
</outline>
<outline text="03" created="Sun, 03 Mar 2013 22:01:05 GMT" pgfnum="5342">
<outline text="NA-492-2013-03-03" created="Sun, 03 Mar 2013 22:01:06 GMT" name="na49220130303" pgfnum="5343" type="link" url="http://492.nashownotes.com/"/>
<outline text="NA-493-2013-03-07" created="Sat, 09 Mar 2013 15:52:42 GMT" name="na49320130307" pgfnum="1838" type="link" url="http://493.nashownotes.com/"/>
<outline text="NA-494-2013-03-10" created="Sun, 10 Mar 2013 21:14:27 GMT" name="na49420130310" pgfnum="5437" type="link" url="http://494.nashownotes.com/"/>
<outline text="NA-495-2013-03-14" created="Thu, 14 Mar 2013 20:12:39 GMT" name="na49520130314" pgfnum="5473" type="link" url="http://495.nashownotes.com/"/>
<outline text="NA-496-2013-03-21" created="Sun, 17 Mar 2013 20:23:41 GMT" name="na49620130321" pgfnum="5505" type="link" url="http://496.nashownotes.com/"/>
<outline text="NA-497-2013-03-21" created="Thu, 21 Mar 2013 20:25:03 GMT" name="na49720130321" pgfnum="5532" type="link" url="http://497.nashownotes.com/"/>
<outline text="NA-498-2013-03-24" created="Sun, 24 Mar 2013 20:08:29 GMT" name="na49820130324" pgfnum="5559" type="link" url="http://498.nashownotes.com/"/>
<outline text="NA-499-2013-03-28" created="Thu, 28 Mar 2013 20:22:45 GMT" name="na49920130328" pgfnum="5616" type="link" url="http://499.nashownotes.com/"/>
<outline text="NA-500-2013-03-31" created="Sun, 31 Mar 2013 20:40:24 GMT" pgfnum="5644" type="link" url="http://500.nashownotes.com/"/>
</outline>
<outline text="04" created="Thu, 04 Apr 2013 23:16:49 GMT" pgfnum="5708">
<outline text="NA-501-2013-04-04" created="Thu, 04 Apr 2013 23:16:51 GMT" name="na50120130404" pgfnum="5709" type="link" url="http://501.nashownotes.com/"/>
<outline text="NA-502-2013-04-07" created="Tue, 09 Apr 2013 01:02:05 GMT" name="na50220130407" pgfnum="1882" type="link" url="http://502.nashownotes.com/"/>
<outline text="NA-503-2013-04-11" created="Fri, 12 Apr 2013 14:12:39 GMT" name="na50320130411" pgfnum="1885" type="link" url="http://503.nashownotes.com/"/>
<outline text="NA-504-2013-04-14" created="Tue, 16 Apr 2013 15:47:27 GMT" name="na50420130414" pgfnum="1886" type="link" url="http://504.nashownotes.com/"/>
<outline text="NA-505-2013-04-18" created="Thu, 18 Apr 2013 20:17:33 GMT" name="na50520130418" pgfnum="5865" type="link" url="http://505.nashownotes.com/"/>
<outline text="NA-506-2013-04-21" created="Tue, 23 Apr 2013 15:34:09 GMT" domain="506.nashownotes.com" name="na50620130421" pgfnum="1888" type="redirect" url="http://static.curry.com/nashownotes/506/index.html"/>
<outline text="NA-507-2013-04-25" created="Thu, 25 Apr 2013 20:13:45 GMT" domain="507.nashownotes.com" name="na50720130425" pgfnum="5894" type="redirect" url="http://static.curry.com/nashownotes/507/index.html"/>
<outline text="NA-508-2013-04-28" created="Sun, 28 Apr 2013 21:00:43 GMT" domain="508.nashownotes.com" pgfnum="5905" type="redirect" url="http://static.curry.com/nashownotes/508/index.html"/>
</outline>
<outline text="05" created="Thu, 02 May 2013 20:46:34 GMT" pgfnum="5919">
<outline text="NA-509-2013-05-02" created="Thu, 02 May 2013 20:46:35 GMT" domain="509.nashownotes.com" name="na50920130502" pgfnum="5920" type="redirect" url="http://static.curry.com/nashownotes/509/index.html"/>
<outline text="NA-510-2013-05-05" created="Sun, 05 May 2013 20:13:08 GMT" domain="510.nashownotes.com" name="na51020130505" pgfnum="5930" type="redirect" url="http://static.curry.com/nashownotes/510/index.html"/>
<outline text="NA-511-2013-05-09" created="Thu, 09 May 2013 20:06:23 GMT" domain="511.nashownotes.com" name="na51120130509" pgfnum="5942" type="redirect" url="http://static.curry.com/nashownotes/511/index.html"/>
<outline text="NA-512-2013-05-12" created="Sun, 12 May 2013 20:34:21 GMT" domain="512.nashownotes.com" name="na51220130512" pgfnum="5952" type="redirect" url="http://static.curry.com/nashownotes/512/index.html"/>
<outline text="NA-513-2013-05-16" created="Thu, 16 May 2013 20:32:44 GMT" domain="513.nashownotes.com" name="na51320130516" pgfnum="5964" type="redirect" url="http://static.curry.com/nashownotes/513/index.html"/>
<outline text="NA-514-2013-05-19" created="Sun, 19 May 2013 20:34:04 GMT" domain="514.nashownotes.com" name="na51420130519" pgfnum="5975" type="redirect" url="http://static.curry.com/nashownotes/514/index.html"/>
<outline text="NA-515-2013-05-23" created="Thu, 23 May 2013 19:58:47 GMT" domain="515.nashownotes.com" name="na51520130523" pgfnum="5985" type="redirect" url="http://static.curry.com/nashownotes/515/index.html"/>
<outline text="NA-516-2013-05-26" created="Sun, 26 May 2013 20:21:55 GMT" domain="516.nashownotes.com" name="na51620130526" pgfnum="5995" type="redirect" url="http://static.curry.com/nashownotes/516/index.html"/>
<outline text="NA-517-2013-05-30" created="Thu, 30 May 2013 20:12:29 GMT" domain="517.nashownotes.com" pgfnum="6006" type="redirect" url="http://static.curry.com/nashownotes/517/index.html"/>
</outline>
<outline text="06" created="Sun, 02 Jun 2013 20:26:45 GMT" pgfnum="6017">
<outline text="NA-518-2013-06-02" created="Sun, 02 Jun 2013 20:26:46 GMT" domain="518.nashownotes.com" name="na51820130602" pgfnum="6018" type="redirect" url="http://static.curry.com/nashownotes/518/index.html"/>
<outline text="NA-519-2013-06-09" created="Thu, 06 Jun 2013 20:03:36 GMT" domain="519.nashownotes.com" name="na51920130609" pgfnum="6028" type="redirect" url="http://static.curry.com/nashownotes/519/index.html"/>
<outline text="NA-520-2013-06-09" created="Sun, 09 Jun 2013 20:25:38 GMT" domain="520.nashownotes.com" name="na52020130609" pgfnum="6039" type="redirect" url="http://static.curry.com/nashownotes/520/index.html"/>
<outline text="NA-521-2013-06-13" created="Thu, 13 Jun 2013 19:59:35 GMT" domain="521.nashownotes.com" name="na52120130613" pgfnum="6054" type="redirect" url="http://static.curry.com/nashownotes/521/index.html"/>
<outline text="NA-522-2013-06-16" created="Sun, 16 Jun 2013 23:04:07 GMT" domain="522.nashownotes.com" name="na52220130616" pgfnum="6066" type="redirect" url="http://static.curry.com/nashownotes/522/index.html"/>
<outline text="NA-523-2013-06-20" created="Thu, 20 Jun 2013 20:23:40 GMT" domain="523.nashownotes.com" name="na52320130620" pgfnum="6077" type="redirect" url="http://static.curry.com/nashownotes/523/index.html"/>
<outline text="NA-524-2013-06-23" created="Sun, 23 Jun 2013 20:14:14 GMT" domain="524.nashownotes.com" name="na52420130623" pgfnum="6087" type="redirect" url="http://static.curry.com/nashownotes/524/index.html"/>
<outline text="NA-525-2013-06-27" created="Thu, 27 Jun 2013 21:07:26 GMT" domain="525.nashownotes.com" name="na52520130627" pgfnum="6097" type="redirect" url="http://static.curry.com/nashownotes/525/index.html"/>
<outline text="NA-526-2013-06-30" created="Sun, 30 Jun 2013 20:33:08 GMT" domain="526.nashownotes.com" pgfnum="6108" type="redirect" url="http://static.curry.com/nashownotes/526/index.html"/>
</outline>
<outline text="07" created="Thu, 04 Jul 2013 21:06:23 GMT" pgfnum="6118">
<outline text="NA-527-2013-07-04" created="Thu, 04 Jul 2013 21:06:24 GMT" domain="527.nashownotes.com" name="na52720130704" pgfnum="6119" type="redirect" url="http://static.curry.com/nashownotes/527/index.html"/>
<outline text="NA-528-2013-07-07" created="Sun, 07 Jul 2013 20:09:53 GMT" domain="528.nashownotes.com" name="na52820130707" pgfnum="6129" type="redirect" url="http://static.curry.com/nashownotes/528/index.html"/>
<outline text="NA-529-2013-07-11" created="Thu, 11 Jul 2013 18:51:50 GMT" domain="529.nashownotes.com" name="na52920130711" pgfnum="6139" type="redirect" url="http://static.curry.com/nashownotes/529/index.html"/>
<outline text="NA-530-2013-07-14" created="Sun, 14 Jul 2013 20:18:21 GMT" domain="530.nashownotes.com" name="na53020130714" pgfnum="6149" type="redirect" url="http://static.curry.com/nashownotes/530/index.html"/>
<outline text="NA-531-2013-07-18" created="Thu, 18 Jul 2013 20:22:21 GMT" domain="531.nashownotes.com" name="na53120130718" pgfnum="6163" type="redirect" url="http://static.curry.com/nashownotes/531/index.html"/>
<outline text="NA-532-2013-07-21" created="Sun, 21 Jul 2013 21:04:41 GMT" domain="532.nashownotes.com" name="na53220130721" pgfnum="1933" type="redirect" url="http://static.curry.com/nashownotes/532/index.html"/>
<outline text="NA-533-2013-07-25" created="Thu, 25 Jul 2013 16:53:40 GMT" domain="533.nashownotes.com" name="na53320130725" pgfnum="985" type="redirect" url="http://static.curry.com/nashownotes/533/index.html"/>
<outline text="NA-534-2013-07-28" created="Sun, 28 Jul 2013 11:23:40 GMT" domain="534.nashownotes.com" name="na53420130728" pgfnum="991" type="redirect" url="http://static.curry.com/nashownotes/534/index.html"/>
</outline>
<outline text="08" created="Thu, 01 Aug 2013 20:10:39 GMT" pgfnum="1954">
<outline text="NA-535-2013-08-01" created="Thu, 01 Aug 2013 20:10:41 GMT" domain="535.nashownotes.com" name="na53520130801" pgfnum="1955" type="redirect" url="http://static.curry.com/nashownotes/535/index.html"/>
<outline text="NA-536-2013-08-04" created="Sun, 04 Aug 2013 20:15:10 GMT" domain="536.nashownotes.com" name="na53620130804" pgfnum="1964" type="redirect" url="http://static.curry.com/nashownotes/536/index.html"/>
<outline text="NA-537-2013-08-08" created="Thu, 08 Aug 2013 20:46:53 GMT" domain="537.nashownotes.com" name="na53720130808" pgfnum="6176" type="redirect" url="http://static.curry.com/nashownotes/537/index.html"/>
<outline text="NA-538-2013-08-11" created="Sun, 11 Aug 2013 20:07:23 GMT" domain="538.nashownotes.com" name="na53820130811" pgfnum="6184" type="redirect" url="http://static.curry.com/nashownotes/538/index.html"/>
<outline text="NA-539-2013-08-15" created="Thu, 15 Aug 2013 20:17:45 GMT" domain="539.nashownotes.com" name="na53920130815" pgfnum="6191" type="redirect" url="http://static.curry.com/nashownotes/539/index.html"/>
<outline text="NA-540-2013-08-18" created="Sun, 18 Aug 2013 20:16:28 GMT" domain="540.nashownotes.com" name="na54020130818" pgfnum="6199" type="redirect" url="http://static.curry.com/nashownotes/540/index.html"/>
<outline text="NA-541-2013-08-22" created="Thu, 22 Aug 2013 20:35:33 GMT" domain="541.nashownotes.com" name="na54120130822" pgfnum="6209" type="redirect" url="http://static.curry.com/nashownotes/541/index.html"/>
<outline text="NA-542-2013-08-25" created="Sun, 25 Aug 2013 19:50:13 GMT" domain="542.nashownotes.com" name="na54220130825" pgfnum="6218" type="redirect" url="http://static.curry.com/nashownotes/542/index.html"/>
<outline text="NA-543-2013-08029" created="Thu, 29 Aug 2013 19:59:57 GMT" domain="543.nashownotes.com" pgfnum="6226" type="redirect" url="http://static.curry.com/nashownotes/543/index.html"/>
</outline>
<outline text="09" created="Sun, 01 Sep 2013 20:05:15 GMT" pgfnum="6234">
<outline text="NA-544-2013-09-01" created="Sun, 01 Sep 2013 20:05:17 GMT" domain="544.nashownotes.com" name="na54420130901" pgfnum="6235" type="redirect" url="http://static.curry.com/nashownotes/544/index.html"/>
<outline text="NA-545-2013-09-05" created="Thu, 05 Sep 2013 21:27:31 GMT" domain="545.nashownotes.com" name="na54520130905" pgfnum="6243" type="redirect" url="http://static.curry.com/nashownotes/545/index.html"/>
<outline text="NA-546-2013-09-08" created="Sun, 08 Sep 2013 19:22:29 GMT" domain="546.nashownotes.com" name="na54620130908" pgfnum="6251" type="redirect" url="http://static.curry.com/nashownotes/546/index.html"/>
<outline text="NA-547-2013-09-12" created="Thu, 12 Sep 2013 19:31:31 GMT" domain="547.nashownotes.com" name="na54720130912" pgfnum="6259" type="redirect" url="http://static.curry.com/nashownotes/547/index.html"/>
<outline text="NA-548-2013-09-15" created="Sun, 15 Sep 2013 19:26:45 GMT" domain="548.nashownotes.com" name="na54820130915" pgfnum="6267" type="redirect" url="http://static.curry.com/nashownotes/548/index.html"/>
<outline text="NA-549-2013-09-19" created="Thu, 19 Sep 2013 20:23:26 GMT" domain="549.nashownotes.com" name="na54920130919" pgfnum="1979" type="redirect" url="http://static.curry.com/nashownotes/549/index.html"/>
<outline text="NA-550-2013-09-22" created="Sun, 22 Sep 2013 19:33:04 GMT" domain="550.nashownotes.com" name="na55020130922" pgfnum="6275" type="redirect" url="http://static.curry.com/nashownotes/550/index.html"/>
<outline text="NA-551-2013-09-26" created="Thu, 26 Sep 2013 20:15:15 GMT" domain="551.nashownotes.com" name="na55120130926" pgfnum="6283" type="redirect" url="http://static.curry.com/nashownotes/551/index.html"/>
<outline text="NA-552-2013-09-29" created="Sun, 29 Sep 2013 19:48:57 GMT" domain="552.nashownotes.com" pgfnum="6295" type="redirect" url="http://static.curry.com/nashownotes/552/index.html"/>
</outline>
<outline text="10" created="Thu, 03 Oct 2013 19:44:38 GMT" pgfnum="6304">
<outline text="NA-553-2013-10-03" created="Thu, 03 Oct 2013 19:44:40 GMT" domain="553.nashownotes.com" name="na55320131003" pgfnum="6305" type="redirect" url="http://static.curry.com/nashownotes/553/index.html"/>
<outline text="NA-554-2013-10-06" created="Sun, 06 Oct 2013 19:30:09 GMT" domain="554.nashownotes.com" name="na55420131006" pgfnum="6313" type="redirect" url="http://static.curry.com/nashownotes/554/index.html"/>
<outline text="NA-555-2013-10-10" created="Thu, 10 Oct 2013 19:28:22 GMT" domain="555.nashownotes.com" name="na55520131010" pgfnum="6328" type="redirect" url="http://static.curry.com/nashownotes/555/index.html"/>
<outline text="NA-556-2013-10-13" created="Sun, 13 Oct 2013 20:06:20 GMT" domain="556.nashownotes.com" name="na55620131013" pgfnum="6335" type="redirect" url="http://static.curry.com/nashownotes/556/index.html"/>
<outline text="NA-557-2013-10-17" created="Thu, 17 Oct 2013 20:30:04 GMT" domain="557.nashownotes.com" name="na55720131017" pgfnum="6343" type="redirect" url="http://static.curry.com/nashownotes/557/index.html"/>
<outline text="NA-558-2013-10-20" created="Sun, 20 Oct 2013 20:17:16 GMT" domain="558.nashownotes.com" name="na55820131020" pgfnum="6351" type="redirect" url="http://static.curry.com/nashownotes/558/index.html"/>
<outline text="NA-559-2013-10-24" created="Thu, 24 Oct 2013 20:40:42 GMT" domain="559.nashownotes.com" name="na55920131024" pgfnum="6359" type="redirect" url="http://static.curry.com/nashownotes/559/index.html"/>
<outline text="NA-560-2013-10-27" created="Sun, 27 Oct 2013 20:14:06 GMT" domain="560.nashownotes.com" name="na56020131027" pgfnum="6366" type="redirect" url="http://static.curry.com/nashownotes/560/index.html"/>
<outline text="NA-561-2013-10-31" created="Thu, 31 Oct 2013 20:46:35 GMT" domain="561.nashownotes.com" pgfnum="6374" type="redirect" url="http://static.curry.com/nashownotes/561/index.html"/>
</outline>
<outline text="11" created="Sun, 03 Nov 2013 21:13:32 GMT" pgfnum="6381">
<outline text="NA-562-2013-11-03" created="Sun, 03 Nov 2013 21:13:35 GMT" domain="562.nashownotes.com" name="na56220131103" pgfnum="6382" type="redirect" url="http://static.curry.com/nashownotes/562/index.html"/>
<outline text="NA-563-2013-11-07" created="Thu, 07 Nov 2013 20:40:53 GMT" domain="563.nashownotes.com" name="na56320131107" pgfnum="6389" type="redirect" url="http://static.curry.com/nashownotes/563/index.html"/>
<outline text="NA-564-2013-11-10" created="Sun, 10 Nov 2013 21:37:39 GMT" domain="564.nashownotes.com" name="na56420131110" pgfnum="6398" type="redirect" url="http://static.curry.com/nashownotes/564/index.html"/>
<outline text="NA-565-2013-11-14" created="Thu, 14 Nov 2013 21:15:32 GMT" domain="565.nashownotes.com" name="na56520131114" pgfnum="6406" type="redirect" url="http://static.curry.com/nashownotes/565/index.html"/>
<outline text="NA-566-2013-11-17" created="Sun, 17 Nov 2013 20:36:06 GMT" domain="566.nashownotes.com" name="na56620131117" pgfnum="1986" type="redirect" url="http://static.curry.com/nashownotes/566/index.html"/>
<outline text="NA-567-2013-11-21" created="Thu, 21 Nov 2013 19:32:20 GMT" domain="567.nashownotes.com" name="na56720131121" pgfnum="1993" type="redirect" url="http://static.curry.com/nashownotes/567/index.html"/>
<outline text="NA-568-2013-11-24" created="Sun, 24 Nov 2013 20:42:35 GMT" domain="568.nashownotes.com" name="na56820131124" pgfnum="6414" type="redirect" url="http://static.curry.com/nashownotes/568/index.html"/>
<outline text="NA-569-2013-11-28" created="Thu, 28 Nov 2013 21:04:51 GMT" domain="569.nashownotes.com" name="na56920131128" pgfnum="6424" type="redirect" url="http://static.curry.com/nashownotes/569/index.html"/>
</outline>
<outline text="12" created="Sun, 01 Dec 2013 21:14:47 GMT" pgfnum="6431">
<outline text="NA-570-2013-12-01" created="Sun, 01 Dec 2013 21:14:51 GMT" domain="570.nashownotes.com" name="na57020131201" pgfnum="6432" type="redirect" url="http://static.curry.com/nashownotes/570/index.html"/>
<outline text="NA-571-2013-12-05" created="Thu, 05 Dec 2013 21:32:45 GMT" domain="571.nashownotes.com" name="na57120131205" pgfnum="6440" type="redirect" url="http://static.curry.com/nashownotes/571/index.html"/>
<outline text="NA-572-2013-12-08" created="Sun, 08 Dec 2013 20:51:58 GMT" domain="572.nashownotes.com" name="na57220131208" pgfnum="6448" type="redirect" url="http://static.curry.com/nashownotes/572/index.html"/>
<outline text="NA-573-2012-12-12" created="Thu, 12 Dec 2013 20:04:20 GMT" domain="573.nashownotes.com" name="na57320121212" pgfnum="6455" type="redirect" url="http://static.curry.com/nashownotes/573/index.html"/>
<outline text="NA-574-2013-12-15" created="Sun, 15 Dec 2013 20:54:28 GMT" domain="574.nashownotes.com" name="na57420131215" pgfnum="6462" type="redirect" url="http://static.curry.com/nashownotes/574/index.html"/>
<outline text="NA-575-2013-12-19" created="Thu, 19 Dec 2013 20:49:52 GMT" domain="575.nashownotes.com" name="na57520131219" pgfnum="6470" type="redirect" url="http://static.curry.com/nashownotes/575/index.html"/>
<outline text="NA-576-2013-12-22" created="Sun, 22 Dec 2013 20:56:50 GMT" domain="576.nashownotes.com" name="na57620131222" pgfnum="6478" type="redirect" url="http://static.curry.com/nashownotes/576/index.html"/>
<outline text="NA-577-2013-12-26" created="Thu, 26 Dec 2013 21:10:05 GMT" domain="577.nashownotes.com" name="na57720131226" pgfnum="6485" type="redirect" url="http://static.curry.com/nashownotes/577/index.html"/>
<outline text="NA-578-2013-12-29" created="Sun, 29 Dec 2013 21:19:35 GMT" domain="578.nashownotes.com" pgfnum="6495" type="redirect" url="http://static.curry.com/nashownotes/578/index.html"/>
</outline>
</outline>
<outline text="2012" created="Thu, 29 Dec 2011 21:45:26 GMT" pgfnum="145">
<outline text="12" created="Sun, 02 Dec 2012 21:39:35 GMT" pgfnum="4692">
<outline text="NA-474-2012-12-30" created="Mon, 31 Dec 2012 13:10:45 GMT" pgfnum="1742" type="link" url="http://474.nashownotes.com/"/>
<outline text="NA-473-2012-12-27" created="Thu, 27 Dec 2012 20:26:46 GMT" pgfnum="859" type="link" url="http://473.nashownotes.com/"/>
<outline text="NA-472-2012-12-23" created="Sun, 23 Dec 2012 21:27:15 GMT" pgfnum="821" type="link" url="http://472.nashownotes.com/"/>
<outline text="NA-471-2012-12-20" created="Thu, 20 Dec 2012 20:45:39 GMT" pgfnum="786" type="link" url="http://471.nashownotes.com/"/>
<outline text="NA-470-2012-12-16" created="Sun, 16 Dec 2012 20:51:25 GMT" name="na47020121216" pgfnum="764" type="link" url="http://470.nashownotes.com/"/>
<outline text="NA-469-2012-12-13" created="Thu, 13 Dec 2012 21:23:53 GMT" pgfnum="731" type="link" url="http://469.nashownotes.com/"/>
<outline text="NA-468-2012-12-09" created="Sun, 09 Dec 2012 21:25:23 GMT" pgfnum="689" type="link" url="http://468.nashownotes.com/"/>
<outline text="NA-467-2012-12-06" created="Thu, 06 Dec 2012 22:09:43 GMT" pgfnum="670" type="link" url="http://467.nashownotes.com/"/>
<outline text="NA-466-2012-12-02" created="Sun, 02 Dec 2012 21:39:38 GMT" pgfnum="4693" type="link" url="http://466.nashownotes.com/"/>
</outline>
<outline text="11" created="Sun, 04 Nov 2012 23:43:41 GMT" pgfnum="1545">
<outline text="NA-465-2012-11-29" created="Thu, 29 Nov 2012 21:38:07 GMT" name="na46520121129" pgfnum="4661" type="link" url="http://465.nashownotes.com/"/>
<outline text="NA-464-2012-11-25" created="Sun, 25 Nov 2012 21:33:59 GMT" pgfnum="1603" type="link" url="http://464.nashownotes.com/"/>
<outline text="NA-463-2012-11-22" created="Thu, 22 Nov 2012 22:16:12 GMT" pgfnum="4577" type="link" url="http://463.nashownotes.com/"/>
<outline text="NA-462-2012-11-18" created="Sun, 18 Nov 2012 21:07:43 GMT" pgfnum="4541" type="link" url="http://462.nashownotes.com/"/>
<outline text="NA-461-2012-11-15" created="Fri, 16 Nov 2012 16:01:08 GMT" pgfnum="1592" type="link" url="http://461.nashownotes.com/"/>
<outline text="NA-460-2012-11-11" created="Sun, 11 Nov 2012 21:17:34 GMT" pgfnum="4476" type="link" url="http://460.nashownotes.com/"/>
<outline text="NA-459-2012-11-08" created="Sun, 11 Nov 2012 21:17:12 GMT" pgfnum="4475" type="link" url="http://459.nashownotes.com/"/>
<outline text="NA-458-2012-11-04" created="Sun, 04 Nov 2012 23:43:53 GMT" name="na45820121104" pgfnum="1547" type="link" url="http://458.nashownotes.com/"/>
<outline text="NA-457-2012-11-01" created="Sun, 04 Nov 2012 23:43:42 GMT" name="na45720121104" pgfnum="1546" type="link" url="http://457.nashownotes.com/"/>
</outline>
<outline text="10" created="Thu, 04 Oct 2012 21:18:49 GMT" pgfnum="1394">
<outline text="NA-456-2012-10-28" created="Wed, 31 Oct 2012 06:01:02 GMT" pgfnum="1505" type="link" url="http://456.nashownotes.com/"/>
<outline text="NA-455-2012-10-25" created="Fri, 26 Oct 2012 20:11:46 GMT" pgfnum="1501" type="link" url="http://455.nashownotes.com/"/>
<outline text="NA-454-2012-10-21" created="Sun, 21 Oct 2012 20:14:44 GMT" pgfnum="4320" type="link" url="http://454.nashownotes.com/"/>
<outline text="NA-453-2012-10-18" created="Thu, 18 Oct 2012 20:40:33 GMT" pgfnum="4285" type="link" url="http://453.nashownotes.com/"/>
<outline text="NA-452-2012-10-14" created="Mon, 15 Oct 2012 04:36:04 GMT" pgfnum="1454" type="link" url="http://452.nashownotes.com/"/>
<outline text="NA-451-2012-10-11" created="Mon, 15 Oct 2012 04:35:55 GMT" pgfnum="1453" type="link" url="http://451.nashownotes.com/"/>
<outline text="NA-450-2012-10-07" created="Sun, 07 Oct 2012 21:01:13 GMT" pgfnum="1434" type="link" url="http://450.nashownotes.com/"/>
<outline text="NA-449-2012-10-04" created="Thu, 04 Oct 2012 21:18:51 GMT" pgfnum="1395" type="link" url="http://449.nashownotes.com/"/>
</outline>
<outline text="09" created="Sun, 02 Sep 2012 20:36:08 GMT" pgfnum="4049">
<outline text="NA-448-2012-09-30" created="Sun, 30 Sep 2012 19:31:33 GMT" pgfnum="1309" type="link" url="http://448.nashownotes.com/"/>
<outline text="NA-447-2012-09-27" created="Thu, 27 Sep 2012 18:05:55 GMT" pgfnum="1275" type="link" url="http://447.nashownotes.com/"/>
<outline text="NA-446-2012-09-23" created="Sun, 23 Sep 2012 21:09:34 GMT" pgfnum="4201" type="link" url="http://446.nashownotes.com/"/>
<outline text="NA-445-2012-09-20" created="Thu, 20 Sep 2012 20:14:23 GMT" pgfnum="1204" type="link" url="http://445.nashownotes.com/"/>
<outline text="NA-444-2012-09-16" created="Sun, 16 Sep 2012 20:22:35 GMT" pgfnum="4170" type="link" url="http://444.nashownotes.com/"/>
<outline text="NA-443-2012-09-13" created="Thu, 13 Sep 2012 21:23:04 GMT" pgfnum="1116" type="link" url="http://443.nashownotes.com/"/>
<outline text="NA-442-2012-09-09" created="Mon, 10 Sep 2012 16:32:59 GMT" pgfnum="1099" type="link" url="http://442.nashownotes.com/"/>
<outline text="NA-441-2012-09-06" created="Thu, 06 Sep 2012 20:23:02 GMT" pgfnum="4075" type="link" url="http://441.nashownotes.com/"/>
<outline text="NA-440-2012-09-02" created="Sun, 02 Sep 2012 20:36:09 GMT" name="na44020120902" pgfnum="4050" type="link" url="http://440.nashownotes.com/"/>
</outline>
<outline text="08" created="Fri, 03 Aug 2012 21:12:34 GMT" pgfnum="1032">
<outline text="NA-439-2012-08-30" created="Thu, 30 Aug 2012 20:36:50 GMT" pgfnum="4010" type="link" url="http://439.nashownotes.com/"/>
<outline text="NA-438-2012-08-26" created="Sun, 26 Aug 2012 20:14:04 GMT" pgfnum="3970" type="link" url="http://438.nashownotes.com/"/>
<outline text="NA-437-2012-08-23" created="Thu, 23 Aug 2012 19:51:00 GMT" pgfnum="3925" type="link" url="http://437.nashownotes.com/"/>
<outline text="NA-436-2012-08-19" created="Sun, 19 Aug 2012 21:11:16 GMT" pgfnum="3874" type="link" url="http://436.nashownotes.com/"/>
<outline text="NA-435-2012-08-16" created="Thu, 16 Aug 2012 20:42:24 GMT" name="na43520120816" pgfnum="3825" type="link" url="http://435.nashownotes.com/"/>
<outline text="NA-434-2012-08-12" created="Wed, 15 Aug 2012 16:07:17 GMT" pgfnum="1041" type="link" url="http://434.nashownotes.com/"/>
<outline text="NA-433-2012-08-09" created="Thu, 09 Aug 2012 19:53:07 GMT" name="na43320120809" pgfnum="3760" type="link" url="http://433.nashownotes.com/"/>
<outline text="NA-432-2012-08-05" created="Sun, 05 Aug 2012 20:10:34 GMT" pgfnum="3712" type="link" url="http://432.nashownotes.com/"/>
<outline text="NA-431-2012-08-02" created="Fri, 03 Aug 2012 21:12:39 GMT" name="na43120120802" pgfnum="1033" type="link" url="http://431.nashownotes.com/"/>
</outline>
<outline text="07" created="Sun, 01 Jul 2012 19:26:54 GMT" pgfnum="3375">
<outline text="NA-430-2012-07-29" created="Tue, 31 Jul 2012 12:43:03 GMT" pgfnum="1031" type="link" url="http://430.nashownotes.com/"/>
<outline text="NA-429-2012-07-26" created="Fri, 27 Jul 2012 14:34:30 GMT" pgfnum="1030" type="link" url="http://429.nashownotes.com/"/>
<outline text="NA-428-2012-07-22" created="Mon, 23 Jul 2012 16:08:18 GMT" pgfnum="1013" type="link" url="http://428.nashownotes.com/"/>
<outline text="NA-427-2012-07-19" created="Fri, 20 Jul 2012 14:29:54 GMT" name="na42720120719" pgfnum="3469" type="link" url="http://427.nashownotes.com/"/>
<outline text="NA-426-2012-07-15" created="Tue, 17 Jul 2012 05:24:36 GMT" pgfnum="1000" type="link" url="http://426.nashownotes.com/"/>
<outline text="NA-425-2012-07-12" created="Thu, 12 Jul 2012 15:41:24 GMT" pgfnum="993" type="link" url="http://425.nashownotes.com/"/>
<outline text="NA-424-2012-07-08" created="Sun, 08 Jul 2012 19:38:35 GMT" pgfnum="3424" type="link" url="http://424.nashownotes.com/"/>
<outline text="NA-423-2012-07-05" created="Sun, 08 Jul 2012 19:38:28 GMT" pgfnum="3423" type="link" url="http://423.nashownotes.com/"/>
<outline text="NA-422-2012-07-01" created="Sun, 01 Jul 2012 19:26:57 GMT" pgfnum="3376" type="link" url="http://422.nashownotes.com/"/>
</outline>
<outline text="06" created="Thu, 31 May 2012 20:28:05 GMT" pgfnum="2684">
<outline text="NA-421-2012-06-28" created="Fri, 29 Jun 2012 03:50:21 GMT" pgfnum="985" type="link" url="http://421.nashownotes.com/"/>
<outline text="NA-420-2012-06-24" created="Mon, 25 Jun 2012 19:08:08 GMT" pgfnum="3280" type="link" url="http://420.nashownotes.com/"/>
<outline text="NA-419-2012-06-21" created="Thu, 21 Jun 2012 20:49:44 GMT" pgfnum="3223" type="link" url="http://419.nashownotes.com/"/>
<outline text="NA-418-2012-06-17" created="Sun, 17 Jun 2012 20:38:00 GMT" pgfnum="3154" type="link" url="http://418.nashownotes.com/"/>
<outline text="NA-417-2012-06-14" created="Thu, 14 Jun 2012 21:26:06 GMT" pgfnum="3097" type="link" url="http://417.nashownotes.com/"/>
<outline text="NA-416-2012-06-10" created="Sun, 10 Jun 2012 20:29:39 GMT" pgfnum="3038" type="link" url="http://416.nashownotes.com/"/>
<outline text="NA-415-2012-06-07" created="Thu, 07 Jun 2012 20:41:15 GMT" name="na41520120607" pgfnum="2945" type="link" url="http://415.nashownotes.com/"/>
<outline text="NA-414-2012-06-03" created="Thu, 31 May 2012 20:28:08 GMT" name="na41420120603" pgfnum="2685" type="link" url="http://414.nashownotes.com/"/>
</outline>
<outline text="05" created="Thu, 03 May 2012 20:10:19 GMT" pgfnum="2159">
<outline text="NA-413-2012-05-31" created="Thu, 31 May 2012 20:28:18 GMT" pgfnum="2686" type="link" url="http://413.nashownotes.com/"/>
<outline text="NA-412-2012-05-27" created="Sun, 27 May 2012 19:59:01 GMT" pgfnum="2622" type="link" url="http://412.nashownotes.com/"/>
<outline text="NA-411-2012-05-24" created="Thu, 24 May 2012 20:12:22 GMT" pgfnum="2570" type="link" url="http://411.nashownotes.com/"/>
<outline text="NA-410-2012-05-20" created="Sun, 20 May 2012 20:16:31 GMT" pgfnum="2507" type="link" url="http://410.nashownotes.com/"/>
<outline text="NA-409-2012-05-17" created="Thu, 17 May 2012 20:00:29 GMT" pgfnum="2472" type="link" url="http://409.nashownotes.com/"/>
<outline text="NA-408-2012-05-13" created="Sun, 13 May 2012 02:57:05 GMT" pgfnum="2371" type="link" url="http://408.nashownotes.com/"/>
<outline text="NA-407-2012-05-10" created="Sun, 13 May 2012 02:56:55 GMT" pgfnum="2370" type="link" url="http://407.nashownotes.com/"/>
<outline text="NA-406-2012-05-06" created="Sun, 06 May 2012 20:02:21 GMT" pgfnum="2244" type="link" url="http://406.nashownotes.com/"/>
<outline text="NA-405-2012-05-03" created="Thu, 03 May 2012 20:10:20 GMT" pgfnum="2160" type="link" url="http://405.nashownotes.com/"/>
</outline>
<outline text="04" created="Thu, 05 Apr 2012 20:58:52 GMT" pgfnum="1598">
<outline text="NA-404-2012-04-29" created="Sun, 29 Apr 2012 19:28:44 GMT" pgfnum="2090" type="link" url="http://404.nashownotes.com/"/>
<outline text="NA-403-2012-04-26" created="Sun, 29 Apr 2012 19:28:36 GMT" pgfnum="2089" type="link" url="http://403.nashownotes.com/"/>
<outline text="NA-402-2012-04-22" created="Sun, 29 Apr 2012 19:28:17 GMT" pgfnum="2088" type="link" url="http://402.nashownotes.com/"/>
<outline text="NA-401-2012-04-19" created="Fri, 20 Apr 2012 20:30:53 GMT" pgfnum="1863" type="link" url="http://401.nashownotes.com/"/>
<outline text="NA-400-2012-04-15" created="Sun, 15 Apr 2012 19:57:30 GMT" pgfnum="1789" type="link" url="http://400.nashownotes.com/"/>
<outline text="NA-399-2012-04-12" created="Sun, 15 Apr 2012 19:57:20 GMT" pgfnum="1788" type="link" url="http://399.nashownotes.com/"/>
<outline text="NA-398-2012-04-08" created="Sun, 08 Apr 2012 20:02:35 GMT" pgfnum="1643" type="link" url="http://398.nashownotes.com/"/>
<outline text="NA-397-2012-04-05" created="Thu, 05 Apr 2012 20:59:06 GMT" pgfnum="1600" type="link" url="http://397.nashownotes.com/"/>
<outline text="NA-396-2012-04-01" created="Thu, 05 Apr 2012 20:58:54 GMT" pgfnum="1599" type="link" url="http://396.nashownotes.com/"/>
</outline>
<outline text="03" created="Sat, 03 Mar 2012 06:34:21 GMT" pgfnum="953">
<outline text="NA-395-2012-03-29" created="Thu, 29 Mar 2012 20:27:55 GMT" pgfnum="1470" type="link" url="http://395.nashownotes.com/"/>
<outline text="NA-394-2012-03-25" created="Thu, 29 Mar 2012 20:27:36 GMT" pgfnum="1469" type="link" url="http://394.nashownotes.com/"/>
<outline text="NA-393-2012-03-22" created="Sat, 24 Mar 2012 10:34:30 GMT" pgfnum="276" type="link" url="http://393.nashownotes.com/"/>
<outline text="NA-392-2012-03-18" created="Sun, 18 Mar 2012 20:14:35 GMT" pgfnum="1279" type="link" url="http://392.nashownotes.com/"/>
<outline text="NA-391-2012-03-15" created="Sun, 18 Mar 2012 20:14:09 GMT" pgfnum="1278" type="link" url="http://391.nashownotes.com/"/>
<outline text="NA-390-2012-03-11" created="Sun, 11 Mar 2012 21:57:39 GMT" pgfnum="1156" type="link" url="http://390.nashownotes.com/"/>
<outline text="NA-389-2012-03-08" created="Sun, 11 Mar 2012 21:57:25 GMT" pgfnum="1155" type="link" url="http://389.nashownotes.com/"/>
<outline text="NA-388-2012-03-04" created="Tue, 06 Mar 2012 03:20:28 GMT" pgfnum="1034" type="link" url="http://388.nashownotes.com/"/>
<outline text="NA-387-2012-03-01" created="Sat, 03 Mar 2012 06:33:54 GMT" pgfnum="952" type="link" url="http://387.nashownotes.com/"/>
</outline>
<outline text="02" created="Fri, 03 Feb 2012 03:12:46 GMT" pgfnum="542">
<outline text="NA-386-2012-02-26" created="Sun, 26 Feb 2012 21:56:20 GMT" pgfnum="858" type="link" url="http://386.nashownotes.com/"/>
<outline text="NA-385-2012-02-23" created="Thu, 23 Feb 2012 21:39:24 GMT" pgfnum="797" type="link" url="http://385.nashownotes.com/"/>
<outline text="NA-384-2012-02-19" created="Sun, 19 Feb 2012 21:14:46 GMT" pgfnum="752" type="link" url="http://384.nashownotes.com/"/>
<outline text="NA-383-2012-02-16" created="Thu, 16 Feb 2012 20:41:53 GMT" pgfnum="684" type="include" url="http://static.curry.com/worldoutline/admin/2012/02/16/archive216.opml"/>
<outline text="NA-382-2012-02-12" created="Mon, 13 Feb 2012 00:22:43 GMT" pgfnum="594" type="include" url="http://static.curry.com/worldoutline/admin/2012/02/12/archive209.opml"/>
<outline text="NA-381-2012-02-09" created="Mon, 13 Feb 2012 00:23:29 GMT" pgfnum="595" type="include" url="http://static.curry.com/worldoutline/admin/2012/02/09/archive205.opml"/>
<outline text="NA-380-2012-02-05" created="Mon, 06 Feb 2012 05:09:15 GMT" pgfnum="514" type="include" url="http://static.curry.com/worldoutline/admin/2012/02/05/archive202.opml"/>
<outline text="NA-379-2012-01-02" created="Fri, 03 Feb 2012 03:12:48 GMT" pgfnum="543" type="include" url="http://static.curry.com/worldoutline/admin/2012/02/02/archive197.opml"/>
</outline>
<outline text="01" created="Thu, 29 Dec 2011 21:45:28 GMT" pgfnum="146">
<outline text="NA-378-2012-01-26" created="Mon, 30 Jan 2012 23:02:39 GMT" pgfnum="344" type="include" url="http://static.curry.com/worldoutline/admin/2012/01/29/archive189.opml"/>
<outline text="NA-377-2012-01-24" created="Mon, 30 Jan 2012 23:03:49 GMT" pgfnum="345" type="include" url="http://static.curry.com/worldoutline/admin/2012/01/22/archive186.opml"/>
<outline text="NA-376-2012-01-22" created="Sun, 22 Jan 2012 20:56:44 GMT" pgfnum="583" type="include" url="http://static.curry.com/worldoutline/admin/2012/01/19/archive184.opml"/>
<outline text="NA-375-2012-01-19" created="Sun, 22 Jan 2012 20:56:58 GMT" pgfnum="584" type="include" url="http://static.curry.com/worldoutline/admin/2012/01/15/archive178.opml"/>
<outline text="NA-374-2012-01-15" created="Sun, 15 Jan 2012 21:41:22 GMT" pgfnum="247" type="include" url="http://static.curry.com/worldoutline/admin/2012/01/12/archive173.opml"/>
<outline text="NA-373-2012-01-12" type="include" url="http://static.curry.com/worldoutline/admin/2012/01/08/archive162.opml"/>
<outline text="NA-372-2012-01-08" type="include" url="http://static.curry.com/worldoutline/admin/2012/01/06/archive154.opml"/>
<outline text="NA-371-2012-01-05" created="Sun, 01 Jan 2012 20:09:34 GMT" domain="371.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2012/01/05/371art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named 371art.jpg">" pgfnum="156" styles="divDirectoryTitle display: none" type="include" url="http://static.curry.com/worldoutline/admin/2012/01/06/archive153.opml"/>
<outline text="NA-370-2012-01-01" created="Thu, 29 Dec 2011 21:45:30 GMT" domain="370.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2012/01/01/na370art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na370art.jpg">" pgfnum="147" type="include" url="http://static.curry.com/worldoutline/admin/2012/01/06/archive152.opml"/>
</outline>
</outline>
<outline text="2011">
<outline text="12" created="Sun, 27 Nov 2011 20:07:38 GMT" pgfnum="15">
<outline text="NA-369-2011-12-29" created="Thu, 29 Dec 2011 20:24:56 GMT" domain="369.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/12/29/na369art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na369art.jpg">" pgfnum="138">
<outline text="Episode Webpage" created="Thu, 29 Dec 2011 20:25:12 GMT" pgfnum="139" type="link" url="http://blog.curry.com/stories/2011/12/29/na36920111229.html"/>
<outline text="<embed type="application/x-shockwave-flash" src="http://www.dvorak.org/blog/wp-content/uploads/2008/01/playersingle.swf" id="mymovie" name="mymovie" quality="high" flashvars="autoPlay=no&amp;soundPath=http://m.podshow.com/media/15412/episodes/307429/noagenda-307429-12-29-2011.mp3&overColor=#ff0000" height="80" ></embed>" created="Thu, 21 Apr 2011 21:11:50 GMT" pgfnum="1045"/>
<outline text="Shownotes" created="Thu, 29 Dec 2011 20:25:21 GMT" pgfnum="141" type="outline" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/na369opml.opml"/>
<outline text="Cover Art" created="Thu, 29 Dec 2011 20:25:23 GMT" pgfnum="142" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/na369art.jpg"/>
<outline text="Assets">
<outline text="End of Show">
<outline text="Sir Jordan of NZ.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/End of Show/Sir Jordan of NZ.mp3"/>
</outline>
<outline text="Gitmo Nation">
<outline text="luisiana wants troops.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/Gitmo Nation/luisiana wants troops.mp3"/>
</outline>
<outline text="Haiti">
<outline text="UN sued over cholera.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/Haiti/UN sued over cholera.mp3"/>
</outline>
<outline text="JCD Clips">
<outline text="attack certain feb 2010.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/JCD Clips/attack certain feb 2010.mp3"/>
<outline text="ron paul newsletter.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/JCD Clips/ron paul newsletter.mp3"/>
<outline text="ron paul sniggering.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/JCD Clips/ron paul sniggering.mp3"/>
</outline>
<outline text="Ministry of Truth">
<outline text="ABC report from soros.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/Ministry of Truth/ABC report from soros.mp3"/>
<outline text="BILLS-112hr3765eh.pdf" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/Ministry of Truth/BILLS-112hr3765eh.pdf"/>
<outline text="Japanese debris animation.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/Ministry of Truth/Japanese debris animation.mp3"/>
</outline>
<outline text="na369art.jpg" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/na369art.jpg"/>
<outline text="Obama">
<outline text="biden on corzine.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/Obama/biden on corzine.mp3"/>
</outline>
<outline text="Out There">
<outline text="chavesUScancerMachine.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/Out There/chavesUScancerMachine.mp3"/>
<outline text="xmas ufos in euroland.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/Out There/xmas ufos in euroland.mp3"/>
</outline>
<outline text="PR">
<outline text="Nike PR gets out of hand.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/PR/Nike PR gets out of hand.mp3"/>
</outline>
<outline text="Ron Paul">
<outline text="Eric Dondero stumbles.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/Ron Paul/Eric Dondero stumbles.mp3"/>
<outline text="morning joe anti-semitisim.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/Ron Paul/morning joe anti-semitisim.mp3"/>
<outline text="RP-rabinowitz hit job.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/Ron Paul/RP-rabinowitz hit job.mp3"/>
</outline>
<outline text="Squirrel!">
<outline text="state on reward.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/Squirrel!/state on reward.mp3"/>
</outline>
<outline text="Techno Experts">
<outline text="NATO excercise.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/Techno Experts/NATO excercise.mp3"/>
<outline text="threat-predictions-2012.pdf" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/Techno Experts/threat-predictions-2012.pdf"/>
</outline>
<outline text="Xfactor">
<outline text="cnn-santorum.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-369-2011-12-29/Assets/Xfactor/cnn-santorum.mp3"/>
</outline>
</outline>
<outline text="Direct link to the mp3 file" created="Thu, 29 Dec 2011 20:25:28 GMT" pgfnum="144" type="link" url="http://m.podshow.com/media/15412/episodes/307429/noagenda-307429-12-29-2011.mp3"/>
<outline text="HowTo on designing this page" type="link" url="http://templates.worldoutline.org/"/>
<outline text="Design this page!" type="link" url="http://blog.curry.com/stories/2011/05/27/noAgendaShownotesDesignCha.html"/>
<outline text="<a href="http://dvorak.org/na"></a><a href="http://dvorak.org/na">Support our work and the show</a>" type="link" url="http://dvorak.org/na"/>
<outline text="Subscribe to our <a href="http://mevio.com/feeds/noagenda.xml">Podcast Feed</a>" created="Sun, 19 Jun 2011 20:23:49 GMT" pgfnum="1313" type="link" url="http://mevio.com/feeds/noagenda.xml"/>
<outline text="The No Agenda News Network- <a href="http://noagendanewsnetwork.com/">noagendanewsnetwork.com</a>" type="link" url="http://noagendanewsnetwork.com/"/>
<outline text="All the No Agenda Stream Podcasts and Feeds on One Page" type="link" url="http://podcasts.nashownotes.com/"/>
<outline text="<a href="http://www.dvorak.org/blog/no-agenda-mailing-list-signup-here/">Join</a> the Mailing List!" created="Sun, 16 Oct 2011 20:23:31 GMT" pgfnum="1590"/>
<outline text="Spiders Index Here" created="Thu, 22 Dec 2011 21:08:52 GMT" ctSaves="30" flLiveBlog="true" flNotInChronology="true" flPreview="false" id="2011.12.22.407" server="xmlrpc://ec2.curry.com:5337/RPC2" storySerialNum="407" type="scripting2Post" url="http://blog.curry.com/stories/2011/12/22/na368showprep.html" username="adam" versionClient="0.44" versionServer="0.44" whenLastSave="Thu, 29 Dec 2011 16:22:24 GMT">
<outline text="Search" type="redirect" url="http://search.nashownotes.com"/>
<outline text="Ministry of Truth">
<outline text="Confused by the "Recapture" Provision of the Temporary Payroll Tax Cut Continuation Act of 2011? Me, Too!">
<outline text="Knowing that, the "recapture" provision must be Congress' way of saying "anyone who makes over $110,100 per year (or $18,350 over the course of two months) doesn't get a Social Security tax cut on wages exceeding those amounts because they wouldn't have to pay Social Security taxes on the excess anyway." In other words, high income taxpayers must pay back any excess benefit received due to the payroll tax cut. " type="link" url="http://www.taxesandstuff.com/2011/12/confused-by-the-recapture-provision-of-the-temporary-payroll-tax-cut-continuation-act-of-2011-me-too/"/>
<outline text=""/>
<outline text="According to the Journal of Accountancy, the law was written this way to keep things simple for employers -- they simply apply the tax cut across the board and the burden or reimbursing the federal government for any excess tax benefit falls on the high income employees' shoulders. It actually seems more complicated to me this way, but I have never been asked to draft a tax bill before. ;)"/>
</outline>
<outline text="Presidential Proclamation -- National Stalking Awareness Month, 2012 | The White House">
<outline text="In our schools and in our neighborhoods, at home and in workplaces across our Nation, stalking endangers the physical and emotional well being of millions of American men and women every year. Too often, stalking goes unreported and unaddressed, and we must take action against this unacceptable abuse. This month, we stand with all those who have been affected by stalking and strengthen our resolve to prevent this crime before it occurs." type="link" url="http://www.whitehouse.gov/the-press-office/2011/12/28/presidential-proclamation-national-stalking-awareness-month-2012"/>
</outline>
<outline text="The Pentagon and its Sock Puppets | StratRisks">
<outline text="The internal review also apparently found no fault with the exclusion of four individuals precisely because they refused to be sock puppets, speaking critically of some Pentagon decisions. One of them, General Wesley Clark, apparently lost his position as an analyst for CNN because of Pentagon and White House displeasure with what he had to say." type="link" url="http://stratrisks.com/geostrat/3313"/>
</outline>
<outline text="New York Times Staffers Express 'Profound Dismay' With Management">
<outline text="New York Times staffers unhappy with management are letting publisher Arthur Sulzberger Jr. know it. In recent days, more than 270 current and former Times employees have signed an open letter expressing their "profound dismay" with recent company decisions." type="link" url="http://www.huffingtonpost.com/2011/12/26/new-york-times-arthur-sulzberger-letter_n_1170401.html"/>
<outline text=""/>
<outline text="Bill O'Meara, president of the New York Newspaper Guild, said some staffers had considered even "more dramatic" actions."/>
<outline text=""/>
<outline text=""There were people who wanted to storm Arthur Sulzberger's office," O'Meara told The Huffington Post. "There were people who wanted to stage a walkout.""/>
</outline>
<outline text="When it Rains, it Pours: The New York Times Fumbles into the New Year-|-NYTimes eXaminer">
<outline text="The New York Times has experienced a dramatic series of changes closing out this year and that seem to cast the shadow of instability over the "paper of record" as it enters into 2012." type="link" url="http://www.nytexaminer.com/2011/12/when-it-rains-it-pours-the-new-york-times-fumbles-into-the-new-year/"/>
<outline text=""/>
<outline text="This month alone delivered news of massive changes including CEO Janet Robinson's departure from the Times, as well as more than ten buyouts of long-time columnists and editorial staffers."/>
<outline text=""/>
<outline text="If this news wasn't enough, the Times also recently announced the sale of 16 local papers that made up its regional media group, and the Newspaper Guild of New York has strongly expressed worker dissatisfaction with Times managerial practices."/>
<outline text=""/>
<outline text="The Times put icing on its own cake yesterday when it mistakenly sent 8.6 million confusing e-mails notifying recipients that they, the subscriber, had requested cancellation of their own home delivery service."/>
<outline text=""/>
<outline text="The e-mail, which was supposed to be sent to only 300 recipients but was mailed to anyone who had an e-mail on the Times list, explained:"/>
</outline>
<outline text="Report on Congress making more money"/>
<outline text="OpenSecrets.org: Money in Politics -- See Who's Giving & Who's Getting">
<outline text="Dec 24 - The Center for Responsive Politics will be closed between Saturday, Dec. 24, and Monday, Jan. 2, for the Christmas and New Year's holidays." type="link" url="http://www.opensecrets.org/index.php"/>
</outline>
</outline>
<outline text="Haiti">
<outline text="Institute for Justice & Democracy in Haiti >> What We-Do" type="link" url="http://ijdh.org/who_we_are/goals"/>
<outline text="ONEXONE - Who We Are : Our Team" type="link" url="http://www.onexone.org/who-we-are-team.php"/>
</outline>
<outline text="Gold/PR">
<outline text="Pulitzer Center on Crisis Reporting - Wikipedia, the free encyclopedia">
<outline text="The Pulitzer Center on Crisis Reporting is an American news media organization established in 2006 that sponsors independent reporting that other media outlets are less willing or able to undertake on their own. The Center's goal is to raise the standard of coverage of global affairs, and to do so in a way that engages both the broad public and government policy-makers. The organization is based in Washington, D.C." type="link" url="http://en.wikipedia.org/wiki/Pulitzer_Center_on_Crisis_Reporting"/>
<outline text=""/>
<outline text="The Center welcomes proposals for reporting projects throughout the world, with an emphasis on issues that have gone unreported, under-reported or mis-reported in the mainstream American media. The Center's director is former Post-Dispatch Washington Bureau Chief Jon Sawyer."/>
</outline>
</outline>
<outline text="Squirrel!">
<outline text="Rewards for Justice-main - english" type="link" url="http://www.rewardsforjustice.net/"/>
</outline>
<outline text="Movie PR">
<outline text="Mike Myers plots 'Austin Powers 4' movie and stage musical | Film & TV News | NME.COM">
<outline text="The spoof International Man Of Mystery is set to return for the first time since 2002's Austin Powers In Goldmember after Myers signed on to write another movie." type="link" url="http://www.nme.com/filmandtv/news/mike-myers-plots-austin-powers-4-movie-and-stage/255387"/>
<outline text=""/>
<outline text="A source close to Myers has now told Page Six that the new film could be on course to reach cinemas in 2013. They also added that he is planning to take the British superspy to Broadway, saying: "Mike would be heavily involved in writing the show, but he will not star in it, even though he has quite a good singing voice.""/>
</outline>
</outline>
<outline text="Elite$">
<outline text="Committee Reports - 112th Congress (2011-2012) - House Report 112-331">
<outline text="For the care, maintenance, repair and alteration, refurnishing, improvement, heating, and lighting, including electric power and fixtures, of the Executive Residence at the White House and official entertainment expenses of the President, $13,425,000, to be expended and accounted for as provided by 3 U.S.C. 105, 109, 110, and 112-114." type="link" url="http://thomas.loc.gov/cgi-bin/cpquery/?&dbname=cp112&sid=cp1126p9Uf&refer=&r_n=hr331.112&item=&&&sel=TOC_348787&"/>
</outline>
</outline>
<outline text="2TTH">
<outline text="AT&T Adviser Greenhill Falls Toward League-Table Obscurity">
<outline text="Dec. 20 (Bloomberg) -- AT&T Inc.'s failed $39 billion acquisition of Deutsche Telekom AG's T-Mobile USA Inc. is sending Greenhill & Co. toward M&A league-table obscurity." type="link" url="http://www.sfgate.com/cgi-bin/article.cgi?f=/g/a/2011/12/20/bloomberg_articlesLWIJ800YHQ0X.DTL"/>
<outline text=""/>
<outline text="Greenhill plunged to 40th place in the mergers and acquisitions rankings after AT&T scrapped its deal yesterday, from 18th place with the transaction included, according to data compiled by Bloomberg. AT&T's advisers -- Greenhill, JPMorgan Chase & Co. and Evercore Partners Inc. -- will lose about $65 million in fees, according to estimates by New York-based researcher Freeman & Co."/>
</outline>
</outline>
<outline text="Bank$ters">
<outline text="Obama to ask for debt limit hike: Treasury official">
<outline text="WASHINGTON (Reuters) - The White House plans to ask Congress by the end of the week for an increase in the government's debt ceiling to allow the United States to pay its bills on time, according to a senior Treasury Department official on Tuesday." type="link" url="http://mobile.reuters.com/article/idUSTRE7BQ0KU20111227?irpc=932"/>
<outline text=""/>
<outline text="The approval is expected to go through without a challenge, given that Congress is in recess until later in January and the request is in line with an agreement to keep the U.S. government funded into 2013."/>
<outline text=""/>
<outline text="The debt is projected to fall within $100 billion of the current cap by December 30, when the United States has $82 billion in interest on its debt and payments such as Social Security coming due. President Barack Obama is expected to ask for authority to increase the borrowing limit by $1.2 trillion, part of the spending authority that was negotiated between Congress and the White House this summer."/>
<outline text=""/>
<outline text="Under the agreement struck in August during the showdown over the government's debt limit, the cap is automatically raised unless Congress votes to block the debt-ceiling extension. Lawmakers have 15 days within receiving the request to vote, which is largely symbolic because the president can veto it and Congress would be unlikely to muster the two-thirds majority to override it. Moreover, the U.S. House of Representatives also is in recess until January 17."/>
<outline text=""/>
<outline text="The deal called for raising the debt ceiling by $2.1 trillion to serve the nation's borrowing needs into 2013 and also included mandatory cuts to the federal budget deficit. Since then, the extension has been increased twice by a total of $900 billion."/>
<outline text=""/>
<outline text="The debt limit currently stands at $15.194 trillion and would increase to $16.394 trillion with the request."/>
</outline>
<outline text="Obama Returns $70,000 in Corzine Donations - Bloomberg">
<outline text="President Barack Obama's re-election campaign returned campaign contributions from Jon S. Corzine, former chairman and chief executive officer of MF Global Holdings Ltd., according to a Democratic official." type="link" url="http://www.bloomberg.com/news/2011-12-23/obama-returns-70-000-in-corzine-donations.html"/>
<outline text=""/>
<outline text="Obama for America and the Democratic National Committee refunded the money from the former New Jersey governor out of an abundance of caution, said the official, who requested anonymity. Republicans have criticized the president for keeping contributions from the head of a firm that collapsed and filed for bankruptcy. "/>
</outline>
<outline text="SEC Announced Latest Chump Change Settlement With GE Funding The Friday Before Christmas. Hmmm... | Crooks and Liars">
<outline text="Dec. 23 (Bloomberg) -- General Electric Co. agreed to pay $70.4 million to settle a criminal probe and civil claims for conspiring to rig bids on U.S. municipal-bond deals, overcharging state and local governments on investments." type="link" url="http://crooksandliars.com/susie-madrak/sec-announced-latest-chump-change-set"/>
<outline text=""/>
<outline text="GE Funding Capital Market Services, a former unit, is the fifth company to settle in a more than five-year federal investigation. The deal will resolve probes by the Justice Department, the Securities and Exchange Commission and the Internal Revenue Service as well as attorneys general in 25 states, the Justice Department said today in a statement."/>
</outline>
</outline>
<outline text="Gitmo Nation">
<outline text="Madness: Even School Children Are Being Pepper-Sprayed and Shocked with Tasers | Civil Liberties | AlterNet">
<outline text="There is something truly disturbing about a society that seeks to control the behavior of schoolchildren through fear and violence, a tactic that harkens back to an era of paddle-bruised behinds and ruler-slapped wrists. Yet, some American school districts are pushing the boundaries of corporal punishment even further with the use of Tasers against unruly schoolchildren. " type="link" url="http://www.alternet.org/rights/153536/madness%3A_even_school_children_are_being_pepper-sprayed_and_shocked_with_tasers_/?page=entire"/>
<outline text=""/>
<outline text="The deployment of Tasers against "problem" students coincides with the introduction of police officers on school campuses, also known as School Resource Officers (SROs). According to the Los Angeles Times, as of 2009, the number of SROs carrying Tasers was well over 4,000."/>
</outline>
<outline text="TSA screenings aren't just for airports anymore - latimes.com">
<outline text=""I'm mostly curious," said Barbara Spencer, 75, who was heading home to Chapel Hill after watching her grandson perform in a Christmas play. She asked the officers whether a terrorist threat had required the extra security. No, they replied." type="link" url="http://www.latimes.com/news/nationworld/nation/la-na-terror-checkpoints-20111220,0,3213641.story"/>
<outline text=""/>
<outline text="Vetter, the lawyer, had attended the game with his son, Noah. They jogged for the train after Seiko had finished his sniff, but Vetter had bigger worries on his mind. "The Panthers blew it," he said."/>
</outline>
<outline text="Occupy protester 'banned' from flight home for Christmas - News & Advice - Travel - The Independent">
<outline text="A member of the Occupy London protests was stopped from boarding his flight home for Christmas after he was found carrying anarchist literature, it has been claimed." type="link" url="http://www.independent.co.uk/travel/news-and-advice/occupy-protester-banned-from-flight-home-for-christmas-6282555.html"/>
<outline text=""/>
<outline text="The demonstrator, who is part of the group occupying the empty UBS building dubbed the "Bank of Ideas", said he was told he would not be allowed on the Ryanair flight to Malaga because the pilot feared he might distribute leaflets and "upset other passengers"."/>
<outline text=""/>
<outline text="John Charles Culatto, 34, claimed he was approached by police at Bristol International Airport who told him they had seen him "acting suspiciously" on the airport's CCTV system when he stopped to talk to fellow travellers."/>
<outline text=""/>
<outline text="He said he went to airport security an hour before his flight was due to depart, where staff found posters in his bag linked to the anarchist group Crimethinc and refused to allow him through until they had contacted the airline. He claimed he overheard security staff who were examining his luggage using the word "terrorism"."/>
</outline>
<outline text="How a couple in Alaska became the terrorists next door - Los Angeles Times">
<outline text="To Rockwood, the plot involving targeted assassinations and bombs was a "pure fantasy" created by a government agent he thought was his friend, a common refrain in the nation's burgeoning number of "home-grown" terrorism plots prosecuted since the Sept. 11 attacks." type="link" url="http://articles.latimes.com/2011/dec/22/nation/la-na-alaska-terrorist-20111222"/>
<outline text=""/>
<outline text="Rockwood concedes that he drew up a list of people. He thought they should be punished."/>
<outline text=""/>
<outline text=""But ... it was all talk," Rockwood said in a small interview room at the correctional facility he has called home since July 2010."/>
<outline text=""/>
<outline text="By his account, the events of Sept. 11 stunned and repelled Rockwood and his wife, both raised Catholic. They were living in Virginia, and Rockwood had recently gotten a job as a contractor with the National Weather Service, hoping to eventually land a full civil service position and a more stable future."/>
</outline>
<outline text="Find my Face - Google+ Help">
<outline text="Find my face makes finding pictures of you easy and makes photos more social. Find my face offers name tag suggestions so people you know can quickly tag you when they see photos of you. Like any time someone tags you, you'll be able to accept or reject these name tags." type="link" url="http://support.google.com/plus/bin/answer.py?hl=en-GB&p=name_suggest_promo&answer=2370300"/>
<outline text="How it works"/>
<outline text=""/>
<outline text="After you turn on Find my Face, Google+ uses the photos you're tagged in to create a model of your face. The model updates as tags of you are added or removed and you can delete the entire face model at any time by turning off Find my Face."/>
<outline text=""/>
<outline text="If you turn on Find my Face, we can use your face model to make it easier to find photos of you. For example, we'll show a suggestion to tag you when you or someone you know looks at a photo that matches your face model. Name tag suggestions by themselves do not change the sharing setting of photos or albums. However, when someone approves the suggestion to add a name tag, the photo and relevant album are shared with the person tagged."/>
</outline>
</outline>
<outline text="Syria">
<outline text="Angry Syrians bury Damascus bombing dead | Reuters">
<outline text="Thousands of Syrians chanted "Death to America" on Saturday during funeral processions in Damascus for at least 44 people killed in twin suicide bombings that rocked the capital." type="link" url="http://www.reuters.com/article/2011/12/24/us-syria-funerals-idUSTRE7BN07120111224?feedType=RSS&feedName=worldNews&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+reuters%2FworldNews+%28News+%2F+US+%2F+International%29"/>
</outline>
<outline text="Russian Article on Syria" created="Thu, 29 Dec 2011 04:51:37 GMT" pgfnum="45">
<outline text="Moscow is ready to grant political asylum and guarantee the personal safety of Syrian President Bashar Assad and his family: his successor is chosen, and the entire operation is coordinated with the U.S., according to NEWSru Israel with reference to the newspaper "Maariv". According to the newspaper, during a visit to Russia, Vice-President of Syria, Farouk Al-Shara was invited to assume the post of Bashar al-Assad after his resignation. " type="link" url="http://translate.google.com/translate?sl=auto&tl=en&js=n&prev=_t&hl=en&ie=UTF-8&layout=2&eotf=1&u=http%3A%2F%2Fnewsru.com%2Fworld%2F25dec2011%2Fbashar.html&act=url"/>
<outline text="From Oils" created="Thu, 29 Dec 2011 04:51:57 GMT" pgfnum="46">
<outline text="ITM adam and Merry Christmas"/>
<outline text="her eis what russian news run headlines today while rest of the world distracted with Christmas&#202;"/>
<outline text="http://newsru.com/world/25dec2011/bashar.html&#202;"/>
<outline text="the article is in russian&#202;"/>
<outline text="the highlights are&#202;"/>
<outline text="Russia Will take Bashar under protection and offed him and his family safe haven in russia&#202;"/>
<outline text="Already found his substitution&#202;"/>
<outline text="And all the operation is collaborated with USA"/>
</outline>
<outline text="According to the newspaper, during a visit to Russia, Vice-President of Syria, Farouk Al-Shara was invited to assume the post of Bashar al-Assad after his resignation. "/>
</outline>
</outline>
<outline text="Real News">
<outline text="French breast implant chief wanted by Interpol | World news | guardian.co.uk">
<outline text="Interpol is seeking the arrest of Jean-Claude Mas, the founder of a French company whose breast implants are at the centre of a global health scare." type="link" url="http://www.guardian.co.uk/world/2011/dec/24/french-breast-implant-chief-interpol"/>
<outline text=""/>
<outline text="The international police agency has issued a red notice for Mas. His firm Poly Implant Protheses (PIP), which went into administration last year, supplied implants to tens of thousands of women in Europe and South America."/>
<outline text=""/>
<outline text="Interpol's website says the 72-year-old is wanted by Costa Rican authorities for crimes involving "life and health" but gives no further details. France has offered to pay for an estimated 30,000 women in the country to have their PIP implants removed because of risks the products could rupture and leak industrial-grade silicone."/>
</outline>
</outline>
<outline text="Out There">
<outline text="'Vuurbal is brokstuk van raket Andr&#142; Kuipers' - BINNENLAND - PAROOL">
<outline text="Op kerstavond is door verschillende mensen in Oost-Nederland een vreemd lichtobject aan de hemel waargenomen. De politie kreeg tientallen telefoontjes van verontruste mensen. Op Twitter werd volop gespeculeerd over het verschijnsel." type="link" url="http://www.parool.nl/parool/nl/224/BINNENLAND/article/detail/3094042/2011/12/24/Vreemde-vuurbal-boven-Oost-Nederland.dhtml"/>
<outline text="In Gelderland was het vreemde object zaterdagavond rond zes uur te zien. Omroep Gelderland spreekt van 'een grote vuurbal'. De politie is met een helikopter op onderzoek gegaan. Er is tevens contact gezocht met de NASA: het zou om een komeet gaan. De KPLD heeft het over een meteoriet. 'Geen neerstortende Andr&#195;&#169; Kuipers dus en ook geen Superman', aldus de politiewoordvoerder tegen persbureau Novum. Het is 'een meteoriet die door de dampkring is gevlogen'."/>
</outline>
</outline>
<outline text="Xfaxtor Primaries">
<outline text="The New Republican Primary Rules Make It Possible For The Republican Establishment To Steal The Nomination From A Candidate They Don't Like">
<outline text="The following rule was adopted by the Republican Party back in August 2010...." type="link" url="http://endoftheamericandream.com/archives/the-new-republican-primary-rules-make-it-possible-for-the-republican-establishment-to-steal-the-nomination-from-a-candidate-they-dont-like"/>
<outline text="">
<outline text=""Any presidential primary, caucus, convention, or other meeting held for the purpose of selecting delegates to the national convention which occurs prior to the first day of April in the year in which the national convention is held, shall provide for the allocation of delegates on a proportional basis.""/>
</outline>
<outline text=""/>
<outline text="This new rule means that delegates will be apportioned to candidates on a proportional basis in Republican caucuses and primaries that are conducted prior to April 1st. One notable exception to this rule is Florida, which got approval to remain a "winner take all" state. So Florida will be very important."/>
<outline text=""/>
<outline text="In addition, all of the states that are now using "proportional representation" do not allocate delegates the exact same way. Each state has slightly different election rules."/>
<outline text=""/>
<outline text="But in general, in most of the primaries and caucuses held before April 1st, delegates will be awarded to multiple candidates instead of to just a single candidate."/>
</outline>
</outline>
<outline text="SOPA/ACTA">
<outline text="EU Council Quietly Adopts ACTA, In An Agricultural And Fisheries Meeting">
<outline text="The group of some 40 ministers approved a lot of industry related issues and then moved on to ACTA. The press release regarding the approval states the following on the last page:" type="link" url="http://www.arcticstartup.com/2011/12/20/eu-council-quietly-adopts-acta-in-an-agricultural-and-fisheries-meeting"/>
<outline text="">
<outline text="The Council adopted a decision authorising the signing of an anti-counterfeiting trade agreement (ACTA) with Australia, Canada, Japan, the Republic of Korea, Mexico, Morocco, New Zealand, Singapore, Switzerland and the United States."/>
</outline>
<outline text="">
<outline text="ACTA is aimed at establishing an international framework to improve the enforcement of intellectual property right laws and create improved international standards for actions against large-scale infringements of intellectual property. Negotiations were concluded in November 2010."/>
</outline>
</outline>
</outline>
<outline text="Monsanto">
<outline text="Monsanto's GMO Corn Linked To Organ Failure, Study Reveals - The Huffington Post">
<outline text=""Effects were mostly concentrated in kidney and liver function, the two major diet detoxification organs, but in detail differed with each GM type. In addition, some effects on heart, adrenal, spleen and blood cells were also frequently noted. As there normally exists sex differences in liver and kidney metabolism, the highly statistically significant disturbances in the function of these organs, seen between male and female rats, cannot be dismissed as biologically insignificant as has been proposed by others. We therefore conclude that our data strongly suggests that these GM maize varieties induce a state of hepatorenal toxicity....These substances have never before been an integral part of the human or animal diet and therefore their health consequences for those who consume them, especially over long time periods are currently unknown."" type="link" url="http://www.huffingtonpost.com/mobileweb/2010/01/12/monsantos-gmo-corn-linked_n_420365.html"/>
<outline text=""/>
<outline text="Monsanto has immediately responded to the study, stating that the research is "based on faulty analytical methods and reasoning and do not call into question the safety findings for these products.""/>
</outline>
<outline text="America's farmlands to be carpet-bombed with Vietnam-era Agent Orange chemical if Dow petition approved">
<outline text="A key chemical in that weapon -- 2,4-D -- is just months away from being dropped on agricultural land across the United States. Dow AgroSciences, which along with DuPont and Monsanto is heavily invested in genetically engineered crops, has petitioned the U.S. government to deregulate a variety of GE corn that's resistant to 2,4-D, which comprises 50% of the recipe of Agent Orange." type="link" url="http://www.naturalnews.com/034500_Agent_Orange_Dow_2-4-D.html"/>
</outline>
<outline text="2,4-Dichlorophenoxyacetic acid - Wikipedia, the free encyclopedia">
<outline text="Different organizations have taken different stances on cancer risk of 2,4-D. On August 8, 2007, the United States Environmental Protection Agency issued a ruling that stated that existing data does not support a conclusion that links human cancer to 2,4-D exposure.[13] The International Agency for Research on Cancer (IARC) has classified 2,4-D among the phenoxy acid herbicides MCPA and 2,4,5-T as a class 2B carcinogen - possibly carcinogenic to humans.[14] A 1995 panel of 13 scientists reviewing studies on the carcinogenicity of 2,4-D had divided opinions, but the predominant opinion was that it is possible that 2,4-D causes cancer in humans.[15]" type="link" url="http://en.wikipedia.org/wiki/2,4-Dichlorophenoxyacetic_acid"/>
</outline>
</outline>
<outline text="Vaccine$">
<outline text="Turns Out That Viagra Actually Makes Muscles Limp">
<outline text="This newly discovered benefit can help patients with diastolic heart failure. This illness makes heart ventricles abnormally inflexible. As a result, they don't fill with enough blood. Apparently, the drug helps this condition almost instantly. This discovery would also finally make true that old saying: "do you have diastolic heart failure or are you just happy to see me?"" type="link" url="http://gizmodo.com/5871084/turns-out-that-viagra-actually-makes-muscles-limp"/>
</outline>
<outline text="Viagra Patent Expires, Goes Generic | What Will Happen To Viagra">
<outline text="Pfizer will lose its patent for Viagra on March 27, 2012, according to the U.S. Patent and Trademark Office, at which point any drug company will be able to make and sell a cheap "generic" version of the blockbuster erectile dysfunction (ED) drug. Doctors and lawyers believe that the expiration of Pfizer's monopoly on the drug will be good news for patients, as it will force competition between Pfizer's Viagra and the new generic versions, dramatically driving down the price not only of Viagra but also of Eli Lilly's Cialis and Bayer's Levitra. " type="link" url="http://www.accessrx.com/research/viagra-patent-expires/"/>
<outline text="The fight between Pfizer and Teva escalated June 15 through July 13, 2011 as the 12 day bench trial took place. Teva was shot down in it&#213;s hopes to put a generic Viagra on the market. Pfizer&#213;s patent stands solid until 2019. There are pages and pages devoted to the procedural history of the case, which began in March 2010 when Pfizer Inc. sued Teva Pharmaceuticals after Teva gained tentative approval from the Food and Drug Administration to market a generic version of Viagra."/>
<outline text=""We are pleased that the court recognized the validity and enforceability of our Viagra patent for the treatment of erectile dysfunction," said Amy Schulman, executive vice president and general counsel for Pfizer, in a statement. "Protecting the intellectual property rights of our innovative core is critical, and Friday's court decision acknowledges Teva's clear violation of our patent rights." "/>
</outline>
</outline>
<outline text="Devil Weed / Drink">
<outline text="Meer dan 2.000 caf&#142;s dicht sinds rookverbod - De Standaard">
<outline text="Sinds 1 juli, toen het rookverbod in caf&#195;&#169;s van kracht werd, zijn er al 2.005 zaken stopgezet of failliet gegaan. Dat is een stijging met 43 procent tegenover dezelfde periode vorig jaar, toen 1.400 zaken hun deuren sloten." type="link" url="http://www.standaard.be/artikel/detail.aspx?artikelid=DMF20111226_002"/>
<outline text=""/>
<outline text="De cijfers komen van het handelsinformatiekantoor Coface Services Belgium en ondernemersorganisatie NSZ, en zijn ingekeken door Het Laatste Nieuws."/>
<outline text=""/>
<outline text="Het Neutraal Syndicaat voor Zelfstandigen heeft het over 'dramatische resultaten'. 'Zeker als je ermee rekening houdt dat de herfst erg mild is geweest (waardoor de terrassen veel langer konden blijven staan voor de rokende klanten, nvdr). Bij een normale temperatuur en meer regen was de tol allicht nog veel hoger geweest.'"/>
</outline>
</outline>
<outline text="Techno Experts">
<outline text="Congress calls on Twitter to block Taliban - Telegraph">
<outline text="enators want to stop feeds which boast of insurgent attacks on Nato forces in Afghanistan and the casualties they inflict." type="link" url="http://www.telegraph.co.uk/technology/twitter/8972884/Congress-calls-on-Twitter-to-block-Taliban.html"/>
<outline text=""/>
<outline text="Aides for Joe Lieberman, chair of the Senate Homeland Security Committee, said the move was part of a wider attempt to eliminate violent Islamist extremist propaganda from the internet and social media."/>
<outline text=""/>
<outline text="The Taliban movement has embraced the social network as part of its propaganda effort and regularly tweets about attacks or posts links to its statements."/>
<outline text=""/>
<outline text="The information has ranged from highly accurate, up-to-the-minute accounts of unfolding spectacular attacks, to often completely fabricated or wildly exaggerated reports of American and British casualties."/>
<outline text=""/>
<outline text="Twitter feeds including @ABalkhi, which has more than 4,100 followers, and @alemarahweb, which has more than 6,200 followers, regularly feature tweeted boasts about the deaths of "cowardly invaders" and "puppet" Afghan government forces. "/>
</outline>
</outline>
<outline text="FnF">
<outline text="Angry former ATF chief blames subordinates for Fast and Furious - Los Angeles Times">
<outline text="But B. Todd Jones, Melson's replacement as acting director of the agency, said in an interview that Melson allowed overzealous field agents and supervisors to go beyond approved tactics." type="link" url="http://articles.latimes.com/2011/dec/24/nation/la-na-fast-furious-20111225"/>
<outline text=""/>
<outline text="Pointing out that the ATF has had five acting directors in the last six years, Jones said the resulting weak management structure has given some field agents a license to operate independently of Washington."/>
<outline text=""/>
<outline text=""There was a vacuum. Fast and Furious went off the rails, and there were plenty of opportunities to pivot so none of this would happen," Jones said."/>
<outline text=""/>
<outline text="Under the program, devised to help agents follow weapons from gun stores to Mexican cartel leaders, about 2,000 firearms were lost. Two were found after the killing of U.S. Border Patrol Agent Brian Terry last December. Hundreds more were recovered after violent crimes in Mexico"/>
</outline>
</outline>
<outline text="Drone Nation">
<outline text="Army to Send Three Unmanned Spy Helos to Afghanistan | Defense Tech">
<outline text="The drone war in Pakistan may be on a temporary hiatus, that hasn't stopped the Army from moving to send three of its newest drones to neighboring Afghanistan this Spring. The service is sending three of Boeing's A160 Hummingbird drone choppers downrange for up to one year to feed the military's insatiable hunger for more airborne ISR." type="link" url="http://defensetech.org/2011/12/27/army-to-sent-three-unmanned-spy-helos-to-afghanistan/"/>
<outline text=""/>
<outline text="The helos will be equipped with the ARGUS wide area surveillance cameras, allowing the birds to hover and watch over massive swaths of land. Think of the typical UAV camera as looking at a region through a soda straw; operators and intel analysts only see the immediate area where the camera is focused. WAS systems like ARGUS are being developed to provide up to 65 video streams via one sensor package. This obviously gives a much broader picture of a region."/>
</outline>
<outline text="PressTV - 'US spy drone crashes in Afghanistan'">
<outline text="A Tuesday statement released by NATO confirmed the incident but claimed that the unmanned aircraft made an emergency landing "due to technical malfunction."" type="link" url="http://www.presstv.ir/detail/217946.html"/>
<outline text=""/>
<outline text="According to locals, US-led forces have cordoned off the site of the incident."/>
<outline text=""/>
<outline text="Taliban spokesman Zabiullah Mujahid also claimed that members of the militant group shot down the drone in the Ahmadabad district of the province."/>
<outline text=""/>
<outline text="The Taliban say they have shot down several aircraft and NATO choppers in different parts of Afghanistan over the past few months."/>
<outline text=""/>
<outline text="Activities by the militants have persisted despite the presence of around 150,000 US-led forces in Afghanistan."/>
<outline text=""/>
<outline text="The United States invaded Afghanistan in 2001 under the pretext of combating terrorism and eradicating the Taliban militancy but its failure has forced Washington to turn to negotiation with the militants."/>
<outline text=""/>
<outline text="The Taliban have steadily stepped up their attacks on the US-led forces, inflicting heavy casualties and damage on them."/>
</outline>
</outline>
<outline text="$hadow Puppet Theatre">
<outline text="Obama Nominates Carlyle Group Partner to The Federal Reserve - BlackListedNews.com">
<outline text="While on vacation in Hawaii, Obama tapped Jerome Powell to serve on the Federal Reserve Board of Governors." type="link" url="http://www.blacklistednews.com/Obama_Nominates_Carlyle_Group_Partner_to_The_Federal_Reserve/17190/0/38/38/Y/M.html"/>
<outline text=""/>
<outline text="Powel served as the undersecretary for finance under the president George H. W. Bush and was a partner of The Carlyle Group. The Carlyle Group is a massive private equity firm and one of the largest defense contractors in the world."/>
<outline text=""/>
<outline text="They're made up of some of the most influential policymakers over the last five administrations including both Bush presidents, former Secretary of State James Baker III, former Secretary of Defense Frank Carlucci, former Clinton Chief of Staff Mack McLarty, and former SEC Chairman Arthur Levitt to name a few."/>
<outline text=""/>
<outline text="Other notable investors in The Carlyle Group include the bin Laden family and the Saudi Royal Family. Coincidentally, George H. W. Bush was meeting at the Ritz Carlton Hotel in Washington on the morning of September 11th with one of Osama Bin Laden's brothers."/>
</outline>
<outline text="Jerome Powell | Bipartisan Policy Center">
<outline text="Jerome H. Powell is a visiting scholar at the Bipartisan Policy Center in Washington, D.C., where he focuses on state and federal fiscal issues. Powell served as undersecretary of the treasury for finance under President George H.W. Bush, with responsibility for policy on financial institutions, the treasury debt market, and related areas. From 1997 through 2005, Powell was a partner at The Carlyle Group, where he founded and led the Industrial Group within the U.S. Buyout Fund. He worked for many years prior to that as a lawyer and investment banker in New York City." type="link" url="http://www.bipartisanpolicy.org/about/economic-policy-project/jerome-powell"/>
</outline>
</outline>
<outline text="EUROLand">
<outline text="Studenten hangt verlies basisbeurs boven het hoofd - Onderwijs - VK">
<outline text="De kans is groot dat studenten hun basisbeurs kwijtraken. Het kabinet denkt na over het invoeren van een sociaal leenstelsel. Dat meldt het AD." type="link" url="http://www.volkskrant.nl/vk/nl/5288/Binnenland/article/detail/3097476/2011/12/29/Studenten-hangt-verlies-basisbeurs-boven-het-hoofd.dhtml"/>
<outline text="Ambtenaren van het ministerie van Financi&#195;&#171;n werken daarvoor plannen uit. Komend voorjaar moet er voor miljarden extra worden bezuinigd. Het afschaffen van de basisbeurs voor studenten levert zo'n 800 miljoen euro op. Ook de ov-kaart voor studenten zit in de gevarenzone."/>
<outline text=""/>
<outline text="Bij de afgelopen verkiezingen pleitte de VVD ervoor studenten meer zelf te laten betalen voor hun studie. Ook D66, PvdA en GroenLinks willen dat. Het CDA en PVV zijn altijd fel tegenstander van het plan geweest, maar nu laat een CDA'er weten: 'De tijd van taboes lijkt voorbij in deze lastige tijden'."/>
<outline text=""/>
<outline text="De regeringspartijen gaan pas later om de tafel zitten om keuzes te maken. "/>
</outline>
<outline text="'Pensioenen begin 2013 omlaag' Het laatste nieuws het eerst op nu.nl">
<outline text="Een korting op de pensioenen van veel werkenden en gepensioneerden is op handen. Bij zeventien grote fondsen zullen de pensioenen begin 2013 waarschijnlijk met gemiddeld 5,9 procent omlaag gaan. " type="link" url="http://www.nu.nl/werk-en-prive/2702801/pensioenen-begin-2013-omlaag.html"/>
<outline text="De zeventien fondsen vertegenwoordigen gezamenlijk 65 procent van de totale Nederlandse pensioenpot. Bij de vijf grootste dreigt zelfs een daling van gemiddeld 7,9 procent."/>
</outline>
<outline text="Aantal veroordeelden onder elektronisch toezicht stijgt ja... - De Standaard">
<outline text="In 2008 kregen de justitiehuizen 2.886 nieuwe mandaten voor elektronisch toezicht overgemaakt. In 2009 steeg dat aantal tot 3.188 (+ 10,5 procent) en in 2010 tot 3.478 (+ 9,1 procent). In de eerste 9 maanden van 2011 ging het om 2.806 nieuwe mandaten, wat overeenkomt met 3.741 op jaarbasis (+ 7,6 procent)." type="link" url="http://www.standaard.be/artikel/detail.aspx?artikelid=DMF20111227_107"/>
</outline>
</outline>
<outline text="Space Wars">
<outline text="Russia's lost Phobos-Grunt to fall in Afghanistan -- U.S. military | Russia | RIA Novosti">
<outline text="Phobos-Grunt, Russia's most ambitious planetary mission in decades, was launched on November 9 but it was lost due to propulsion failure and is expected to fall back to Earth next month." type="link" url="http://en.ria.ru/russia/20111226/170500780.html"/>
<outline text=""/>
<outline text="The U.S. Strategic Command said the spacecraft would enter the atmosphere at 2.22 a.m. Moscow time (22.27 GMT) and fall somewhere between 30.7 Degrees North and 62.3 Degrees East in southwestern Afghanistan near the city of Mirabad."/>
</outline>
</outline>
<outline text="We Can't Wait">
<outline text="AT&T completes acquisition of Qualcomm's FLO TV spectrum -- Engadget">
<outline text="It's only been five days since it's gotten the official go ahead, but AT&T's wasted no time in completing its acquisition of a swath of 700MHz spectrum from Qualcomm. Those airwaves, which formerly powered FLO TV, were purchased for a cool $1.9 billion and will now be repurposed to bolster Ma Bell's LTE network. It might not have been everything the carrier had hoped for, but some additional spectrum is better than none, right? Possibly the shortest press release you'll ever see awaits after the break. " type="link" url="http://www.engadget.com/2011/12/27/atandt-completes-acquisition-of-qualcomms-flo-tv-spectrum/"/>
</outline>
</outline>
<outline text="VIDEO">
<outline text="[VIDEO] Do Black Americans Believe Ron Paul Is Racist? - " type="link" url="http://www.youtube.com/watch?v=ej5_rZof7MA&feature=channel_video_title"/>
<outline text="[VIDEO] Ron Paul: Damn It, Don't Ask Bout My Racist Writings. - ">
<outline text="Boots on the ground. Spread the word, mine or yours." type="link" url="http://www.youtube.com/watch?feature=player_embedded&v=j1uc7x4a8SM#!"/>
</outline>
<outline text="[VIDEO] Proof that Concealed Carry permit holders live in a dream world, Part One - ">
<outline text="The controlled study documented in these videos show that concealed carry permit holders are fooling themselves if they think they will be able to react effectively to armed aggressors." type="link" url="http://www.youtube.com/watch?v=8QjZY3WiO9s&feature=g-vrec&context=G2644b7eRVAAAAAAAADQ"/>
</outline>
<outline text="[VIDEO] Be a HERO and Help STOP SOPA Now!! I'll tell you How! This Video that Must Be SHARED! - " type="link" url="http://www.youtube.com/watch?v=WJIuYgIvKsc"/>
<outline text="[VIDEO] Trading Oil, Currencies & Markets">
<outline text="A check on the moves in oil, markets and currencies, and where traders are placing their bets today, with Tom O'Brien, The Gold Report; Boris Schlossberg, GFT Forex, and Ben Lichtenstein, " type="link" url="http://video.cnbc.com/gallery/?video=3000063997"/>
</outline>
<outline text="[VIDEO] - Opinion Journal: Ron Paul's Letters to the Fanatics -- Dorothy Rabinowitz on Ron Paul's devout fans - WSJ.com">
<outline text="Dorothy Rabinowitz on the blind faith of Ron Paul's devout followers." type="link" url="http://online.wsj.com/video/opinion-ron-paul-letters-to-the-fanatics/2BAC7525-34F5-4763-9F3A-1EA0ABC4690D.html"/>
</outline>
<outline text="[VIDEO] Joe Scarborough: 'There Is Always A Strain Of Anti-Semitism' At Ron Paul Events | Mediaite" type="link" url="http://www.mediaite.com/tv/joe-scarborough-there-is-always-a-strain-of-anti-semitism-at-ron-paul-events/"/>
<outline text="[VIDEO] Briefing on New Rewards for Justice Reward Offer">
<outline text="MR. HARTUNG: Thank you. Good afternoon. Today the U.S. Department of State's Rewards for Justice program is offering a reward of up to $10 million for information that leads law enforcement or security forces to the person pictured behind me, Ezedin Abdel Aziz Khalil, better known as Yasin al-Suri. Today's announcement marks the first time that the Rewards for Justice program has offered a reward for information that leads to a terrorist financier. Under an agreement between al-Qaida and the Government of Iran, Yasin al-Suri has helped move money and recruits through Iran to al-Qaida leaders in neighboring countries in the region." type="link" url="http://www.state.gov/r/pa/prs/ps/2011/12/179654.htm"/>
<outline text=""/>
<outline text="From his sanctuary inside Iran, he has moved terrorist recruits through Iran to al-Qaida leaders in Pakistan and in Afghanistan. He has also arranged for the release of al-Qaida operatives from Iranian prisons and their transfer to Pakistan. And he has funneled significant amounts of money through Iran to al-Qaida's leadership in Afghanistan and Iraq. He is a dedicated terrorist working in support of al-Qaida with the support of the Government of Iran, which the Department of State has designated a state sponsor of terrorism."/>
</outline>
</outline>
</outline>
</outline>
<outline text="NA-Too Many Clips" created="Sun, 25 Dec 2011 19:01:19 GMT" domain="xmas2011.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/12/25/NA_CLIP_REEL.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named NA_CLIP_REEL.jpg">" pgfnum="132">
<outline text="Episode Webpage" created="Sun, 25 Dec 2011 19:01:51 GMT" pgfnum="133" type="link" url="http://blog.curry.com/stories/2011/12/25/naChristmasCliptacular.html"/>
<outline text="<embed type="application/x-shockwave-flash" src="http://www.dvorak.org/blog/wp-content/uploads/2008/01/playersingle.swf" id="mymovie" name="mymovie" quality="high" flashvars="autoPlay=no&amp;soundPath=http://m.podshow.com/media/15412/episodes/307185/noagenda-307185-12-25-2011.mp3&overColor=#ff0000" height="80" ></embed>" created="Thu, 21 Apr 2011 21:11:50 GMT" pgfnum="1045"/>
<outline text="Cover Art by <a href="http://adiosmofos.com./">Thoren</a>" created="Sun, 25 Dec 2011 19:01:59 GMT" pgfnum="135" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-Christmas%20Cliptacular/NA_CLIP_REEL.png"/>
<outline text="Direct link to the mp3 file" created="Sun, 25 Dec 2011 19:02:03 GMT" pgfnum="136" type="link" url="http://m.podshow.com/media/15412/episodes/307185/noagenda-307185-12-25-2011.mp3"/>
<outline text="HowTo on designing this page" type="link" url="http://templates.worldoutline.org/"/>
<outline text="Design this page!" type="link" url="http://blog.curry.com/stories/2011/05/27/noAgendaShownotesDesignCha.html"/>
<outline text="<a href="http://dvorak.org/na"></a><a href="http://dvorak.org/na">Support our work and the show</a>" type="link" url="http://dvorak.org/na"/>
<outline text="Subscribe to our <a href="http://mevio.com/feeds/noagenda.xml">Podcast Feed</a>" created="Sun, 19 Jun 2011 20:23:49 GMT" pgfnum="1313" type="link" url="http://mevio.com/feeds/noagenda.xml"/>
<outline text="The No Agenda News Network- <a href="http://noagendanewsnetwork.com/">noagendanewsnetwork.com</a>" type="link" url="http://noagendanewsnetwork.com/"/>
<outline text="All the No Agenda Stream Podcasts and Feeds on One Page" type="link" url="http://podcasts.nashownotes.com/"/>
<outline text="<a href="http://www.dvorak.org/blog/no-agenda-mailing-list-signup-here/">Join</a> the Mailing List!" created="Sun, 16 Oct 2011 20:23:31 GMT" pgfnum="1590"/>
</outline>
<outline text="NA-368-2011-12-29" created="Thu, 22 Dec 2011 20:24:42 GMT" domain="368.nashownotes.com" pgfnum="95" type="redirect" url="http://xmas2011.nashownotes.com/">
<outline text="Episode Webpage" created="Sun, 25 Dec 2011 19:01:51 GMT" pgfnum="133" type="link" url="http://blog.curry.com/stories/2011/12/25/naChristmasCliptacular.html"/>
<outline text="<embed type="application/x-shockwave-flash" src="http://www.dvorak.org/blog/wp-content/uploads/2008/01/playersingle.swf" id="mymovie" name="mymovie" quality="high" flashvars="autoPlay=no&amp;soundPath=http://m.podshow.com/media/15412/episodes/307185/noagenda-307185-12-25-2011.mp3&overColor=#ff0000" height="80" ></embed>" created="Thu, 21 Apr 2011 21:11:50 GMT" pgfnum="1045"/>
<outline text="Cover Art by <a href="http://adiosmofos.com./">Thoren</a>" created="Sun, 25 Dec 2011 19:01:59 GMT" pgfnum="135" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-Christmas%20Cliptacular/NA_CLIP_REEL.png"/>
<outline text="Direct link to the mp3 file" created="Sun, 25 Dec 2011 19:02:03 GMT" pgfnum="136" type="link" url="http://m.podshow.com/media/15412/episodes/307185/noagenda-307185-12-25-2011.mp3"/>
<outline text="HowTo on designing this page" type="link" url="http://templates.worldoutline.org/"/>
<outline text="Design this page!" type="link" url="http://blog.curry.com/stories/2011/05/27/noAgendaShownotesDesignCha.html"/>
<outline text="<a href="http://dvorak.org/na"></a><a href="http://dvorak.org/na">Support our work and the show</a>" type="link" url="http://dvorak.org/na"/>
<outline text="Subscribe to our <a href="http://mevio.com/feeds/noagenda.xml">Podcast Feed</a>" created="Sun, 19 Jun 2011 20:23:49 GMT" pgfnum="1313" type="link" url="http://mevio.com/feeds/noagenda.xml"/>
<outline text="The No Agenda News Network- <a href="http://noagendanewsnetwork.com/">noagendanewsnetwork.com</a>" type="link" url="http://noagendanewsnetwork.com/"/>
<outline text="All the No Agenda Stream Podcasts and Feeds on One Page" type="link" url="http://podcasts.nashownotes.com/"/>
<outline text="<a href="http://www.dvorak.org/blog/no-agenda-mailing-list-signup-here/">Join</a> the Mailing List!" created="Sun, 16 Oct 2011 20:23:31 GMT" pgfnum="1590"/>
</outline>
<outline text="NA-367-2011-12-22" created="Sun, 18 Dec 2011 20:17:00 GMT" domain="367.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/12/22/na367art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na367art.jpg">" nodeTitle="367.nashownotes.com" pgfnum="81" title="367.nashownotes.com">
<outline text="Episode Webpage" created="Thu, 22 Dec 2011 20:21:06 GMT" pgfnum="89" type="link" url="http://blog.curry.com/stories/2011/12/22/na36720111222.html"/>
<outline text="<embed type="application/x-shockwave-flash" src="http://www.dvorak.org/blog/wp-content/uploads/2008/01/playersingle.swf" id="mymovie" name="mymovie" quality="high" flashvars="autoPlay=no&amp;soundPath=http://m.podshow.com/media/15412/episodes/306862/noagenda-306862-12-22-2011.mp3&overColor=#ff0000" height="80" ></embed>" created="Thu, 21 Apr 2011 21:11:50 GMT" pgfnum="1045"/>
<outline text="Shownotes" created="Thu, 22 Dec 2011 20:21:15 GMT" pgfnum="91" type="outline" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/na367opml.opml"/>
<outline text="Cover Art" created="Thu, 22 Dec 2011 20:21:17 GMT" pgfnum="92" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/na367art"/>
<outline text="Assets">
<outline text="Bird Flu.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/Bird Flu.mp3"/>
<outline text="EUROLand">
<outline text="German Opening.aiff" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/EUROLand/German Opening.aiff"/>
<outline text="Haiku Herman jan 30.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/EUROLand/Haiku Herman jan 30.mp3"/>
</outline>
<outline text="FnF">
<outline text="holder.pdf" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/FnF/holder.pdf"/>
</outline>
<outline text="Haiti">
<outline text="Help Haiti Home.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/Haiti/Help Haiti Home.mp3"/>
<outline text="Silverman.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/Haiti/Silverman.mp3"/>
</outline>
<outline text="JCD Clips">
<outline text="2012 aside.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/JCD Clips/2012 aside.mp3"/>
<outline text="2012 part 2.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/JCD Clips/2012 part 2.mp3"/>
<outline text="grilling pierce morgan.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/JCD Clips/grilling pierce morgan.mp3"/>
<outline text="mccain idiot.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/JCD Clips/mccain idiot.mp3"/>
<outline text="soverign 2.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/JCD Clips/soverign 2.mp3"/>
<outline text="soverign rights.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/JCD Clips/soverign rights.mp3"/>
<outline text="stolen babies 2.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/JCD Clips/stolen babies 2.mp3"/>
<outline text="stolen babies.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/JCD Clips/stolen babies.mp3"/>
<outline text="ufos meet 2012.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/JCD Clips/ufos meet 2012.mp3"/>
</outline>
<outline text="NA-Game.zip" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/NA-Game.zip"/>
<outline text="na367art" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/na367art"/>
<outline text="Ron Paul">
<outline text="ABC-MoJo-Army.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/Ron Paul/ABC-MoJo-Army.mp3"/>
<outline text="msnbc-MoJo-unamerican.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/Ron Paul/msnbc-MoJo-unamerican.mp3"/>
<outline text="RP-bitzer-08.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/Ron Paul/RP-bitzer-08.mp3"/>
<outline text="RP-Gloria Borger.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/Ron Paul/RP-Gloria Borger.mp3"/>
</outline>
<outline text="Squirrel!">
<outline text="Candian Terrorists.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/Squirrel!/Candian Terrorists.mp3"/>
<outline text="Lucy and Erin.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/Squirrel!/Lucy and Erin.mp3"/>
<outline text="Rainbow Six Patriots.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/Squirrel!/Rainbow Six Patriots.mp3"/>
</outline>
<outline text="We Can't Wait">
<outline text="BILLS-112hr3630eas.pdf" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/We Can't Wait/BILLS-112hr3630eas.pdf"/>
<outline text="BILLS-112hres501ih.pdf" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/We Can't Wait/BILLS-112hres501ih.pdf"/>
<outline text="hoyer-cspan cameras.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/12/NA-367-2011-12-22/Assets/We Can't Wait/hoyer-cspan cameras.mp3"/>
</outline>
</outline>
<outline text="Direct link to the mp3 file" created="Thu, 22 Dec 2011 20:21:24 GMT" pgfnum="94" type="link" url="http://m.podshow.com/media/15412/episodes/306862/noagenda-306862-12-22-2011.mp3"/>
<outline text="HowTo on designing this page" type="link" url="http://templates.worldoutline.org/"/>
<outline text="Design this page!" type="link" url="http://blog.curry.com/stories/2011/05/27/noAgendaShownotesDesignCha.html"/>
<outline text="<a href="http://dvorak.org/na"></a><a href="http://dvorak.org/na">Support our work and the show</a>" type="link" url="http://dvorak.org/na"/>
<outline text="Subscribe to our <a href="http://mevio.com/feeds/noagenda.xml">Podcast Feed</a>" created="Sun, 19 Jun 2011 20:23:49 GMT" pgfnum="1313" type="link" url="http://mevio.com/feeds/noagenda.xml"/>
<outline text="The No Agenda News Network- <a href="http://noagendanewsnetwork.com/">noagendanewsnetwork.com</a>" type="link" url="http://noagendanewsnetwork.com/"/>
<outline text="All the No Agenda Stream Podcasts and Feeds on One Page" type="link" url="http://podcasts.nashownotes.com/"/>
<outline text="<a href="http://www.dvorak.org/blog/no-agenda-mailing-list-signup-here/">Join</a> the Mailing List!" created="Sun, 16 Oct 2011 20:23:31 GMT" pgfnum="1590"/>
</outline>
<outline text="NA-366-2011-12-18" created="Thu, 15 Dec 2011 19:56:15 GMT" domain="366.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/12/18/na366art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na366art.jpg">" pgfnum="74" type="include" url="http://static.curry.com/worldoutline/admin/2011/12/28/archive140.opml"/>
<outline text="NA-365-2011-12-15" created="Sun, 11 Dec 2011 20:41:10 GMT" domain="365.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/12/15/na365art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na365art.jpg">" pgfnum="56" type="include" url="http://static.curry.com/worldoutline/admin/2011/12/28/archive139.opml"/>
<outline text="NA-364-2011-12-11" created="Thu, 08 Dec 2011 19:54:28 GMT" domain="364.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/12/11/na364art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na364art.jpg">" pgfnum="48" type="include" url="http://static.curry.com/worldoutline/admin/2011/12/28/archive138.opml"/>
<outline text="NA-363-2011-12-08" created="Sun, 04 Dec 2011 20:15:59 GMT" domain="363.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/12/08/363art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named 363art.jpg">" pgfnum="31" type="include" url="http://static.curry.com/worldoutline/admin/2011/12/28/archive137.opml"/>
<outline text="NA-362-2011-12-04" created="Thu, 01 Dec 2011 20:26:20 GMT" domain="362.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/12/04/na362art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na362art.jpg">" pgfnum="18" type="include" url="http://static.curry.com/worldoutline/admin/2011/12/28/archive136.opml"/>
<outline text="NA362b-2011-12-04" created="Tue, 06 Dec 2011 16:45:47 GMT" domain="362b.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/12/04/na362art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na362art.jpg">" pgfnum="40" type="include" url="http://static.curry.com/worldoutline/admin/2011/12/28/archive135.opml"/>
<outline text="NA-361-2011-12-01" created="Sun, 27 Nov 2011 20:07:39 GMT" domain="361.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/12/01/na361art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na361art.jpg">" pgfnum="16" type="include" url="http://static.curry.com/worldoutline/admin/2011/12/28/archive134.opml"/>
</outline>
<outline text="11" created="Sun, 30 Oct 2011 19:05:20 GMT" pgfnum="436">
<outline text="NA-360-2011-11-27" created="Thu, 24 Nov 2011 20:30:30 GMT" domain="360.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/11/27/na360art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na360art.jpg">" pgfnum="508" type="include" url="http://static.curry.com/worldoutline/admin/2011/12/28/archive133.opml"/>
<outline text="NA-359-2011-11-24" created="Sun, 20 Nov 2011 20:27:34 GMT" domain="359.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/11/24/na359art.jpg" width="512" height="512" class="storyImage" border="0" align="center" hspace="15" vspace="5" alt="A picture named na359art.jpg">" pgfnum="500" type="include" url="http://static.curry.com/worldoutline/admin/2011/12/28/archive132.opml"/>
<outline text="NA-358-2011-11-20" created="Thu, 17 Nov 2011 20:17:56 GMT" domain="358.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/11/20/na358art.jpg" width="512" height="512" class="storyImage" border="0" align="center" hspace="15" vspace="5" alt="A picture named na358art.jpg">" pgfnum="492" type="include" url="http://static.curry.com/worldoutline/admin/2011/12/28/archive131.opml"/>
<outline text="NA-357-2011-11-17" created="Sun, 13 Nov 2011 19:59:53 GMT" domain="357.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/11/17/na357art.jpg" width="512" height="512" class="storyImage" border="0" align="center" hspace="15" vspace="5" alt="A picture named na357art.jpg">" pgfnum="484" stylesheet="http://dl.dropbox.com/u/2533866/movetotx.css" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/20/archive130.opml"/>
<outline text="NA-356-2011-11-13" created="Thu, 10 Nov 2011 19:46:11 GMT" domain="356.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/11/13/na356art.jpg" width="512" height="512" class="storyImage" border="0" align="center" hspace="15" vspace="5" alt="A picture named na356art.jpg">" pgfnum="470" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/20/archive129.opml"/>
<outline text="NA-355-2011-11-10" created="Mon, 07 Nov 2011 20:31:57 GMT" domain="355.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/11/10/na355art.jpg" width="512" height="512" class="storyImage" border="0" align="center" hspace="15" vspace="5" alt="A picture named na355art.jpg">" pgfnum="461" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/20/archive128.opml"/>
<outline text="NA-354-2011-11-07" created="Thu, 03 Nov 2011 19:21:01 GMT" domain="354.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/11/07/na354art.jpg" width="512" height="512" class="storyImage" border="0" align="center" hspace="15" vspace="5" alt="A picture named na354art.jpg">" pgfnum="450" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/20/archive127.opml"/>
<outline text="NA-353-2011-11-03" created="Sun, 30 Oct 2011 19:05:22 GMT" domain="353.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/11/03/na353art.jpg" width="512" height="512" class="storyImage" border="0" align="center" hspace="15" vspace="5" alt="A picture named na353art.jpg">" pgfnum="437" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/04/archive104.opml"/>
</outline>
<outline text="10" created="Sun, 16 Oct 2011 19:33:24 GMT" pgfnum="400">
<outline text="NA-352-2011-10-30" created="Thu, 27 Oct 2011 19:18:51 GMT" domain="352.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/10/30/na352art.jpg" width="512" height="512" class="storyImage" border="0" align="center" hspace="15" vspace="5" alt="A picture named na352art.jpg">" pgfnum="421" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive048.opml"/>
<outline text="NA-351-2011-10-27" created="Sun, 23 Oct 2011 19:18:33 GMT" domain="351.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/10/27/na351art.jpg" width="512" height="512" class="storyImage" border="0" align="center" hspace="15" vspace="5" alt="A picture named na351art.jpg">" pgfnum="416" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive049.opml"/>
<outline text="NA-350-2011-10-23" created="Thu, 20 Oct 2011 19:23:03 GMT" domain="350.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/10/23/na350art.jpg" width="512" height="512" class="storyImage" border="0" align="center" hspace="15" vspace="5" alt="A picture named na350art.jpg">" menuEnabled="false" pgfnum="408" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive050.opml"/>
<outline text="NA-349-2011-10-20" created="Sun, 16 Oct 2011 19:33:12 GMT" domain="349.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/10/20/ns349art.jpg" width="512" height="512" class="storyImage" border="0" align="center" hspace="15" vspace="5" alt="A picture named ns349art.jpg">" menuEnabled="false" pgfnum="399" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive051.opml"/>
<outline text="NA-348-2011-10-16" created="Thu, 13 Oct 2011 20:13:02 GMT" domain="348.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/10/16/na348art.jpg" width="512" height="512" class="storyImage" border="0" align="center" hspace="15" vspace="5" alt="A picture named na348art.jpg">" menuEnabled="false" pgfnum="390" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive052.opml"/>
<outline text="NA-347-2011-10-13" created="Sun, 09 Oct 2011 19:34:28 GMT" domain="347.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/10/13/347art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named 347art.jpg">" pgfnum="382" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive053.opml"/>
<outline text="NA-346-2011-10-09" created="Thu, 06 Oct 2011 19:57:40 GMT" domain="346.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/10/09/na346art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na346art.jpg">" pgfnum="374" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive054.opml"/>
<outline text="NA-345-2011-10-06" created="Sun, 02 Oct 2011 19:05:33 GMT" domain="345.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/10/06/na345art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na345art.jpg">" pgfnum="362" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive055.opml"/>
<outline text="NA-344-2011-10-02" created="Thu, 29 Sep 2011 19:39:50 GMT" domain="344.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/10/02/na344art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na344art.jpg">" pgfnum="342" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive056.opml"/>
</outline>
<outline text="09" created="Thu, 03 Nov 2011 12:54:05 GMT" pgfnum="273">
<outline text="NA-343-2011-09-29" created="Sun, 25 Sep 2011 19:22:34 GMT" domain="343.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/09/29/343art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named 343art.jpg">" pgfnum="334" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive057.opml"/>
<outline text="NA-342-2011-09-25" created="Thu, 22 Sep 2011 19:57:35 GMT" domain="342.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/09/25/na342art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na342art.jpg">" pgfnum="323" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive058.opml"/>
<outline text="NA-341-2011-09-22" created="Sun, 18 Sep 2011 19:29:46 GMT" domain="341.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/09/22/na341art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na341art.jpg">" pgfnum="321" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive059.opml"/>
<outline text="NA-340-2011-09-18" created="Thu, 15 Sep 2011 19:10:02 GMT" domain="340.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/09/18/na340art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na340art.jpg">" pgfnum="293" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive060.opml"/>
<outline text="NA-339-2011-09-15" created="Sun, 11 Sep 2011 19:32:43 GMT" domain="339.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/09/15/na339art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na339art.jpg">" pgfnum="284" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive061.opml"/>
<outline text="NA-338-2011-09-11" created="Thu, 08 Sep 2011 19:32:06 GMT" domain="338.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/09/11/na338art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na338art.jpg">" pgfnum="272" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive062.opml"/>
<outline text="NA-337-2011-09-08" created="Sun, 04 Sep 2011 19:08:12 GMT" domain="337.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/09/08/na337art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na337art.jpg">" pgfnum="262" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive063.opml"/>
<outline text="NA-336-2011-09-04" created="Thu, 01 Sep 2011 19:46:06 GMT" domain="336.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/09/04/na336art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na336art.jpg">" pgfnum="244" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive064.opml"/>
<outline text="NA-335-2011-09-01" created="Sun, 28 Aug 2011 19:10:57 GMT" domain="335.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/09/01/na335art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na335art.jpg">" pgfnum="214" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive065.opml"/>
</outline>
<outline text="08" created="Thu, 03 Nov 2011 12:54:32 GMT" pgfnum="274">
<outline text="NA-334-2011-08-28" created="Thu, 25 Aug 2011 19:20:11 GMT" domain="334.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/08/28/na334art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na334art.jpg">" pgfnum="209" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive066.opml"/>
<outline text="NA-333-2011-08-25" created="Sun, 21 Aug 2011 18:50:07 GMT" domain="333.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/08/25/na333art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na333art.jpg">" pgfnum="195" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive067.opml"/>
<outline text="NA-332-2011-08-21" domain="332.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/08/21/na332art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na332art.jpg">" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive068.opml"/>
<outline text="NA-331-2011-08-18" created="Sun, 14 Aug 2011 19:06:03 GMT" domain="331.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/08/18/na331art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na331art.jpg">" pgfnum="185" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive069.opml"/>
<outline text="NA-330-2011-0814" created="Thu, 11 Aug 2011 19:05:21 GMT" domain="330.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/08/14/na330art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na330art.jpg">" pgfnum="152" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive070.opml"/>
<outline text="NA-329-2011-08-11" created="Sun, 07 Aug 2011 19:20:11 GMT" domain="329.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/08/11/na329art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na329art.jpg">" pgfnum="147" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive071.opml"/>
<outline text="NA-328-2011-08-07" created="Thu, 04 Aug 2011 20:16:39 GMT" domain="328.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/08/07/na328art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na328art.jpg">" pgfnum="137" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive072.opml"/>
<outline text="NA-327-2011-08-04" created="Sun, 31 Jul 2011 19:14:51 GMT" domain="327.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/08/04/na327art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na327art.jpg">" pgfnum="128" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive073.opml"/>
</outline>
<outline text="07" created="Thu, 03 Nov 2011 12:56:25 GMT" pgfnum="276">
<outline text="NA-326-2011-07-31" created="Thu, 28 Jul 2011 18:56:39 GMT" domain="326.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/07/31/na326art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na326art.jpg">" pgfnum="116" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive074.opml"/>
<outline text="NA-325-2011-07-28" created="Sun, 24 Jul 2011 20:47:37 GMT" domain="325.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/07/28/na325art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na325art.jpg">" pgfnum="108" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive075.opml"/>
<outline text="NA-324-2011-07-24" created="Thu, 21 Jul 2011 19:19:11 GMT" domain="324.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/07/24/na324art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na324art.jpg">" pgfnum="100" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive076.opml"/>
<outline text="NA-323-2011-07-21" created="Sun, 17 Jul 2011 20:22:17 GMT" domain="323.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/07/21/na323art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na323art.jpg">" pgfnum="81" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive077.opml"/>
<outline text="NA-322-2011-07-17" created="Thu, 14 Jul 2011 20:35:06 GMT" domain="322.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/07/17/na322art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na322art.jpg">" pgfnum="70" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive078.opml"/>
<outline text="NA-321-2011-07-14" created="Sun, 10 Jul 2011 21:54:01 GMT" domain="321.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/07/14/na321art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na321art.jpg">" pgfnum="34" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive079.opml"/>
<outline text="NA-320-2011-07-09" created="Thu, 07 Jul 2011 20:47:01 GMT" domain="320.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/07/10/na320art.jpg" width="512" height="512" border="0" align="center" hspace="15" vspace="5" alt="A picture named na320art.jpg">" pgfnum="13" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive080.opml"/>
<outline text="NA-319-2011-07-07" domain="319.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/07/07/na319art.jpg" width="307" height="307" border="0" align="center" hspace="15" vspace="5" alt="A picture named na319art.jpg">" stylesheet="http://dropbox.curry.com/Templates/alexandreCSS/2011-07-05 Full Gray/stylesheet.css" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive081.opml"/>
<outline text="NA-318-2011-07-03" domain="318.nashownotes.com" flDiscusComments="true" flDisquaComments="true" headerGraphic="<img src="http://blog.curry.com/images/2011/07/03/na318art.jpg" width="307" height="307" border="0" align="center" hspace="15" vspace="5" alt="A picture named na318art.jpg">" stylesheet="http://dropbox.curry.com/Templates/alexandreCSS/2011-06-30 Gitmo/stylesheet.css" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/03/archive082.opml"/>
</outline>
<outline text="06" created="Thu, 03 Nov 2011 12:54:52 GMT" pgfnum="275">
<outline text="NA-317-2011-06-30" domain="317.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/06/30/na317art.jpg" width="307" height="307" border="0" align="center" hspace="15" vspace="5" alt="A picture named na317art.jpg">" name="na31720110630" stylesheet="http://dropbox.curry.com/Templates/alexandreCSS/2011-06-24 Drone/stylesheet.css" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/04/archive087.opml"/>
<outline text="NA-316-2011-06-26" domain="316.nashownotes.com" menuName="NA Menu Bar" name="na31620110626" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/04/archive088.opml">
<outline text="<a href="http://posts.curry.com/2011/june/na31620110626/">Episode Webpage</a>" type="link" url="http://posts.curry.com/2011/june/na31620110626/"/>
<outline text="Shownotes" type="include" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/na316opml.opml"/>
<outline text="Assets">
<outline text="BF msnbc.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/BF msnbc.mp3"/>
<outline text="bill Maher j-license.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/bill Maher j-license.mp3"/>
<outline text="chong obama EO.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/chong obama EO.mp3"/>
<outline text="clinton elites.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/clinton elites.mp3"/>
<outline text="CNN news WTF.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/CNN news WTF.mp3"/>
<outline text="d-minus rating.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/d-minus rating.mp3"/>
<outline text="diabetes vaccine.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/diabetes vaccine.mp3"/>
<outline text="DK Libya.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/DK Libya.mp3"/>
<outline text="Haiku greece bailout.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/Haiku greece bailout.mp3"/>
<outline text="JCD Clips">
<outline text="aime aguchi.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/JCD Clips/aime aguchi.mp3"/>
<outline text="bulger.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/JCD Clips/bulger.mp3"/>
<outline text="clip on journalism.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/JCD Clips/clip on journalism.mp3"/>
<outline text="greece rant 1.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/JCD Clips/greece rant 1.mp3"/>
<outline text="greece rant 2.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/JCD Clips/greece rant 2.mp3"/>
<outline text="iraq embassy.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/JCD Clips/iraq embassy.mp3"/>
<outline text="mixed messages.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/JCD Clips/mixed messages.mp3"/>
<outline text="napolitano clip.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/JCD Clips/napolitano clip.mp3"/>
<outline text="PSA not in LA.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/JCD Clips/PSA not in LA.mp3"/>
<outline text="thatcher clip.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/JCD Clips/thatcher clip.mp3"/>
<outline text="vaccinated clip.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/JCD Clips/vaccinated clip.mp3"/>
<outline text="whitey bulger.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/JCD Clips/whitey bulger.mp3"/>
<outline text="wikileaks redux.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/JCD Clips/wikileaks redux.mp3"/>
</outline>
<outline text="na316art.jpg" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/na316art.jpg"/>
<outline text="obama candidate gaffe.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/obama candidate gaffe.mp3"/>
<outline text="obama monti gaffe.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/obama monti gaffe.mp3"/>
<outline text="obama robots.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/obama robots.mp3"/>
<outline text="oil insiders.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/oil insiders.mp3"/>
<outline text="Rick Perry mofo.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/Rick Perry mofo.mp3"/>
<outline text="RP Libya.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/RP Libya.mp3"/>
<outline text="RP-BF Weed-Chong.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/RP-BF Weed-Chong.mp3"/>
<outline text="turn off ur tv.mp3" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/turn off ur tv.mp3"/>
</outline>
<outline text="<a href="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/na316art.jpg">Cover Art</a>" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/06/NA-316-2011-06-26/Assets/na316art.jpg"/>
<outline text="Direct <a href="http://m.podshow.com/media/15412/episodes/286151/noagenda-286151-06-26-2011.mp3">link to the MP3</a> file" created="Sun, 19 Jun 2011 20:38:23 GMT" pgfnum="1314" type="link" url="http://m.podshow.com/media/15412/episodes/286151/noagenda-286151-06-26-2011.mp3"/>
<outline text="<a href="http://dvorak.org/na"></a><a href="http://dvorak.org/na">Support our work and the show</a>" type="link" url="http://dvorak.org/na"/>
<outline text="HowTo on designing this page" type="link" url="http://templates.worldoutline.org/"/>
<outline text="Design this page!" type="link" url="http://blog.curry.com/stories/2011/05/27/noAgendaShownotesDesignCha.html"/>
<outline text="<i>CSS design by Alexandre Cabrita</i>" type="link" url="http://twitter.com/alexmcabrita"/>
</outline>
<outline text="NA-315-2011-06-23" domain="315.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/06/23/na315art.jpg" width="307" height="307" border="0" align="center" hspace="15" vspace="5" alt="A picture named na315art.jpg">" stylesheet="http://dropbox.curry.com/Templates/alexandreCSS/2011-06-25 lirico/stylesheet.css" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/04/archive089.opml"/>
<outline text="NA-314-2011-06-19" domain="314.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/06/19/na314art2.jpg" width="307" height="307" border="0" align="center" hspace="15" vspace="5" alt="A picture named na314art2.jpg">" stylesheet="http://dropbox.curry.com/Templates/alexandreCSS/2011-07-01 Wood/stylesheet.css" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/04/archive090.opml"/>
<outline text="NA-313-2011-06-16" domain="313.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/06/16/na313art.jpg" width="307" height="307" border="0" align="center" hspace="15" vspace="5" alt="A picture named na313art.jpg">" stylesheet="http://dropbox.curry.com/Templates/alexandreCSS/2011-07-01 sky/stylesheet.css" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/04/archive091.opml"/>
<outline text="NA-312-2011-06-12" domain="312.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/06/12/na312art.jpg" width="307" height="307" border="0" align="center" hspace="15" vspace="5" alt="A picture named na312art.jpg">" stylesheet="http://dropbox.curry.com/Templates/313-design/stylesheet.css" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/04/archive092.opml"/>
<outline text="NA-311-2011-06-09" domain="311.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/06/09/na311art.jpg" width="307" height="307" border="0" align="center" hspace="15" vspace="5" alt="A picture named na311art.jpg">" stylesheet="http://dropbox.curry.com/Templates/311 na design/311_design_NAshow.css" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/04/archive093.opml"/>
<outline text="Interview with Gary Johnson" domain="garyjohnson.nashownotes.com" type="include" url="http://dropbox.curry.com/Interviews/garyJohnson.opml"/>
<outline text="NA-310-2011-06-05" domain="310.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/06/05/na310art.jpg" width="307" height="307" border="0" align="center" hspace="15" vspace="5" alt="A picture named na310art.jpg">" styles="" stylesheet="http://dropbox.curry.com/Templates/rv-theme/worldOutlineDefaultStyles.css" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/04/archive094.opml"/>
<outline text="NA-309-2011-06-02" domain="309.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/06/02/na309art.jpg" width="307" height="307" border="0" align="center" hspace="15" vspace="5" alt="A picture named na309art.jpg">" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/04/archive095.opml"/>
</outline>
<outline text="05" created="Thu, 03 Nov 2011 12:57:02 GMT" pgfnum="277">
<outline text="NA-308-2011-05-29" domain="308.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/05/29/na308art.jpg" width="307" height="307" border="0" align="center" hspace="15" vspace="5" alt="A picture named na308art.jpg">" styles="</style><link href="http://dropbox.curry.com/Templates/wwdc/worldOutlineDefaultStyles.css" rel="stylesheet" type="text/css"><style>" stylesheet="http://dropbox.curry.com/Templates/wwdc/worldOutlineDefaultStyles.css" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/04/archive096.opml"/>
<outline text="NA-307-2011-05-26" domain="307.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/05/26/na307art.jpg" width="256" height="256" border="0" align="center" hspace="15" vspace="5" alt="A picture named na307art.jpg">" nodeTitle="NA-307-2011-05-26" stylesheet="http://dropbox.curry.com/Templates/wwdc/worldOutlineDefaultStyles.css" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/04/archive097.opml"/>
<outline text="NA-306-2011-05-22" domain="306.nashownotes.com" headerGraphic="<img src="http://blog.curry.com/images/2011/05/22/na306art.jpg" width="307" height="307" border="0" align="right" hspace="15" vspace="5" alt="A picture named na306art.jpg">" nodeTitle="NA-306-2011-05-22" styles="" stylesheet="http://dl.dropbox.com/u/1028851/wo_stylework/wo_console.css" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/04/archive098.opml"/>
<outline text="NA-305-2011-05-19" domain="305.nashownotes.com" nodeTitle="NA-305-2011-05-19" styles="</style><link href="http://dropbox.curry.com/Templates/Dave Jones 305/305nashownotes.css" rel="stylesheet" type="text/css"><style>" stylesheet="http://dropbox.curry.com/Templates/Dave Jones 305/305nashownotes.css" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/04/archive099.opml"/>
<outline text="NA-304-2011-05-15" domain="304.nashownotes.com" nodeTitle="NA-304-2011-05-15" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/04/archive100.opml"/>
<outline text="NA-303-2011-05-12" domain="303.nashownotes.com" nodeTitle="NA-303-2011-05-12" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/04/archive101.opml"/>
<outline text="NA-302-2011-05-08" domain="302.nashownotes.com" nodeTitle="NA-302-2011-05-08" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/04/archive102.opml"/>
<outline text="NA-301-2011-05-05" domain="301.nashownotes.com" nodeTitle="NA-301-2011-05-05" stylesheet="http://dropbox.curry.com/Templates/rv-theme/worldOutlineDefaultStyles.css" type="include" url="http://static.curry.com/worldoutline/admin/2011/11/04/archive103.opml"/>
<outline text="301" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/05/na301opml.opml"/>
<outline text="300" type="link" url="http://dropbox.curry.com/ShowNotesArchive/2011/05/na300opml.opml"/>
</outline>
<outline text="04" created="Thu, 03 Nov 2011 12:57:17 GMT" pgfnum="278">
<outline text="299" type="link" url="http://dropbox.curry.com/ShowNotesArchive/na299opml.opml"/>
<outline text="298" type="link" url="http://dropbox.curry.com/ShowNotesArchive/na298opml.opml"/>
<outline text="297" type="link" url="http://dropbox.curry.com/ShowNotesArchive/na297opml.opml"/>
<outline text="296" type="link" url="http://dropbox.curry.com/ShowNotesArchive/na296opml.opml"/>
<outline text="295" type="link" url="http://dropbox.curry.com/ShowNotesArchive/na295opml.opml"/>
<outline text="294" type="link" url="http://dropbox.curry.com/ShowNotesArchive/na294opml.opml"/>
<outline text="293" type="link" url="http://dropbox.curry.com/ShowNotesArchive/na293opml.opml"/>
<outline text="292" type="link" url="http://dropbox.curry.com/ShowNotesArchive/na292opml.opml"/>
</outline>
<outline text="03" created="Thu, 03 Nov 2011 12:57:32 GMT" pgfnum="279">
<outline text="291" name="291" type="link" url="http://dropbox.curry.com/ShowNotesArchive/na291opml.opml">
<outline text="NA-291-2011-03-31 Credits" created="Sun, 13 Feb 2011 23:23:22 GMT" ctSaves="316" flLiveBlog="true" flNotInChronology="true" flPreview="false" server="xmlrpc://adam.reallysimple.org:5337/RPC2" storySerialNum="40" type="scripting2Post" url="http://blog.curry.com/stories/2011/02/13/adamCurrysFractonalHorsepo.html" username="adam" versionClient="0.4" versionServer="0.4" whenLastSave="Sun, 20 Mar 2011 16:01:04 GMT">
<outline text="Unconstitutional Botox"/>
<outline text="Executive Producers: Chuck Martin, MediaSplash.net"/>
<outline text="Exutive Producers and 300 Club members: Gary Lader,James Sutton"/>
<outline text="This Episode's Associate Executive Producer and 291 Club Member:"/>
<outline text="Associate Executive Producers: Mateusz Berezecki, Kevin McNolte"/>
<outline text="Knighthoods">
<outline text="Gary Lader"/>
<outline text="P Sneekes"/>
</outline>
<outline text="Become a member of the 292 Club, support the show here" type="link" url="http://dvorak.org/na"/>
<outline text="Art By: Jesse Anderson"/>
<outline text="PR" created="Sun, 13 Feb 2011 23:23:22 GMT" ctSaves="336" flLiveBlog="true" flNotInChronology="true" flPreview="false" server="xmlrpc://adam.reallysimple.org:5337/RPC2" storySerialNum="40" type="scripting2Post" url="http://blog.curry.com/stories/2011/02/13/adamCurrysFractonalHorsepo.html" username="adam" versionClient="0.4" versionServer="0.4" whenLastSave="Tue, 29 Mar 2011 05:58:07 GMT">
<outline text="crackpotcommandcenter.com">
<outline text="Domain Name redirection:"/>
<outline text=""/>
<outline text="www.crackpotcommandcenter.com "/>
<outline text="points to: "/>
<outline text="http://www.noagendashow.com/"/>
</outline>
<outline text="gitmoradio.com">
<outline text="Hi John and Adam and Prost Mahlzeit from Beer City of Gitmo Nation Deutschland!"/>
<outline text=""/>
<outline text="Adam, as I'm a longtime listener but haven't donated yet, feel free to hit the douche bag button. I definitely deserve it."/>
<outline text=""/>
<outline text="In my defense, however, I have to admit that I've tried to save every penny in the last couple of years to finally make my dream come true and visit the People's Republic of California."/>
<outline text="I'm going to be on a 3 weeks road trip with my boyfriend in June, starting in L.A., driving up PCH to San Francisco, passing by Yosemite and Death Valley to eventually arrive in Vegas."/>
<outline text=""/>
<outline text="So, if you have some good advice for two mid-twenties on what to do or where to go besides the typical tourist traps, I'm all ears. Anything would be highly appreciated."/>
<outline text=""/>
<outline text="Anyway, let's get to the point of my email."/>
<outline text="I spent some time looking for possible domain names today and was really surprised that this no-brainer was still available. I just couldn't help myself and registered GitmoRadio.com which is now forwarding to noagendashow.com."/>
<outline text=""/>
<outline text="Hope you like it."/>
<outline text=""/>
<outline text="And I hereby promise, whatever amount of my gambling budget survives Vegas, I will donate 50% of it. "/>
<outline text="But I guess this does not qualify for some Karma, does it?"/>
<outline text=""/>
<outline text="best regards"/>