-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1891 lines (1785 loc) · 490 KB
/
index.html
File metadata and controls
1891 lines (1785 loc) · 490 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- PUT ALL OTHER CSS SHEETS HERE -->
<head>
<title>The Vector</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="/assets/font/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="/assets/font/font.css" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Crimson+Text&family=Forum&family=Mate+SC&display=swap" rel="stylesheet" />
<link id="pagestylelite" rel="stylesheet" type="text/css" href="/assets/css/style_lite.css" media="screen" />
<link id="headstylelite" rel="stylesheet" type="text/css" href="/assets/css/responsive_lite.css" media="screen" />
<link rel="stylesheet" type="text/css" href="/assets/css/bootstrap.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="/assets/css/jquery.bxslider.css" media="screen" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<script src="https://unpkg.com/@webcomponents/webcomponentsjs"></script>
<script src="https://unpkg.com/rss-ticker"></script>
<!-- COLOR MODE CHANGER -->
<!-- PUT YOUR STARTING CSS SHEET HERE -->
<link id="pagestyle" rel="stylesheet" type="text/css" href="/assets/css/style.css">
<link id="headstyle" rel="stylesheet" type="text/css" href="/assets/css/responsive.css" media="screen" />
<!-- THIS IS THE STYLE CHANGING FUNCTION -->
<script>
function swapStyleSheet(sheet, headsheet, sheetlite, headsheetlite) {
document.getElementById('pagestyle').setAttribute('href', sheet);
document.getElementById('headstyle').setAttribute('href', headsheet);
document.getElementById('pagestylelite').setAttribute('href', sheetlite);
document.getElementById('headstylelite').setAttribute('href', headsheetlite);
}
</script>
<!-- THIS IS THE STICKY TITLE SCROLL FUNCTION -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script type="text/javascript">
$(window).scroll(function() {
if ($(window).scrollTop() > 420) {
$(".header_area").addClass("fixed");
} else {
$(".header_area").removeClass("fixed");
}
});
</script>
</head>
<!-- THESE ARE THE BUTTON LINKS -->
<body>
<h9>Change Color Scheme</h9>
<button2 onclick="swapStyleSheet('/assets/css/style.css','/assets/css/responsive.css')">Dark Mode</button2>
<!-- IF I MAKE MORE STYLES I CAN PUT THEM HERE AS OTHER BUTTONS. <button onclick="swapStyleSheet('blue.css')">Blue Style Sheet</button> -->
<button onclick="swapStyleSheet('/assets/css/style_lite.css','/assets/css/responsive_lite.css')">Light Mode</button>
<button3 onclick='window.location.href = "index_es.html"'>Español</button3>
</body>
<!-- <div class="transparencyEmbed" id="tp-cpi" data-year="2020"></div>
<script src="https://transparency.org/assets/dist/embed-generator.js"></script> -->
<body>
<div class="body_wrapper">
<div class="center">
<div class="header_area">
<div class="logo">
<a href="index.html"><img class="img2" src="images/logo%20(copy%2010).png" alt="" /></a>
</div>
<!-- <div class="logo2"><a href="#"><img src="images/Old-Watch.png" alt="" /></a></div> -->
<button4 onclick='window.open("https://www.bitchute.com/channel/97fUrru4oBOT/","_blank")'>Vector Radio en español</button4>
<div class="top_menu float">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<!-- <li><a href="#">Subscribe</a></li>
<li><a href="#">Login</a></li> -->
</ul>
</div>
<!-- SOCIAL MEDIA ADDITIONS GO HERE ONCE THEY ARE ESTABLISHED -->
<!-- <div class="social_plus_search floatright">
<div class="social">
<ul>
<li><a href="#" class="twitter"></a></li>
<li><a href="#" class="facebook"></a></li>
<li><a href="#" class="feed"></a></li>
</ul>
</div>
<div class="search">
<form action="#" method="post" id="search_form">
<input type="text" value="Search news" id="s" />
<input type="submit" id="searchform" value="search" />
<input type="hidden" value="post" name="post_type" />
</form>
</div>
</div>
</div> -->
<!-- PHP TESTING AREA -->
<div class="main_menu_area">
<ul id="nav">
<li><a href="editorials.html">editorials</a>
<!-- <ul>
<li><a class="a2" href="/editorials/hhs-blows-up-us-covid-data.html">HHS Blows up long-term US COVID-19 data, but opts for new Pediatric ICU categories</a></li>
<li><a class="a3" href="/editorials/magic-vaccine-theory.html">The Magic Vaccine Theory</a></li>
<li><a class="a4" href="https://vector-news.github.io/editorials/CausalAnalysisReport_html.html">Worldwide Bayesian Causal Impact Analysis of Vaccine Administration on Deaths and Cases Associated with COVID-19: A BigData Analysis of 145 Countries</a></li>
</ul> -->
</li>
<!-- <li><a href="https://www.bitchute.com/channel/97fUrru4oBOT/" target="_blank">vector radio</a>
<ul>
<li><a href="#">Single item</a></li>
<li><a href="#">Single item</a></li>
<li><a href="#">Single item</a></li>
</ul>
</li> -->
<li><a href="world_watch.html">world watch</a>
<!-- <ul>
<li><a href="#">Single item</a></li>
<li><a href="#">Single item</a></li>
<li><a href="#">Single item</a></li>
</ul> -->
</li>
<li><a href="elite_watch.html">elite watch</a>
<!-- <ul>
<li><a href="#">Single item</a></li>
<li><a href="#">Single item</a></li>
<li><a href="#">Single item</a></li>
</ul> -->
</li>
<li><a href="tech_watch.html">tech watch</a>
<!-- THIS CAN ADD A DROPDOWN LIST OF ARTICLES
HOW CAN I MAKE THESE UPDATE AUTOMATICALLY?
<ul>
<li><a href="#">Single item</a></li>
<li><a href="#">Single item</a></li>
<li><a href="#">Single item</a></li>
</ul> -->
</li>
<li><a href="financial_watch.html">financial watch</a>
<!-- <ul>
<li><a href="#">Single item</a></li>
<li><a href="#">Single item</a></li>
<li><a href="#">Single item</a></li>
</ul> -->
</li>
<li><a href="covid_watch.html">covid watch</a>
<!-- <ul>
<li><a href="#">Single item</a></li>
<li><a href="#">Single item</a></li>
<li><a href="#">Single item</a></li>
</ul> -->
</li>
<li><a href="covid_science.html">covid science</a>
<!-- <ul>
<li><a href="#">Single item</a></li>
<li><a href="#">Single item</a></li>
<li><a href="#">Single item</a></li>
</ul> -->
</li>
<li><a href="culture_watch.html">culture watch</a>
<!-- <ul>
<li><a href="#">Single item</a></li>
<li><a href="#">Single item</a></li>
<li><a href="#">Single item</a></li>
</ul> -->
</li>
</ul>
</div>
</div>
<!-- CRYPTO TICKER -->
<script defer src="https://www.livecoinwatch.com/static/lcw-widget.js"></script>
<div class="livecoinwatch-widget-5" lcw-base="USD" lcw-color-tx="#33a2a8" lcw-marquee-1="coins" lcw-marquee-2="movers" lcw-marquee-items="30"></div>
<!-- HEADLINE TICKER FOR BIG SCREENS
<rss-ticker id="rss1" url="https://www.naturalnews.com/feedlyrss.xml" proxy-url="https://johnerps.com/php/getfile.php?url=%%_URL_%%" autostart="1" speed="3" color-new="#33a2a8" color-old="#33a2a8" font-color="#fff" hrs-old="6" transparency="0.3" infobox-link-color="#1a1a1a" infobox-link-bgcolor="lime" font-size="1.3"></rss-ticker> -->
<!-- HEADLINE TICKER FOR SMALL SCREENS
<rss-ticker id="rss2" url="https://www.naturalnews.com/feedlyrss.xml" proxy-url="https://johnerps.com/php/getfile.php?url=%%_URL_%%" autostart="1" speed="5" infobox-img-size="3" color-new="#33a2a8" color-old="##33a2a8" transparency="0.3" infobox-link-color="#fff" infobox-link-bgcolor="lime"></rss-ticker> -->
<h1 class="title">CURATED NEWS</h1>
<div class="main_content floatleft">
<!-- USE THIS FOR ALERTS IF NECESSARY
<p2>alert! alert! alert! they are shutting down the web!!!</p2>
-->
<!-- ADD ALL NEW ARTICLES HERE RIGHT ON TOP. WHEN THE LIST GETS TOO FULL, MAYBE MORE THAN 30 OR 40, START ARCHIVING FROM THE BOTTOM IN EACH OF THE DIFFERENT WATCH PAGES. SET UP MORE WATCH PAGES AS NECESSARY.-->
<h2a><a target="_blank" href="http://dx.doi.org/10.13140/RG.2.2.34214.65605">STUDY: Worldwide Bayesian Causal Impact Analysis of Vaccine Administration on Deaths and Cases Associated with COVID-19: A BigData Analysis of 145 Countries </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: ResearchGate ~ Kyle Beattie | November 16, 2021</h4>
<h2a><a target="_blank" href="https://vector-news.github.io/editorials/magic-vaccine-theory.html">EXCLUSIVE: The Magic Vaccine Theory </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Vector ~ Dr. Sluggo | January 1, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/05/exclusive-footage-secret-video-recordings-leaked-inside-hole-dc-gitmo-first-footage-ever-released-inside-dc-gitmo-political-prison/">Secret Video Recordings LEAKED from Inside “The Hole” of DC Gitmo — First Footage Ever Released of Cockroach and Mold Infested Cell of J6 Political Prisoner </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cara Castronuova | May 25, 2022</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/exclusive-special-ed-teacher-who-interacted-with-uvalde-shooter-exposes-killers-troubled-past/">Special Ed Teacher Who Interacted With Uvalde Shooter Exposes Killer’s Troubled Past </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Infowars ~ Infowars | May 25, 2022</h4>
<h2a><a target="_blank" href="https://alt-market.us/gun-rights-are-more-important-than-false-security-and-appeasing-leftists/">Gun Rights Are More Important Than False Security And Appeasing Leftists </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Alt-Market ~ Brandon Smith | May 25, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-05-24-who-corruption-biggest-threat-public-health.html">WHO corruption is one of the biggest threats to public health – and its power may be about to expand like never before </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Natural News ~ Cassie B | May 24, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-05-24-triple-vaccinated-children-more-likely-to-die.html">UK data: Triple vaccinated children 303 times more likely to die of COVID-19 than unvaccinated children </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Zoey Sky | May 24, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/05/end-america-attorney-thomas-renz-reveals-really-happening-world-health-assembly-week/">Is This The End Of American Sovereignty? Attorney Thomas Renz Reveals What’s Really Happening At The World Health Assembly This Week </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Alicia Powe | May 24, 2022</h4>
<h2a><a target="_blank" href="https://www.nbcnews.com/politics/national-security/analysis-hunter-bidens-hard-drive-shows-firm-took-11-million-2013-2018-rcna29462">Analysis of Hunter Biden's hard drive shows he, his firm took in about $11 million from 2013 to 2018, spent it fast </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: NBC News ~ Tom Winter, Sarah Fitzpatrick, Chloe Atkins and Laura Strickler | May 18, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-05-23-byram-bridle-challenged-canada-debate-covid-vaccines.html">Dr. Byram Bridle challenged Canadian health officials to a debate about covid vaccines; “they didn’t show up” </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | May 23, 2022</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/bolsonaro-rejects-whos-pandemic-treaty-brazil-is-autonomous/">Bolsonaro Rejects WHO’s Pandemic Treaty: ‘Brazil Is Autonomous’ </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Jamie White | May 22, 2022</h4>
<h2a><a target="_blank" href="https://nypost.com/2022/05/21/how-canada-went-from-liberal-democracy-to-authoritarian-state/">Once a liberal democracy, Canada is now an authoritarian state </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: New York Post ~ Rav Arora | May 21, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-05-21-costa-rican-government-under-siege-massive-ransomware-attack.html">Costa Rican government under siege from massive ransomware attack; hackers threaten to overthrow regime </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | May 21, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-05-16-noted-financial-analyst-covid-pandemic-wanes-excess-mortality-persists-vaccines.html">Noted financial analyst says while COVID pandemic wanes, excess mortality persists, likely due to vaccines </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | May 16, 2022</h4>
<h2a><a target="_blank" href="https://www.heraldscotland.com/news/20137268.investigation-launched-amid-second-unusual-spike-neonatal-deaths-scotland/">Investigation launched amid second 'unusual' spike in neonatal deaths in Scotland </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Herald ~ Helen McArdle | May 13, 2022</h4>
<h2a><a target="_blank" href="https://telegra.ph/Briefing-on-the-results-of-the-analysis-of-documents-related-to-the-military-biological-activities-of-the-United-States-on-the-t-05-11">Briefing on the results of the analysis of documents related to the military biological activities of the United States on the territory of Ukraine </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Telegra.ph ~ Telegra.ph | May 11, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-05-10-fda-admits-covid-vaccines-cause-blood-clots.html#">FDA finally admits that covid vaccines cause blood clots </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | May 10, 2022</h4>
<h2a><a target="_blank" href="https://expose-news.com/2022/05/05/pfizer-hid-dangers-covid-vaccination-pregnancy/">FOI reveals Pfizer and Medicine Regulators hid the dangers of Covid-19 Vaccination during Pregnancy because Study found it increases risk of Birth Defects & Infertility </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Expose ~ The Expose | May 5, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-05-05-covid-vaccines-more-likely-to-kill-than-save.html">COVID-19 vaccines more likely to kill people than save lives, research reveals </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Belle Carter | May 5, 2022</h4>
<h2a><a target="_blank" href="https://www.dailymail.co.uk/news/article-10728521/Financial-records-reveal-Joe-Biden-5-2million-unexplained-income.html">Joe's missing millions! Financial records reveal Biden had $5.2million in unexplained income - as emails show he paid Hunter's legal bills for one megabucks Chinese deal and was tapped as 'big guy' to get a 10% cut in another </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Daily Mail ~ Josh Boswell | April 26, 2022</h4>
<h2a><a target="_blank" href="https://strangesounds.org/2022/04/microwave-power-beaming-scientists-at-us-naval-research-laboratory-wirelessly-transmitted-1-6-kilowatts-of-electrical-energy-over-one-kilometer-video.html">Microwave power beaming! Scientists at US Naval Research Laboratory wirelessly transmitted 1.6 kilowatts of electrical energy over one kilometer </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Strange Sounds ~ | April 28, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/05/supreme-court-unanimously-rules-city-boston-violated-first-amendment-refusing-fly-christian-flag/">Supreme Court Unanimously Rules City of Boston Violated First Amendment in Refusing to fly Christian Flag </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | May 2, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-05-02-zelensky-amassed-850m-personal-fortune-before-war.html">Is Zelensky corrupt? He amassed an $850 million personal fortune in the years before the war with Russia </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | May 2, 2022</h4>
<h2a><a target="_blank" href="https://www.dailymail.co.uk/health/article-10759403/CDC-FDA-altered-Covid-guidance-pressure-bombshell-report-claims.html">CDC and FDA 'altered' Covid guidance and even 'suppressed' findings while under political pressure, bombshell report suggests: Whistle-blower employees say they feared 'retaliation' if they spoke up </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Daily Mail ~ Luke Andrews | April 27, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/05/newly-discovered-tweets-reveal-bidens-singing-disinformation-czar-nina-jankowicz-wrong-nearly-every-single-issue-past-5-years/">Newly Discovered Tweets Reveal Biden’s Singing Disinformation Czar Nina Jankowicz Has Been Wrong about Nearly Every Single Issue in Past 5 Years </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | May 1, 2022</h4>
<h2a><a target="_blank" href="https://ourorganicwellness.com/amish-farmer-faces-250k-fine-jail-time-and-losing-his-sustainable-farm-for-processing-his-own-meat/">Amish Farmer Faces $250K Fine, Jail Time And Losing His Sustainable Farm For Processing His Own Meat </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Our Organic Wellness ~ Rhonda Jones | April 26, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-05-01-stunning-video-shows-pfizer-committed-massive-fraud-vaccine-trials.html">Stunning video by Canadian doctors shows how Pfizer committed massive fraud during COVID-19 vaccine trials </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | May 1, 2022</h4>
<h2a><a target="_blank" href="https://m.theepochtimes.com/hunter-bidens-china-business-deals-should-raise-alarm-bells-author-says_4410029.html">Hunter Biden’s China Business Deals Should Raise ‘Alarm Bells,’ Author Says </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Epoch Times ~ Frank Fang | April 18, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-04-29-anti-corporate-anti-establishment-leftists-embracing-corporations-poisons-mandates.html#">Anti-corporate, anti-establishment leftists now embracing corporations, poisons, mandates in age of COVID </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | April 29, 2022</h4>
<h2a><a target="_blank" href="https://www.theepochtimes.com/exclusive-jan-6-bodycam-footage-shows-officer-repeatedly-striking-unconscious-protester-with-wooden-stick_4430813.html?utm_source=partner&utm_campaign=TheLibertyDaily">New Jan. 6 Bodycam Videos Show DC Police Officer Assaulting Unconscious Protester </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: The Epoch Times ~ Joseph M. Hanneman | April 29, 2022</h4>
<h2a><a target="_blank" href="https://schiffgold.com/commentaries/oops-our-bad-imf-director-admits-we-printed-too-much-money/">Oops! Our Bad! IMF Director Admits “We Printed too Much Money” </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: Schiff Gold ~ Michael Maharrey | April 27, 2022</h4>
<h2a><a target="_blank" href="https://www.foxnews.com/media/china-elite-american-business-corporations-biden-schweizer">China 'uses elite capture to pay off' US oligarchs instead of 'head-to-head' conflict: Schweizer </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Fox News ~ Charles Creitz | February 16, 2022</h4>
<h2a><a target="_blank" href="https://www.bloomberg.com/news/articles/2022-04-26/anger-erupts-at-xi-s-big-white-army-of-lockdown-enforcers">Anger Erupts at Xi’s ‘Big White’ Army of Lockdown Enforcers </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Bloomberg ~ Bloomberg News | April 26, 2022</h4>
<h2a><a target="_blank" href="https://stevekirsch.substack.com/p/the-nih-now-knows-that-the-covid?s=r">The NIH now knows that the COVID vaccines can cause death 1 year from the vaccination date </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Substack ~ Steve Kirsch | April 25, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-04-28-usa-assassinates-leaders-bombs-infrastructure-steals-resources.html">WAR MONGER HYPOCRISY: USA assassinates leaders, bombs civilian infrastructure, and steals resources from countries, now complains about Russia in Ukraine </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Natural News ~ S.D. Wells | April 28, 2022</h4>
<h2a><a target="_blank" href="https://thenationalpulse.com/2022/04/22/a-social-credit-system-aimed-at-modifying-climate-change-behaviors-is-being-deployed-in-italy/">A Social Credit System Aimed at Modifying Climate Change Behaviors is Being Deployed in Italy </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: The National Pulse ~ WAHAGEN KHABAYAN | April 22, 2022</h4>
<h2a><a target="_blank" href="https://www.revolver.news/2022/04/leaked-docs-show-usaid-disguised-millions-population-control-as-covid-relief/">Leaked Documents Expose How USAID Disguised Millions in COVID Relief to Fund Population Control, Abortion </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Revolver News ~ Sophie Antenora | April 26, 2022</h4>
<h2a><a target="_blank" href="https://mb.ntd.com/sos-letter-depicts-situation-in-shanghai-community_768426.html">SOS Letter Depicts Situation in Shanghai Community </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: NTD ~ NTD Newsroom | April 20, 2022</h4>
<h2a><a target="_blank" href="https://reclaimthenet.org/big-tech-platforms-censored-in-favor-of-president-biden-646-times-in-two-years/">Big Tech platforms censored in favor of Biden 646 times in two years </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Reclaim the Net ~ Dan Frieth | April 22, 2022</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/news/obama-admits-covid-jab-has-been-clinically-tested-on-billions-while-chastising-americans-who-refused/?utm_source=featured&utm_campaign=usa">Obama admits COVID jab has been ‘clinically tested on billions’ while chastising Americans who refused </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: LifeSite ~ Louis Knuffke | April 22, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-04-22-hitlers-nazi-objective-master-race-eugenics-roots-in-america.html">Author warns that Hitler’s horrifying Nazi objective of “master race” eugenics actually has roots in America </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | April 22, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-04-22-imf-warning-food-supply-shortages-social-unrest.html">IMF now warning that food supply shortages will create waves of social unrest across the globe </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | April 22, 2022</h4>
<h2a><a target="_blank" href="https://newspunch.com/author-of-us-biowarfare-act-admits-biolabs-in-ukraine-are-criminal-enterprises/">Author of US Biowarfare Act Admits Biolabs in Ukraine Are ‘Criminal Enterprises’ </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: News Punch ~ Baxter Dmitry | April 17, 2022</h4>
<h2a><a target="_blank" href="https://archive.ph/Jj2OQ">Inside a Shanghai Mass Quarantine Center: No Showers, Lights On 24/7 </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Wall Street Journal ~ Natasha Khan | April 17, 2022</h4>
<h2a><a target="_blank" href="https://m.soundcloud.com/unlimited-hangout/sanctions-the-end-of-a-financial-era-with-john-titus">Sanctions and the End of a Financial Era with John Titus </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: Sound Cloud ~ Whitney Webb | April 15, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-04-15-ivermectin-cancer-cure-nine-studies-conclude.html#">Ivermectin is a powerful anti-cancer remedy, 9 peer-reviewed studies conclude </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | April 15, 2022</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2022/04/09/pfizer-vaccine-causes-hepatitis-children-uk-gov-investigates/">Pfizer Study suggests Covid-19 Vaccine to blame for huge increase in Hepatitis among Children as UK Government launches Urgent Investigation </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Expose ~ The Expose | April 9, 2022</h4>
<h2a><a target="_blank" href="https://peakprosperity.com/when-false-narratives-break/">When False Narratives Break </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Peak Prosperity ~ Chris Martenson | February 12, 2022</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2022/04/james-howard-kunstler/leviathan-floundering/">Leviathan Floundering </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Lew Rockwell ~ James Howard Kunstler | April 9, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-04-08-more-vaccines-weaker-immune-system.html">The more vaccines you take, the weaker your immune system becomes </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | April 8, 2022</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2022/04/06/german-ethics-council-criticises-reporting-by-media/">German Ethics Council Releases Draft Report Which Sharply Criticises Uncritical Reporting by Corporate Media During the Covid Era </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Expose ~ Rhoda Wilson | April 6, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-04-06-pfizer-fda-knew-antibody-dependent-enhancement-vaccinated.html">Pfizer, FDA have known for decades that antibody-dependent enhancement occurs in the vaccinated; tried to cover it up </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | April 6, 2022</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/2017-guardian-mini-doc-exposed-ukraines-neo-nazi-azov-youth-camps/">2017 Guardian Mini-Doc Exposed Ukraine’s Neo-Nazi Azov Youth Camps </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Infowars ~ Kelen McBreen | April 6, 2022</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2022/04/no_author/what-is-killing-the-millenials/">What Is Killing the Millenials? </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Lew Rockwell ~ Dr. Jessica Rose | April 4, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/04/inside-look-bidens-weird-fake-white-house-studio-video/">An Inside Look At Biden’s Weird And Fake White House Studio </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Staff | April 2, 2022</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/news/frontline-doctor-says-fetal-deaths-up-nearly-2000-percent-since-covid-jab-rollout/?utm_source=top_news&utm_campaign=usa">Frontline doctor says fetal deaths up nearly 2,000 percent since COVID jab rollout </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: LifeSite ~ Emily Mangiaracina | April 2, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/04/not-just-us-excess-deaths-skyrocket-worldwide-2021-following-rollout-experimental-covid-vaccine/">It’s Not Just the US: Excess Deaths Skyrocket Worldwide in 2021 Following Rollout of the Experimental Covid Vaccine </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Julian Conradson | April 1, 2022</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2022/04/01/uk-gov-admits-covid-vaccine-gene-therapy/">UK Government admits the Covid Vaccines are Gene Therapy after giving away millions of Taxpayers Money to expand production of Covid Jabs in the UK </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Expose ~ The Expose | April 1, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-31-full-list-51-deep-state-intelligence-officials-lied-about-hunter-bidens-laptop.html">See the full list of 51 deep state “intelligence” officials who lied about Hunter Biden’s laptop to try to defeat Trump in 2020 </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | March 31, 2022</h4>
<h2a><a target="_blank" href="https://theminnesotasun.com/2022/02/21/funeral-directors-embalmers-alarmed-by-unusual-blood-clots-in-vaccinated-bodies/">Funeral Directors, Embalmers Alarmed by Unusual Blood Clots in Vaccinated Bodies </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Minnesota Sun ~ Minnesota Sun Staff | February 21, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-29-new-zealand-lifts-covid-restrictions-skyrocketing-cases.html">New Zealand lifts majority of COVID-19 restrictions amid skyrocketing cases </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Zoey Sky | March 29, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-29-covid-vaccination-policies-philippines-killing-people.html">COVID-19 vaccination policies in the Philippines are KILLING people daily </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Arsenio Toledo | March 29, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-30-fda-trying-ban-nac-detoxification-prevent-covid.html">Corrupt FDA trying to ban NAC, which detoxifies the body and wards off COVID </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | March 30, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-30-bidens-wealth-grew-by-millions-as-hunters-lucrative-business-deals-increased.html">Joe and Jill Biden’s wealth grew by millions as Hunter’s lucrative business deals increased </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | March 30, 2022</h4>
<h2a><a target="_blank" href="https://palexander.substack.com/p/pfizer-offered-me-1-million-and-50000?s=r">Pfizer offered me $1 million & $50,000 month wage; was this to stop writing & hammering them/Bourla?; I have had limited patchy broken income due to being cancelled, smeared; I said NO! </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Substack ~ Dr. Paul Alexander | March 21, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-29-putin-declares-end-to-western-currencies-world-moving-towards-real-reserves.html">Russia’s Putin declares an end to Western currencies, says world moving towards “real reserves” including “land, food, gold” </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | March 29, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-28-police-arrest-reiner-fuellmich-grand-jury-lawyer.html">Police arrest one of Reiner Fuellmich’s grand jury lawyers, place her in custody in effort to block investigations into global vaccine crimes </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | March 28, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-28-heart-attacks-skyrocketing-media-avoids-blaming-vaccines.html">Heart attack rates are skyrocketing, and the media is blaming everything other than COVID vaccines </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | March 28, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/03/idaho-governor-brad-little-vetoes-legislation-seeks-protect-unvaccinated/">Idaho Governor Brad Little Vetoes Legislation that Seeks to Protect the Unvaccinated </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | March 29, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/03/preliminary-reports-show-foo-fighters-drummer-taylor-hawkins-died-cardiovascular-collapse-heart-2x-size-average-adult-male-age/">Preliminary Reports Show Foo Fighters Drummer Taylor Hawkins Died of “Cardiovascular Collapse” – Heart Was 2x the Size of Average Adult Male His Age </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Julian Conradson | March 29, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/03/gop-leader-mccarthy-plans-talk-madison-cawthorn-remarks-dc-elites-cocaine-inviting-orgy-parties/">GOP Leader McCarthy Plans to ‘Talk To’ Madison Cawthorn Over His Remarks on DC Elites Doing Cocaine, Inviting Him to Orgy Parties </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | March 29, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-26-covid-newspeak-definition-pandemic-vaccine-herd-immunity.html#">Covid newspeak brought definitional changes to words like “pandemic,” “vaccine,” and “herd immunity” </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | March 26, 2022</h4>
<h2a><a target="_blank" href="https://thenationalpulse.com/2022/03/24/biden-linked-company-partnered-with-ukraine-biolabs/">EXCLUSIVE: Hunter Biden Bio Firm Partnered With Ukrainian Researchers ‘Isolating Deadly Pathogens’ Using Funds From Obama’s Defense Department. </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The National Pulse ~ Natalie Winters | March 24, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-24-while-us-still-occupies-iraq-going-on-20-years-about-russia.html">While US STILL occupies Iraq going on 20 years, we’re condemning Russia for invading Ukraine </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Natural News ~ S.D. Wells | March 24, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-17-data-reveals-increased-millennial-deaths-vaccine-mandate.html">CDC data reveal 84% increase in death of millennials after vaccine mandate </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Zoey Sky | March 17, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-20-pfizer-fda-hide-covid-vaccine-trial-data.html">Former BlackRock advisor says Pfizer colluded with FDA to hide data that shows COVID “vaccine” clinical trials FAILED </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | March 20, 2022</h4>
<h2a><a target="_blank" href="https://greatgameindia.com/children-leukemia-covid-vaccines/">Children in China develop LEUKEMIA after getting injected with COVID shots </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Great Game India ~ Journal on Geopolitics and IR | March 13, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-14-scale-of-covid-vaccine-damage-a-nightmare.html">British MP: Scale of COVID vaccine damage a NIGHTMARE </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ramon Tomey | March 14, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/03/big-naomi-wolf-confirms-big-pharma-adding-varying-amounts-active-ingredient-batches-covid-vaccine-video/">This Is Big: Naomi Wolf Confirms Big Pharma Was Adding Varying Amounts of Active Ingredient to Batches of COVID Vaccine </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | March 14, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/03/no-one-person-unilateral-authority-make-decisions-millions-americans-rand-paul-introduces-amendment-fire-fauci-niaid-director/">“No One Person Should Have Unilateral Authority to Make Decisions For Millions of Americans” – Rand Paul Introduces Amendment to Fire Fauci as NIAID Director </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | March 14, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-18-christians-allowed-to-refuse-abortion-tainted-vaccines.html">NZ Court allows Christians to refuse getting abortion-tainted COVID-19 vaccines </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Mary Villareal | March 18, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-13-covid-lockdowns-never-followed-the-science.html">Australia’s draconian COVID lockdowns never ‘followed the science.’ Here’s proof </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ News Editors | March 13, 2022</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2022/03/10/triple-vaccinated-account-8-in-10-covid-deaths-england/">Deaths fall among Unvaccinated but rise among Fully Vaccinated, with Triple Jabbed now accounting for 8 in every 10 Covid-19 Deaths in England </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Expose ~ The Expose | March 10, 2022</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/dhs-releases-new-rules-on-extremism-will-target-anyone-who-questions-2020-election-or-challenges-covid-narrative/">DHS Releases New Rules on Extremism, Will Target Anyone Who Questions 2020 Election or Challenges COVID Narrative </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Jamie White | March 13, 2022</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/pfizer-ceo-backpedals-claims-pressured-into-producing-counterintuitive-mrna-injections/">Pfizer CEO Backpedals, Claims Pressured Into Producing ‘Counterintuitive’ mRNA Injections </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Infowars | March 12, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-22-leading-fact-checkers-claimed-hunter-bidens-laptop-was-hoax.html">Leading “fact-checker” falsely claimed that Hunter Biden’s laptop story was a hoax </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | March 22, 2022</h4>
<h2a><a target="_blank" href="https://banned.video/watch?id=6238c2f0bbda550ebf1c0a31">Watch The Media Lie To You About Hunter Biden's Laptop: Supercut </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: banned.video ~ banned.video | March 21, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/03/joe-biden-bet-everybody-knows-somebody-intimate-relationship-guy-takes-picture-naked-friend-blackmails-video/">Joe Biden: I Bet Everybody Knows Somebody…that In an Intimate Relationship… the Guy Takes a Picture of His Naked Friend and Then Blackmails </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | March 16, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-13-hunter-biden-investment-firm-funded-ukraine-biolabs.html">The plot thickens: Hunter Biden investment firm funded Ukraine biolabs </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Natural News ~ Ramon Tomey | March 13, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-14-researchers-create-photon-diode-for-optical-computer.html">Stanford researchers create photon diode for all-optical computer that runs on light instead of electricity </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Natural News ~ Virgilio Marin | March 14, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-22-ukrainian-biolabs-linked-to-ecohealth-alliance.html">Ukrainian biolabs linked to EcoHealth Alliance, which helped create and unleash COVID-19 </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | March 22, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-20-one-third-of-americans-willing-to-risk-nuclear-war-russia-ukraine-survey.html#">Survey finds that more than one-third of Americans are willing to risk nuclear war with Russia over Ukraine </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | March 20, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-18-document-proves-us-government-is-engaged-in-bioweapons-development.html">Document proves that U.S. government is guilty as charged over allegations it is engaged in bioweapons development in several countries </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | March 18, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-16-russia-exposes-network-of-biolabs-obama-biden-administration.html">As US government denies biological research in Ukraine, Russia exposes network of biolabs that began during the Obama-Biden administration </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Natural News ~ Lance D Johnson | March 16, 2022</h4>
<h2a><a target="_blank" href="https://stevekirsch.substack.com/p/10-things-you-should-know-about-the?s=r">Things you should know about the new Pfizer documents </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Substack ~ Steve Kirsch and Kyle Beattie | March 9, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-09-pfizer-knew-mrna-vaccine-leaked-into-ovaries.html">Pfizer knew its mRNA vaccine for covid “leaked into ovaries” but covered it all up </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | March 9, 2022</h4>
<h2a><a target="_blank" href="https://greenwald.substack.com/p/victoria-nuland-ukraine-has-biological?s=w">Victoria Nuland: Ukraine Has "Biological Research Facilities," Worried Russia May Seize Them </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Substack ~ Glenn Greenwald | March 9, 2022</h4>
<h2a><a target="_blank" href="https://www.rutherford.org/publications_resources/john_whiteheads_commentary/the_rise_of_global_fascism_and_the_end_of_the_world_as_we_know_it">The Rise of Global Fascism and the End of the World as We Know It </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: The Rutherford Institute ~ John W. Whitehead & Nisha Whitehead | March 8, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-08-fauci-walensky-collins-conspired-mass-murder-plandemic.html#">Fauci, Walensky and Collins all conspired to commit mass murder with the plandemic: Dr. Naomi Wolf </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | March 8, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-08-pfizer-vaccine-data-shows-more-side-effects.html">Pfizer vaccine data shows far more damaging side effects than initially expected </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Mary Villareal | March 8, 2022</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/senior-epidemiologist-apologizes-to-daughters-generation-for-morally-wrong-lockdown-measures/">Senior Epidemiologist Apologizes to Daughter’s Generation For “Morally Wrong” Lockdown Measures </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Paul Joseph Watson | March 8, 2022</h4>
<h2a><a target="_blank" href="https://bigleaguepolitics.com/economic-warfare-visa-and-mastercard-suspend-financial-operations-in-russia/">ECONOMIC WARFARE: Visa and Mastercard Suspend Financial Operations in Russia </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: Big Leage Politics ~ Shane Trejo | March 5, 2022</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/news/canadian-govt-detains-russian-nationals-to-hold-russia-accountable-for-its-invasion-of-ukraine/">Canadian gov’t detains Russian nationals to ‘hold Russia accountable for its invasion of Ukraine’ </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Lifesite ~ Anthony Murdoch | March 4, 2022</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/watch-bayer-exec-brags-mrna-shots-are-gene-therapy-marketed-as-vaccines/">Bayer Exec Brags mRNA Shots Are ‘Gene Therapy’ Marketed as ‘Vaccines’ </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Infowars | March 4, 2022</h4>
<h2a><a target="_blank" href="https://www.nature.com/articles/s41598-022-06605-w">Titanium dioxide particles frequently present in face masks intended for general use require regulatory control </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Nature ~ Dr. Eveline Verleysen et al. | February 15, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-03-fully-vaccinated-90-covid19-fatalities-england.html#">The fully vaccinated makeup 90% of covid-19 fatalities in England; the majority are triple vaccinated </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Lance D Johnson | March 3, 2022</h4>
<h2a><a target="_blank" href="https://thecovidworld.com/worst-fears-realized-pfizer-mrna-integrates-into-your-dna/">Worst Fears Realized: Pfizer mRNA Integrates Into Your DNA </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Covid World ~ Dr. Igor Chudov | February 27, 2022</h4>
<h2a><a target="_blank" href="https://www.mdpi.com/1467-3045/44/3/73">Intracellular Reverse Transcription of Pfizer BioNTech COVID-19 mRNA Vaccine BNT162b2 In Vitro in Human Liver Cell Line </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: MDPI ~ Dr. Markus Aidén et al. | February 25, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-03-01-covid-vaccines-increase-risk-of-myocarditis-in-children-by-over-13000-percent.html">COVID vaccines found to increase risk of myocarditis in children by over 13,000 percent </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Mary Villareal | March 1, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-02-25-covid-jabs-provide-virtually-no-protection-omicron.html">Study: Covid jabs provide “virtually no protection” against Omicron </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | February 25, 2022</h4>
<h2a><a target="_blank" href="https://thecovidblog.com/2022/02/18/michael-thompson-49-year-old-texas-college-sports-announcer-suffers-cardiac-event-at-halftime-of-basketball-game-falls-down-bleachers-and-dies/">Michael Thompson: 49-year-old Texas college sports announcer suffers “cardiac event” at halftime of basketball game, falls down bleachers and dies </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Covid Blog ~ admin | February 18, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-02-25-hygienists-rebuttal-letter-cdc-flawed-mask-guidance.html">Eight industrial hygienists author 27-page rebuttal letter addressing CDC’s flawed mask guidance </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | February 25, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-02-23-severe-covid-allergic-reaction-to-spike-protein.html">South African doctor: Severe COVID an allergic reaction to SPIKE PROTEIN nanoparticles </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ramon Tomey | February 23, 2022</h4>
<h2a><a target="_blank" href="http://ncio.ca/briefings/index.php/2021/07/10/nsicop-found-ample-evidence-that-both-justin-trudeau-and-chrystia-freeland-are-under-the-influence-control-of-foreign-states-and-entities/?fbclid=IwAR3ktjuErY1th-D4qc1QshcffNCCjVImmvUDSljF_IkDetGEFYSmikY6gEw">NSICOP found ample evidence that both Justin Trudeau and Chrystia Freeland are under the influence / control of foreign states and entities </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: NCIO ~ Paul W Kincaid | July 10, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-02-22-robert-malone-ryan-cole-cdc-hiding-data.html">‘Scientific fraud’: Drs. Robert Malone, Ryan Cole react to CDC hiding data </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ News Editors | February 22, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-02-22-covid-vaccines-far-deadlier-than-flu-vaccines.html">MATH DOESN’T LIE: COVID-19 vaccines are far deadlier than flu vaccines </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Arsenio Toledo | February 22, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-02-22-covid-vaccines-myocarditis-cdc-corruption-jama-study.html">Not convinced that covid “vaccines” cause myocarditis? See the CDC corruption details for yourself in this new JAMA paper </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | February 22, 2022</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2022/02/23/jcvi-myocarditis-kids-covid-vaccine-huge-risk/">JCVI admits the No. of Children who will suffer Myocarditis due to Covid-19 Vaccination is 815x greater than the No. of Children the Jab will save from Covid-19 </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Exposé ~ The Exposé | February 23, 2022</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2022/02/23/covid-jabs-increase-risk-of-miscarriage-by-1517-percent/">ovid-19 Vaccines increase risk of Miscarriage by at least 1517% when administered during Pregnancy </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Exposé ~ The Exposé | February 23, 2022</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/news/texas-gov-declares-transgender-drugs-and-surgeries-are-child-abuse-orders-investigations/">Texas gov. declares transgender drugs and surgeries are child abuse, orders investigations </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: LifeSite ~ Raymond Wolfe | February 22, 2022</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/former-pfizer-vp-warns-covid-19-vax-program-is-part-of-a-worldwide-conspiracy-and-a-criminal-manufacture/">Former Pfizer VP Warns COVID-19 Vax Program Is Part Of A Worldwide Conspiracy And A “Criminal Manufacture” </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Infowars | February 22, 2022</h4>
<h2a><a target="_blank" href="https://pierrekory.substack.com/p/the-disinformation-campaign-against?utm_source=url">The Disinformation Campaign Against Ivermectin - JAMA's "Diversion" </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Substack ~ Pierre Kory, MD, MPA | February 19, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/02/canadian-mp-says-single-moms-bank-account-frozen-donating-50-freedom-convoy/">Canadian MP Says Single Mom’s Bank Account Frozen For Donating $50 to Freedom Convoy </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | February 21, 2022</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/romanian-mep-scorches-tyrant-trudeaus-brutal-response-to-freedom-convoy/">Romanian MEP Scorches ‘Tyrant’ Trudeau’s Brutal Response To Freedom Convoy </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Infowars | February 20, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-02-19-two-teenagers-drop-dead-pfizer-vaccine.html">Two teenagers drop dead days after getting “vaccinated” with Pfizer – media silent </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | February 19, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/02/elite-capture-term-peter-schweizer-uses-describe-chinas-tool-used-entice-countrys-elites-money/">“ELITE CAPTURE” – Term Peter Schweizer Uses to Describe China’s Tool Used to Entice a Country’s Elites with Money and More </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Joe Hoft | February 20, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/02/brutal-video-captures-ottawa-police-dragging-protester-trucks-repeatedly-kneeing-officer-stand-around-approval/">Video Captures Ottawa Police Dragging Protester Between Trucks Then Repeatedly Kneeing Him as Other Officers Stand Around in Approval </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | February 20, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/02/canada-police-state-time-no-rule-law-guns-drawn-suspended-debate-parliament-toronto-reporter/">“Canada Is a Police State at This Time…There’s No Rule of Law…Guns Were Drawn…They Suspended the Debate in Parliament” – Toronto Reporter </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Joe Hoft | February 19, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/02/breaking-video-ottawa-police-shoot-rubber-bullets-tear-gas-peaceful-freedom-protesters/">BREAKING VIDEO: Ottawa Police Shoot Rubber Bullets and Tear Gas on Peaceful Freedom Protesters </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | February 19, 2022</h4>
<h2a><a target="_blank" href="https://www.ncbi.nlm.nih.gov/labs/pmc/articles/PMC8580522/">Evidence for a connection between coronavirus disease-19 and exposure to radiofrequency radiation from wireless communications including 5G </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Journal of Clinical and Translational Research ~ Beverly Rubik and Robert R. Brown | October 26, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/02/pandemic-wont-defined-end-newsom-unveils-californias-endemic-virus-policy-video/">“This Pandemic Won’t Have a Defined End” – Newsom Unveils California’s ‘Endemic’ Virus Policy </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | February 17, 2022</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2022/02/15/a-british-system-of-psychological-manipulation/">Brian Gerrish: A British System of Psychological Manipulation Which Has Been Sold Worldwide </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: The Exposé ~ Rhoda Wilson | February 15, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-02-14-cardiac-pacemaker-market-major-uptick-covid-vaccines.html">Global cardiac pacemaker market experiencing MAJOR “uptick” due to deadly Covid vaccines clogging blood and straining hearts </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ S.D. Wells | February 14, 2022</h4>
<h2a><a target="_blank" href="https://bariweiss.substack.com/p/what-the-truckers-want">What the Truckers Want </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Substack ~ Rupa Subramanya | February 10, 2022</h4>
<h2a><a target="_blank" href="https://newspunch.com/fact-checking-exposed-as-a-secret-cia-program-to-brainwash-the-public-stunning-report/">Fact Checking Exposed as a Secret CIA Program to Brainwash the Public – Stunning Report </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: News Punch ~ Sean Adl-Tabatabai | February 9, 2022</h4>
<h2a><a target="_blank" href="https://newspunch.com/bidens-dhs-you-are-now-officially-a-terror-threat-if-you-undermine-trust-in-government/">Biden’s DHS: You Are Now Officially a ‘Terror Threat’ If You ‘Undermine Trust’ In Government </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: News Punch ~ Baxter Dmitry | February 9, 2022</h4>
<h2a><a target="_blank" href="https://www.strategic-culture.org/news/2022/02/09/is-american-legacy-media-weapon-of-mass-destruction/">Is the American Legacy Media a ‘Weapon of Mass Destruction’? </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Strategic Culture Foundation ~ Robert Bridge | February 9, 2022</h4>
<h2a><a target="_blank" href="https://freewestmedia.com/2022/02/08/italy-most-covid-deaths-are-vaccinated-people/">Italy: ‘Most Covid deaths are vaccinated people’ </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Free West Media ~ FWM Staff | February 8, 2022</h4>
<h2a><a target="_blank" href="https://rairfoundation.com/israels-most-prestigious-hospital-70-to-80-of-serious-covid-cases-are-fully-vaccinated-video/">Israel's Most Prestigious Hospital: '70% to 80% of Serious Covid Cases are Fully Vaccinated </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: RAIR Foundation ~ Amy Mek | February 9, 2022</h4>
<h2a><a target="_blank" href="https://justthenews.com/politics-policy/coronavirus/tale-two-covids-dems-do-180-pandemic-response-attempt-rewrite-history">COVID pivot: Dems do 180 on pandemic response, attempt to rewrite history </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Just the News ~ Aaron Kliegman | February 10, 2022</h4>
<h2a><a target="_blank" href="https://headlineusa.com/disgraced-biden-science-adviser-held-1m-in-biontech-stock-while-pushing-covid-vaccines/">Disgraced Biden Science Adviser Held $1M in BioNTech Stock While Pushing COVID Vaccines </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: HeadlineUSA ~ Contibuting Author | February 9, 2022</h4>
<h2a><a target="_blank" href="https://www.rt.com/news/548711-johnson-johnson-covid-vaccine-pause/">Johnson & Johnson stops Covid-19 vaccine production </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: RT ~ RT | February 6, 2022</h4>
<h2a><a target="_blank" href="https://www.shtfplan.com/headline-news/pfizers-quiet-warning-unfavorable-pre-clinical-clinical-or-safety-data-may-impact-business">PFIZER’S QUIET WARNING: “UNFAVORABLE PRE-CLINICAL, CLINICAL OR SAFETY DATA” MAY IMPACT BUSINESS </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: SHTFplan ~ Mac Slavo | February 9, 2022</h4>
<h2a><a target="_blank" href="https://fee.org/articles/spain-s-first-study-on-omicron-finds-vaccinated-people-spread-covid-at-same-rate-as-unvaccinated/">Spain’s First Study on Omicron Finds Vaccinated People Spread COVID at Same Rate as Unvaccinated </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: FEE Stories ~ Jon Miltimore | February 2, 2022</h4>
<h2a><a target="_blank" href="https://greatgameindia.com/jeffrey-epstein-did-not-suicide/">Declassified Papers Show Israeli Spy Jeffrey Epstein Did Not Commit Suicide </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Great Game India ~ Great Game India | February 8, 2022</h4>
<h2a><a target="_blank" href="https://greatgameindia.com/india-covid-fake-labs/">In 2 Years Indians Spent Rs 74,000 Cr On Covid Tests By Fake Labs </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Great Game India ~ Great Game India | February 9, 2022</h4>
<h2a><a target="_blank" href="https://childrenshealthdefense.org/defender/bottled-water-twice-micro-plastic-tap/">Bottled Water Contains Nearly Twice as Much Plastic as Tap Water, Tests Show </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: The Defender ~ Dr. Joseph Mercola | February 9, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/02/video-illinois-father-weeps-rage-school-board-meeting-mask-mandates-ruined-daughters-development/">VIDEO: Illinois Father Weeps with Rage at School Board Meeting Over Mask Mandates that Ruined His Daughter’s Development – School Board Responds by Telling Audience to Put Their Masks On </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | February 9, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/02/dod-caught-major-scandal-us-military-caught-severe-data-manipulation-following-covid-reveal-no-way-revised-numbers-real/">DOD Caught in MAJOR SCANDAL: US Military Caught in Severe Data Manipulation Following COVID Reveal — No Way “Revised” Numbers Are Real </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | February 9, 2022</h4>
<h2a><a target="_blank" href="https://brownstone.org/articles/what-happened-to-progressivism/">What Happened to Progressivism? </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Brownstone Institute ~ Dr. Toby Rogers | February 5, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/02/draft-devastating-presentation-exposing-military-corruption-covid-19-sent-members-congress/">Devastating Presentation “Exposing Military Corruption During COVID-19” Sent to Members of Congress </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Joe Hoft | February 9, 2022</h4>
<h2a><a target="_blank" href="https://www.bitchute.com/video/rxOjGIiPHF9p/">Convoy Doctors Roger Hodkinson and Paul Alexander Press Conference </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: BitChute ~ Laura Lynn | February 9, 2022</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2022/02/08/australias-pandemic-of-the-fully-vaccinated-2/">Australia’s Pandemic of the Fully Vaccinated | 4 in every 5 Covid-19 Deaths are among the Fully Vaccinated according to official Government data </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Exposé ~ The Exposé | February 8, 2022</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2022/02/07/covid-vaccinated-children-5100-percent-more-likely-to-die/">Pfizer Covid-19 Vaccine increases Children’s risk of Death by 5100% according to the Office for National Statistics </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Exposé ~ The Exposé | February 7, 2022</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2022/02/07/amazons-horrific-slave-labour-operations/">A whistle-blower who was tortured in a Chinese prison for exposing Amazon’s horrific slave labour operations asks for an apology </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: The Exposé ~ Rhoda Wilson | February 7, 2022</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2022/02/06/canadas-pandemic-of-the-fully-vaccinated/">Canada’s Pandemic of the Fully Vaccinated | 7 in every 10 Covid-19 Deaths are among the Fully Vaccinated according to official data; & Trudeau’s Government are trying to cover it up </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Exposé ~ The Exposé | February 6, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-02-06-israeli-research-vaccines-serious-vitamin-d.html">Israeli research: Vaccines don’t prevent serious COVID-19, but Vitamin D does </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Cassie B | February 6, 2022</h4>
<h2a><a target="_blank" href="https://nationalfile.com/university-funds-bidens-think-tank-hosts-factcheck-org-contract-biontech-gets-paid-vaccine-sales-fda-approvals/">University That Funds Biden's Think Tank And Hosts FactCheck.Org Has Contract With BioNTech, Gets Paid For Vaccine Sales And FDA Approvals </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: National File ~ Patrick Howley | February 6, 2022</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2022/02/03/pfizer-admits-covid-vaccine-causes-ade/">Pfizer admits in Confidential Documents that its Covid-19 Vaccine may cause Vaccine-Associated Enhanced Disease; and real-world data now proves it definitely does </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Exposé ~ The Exposé | February 3, 2022</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2022/02/allan-stevo/some-will-some-wont-so-what-next/">Some Will. Some Won’t. So What? Next! </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Lew Rockwell ~ Allan Stevo | February 5, 2022</h4>
<h2a><a target="_blank" href="https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4022798">The Unintended Consequences of COVID-19 Vaccine Policy: Why Mandates, Passports, and Segregated Lockdowns May Cause more Harm than Good </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: SSRN ~ Dr. Kevin Bardosh et al. | February 1, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/02/el-salvador-president-asks-destruction-united-states-done-intentionally/">El Salvador President Asks if the Destruction of United States is Done Intentionally </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | February 3, 2022</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/21-year-old-greek-footballer-suffers-sudden-cardiac-arrest-during-game/">21-Year-Old Greek Footballer Suffers Sudden Cardiac Arrest During Game </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Paul Joseph Watson | February 3, 2022</h4>
<h2a><a target="_blank" href="https://childrenshealthdefense.org/defender/researchers-covid-conclusions/">These 5 Studies Reveal a Disturbing Trend — Researchers Presenting Conclusions That Don’t Match the Data </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Defender ~ osh Mitteldorf, Ph.D. Madhava Setty, M.D. | February 2, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-02-02-life-insurance-258-percent-increase-payouts-2021-covid.html">New life insurance data from Aegon shows an increase of over 258% in benefit payouts in post-vaccine 2021 vs. a year earlier </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | February 2, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-02-02-german-analysis-finds-covid-vaccine-death-rate-higher-than-reported.html#">Stunning German analysis finds that COVID-19 vaccine death rates are FAR higher than previously reported </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | February 2, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/02/leaked-white-house-notes-situation-room-meeting-day-kabul-fell-reveals-bidens-afghan-failures/">Leaked White House Notes From Situation Room Meeting Day Before Kabul Fell Reveals Biden’s Afghan Failures </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | February 1, 2022</h4>
<h2a><a target="_blank" href="https://www.thedailybell.com/all-articles/news-analysis/nuremberg-violations-should-government-vaxx-agents-be-reclassified-as-enemy-combatants/">Nuremberg Violations: Should Government Vaxx Agents be Reclassified as ‘Enemy Combatants’? </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Daily Bell ~ Ben Bartee | January 28, 2022</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2022/01/31/vaccinators-have-adverse-reactions-to-spilt-vial-contents/">Thailand: Vaccinators Have Adverse Reactions to Spilt Contents from Covid “Vaccine” Vial </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Exposé ~ Rhoda Wilson | January 31, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-01-31-canada-health-chief-suggests-vaccines-masks-voluntary.html#">Canada health chief suggests vaccines and mask-wearing be made voluntary </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Mary Villareal | January 31, 2022</h4>
<h2a><a target="_blank" href="https://diariodevallarta.com/en/imagenes-fuertes-despedido-por-no-vacunarse-docente-italiano-se-quema-a-lo-bonzo/">Italian Teacher Banned from Work and Society for Being Unvaccinated Sets Himself on Fire in Dramatic Act of Self-Immolation Protest </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Diario De Vallarta ~ Claudio Fabian Guevara | January 31, 2022</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/the-documents-see-the-leaked-dod-database-showing-us-military-illness-skyrocketing-from-covid-jab/">The Documents: See the Leaked DOD Database Showing US Military Illness Skyrocketing From Covid Jab </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Adan Salazar | February 1, 2022</h4>
<h2a><a target="_blank" href="https://alexberenson.substack.com/p/urgent-a-german-insurance-database/comments?token=eyJ1c2VyX2lkIjo0OTI2MjcxMywicG9zdF9pZCI6NDkyNDYyNDEsIl8iOiJGQVpMdiIsImlhdCI6MTY0NTY2OTIyNiwiZXhwIjoxNjQ1NjcyODI2LCJpc3MiOiJwdWItMzYzMDgwIiwic3ViIjoicG9zdC1yZWFjdGlvbiJ9.ypbqRTBYWB2-ECrnZ_SqpjNPtmXvH7Di5_d4XQD8z84&utm_source=url">URGENT: A German insurance database of 11 million people reportedly shows a huge increase in severe side effects after Covid jabs </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Substack ~ Alex Berenson | February 23, 2022</h4>
<h2a><a target="_blank" href="https://igorchudov.substack.com/p/where-is-ctcctcggcgggcacgtag-in-the?token=eyJ1c2VyX2lkIjo0OTI2MjcxMywicG9zdF9pZCI6NDkyNzAwMjUsIl8iOiJGQVpMdiIsImlhdCI6MTY0NTY4MjcxNiwiZXhwIjoxNjQ1Njg2MzE2LCJpc3MiOiJwdWItNDQxMTg1Iiwic3ViIjoicG9zdC1yZWFjdGlvbiJ9.j-H3hbOKPTVqLLa48gLZBU7w4mI0f3rLGrmKhHDg2jE&utm_source=url">Where is CTCCTCGGCGGGCACGTAG in the Moderna Patent </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Substack ~ Igor Chudov | February 23, 2022</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2022/01/allan-stevo/are-you-ready-for-the-accountability-phase/">Are You Ready For The Accountability Phase? </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Lew Rockwell ~ Allan Stevo | January 31, 2022</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2022/01/vasko-kohlmayer/israel-a-profile-in-vaccine-failure-and-a-warning-to-the-world/">Israel: A Profile in Vaccine failure and a Warning to the World </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Lew Rockwell ~ Vasko Kohlmayer | January 31, 2022</h4>
<h2a><a target="_blank" href="https://boriquagato.substack.com/p/seizing-the-memes-of-production/comments">seizing the memes of production </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Substack ~ el gato malo | February 1, 2022</h4>
<h2a><a target="_blank" href="https://thaddeuskozinski.substack.com/p/from-liberal-democracy-to-global?r=jl12o&utm_campaign=post&utm_medium=web&utm_source=direct">From Liberal Democracy to Global Totalitarianism </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Substack ~ Dr. Thaddeus Kozinski | January 29, 2022</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2022/01/paul-craig-roberts/we-have-had-a-narrow-escape-from-tyranny-but-the-war-on-freedom-is-not-over/">We Have Had a Narrow Escape from Tyranny But the War on Freedom Is Not Over </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Lew Rockwell ~ Dr. Paul Craig Roberts | January 29, 2022</h4>
<h2a><a target="_blank" href="https://naomiwolf.substack.com/p/compartmentalization-bureaucratization">On the Subtlety of Monsters: We have to Talk about Nazism. How Our Times Do Indeed Echo an Earlier Totalitarian Era </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Substack ~ Dr. Naomi Wolf | January 29, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-01-29-perpetual-covid-vaccinations-mayo-clinic-for-at-least-a-century.html#">Perpetual COVID vaccinations: Mayo Clinic thinks jabs will be necessary for at least a century </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | January 29, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/01/new-book-exposes-bush-familys-ties-china-official-involved-tiananmen-square-massacre/">New Book Exposes Bush Family’s Several Ties To China </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Gateway Pundit ~ News Staff | January 29, 2022</h4>
<h2a><a target="_blank" href="https://archive.org/details/asolemnwarninga00murdgoog">[BOOK] A Solemn Warning against Freemasonry: Addressed to the Young Men of the United States </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Archive.org ~ Solomon Southwick | October 22, 1827</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2022/01/24/the-experimental-covid-injections-are-dangerous/">Over 1,000 Scientific Studies prove the Experimental Covid Injections are Dangerous </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Expose ~ Rhoda Wilson | January 24, 2022</h4>
<h2a><a target="_blank" href="https://stevekirsch.substack.com/p/opportunity-to-debunk-the-primary">Senator Johnson "second opinion" panel January 24, 2022 </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Substack ~ Steve Kirsch | January 24, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-01-26-fact-checkers-used-to-confuse-the-public.html">Fact-checkers are used to confuse the public: Sharyl Attkisson </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Natural News ~ News Editors | January 26, 2022</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/news/sweden-rejects-covid-shots-for-kids-5-11-says-theres-no-clear-benefit-that-outweighs-risks/">Sweden rejects COVID shots for kids 5-11, says there’s no ‘clear benefit’ that outweighs risks </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: LifeSite ~ Emily Mangiaracina | January 27, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/01/unvaccinated-new-yorker-arrested-in-american-history-museum-for-refusing-to-show-vaccine-proof-ive-lost-everything-over-these-unconstitutional-inhumane-mandates/">Unvaccinated New Yorkers Arrested In American History Museum For Refusing To Show Vaccine Proof: ‘I’ve Lost Everything’ Over These ‘Unconstitutional,’ ‘Inhumane’ Mandates </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Alicia Powe | January 28, 2022</h4>
<h2a><a target="_blank" href="https://thepostmillennial.com/super-bowl-to-require-fans-to-mask-up-unless-eating-or-drinking">Super Bowl to require fans to mask up unless eating or drinking </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Post Millenial ~ Hannah Nightingale | January 27, 2022</h4>
<h2a><a target="_blank" href="https://thenationalpulse.com/2022/01/26/british-medical-journal-demands-access-to-covid-vaccine-data-slams-morally-indefensible-pharma-firms/">British Medical Journal Demands Access to COVID Vaccine Data, Slams ‘Morally Indefensible’ Pharma Firms. </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The National Pulse ~ Kay Smythe | January 26, 2022</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/political/unvaxxed-canadians-denied-access-walmart">Unvaxxed Canadians Denied Access To Walmart </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | January 26, 2022</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/covid-19/fda-asks-court-delay-first-55k-batch-covid-19-docs-pfizer-moves-intervene">FDA Asks Court To Delay First 55K Batch Of COVID Docs; Pfizer Moves To Join Case </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | January 27, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/01/nba-interrupts-pre-game-play-statement-chinese-ambassador-us-capitol-one-arena-washington-dc/">NBA Interrupts Pre-Game to Play Statement by Chinese Ambassador to US at Capitol One Arena in Washington DC </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | January 27, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-01-25-vaccination-does-not-prevent-spread-of-virus.html">Vaccine data no longer add up: Vaccination does not prevent the spread of coronavirus </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Mary Villareal | January 25, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/01/top-american-medical-journal-study-confirms-risk-myocarditis-pericarditis-receiving-covid-19-vaccines-risks-highest-second-vaccine/">Top American Medical Journal Study Confirms the Risk of Myocarditis and Pericarditis After Receiving COVID-19 Vaccines – Risks is Highest After Second Vaccine in Adolescent Males and Young Men </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | January 25, 2022</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/news/2019-law-may-have-authorized-fake-statistics-data-just-before-covid-19/">2019 federal law may have authorized fake COVID-19 statistics, data </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: LifeSite ~ Robert L. Kinney III | December 31, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/01/undercover-students-expose-colorado-high-school-vaccine-clinic-administering-vaccinations-without-parental-consent-even-school-superintendent-assured-not-happen/">Undercover Students EXPOSE Colorado High School Vaccine Clinic For Administering Vaccinations Without Parental Consent – Even AFTER School Superintendent ASSURED This Would Not Happen </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Julian Conradson | January 24, 2022</h4>
<h2a><a target="_blank" href="https://thenationalpulse.com/2022/01/23/less-than-1-percent-of-marine-exemptions-granted/">Vax Data: Just 0.06% of Religious Exemption Requests Have Been Granted for U.S. Marines. </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The National Pulse ~ Natalie Winters | January 23, 2022</h4>
<h2a><a target="_blank" href="https://thenationalpulse.com/2022/01/24/oppressive-covid-measures-for-the-unvaccinated-were-based-on-software-error-claims-german-minister/">Oppressive COVID Measures for the Unvaccinated Were Based on ‘Software’ Error, Claims German Minister. </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The National Pulse ~ Wahagen Khabayan | January 24, 2022</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2022/01/23/dr-proves-covid-vaccines-caused-increase-in-miscarriage/">Maternal Fetal Medicine Specialist proves Covid-19 Vaccines have caused huge increase in Miscarriages and Stillbirths </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Expose ~ The Expose | January 23, 2022</h4>
<h2a><a target="_blank" href="https://wattsupwiththat.com/2022/01/23/global-coal-consumption-reaches-new-record-high-in-2021china-india-consuming-two-thirds/">Global Coal Consumption Reaches New Record High In 2021…China, India Consuming Two Thirds </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Watts up with that ~ P Gosselin | January 23, 2022</h4>
<h2a><a target="_blank" href="https://freewestmedia.com/2022/01/24/perpetrators-of-covid-19-scam-face-icc-charges/">Perpetrators of Covid-19 scam face ICC charges </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Free West Media ~ Staff | January 24, 2022</h4>
<h2a><a target="_blank" href="https://www.rt.com/news/547243-un-agency-school-closures/">UN agency reveals impact of school closures during Covid </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: RT ~ RT | January 25, 2022</h4>
<h2a><a target="_blank" href="https://creativedestructionmedia.com/opinion/2022/01/24/u-s-military-officers-who-are-pushing-bidens-maoist-propaganda-will-face-court-martial/">U.S. Military Officers Who Are Pushing Biden’s Maoist Propaganda Will Face Court Martial </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: CD media ~ Todd Wood | January 24, 2022</h4>
<h2a><a target="_blank" href="https://creativedestructionmedia.com/news/politics/2022/01/24/schweizer-biden-family-received-some-31-million-from-individuals-linked-to-highest-levels-of-chinese-intelligence/">Schweizer: Biden Family Received ‘Some $31 Million’ From Individuals Linked To ‘Highest Levels Of Chinese Intelligence’ </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: CD media ~ CD Media Staff | January 24, 2022</h4>
<h2a><a target="_blank" href="https://summit.news/2022/01/24/broadcaster-issued-warning-after-falsely-claiming-90-per-cent-of-covid-patients-were-unvaccinated/">Broadcaster Issued Warning After Falsely Claiming 90 Per Cent of COVID Patients Were Unvaccinated </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Summit News ~ Paul Joseph Watson | January 24, 2022</h4>
<h2a><a target="_blank" href="https://freebeacon.com/national-security/chinese-company-that-surveils-uyghurs-has-major-role-in-beijing-olympics/">Chinese Company That Surveils Uyghurs Has Major Role in Beijing Olympics </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: The Washington Free Beacon ~ Matthew Foldi and Chuck Ross | January 24, 2022</h4>
<h2a><a target="_blank" href="https://www.newswars.com/msm-blackout-of-medical-doctors-pandemic-response-roundtable-is-a-crime-against-humanity/">MSM Blackout Of Medical Doctors Pandemic Response Roundtable Is A Crime Against Humanity </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Newswars ~ Infowars | January 24, 2022</h4>
<h2a><a target="_blank" href="https://headlineusa.com/defense-department-manipulated-data-to-show-lower-vaccine-side-effects-report/">REPORT: Defense Dept. Manipulated Data to Minimize Vax Side-Effects </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Headline USA ~ Gregg Pupecki | January 24, 2022</h4>
<h2a><a target="_blank" href="https://www.wnd.com/2022/01/government-data-show-vax-free-less-likely-get-covid/">Government data show 'vax-free' LESS likely to get COVID </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: WND ~ Art Moore | January 24, 2022</h4>
<h2a><a target="_blank" href="https://www.breitbart.com/clips/2022/01/24/virginia-a-g-miyares-school-boards-stood-by-while-schools-closed-but-will-sue-over-keeping-parents-from-making-decisions-on-masks/">Virginia A.G. Miyares: School Boards ‘Stood By’ While Schools Closed, But Will Sue over Keeping Parents from Making Decisions on Masks </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Breitbart ~ Ian Hanchett | January 24, 2022</h4>
<h2a><a target="_blank" href="https://reclaimthenet.org/twitter-locks-out-columnist-over-oedipus-reference/">Twitter locks out columnist over Oedipus reference </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Reclaim TheNet ~ Didi Rankovic | January 24, 2022</h4>
<h2a><a target="_blank" href="https://reclaimthenet.org/australian-linking-to-content-defamatory/">Australian law that makes people liable for linking to defamatory content will have a “devastating” impact on speech if not overturned </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Reclaim TheNet ~ Didi Rankovic | January 24, 2022</h4>
<h2a><a target="_blank" href="https://thepostmillennial.com/watch-elderly-masked-white-women-yell-black-lives-matter-while-assaulting-black-man">[VIDEO] Elderly, masked white women yell 'Black Lives Matter!' while assaulting black man for not wearing a mask </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Post Millenial ~ Mia Cathell | January 24, 2022</h4>
<h2a><a target="_blank" href="https://www.dcclothesline.com/2022/01/24/criminal-complaint-filed-in-texas-accuses-covid-19-vaccine-makers-and-pushers-of-murder-and-crimes-against-humanity/">Criminal complaint filed in Texas accuses COVID-19 vaccine makers and pushers of “murder” and “crimes against humanity” </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: DC Clothesline ~ JD Heyes | January 24, 2022</h4>
<h2a><a target="_blank" href="https://www.dcclothesline.com/2022/01/24/highly-vaccinated-israel-has-the-most-covid-19-cases-per-capita-in-the-world/">Highly vaccinated Israel has the most COVID-19 cases per capita IN THE WORLD </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: DC Clothesline ~ Aresnio Toledo | January 24, 2022</h4>
<h2a><a target="_blank" href="https://www.thedailybell.com/all-articles/news-analysis/covid-propaganda-roundup-deconstructing-the-big-pharma-biotech-agenda/">COVID Propaganda Roundup: Deconstructing the Big Pharma Biotech Agenda </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Daily Bell ~ Ben Bartee | January 21, 2022</h4>
<h2a><a target="_blank" href="https://www.jccf.ca/vaccinated-vs-unvaccinated-hospitalization-and-cases/">Vaccinated vs. Unvaccinated, hospitalization and cases </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: JCCF ~ JCCF | January 24, 2022</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2022/01/19/vaccines-double-chance-of-catching-covid/">UK Government Data proves the Covid-19 Vaccines DOUBLE your chances of catching Covid-19 </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Expose ~ The Expose | January 19, 2022</h4>
<h2a><a target="_blank" href="https://sputniknews.com/20220123/uk-university-puts-trigger-warning-on-orwells-novel-1984-over-explicit-material-1092461429.html">UK University Puts Trigger Warning on Orwell's Novel 1984 Over 'Explicit Material' </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Sputnik ~ Daria Bedenko | January 23, 2022</h4>
<h2a><a target="_blank" href="https://thecovidblog.com/2022/01/17/are-covid-19-injections-the-ethno-bomb-israel-began-developing-in-the-late-1990s/">Are COVID-19 injections the “ethno-bomb” Israel began developing in the late 1990s? </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Covid Blog ~ admin | January 17, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-12-29-facebooks-zuckerberg-literally-bought-2020-election-for-biden.html#">Facebook’s Zuckerberg literally bought the 2020 election for Biden, Democrats, IRS docs show </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | December 29, 2021</h4>
<h2a><a target="_blank" href="https://dpbh.nv.gov/uploadedFiles/dpbhnvgov/content/Boards/BOH/Meetings/2021/SENEFF~1.PDF">Worse Than the Disease? Reviewing Some Possible Unintended Consequences of the mRNA Vaccines Against COVID-19 </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: DPBH ~ Dr. Stephanie Seneff and Dr. Greg Nigh | February 8, 2022</h4>
<h2a><a target="_blank" href="https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(22)00090-3/fulltext#sec1">Breakthrough infections with SARS-CoV-2 omicron despite mRNA vaccine booster dose </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Lancet ~ Dr. Constanze Kuhlmann et al. | January 27, 2022</h4>
<h2a><a target="_blank" href="https://palexander.substack.com/p/florida-highest-rates-of-infection">Florida: Highest Rates of Infection Occurring in Counties with Highest Vaccination Rates; the data is actually quite clear and sobering; point, no boosters, Floridians must say NO.... </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Substack ~ Dr. Paul Alexander | January 30, 2022</h4>
<h2a><a target="_blank" href="https://palexander.substack.com/p/scotland-covid-graph-tells-you-basically?token=eyJ1c2VyX2lkIjo0OTI2MjcxMywicG9zdF9pZCI6NDcyMjkwMzcsIl8iOiJGQVpMdiIsImlhdCI6MTY0MjYyNTMyNywiZXhwIjoxNjQyNjI4OTI3LCJpc3MiOiJwdWItNTc5MzU2Iiwic3ViIjoicG9zdC1yZWFjdGlvbiJ9.R_MfwXtHGFDEYGhwYxZ4zN7T8wbp-cGZ-NUG0Jq6ol8">SCOTLAND COVID graph tells you basically what is happening across the globe; population mostly vaccinated, most cases are vaccinated, most hospitalized are vaccinated, and most deaths are vaccinated </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Substack ~ Dr. Paul Alexander | January 28, 2022</h4>
<h2a><a target="_blank" href="https://greatgameindia.com/facemasks-speech-delays/">Facemasks Caused A Massive 364% Spike In Children With Speech Delays </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Great Game India ~ Great Game India | February 9, 2022</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/this-is-america-nypd-arrests-9-year-old-girl-five-others-for-entering-museum-of-natural-history-without-vax-passport/">This Is America: NYPD Arrests 9-Year-Old Girl & Five Others For Entering Museum of Natural History Without Vax Passport </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Kelen McBreen | January 24, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-01-18-fauci-signed-off-gain-of-function-research.html#">Bombshell documents reveal Dr. Fauci signed off on Wuhan gain of function coronavirus research </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Cassie B. | February 14, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-01-16-reuters-fact-check-shields-pfizer-ceo.html#">Reuters ‘fact check’ shields Pfizer CEO, fails to disclose Reuters chairman is on Pfizer board </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ News Editors | February 13, 2022</h4>
"<h2a><a target=""_blank"" href=""https://www.thegatewaypundit.com/2022/01/dr-robert-malone-posts-irrefutable-proof-ivermectin-uttar-pradesh-india-success-story/"">Dr. Robert Malone Posts Irrefutable Proof on Ivermectin and the Uttar
Pradesh India Success Story </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | February 12, 2022</h4>"
"<h2a><a target=""_blank"" href=""https://www.thegatewaypundit.com/2022/01/maine-doctor-loses-license-ordered-undergo-psych-evaluation-treating-covid-patients-ivermectin-spreading-covid-misinformation/"">Maine Doctor Loses License, Ordered to Undergo Psych Evaluation for
Treating Covid Patients with Ivermectin, 'Spreading Covid Misinformation' </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | February 11, 2022</h4>"
"<h2a><a target=""_blank"" href=""https://www.thegatewaypundit.com/2022/01/new-west-charter-school-la-caught-abusing-young-unvaccinated-girls-denied-chairs-forced-sit-outside-pavement-not-allowed-use-restrooms/"">New West Charter School LA Caught Abusing Young Unvaccinated Girls - Denied
Chairs, Forced to Sit Outside on Pavement, Not Allowed to Use Restrooms </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | February 10, 2022</h4>"
<h2a><a target="_blank" href="https://www.infowars.com/posts/mit-scientist-says-covid-vaccine-could-trigger-neurodegenerative-diseases-warns-parents-against-vaccinating-children/">MIT Scientist Says COVID Vaccine Could Trigger Neurodegenerative Diseases, Warns Parents Against Vaccinating Children </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Adan Salazar | February 7, 2022</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2022/01/fauci-warns-five-stages-pandemic-still-first-stage/">Fauci Warns There Are Five Stages in a Pandemic… and We Are Still in the First Stage </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | February 15, 2022</h4>
<h2a><a target="_blank" href="https://greatgameindia.com/boosters-damage-immune-system/">COVID Booster Shots Damage Your Immune System Warns European Regulator </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Great Game India ~ Great Game India | February 6, 2022</h4>
"<h2a><a target=""_blank"" href=""https://www.thegatewaypundit.com/2022/01/autopsy-reveals-death-26-year-old-man-developed-myocarditis-due-pfizer-vaccine/"">Autopsy Reveals Death of 26-Year-Old Man Who Developed Myocarditis was Due
to Pfizer Vaccine </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | February 5, 2022</h4>"
"<h2a><a target=""_blank"" href=""https://www.thegatewaypundit.com/2022/01/malaysian-health-ministry-recorded-25-cases-myocarditis-within-21-days-receiving-covid-19-vaccine/"">Malaysian Health Ministry Recorded 25 Cases of Myocarditis within 21 Days
After Receiving COVID-19 Vaccine </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | February 4, 2022</h4>"
<h2a><a target="_blank" href="https://www.shtfplan.com/headline-news/israeli-study-4th-dose-of-covid-vaccine-is-less-effective">ISRAELI STUDY: 4TH DOSE OF COVID “VACCINE” IS LESS EFFECTIVE </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: SHTFPlan ~ Mac Slavo | February 3, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-01-17-pfizer-vaccine-one-percent-protection-against-covid.html#">Investigation proves Pfizer vaccine offers less than 1% protection against COVID-19 </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Arsenio Toledo | February 2, 2022</h4>
"<h2a><a target=""_blank"" href=""https://www.naturalnews.com/2022-01-17-prime-age-mortality-spiked-by-50-across-multiple-states-year-of-covid-19-vaccine.html#"">Prime age mortality SPIKED by 50% across multiple states during the year of
the “life-saving” covid-19 vaccine – NaturalNews.com </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: Natural News ~ Lance D Johnson | February 1, 2022</h4>"
<h2a><a target="_blank" href="https://www.globalresearch.ca/high-recorded-mortality-in-countries-categorized-as-covid-19-vaccine-champions-increased-hospitalization/5757173">High Recorded Mortality in Countries Categorized as “Covid-19 Vaccine Champions”. The Vaccinated Suffer from Increased Risk of Mortality </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Global Research ~ Gérard Delépine | January 31, 2022</h4>
"<h2a><a target=""_blank"" href=""https://www.zerohedge.com/covid-19/fully-vaccinated-australians-hospital-covid-19-surpass-unvaccinated"">Fully Vaccinated Australians In Hospital For COVID-19 Surpass Unvaccinated
| ZeroHedge </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | January 29, 2022</h4>"
<h2a><a target="_blank" href="https://rpp.pe/mundo/actualidad/bolivia-suspende-carne-de-vacunacion-tras-presion-de-sectores-criticos-noticia-1381590?ref=rpp">Bolivia suspends vaccine passport under pressure from critical sectors </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: RPP ~ Leonardo Ancajima | January 26, 2022</h4>
Loading...
"<h2a><a target=""_blank"" href=""https://www.naturalnews.com/2022-01-19-covid-mass-vaccination-programs-violate-bioethics-principles.html"">COVID-19 mass vaccination programs violate bioethics principles –
NaturalNews.com </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: Natural News ~ Arsenio Toledo | January 23, 2022</h4>"
"<h2a><a target=""_blank"" href=""https://www.naturalnews.com/2022-01-20-analysis-trial-data-pfizer-covid-jab-harmful.html"">Extensive analysis of trial data finds that Pfizer covid jab does “more
harm than good” – NaturalNews.com </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: Natural News ~ Arsenio Toledo | January 22, 2022</h4>"
"<h2a><a target=""_blank"" href=""https://www.thegatewaypundit.com/2022/01/damage-done-us-forever-never-get-back-british-student-breaks-crying-lifting-covid-mask-rules-video/"">""The Damage Is Done to Us Forever, And We'll Never Get It Back"" - British
Student Breaks Down Crying Over Lifting of COVID Mask Rules (VIDEO) </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | January 21, 2022</h4>"
"<h2a><a target=""_blank"" href=""https://www.wionews.com/world/who-urges-countries-to-lift-travel-bans-and-not-ask-for-vaccination-proof-for-entry-446291"">WHO urges countries to lift travel bans and not ask for vaccination proof
for entry - World News </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: WION ~ WION Web Team | January 20, 2022</h4>"
<h2a><a target="_blank" href="https://howbad.info/pfizerleak.pdf">CUMULATIVE ANALYSIS OF POST-AUTHORIZATION ADVERSE EVENT REPORTS OF PF-07302048 (BNT162B2) RECEIVED THROUGH 28-FEB-2021 </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: How Bad ~ Pfizer | April 30, 2021</h4>
<h2a><a target="_blank" href="https://fee.org/articles/authoritarianism-may-be-necessary-to-fight-climate-change-cambridge-study-argues/">‘Authoritarianism’ May Be Necessary to Fight Climate Change, Cambridge Study Argues </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: FEE ~ Jon Miltimore | January 5, 2022</h4>
"<h2a><a target=""_blank"" href=""https://www.thedailybell.com/all-articles/news-analysis/british-medical-journal-exposes-the-facebook-fact-check-scam/"">British Medical Journal Exposes the Facebook ‘Fact Check’ Scam | The Daily
Bell </a></h2a><h2b><a class=""a2"" href=""tech_watch"">[tech_watch]</a></h2b><h4>Source: The Daily Bell ~ Ben Bartee | January 6, 2022</h4>"
<h2a><a target="_blank" href="https://www.zerohedge.com/economics/how-central-planners-corrupted-world">How Central Planners Corrupted The World </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Zerohedge ~ Tyler Durden | January 14, 2022</h4>
<h2a><a target="_blank" href="https://www.oann.com/brazilian-president-bolsonaro-says-kids-should-not-be-vaccinated/">Brazilian President Bolsonaro Says Kids Should Not Be Vaccinated </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: OANN ~ OAN | January 7, 2022</h4>
<h2a><a target="_blank" href="https://leftlockdownsceptics.com/2021/12/the-inexplicable-response-of-the-left-to-the-covid-crisis-why-has-it-refused-to-confront-the-reality-of-the-virus-why-is-it-advocating-for-mass-experimental-injections-and-why-is-it-advancing-the-ca/?doing_wp_cron=1642411435.0330250263214111328125">The inexplicable response of the Left to the Covid crisis </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Left Lockdown Skeptic ~ Dave Duboff | December 12, 2021</h4>
"<h2a><a target=""_blank"" href=""https://www.thegatewaypundit.com/2022/01/dystopia-amid-omicron-hysteria-australia-announces-new-china-esque-lockdown-unvaccinated-citizens-going-work-outdoor-exercise-no-longer-considered-essential-un/"">Dystopia Down Under: Amid Omicron Hysteria, Australia's Northern Territory
Announces New China-Esque Lockdown of All Unvaccinated Citizens - Going to
Work and Outdoor Exercise Are No Longer Considered Essential For the
Unvaxxed - (VIDEO) </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Julian Conradson | January 6, 2022</h4>"
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-01-05-chinese-city-implements-harshest-lockdown-yet.html#">Chinese city implements harshest lockdown yet as Beijing aims for “zero-COVID” </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Mary Villareal | January 5, 2022</h4>
"<h2a><a target=""_blank"" href=""https://www.naturalnews.com/2022-01-06-life-insurance-refuse-payouts-covid-vaccines-experiments.html#"">Life insurance policies can refuse payouts for the jabbed because covid
vaccines are “medical experiments” – NaturalNews.com </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | January 6, 2022</h4>"
<h2a><a target="_blank" href="https://www.bbc.com/news/health-59895934">Covid: Evidence on face masks in schools 'inconclusive' - BBC News </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: BBC ~ BBC | January 6, 2022</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2022/01/no_author/booster-efficacy-or-lack-thereof-visualization/">Booster Efficacy (or Lack Thereof) Visualization </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Lew Rockwell ~ Steve Kirsch | January 6, 2022</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-01-16-reuters-fact-check-shields-pfizer-ceo.html#">Reuters ‘fact check’ shields Pfizer CEO, fails to disclose Reuters chairman is on Pfizer board </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Natural News ~ News Editors | January 16, 2022</h4>
"<h2a><a target=""_blank"" href=""https://www.thegatewaypundit.com/2022/01/maine-doctor-loses-license-ordered-undergo-psych-evaluation-treating-covid-patients-ivermectin-spreading-covid-misinformation/"">Maine Doctor Loses License, Ordered to Undergo Psych Evaluation for
Treating Covid Patients with Ivermectin, 'Spreading Covid Misinformation' </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | January 16, 2022</h4>"
"<h2a><a target=""_blank"" href=""https://www.naturalnews.com/2022-01-14-darpa-rejected-gain-of-function-research-funding-leading-to-covid19-too-dangerous.html#"">STUNNER: Documents reveal DARPA rejected gain of function research funding
that led to COVID-19 because it was deemed TOO DANGEROUS… so why is the
same spike protein found in vaccines? – NaturalNews.com </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | January 14, 2022</h4>"
"<h2a><a target=""_blank"" href=""https://www.dailymail.co.uk/news/article-10405217/Fauci-profited-pandemic-Senator-called-moron-leaks-unredacted-financial-disclosures.html"">Fauci profited from pandemic: Senator he called 'moron' leaks his
unredacted financial disclosures | Daily Mail Online </a></h2a><h2b><a class=""a2"" href=""elite_watch"">[elite_watch]</a></h2b><h4>Source: Daily Mail ~ Harriet Alexander | January 15, 2022</h4>"
"<h2a><a target=""_blank"" href=""https://www.washingtontimes.com/news/2022/jan/12/just-say-no-to-biden-and-faucis-universal-vaccinat/"">Just say no to Biden and Fauci's universal vaccination nation - Washington
Times </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: Washington Times ~ Dr. Robert Malone and Dr. Peter Navarro | January 12, 2022</h4>"
"<h2a><a target=""_blank"" href=""https://thechicagothinker.com/save-our-school-professor-fulton-brown-demands-uchicago-stop-covid-lunacy/"">‘Save Our School’: Professor Fulton Brown Demands UChicago Stop COVID
Lunacy – The Chicago Thinker </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: The Chicago Thinker ~ Declan Hurley | January 17, 2021</h4>"
#N/A
<h2a><a target="_blank" href="https://www.saveusnow.org.uk/covid-vaccine-scientific-proof-lethal/">COVID-19 Vaccines: Scientific Proof of Lethality </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Save Us Now ~ Save Us Now | January 5, 2022</h4>
"<h2a><a target=""_blank"" href=""https://www.naturalnews.com/2022-01-10-toxic-pfizer-covid-vaccines-weapons-designed-depopulation.html#"">Former Pfizer VP Mike Yeadon declares covid vaccines are “toxic by design”
– they’re weapons to reduce global population – NaturalNews.com </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | January 10, 2022</h4>"
Loading...
"<h2a><a target=""_blank"" href=""https://www.naturalnews.com/2022-01-07-astrazeneca-vaccine-creator-covid-vaccine-boosters-unsustainable.html#"">AstraZeneca vaccine creator says continual Covid vaccine booster shots are
UNSUSTAINABLE – NaturalNews.com </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ramon Tomey | January 7, 2022</h4>"
<h2a><a target="_blank" href="https://www.zerohedge.com/covid-19/waste-time-keep-vaccinating-people-ex-head-uk-vaccine-taskforce">"Waste Of Time" To Keep Vaccinating People: Ex-Head Of UK Vaccine Taskforce </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Zerohedge ~ Tyler Durden | January 16, 2022</h4>
"<h2a><a target=""_blank"" href=""https://www.zerohedge.com/medical/states-investigating-surge-mortality-rate-among-18-49-year-olds-majority-unrelated-covid-19"">States Investigating Surge In Mortality Rate Among 18–49-Year-Olds,
Majority Unrelated To COVID-19 | ZeroHedge </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: Zerohedge ~ Tyler Durden | January 16, 2022</h4>"
<h2a><a target="_blank" href="https://www.bitchute.com/video/hbAos1x7HaxV/">Censored Pfizer CEO Video - #DistributionByProxy </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Bitchute ~ BitChute | January 12, 2022</h4>
<h2a><a target="_blank" href="https://link.springer.com/article/10.1007/s10654-021-00808-7">Increases in COVID-19 are unrelated to levels of vaccination across 68 countries and 2947 counties in the United States </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Springer ~ S. V. Subramanian & Akhil Kumar | September 30, 2021</h4>
<h2a><a target="_blank" href="https://www.newstarget.com/2022-01-05-vaccines-dont-stop-covid-outbreaks-cause-them.html">Study: Vaccines don’t stop covid outbreaks (and actually cause more of them) </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: News Target ~ Ethan Huff | January 5, 2022</h4>
"<h2a><a target=""_blank"" href=""https://dailyexpose.uk/2022/01/15/2021-footballer-deaths-increased-by-300-percent/"">EXCLUSIVE – Worldwide Heart Attack Deaths among Pro-Footballers in 2021
were 300% higher than the 12-year-average – The Expose </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: Daily Expose ~ The Expose | January 15, 2022</h4>"
"<h2a><a target=""_blank"" href=""https://www.researchgate.net/publication/357515205_THE_IMPACT_OF_COVID-19_VACCINES_ON_ALL-CAUSE_MORTALITY_IN_EU_IN_2021_A_MACHINE_LEARNING_PERSPECTIVE"">(PDF) THE IMPACT OF COVID-19 VACCINES ON ALL-CAUSE MORTALITY IN EU IN 2021:
A MACHINE LEARNING PERSPECTIVE </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: Research Gate ~ Patrick E Meyer | January 1, 2022</h4>"
"<h2a><a target=""_blank"" href=""https://dailyexpose.uk/2022/01/16/male-teen-deaths-53-percent-higher-after-covid-vaccination-in-2021/"">Deaths among male Teens increased by 53% following Covid-19 Vaccination in
2021 and the Death spikes correlate perfectly with the uptake of dose 1, 2
& 3 – The Expose </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: Daily Expose ~ The Expose | January 16, 2022</h4>"
"<h2a><a target=""_blank"" href=""https://www.naturalnews.com/2022-01-10-data-countries-covid-vaccines-associated-sickness-death.html#"">Bombshell data from 145 countries show that covid vaccines INCREASE
covid-19 associated sickness and death – NaturalNews.com </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: Natural News ~ Lance D Johnson | January 10, 2022</h4>"
"<h2a><a target=""_blank"" href=""https://dailyexpose.uk/2022/01/15/new-study-shows-an-increase-in-deaths-in-145-countries-after-covid-vaccines-were-introduced%e2%80%8b/"">New Study Shows an Increase In Deaths In 145 Countries After COVID Vaccines
Were Introduced. – The Expose </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: Daily Expose ~ Patricia Harrity | January 15, 2022</h4>"
<h2a><a target="_blank" href="https://stevekirsch.substack.com/p/new-big-data-study-of-145-countries?r=o7iqo&utm_campaign=post&utm_medium=web">New big data study of 145 countries show COVID vaccines makes things worse (cases and deaths) </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Substack ~ Steve Kirsch | January 8, 2022</h4>
"<h2a><a target=""_blank"" href=""https://www.zerohedge.com/medical/live-supreme-court-weigh-biden-vaccine-mandate"">Despite Sotamayor's Absurd Lack Of Covid-19 Knowledge, USSC Seems Skeptical
Of Biden Vaccine Mandates | ZeroHedge </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: Zerohedge ~ Tyler Durden | January 7, 2022</h4>"
<h2a><a target="_blank" href="https://www.naturalnews.com/2022-01-01-experts-warn-ban-slaughterbots-end-humanity.html">Experts warn that UN failure to ban slaughterbots could spell the end of humanity </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Natural News ~ Cassie B. | January 1, 2022</h4>
<h2a><a target="_blank" href="https://humansarefree.com/2021/12/dystopian-china-introduces-ai-prosecutor-that-can-automatically-charge-citizens-of-a-crime.html">Dystopian: China Introduces ‘AI Prosecutor’ That Can Automatically Charge Citizens Of A Crime </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Humans Are Free ~ HAF | December 28, 2021</h4>
<h2a><a target="_blank" href="https://childrenshealthdefense.org/defender/rfk-jr-the-real-anthony-fauci-bill-gates/">Bill Gates and Anthony Fauci: a ‘Formidable, Nefarious’ Partnership </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Defender ~ Dr. Joseph Mercola | December 17, 2021</h4>
<h2a><a target="_blank" href="https://journals.asm.org/doi/epdf/10.1128/JVI.01173-21">A Novel Potentially Recombinant Rodent Coronavirus with aPolybasic Cleavage Site in the Spike Protein </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Journal of Virology ~ Xin Li et al. | October 27, 2021</h4>
<h2a><a target="_blank" href="https://thenationalpulse.com/2021/12/31/wuhan-and-ecohealth-find-recombinant-rodent-coronaviruses/">Biden and China Are Partners in a New Wuhan Lab, EcoHealth Hunt for ‘Recombinant’ Rodent Coronaviruses. </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The National Pulse ~ Natalie Winters | December 31, 2020</h4>
<h2a><a target="_blank" href="https://childrenshealthdefense.org/defender/biden-robert-califf-fda-big-pharma-investments/">Biden Pick for FDA Chief Holds Millions in Big Pharma Investments </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Defender ~ Brett Wilkins | December 22, 2021</h4>
<h2a><a target="_blank" href="https://www.breitbart.com/politics/2021/12/30/biden-senior-adviser-brother-lobby-foreign-company-developed-coronavirus-vaccine/">Biden Adviser’s Brother Will Lobby for Company that Developed Vaccine </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Breitbart ~ Jordan Dixon-Hamilton | December 31, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-12-30-techrussia-fines-google-98-million-corrupting-minors.html">Russia slaps Google with record-setting $98 million fine for CORRUPTING minors </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Natural News ~ Kevin Hughes | December 30, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/political/marjorie-taylor-green-permanently-banned-twitter-spreading-covid-misinformation">Rep. Gohmert: Fauci must be “held responsible” for unleashing mass death on the world </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | January 3, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-12-27-gohmert-fauci-held-responsible-unleashing-mass-death.html#">Rep. Gohmert: Fauci must be “held responsible” for unleashing mass death on the world </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | December 27, 2021</h4>
Loading...
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/12/must-watch-dr-robert-malone-drops-bombshells-much-anticipated-interview-joe-rogan-says-federal-government-lawless-actively-violating-nuremberg-code/">Dr. Robert Malone Drops BOMBSHELLS During Much-Anticipated Interview With Joe Rogan – Says Federal Government is “Lawless” and Actively “Violating the Nuremberg Code” </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Julian Conradson | January 1, 2022</h4>
"<h2a><a target=""_blank"" href=""https://www.eastonspectator.com/2022/01/02/rcmp-member-sent-on-unpaid-leave-writes-this-powerful-letter-you-must-read/"">RCMP member sent on unpaid leave writes this powerful letter you must read:
- Easton Spectator </a></h2a><h2b><a class=""a2"" href=""covid_watch"">[covid_watch]</a></h2b><h4>Source: Easton Spectator ~ Corporal Richard Mehner | January 2, 2022</h4>"
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-12-26-exomars-finds-significant-water-surface-mars.html">ESA’s ExoMars orbiter finds “significant amounts of water” just three feet below surface of Mars </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | December 26, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/covid-19/lancet-editor-comes-clean-admits-he-knew-peter-daszak-had-significant-regrettable">Lancet Editor Comes Clean, Admits He Knew Peter Daszak Had 'Significant, Regrettable' Conflicts Of Interest </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | December 25, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-12-26-covid-vaccine-is-a-bioweapon-killing-kids.html#">Former Pfizer employee and whistleblower Karen Kingston: COVID vaccine is a bioweapon that is killing kids </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Mary Villareal | December 26, 2021</h4>
<h2a><a target="_blank" href="https://childrenshealthdefense.org/defender/covid-deaths-could-have-been-prevented/">85% of COVID Deaths Could Have Been Prevented … So What Happened? </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Defender ~ Dr. Joseph Mercola | December 22, 2021</h4>
<h2a><a target="_blank" href="https://www.dcclothesline.com/2021/12/25/the-most-striking-fact-in-robert-f-kennedy-jr-s-new-book/">The Most Striking Fact In Robert F. Kennedy, Jr.’S New Book </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: DC Clothesline ~ Tim Brown | December 25, 2021</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2021/12/24/compliance-and-why-we-should-always-speak-out-against-a-corrupt-agenda/">Compliance and Why We Should Always Speak Out Against A corrupt Agenda </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: The Exposé ~ Patricia Harrity | December 24, 2021</h4>
<h2a><a target="_blank" href="https://freewestmedia.com/2021/12/14/i-dont-want-to-hear-any-more-about-the-free-world-theres-not-one/">I don’t want to hear any more about the ‘Free World’. There’s not one </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Free West Media ~ Dr. Paul Craig Roberts | December 14, 2021</h4>
<h2a><a target="_blank" href="https://humansarefree.com/2021/12/4-billion-useless-eaters-culled-by-2050.html">Dr. John Coleman Published This In 1993: At Least 4 Billion ‘Useless Eaters’ To Be Culled By 2050 </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Humans Are Free ~ HAF | December 24, 2021</h4>
<h2a><a target="_blank" href="https://greatgameindia.com/bill-gates-abortion-contraception-population-control/">Bill Gates’ Obsession With Abortion, Contraception & Population Control Started With His Father </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Great Game India ~ Journal on Geopolitics and International Relations | December 24, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/geopolitical/saudi-arabia-building-ballistic-missiles-chinas-help">Saudi Arabia Is Building Ballistic Missiles With China's Help </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | December 24, 2021</h4>
<h2a><a target="_blank" href="https://bigleaguepolitics.com/israel-weapons-manufacturers-indicted-for-selling-arms-to-china-without-a-permit/">Israel Weapons Manufacturers Indicted for Selling Arms to China Without a Permit </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Big League Politics ~ Jose Nino | December 25, 2021</h4>
<h2a><a target="_blank" href="https://thenationalpulse.com/2021/12/25/govt-linked-mitre-corp-rolls-out-vaccine-credential-initiative-with-ccp-affiliated-partners/">Govt-Linked ‘Mitre Corp’ Rolls Out ‘Vaccine Credential Initiative’ With CCP Affiliated Partners. </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: The National Pulse ~ Kay Smythe and Raheem J. Kassam | December 25, 2021</h4>
<h2a><a target="_blank" href="https://diario16.com/el-comite-asesor-de-bioetica-de-belgica-considera-que-las-incertidumbres-cientificas-son-demasiado-grandes-como-para-plantear-vacunacion-obligatoria-ante-la-covid-19-y-cuestiona-el-pasaporte-covid/">The Bioethics Advisory Committee of Belgium considers that the scientific uncertainties are too great to propose mandatory vaccination against COVID-19 and questions the covid passport </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Diario16 ~ Beatriz Talegón | December 22, 2021</h4>
<h2a><a target="_blank" href="https://www.npojip.org/english/MedCheck/Med%20Check%20Tip-20-2021-08&12.pdf">5 STUDIES: Japanese MedCheck Reveals Serious Concerns about COVID-19 Vaccines including 'Causal link between vaccination and subsequent death' </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: MedCheck ~ Various Authors | December 1, 2021</h4>
<h2a><a target="_blank" href="https://brownstone.org/articles/more-than-400-studies-on-the-failure-of-compulsory-covid-interventions/">More Than 400 Studies on the Failure of Compulsory Covid Interventions </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Brownstone Institute ~ Dr. Paul Elias Alexander | November 30, 2021</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/study-face-mask-littering-increased-by-9000-in-first-months-of-pandemic-may-have-helped-spread-the-virus/">Study: Face Mask Littering Increased By 9000% In First Months Of Pandemic; May Have HELPED SPREAD The Virus </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Steve Watson | December 13, 2021</h4>
<h2a><a target="_blank" href="https://www.researchgate.net/publication/356962821_Ivermectin_prophylaxis_used_for_COVID-19_reduces_COVID-19_infection_and_mortality_rates_A_220517-subject_populational-level_retrospective_citywide">Ivermectin Prophylaxis Used for COVID-19 Reduces COVID-19 Infection and Mortality Rates: A City-Wide, Prospective Observational Study of 220,517 Subjects Using Propensity Score Matching </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: ResearchGate ~ Lucy Kerr | December 1, 2021</h4>
<h2a><a target="_blank" href="https://www.mdpi.com/2072-6643/13/10/3596/htm">COVID-19 Mortality Risk Correlates Inversely with Vitamin D3 Status, and a Mortality Rate Close to Zero Could Theoretically Be Achieved at 50 ng/mL 25(OH)D3: Results of a Systematic Review and Meta-Analysis </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Nutrients ~ Dr. Lorenz Borsche et al. | October 14, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-12-22-calls-for-cease-and-desist-jab-distribution.html">Global health coalition calls for a ‘cease and desist’ of COVID-19 jab distribution </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ News Editors | December 22, 2021</h4>
<h2a><a target="_blank" href="https://www.foxnews.com/politics/us-supreme-court-to-hear-oral-arguments-on-challenges-to-bidens-employer-vaccine-mandate">Supreme Court to hear oral arguments on challenges to Biden vaccine mandates </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Fox News ~ Michael Lee | December 23, 2021</h4>
<h2a><a target="_blank" href="https://www.bitchute.com/video/p55Cvm2Cl0wb/">Money Meltdown: Israel Leads 10-Nation Simulation Attack on Banking System </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: TruNews ~ TruNews | December 9, 2021</h4>
<h2a><a target="_blank" href="https://www.bitchute.com/video/9JeFoZiWWV0J/">The Great Reset and Silent Weapons for Silent Wars </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: BitChute ~ Jay Dyer | December 12, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-12-21-governments-crackdown-telegram-organize-protests-covid-fascism.html#">Governments call for crackdown on Telegram because some people are using it to organize protests against covid fascism </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | December 21, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/political/university-california-fires-director-ethics-program-defying-covid-19-vaccine-mandate">University Of California Fires Director Of Ethics Program for Defying COVID-19 Vaccine Mandate </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Zero Hedge ~ Tyler Durden | December 22, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/geopolitical/china-using-loans-latin-america-push-political-military-objectives">China Using Loans In Latin America To Push Political, Military Objectives </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: Zero Hedge ~ Tyler Durden | December 23, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-12-22-harvard-nanoscientist-connected-wuhan-convicted-crimes-china.html#">Harvard nanoscientist tied to Wuhan convicted of numerous crimes related to Chinese influence on U.S. research </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | December 22, 2021</h4>
<h2a><a target="_blank" href="https://greatgameindia.com/bill-gates-fauci-crimes-against-humanity/">Bill Gates, Dr Fauci And Big Pharma Accused Of Crimes Against Humanity In Complaint To International Court </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Great Game India ~ Great Game India | December 18, 2021</h4>
<h2a><a target="_blank" href="https://www.dailymail.co.uk/news/article-10247315/Face-masks-harm-childrens-development-Study-blames-significantly-reduced-development.html">COVID rules are blamed for 23% dive in young children's development: Disturbing study shows scores in three key cognitive tests slumped between 2018 and 2021, with face mask rules among possible culprits </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: DailyMail ~ Alex Hammer | November 26, 2021</h4>
<h2a><a target="_blank" href="https://www.rt.com/news/543032-south-korea-covid-facial-recognition/">AI to track Covid patients – media </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: RT ~ RT | December 13, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-12-12-fda-ordered-google-remove-videos-youtube-censorship.html">FDA ordered Google to remove covid videos from YouTube because agency didn’t like their message </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | December 12, 2021</h4>
<h2a><a target="_blank" href="https://summit.news/2021/12/10/unvaxxed-in-austria-could-be-imprisoned-for-a-year/">Unvaxxed in Austria Could be Imprisoned For a Year </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Summit News ~ Paul Joseph Watson | December 10, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/12/paul-craig-roberts/many-have-died-from-being-hoodwinked-by-media-orchestration-of-a-deadly-covid-pandemic/">Many Have Died from Being Hoodwinked by Media Orchestration of a Deadly Covid Pandemic </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Lew Rockwell ~ Dr. Paul Craig Roberts | December 11, 2021</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/blogs/clinical-psychologist-warns-of-totalitarianism-atrocity-resulting-from-covid-buy-in/">Clinical psychologist warns of totalitarianism, atrocity resulting from mass COVID buy-in </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Lifesite ~ Ashley Sadler | December 10, 2021</h4>
<h2a><a target="_blank" href="http://infowarsarmy.com/posts/china-developing-brain-control-weaponry-us-claims/">China Developing ‘Brain Control Weaponry,’ US Claims </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Infowars ~ Jamie White | December 18, 2021</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2021/12/11/report-shows-4-in-5-covid-deaths-fully-vaccinated/">Whilst you were distracted by a Christmas Party the UK Gov. released a report confirming the Fully Vaccinated account for 4 in every 5 Covid-19 Deaths in England since August </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Expose ~ The Expose | December 11, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/12/cdc-confirms-80-covid-19-cases-caused-omicron-variant-us-fully-vaccinated-individuals-33-booster-shots/">CDC Confirms 80% of COVID-19 Cases Caused by Omicron Variant in the US are Fully Vaccinated Individuals – And 33% Had Booster Shots! </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | December 14, 2021</h4>
<h2a><a target="_blank" href="https://www.shtfplan.com/headline-news/fully-vaccinated-staffers-responsible-for-covid-outbreak">Fully Vaccinated Staffers Responsible for COVID Outbreak </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: SHTFPlan ~ Mac Slavo | December 10, 2021</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/report-fda-colludes-with-us-postal-service-to-destroy-ivermectin-shipments/">Report: FDA Colludes with US Postal Service to Destroy Ivermectin Shipments </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Infowars | December 14, 2021</h4>
<h2a><a target="_blank" href="https://nationalfile.com//julian-assange-stroke-british-prison-day-court-oks-extradition-united-states/">Julian Assange Has Stroke In British Prison: Court OK's Extradition To United States </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: National File ~ Kylie Thomas | December 11, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/12/no_author/julian-assange-loses-appeal-british-high-court-accepts-u-s-request-to-extradite-him-for-trial/">Julian Assange Loses Appeal: British High Court Accepts U.S. Request to Extradite Him for Trial </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Lew Rockwell ~ Glenn Greenwald | December 11, 2021</h4>
<h2a><a target="_blank" href="https://newspunch.com/manchester-united-player-collapses-with-heart-problem-mid-game/">Manchester United Player Collapses with Heart Problem Mid-Game </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: News Punch ~ Sean Adl-Tabatabai | December 12, 2021</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/news/vaccines-pose-7-times-higher-death-risk-than-covid-for-young-people-japanese-experts-warn/">Vaccines pose 7 times higher death risk than COVID for young people, Japanese experts warn </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Lifesite ~ Raymond Wolfe | December 11, 2021</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/news/vaccines-pose-7-times-higher-death-risk-than-covid-for-young-people-japanese-experts-warn/">Vaccines pose 7 times higher death risk than COVID for young people, Japanese experts warn </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: LifeSiteNews ~ Raymond Wolfe | December 11, 2021</h4>
<h2a><a target="_blank" href="https://www.bitchute.com/video/MijEBQzsBflF/">Young Mother in Africa Faces AMPUTATION of both Hands & Feet after COVID Sinovac Vaccine (Necrosis) </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: BitChute ~ Wake.The.Fuck.Up | December 9, 2021</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/news/baby-of-fully-vaccinated-mom-dies-after-being-born-bleeding-from-mouth-nose-vaers-report/">Baby of ‘fully vaccinated’ mom dies after born bleeding from mouth, nose: VAERS report </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: LifeSite ~ LifeSite | December 10, 2021</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/opinion/fully-vaccinated-are-a-major-source-of-covid-virus-transmission-virologist-former-hhs-advisor/">‘Fully vaccinated are a major source of COVID virus transmission’: virologist, former HHS advisor </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: LifeSite ~ LifeSite | December 7, 2021</h4>
<h2a><a target="_blank" href="https://americasfrontlinedoctors.org/news/post/vaccine-acquired-immune-deficiency-syndrome-vaids-we-should-anticipate-seeing-this-immune-erosion-more-widely/">Vaccine Acquired Immune Deficiency Syndrome (VAIDS): 'We should anticipate seeing this immune erosion more widely' </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Frontline News ~ Frontline News | December 5, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-12-10-healthy-people-suffer-covid-vaccine-side-effects.html">Young and healthy people suffer TRAGIC side effects of COVID vaccines </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Mary Villareal | December 10, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-12-10-fauci-says-third-covid-shot-necessary.html">Fauci says third COVID shot necessary for “full vaccination” status, fourth shot required in the future </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Mary Villareal | December 10, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-12-10-biontech-three-additional-pfizer-vaccines-fight-omicron.html">BioNTech says three additional Pfizer covid vaccine doses needed to fight Omicron: total of SIX to be required for “full” vaccination </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | December 10, 2021</h4>
<h2a><a target="_blank" href="https://www.bitchute.com/video/3v58diGR4Jtz/">Another Disturbing Forced Vaccination Video Emerges: Vietnamese Woman Forced Out of Her Home to be Injected </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: BitChute ~ BitChute | December 9, 2021</h4>
<h2a><a target="_blank" href="https://www.theepochtimes.com/south-korean-parents-protest-over-student-vaccine-pass-mandate_4147918.html">South Korean Parents Protest Over Student Vaccine Pass Mandate </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Epoch Times ~ Reuters | December 11, 2021</h4>
<h2a><a target="_blank" href="https://greatgameindia.com/i-would-rather-die-than-lose-my-freedom-vaccine-passports/">‘I Would Rather Die Than Lose My Freedom’: Brazilian President Slams Vaccine Passports </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Great Game India ~ Journal of Geopolitics and International Relations | December 12, 2021</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/blogs/clinical-psychologist-warns-of-totalitarianism-atrocity-resulting-from-covid-buy-in/">Clinical psychologist warns of totalitarianism, atrocity resulting from mass COVID buy-in </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: LifeSiteNews ~ Ashley Sadler | December 10, 2021</h4>
<h2a><a target="_blank" href="https://greatgameindia.com/vaccine-passports-global-credit-system/">Are COVID Vaccine Passports A Trojan Horse For Introducing A Global Social Credit System? </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Great Game India ~ Great Game India | December 9, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/12/no_author/stunning-facebook-court-filing-admits-fact-checks-are-just-a-matter-of-opinion/">Stunning: Facebook Court Filing Admits 'Fact Checks' Are Just a Matter of Opinion </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Lew Rockwell ~ Thomas Lifson | December 11, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/military/us-successfully-upgrades-nuclear-gravity-bomb-modern-battlefield">US "Successfully" Upgrades Nuclear Gravity Bomb For Modern Battlefield </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | December 9, 2021</h4>
<h2a><a target="_blank" href="https://e.vnexpress.net/news/news/120-children-hospitalized-province-suspends-pfizer-vaccine-batch-4397748.html">120 children hospitalized, province suspends Pfizer vaccine batch </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: VN Express International ~ Le Hoang | December 2, 2021</h4>
<h2a><a target="_blank" href="https://www3.nhk.or.jp/nhkworld/en/news/20211204_12/">Health ministry warns of vaccine's side effects </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: NHK ~ NHK | December 4, 2021</h4>
<h2a><a target="_blank" href="https://www.paulcraigroberts.org/2021/12/03/more-evidence-that-the-covid-conspiracy-theory-is-a-fact/">More Evidence that the Covid Conspiracy Theory Is a Fact </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Institute for Political Economy ~ Dr. Paul Craig Roberts | December 3, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/12/respond-corruption-honesty-lies-truth-self-interest-generous-dedication-public-affairs-archbishop-vigano-response-new-world-order/">“Let’s Respond to Corruption with Honesty, to Lies with Truth, to Self-Interest with Generous Dedication to Public Affairs” – Archbishop Vigano’s Latest Defense of Individual Rights in Response to New World Order </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Joe Hoft | December 6, 2021</h4>
<h2a><a target="_blank" href="https://childrenshealthdefense.org/defender/rfk-jr-defender-jessica-rose-data-vaccine-adverse-event-reporting-system/">Data Scientist Tells RFK, Jr.: ‘VAERS Is Telling a Very Frightening Story’ </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Defender ~ Jeremy Loffredo | December 3, 2021</h4>
<h2a><a target="_blank" href="https://stevekirsch.substack.com/p/we-will-kill-117-kids-to-save-one">We will kill 117 kids to save one child from dying from COVID in the 5 to 11 age range </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Steve Kirsch ~ Steve Kirsch | December 4, 2021</h4>
<h2a><a target="_blank" href="https://www.rt.com/news/542078-twitter-heart-association-unsafe-vaccines/">Twitter labels American Heart Association link as ‘unsafe’ over Covid vaccines </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: RT ~ RT | December 3, 2021</h4>
<h2a><a target="_blank" href="https://thenewamerican.com/fda-docs-40k-serious-adverse-reactions-1-2k-deaths-associated-with-pfizer-jab-in-first-2-5-months-of-its-use/">FDA Docs: 40K Serious Adverse Reactions, 1.2K Deaths Associated with Pfizer Jab in First 2.5 Months of Its Use </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The New American ~ Veronika Kyrylenko | December 5, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/12/australian-football-player-diagnosed-pericarditis-receiving-first-pfizer-shot-team-director-quits-slams-leagues-forceful-jab-policy-video/">Australian Football Player Diagnosed with Pericarditis After Receiving First Pfizer Shot – Team Director Quits and Slams Leagues “Forceful” Jab Policy </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | December 8, 2021</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/opinion/the-global-elites-lost-the-covid-war-and-we-all-paid-the-price/">The global ‘elites’ lost the COVID war, and we all paid the price </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: LifeSite ~ Jordan Schachtel | December 8, 2021</h4>
<h2a><a target="_blank" href="https://humansarefree.com/2021/12/mismanagement-of-the-covid-19-crisis.html">Mismanagement Of The COVID-19 Crisis And The Collapse Of The 2020s </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Humans are Free ~ HAF | December 7, 2021</h4>
<h2a><a target="_blank" href="https://dailyexpose.uk/2021/12/08/bad-batch-covid-vaccine-killing-children-west-midlands/">Is a bad batch of the Pfizer Covid Vaccine causing Children to “Die Suddenly” in the West Midlands of England? </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Exposé ~ The Exposé | December 8, 2021</h4>
<h2a><a target="_blank" href="https://summit.news/2021/12/08/explosion-in-new-heart-conditions-explained-as-post-pandemic-stress-disorder/">Explosion in New Heart Conditions Explained as “Post Pandemic Stress Disorder” </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Summit News ~ Paul Joseph Watson | December 8, 2021</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/doctor-banned-for-questioning-efficacy-of-masks-wins-high-court-case/">Doctor Banned For Questioning Efficacy of Masks Wins High Court Case </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Paul Joseph Watson | December 6, 2021</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/news/jab-will-poison/">COVID shots intended to reduce world’s population by poisoning ‘billions’: South African doctor </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: LifeSite ~ Patrick Delaney | November 23, 2021</h4>
<h2a><a target="_blank" href="http://www.informationliberation.com/?id=62728">Federal Judge Blocks Biden Vax Mandate For Contractors; All Three Mandates For Private Sector Now Halted </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: InformationLiberation ~ Chris Menahan | December 8, 2021</h4>
<h2a><a target="_blank" href="https://www.rt.com/news/542220-vienna-vaccine-mandate-protest/">First EU country to lock down unvaccinated hit by mass protests (VIDEOS) </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: RT ~ RT | December 5, 2021</h4>
<h2a><a target="_blank" href="https://humansarefree.com/2021/12/european-union-debates-abolishing-the-nuremberg-code.html">European Union Wants Mandatory Vaccinations And Debates Abolishing The Nuremberg Code (Trying To Pre-Empt Their Arrest For Crimes Against Humanity) </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Humans are Free ~ HAF | December 5, 2021</h4>
<h2a><a target="_blank" href="https://www.ntd.com/covid-19-outbreak-reported-on-us-cruise-ship-despite-fully-vaccinated-passengers_710510.html">COVID-19 Outbreak Reported on US Cruise Ship Despite Fully Vaccinated Passengers </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: NTD ~ Jack Phillips | December 5, 2021</h4>
<h2a><a target="_blank" href="https://banned.video/watch?id=61a9478de475e67dcac9c0cd">InfoWars Interviews Robert F. Kennedy Jr. On Covid Tyranny </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: banned.video ~ Kristi Leigh TV | December 2, 2021</h4>
<h2a><a target="_blank" href="https://brownstone.org/articles/covid-restrictions-and-mandates-imposed-by-the-whims-of-public-health-bureaucrats-are-illegal-missouri-court-rules/">Covid Restrictions and Mandates Imposed by “the Whims of Public Health Bureaucrats” are Illegal, Missouri Court Rules </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Brownstone Institute ~ Brownstone Institute | November 24, 2021</h4>
<h2a><a target="_blank" href="https://nationalfile.com/pfizer-documents-reveal-1200-vaccine-deaths-90-day-trial-period/">Pfizer Documents Reveal Over 1,200 Vaccine Deaths Over 90-Day Trial Period </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: National File ~ Cullen McCue | December 2, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-27-higher-covid-vaccine-coverage-higher-excess-mortality.html">Higher covid “vaccine” coverage equals higher excess mortality </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | November 27, 2021</h4>
<h2a><a target="_blank" href="https://www.sciencemediacentre.org/expert-reaction-to-six-cases-of-the-omicron-variant-being-detected-in-scotland/">Oxford Professor: Official Data Shows Face Masks “Made No Meaningful Difference” to Infection Rates </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Paul Joseph Watson | November 30, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/political/la-county-sheriff-boots-china-linked-covid-testing-firm-after-fbi-warns-over-dna">LA County Sheriff Boots China-Linked Covid Testing Firm After FBI Warns Over DNA Data </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | November 30, 2021</h4>
<h2a><a target="_blank" href="https://newsbusters.org/blogs/free-speech/autumn-johnson/2021/11/27/twitter-suspends-scientist-his-covid-tweets-report">Twitter Suspends Scientist for His COVID Tweets: Report </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: News Busters ~ Autumn Johnson | November 27, 2021</h4>
<h2a><a target="_blank" href="https://thenationalpulse.com/news/twitters-new-ceo-parag-agrawal-has-disturbing-anti-american-anti-white-tweet-history/">Twitter’s New CEO Parag Agrawal Has Disturbing Anti-American, Anti-White Tweet History </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: The National Pulse ~ Kay Smythe | November 29, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/political/new-twitter-ceos-first-decision-ban-mean-memes">New Twitter CEO's First Decision: Ban Mean Memes </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | November 30, 2021</h4>
<h2a><a target="_blank" href="https://gnews.org/1706746/">Dictators Believe They Are Always Right While the People Are Always Wrong </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: GNews ~ JoJo_TorMapleLeafs | November 29, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-28-mass-media-complex-of-america-is-a-pandemic-of-misinformation.html">The Mass Media Complex of America is a PANDEMIC of misinformation </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Natural News ~ S.D. Wells | November 28, 2021</h4>
<h2a><a target="_blank" href="https://www.frontpagemag.com/fpm/2021/11/three-foreign-billionaires-finance-dem-dark-money-daniel-greenfield/">Three Foreign Billionaires Finance the Dem Dark Money Machine </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Frontpage Mag ~ Daniel Greenfield | November 23, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/12/fbis-internal-lawful-access-doc-reveals-bureaus-real-time-surveillance-encrypted-messaging-services/">FBI Document Reveals Spying On iMessage, WhatsApp </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Alicia Powe | December 1, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/11/chinas-evergrande-shares-fall-chairman-sells-significant-stake-now-another-developer-china-fantasia-files-liquidation/">China’s Evergrande Shares Fall After Chairman Sells a Significant Stake – Now Another Developer in China, Fantasia, Files for Liquidation </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Joe Hoft | November 29, 2021</h4>
<h2a><a target="_blank" href="https://thepostmillennial.com/ugandas-airport-chinese-control">Uganda's only intl. airport is now under Chinese control due to a default on loan payments </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: The Post Millenial ~ James Anthony | November 27, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/markets/us-covid-deaths-2021-have-surpassed-2020s-total-despite-vaccines-treatments">US COVID Deaths In 2021 Have Surpassed 2020's Total... Despite Vaccines, Treatments </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | November 24, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-21-ireland-vaccination-rate-cases-spike.html">Ireland goes into “semi-lockdown” despite 93% vaccination rate as COVID-19 cases spike </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Cassie B. | November 21, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-23-health-officials-baffled-surging-disease-la-vaccinated.html">Health officials “baffled” by surging disease in LA’s most vaccinated communities </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | November 23, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/11/ghislaine-maxwell-child-sexual-abuse-case-starts-little-attention-media/">Ghislaine Maxwell Child Sexual Abuse Case Opens with Little Attention from the Media </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Joe Hoft | November 21, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-21-kyle-rittenhouses-innocent-verdict-indictment-of-mainstream-media.html">Kyle Rittenhouse’s innocent verdict is an indictment of the mainstream media and an affirmation of the Second Amendment </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | November 21, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/11/dystopia-australian-military-summoned-relocate-covid-19-positive-close-contacts-quarantine-camps/">DYSTOPIA DOWN UNDER: Australian Military Summoned to Relocate COVID-19 Positive and “Close Contacts” to Quarantine Camps </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | November 22, 2021</h4>
<h2a><a target="_blank" href="https://greatgameindia.com/worlds-first-bitcoin-city/">World’s First Volcano Powered Bitcoin City Coming To El Salvador </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: Great Game India ~ Great Game India | November 24, 2021</h4>
<h2a><a target="_blank" href="https://alt-market.us/what-is-the-relationship-between-the-political-left-and-globalism/">What Is The Relationship Between The Political Left And Globalism? </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Alt-Market ~ Brandon Smith | November 24, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-22-violence-from-the-left-is-good-self-defense-from-the-right-deemed-racist.html">Violence from the Left is “good” but self-defense from the Right is deemed “racist” </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Natural News ~ S.D. Wells | November 22, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/economics/pilgrims-did-socialism-and-died-trying">The Pilgrims Did Socialism And Died Trying </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | November 26, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-25-covid-vaccine-mandates-dangerous-for-children.html">Covid “vaccine” mandates dangerous for children, warns former Australian medical official </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | November 25, 2021</h4>
<h2a><a target="_blank" href="https://www.westernjournal.com/bombshell-pfizer-study-vaxxed-kids-catch-covid-essentially-rate-unvaxxed-kids/">Bombshell Pfizer Study: Vaxxed Kids Catch COVID at Essentially the Same Rate as Unvaxxed Kids </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Western Journal ~ Jack Davis | November 23, 2021</h4>
<h2a><a target="_blank" href="https://greatgameindia.com/stigmatising-the-unvaccinated-is-not-justified/">Stigmatising The Unvaccinated Is Not Justified </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Great Game India ~ Great Game India | November 24, 2021</h4>
<h2a><a target="_blank" href="https://www.bitchute.com/video/zKQeJ9Zi5O0/">New York City Teacher Loses Job for Refusing Nuremberg-violating Mandate </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: BitChute ~ Newsmax | November 6, 2021</h4>
<h2a><a target="_blank" href="https://thecovidblog.com/2021/11/22/joey-mishkin-35-year-old-florida-single-father-receives-pfizer-mrna-injection-to-save-his-job-suffers-massive-heart-attack-dead-12-days-later/">Joey Mishkin: 35-year-old Florida single father receives Pfizer mRNA injection to save his job, suffers massive heart attack, dead 12 days later </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Covid Blog ~ admin | November 22, 2021</h4>
<h2a><a target="_blank" href="https://thenationalpulse.com/exclusive/exc-gates-foundation-sent-over-54-million-to-china-since-covid-including-to-wuhan-collaborators/">Gates Foundation Sent Over $54 Million To China Since COVID, Including To Wuhan Collaborators </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The National Pulse ~ Natalie Winters | November 23, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/geopolitical/nearly-34-worlds-dictators-receive-us-weapons-military-assistance">Nearly 3/4 Of The World's Dictators Receive US Weapons & Military Assistance </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | November 25, 2021</h4>
<h2a><a target="_blank" href="https://www.voltairenet.org/article214804.html">The West, a mockery of Freedom </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Voltairenet.org ~ Thierry Meyssan | November 23, 2021</h4>
<h2a><a target="_blank" href="https://banned.video/watch?id=619e71c1db80e065c5003563">[VIDEO] Discussion between Gen. Flynn, Patrick Byrne, Alex Jones, and Joe Flynn </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: banned.video ~ The Alex Jones Show | November 24, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-23-capitol-police-kicking-young-woman-to-death.html">Newly released Jan. 6 footage appears to show Capitol Police kicking young woman to death </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Natural News ~ News Editors | November 23, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/11/attorney-releases-first-pages-subpoenaed-fda-files-shows-pfizer-documented-158893-adverse-events-25957-nervous-system-disorders/">Attorney Releases First Pages from Subpoenaed FDA Files – Shows Pfizer Documented 158,893 Adverse Events with 25,957 Nervous System Disorders in First Few Months of Distribution </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | November 21, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-21-bill-gates-bribed-media-promote-interests.html">Bill Gates bribed media with $319 million to promote his interests: Vaccines, depopulation and covid hysteria </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | November 21, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/11/ny-times-breaks-news-one-year-election-hunter-biden-helped-facilitate-sale-worlds-richest-cobalt-mines-us-company-china/">NY Times Breaks This News One Year After Election: Hunter Biden Helped Facilitate Sale of World’s Richest Cobalt Mines from US Company to Chinese Communists </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | November 21, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/11/exclusive-jimmy-carter-bill-clinton-barack-obama-facilitated-chinas-colonization-u-s-research-programs/">China’s Colonization of U.S. Research Programs </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Joe Hoft | November 21, 2021</h4>
<h2a><a target="_blank" href="https://www.forbes.com/sites/roberthart/2021/11/19/not-just-austria-here-are-the-countries-making-covid-19-vaccination-compulsory-for-everyone/?sh=47fe0a334bf0">Not Just Austria—Here Are The Countries Making Covid-19 Vaccination Compulsory For Everyone </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Forbes ~ Robert Hart | November 19, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/11/no_author/the-otherization-of-unvaccinated-people-is-proceeding-quickly/">The Otherization of Unvaccinated People Is Proceeding Quickly </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Lew Rockwell ~ Andrea Widburg | November 17, 2021</h4>
<h2a><a target="_blank" href="https://mobile.twitter.com/MichaelDeLauzon/status/1461187940751532033?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1461187940751532033%7Ctwgr%5E%7Ctwcon%5Es1_&ref_url=https%3A%2F%2Fwww.infowars.com%2Fposts%2Fheartbreaking-teacher-fired-from-35-year-position-for-refusing-vax-breaks-down-in-tears%2F">Heartbreaking: Teacher Fired from 35-Year Position for Refusing Vax Breaks Down In Tears </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Twitter ~ American Patriot | November 17, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-15-ap-vaccinated-spreading-covid-filling-hospitals-boosters.html">Associated Press now admits vaccinated people are spreading COVID and filling hospitals, claims booster shots are the answer </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | November 15, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/11/huge-breaking-news-pfizer-hid-public-number-deaths-covid-clinical-trials-actual-number-21-6-reported-4-unvaccinated-group/">Pfizer Hid from Public the Number of Deaths in COVID Clinical Trials — Actual Number Was 21 Which Was 6 More than was Reported and 4 More than Unvaccinated Group </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | November 16, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/11/hero-robert-kennedy-jr-discusses-dr-fauci-erosion-constitutional-rights-video/">[VIDEO] Hero Robert Kennedy Jr. Discusses Dr. Fauci and the Erosion of Our Constitutional Rights with Tucker Carlson </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | November 16, 2021</h4>
<h2a><a target="_blank" href="https://humansarefree.com/2021/11/public-health-data-89-of-covid-19-deaths-in-the-past-month-were-among-the-fully-vaccinated.html">Public Health Data: 89% Of Covid-19 Deaths In The Past MONTH Were Among The Fully Vaccinated </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Humans Are Free ~ HAF | November 11, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-19-french-citizens-overestimate-covid-mortality-risk.html">Surveys show French citizens grossly overestimate COVID-19 fatality rate due to media brainwashing </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ramon Tomey | November 19, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-19-over-10k-australians-register-for-vaccine-compensation.html">Over 10,000 Australians want compensation for COVID-19 vaccine side effects </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Mary Villareal | November 19, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-15-npr-book-editor-died-from-blood-clots.html">Petra Mayer: 46-year-old NPR book editor “died suddenly” from blood clots </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ News Editors | November 15, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-17-covid-vaccine-adverse-events-professional-athletes-skyrocket.html">Serious adverse events in professional athletes skyrocket 6,000 percent following covid “vaccine” rollout </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | November 17, 2021</h4>
<h2a><a target="_blank" href="https://www.westernjournal.com/doc-trumps-covid-task-force-says-fauci-birx-ignored-data-disputed-preferred-theories/">Doc on Trump's COVID Task Force Says Fauci, Birx Ignored Data That Disputed Their Preferred Theories </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Western Journal ~ Jack Davis | November 14, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/11/joseph-mercola/covid-jab-is-far-more-dangerous-than-advertised/">COVID Jab Is Far More Dangerous Than Advertised </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Lew Rockwell ~ Joseph Mercola | November 17, 2021</h4>
<h2a><a target="_blank" href="https://www.nakedcapitalism.com/2021/11/mexicos-world-bank-funded-mandatory-biometric-database-raises-serious-ethical-and-legal-questions.html">Mexico’s World Bank-Funded Mandatory Biometric Database Raises Serious Ethical and Legal Questions </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: Naked Capitalist ~ Nick Corbishley | November 16, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/11/andrew-p-napolitano/what-if-leviathan-destroys-our-freedom/">What If Leviathan Destroys Our Freedom? </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Lew Rockwell ~ Andrew P. Napolitano | November 18, 2021</h4>
<h2a><a target="_blank" href="https://banned.video/watch?id=61959c9add2a715573accc4d">[INTERVIEW] General Flynn Issues Emergency Warning to America & The World </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: banned.video ~ Alex Jones | November 17, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-17-austria-lock-down-and-fines-for-the-unvaccinated.html">Austria initiates lock down and fines for the “unvaccinated” as covid-19 vaccine experiment continues to fail </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Lance D Johnson | November 17, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-15-scientists-want-to-stamp-vaccinated-children.html#">Here come the tattoo marks – Scientists want to stamp children with invisible ink to prove they’ve been vaccinated </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | November 15, 2021</h4>
<h2a><a target="_blank" href="https://nationalfile.com/judge-schroeder-slams-medias-handling-of-rittenhouse-trial-really-quite-frightening/">Judge Schroeder Slams Media’s Handling Of Rittenhouse Trial: ‘Really Quite Frightening’ </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: National FIle ~ Tom Pappert | November 17, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/11/paul-craig-roberts/in-the-western-world-journalism-has-been-replaced-by-the-ministry-of-propaganda/">In the Western world, journalism has been replaced by the Ministry of Propaganda </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Lew Rockwell ~ Paul Craig Roberts | November 18, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-18-mccullough-sues-elsevier-study-covid-vaccines-children.html">Dr. McCullough sues Elsevier journal for refusing to publish study highlighting risks of covid “vaccination” in children </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | November 18, 2021</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/victory-florida-school-district-ends-mask-mandate-after-8-year-old-girl-told-them-they-should-be-in-prison/">Florida School District Ends Mask Mandate After 8-Year-Old Girl Told Them They Should Be In Prison </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Steve Watson | November 15, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-17-california-school-board-wont-enforce-vaccine-mandate.html">California school board votes not to support, enforce or comply with pending COVID-19 vaccine mandate </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Zoey Sky | November 17, 2021</h4>
<h2a><a target="_blank" href="https://bitcoinmagazine.com/business/synonym-launches-architecture-for-self-sovereign-economy-around-bitcoin">Bitcoin Company Synonym Launches Architecture for a Self-Sovereign Economy </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Bitcoin Magazine ~ NAMCIOS | November 16, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-19-emory-university-training-ground-chinese-military-scientists.html">Breaking exclusive: Emory University is training ground for Chinese military scientists linked to biowarfare research with funding from Dr. Fauci </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Natural News ~ News Editors | November 19, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/11/chinese-dissident-suggests-political-correctness-making-america-authoritarian-state-video/">[VIDEO] Chinese Dissident Suggests on PBS that Political Correctness Making America An Authoritarian State </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Mike LaChance | November 17, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/crypto/chinas-bitcoin-ban-unnoticed-geopolitical-event-decade">China's Bitcoin Ban Is The Unnoticed Geopolitical Event Of The Decade </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | November 16, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/political/china-imprisoned-more-journalists-2020-any-other-nation">China Imprisoned More Journalists In 2020 Than Any Other Nation </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | November 16, 2021</h4>
<h2a><a target="_blank" href="https://asiatimes.com/2021/11/xis-new-communist-manifesto/">Xi’s new Communist Manifesto </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Asia Times ~ Pepe Escobar | November 15, 2021</h4>
<h2a><a target="_blank" href="https://newsbusters.org/blogs/business/joseph-vazquez/2021/11/15/bidens-fcc-nominee-heavily-connected-george-soros">Biden’s FCC Nominee Is Heavily Connected to George Soros </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: mrcBusiness ~ Joseph Vazquez | November 15, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/11/just-fbi-cdc-investigating-questionable-vials-labeled-smallpox-found-merck-lab-near-philadelphia/">FBI, CDC Investigating “Questionable Vials” Labeled Smallpox Found at Merck Lab Near Philadelphia </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | November 16, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-14-us-developing-lethal-genetically-engineered-viruses-mousepox-monkeypox.html">US developing lethal, new genetically engineered viruses, including MOUSEPOX and MONKEYPOX… will these be used to demand MORE JABS in the name of “public safety?” </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Natural News ~ S.D. Wells | November 14, 2021</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/powerful-robert-f-kennedy-jr-warns-govt-and-big-tech-engineered-the-destruction-of-democracy-and-civil-rights/">Robert F. Kennedy Jr. Warns Gov’t and Big Tech ‘Engineered The Destruction of Democracy and Civil Rights’ </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Jame White | November 14, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/11/dr-fauci-admits-vaccines-not-work-advertised-vaccinated-great-danger-today/">[VIDEO] Dr. Fauci Admits Vaccines Did Not Work as Advertised and that Vaccinated Are in Great Danger Today </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | November 14, 2021</h4>
<h2a><a target="_blank" href="https://thefreethoughtproject.com/pfizer-jab-halted-taiwan-concerns/">As US Cities Mandate Pfizer Jabs for Kids, Other Countries Suspending them over Health Risks </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Free Thought Project ~ Matt Agorist | November 13, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/covid-19/french-health-authority-warns-men-under-30-avoid-moderna-jab">French Health Authority Warns Men Under 30 To Avoid Moderna Jab </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | November 10, 2021</h4>
<h2a><a target="_blank" href="https://www.dcclothesline.com/2021/11/13/swedish-doctors-want-pfizers-covid-jab-banned-after-subcontractor-fraud-exposed/">Swedish doctors want Pfizer’s covid jab banned after subcontractor fraud exposed </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: DC Clothesline ~ Ethan Huff | November 13, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/11/taiwan-suspends-second-round-pfizer-covid-vaccines-children-due-heart-problems/">Taiwan Suspends Second Round of Pfizer COVID Vaccines for Children Due to Heart Problems </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | November 14, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/covid-19/singapore-cancels-free-healthcare-those-unvaccinated-choice">Singapore Cancels Free Healthcare For Those "Unvaccinated By Choice" </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | November 12, 2021</h4>
<h2a><a target="_blank" href="https://greatgameindia.com/vaccine-mandate-not-based-on-science/">20 Studies Exposing Vaccine Mandate Is Not Based On Science </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Great Game India ~ Great Game India | November 12, 2021</h4>
<h2a><a target="_blank" href="https://greatgameindia.com/grace-smith-sues-wyoming-governor-mask/">Teen Girl Grace Smith Arrested For Not Wearing Mask Sues Wyoming Governor </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Great Game India ~ Great Game India | November 12, 2021</h4>
<h2a><a target="_blank" href="https://www.newstarget.com/2021-11-12-bill-gates-governments-punish-people-questioning-vaccine-mandates.html">Bill Gates says governments must PUNISH people for questioning mask and vaccine mandates online </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: NewsTarget ~ Lance D. Johnson | November 12, 2021</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/instagram-bans-all-mention-of-james-okeefe-project-veritas/">Instagram Bans All Mention of James O’Keefe & Project Veritas </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Infowars ~ Infowars | November 14, 2021</h4>
<h2a><a target="_blank" href="https://headlineusa.com/biden-family-hunter-molested-niece/">Joe Biden & Family Knew About Hunter’s ‘Sexually Inappropriate’ Relationship w/ Niece </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Headline USA ~ Joshua Paladino | November 13, 2021</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/sen-collins-hillary-clinton-started-russia-collusion-hoax-to-cover-up-her-email-scandal/">Sen. Collins: Hillary Clinton Started Russia Collusion Hoax to Cover Up Her Email Scandal </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Infowars ~ Infowars | November 14, 2021</h4>
<h2a><a target="_blank" href="https://www.wnd.com/2021/11/world-promised-never-now-returning/">World promised 'never again,' but now it's returning: Activists raising global awareness of China's Uighur genocide </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: WND ~ WND News Services | November 13, 2021</h4>
<h2a><a target="_blank" href="https://www.dcclothesline.com/2021/11/12/un-backed-banker-alliance-announces-green-plan-to-transform-the-global-financial-system/">UN-Backed Banker Alliance Announces “Green” Plan To Transform The Global Financial System </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: DC Clothesline ~ Tim Brown | November 12, 2021</h4>
<h2a><a target="_blank" href="https://www.thedailybell.com/all-articles/news-analysis/planned-opolis-take-a-virtual-tour-of-your-dystopian-future-techno-prison/">‘Planned-Opolis’: Take a Virtual Tour of Your Dystopian Future Techno-Prison </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: The Daily Bell ~ Ben Bartee | November 12, 2021</h4>
<h2a><a target="_blank" href="https://www.westernjournal.com/rittenhouse-judge-threat-terrifying-emails-expose-lefts-vicious-mob-mentality-report/">Rittenhouse Judge Under Threat: Terrifying Emails Expose Left's Vicious Mob Mentality - Report </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: The Western Journal ~ Isa Cox | November 14, 2021</h4>
<h2a><a target="_blank" href="https://alt-market.us/leftists-support-tyranny-conservatives-do-not-its-time-to-separate/">Leftists Support Tyranny – Conservatives Do Not: It’s Time To Separate </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Alt-Market ~ Brandon Smith | November 11, 2021</h4>
<h2a><a target="_blank" href="https://www.thedailybell.com/all-articles/news-analysis/uk-man-paid-12000-by-airline-which-forced-him-to-wear-a-mask/">UK Man Paid $12,000 by Airline Which Forced Him to Wear a Mask </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Daily Bell ~ Joe Jarvis | November 11, 2021</h4>
<h2a><a target="_blank" href="https://www.theepochtimes.com/hundreds-protest-against-vaccine-mandates-near-golden-gate-bridge_4103041.html">CA Rising! Hundreds Protest Against Vaccine Mandates Near Golden Gate Bridge </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Epoch Times ~ Cynthia Cai | November 14, 2021</h4>
<h2a><a target="_blank" href="https://www.theepochtimes.com/austria-orders-nationwide-lockdown-for-unvaccinated_4103187.html">Austria Orders Nationwide Lockdown for Unvaccinated </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Epoch Times ~ The Associated Press | November 14, 2021</h4>
<h2a><a target="_blank" href="https://thenationalpulse.com/exclusive/mcc-ceo-invested-in-ccp-run-firm/">Biden Nominee To Run Foreign Aid Agency Has 6-Figure Investment In Chinese State-Run Fund </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The National Pulse ~ Natalie Winters | November 13, 2021</h4>
<h2a><a target="_blank" href="https://www.rt.com/usa/540203-bezos-earth-population-limit/">Amazon’s Bezos predicts only limited number of people will get to remain on Earth </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: RT ~ RT | November 13, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-12-patent-surveillance-freedoms-social-credit-covid-plandemic.html#">Technology patent suggests tech overlords are planning to digitally surveil people, grant “freedoms” based on vaccination status </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | November 12, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-10-indians-starvation-bill-gates-food-rationing-biometrics.html#">Indians DROP DEAD from starvation thanks to Bill Gates’ food rationing biometrics system </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | November 10, 2021</h4>
<h2a><a target="_blank" href="https://www.bitchute.com/video/OGqlrMi5oFZD/">[INTERVIEW] Dr. Igor Shepherd: COVID is a Global Military Operation. We're Facing Genetic Genocide. </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: BitChute ~ Dr. Igor Shepherd | November 11, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/covid-19/bolsonaro-confronts-who-chief-people-are-dying-after-second-dose">Bolsonaro Confronts WHO Chief: "People Are Dying After The Second Dose" </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | November 11, 2021</h4>
<h2a><a target="_blank" href="https://www.paulcraigroberts.org/2021/11/01/an-orchestrated-fake-covid-pandemic-was-used-to-destroy-health-civil-liberty-and-the-doctor-patient-relationship/">An Orchestrated Fake “Covid Pandemic” Was Used to Destroy Health, Civil Liberty and the Doctor/Patient Relationship </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Institute for Political Economy ~ Paul Craig Roberts | November 1, 2021</h4>
<h2a><a target="_blank" href="https://www.unz.com/mwhitney/excess-deaths-point-to-depopulation-agenda/">Excess Deaths Point to Depopulation Agenda </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Unz Review ~ Mike Whitney | November 5, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/11/virginia-pharmacy-found-administering-wrong-covid-19-vaccine-children-aged-5-11-100-received-adult-dosage-just-1-day/">Virginia Pharmacy Found Administering Wrong Covid-19 Vaccine to Children Aged 5-11; Over 100 Received Adult Dosage in Just Over 1 day </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Julian Conradson | November 11, 2021</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/cali-town-declares-itself-constitutional-republic-city-rejects-bidens-governors-mandates/">Oroville, CA Declares Itself “Constitutional Republic City,” Rejects Biden’s, Governor’s Mandates </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Adan Salazar | November 9, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/11/must-watch-2nd-grader-suspended-38-times-not-wearing-masks-tells-school-board-hopes-go-jail/">2nd Grader Suspended 38 Times for Not Wearing Masks Tells School Board That She Hopes They Go to Jail </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cassandra Fairbanks | November 10, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/11/evil-cdc-director-walensky-says-children-wear-masks-even-vaccinated-video/">CDC Director Walensky Says Children Should Wear Masks Even After They’re Vaccinated </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | November 11, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-10-vaccine-effectiveness-drops-to-zero-after-months.html">New study suggests vaccine effectiveness drops to zero after seven months </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Mary Villareal | November 10, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-10-british-agency-deletes-study-covid-jabs-infections.html">British health agency deletes study that found COVID jabs substantially increase infection risk </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | November 10, 2021</h4>
<h2a><a target="_blank" href="https://www.abc12.com/2021/11/08/saginaw-township-schools-closed-monday-because-staffing-shortage-will-reopen-tuesday/">Schools closed, too many teachers and staff out sick after 3rd gene therapy injection </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: ABC ~ Mark Bullion | November 8, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/11/wow-just-wow-joe-biden-talks-great-negro-time-speech-veterans-day-video/">WOW!… For Veterans Day Joe Biden Hurls Racist Epithet at Black Americans </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | November 11, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-10-indians-starvation-bill-gates-food-rationing-biometrics.html">"Glictches" in the Bill Gates food rationing biometrics system leads to starvation of Poor Indians </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | November 10, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-07-nancy-pelosi-rambles-about-privileged-scrub-and-bird-baths.html#">Democrat leader Nancy Pelosi rambles about “privileged scrub” and bird baths in stunning demonstration of cognitive decline that now characterizes the Brandon administration </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Natural News ~ Mike Adams | November 7, 2021</h4>
<h2a><a target="_blank" href="https://www.bmj.com/content/375/bmj.n2635">Covid-19: Researcher blows the whistle on data integrity issues in Pfizer’s vaccine trial </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: British Medical Journal ~ Paul D Thacker | November 2, 2021</h4>
<h2a><a target="_blank" href="https://www.thelancet.com/journals/laninf/article/PIIS1473-3099(21)00648-4/fulltext#seccestitle160">[STUDY] Community transmission and viral load kinetics of the SARS-CoV-2 delta (B.1.617.2) variant in vaccinated and unvaccinated individuals in the UK: a prospective, longitudinal, cohort study </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Lancet ~ Dr. Anika Singanayagam, PhD et al. | October 29, 2021</h4>
<h2a><a target="_blank" href="https://www.youtube.com/watch?v=OvM5meOXk9o&ab_channel=IvorCummins">[VIDEO] KEY 5 min Update: Dr Peter Doshi * Associate Editor of the BMJ * - </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Ivor Cummins ~ Dr. Peter Doshi | November 5, 2021</h4>
<h2a><a target="_blank" href="https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3949410">[PREPRINT STUDY] Effectiveness of Covid-19 Vaccination Against Risk of Symptomatic Infection, Hospitalization, and Death Up to 9 Months: A Swedish Total-Population Cohort Study </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Lancet Preprints ~ Dr. Peter Nordström et al. | October 25, 2021</h4>
<h2a><a target="_blank" href="https://jamanetwork.com/journals/jama/fullarticle/2784193">Spontaneous Abortion Following COVID-19 Vaccination During Pregnancy </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: JAMA ~ Dr. Elyse O. Kharbanda, MD, MPH et al. | September 8, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-02-harvard-professor-dont-give-children-coronavirus-vaccines.html">Harvard professor urges parents not to give children coronavirus vaccines because “risks outweigh any benefit” </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Zoey Sky | November 2, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/political/supreme-court-declines-block-maine-covid-19-vaccine-mandate-health-workers">Supreme Court Declines To Block Maine COVID-19 Vaccine Mandate For Health Workers </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | October 30, 2021</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/opinion/no-one-can-reasonably-consent-to-a-mandated-vaccine/">Canadian Ethics Professor: No one can reasonably consent in a free society to a mandated vaccination </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: LifeSite ~ Kennedy Hall | October 26, 2021</h4>
<h2a><a target="_blank" href="https://childrenshealthdefense.org/defender/fda-endorses-pfizer-covid-vaccine-children/">FDA Panel Endorses Pfizer Shots for 5- to 11-Year-Olds, Experts Say Vaccine for Kids Is ‘Unnecessary, Premature and Will Do More Harm Than Good’ </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Defender ~ Megan Redshaw | October 26, 2021</h4>
<h2a><a target="_blank" href="https://nationalfile.com/fda-committee-members-reviewing-pfizer-vaccine-for-children-have-worked-for-pfizer-have-big-pfizer-connections/">FDA Committee Members Reviewing Pfizer Vaccine For Children Have Worked For Pfizer, Have Big Pfizer Connections </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: National File ~ Patrick Howley | October 26, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/11/explosive-revelation-indian-television-exposes-pfizer-bullies-blackmails-countries-covid-shots-video/">Indian Television Exposes How Pfizer Bullies and Blackmails Countries for COVID Shots – “Desperate Countries force to Make Humiliating Concessions” </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | November 1, 2021</h4>
<h2a><a target="_blank" href="https://dfw.cbslocal.com/2021/11/03/2-garland-texas-children-mistakenly-adult-dose-covid-19-vaccine/">Child, 7, Experiences Adverse Reaction After Mistakenly Being Given Adult Vaccine Dose During Trick-or-Treat Event </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: CBS ~ Nicole Nielsen | November 3, 2021</h4>
<h2a><a target="_blank" href="https://www.newswars.com/season-abruptly-ends-for-hs-football-team-due-to-vaccine-mandate/">Season Abruptly Ends for HS Football Team Due to Vaccine Mandate; Many players on team 'so they won’t be on the street,' long-time coach says </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Newswars ~ Dan Lyman | November 4, 2021</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/24-year-old-hockey-player-dies-after-suffering-cardiac-arrest-during-game/">24-Year-Old Hockey Player Dies After Suffering Cardiac Arrest During Game </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Paul Joseph Watson | November 4, 2021</h4>
<h2a><a target="_blank" href="https://thecovidblog.com/2021/10/31/chantal-uren-37-year-old-western-australia-police-officer-suffers-bells-palsy-ruptured-aneurysm-stroke-two-weeks-after-pfizer-mrna-injection/">Chantal Uren: 37-year-old Western Australia police officer suffers Bell’s Palsy, ruptured aneurysm, stroke two weeks after Pfizer mRNA injection </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Covid Blog ~ admin | October 31, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-03-mass-psychosis-due-to-covid-lies.html">Experts warn of mass psychosis due to COVID lies </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Matthew Davis | November 3, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-29-japan-ends-vaccine-induced-pandemic-legalizing-ivermectin.html">Japan ends vaccine-induced pandemic by legalizing IVERMECTIN, while pharma-controlled media pretends masks and vaccines were the savior </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Lance D Johnson | October 29, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-11-01-corruption-covid-congress-redefined-vaccine-mrna-injections.html">Weeks before covid appeared in U.S., Congress redefined the word “vaccine” to include mRNA injections </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | November 1, 2021</h4>
<h2a><a target="_blank" href="https://starpolitical.com/breaking-report-lawmaker-calls-for-full-criminal-investigation-into-dr-fauci/">Lawmaker Calls For ‘Full Criminal Investigation’ into Dr. Fauci </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Star Political ~ Star Political News | October 29, 2021</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/youre-trying-to-cover-your-ass-rand-paul-confronts-fauci-again-demands-he-acknowledge-nih-funded-gain-of-function-research-or-resign/">[VIDEO] ‘You’re Trying To Cover Your Ass’: Rand Paul Confronts Fauci AGAIN, Demands He Acknowledge NIH Funded Gain-of-Function Research or RESIGN </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Infowars | November 4, 2021</h4>
<h2a><a target="_blank" href="https://www.bitchute.com/video/FOQqOL0jlnY/">[VIDEO] The Elites are Runnin' Scared: New Zealand PM Flees from Reporter asking Real Questions </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: BitChute ~ Memology 101 | November 2, 2021</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/powerful-mep-scorches-political-elite-for-imposing-vaccine-passports-using-extortion-and-manipulation/">[VIDEO] MEP Scorches ‘Political Elite’ For Imposing Vaccine Passports Using ‘Extortion and Manipulation’ </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Infowars ~ Infowars | October 30, 2021</h4>
<h2a><a target="_blank" href="https://m.theepochtimes.com/anti-covid-19-vaccine-protests-erupt-in-papua-new-guinea_4079195.html">Anti-COVID-19 Vaccine Protests Erupt in Papua New Guinea </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Epoch Times ~ Victoria Kelly-Clark | November 1, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/political/americans-biggest-fear-corrupt-government-officials">Americans' Biggest Fear Is "Corrupt Government Officials" </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | October 30, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/geopolitical/china-build-special-forces-base-tajikistan-afghan-border">China To Build Special Forces Base In Tajikistan On Afghan Border </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | October 30, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-29-complicit-media-covering-up-covert-bankruptcy-evergrande.html">Complicit media covering up covert bankruptcy of Evergrande… global financial house of cards about to fall </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | October 29, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/must-read-gateway-pundit-attorney-destroys-fake-fact-checker-daniel-funke-latest-embarrassing-attempt-rescue-fauci/">Gateway Pundit Attorney Destroys Fake “Fact-Checker” Daniel Funke on His Latest Embarrassing Attempt to Rescue Fauci </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | October 29, 2021</h4>
<h2a><a target="_blank" href="https://www.peakprosperity.com/this-is-war-an-interview-with-pierre-kory/">“This Is War”: An Interview with Pierre Kory: Power structures ignore the science </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Peak Prosperity ~ Chris Martenson | October 15, 2021</h4>
<h2a><a target="_blank" href="https://brownstone.org/articles/22-studies-and-reports-that-raise-profound-doubts-about-vaccine-efficacy-for-the-general-population/">22 Studies and Reports that Raise Profound Doubts about Vaccine Efficacy for the General Population </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Brownstone Institute ~ Paul Elias Alexander | October 28, 2021</h4>
<h2a><a target="_blank" href="https://www.theepochtimes.com/attorneys-general-in-10-states-join-fight-against-biden-admins-vaccine-mandate_4078511.html">Attorneys General in 10 States Join Fight Against Biden Admin’s Vaccine Mandate </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Epoch Times ~ Jack Phillips | October 31, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-31-ivermectin-is-horse-dewormer-for-regular-americans-first-choice-for-congress.html">IVERMECTIN: It’s called “horse de-wormer” for any American taking it for Covid, but for Congress, it’s their FIRST CHOICE for prevention and treatment </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ S.D. Wells | October 31, 2021</h4>
<h2a><a target="_blank" href="https://childrenshealthdefense.org/child-health-topics/health-freedom/worldwide-walk-outs">Worldwide Walkouts! </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Children's Health Defense ~ Robert F. Kennedy Jr. | October 27, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/10/no_author/boston-universitys-silent-coercion/">Boston University's Silent Coercion </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Lew Rockwell ~ Anonymous | October 30, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-31-putin-says-woke-culture-caused-his-country-decades-of-tyranny.html">Russia’s Putin claps back at “woke” culture, says his country experienced it once before and it led to decades of tyranny </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | October 31, 2021</h4>
<h2a><a target="_blank" href="https://securityaffairs.co/wordpress/123980/cyber-crime/conti-ransomware-graff-jeweller.html?utm_source=rss&utm_medium=rss&utm_campaign=conti-ransomware-graff-jeweller">Conti ransomware gang hit high society jeweller Graff and threatens to release private details of world leaders, actors and tycoons </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Security Affairs ~ Pierluigi Paganini | October 31, 2021</h4>
<h2a><a target="_blank" href="https://www.technocracy.news/next-1000-private-jets-will-assemble-in-davos-to-execute-the-great-reset/">Next: 1,000 Private Jets Will Assemble In Davos To Execute The Great Reset </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Technocracy News ~ Dr. Joseph Mercola | October 28, 2021</h4>
<h2a><a target="_blank" href="https://www.rt.com/news/538707-india-missile-nuclear-tests/?utm_source=rss&utm_medium=rss&utm_campaign=RSS">India tests nuclear-capable missile with range of up to 5,000 km following Beijing’s hypersonic rocket trials (VIDEOS) </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: RT` ~ RT | October 28, 2021</h4>
<h2a><a target="_blank" href="https://www.aier.org/article/military-spending-is-not-the-same-as-defense-spending/">Military Spending Is Not the Same As Defense Spending </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: American Institute for Economic Research ~ Doug Bandow | October 21, 2021</h4>
<h2a><a target="_blank" href="https://www.technocracy.news/shadowdragon-deep-social-media-dragnet-for-total-surveillance/">Shadowdragon: Deep Social Media Dragnet For Total Surveillance </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Technocracy News ~ Patrick Wood | September 22, 2021</h4>
<h2a><a target="_blank" href="https://www.dw.com/en/opinion-its-well-past-time-to-free-julian-assange/a-59637163">Opinion: It's well past time to free Julian Assange </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Deutsche Welle ~ Rebecca Vincent | October 27, 2021</h4>
<h2a><a target="_blank" href="https://www.strategic-culture.org/news/2021/10/28/israel-attack-iran-washington-gives-green-light-military-option/">Israel to Attack Iran? Washington Gives the Green Light to the ‘Military Option’ </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Strategic Culture ~ Philip Giraldi | October 28, 2021</h4>
<h2a><a target="_blank" href="https://archive.fo/oaOCm">The Obsolete Science Behind Roe v. Wade </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: The Wall Stree Journal ~ Grazie Pozo Christie | October 28, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/10/ira-katz/eugenics/">Eugenics </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Lew Rockwell ~ Ira Katz | October 28, 2021</h4>
<h2a><a target="_blank" href="https://americasfrontlinedoctors.org/2/frontlinenews/breaking-israeli-physicians-scientists-advise-fda-of-severe-concerns-regarding-reliability-and-legality-of-official-israeli-covid-vaccine-data/">Israeli physicians, scientists advise FDA of ‘severe concerns’ regarding reliability and legality of official Israeli COVID vaccine data </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: America's Frontline Doctors ~ Mordechai Sones | October 22, 2021</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/fda-panel-rubber-stamps-covid-injection-for-kids-5-11-never-gonna-learn-how-safe-the-vaccine-is-until-we-start-giving-it/">FDA Panel Rubber-Stamps Covid Injection For Kids 5-11: ‘Never Gonna Learn How Safe the Vaccine is Until We Start Giving It’ </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Jamie White | October 28, 2021</h4>
<h2a><a target="_blank" href="https://banned.video/watch?id=617874baee556118cff32551">[VIDEO] Respected Research Scientist Tested Pfizer’s Covid “Vax” Reaction to Fresh Human Blood under the Microscope, Oxygen Depleted within 1 minute </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: banned.video ~ Dr. Richard Flemming | October 26, 2021</h4>
<h2a><a target="_blank" href="https://www.newsmax.com/politics/nunes-grenell-dr-fauci-wuhan/2021/10/24/id/1041766/">Nunes, Grenell Call on DOJ to Prosecute Dr. Fauci for Wuhan Testimony </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Newsmax ~ Sandy Fitzgerald | October 24, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/faucis-house-horrors-nih-spent-16-million-taxpayer-funds-disturbing-toxic-brain-injection-experiments-monkeys-drilled-holes-skulls-implanted-devices-brain/">Fauci’s House of Horrors: NIH Spent 16+ Million in Taxpayer Funds on Disturbing ‘Toxic Brain Injection’ Experiments on Monkeys; “Drilled Holes in Their Skulls and Implanted Devices into the Brain” </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Julian Conradson | October 25, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-26-oregon-accidentally-leaks-vaccination-status-state-employees.html">Oregon government “accidentally” leaks vaccination status of 40,000 state employees </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | October 26, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/minnesota-surgeon-fired-speaking-mask-mandates-school-board-meeting/">Minnesota Surgeon Fired After Speaking Against Mask Mandates at School Board Meeting </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cassandra Fairbanks | October 28, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/10/joseph-mercola/secret-documents-reveal-fdas-attack-on-ivermectin/">Secret Documents Reveal FDA’s Attack on Ivermectin </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Lew Rockwell ~ Dr. Joseph Mercola | October 26, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/10/dr-igor-shepherd/the-backsliding-of-america/">The Backsliding of America </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Lew Rockwell ~ Dr. Igor Shepherd | October 26, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/china-tells-evergrande-billionaire-pay-off-insolvent-companys-300-billion-debt-8-billion-worth/">China Tells Evergrande Billionaire to Pay off His Insolvent Company’s $300 Billion in Debt with His $8 Billion in Worth </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Joe Hoft | October 26, 2021</h4>
<h2a><a target="_blank" href="https://www.strategic-culture.org/news/2021/10/26/pierre-teilhard-de-chardins-transhumanism-and-the-cult-of-the-fourth-industrial-revolution/">Pierre Teilhard de Chardin’s Transhumanism and the Cult of the Fourth Industrial Revolution </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Strategic Culture ~ Matthew Ehret | October 26, 2021</h4>
<h2a><a target="_blank" href="https://www.strategic-culture.org/news/2021/10/27/smart-cities-perfection-of-prison-grid-society/">Smart Cities: The Perfection of the Prison Grid Society </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Strategic Culture ~ Joaquin Flores | October 27, 2021</h4>
<h2a><a target="_blank" href="https://www.foxnews.com/politics/arizona-temporary-restraining-order-stop-biden-vaccine-mandate">Arizona seeks temporary restraining order to stop Biden vaccine mandate </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Fox News ~ Adam Shaw | October 22, 2021</h4>
<h2a><a target="_blank" href="https://www.washingtonexaminer.com/opinion/nih-admits-fauci-lied-about-funding-wuhan-gain-of-function-experiments">NIH admits Fauci lied about funding Wuhan gain-of-function experiments </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Washington Examiner ~ Tiana Lowe | October 20, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/political/ecohealth-throws-fauci-under-bus-over-wuhan-gain-function-report-researcher-claims">EcoHealth Throws NIH Under The Bus Over Wuhan Gain-Of-Function Report; Researcher Claims 'Massive Cover-Up' </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | October 24, 2021</h4>
<h2a><a target="_blank" href="https://www.authorea.com/users/414448/articles/522499-sars-cov-2-mass-vaccination-urgent-questions-on-vaccine-safety-that-demand-answers-from-international-health-agencies-regulatory-authorities-governments-and-vaccine-developers?commit=123b84611353b243b6d09320ac98cb07db022771">PREPRINT STUDY: SARS-CoV-2 mass vaccination: Urgent questions on vaccine safety that demand answers from international health agencies, regulatory authorities, governments and vaccine developers </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Authorea ~ Roxana Bruno et al. | May 24, 2021</h4>
<h2a><a target="_blank" href="https://www.newsmax.com/newsmax-tv/peter-navarro-inflation-economy-stagflation/2021/10/16/id/1040789/">Dr. Peter Navarro to Newsmax: Biden Brings '70s-Style 'Stagflation' </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: Newsmax ~ Sandy Fitzgerald | October 16, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/10/joseph-mercola/vaxxer-regime-has-a-real-problem-denying-natural-immunity/">Vaxxer Regime Has a Real Problem Denying Natural Immunity </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Lew Rockwell ~ Dr. Joseph Mercola | October 16, 2021</h4>
<h2a><a target="_blank" href="https://www.thelastamericanvagabond.com/63-percent-uk-covid-deaths-fully-vaccinated-cdc-doubles-down-unvaccinated-pandemic/">63% Of UK COVID Deaths Are “Fully Vaccinated” As CDC Doubles Down On “Pandemic Of The Unvaccinated” </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Last American Vagabond ~ Ryan Cristián | October 20, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-19-colin-powell-fully-vaccinated-died-from-covid.html">Fully vaccinated Colin Powell dies from COVID, raising new concerns about vaccine-induced immune suppression </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | October 19, 2021</h4>
<h2a><a target="_blank" href="https://www.bitchute.com/video/h8i07vqYinTx/">Young UK Girl - Don't Get the COVID Vaxx, My Grandad Died 2 Days After the Pfizer Vaxx </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: BitChute ~ MatrixRedPill | October 10, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/17-year-old-healthy-hockey-player-passes-away-canada-weeks-jab-father-devastated-loss/">17-Year-Old Healthy Hockey Player Passes Away in Canada Weeks After Jab — Father Is Devastated After Loss </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | October 24, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-19-fully-vaccinated-student-died-from-covid.html">Fully vaccinated 21-year-old student DIED from COVID-19 weeks after experiencing symptoms </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Zoey Sky | October 19, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/concerned-mother-wants-air-tv-ad-pfizers-dangerous-vaccine-daughter-severely-permanently-damaged-comcast-refuses-ad-last-minute/">Concerned Mother Wants to Air TV Ad on Pfizer’s Dangerous Vaccine After Daughter Is Severely and Permanently Damaged — But Comcast Refuses Ad at Last Minute </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | October 24, 2021</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/watch-seattle-police-officers-and-firefighters-turn-in-their-work-boots-over-covid-vaccine-mandate/">Seattle Police Officers And Firefighters Turn In Their Work Boots Over Covid Vaccine Mandate </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Kelen McBreen | October 19, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/unconstitutional-federal-vaccine-mandate/">The Unconstitutional Federal Vaccine Mandate </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Bronson Yake | October 24, 2021</h4>
<h2a><a target="_blank" href="https://odysee.com/@PressForTruth:4/Bill-Vander-Zalm-Exposing-Covid:6">Former Premier of BC BILL VANDER ZALM ON COVID-19(84) And The Push For GLOBAL COMMUNISM </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Press for Truth ~ Dan Dicks | October 18, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-22-top-8-ways-covid-face-masks-are-harmful.html">Top 8 ways Covid face masks are HARMFUL as analyzed by a physician and former medical journal editor </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ S.D. Wells | October 22, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/incredible-italian-city-disappears-thousands-anti-green-pass-protestors-city-live-stream-video/">Italian City Disappears Thousands of Anti-Green Pass Protestors on City’s Live-Stream Video </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Richard Abelson | October 24, 2021</h4>
<h2a><a target="_blank" href="https://www.bitchute.com/video/hjU4Bk9y4eG3/">[INTERVIEW] Summary of what we now know is True - Famous lawyer Dr. Reiner Fuellmich </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: BitChute ~ United Health Alliance (UHA) | October 17, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/faucis-evil-heartless-doctors-policies-replicated-globally-cause-10000-children-deaths-per-month-drove-97-million-extreme-poverty/">Government COVID restrictions have led to "mass hunger, killing 10,000 children a month, UN warns" </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | October 11, 2011</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-11-washington-schools-no-drinking-water-covid.html#">Students at Washington, D.C. schools left without clean drinking water due to COVID-19 policies </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Cassie B | October 11, 2011</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/massachusetts-governor-activates-national-guard-test-school-children-covid/">Anti-science and Pro-child-abuse Governor of MA orders National Guard to jab long thing objects up the noses of children with ZERO scientific justification </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | October 12, 2021</h4>
<h2a><a target="_blank" href="https://www.bitchute.com/video/wOu0OUb3BrJD/">[VIDEO] Best Concise Explanation of Covert Bioweapon Agenda by Dr. McDowell in Trinidad </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Sarah Westall ~ Dr. Michael McDowell | October 11, 2011</h4>
<h2a><a target="_blank" href="https://childrenshealthdefense.org/defender/against-wind-paul-thomas-pamela-popper-christopher-shaw-covid-vaccine-injury-kids/">Teens More Likely to Be Injured by Vaccines Than by COVID, Neuroscientist Says </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Defender ~ Children's Health Defense Team | October 13, 2021</h4>
<h2a><a target="_blank" href="https://americasfrontlinedoctors.org/2/frontlinenews/former-pfizer-vp-clear-evidence-of-fraud-in-pfizer-study-claiming-95-efficacy/">Former Pfizer VP: ‘Clear evidence of fraud’ in Pfizer study claiming 95% efficacy </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: America's Frontline Doctors ~ Mordechai Sones | September 30, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-12-chi-memorial-hospital-memory-holes-tiffany-dover.html">CHI Memorial Hospital in Tennessee memory-holes Tiffany Dover, the nurse who passed out on live television after getting early covid “vaccine” </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | October 12, 2021</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/news/no-vax-no-transplant-two-ohio-hospitals-ban-release-new-policy/">No jab, no transplant: Two Ohio hospitals ban unvaccinated from receiving life-saving organs </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Defender ~ Matt Lamb | October 13, 2021</h4>
<h2a><a target="_blank" href="https://thenationalpulse.com/exclusive/yikes-fresh-fauci-e-mails-show-niaid-chief-wifes-flippancy-over-vaccine-deaths-more-interested-in-immortalizing-him/">“YIKES”: Fresh Fauci E-Mails Show NIAID Chief & Wife’s Flippancy Over Vaccine Deaths, More Interested in “Immortalizing” Him. </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The National Pulse ~ Natalie Winters and Raheem Kassam | October 13, 2021</h4>
<h2a><a target="_blank" href="https://childrenshealthdefense.org/defender/dr-patricia-lee-fda-cdc-vaccine-related-injuries/">Physician to FDA, CDC: In 20 Years of Practicing Medicine, ‘I’ve Never Witnessed So Many Vaccine-Related Injuries’ </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Defender ~ Children's Health Defense Team | October 13, 2021</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/news/canadian-university-faculty-members-students-pen-open-letter-opposing-draconian-vaccine-mandates/">Canadian university faculty members, students pen open letter opposing draconian vaccine mandates </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: LifeSite News ~ Jack Bingham | August 30, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/10/joachim-hagopian/elites-depopulation-agenda-is-now-irrefutable/">Elite’s Depopulation Agenda Is Now Irrefutable </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Global Research ~ Joachim Hagopian | October 13, 2021</h4>
<h2a><a target="_blank" href="https://www.strategic-culture.org/news/2021/10/13/behind-natos-cognitive-warfare-battle-for-your-brain-waged-by-western-militaries/">Behind NATO’s ‘Cognitive Warfare’: ‘Battle for Your Brain’ Waged by Western Militaries </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Strategic Culture Foundation ~ Ben Norton | October 13, 2021</h4>
<h2a><a target="_blank" href="https://allnewspipeline.com/Governments_Will_Fall_Over_COVID_Lies.php">Catastrophic Consequences Must Await Those Who Lied To The World To Usher In Medical Tyranny While Enriching The 'Big Pharma Mafia' Beyond Their Wildest Dreams </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: All News Pipeline ~ Don Boys Ph.D. | October 13, 2021</h4>
<h2a><a target="_blank" href="https://freebeacon.com/coronavirus/who-taps-lab-leak-denier-to-invesitgate-covid-origins/">WHO Taps Lab Leak Denier To Investigate COVID Origins </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Washington Free Beacon ~ Chuck Ross | October 14, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-11-no-state-legislatures-passed-covid-vaccine-mandates.html#">Not even ONE state legislature has passed a covid vaccine mandate – it’s all rogue governors and local officials doing the dirty work </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | October 11, 2011</h4>
<h2a><a target="_blank" href="https://bigleaguepolitics.com/ron-paul-confidant-explains-how-a-silent-secession-is-taking-place-to-restore-freedom-across-america/">Daneil McAdams, Ron Paul's co-host Explains How a ‘Silent Secession’ is Taking Place to Restore Freedom Across America </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Big League Politics ~ Shane Trejo | October 15, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/illegal-religious-texts-apple-removes-quran-bible-apps-china-request-govt-officials/">‘Illegal Religious Texts’ – Apple Removes Quran and Bible Apps in China at the Request of Govt Officials </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | October 16, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/defund-media-anti-vax-mandate-protesters-gather-outside-new-york-times-building-video/">“Defund the Media!” – Anti-Vax Mandate Protesters Gather Outside New York Times Building </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | October 16, 2021</h4>
<h2a><a target="_blank" href="https://newsbusters.org/blogs/nb/kristine-marsh/2021/10/15/uptight-atlantic-writer-tries-shame-babylon-bee-mocking-woke">Uptight Atlantic Writer Tries to Shame Babylon Bee for Mocking Woke Left </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: mrcNewsBusters ~ Kristine Marsh | October 15, 2021</h4>
<h2a><a target="_blank" href="https://newsbusters.org/blogs/nb/tim-graham/2021/10/15/newsbusters-podcast-nets-ignoring-climate-clashes-and-hunter-bidens">NewsBusters Podcast: Nets Ignoring Climate Clashes and Hunter Biden's Cash-Ins </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: mrcNewsBusters ~ Tim Graham | October 15, 2021</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/news/mark-zuckerberg-bought-2020-election-for-biden-with-staggering-funding-new-analysis-suggests/">Mark Zuckerberg ‘bought’ 2020 election for Biden with ‘staggering’ funding, new analysis suggests </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: LifeSite News ~ Raymond Wolfe | October 15, 2021</h4>
<h2a><a target="_blank" href="https://amgreatness.com/2021/10/10/the-left-got-what-it-wanted-so-now-what/">The Left Got What It Wanted - So Now What? </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: American Greatness ~ Victor Davis Hanson | October 10, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-15-survivor-maos-cultural-revolution-warns-american-left-moving-same-direction.html">Mother who managed to survive Mao’s “Cultural Revolution” warning that she sees the American left moving in the same direction </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | October 15, 2021</h4>
<h2a><a target="_blank" href="https://www.westernjournal.com/bidens-america-mom-cuffed-dragged-daughters-hospital-bed-breaking-covid-rules/">Biden's America: Mom Cuffed, Dragged from Daughter's Hospital Bed After Breaking COVID Rules </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Western Journal ~ Kipp Jones | October 15, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-15-imbd-rotten-tomatoes-faking-ratings-fauci-documentary.html">IMBD, Rotten Tomatoes both caught FAKING ratings score for Fauci documentary </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | October 15, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/german-court-finds-youtubes-removal-videos-covid-illegal-youtube-must-restore-videos/">German Court Finds YouTube’s Removal of Videos About COVID Was Illegal and YouTube Must Restore the Videos </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Joe Hoft | October 14, 2021</h4>
<h2a><a target="_blank" href="https://harbingersdaily.com/cancel-culture-failure-prof-booted-from-mit-lecture-draws-thousands-for-alternative-online-speech/">Cancel Culture Failure: Prof Booted From MIT Lecture Draws ‘Thousands’ For Alternative Speech </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Harbingers Daily ~ HD Editor’s Note | October 12, 2021</h4>
<h2a><a target="_blank" href="https://www.strategic-culture.org/news/2021/10/13/china-says-us-china-war-is-imminent/">China Says U.S.-China War Is Imminent </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Strategic Culture Foundation ~ Eric Zuesse | October 13, 2021</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/news/744314/">Vaccine pioneer says rules ‘don’t apply’ to unaccountable, ‘corrupt’ Fauci, FDA </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: LifeSite News ~ Celeste McGovern | October 13, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/10/dr-igor-shepherd/covid-19-a-psychological-military-operation-part-i/">Covid-19: A Psychological Military Operation, Part I </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Lew Rockwell ~ Dr. Igor Shephard | October 13, 2021</h4>
<h2a><a target="_blank" href="https://www.thelastamericanvagabond.com/jimmy-dore-interview-shifting-political-landscape-covid-19-deception/">Jimmy Dore Interview – The Shifting Political Landscape Of The COVID-19 Deception </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Last American Vagabond ~ Ryan Cristián | October 13, 2021</h4>
<h2a><a target="_blank" href="https://www.thelawyersdaily.ca/articles/29969/no-right-to-accommodation-under-rights-code-for-unvaccinated-based-on-preference-ohrc">Canadaian Province denies Human Rights Exemptions to to the Unvaccinated for Refusting Experimental Gene Therapy Injections </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Lawyer's Daily ~ Amanda Jerome | September 22, 2021</h4>
<h2a><a target="_blank" href="https://www.judicialwatch.org/press-releases/new-fauci-emails/?utm_source=twitter&utm_medium=social&utm_campaign=press_release">Judicial Watch: New Fauci Agency COVID Emails Detail Discussions about Wuhan Institute; Describe Gates Foundation Placement of Chinese Representatives on ‘Important International Counsels’ </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Judicial Watch ~ Judicial Watch | August 25, 2021</h4>
<h2a><a target="_blank" href="https://www.dailymail.co.uk/news/article-10070093/Joe-Biden-Hunters-shared-bank-accounts-make-president-target-FBI-probe.html">Emails reveal Joe Biden and Hunter Biden SHARED bank accounts, paid each other's bills... </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Daily Mail ~ Josh Boswell | October 12, 2021</h4>
<h2a><a target="_blank" href="https://greatgameindia.com/facebook-secret-blacklist/">100 Pages Of Leaked Facebook’s Secret Blacklist Of ‘Dangerous Individuals And Organizations’ </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Great Game India ~ Great Game India | October 13, 2021</h4>
<h2a><a target="_blank" href="https://survival.news/2021-10-11-homestead-must-haves-solar-batteries-off-grid.html#">Homestead must-haves: The best solar batteries for off-grid use </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Survival.news ~ Virgilio Marin | October 11, 2021</h4>
<h2a><a target="_blank" href="https://survival.news/2021-10-12-survival-tips-elderly-before-bugging-out.html#">Survival tips for the elderly: What to prep before bugging out </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: Survival.news ~ Zoey Sky | October 12, 2021</h4>
<h2a><a target="_blank" href="https://newsbusters.org/blogs/free-speech/autumn-johnson/2021/10/13/kowtowing-snowflakes-facebook-remove-content-bullies">Facebook to Remove Content that Bullies Celebs, Politicians, Journalists </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: News Busters ~ Autumn Johnson | October 13, 2021</h4>
<h2a><a target="_blank" href="https://greatgameindia.com/ai-war-pentagon/">US Has Lost AI War To China Says Former Pentagon Software Chief </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Great Game India ~ Great Game India | October 13, 2021</h4>
<h2a><a target="_blank" href="https://m.theepochtimes.com/which-war-is-beijing-preparing-for_4039434.html?utm_source=partner&utm_campaign=ZeroHedge">Which War Is Beijing Preparing For? Will China trigger an Asia–Pacific war over Taiwan—or is there another, more strategic plan afoot? </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: The Epoch Times ~ James Gorrie | October 10, 2021</h4>
<h2a><a target="_blank" href="https://brownstone.org/articles/natural-immunity-and-covid-19-twenty-nine-scientific-studies-to-share-with-employers-health-officials-and-politicians/">Natural Immunity and Covid-19: Twenty-Nine Scientific Studies to Share with Employers, Health Officials, and Politicians </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Brownstone Institute ~ Brownstone Institute | October 10, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/update-denver-police-officer-reluctantly-took-jab-lost-ability-walk-now-hospitalized-possible-stroke/">Denver Police Officer Who Reluctantly Took the Jab Then Lost His Ability to Walk Is Now Hospitalized with Possible Stroke </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | October 11, 2021</h4>
<h2a><a target="_blank" href="https://thenewamerican.com/shocking-allegation-disgraced-politician-was-blackmailed-by-big-pharma-interests-to-impose-vaccine-mandate/">Disgraced Politician Was Blackmailed by Big Pharma Interests to Impose “Vaccine” Mandate </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The New American ~ Selwyn Duke | October 9, 2021</h4>
<h2a><a target="_blank" href="https://freebeacon.com/national-security/chinese-hackers-breached-afghan-telecom-company-as-us-withdrew/">Chinese Hackers Breached Afghan Telecom Company As US Withdrew </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: The Washington Free Beacon ~ Santi Ruiz | October 9, 2021</h4>
<h2a><a target="_blank" href="https://thepostmillennial.com/colorado-state-university-threatens-to-arrest-unvaccinated-students">Colorado State University threatens to arrest unvaccinated students </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Post Millenial ~ Katie Daviscourt | October 10, 2021</h4>
<h2a><a target="_blank" href="https://gnews.org/1585763/">British Mainstream Media Paves the Way for the Coming Winter Death Wave Induced by Poisonous Vaccine Jabs </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: GNews ~ GTV新闻访谈 | October 10, 2021</h4>
<h2a><a target="_blank" href="https://greatgameindia.com/afghan-minister-mansion-beverly-hills/">Son Of Former Afghan Defense Minister Buys $20 Million Mansion In Beverly Hills </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Great Game India ~ Great Game India | October 9, 2021</h4>
<h2a><a target="_blank" href="https://survival.news/2021-10-08-minimum-calories-needed-for-survival.html#">Food supply 101: Minimum calories needed for survival </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: Survival News ~ Divina Ramirez | October 8, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-11-francis-collins-lied-treason-media-refuses-report.html">NIH director Francis Collins lied and committed treason, but the media refuses to report it </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | October 11, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-11-fda-exposed-criminal-body-parts-cartel-organs-from-living-human-babies.html">FDA exposed as a criminal body parts cartel involved in routine harvesting of organs from LIVING human babies </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Natural News ~ Lance D Johnson | October 11, 2021</h4>
<h2a><a target="_blank" href="https://www.justice.gov/opa/pr/maryland-nuclear-engineer-and-spouse-arrested-espionage-related-charges">Maryland Nuclear Engineer and Spouse Arrested on Espionage-Related Charges </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Deparment of Justice ~ Office of Public Affairs | October 10, 2021</h4>
<h2a><a target="_blank" href="https://humboldtfc.com/project/petition-against-requiring-proof-of-receiving-covid-19-vaccine-to-enter-indoor-spaces-and-businesses-in-humboldt-county-california/">Petition Against Requiring Proof of receiving COVID-19 Vaccine to enter indoor spaces and businesses in Humboldt County California, READ the well documented reasons below the petition </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Humboldt Freedom Coalition ~ Humboldt Freedom Coalition | October 1, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-10-lebanon-plunged-into-darkness-india-faces-rolling-blackouts-nyc-pharmacy-shelves-bare.html">Lebanon plunged into darkness, India faces rolling blackouts, NYC pharmacy shelves BARE as global collapse accelerates, leading to rolling blackouts across the USA </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Natural News ~ Mke Adams | October 10, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-10-ucla-off-campus-students-online-vaccinated-covid.html">UCLA now requiring off-campus students taking ONLINE classes to get “vaccinated” for covid </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | October 10, 2021</h4>
<h2a><a target="_blank" href="https://www.rt.com/usa/537090-newsom-delaying-daugher-vaccination/">California’s Newsom faces criticism after admitting 12yo daughter not jabbed amid own push for vaccine mandate for kids </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: RT ~ RT | October 10, 2021</h4>
<h2a><a target="_blank" href="https://thefederalist.com/2021/10/04/public-officials-silent-about-allegations-of-nazi-level-experiments-at-the-university-of-pittsburgh/">Public Officials Silent About Allegations Of Nazi-Level Experiments At The University Of Pittsburgh </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: The Federalist ~ Cheryl Allen | October 4, 2021</h4>
<h2a><a target="_blank" href="https://vaersanalysis.info/2021/10/01/vaers-summary-for-covid-19-vaccines-through-9-24-2021/">VAERS Summary for COVID-19 Vaccines through 9/24/2021 </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: VAERS Analysis ~ VAERS Analysis | October 1, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-06-vast-majority-delta-variant-deaths-fully-vaccinated.html">Vast majority of delta variant deaths occurring in the “fully vaccinated” </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | October 6, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/explosive-video-emerges-fauci-hhs-officials-plotting-new-avian-flu-virus-enforce-universal-flu-vaccination-video/">Video Emerges of Fauci and HHS Officials Postulating in Public about a ‘A New Avian Flu Virus’ to Enforce Universal Untested Flu Vaccination </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | October 6, 2021</h4>
<h2a><a target="_blank" href="https://thenationalpulse.com/exclusive/wuhan-lab-journal-published-pla-studies/">Wuhan Lab Journal Edited By U.S. Officials, Published Dozens Of Studies From China’s Military </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The National Pulse ~ Natalie Winters | October 3, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-09-medical-journals-censoring-scientists-robert-malone.html#">Medical journal blocks Dr. Robert Malone from reading it… scientists who don’t parrot fake vaccine science now BLOCKED </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | October 9, 2021</h4>
<h2a><a target="_blank" href="https://www.paulcraigroberts.org/2021/10/05/western-governments-have-proven-their-complicity-in-the-destruction-of-their-own-peoples/">Western Governments Have Proven Their Complicity in the Destruction of their Own Peoples </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Paul Craig Roberts Institute for Political Economy ~ Dr. Paul Craig Roberts | October 5, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/10/vasko-kohlmayer/deliberate-deception-vaccines-peddlers-must-have-known-the-vaccines-wouldnt-work/">Deliberate Deception: Vaccines Peddlers Must Have Known the Vaccines Wouldn’t Work </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Lew Rockwell ~ Vasko Kohlmayer | October 6, 2021</h4>
<h2a><a target="_blank" href="https://www.globalresearch.ca/selected-articles-health-officials-know-vaccines-dont-stop-transmission-talk-about-pandemic-unvaccinated/5757226">Selected Articles: Health Officials Know Vaccines Don’t Stop Transmission but Talk About ‘A Pandemic of the Unvaccinated’ </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Global Research ~ Vasko Kohlmayer | September 29, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/prominent-doctor-misled-catholics-aborted-baby-body-parts-pfizer-covid-vaccine-video/">Prominent Doctor Misled Catholics on Aborted Baby Body Parts in the Pfizer COVID Vaccine </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | October 7, 2021</h4>
<h2a><a target="_blank" href="https://childrenshealthdefense.org/defender/fda-regulatory-capture-revolving-door-jobs/">Think the FDA is looking out for your health? History tells a different story. </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Defender ~ Children's Health Defense Team | October 6, 2021</h4>
<h2a><a target="_blank" href="https://www.foxbusiness.com/lifestyle/fda-sanitzer-warning-cancer-chemicals-recall">FDA says hand sanitizer brand may be contaminated with cancerous chemicals </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: FOX Business ~ Daniella Genovese | October 6, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/covid-tyranny-health-dept-gets-court-order-force-healthy-unvaccinated-wisconsin-high-school-student-quarantine-guard-despite-previous-infection/">COVID Tyranny: Health Dept. Gets Court Order to Force Healthy Unvaccinated Wisconsin High School Student Into Quarantine Under Guard Despite Previous Infection </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Kristinn Taylor | October 6, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-06-dianne-feinstein-bill-covid-vaccination-fly-domestically.html">Dianne Feinstein unveils bill to require covid vaccinations in order to fly domestically </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | October 6, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/watch-16-year-old-wyoming-student-arrested-not-wearing-mask-entire-school-placed-lockdown/">16-Year-Old Wyoming Student Arrested for Not Wearing Mask, Entire School Placed on Lockdown </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cassandra Fairbanks | October 10, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/covid-19/lithuanian-without-vaccine-pass-describes-life-under-medical-tyranny">"So Deeply, Deeply Wrong" - Lithuanian Without Vaccine Pass Describes Life Under Medical Tyranny </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | October 9, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-07-covid-bidens-vaccine-mandate-for-employers-was-a-bluff-osha.html">Turns out Biden’s vaccine mandate for employers was a bluff; no idea when or if OSHA will ever issue rule </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | October 7, 2021</h4>
<h2a><a target="_blank" href="https://www.unz.com/runz/is-the-tide-finally-turning-on-covid-as-an-american-biowarfare-attack/">Is the Tide Finally Starting to Turn on Covid as an American Biowarfare Attack? </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Unz Review ~ Ron Unz | October 4, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-08-facebook-whistleblower-cia-psyop-ties.html">Was Facebook whistleblower just a CIA PSYOP? Haugen’s attorney is former intelligence officer with ties to Trump-Ukraine impeachment, Hillary Clinton, Chuck Schumer </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Natural News ~ JD Heyes | October 8, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/geopolitical/china-warns-cataclysmic-upheaval-relations-after-former-aussie-pm-gives-fiery-speech">China Threatens "Cataclysmic Upheaval" In Relations After Former Aussie PM Gives Fiery Speech In Taiwan </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | October 8, 2021</h4>
<h2a><a target="_blank" href="https://www.dailymail.co.uk/news/article-10063171/China-warns-World-War-Three-triggered-time.html">China warns World War Three could be triggered 'at any time' after it sent dozens of warplanes into Taiwan's airspace as Big Lizzie joins TWO US carriers and Japanese warships in huge Philippine sea exercise </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Daily Mail ~ Chris Jewers and Ross Ibbetson | October 5, 2021</h4>
<h2a><a target="_blank" href="https://www.bitchute.com/video/L3FlC0gG7kn5/">[VIDEO] Pandora Papers and Vaccine Mandate Legal Battle </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: BitChute ~ The Duran | October 5, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/technology/hackers-own-jeff-bezos-stealing-publishing-twitch-source-code-huge-hack">Hackers "Own" Jeff Bezos By Stealing & Publishing Twitch Source Code In "Huge" Hack </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | October 6, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/begins-federal-investigators-issuing-warrants-google-turn-anyone-typing-certain-search-terms/">It Begins: Federal Investigators Are Issuing Warrants for Google to Turn Over Anyone Typing in Certain Search Terms </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | October 5, 2021</h4>
<h2a><a target="_blank" href="https://onlinelibrary.wiley.com/doi/abs/10.1002/eji.202149535">Persistence of neutralizing antibodies a year after SARS-CoV-2 infection in humans </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: European Journal of Immunology ~ Anu Haveri et al. | September 27, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-09-29-australia-directory-support-businesses-unvaccinated-customers.html#">New “Open For All” business directory helps Australians support businesses that allow unvaccinated customers </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Cassie B. | September 29, 2021</h4>
<h2a><a target="_blank" href="https://thewallwillfall.org/2021/08/24/we-deserve-to-live-as-human-beings/">We deserve to live as human beings </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Wall Will Fall ~ Vanessa Beeley | August 24, 2021</h4>
<h2a><a target="_blank" href="https://www.thelastamericanvagabond.com/study-finds-covid-jab-increases-risk-infection-first-20-days-natural-immunity-passport-ploy/">Study Finds COVID Jab Increases Risk Of Infection For First 20 Days & Natural Immunity Passport Ploy </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Last American Vagabond ~ Ryan Cristián | October 3, 2021</h4>
<h2a><a target="_blank" href="https://theexpose.uk/2021/09/18/fully-vaccinated-account-for-74-percent-of-covid-19-deaths-in-the-uk/">Fully vaccinated account for a huge 74% of Covid-19 deaths in the UK summer wave according to latest Public Health England report </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Expose ~ Daily Expose | September 18, 2021</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/sheriffs-office-attributes-california-teens-death-to-second-pfizer-jab/">Sheriff’s Office Attributes California Teen’s Death to Second Pfizer Jab </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Adan Salazar | October 5, 2021</h4>
<h2a><a target="_blank" href="https://www.lifesitenews.com/news/ontario-top-doc-young-men-more-likely-to-have-heart-problems-after-moderna-shot/">Ontario top doc: Young men more likely to have heart problems after Moderna shot </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: LifeSite ~ Matt Lamb | September 30, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/vaccinated-also-covid-spread-entire-family-cnbc-host-grills-fauci-vaccine-breakthrough-cases-video/">“I’m Vaccinated, But I Also Have Covid – And it Spread Through My Entire Family!” – CNBC Host Grills Fauci on Vaccine ‘Breakthrough’ Cases </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | October 2, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-09-30-australian-indigenous-elder-dead-after-pfizer-vaccine.html">Bevan Costello: 65-year-old Australian indigenous elder receives second Pfizer mRNA injection during televised event, dead six days later </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ News Editors | September 30, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/09/former-notre-dame-professor-said-damn-unvaccinated-dies-two-weeks-receiving-3rd-covid-shot/">Former Notre Dame Professor Who Said, “Damn the Unvaccinated” Dies Two Weeks After Receiving 3rd Covid Shot </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | September 29, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-09-30-harvard-business-school-shuts-down-covid-outbreak.html">Almost fully vaccinated Harvard Business School shuts down after massive COVID-19 outbreak </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Arsenio Toledo | September 30, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-09-28-blm-nyc-vaccine-requirements-racist-uprising.html">Black Lives Matter NYC calls city’s vaccine requirements racist, vows “uprising” against it </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Arsenio Toledo | September 28, 2021</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/disgraced-nih-director-francis-collins-to-resign-after-wuhan-lab-lies-exposed/">Disgraced NIH Director Francis Collins To Resign After Wuhan Lab Lies Exposed </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Kelen McBreen | October 5, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/pandora-papers-left-wing-media-tool-soros-dumb-notice/">“Pandora Papers”: The Mainstream Media are a Tool for Soros and They’re Too Dumb to Notice </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Richard Abelson | October 5, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-09-30-youtube-purges-those-who-tell-truth-about-vaccines.html">YouTube purges Robert F. Kennedy Jr., Dr. Joseph Mercola and a wide range of experts who aren’t afraid to tell the truth about vaccines </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Natural News ~ Lance D Johnson | September 30, 2021</h4>
<h2a><a target="_blank" href="https://news.yahoo.com/kidnapping-assassination-and-a-london-shoot-out-inside-the-ci-as-secret-war-plans-against-wiki-leaks-090057786.html?link_id=0&can_id=4bf1a92389a3c371e25a415d7200903e&source=email-breaking-cia-white-house-sketched-plans-to-kidnap-or-kill-julian-assange&email_referrer=email_1304504&email_subject=breaking-cia-white-house-sketched-plans-to-kidnap-or-kill-julian-assange">Kidnapping, assassination and a London shoot-out: Inside the CIA's secret war plans against WikiLeaks </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Yahoo News ~ Zach Dorfman, Sean D. Naylor and Michael Isikoff | September 26, 2021</h4>
<h2a><a target="_blank" href="https://www.bloomberg.com/news/articles/2021-09-29/china-hidden-local-government-debt-is-half-of-gdp-goldman-says">China’s Local Governments Have ‘Hidden’ Debt Estimated at $8 Trillion or Nearly Half of the Country’s GDP </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: Bloomberg ~ Bloomberg News | September 28, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/covid-19/china-placed-massive-order-pcr-tests-months-first-official-covid-case">China Placed Massive Order For PCR Tests Months Before First Official COVID Case </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | October 4, 2021</h4>
<h2a><a target="_blank" href="https://rairfoundation.com/former-president-of-vatican-bank-covid-is-device-for-great-reset-video/">Former President of Vatican Bank: Covid is Device for 'Great Reset' (Video) </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: RAIR Foundation ~ Haley Kennington | October 2, 2021</h4>
<h2a><a target="_blank" href="https://thenationalpulse.com/exclusive/ny-hate-crime-board-features-ccp-advisor-and-xi-fan/">NYPD ‘Hate Crime’ Task Force Includes Chinese Regime Propagandist Who Says Xi Jinping Is ‘Doing A Good Job.’ </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: The National Pulse ~ Natalie Winters | September 30, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/political/bidens-top-banking-nominee-earned-lenin-award-praised-ussr-and-wants-eliminate-banks-shed">Biden's Nominee For Top Bank Regulator Earned "Lenin" Award, Praised USSR's "Equality", And Wants To "End Banking As We Know It" </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | September 30, 2021</h4>
<h2a><a target="_blank" href="https://www.westernjournal.com/watch-crowd-erupts-boos-biden-shows-congressional-baseball-game/">Watch: Crowd Erupts in Boos When Biden Shows Up at Congressional Baseball Game, But He Got More Votes than Obama and Trump! </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Western Journal ~ Elizabeth Stauffer | September 30, 2021</h4>
<h2a><a target="_blank" href="https://www.privacyaffairs.com/facebook-data-sold-on-hacker-forum/">Web Scrapers Claim to Possess and Sell Personal Data on 1.5 Billion Facebook Users on a Hacker Forum </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Private Affairs ~ Miklos Zoltan | October 6, 2021</h4>
<h2a><a target="_blank" href="https://www.thelastamericanvagabond.com/authoritarianism-new-democracy-bmj-exposes-natural-immunity-obfuscation-vaxed-definition/">Authoritarianism Is The New “Democracy”, BMJ Exposes Natural Immunity Obfuscation & Vaxed Definition </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Last American Vagabond ~ Ryan Cristián | October 1, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-01-ai-powered-dod-data-analysis-program-project-salus-shows-ade-accelerating-fully-vaccinated.html">AI-powered DoD data analysis program named “Project Salus” SHATTERS official vaccine narrative, shows A.D.E. accelerating in the fully vaccinated with each passing week </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Mike Adams | October 1, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-03-australian-aboriginal-dies-six-days-after-second-dose-pfizer-vaccine.html">Australian aboriginal dies six days after second dose of Pfizer vaccine, sending shock waves through the indigenous community </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Lance D Johnson | October 3, 2021</h4>
<h2a><a target="_blank" href="https://sputniknews.com/20210930/antibodies-in-fully-vaxxed-with-pfizer-astrazeneca-decline-steeply-after-several-months--study-1089538608.html">Antibodies in Fully Vaxxed With Pfizer, AstraZeneca Decline Steeply After Several Months – Study </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Sputnik ~ Igor Kuznetsov | September 30, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-02-pfizer-vax-more-likely-to-get-covid.html">‘If you get the Pfizer vax, you’re more likely to get COVID’: Industry analyst flags FDA study </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ News Editors | October 2, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-01-dangerous-mistake-covid-flu-shot.html">Dangerous mistake: 4-year-old accidentally given COVID-19 vaccine instead of flu shot </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Cassie B. | October 1, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/10/paul-craig-roberts/we-are-being-lied-to-our-deaths/">We Are Being Lied to Our Deaths </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Lew Rockwell ~ Dr. Paul Craig Roberts | October 1, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/pure-evil-twitter-slaps-misleading-label-familys-obituary-young-37-year-old-mother-died-covid-vaccine/">Twitter Slaps “Misleading” Label on Family’s Obituary of Young 37-Year-Old Mother Who Died from COVID Vaccine </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | October 3, 2021</h4>
<h2a><a target="_blank" href="https://www.thedailybell.com/all-articles/news-analysis/covid-19-detention-camps-are-government-round-ups-of-resistors-in-our-future/">COVID-19 Detention Camps: Are Government Round-Ups of Resistors in Our Future? </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Daily Bell ~ John W. Whitehead | September 30, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-01-vaccinated-people-beginning-to-side-with-unvaxxed.html">Vaccinated people beginning to side with the unvaxxed amid civil rights emergency </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ News Editors | October 1, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-03-nyc-vaccine-mandate-racist.html">BLM leader says NYC vaccine mandate is racist, likens it to “modern-day freedom papers” </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Cassie B. | October 3, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/nearly-two-million-israelis-havent-booster-shot-will-lose-quarantine-exemption/">Nearly Two Million Israelis Who Haven’t Had Their Booster Shot Will Lose Quarantine Exemption </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | October 3, 2021</h4>
<h2a><a target="_blank" href="https://www.americanthinker.com/blog/2021/09/oregons_statistics_highlight_the_folly_behind_mask_mandates.html">Oregon's statistics highlight the folly behind mask mandates </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: American Thinker ~ Andrea Widburg | September 24, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/political/california-becomes-first-state-require-students-be-vaccinated-attend-school">California Becomes First State To Require Students Be Vaccinated To Attend School </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | October 1, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/former-australian-member-parliament-says-pfizer-astrazeneca-paid-lobbyists-direct-australias-leaders-push-vaccine-mandates-video/">Former Australian Member of Parliament Says Pfizer and AstraZeneca Paid Lobbyists to Direct Australia’s Leaders to Push Vaccine Mandates </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | October 2, 2021</h4>
<h2a><a target="_blank" href="https://principia-scientific.com/fauci-knew-about-hcq-in-2005-nobody-needed-to-die/">Fauci Knew About HCQ In 2005 – Nobody Needed To Die </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Principia Scientific International ~ Bryan Fischer | May 5, 2020</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-02-covid-plandemic-schemed-far-back-911.html#">COVID-19 Enterprise Fraud Construct Timeline: Major Dates, Events, Entities & Legislation </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | October 2, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-03-those-who-already-caught-covid-zero-reasons-to-get-vaccine.html">For people who already caught Covid and beat it, there are ZERO reasons to get a Covid vaccine, and ZERO reasons that the US government should force it on them </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ S.D. Wells | October 3, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-02-red-states-should-offer-sanctuary-to-businesses.html">We will not comply: Red states should offer sanctuary to businesses, military and medical personnel </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Natural News ~ News Editors | October 2, 2021</h4>
<h2a><a target="_blank" href="https://www.rt.com/news/536456-france-sexual-abuse-report/">‘Most absolute of evils’: Investigation estimates up to 3,200 pedophile priests in French Catholic Church since 1950 </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: RT ~ RT | October 3, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-03-nbc-contributor-attempts-to-normalize-pedophilic-thoughts.html">NBC contributor becomes spokesman for murky organization, attempts to ‘normalize’ pedophilic thoughts </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Natural News ~ News Editors | October 3, 2021</h4>
<h2a><a target="_blank" href="https://karlstack.substack.com/p/whistleblower-emails-reveal-partisan">Whistleblower emails reveal partisan rot at Ford Foundation, that gets "nonpartisan" tax perks </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: SubStack ~ Chris | September 22, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/technology/what-fk-video-secret-stealth-aircraft-goes-viral">Video Of Secret Stealth Aircraft Goes Viral </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | October 2, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/geopolitical/russia-becomes-first-country-ban-scientology-threat-national-security">Russia Becomes First Country To Ban Scientology As A "Threat To National Security" </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | October 2, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-10-01-is-china-on-verge-total-economic-collapse.html">Is China on the verge of total economic collapse? </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | October 1, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/10/no_author/there-are-positive-developments-on-the-ground-in-syria-but-for-america-its-sanctions-and-suffering-as-usual/">There Are Positive Developments on the Ground in Syria, But for America It's Sanctions and Suffering as Usual </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: RT News ~ Eva Bartlett | October 1, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/10/pathetic-white-house-dubs-love-joe-chant-video-congressional-ballgame-appearance-make-biden-seem-popular/">Pathetic: White House Dubs Fake “We Love Joe!” Chant in Video of Congressional Ballgame Appearance to Make Biden Seem Popular, Crowd actually said "F**k Joe Biden" </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Kristinn Taylor | October 3, 2021</h4>
<h2a><a target="_blank" href="https://thepostmillennial.com/who-employees-involved-in-rape-sexual-abuse-in-congo-during-ebola-crisis-report">WHO employees involved in rape, sexual abuse in Congo during Ebola crisis: report </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: The Post Millenial ~ Nick Monroe | September 28, 2021</h4>
<h2a><a target="_blank" href="https://www.sciencedirect.com/science/article/pii/S221475002100161X">NEW STUDY: Why are we vaccinating children against COVID-19? </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: ScienceDirect ~ Ronald N. Kostoff et al. | September 14, 2021</h4>
<h2a><a target="_blank" href="https://creativedestructionmedia.com/uncategorized/2021/09/24/breaking-big-data-poll-shows-vaccine-severe-adverse-affects-more-often-in-young-blacks-and-women/">Big Data Poll Shows Vaccine Severe Adverse Affects More Often In Young, Blacks, And Women </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Creative Destruction Media ~ CD Media Staff | September 24, 2021</h4>
<h2a><a target="_blank" href="https://www.wnd.com/2021/09/every-parent-must-know-pfizer/">What every parent must know about Pfizer </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: WND ~ Michelle Malkin | September 28, 2021</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/unvaccinated-students-told-to-wear-different-coloured-wristbands-so-they-can-be-identified/">Unvaccinated Students Told to Wear Different Coloured Wristbands So They Can be Identified </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Paul Joseph Watson | September 29, 2021</h4>
<h2a><a target="_blank" href="https://www.thedailybell.com/all-articles/news-analysis/covid-propaganda-roundup-the-biomedical-apartheid-state/">COVID Propaganda Roundup: The Biomedical Apartheid State </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Daily Bell ~ Ben Bartee | September 23, 2021</h4>
<h2a><a target="_blank" href="https://thenationalpulse.com/news/lancet-scrubs-entire-covid-origins-team/">Lancet Scrubs COVID Origins Investigation Team After National Pulse Exposés </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The National Pulse ~ Staff Writer | September 28, 2021</h4>
<h2a><a target="_blank" href="https://www.wnd.com/2021/09/4948902/">Natural immunity': NBA player explains why he won't get COVID vaccine </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: WND ~ Art Moore | September 28, 2021</h4>
<h2a><a target="_blank" href="https://www.thesun.co.uk/news/16233362/china-nuclear-strike-biden-defends-taiwan-diplomat/">Top Chinese diplomat: China must hit US with nuke attack before they strike if Biden defends Taiwan </a></h2a><h2b><a class="a2" href="world_watch">[world_watch]</a></h2b><h4>Source: The Sun ~ Aliki Kraterou | September 24, 2021</h4>
<h2a><a target="_blank" href="http://www.ronpaulinstitute.org/archives/featured-articles/2021/september/27/the-biggest-federal-reserve-scandal/">The Biggest Federal Reserve Scandal </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: Ron Paul Institute for Peace and Prosperity ~ Ron Paul | September 27, 2021</h4>
<h2a><a target="_blank" href="https://gnews.org/1561696/">Western Evil Capital Still Not Forgetting to Collude with the Chinese Communist Party before its Demise </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: GNews ~ GTV新闻访谈 | September 29, 2021</h4>
<h2a><a target="_blank" href="https://justthenews.com/nation/economy/two-federal-reserve-officials-retire-amid-questions-about-stock-trades">Two Federal Reserve officials retire amid questions about their stock trades </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Just the News ~ Just the News Staff | September 28, 2021</h4>
<h2a><a target="_blank" href="https://www.wnd.com/2021/09/marine-vet-61-dies-awaiting-trial-jan-6-insurrection/">Marine vet, 61, dies awaiting trial for Jan. 6 'insurrection' </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: WND ~ Joseph Farah | September 28, 2021</h4>
<h2a><a target="_blank" href="https://alt-market.us/organizing-patriots-in-the-face-of-government-informants-and-false-flags/">Organizing Patriots In The Face Of Government Informants And False Flags </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Alt-Market ~ Brandon Smith | September 22, 2021</h4>
<h2a><a target="_blank" href="https://alt-market.us/next-issue-issue-of-the-wild-bunch-dispatch-building-secure-radio-communications-networks-post-collapse/">Next Issue Issue Of The Wild Bunch Dispatch: Building Secure Radio Communications Networks Post-Collapse </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Alt-Market ~ Alt-Market | September 26, 2021</h4>
<h2a><a target="_blank" href="https://newsbusters.org/blogs/nb/nicholas-fondacaro/2021/09/29/sexual-assault-case-against-cnns-don-lemon-finally-moving">Sexual Assault Case Against CNN's Don Lemon Finally Moving Forward </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: mrcNewsBusters ~ Nicholas Fondacaro | September 29, 2021</h4>
<h2a><a target="_blank" href="https://reclaimthenet.org/ron-desantis-orders-investigation-of-facebooks-censorship/">Ron DeSantis orders investigation of Facebook’s censorship protection of certain elites </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Reclaim TheNet ~ Didi Rankovic | September 28, 2021</h4>
<h2a><a target="_blank" href="https://doctorsandscientistsdeclaration.org/">5,200 Doctors & Scientists Sign Declaration Accusing COVID Policy-Makers of ‘Crimes Against Humanity’ </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Global Covid Summit ~ Doctors and Scientists Declaration | September 1, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/09/breaking-project-veritas-johnson-johnson-children-dont-need-fcking-covid-vaccine-unknown-repercussions-video/">[VIDEO] Project Veritas: Johnson & Johnson: Children Don’t Need the ‘F*cking’ Covid Vaccine – “Unknown Repercussions” </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | September 27, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-09-27-scientists-question-need-coronavirus-vaccine-booster-shots.html#">Top scientists question need for coronavirus vaccine booster shots </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ramon Tomey | September 27, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-09-27-canadian-nurse-whistleblowers-fully-vaccinated-dying.html">Canadian nurse whistleblowers say many people are dying after getting vaccines while hospitals are filled with the fully vaccinated </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Arsenio Toledo | September 27, 2021</h4>
<h2a><a target="_blank" href="https://www.dailymail.co.uk/news/article-10035347/Married-couple-Michigan-fully-vaccinated-die-COVID-one-minute-apart.html">Vaccines + Ventilators = Death: Married Michigan couple who were both fully-vaccinated both die after being placed on a Ventilator after contracting COVID </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Daily Mail ~ Michelle Thompson | September 27, 2021</h4>
<h2a><a target="_blank" href="https://thecovidblog.com/2021/09/23/isabelli-borges-valentim-16-year-old-brazilian-girl-develops-blood-clots-dead-eight-days-after-first-pfizer-mrna-injection/">Isabelli Borges Valentim: 16-year-old Brazilian girl develops blood clots, dead eight days after first Pfizer mRNA injection </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Covid Blog ~ admin | September 23, 2021</h4>
<h2a><a target="_blank" href="https://theexpose.uk/2021/09/28/fact-check-vaccinated-77-percent-covid-deaths-mainsteam-media-lying/">The Vaccinated account for 77% of Covid-19 deaths this summer. This is a FACT. It’s time the Mainstream Media stopped LYING to the Public </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Expose ~ Daily Expose | September 28, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/covid-19/harvard-business-school-shifts-mba-classes-online-after-substantial-outbreak-covid">Despite Over 95% Vaxx'd, Harvard Business School Shifts Classes Online After "Substantial Outbreak" Of COVID </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | September 27, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-09-27-dr-lee-merritt-covid-is-not-the-real-enemy.html">Military Medicine - Dr. Lee Merritt: If you think you’re fighting a virus, then you’re going to be a victim </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Nolan Barton | September 27, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-09-27-youtube-conspires-nhs-for-coronavirus-vaccination-campaign-propaganda.html">Tecnocratic Corporatism: YouTube conspires with UK NHS to push coronavirus vaccination propaganda </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Natural News ~ Ramon Tomey | September 27, 2021</h4>
<h2a><a target="_blank" href="https://www.infowars.com/posts/alberta-chief-health-officer-were-counting-sick-people-who-decline-covid-tests-as-covid-positive/">Alberta Chief Health Officer: “We’re Counting Sick People Who Decline Covid Tests as Covid-Positive” </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Infowars ~ Infowars | September 27, 2021</h4>
<h2a><a target="_blank" href="https://www.thelastamericanvagabond.com/anthrax-squalene-vaccine-scandal-gives-insight-into-covid-pandemic-of-the-unvaccinated-illusion/">Anthrax/Squalene Vaccine Scandal Gives Insight Into COVID & “Pandemic Of The Unvaccinated” Illusion </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Last American Vagabond ~ Ryan Cristián | September 26, 2021</h4>
<h2a><a target="_blank" href="https://nationalfile.com/new-york-to-declare-state-of-emergency-due-to-nurses-quitting-getting-fired-over-vaccine-mandate/">New York To Declare State Of Emergency Due To Nurses Quitting, Getting Fired Over Vaccine Mandate </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: National File ~ Cullen McCue | September 27, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-09-27-former-aclu-attorney-teaching-ccp-backed-university.html">Chinese Collusion? Former ACLU attorney also teaching at CCP-backed university </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: Natural News ~ Ramon Tomey | September 27, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/09/not-making-headlines-az-audit-not-find-identity-86391-voters-dont-appear-exist-73-8-democrat-no-party-affiliation/">AZ Audit Could Not Find the Identity of 86,391 Voters – They Don’t Appear to Exist and 73.8% Are Democrat or No Party Affiliation </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Jim Hoft | September 27, 2021</h4>
<h2a><a target="_blank" href="https://off-guardian.org/2021/09/22/30-facts-you-need-to-know-your-covid-cribsheet/">30 facts you NEED to know: Your Covid Cribsheet </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Off-Guardian ~ Kit Knightly | September 22, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-09-23-leaked-darpa-document-confirms-attack-on-humanity-using-aerosolized-skin-penetrating-nanoparticle-spike-proteins.html">Leaked Alleged DARPA document confirms capability of attack on humanity using aerosolized, skin-penetrating nanoparticle spike proteins </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Mike Adams | September 23, 2021</h4>
<h2a><a target="_blank" href="https://freebeacon.com/coronavirus/biden-administration-doles-out-250k-to-wuhan-lab-linked-group/">Biden Administration Doles Out $250K to Wuhan Lab-Linked Group </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Free Beacon ~ Chuck Ross | September 24, 2021</h4>
<h2a><a target="_blank" href="https://childrenshealthdefense.org/defender/vaers-cdc-covid-deaths-vaccine-injuries/">Nearly 15,000 Deaths, More Than 700,000 Injuries Reported to VAERS Since December 2020 Rollout of COVID Vaccines in U.S. </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Defender ~ Megan Redshaw | September 20, 2021</h4>
<h2a><a target="_blank" href="https://www.nber.org/system/files/working_papers/w28930/w28930.pdf">RAND Corp./USC Study: COVID-19 Lockdowns Caused More Deaths Instead Of Reducing Them </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: NBER ~ Virat Agrawal et al. | June 1, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-09-25-covid-quarantine-camps-germany-strips-prisoners-compensation.html">After throwing them in covid quarantine camps, German government also STRIPS prisoners of compensation payments to bankrupt them </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | September 25, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-09-25-covid-hospitalizations-due-to-other-causes.html">COVID HOAX: Study reveals 40-45% of coronavirus hospitalizations are actually due to other causes </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Zoey Sky | September 25, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/09/tennis-star-says-season-taking-covid-vaccine-weeks-ago/">Tennis Star Says His Season is Over after Taking COVID Vaccine a Few Weeks Ago </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Joe Hoft | September 26, 2021</h4>
<h2a><a target="_blank" href="https://thecovidblog.com/2021/09/25/volodymyr-salo-19-year-old-ukrainian-student-gets-pfizer-mrna-injection-behind-his-familys-back-dead-seven-hours-later/">Volodymyr Salo: 19-year-old Ukrainian student gets Pfizer mRNA injection behind his family’s back, dead seven hours later </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Covid Blog ~ admin | September 25, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/09/l-reichard-white/so-are-they-trying-to-kill-you-or-are-they-just-corrupt-avaricious-and-stupid/">So, Are They TRYING to Kill You or Are They Just Corrupt, Avaricious and Stupid? </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Lew Rockwell ~ L. Reichard White | September 25, 2021</h4>
<h2a><a target="_blank" href="https://www.wnd.com/2021/09/4948220/">CDC chief 'overrules her scientists' to back Biden booster plan </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: WND ~ Art Moore | September 24, 2021</h4>
<h2a><a target="_blank" href="https://greatgameindia.com/romania-shutsdown-vaccine-centers/">Romania Opens Investigation Into How Covid Vaccines Were Acquired And Shutsdown Its Vaccine Centers </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Great Game India ~ Great Game India | September 23, 2021</h4>
<h2a><a target="_blank" href="https://greatgameindia.com/croatia-president-vaccine/">“We Will Not Be Vaccinated Anymore” Says President Of Croatia Zoran Milanovic </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Great Game India ~ Great Game India | September 23, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-09-24-lancet-editor-must-be-held-personally-responsible-for-medical-murder.html">Corrupt editor of The Lancet medical journal, Richard Horton, must be held PERSONALLY and CRIMINALLY responsible for medical murder (opinion) </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ S.D. Wells | September 24, 2021</h4>
<h2a><a target="_blank" href="https://reclaimthenet.org/youtube-censorship-fishing-hunting-channels/">YouTube Bans, Demonetizes Hunting and Fishing Channels </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Reclaim TheNet ~ Didi Rankovic | September 23, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/markets/china-declares-all-virtual-currency-transactions-illegal-sending-crypto-prices-tumbling">China Declares All Virtual Currency Transactions "Illegal" </a></h2a><h2b><a class="a2" href="financial_watch">[financial_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | September 24, 2021</h4>
<h2a><a target="_blank" href="https://www.wnd.com/2021/09/arizona-audit-biden-won-57000-problem-ballots-found/">57,000 Problem Ballots Found, Files Deleted One Day before Audit, and other conclusions in the Arizona Audit </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: WND ~ WND Staff | September 24, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/09/heartbreaking-letter-jan-6-prisoner-solitary-confinement-dc-gitmo-violates-international-codes-torture/">Heartbreaking Letter from Political Prisoner in Solitary Confinement! DC Gitmo Violates International Codes on Torture </a></h2a><h2b><a class="a2" href="culture_watch">[culture_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cara Castronuova | September 23, 2021</h4>
<h2a><a target="_blank" href="https://www.westernjournal.com/forget-ukraine-new-hunter-biden-emails-tie-completely-different-country-report/">Forget Ukraine, New Hunter Biden Emails Tie Him to Completely Different Country... </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Western Journal ~ Kevin Catapano | September 24, 2021</h4>
<h2a><a target="_blank" href="https://www.lewrockwell.com/2021/09/no_author/new-proof-emerges-of-the-biden-family-emails-a-definitive-account-of-the-cia-media-bigtech-fraud/">New Proof Emerges of the Biden Family Emails: a Definitive Account of the CIA/Media/BigTech Fraud </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Lew Rockwell ~ Glenn Greenwald | September 25, 2021</h4>
<h2a><a target="_blank" href="https://headlineusa.com/new-non-laptop-emails-show-more-hunter-biden-ties-to-china/">New Non-Laptop Emails Show More Hunter Biden Ties to China </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: Headline USA ~ Jacob Bruns | September 24, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/09/hunter-biden-tried-shake-libya-2-million-per-year-plus-success-fees-help-unfreeze-assets-joe-biden-vice-president/">Hunter Biden Tried to Shake Down Libya For $2 Million Per Year, Plus ‘Success Fees’ to Help Unfreeze Assets While Joe Biden Was Vice President </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Cristina Laila | September 23, 2021</h4>
<h2a><a target="_blank" href="https://www.westernjournal.com/video-hillary-clinton-gets-brutal-belfast-reception-protesters-howl-war-criminal-scumbag/">Video: Hillary Clinton Gets Brutal Belfast Reception: Protesters Howl 'War Criminal,' 'Scumbag' </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: The Western Journal ~ Kipp Jones | September 24, 2021</h4>
<h2a><a target="_blank" href="https://www.zerohedge.com/markets/facebook-overpaid-ftc-fine-billions-shield-ceo-zuckerberg-personal-liability-new-lawsuits">Zuckerberg had Facebook pay Billions for Protecion From Personal Liability, New Lawsuits by Shareholders Allege </a></h2a><h2b><a class="a2" href="elite_watch">[elite_watch]</a></h2b><h4>Source: ZeroHedge ~ Tyler Durden | September 23, 2021</h4>
<h2a><a target="_blank" href="https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(21)02019-5/fulltext?utm_campaign=lancetcovid21&utm_source=twitter&utm_medium=social">An appeal for an objective, open, and transparent scientific debate about the origin of SARS-CoV-2 </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Lancet ~ Dr. Jacques van Helden et al. | September 17, 2021</h4>
<h2a><a target="_blank" href="https://www.dailymail.co.uk/news/article-10014895/Ex-Chinese-Communist-Party-insider-Wei-Jingsheng-speaks-Wuhan-theory-relating-Covid-19.html">Limited Western Hangout? DailyMail: Chinese whistleblower claims first COVID outbreak was INTENTIONAL and happened in October 2019 at Military World Games in Wuhan - two months before China notified the world about virus </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Daily Mail ~ Charlie Coë and Levi Parsons | September 21, 2021</h4>
<h2a><a target="_blank" href="https://www.thegatewaypundit.com/2021/09/breaking-dr-fauci-funded-60-projects-wuhan-institute-virology-conjunction-chinese-military/">Dr. Fauci Funded 60 Projects at the Wuhan Institute of Virology and All Were in Conjunction with the Chinese Military </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: The Gateway Pundit ~ Joe Hoft | September 19, 2021</h4>
<h2a><a target="_blank" href="https://www.yahoo.com/news/wuhan-scientists-planned-release-skin-145326380.html">Wuhan scientists planned to release coronavirus particles into cave bats, leaked papers reveal </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: YahooNews ~ Sarah Knapton | September 21, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-09-21-german-professor-calls-investigation-into-military-geoengineering.html">German professor calls for investigation into military geoengineering </a></h2a><h2b><a class="a2" href="tech_watch">[tech_watch]</a></h2b><h4>Source: Natural News ~ Ramon Tomey | September 21, 2021</h4>
<h2a><a target="_blank" href="https://www.naturalnews.com/2021-09-22-nih-against-ivermectin-panel-conflicting-financial-interests.html">NIH doesn’t recommend ivermectin because its panel members have conflicting financial interests </a></h2a><h2b><a class="a2" href="covid_watch">[covid_watch]</a></h2b><h4>Source: Natural News ~ Ethan Huff | September 22, 2021</h4>