jerichojars : Java Archive Wrapper Supporting the ‘jericho’ Package

Contents of the ‘Jericho HTML Parser’ Java archive by Martin Jericho http://jericho.htmlparser.net/docs/index.html provided to support functions in the ‘jericho’ package.

As a result of using a Java library, this package requires rJava.

While the main intent is to use this with jericho, you can use it out of the box as-is (see below and the javadocs).

NOTE: Package version # reflects the version # of the included JAR file.

Installation

devtools::install_github("hrbrmstr/jerichojars")
library(jerichojars)
library(tidyverse)

c(
  "https://medium.com/starts-with-a-bang/science-knows-if-a-nation-is-testing-nuclear-bombs-ec5db88f4526",
  "https://en.wikipedia.org/wiki/Timeline_of_antisemitism",
  "http://www.healthsecuritysolutions.com/2017/09/04/watch-out-more-ransomware-attacks-incoming/",
  "http://rud.is/b/"
) -> urls

map_chr(urls, ~paste0(read_lines(.x), collapse="\n")) -> sites_html

map(sites_html, ~{
  
  b <- new(J("net.htmlparser.jericho.Source"), .x)
  
  b$getAllElements("a") %>% 
    as.list() %>% 
    map(~.x$getAttributeValue("href")) %>% 
    flatten_chr()
  
}) 
## [[1]]
##  [1] "https://medium.com/"                                                                                                                                                                                             
##  [2] "https://medium.com/"                                                                                                                                                                                             
##  [3] "https://medium.com/starts-with-a-bang?source=logo-lo_z4nrWiLwcvdh---458a773bccd2"                                                                                                                                
##  [4] "https://medium.com/m/signin?redirect=https%3A%2F%2Fmedium.com%2Fstarts-with-a-bang%2Fscience-knows-if-a-nation-is-testing-nuclear-bombs-ec5db88f4526&source=--------------------------nav_reg&operation=login"   
##  [5] "https://medium.com/m/signin?redirect=https%3A%2F%2Fmedium.com%2Fstarts-with-a-bang%2Fscience-knows-if-a-nation-is-testing-nuclear-bombs-ec5db88f4526&source=--------------------------nav_reg&operation=register"
##  [6] "https://medium.com/starts-with-a-bang?source=logo-lo_z4nrWiLwcvdh---458a773bccd2"                                                                                                                                
##  [7] "https://medium.com/@startswithabang?source=post_header_lockup"                                                                                                                                                   
##  [8] "https://medium.com/@startswithabang"                                                                                                                                                                             
##  [9] "http://earthquake.usgs.gov/earthquakes/eventpage/us10004bnm#general_map"                                                                                                                                         
## [10] "https://twitter.com/alexanderhutko/status/684588344018206720/photo/1"                                                                                                                                            
## [11] "https://www.forbes.com/sites/startswithabang/"                                                                                                                                                                   
## [12] "https://www.patreon.com/startswithabang"                                                                                                                                                                         
## [13] "http://amzn.to/2oWv6KK"                                                                                                                                                                                          
## [14] "http://amzn.to/2nYxkbn"                                                                                                                                                                                          
## [15] "https://medium.com/tag/north-korea?source=post"                                                                                                                                                                  
## [16] "https://medium.com/tag/nuclear?source=post"                                                                                                                                                                      
## [17] "https://medium.com/tag/physics?source=post"                                                                                                                                                                      
## [18] "https://medium.com/tag/science?source=post"                                                                                                                                                                      
## [19] "https://medium.com/tag/earthquake?source=post"                                                                                                                                                                   
## [20] "https://medium.com/p/ec5db88f4526/share/twitter"                                                                                                                                                                 
## [21] "https://medium.com/p/ec5db88f4526/share/facebook"                                                                                                                                                                
## [22] "https://medium.com/@startswithabang?source=footer_card"                                                                                                                                                          
## [23] "https://medium.com/@startswithabang"                                                                                                                                                                             
## [24] "https://medium.com/starts-with-a-bang?source=footer_card"                                                                                                                                                        
## [25] "https://medium.com/starts-with-a-bang?source=footer_card"                                                                                                                                                        
## [26] "https://medium.com/p/ec5db88f4526/share/twitter"                                                                                                                                                                 
## [27] "https://medium.com/p/ec5db88f4526/share/facebook"                                                                                                                                                                
## [28] "https://medium.com/starts-with-a-bang"                                                                                                                                                                           
## [29] "https://medium.com/@Medium/personalize-your-medium-experience-with-users-publications-tags-26a41ab1ee0c#.hx4zuv3mg"                                                                                              
## 
## [[2]]
##    [1] "#mw-head"                                                                                                                                                                                                           
##    [2] "#p-search"                                                                                                                                                                                                          
##    [3] "/wiki/Wikipedia:WikiProject_Lists#Incomplete_lists"                                                                                                                                                                 
##    [4] "//en.wikipedia.org/w/index.php?title=Timeline_of_antisemitism&action=edit"                                                                                                                                          
##    [5] "/wiki/Wikipedia:Reliable_sources"                                                                                                                                                                                   
##    [6] "/wiki/Antisemitism"                                                                                                                                                                                                 
##    [7] "/wiki/Jews"                                                                                                                                                                                                         
##    [8] "/wiki/History_of_antisemitism"                                                                                                                                                                                      
##    [9] "/wiki/Anti-Judaism"                                                                                                                                                                                                 
##   [10] "/wiki/Religious_antisemitism"                                                                                                                                                                                       
##   [11] "/wiki/Judaism"                                                                                                                                                                                                      
##   [12] "/wiki/Racial_antisemitism"                                                                                                                                                                                          
##   [13] "/wiki/Jewish_refugees"                                                                                                                                                                                              
##   [14] "/wiki/Category:Antisemitism"                                                                                                                                                                                        
##   [15] "/wiki/Antisemitism"                                                                                                                                                                                                 
##   [16] "/wiki/Yellow_badge"                                                                                                                                                                                                 
##   [17] "/wiki/Jewish_history"                                                                                                                                                                                               
##   [18] "/wiki/Discrimination"                                                                                                                                                                                               
##   [19] "/wiki/History_of_antisemitism"                                                                                                                                                                                      
##   [20] "/wiki/Antisemitism_(authors)"                                                                                                                                                                                       
##   [21] "/wiki/Universities_and_antisemitism"                                                                                                                                                                                
##   [22] "/wiki/History_of_antisemitism_in_the_United_States"                                                                                                                                                                 
##   [23] "/wiki/Alt-right"                                                                                                                                                                                                    
##   [24] "/wiki/Antisemitism_in_the_Arab_world"                                                                                                                                                                               
##   [25] "/wiki/Antisemitism_in_the_United_Kingdom"                                                                                                                                                                           
##   [26] "/wiki/Antisemitism_in_Canada"                                                                                                                                                                                       
##   [27] "/wiki/Christianity_and_antisemitism"                                                                                                                                                                                
##   [28] "/wiki/Christian_Identity"                                                                                                                                                                                           
##   [29] "/wiki/Creativity_(religion)"                                                                                                                                                                                        
##   [30] "/wiki/Economic_antisemitism"                                                                                                                                                                                        
##   [31] "/wiki/Antisemitism_in_Europe"                                                                                                                                                                                       
##   [32] "/wiki/Antisemitic_incidents_during_the_Gaza_War_(2008%E2%80%9309)"                                                                                                                                                  
##   [33] "/wiki/Islam_and_antisemitism"                                                                                                                                                                                       
##   [34] "/wiki/Holocaust_denial"                                                                                                                                                                                             
##   [35] "/wiki/Medieval_antisemitism"                                                                                                                                                                                        
##   [36] "/wiki/Nation_of_Islam_and_antisemitism"                                                                                                                                                                             
##   [37] "/wiki/Nazism"                                                                                                                                                                                                       
##   [38] "/wiki/Neo-Nazism"                                                                                                                                                                                                   
##   [39] "/wiki/Antisemitism_in_Norway"                                                                                                                                                                                       
##   [40] "/wiki/New_antisemitism"                                                                                                                                                                                             
##   [41] "/wiki/3D_Test_of_Antisemitism"                                                                                                                                                                                      
##   [42] "/wiki/Antisemitism_in_Pakistan"                                                                                                                                                                                     
##   [43] "/wiki/Racial_antisemitism"                                                                                                                                                                                          
##   [44] "/wiki/Religious_antisemitism"                                                                                                                                                                                       
##   [45] "/wiki/Antisemitism_in_Russia"                                                                                                                                                                                       
##   [46] "/wiki/Secondary_antisemitism"                                                                                                                                                                                       
##   [47] "/wiki/Antisemitism_in_Sweden"                                                                                                                                                                                       
##   [48] "/wiki/Antisemitism_in_the_Soviet_Union"                                                                                                                                                                             
##   [49] "/wiki/Stalin_and_antisemitism"                                                                                                                                                                                      
##   [50] "/wiki/Strasserism"                                                                                                                                                                                                  
##   [51] "/wiki/Antisemitism_in_Turkey"                                                                                                                                                                                       
##   [52] "/wiki/Geography_of_antisemitism"                                                                                                                                                                                    
##   [53] "/wiki/Antisemitic_canard"                                                                                                                                                                                           
##   [54] "/wiki/Blood_libel"                                                                                                                                                                                                  
##   [55] "/wiki/Jewish_deicide"                                                                                                                                                                                               
##   [56] "/wiki/Dreyfus_affair"                                                                                                                                                                                               
##   [57] "/wiki/Franklin_Prophecy"                                                                                                                                                                                            
##   [58] "/wiki/Host_desecration"                                                                                                                                                                                             
##   [59] "/wiki/Judensau"                                                                                                                                                                                                     
##   [60] "/wiki/Jewish_Bolshevism"                                                                                                                                                                                            
##   [61] "/wiki/Jewish_lobby#Viewed_as_antisemitic_and/or_pejorative"                                                                                                                                                         
##   [62] "/wiki/Judeo-Masonic_conspiracy_theory"                                                                                                                                                                              
##   [63] "/wiki/Kosher_tax_conspiracy_theory"                                                                                                                                                                                 
##   [64] "/wiki/Rootless_cosmopolitan"                                                                                                                                                                                        
##   [65] "/wiki/Stab-in-the-back_myth"                                                                                                                                                                                        
##   [66] "/wiki/Well_poisoning"                                                                                                                                                                                               
##   [67] "/wiki/Zionist_Occupation_Government_conspiracy_theory"                                                                                                                                                              
##   [68] "/wiki/Antisemitic_canards#Accusations_of_controlling_the_media"                                                                                                                                                     
##   [69] "/wiki/Antisemitic_canards#Accusations_of_controlling_the_world_financial_system"                                                                                                                                    
##   [70] "/wiki/Category:Antisemitic_publications"                                                                                                                                                                            
##   [71] "/wiki/On_the_Jews_and_Their_Lies"                                                                                                                                                                                   
##   [72] "/wiki/La_France_juive"                                                                                                                                                                                              
##   [73] "/wiki/The_Protocols_of_the_Elders_of_Zion"                                                                                                                                                                          
##   [74] "/wiki/The_International_Jew"                                                                                                                                                                                        
##   [75] "/wiki/The_American_Mercury"                                                                                                                                                                                         
##   [76] "/wiki/National_Vanguard_(publication)"                                                                                                                                                                              
##   [77] "/wiki/Mein_Kampf"                                                                                                                                                                                                   
##   [78] "/wiki/Zweites_Buch"                                                                                                                                                                                                 
##   [79] "/wiki/The_Secret_Relationship_Between_Blacks_and_Jews"                                                                                                                                                              
##   [80] "/wiki/The_Turner_Diaries"                                                                                                                                                                                           
##   [81] "/wiki/Hunter_(Pierce_novel)"                                                                                                                                                                                        
##   [82] "/wiki/Culture_of_Critique"                                                                                                                                                                                          
##   [83] "/wiki/The_Daily_Stormer"                                                                                                                                                                                            
##   [84] "/wiki/Jew_Watch"                                                                                                                                                                                                    
##   [85] "/wiki/Metapedia"                                                                                                                                                                                                    
##   [86] "/wiki/Occidental_Observer"                                                                                                                                                                                          
##   [87] "/wiki/Renegade_Tribune"                                                                                                                                                                                             
##   [88] "/wiki/The_Right_Stuff_(blog)"                                                                                                                                                                                       
##   [89] "/wiki/Stormfront_(website)"                                                                                                                                                                                         
##   [90] "/wiki/Triple_parentheses"                                                                                                                                                                                           
##   [91] "/wiki/Alex_Linder"                                                                                                                                                                                                  
##   [92] "/wiki/Gab_(social_network)"                                                                                                                                                                                         
##   [93] "/wiki/Voat"                                                                                                                                                                                                         
##   [94] "/wiki/Persecution_of_Jews"                                                                                                                                                                                          
##   [95] "/wiki/Antisemitic_boycotts"                                                                                                                                                                                         
##   [96] "/wiki/General_Order_No._11_(1862)"                                                                                                                                                                                  
##   [97] "/wiki/The_Holocaust"                                                                                                                                                                                                
##   [98] "/wiki/Jewish_refugees"                                                                                                                                                                                              
##   [99] "/wiki/Jewish_ghettos_in_Europe"                                                                                                                                                                                     
##  [100] "/wiki/Jewish_hat"                                                                                                                                                                                                   
##  [101] "/wiki/Judensau"                                                                                                                                                                                                     
##  [102] "/wiki/Jewish_quota"                                                                                                                                                                                                 
##  [103] "/wiki/Leo_Frank"                                                                                                                                                                                                    
##  [104] "/wiki/Nuremberg_Laws"                                                                                                                                                                                               
##  [105] "/wiki/Pogrom"                                                                                                                                                                                                       
##  [106] "/wiki/Religious_segregation"                                                                                                                                                                                        
##  [107] "/wiki/Spanish_Inquisition"                                                                                                                                                                                          
##  [108] "/wiki/Yellow_badge"                                                                                                                                                                                                 
##  [109] "/wiki/UN_Watch"                                                                                                                                                                                                     
##  [110] "/wiki/Anti-Defamation_League"                                                                                                                                                                                       
##  [111] "/wiki/Community_Security_Trust"                                                                                                                                                                                     
##  [112] "/wiki/Fundamental_Rights_Agency"                                                                                                                                                                                    
##  [113] "/wiki/Philo-Semitism"                                                                                                                                                                                               
##  [114] "/wiki/Stephen_Roth_Institute"                                                                                                                                                                                       
##  [115] "/wiki/Wiener_Library"                                                                                                                                                                                               
##  [116] "/wiki/Southern_Poverty_Law_Center"                                                                                                                                                                                  
##  [117] "/wiki/Simon_Wiesenthal_Center"                                                                                                                                                                                      
##  [118] "/wiki/Union_of_Councils_for_Soviet_Jews"                                                                                                                                                                            
##  [119] "/wiki/Swedish_Committee_Against_Antisemitism"                                                                                                                                                                       
##  [120] "/wiki/Yad_Vashem"                                                                                                                                                                                                   
##  [121] "/wiki/Working_Definition_of_Antisemitism"                                                                                                                                                                           
##  [122] "/wiki/Campaign_Against_Antisemitism"                                                                                                                                                                                
##  [123] "/wiki/Category:Antisemitism"                                                                                                                                                                                        
##  [124] "/wiki/Template:Antisemitism"                                                                                                                                                                                        
##  [125] "/wiki/Template_talk:Antisemitism"                                                                                                                                                                                   
##  [126] "//en.wikipedia.org/w/index.php?title=Template:Antisemitism&action=edit"                                                                                                                                             
##  [127] "#Antiquity"                                                                                                                                                                                                         
##  [128] "#First_century"                                                                                                                                                                                                     
##  [129] "#Second_century"                                                                                                                                                                                                    
##  [130] "#Third_century"                                                                                                                                                                                                     
##  [131] "#Fourth_century"                                                                                                                                                                                                    
##  [132] "#Fifth_century"                                                                                                                                                                                                     
##  [133] "#Sixth_century"                                                                                                                                                                                                     
##  [134] "#Seventh_century"                                                                                                                                                                                                   
##  [135] "#Eighth_century"                                                                                                                                                                                                    
##  [136] "#Ninth_century"                                                                                                                                                                                                     
##  [137] "#Tenth_century"                                                                                                                                                                                                     
##  [138] "#Eleventh_century"                                                                                                                                                                                                  
##  [139] "#Twelfth_century"                                                                                                                                                                                                   
##  [140] "#Thirteenth_century"                                                                                                                                                                                                
##  [141] "#Fourteenth_century"                                                                                                                                                                                                
##  [142] "#Fifteenth_century"                                                                                                                                                                                                 
##  [143] "#Sixteenth_century"                                                                                                                                                                                                 
##  [144] "#Seventeenth_century"                                                                                                                                                                                               
##  [145] "#Eighteenth_century"                                                                                                                                                                                                
##  [146] "#Nineteenth_century"                                                                                                                                                                                                
##  [147] "#Twentieth_century"                                                                                                                                                                                                 
##  [148] "#Twenty-first_century"                                                                                                                                                                                              
##  [149] "#See_also"                                                                                                                                                                                                          
##  [150] "#References"                                                                                                                                                                                                        
##  [151] "#External_links"                                                                                                                                                                                                    
##  [152] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=1"                                                                                                                                                  
##  [153] "/wiki/Assyrian_captivity"                                                                                                                                                                                           
##  [154] "/wiki/History_of_Ancient_Israel_and_Judah"                                                                                                                                                                          
##  [155] "/wiki/Samaria"                                                                                                                                                                                                      
##  [156] "/wiki/Assyria"                                                                                                                                                                                                      
##  [157] "/wiki/Kingdom_of_Israel_(Samaria)"                                                                                                                                                                                  
##  [158] "/wiki/Neo-Assyrian_Empire"                                                                                                                                                                                          
##  [159] "/wiki/Nebuchadnezzar_II"                                                                                                                                                                                            
##  [160] "/wiki/Neo-Babylonian_Empire"                                                                                                                                                                                        
##  [161] "/wiki/First_Temple"                                                                                                                                                                                                 
##  [162] "/wiki/Jerusalem"                                                                                                                                                                                                    
##  [163] "/wiki/Kingdom_of_Judah"                                                                                                                                                                                             
##  [164] "/wiki/Haman"                                                                                                                                                                                                        
##  [165] "/wiki/Genocide"                                                                                                                                                                                                     
##  [166] "/wiki/Purim"                                                                                                                                                                                                        
##  [167] "/wiki/1_Maccabees"                                                                                                                                                                                                  
##  [168] "/wiki/2_Maccabees"                                                                                                                                                                                                  
##  [169] "/wiki/Antiochus_IV_Epiphanes"                                                                                                                                                                                       
##  [170] "/wiki/Zeus"                                                                                                                                                                                                         
##  [171] "/wiki/Jerusalem"                                                                                                                                                                                                    
##  [172] "/wiki/Hanukkah"                                                                                                                                                                                                     
##  [173] "/wiki/Maccabees"                                                                                                                                                                                                    
##  [174] "/wiki/Gnaeus_Cornelius_Scipio_Hispanus"                                                                                                                                                                             
##  [175] "/wiki/Rome"                                                                                                                                                                                                         
##  [176] "/wiki/Woman_with_seven_sons"                                                                                                                                                                                        
##  [177] "/wiki/Martyr"                                                                                                                                                                                                       
##  [178] "/wiki/2_Maccabees"                                                                                                                                                                                                  
##  [179] "#cite_note-JVL-1"                                                                                                                                                                                                   
##  [180] "#cite_note-Ilan-2"                                                                                                                                                                                                  
##  [181] "#cite_note-Orthodox-3"                                                                                                                                                                                              
##  [182] "/wiki/Judas_Maccabeus"                                                                                                                                                                                              
##  [183] "/wiki/Antiochus_IV_Epiphanes"                                                                                                                                                                                       
##  [184] "/wiki/Pork"                                                                                                                                                                                                         
##  [185] "#cite_note-4"                                                                                                                                                                                                       
##  [186] "#cite_note-5"                                                                                                                                                                                                       
##  [187] "/wiki/Talmud"                                                                                                                                                                                                       
##  [188] "/wiki/Nashim"                                                                                                                                                                                                       
##  [189] "/wiki/Suicide"                                                                                                                                                                                                      
##  [190] "#cite_note-6"                                                                                                                                                                                                       
##  [191] "/wiki/4_Maccabees"                                                                                                                                                                                                  
##  [192] "/wiki/Josippon"                                                                                                                                                                                                     
##  [193] "#cite_note-JVL-1"                                                                                                                                                                                                   
##  [194] "/wiki/Jewish_diaspora"                                                                                                                                                                                              
##  [195] "/wiki/Pompey#Pompey_in_the_East"                                                                                                                                                                                    
##  [196] "/wiki/Cicero"                                                                                                                                                                                                       
##  [197] "#cite_note-7"                                                                                                                                                                                                       
##  [198] "/wiki/Alexandria"                                                                                                                                                                                                   
##  [199] "#cite_note-8"                                                                                                                                                                                                       
##  [200] "#cite_note-9"                                                                                                                                                                                                       
##  [201] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=2"                                                                                                                                                  
##  [202] "/wiki/Tiberius"                                                                                                                                                                                                     
##  [203] "/wiki/Rome"                                                                                                                                                                                                         
##  [204] "/wiki/Suetonius"                                                                                                                                                                                                    
##  [205] "/wiki/Cassius_Dio"                                                                                                                                                                                                  
##  [206] "/wiki/Alexandrian_pogrom"                                                                                                                                                                                           
##  [207] "/wiki/Philo_of_Alexandria"                                                                                                                                                                                          
##  [208] "/wiki/Claudius"                                                                                                                                                                                                     
##  [209] "/wiki/Great_Jewish_Revolt"                                                                                                                                                                                          
##  [210] "/wiki/Vespasian"                                                                                                                                                                                                    
##  [211] "/wiki/Titus"                                                                                                                                                                                                        
##  [212] "/wiki/Philostratus"                                                                                                                                                                                                 
##  [213] "/wiki/Wikipedia:Citation_needed"                                                                                                                                                                                    
##  [214] "/wiki/Josephus"                                                                                                                                                                                                     
##  [215] "/wiki/Rome"                                                                                                                                                                                                         
##  [216] "/wiki/Siege_of_Jerusalem_(70)"                                                                                                                                                                                      
##  [217] "/wiki/Second_Temple"                                                                                                                                                                                                
##  [218] "#cite_note-auto2-10"                                                                                                                                                                                                
##  [219] "#cite_note-archaeological378-11"                                                                                                                                                                                    
##  [220] "#cite_note-archaeological378-11"                                                                                                                                                                                    
##  [221] "#cite_note-12"                                                                                                                                                                                                      
##  [222] "#cite_note-archaeological378-11"                                                                                                                                                                                    
##  [223] "#cite_note-auto2-10"                                                                                                                                                                                                
##  [224] "/wiki/Apion"                                                                                                                                                                                                        
##  [225] "/wiki/Alexandria,_Egypt"                                                                                                                                                                                            
##  [226] "/wiki/Blood_libel"                                                                                                                                                                                                  
##  [227] "/wiki/Satires_of_Juvenal"                                                                                                                                                                                           
##  [228] "/wiki/Josephus"                                                                                                                                                                                                     
##  [229] "/wiki/Against_Apion"                                                                                                                                                                                                
##  [230] "#cite_note-13"                                                                                                                                                                                                      
##  [231] "/wiki/Titus_Flavius_Clemens"                                                                                                                                                                                        
##  [232] "/wiki/Roman_Emperor"                                                                                                                                                                                                
##  [233] "/wiki/Vespasian"                                                                                                                                                                                                    
##  [234] "/wiki/Tacitus"                                                                                                                                                                                                      
##  [235] "/wiki/Histories_(Tacitus)"                                                                                                                                                                                          
##  [236] "http://www.perseus.tufts.edu/cgi-bin/ptext?lookup=Tac.+Hist.+5.1"                                                                                                                                                   
##  [237] "/wiki/Monotheistic"                                                                                                                                                                                                 
##  [238] "/wiki/Polytheism"                                                                                                                                                                                                   
##  [239] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=3"                                                                                                                                                  
##  [240] "/wiki/Cyprus"                                                                                                                                                                                                       
##  [241] "/wiki/Cyrenaica"                                                                                                                                                                                                    
##  [242] "/wiki/Cassius_Dio"                                                                                                                                                                                                  
##  [243] "/wiki/Roman_Emperor"                                                                                                                                                                                                
##  [244] "/wiki/Hadrian"                                                                                                                                                                                                      
##  [245] "/wiki/Circumcision"                                                                                                                                                                                                 
##  [246] "/wiki/Bar_Kokhba_revolt"                                                                                                                                                                                            
##  [247] "/wiki/Galilee"                                                                                                                                                                                                      
##  [248] "/wiki/Syria_Palaestina"                                                                                                                                                                                             
##  [249] "/wiki/Judea"                                                                                                                                                                                                        
##  [250] "/wiki/Land_of_Israel"                                                                                                                                                                                               
##  [251] "/wiki/Timeline_of_antisemitism#20_century"                                                                                                                                                                          
##  [252] "/wiki/Samaria"                                                                                                                                                                                                      
##  [253] "/wiki/Tiberias"                                                                                                                                                                                                     
##  [254] "/wiki/Patriarchs"                                                                                                                                                                                                   
##  [255] "/wiki/Jewish_diaspora"                                                                                                                                                                                              
##  [256] "/wiki/Paganism"                                                                                                                                                                                                     
##  [257] "/wiki/Temple_in_Jerusalem"                                                                                                                                                                                          
##  [258] "/wiki/Aelia_Capitolina"                                                                                                                                                                                             
##  [259] "#cite_note-Lehmann-14"                                                                                                                                                                                              
##  [260] "/wiki/Jerusalem"                                                                                                                                                                                                    
##  [261] "/wiki/Temple_Mount"                                                                                                                                                                                                 
##  [262] "/wiki/Jewish_deicide"                                                                                                                                                                                               
##  [263] "/wiki/Responsible_for_the_death_of_Jesus"                                                                                                                                                                           
##  [264] "/wiki/Melito_of_Sardis"                                                                                                                                                                                             
##  [265] "/wiki/Apollinaris_Claudius"                                                                                                                                                                                         
##  [266] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=4"                                                                                                                                                  
##  [267] "/wiki/Jews"                                                                                                                                                                                                         
##  [268] "/wiki/Carthage"                                                                                                                                                                                                     
##  [269] "/wiki/Nehardea"                                                                                                                                                                                                     
##  [270] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=5"                                                                                                                                                  
##  [271] "/wiki/Synod_of_Elvira"                                                                                                                                                                                              
##  [272] "/wiki/Christianity"                                                                                                                                                                                                 
##  [273] "/wiki/Jew"                                                                                                                                                                                                          
##  [274] "/wiki/Constantine_the_Great"                                                                                                                                                                                        
##  [275] "/wiki/Jerusalem"                                                                                                                                                                                                    
##  [276] "/wiki/First_Council_of_Nicaea"                                                                                                                                                                                      
##  [277] "/wiki/Christian_Church"                                                                                                                                                                                             
##  [278] "/wiki/Easter"                                                                                                                                                                                                       
##  [279] "/wiki/Passover"                                                                                                                                                                                                     
##  [280] "/wiki/Deicide"                                                                                                                                                                                                      
##  [281] "#cite_note-15"                                                                                                                                                                                                      
##  [282] "#cite_note-16"                                                                                                                                                                                                      
##  [283] "/wiki/Rabbah_bar_Nahmani"                                                                                                                                                                                           
##  [284] "/wiki/Book_burning"                                                                                                                                                                                                 
##  [285] "/wiki/Persia"                                                                                                                                                                                                       
##  [286] "/wiki/Wikipedia:Citation_needed"                                                                                                                                                                                    
##  [287] "/wiki/Jewish_revolt_against_Constantius_Gallus"                                                                                                                                                                     
##  [288] "/wiki/Constantius_II"                                                                                                                                                                                               
##  [289] "/wiki/Converts_to_Judaism"                                                                                                                                                                                          
##  [290] "/wiki/Julian_the_Apostate"                                                                                                                                                                                          
##  [291] "/wiki/Milan"                                                                                                                                                                                                        
##  [292] "/wiki/Julian_the_Apostate"                                                                                                                                                                                          
##  [293] "/wiki/John_Chrysostom"                                                                                                                                                                                              
##  [294] "/wiki/Antioch"                                                                                                                                                                                                      
##  [295] "/wiki/Homilies"                                                                                                                                                                                                     
##  [296] "/wiki/Adversus_Judaeos"                                                                                                                                                                                             
##  [297] "/wiki/Christianity_and_antisemitism"                                                                                                                                                                                
##  [298] "/wiki/Synagogue"                                                                                                                                                                                                    
##  [299] "/wiki/Raqqa"                                                                                                                                                                                                        
##  [300] "/wiki/Theodosius_I"                                                                                                                                                                                                 
##  [301] "/wiki/Ambrose"                                                                                                                                                                                                      
##  [302] "/wiki/Roman_Emperor"                                                                                                                                                                                                
##  [303] "/wiki/Flavius_Augustus_Honorius"                                                                                                                                                                                    
##  [304] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=6"                                                                                                                                                  
##  [305] "/wiki/Haman"                                                                                                                                                                                                        
##  [306] "/wiki/Alexandria"                                                                                                                                                                                                   
##  [307] "#cite_note-17"                                                                                                                                                                                                      
##  [308] "/wiki/Cyril_of_Alexandria#Relationship_with_the_Novatians_and_Jews"                                                                                                                                                 
##  [309] "#cite_note-18"                                                                                                                                                                                                      
##  [310] "#cite_note-19"                                                                                                                                                                                                      
##  [311] "/wiki/Antioch"                                                                                                                                                                                                      
##  [312] "/wiki/Ritual_murder"                                                                                                                                                                                                
##  [313] "/wiki/Purim"                                                                                                                                                                                                        
##  [314] "#cite_note-20"                                                                                                                                                                                                      
##  [315] "#cite_note-21"                                                                                                                                                                                                      
##  [316] "/wiki/Honorius_(emperor)"                                                                                                                                                                                           
##  [317] "/wiki/Theodosius_II"                                                                                                                                                                                                
##  [318] "/wiki/Forced_to_convert"                                                                                                                                                                                            
##  [319] "/wiki/Menorca"                                                                                                                                                                                                      
##  [320] "/wiki/Port_Mahon"                                                                                                                                                                                                   
##  [321] "/wiki/Monk"                                                                                                                                                                                                         
##  [322] "/wiki/Barsauma"                                                                                                                                                                                                     
##  [323] "/wiki/Nisibis"                                                                                                                                                                                                      
##  [324] "/wiki/Nasi_(Hebrew_title)"                                                                                                                                                                                          
##  [325] "/wiki/Sanhedrin"                                                                                                                                                                                                    
##  [326] "/wiki/Gamliel_VI"                                                                                                                                                                                                   
##  [327] "/wiki/East_Roman_Emperor"                                                                                                                                                                                           
##  [328] "/wiki/Theodosius_II"                                                                                                                                                                                                
##  [329] "/wiki/Temple_Mount"                                                                                                                                                                                                 
##  [330] "/wiki/Codex_Theodosianus"                                                                                                                                                                                           
##  [331] "/wiki/Samaritans"                                                                                                                                                                                                   
##  [332] "/wiki/Roman_Emperor"                                                                                                                                                                                                
##  [333] "/wiki/Valentinian_III"                                                                                                                                                                                              
##  [334] "/wiki/Sassanid_dynasty"                                                                                                                                                                                             
##  [335] "/wiki/Yazdegerd_II_of_Persia"                                                                                                                                                                                       
##  [336] "/wiki/Shabbat"                                                                                                                                                                                                      
##  [337] "/wiki/Exilarch"                                                                                                                                                                                                     
##  [338] "/wiki/Vannes"                                                                                                                                                                                                       
##  [339] "/wiki/Iranian_Jews"                                                                                                                                                                                                 
##  [340] "/wiki/Magi"                                                                                                                                                                                                         
##  [341] "/wiki/Exilarch"                                                                                                                                                                                                     
##  [342] "/wiki/Peroz_I"                                                                                                                                                                                                      
##  [343] "/wiki/Antioch"                                                                                                                                                                                                      
##  [344] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=7"                                                                                                                                                  
##  [345] "/wiki/Babylonian_Jews"                                                                                                                                                                                              
##  [346] "/wiki/Iran"                                                                                                                                                                                                         
##  [347] "/wiki/King_Kobad"                                                                                                                                                                                                   
##  [348] "/wiki/Exilarch"                                                                                                                                                                                                     
##  [349] "/wiki/Mar-Zutra_II"                                                                                                                                                                                                 
##  [350] "/wiki/Mahoza"                                                                                                                                                                                                       
##  [351] "/wiki/Council_of_Epaone"                                                                                                                                                                                            
##  [352] "/wiki/Ravenna"                                                                                                                                                                                                      
##  [353] "/wiki/Ostrogoths"                                                                                                                                                                                                   
##  [354] "/wiki/Theodoric_the_Great"                                                                                                                                                                                          
##  [355] "/wiki/Byzantine_Empire"                                                                                                                                                                                             
##  [356] "/wiki/Justinian_the_Great"                                                                                                                                                                                          
##  [357] "/wiki/Corpus_Juris_Civilis"                                                                                                                                                                                         
##  [358] "/wiki/Wikipedia:Please_clarify"                                                                                                                                                                                     
##  [359] "/wiki/Hebrew_language"                                                                                                                                                                                              
##  [360] "/wiki/Shema_Yisrael"                                                                                                                                                                                                
##  [361] "/wiki/Trinity"                                                                                                                                                                                                      
##  [362] "/w/index.php?title=Borion&action=edit&redlink=1"                                                                                                                                                                    
##  [363] "/wiki/First_Council_of_Clermont"                                                                                                                                                                                    
##  [364] "/wiki/Orl%C3%A9ans"                                                                                                                                                                                                 
##  [365] "/wiki/Easter"                                                                                                                                                                                                       
##  [366] "/wiki/Childebert_I"                                                                                                                                                                                                 
##  [367] "/wiki/Caesarea"                                                                                                                                                                                                     
##  [368] "/wiki/Marseilles"                                                                                                                                                                                                   
##  [369] "/wiki/Merovingian_dynasty"                                                                                                                                                                                          
##  [370] "/wiki/Narbonne"                                                                                                                                                                                                     
##  [371] "/wiki/Psalms"                                                                                                                                                                                                       
##  [372] "/wiki/Councils_of_Toledo"                                                                                                                                                                                           
##  [373] "/wiki/Visigoths"                                                                                                                                                                                                    
##  [374] "/wiki/Reccared"                                                                                                                                                                                                     
##  [375] "#cite_note-22"                                                                                                                                                                                                      
##  [376] "/wiki/Pope_Gregory_I"                                                                                                                                                                                               
##  [377] "/wiki/Exilarch"                                                                                                                                                                                                     
##  [378] "/wiki/Khosrau_II"                                                                                                                                                                                                   
##  [379] "/wiki/Mihrevandak"                                                                                                                                                                                                  
##  [380] "/wiki/Antioch"                                                                                                                                                                                                      
##  [381] "#cite_note-23"                                                                                                                                                                                                      
##  [382] "#cite_note-24"                                                                                                                                                                                                      
##  [383] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=8"                                                                                                                                                  
##  [384] "/wiki/Sisebur"                                                                                                                                                                                                      
##  [385] "/wiki/Judaism"                                                                                                                                                                                                      
##  [386] "/wiki/Paris"                                                                                                                                                                                                        
##  [387] "/wiki/Jewish_revolt_against_Heraclius"                                                                                                                                                                              
##  [388] "/wiki/Land_of_Israel"                                                                                                                                                                                               
##  [389] "/wiki/Battle_of_Khaybar"                                                                                                                                                                                            
##  [390] "/wiki/Heraclius"                                                                                                                                                                                                    
##  [391] "/wiki/Franks"                                                                                                                                                                                                       
##  [392] "/wiki/Dagobert_I"                                                                                                                                                                                                   
##  [393] "/wiki/Byzantine_Emperor"                                                                                                                                                                                            
##  [394] "/wiki/Heraclius"                                                                                                                                                                                                    
##  [395] "/wiki/Heraclius"                                                                                                                                                                                                    
##  [396] "/wiki/Mizrahi_Jews"                                                                                                                                                                                                 
##  [397] "/wiki/Jizya"                                                                                                                                                                                                        
##  [398] "/wiki/Muslim_conquest_of_the_Levant"                                                                                                                                                                                
##  [399] "/wiki/Toledo,_Spain"                                                                                                                                                                                                
##  [400] "/wiki/Spain"                                                                                                                                                                                                        
##  [401] "/wiki/Jizya"                                                                                                                                                                                                        
##  [402] "/wiki/Egypt"                                                                                                                                                                                                        
##  [403] "/wiki/Cyrenaica"                                                                                                                                                                                                    
##  [404] "/wiki/Tripolitania"                                                                                                                                                                                                 
##  [405] "/wiki/Fezzan"                                                                                                                                                                                                       
##  [406] "/wiki/Toledo,_Spain"                                                                                                                                                                                                
##  [407] "/wiki/Councils_of_Toledo"                                                                                                                                                                                           
##  [408] "/wiki/Toledo_(Spain)"                                                                                                                                                                                               
##  [409] "/wiki/Heresy"                                                                                                                                                                                                       
##  [410] "/wiki/Visigoths"                                                                                                                                                                                                    
##  [411] "/wiki/Erwig"                                                                                                                                                                                                        
##  [412] "/wiki/Quinisext_Council"                                                                                                                                                                                            
##  [413] "/wiki/Ergica"                                                                                                                                                                                                       
##  [414] "/wiki/Muslim"                                                                                                                                                                                                       
##  [415] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=9"                                                                                                                                                  
##  [416] "/wiki/Dhimmi"                                                                                                                                                                                                       
##  [417] "/wiki/Omar_II"                                                                                                                                                                                                      
##  [418] "/wiki/Temple_Mount"                                                                                                                                                                                                 
##  [419] "#cite_note-25"                                                                                                                                                                                                      
##  [420] "/wiki/Byzantine_emperor"                                                                                                                                                                                            
##  [421] "/wiki/Leo_III_the_Isaurian"                                                                                                                                                                                         
##  [422] "/wiki/Jew"                                                                                                                                                                                                          
##  [423] "/wiki/Montanist"                                                                                                                                                                                                    
##  [424] "#cite_note-26"                                                                                                                                                                                                      
##  [425] "/wiki/Idriss_I"                                                                                                                                                                                                     
##  [426] "#cite_note-27"                                                                                                                                                                                                      
##  [427] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=10"                                                                                                                                                 
##  [428] "/wiki/Abbassid"                                                                                                                                                                                                     
##  [429] "/wiki/Caliph"                                                                                                                                                                                                       
##  [430] "/wiki/Harun_al-Rashid"                                                                                                                                                                                              
##  [431] "/wiki/Yellow_badge"                                                                                                                                                                                                 
##  [432] "/wiki/Agobard"                                                                                                                                                                                                      
##  [433] "/wiki/Archbishop_of_Lyons"                                                                                                                                                                                          
##  [434] "/wiki/Louis_the_Pious"                                                                                                                                                                                              
##  [435] "/wiki/Al-Mutawakkil"                                                                                                                                                                                                
##  [436] "/wiki/Dhimmi"                                                                                                                                                                                                       
##  [437] "/wiki/Ahmad_ibn_Tulun"                                                                                                                                                                                              
##  [438] "/wiki/Basil_I"                                                                                                                                                                                                      
##  [439] "/wiki/Byzantine_Jews"                                                                                                                                                                                               
##  [440] "#cite_note-28"                                                                                                                                                                                                      
##  [441] "/wiki/Basil_I"                                                                                                                                                                                                      
##  [442] "/wiki/Epanagoge"                                                                                                                                                                                                    
##  [443] "/wiki/Metz"                                                                                                                                                                                                         
##  [444] "#cite_note-29"                                                                                                                                                                                                      
##  [445] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=11"                                                                                                                                                 
##  [446] "/wiki/Charles_the_Simple"                                                                                                                                                                                           
##  [447] "/wiki/Narbonne"                                                                                                                                                                                                     
##  [448] "/wiki/Oria,_Apulia"                                                                                                                                                                                                 
##  [449] "/w/index.php?title=Shabbetai_Donnolo&action=edit&redlink=1"                                                                                                                                                         
##  [450] "/wiki/Romanos_I_Lekapenos"                                                                                                                                                                                          
##  [451] "#cite_note-30"                                                                                                                                                                                                      
##  [452] "#cite_note-Bari-31"                                                                                                                                                                                                 
##  [453] "/wiki/Byzantine_Jews"                                                                                                                                                                                               
##  [454] "/wiki/Khazaria"                                                                                                                                                                                                     
##  [455] "/wiki/Venice"                                                                                                                                                                                                       
##  [456] "/wiki/Nikon_the_Metanoeite"                                                                                                                                                                                         
##  [457] "#cite_note-32"                                                                                                                                                                                                      
##  [458] "/wiki/Barcelona"                                                                                                                                                                                                    
##  [459] "/wiki/Almanzor"                                                                                                                                                                                                     
##  [460] "#cite_note-33"                                                                                                                                                                                                      
##  [461] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=12"                                                                                                                                                 
##  [462] "/wiki/Caliph"                                                                                                                                                                                                       
##  [463] "/wiki/Al-Hakim_bi-Amr_Allah"                                                                                                                                                                                        
##  [464] "/wiki/Fatimid_Empire"                                                                                                                                                                                               
##  [465] "/wiki/Yellow_badge"                                                                                                                                                                                                 
##  [466] "#cite_note-34"                                                                                                                                                                                                      
##  [467] "/w/index.php?title=Ligomes&action=edit&redlink=1"                                                                                                                                                                   
##  [468] "/wiki/Abbasid"                                                                                                                                                                                                      
##  [469] "/wiki/Al-Qadir"                                                                                                                                                                                                     
##  [470] "/wiki/Baghdad_Manifesto"                                                                                                                                                                                            
##  [471] "#cite_note-35"                                                                                                                                                                                                      
##  [472] "/wiki/Sephardic_Jews"                                                                                                                                                                                               
##  [473] "/wiki/C%C3%B3rdoba,_Spain"                                                                                                                                                                                          
##  [474] "#cite_note-36"                                                                                                                                                                                                      
##  [475] "/wiki/Germany"                                                                                                                                                                                                      
##  [476] "/wiki/Henry_II,_Holy_Roman_Emperor"                                                                                                                                                                                 
##  [477] "/wiki/Mainz"                                                                                                                                                                                                        
##  [478] "/wiki/Samuel_ibn_Naghrela"                                                                                                                                                                                          
##  [479] "/wiki/Kairouan"                                                                                                                                                                                                     
##  [480] "#cite_note-37"                                                                                                                                                                                                      
##  [481] "/wiki/Host_desecration"                                                                                                                                                                                             
##  [482] "/wiki/Roman_Jews"                                                                                                                                                                                                   
##  [483] "#cite_note-38"                                                                                                                                                                                                      
##  [484] "/wiki/Raoul_Glaber"                                                                                                                                                                                                 
##  [485] "/wiki/Church_of_the_Holy_Sepulchre"                                                                                                                                                                                 
##  [486] "/wiki/Limoges"                                                                                                                                                                                                      
##  [487] "/wiki/Abul_Kamal_Tumin"                                                                                                                                                                                             
##  [488] "/wiki/Fez,_Morocco"                                                                                                                                                                                                 
##  [489] "/wiki/1033_Fez_massacre"                                                                                                                                                                                            
##  [490] "#cite_note-39"                                                                                                                                                                                                      
##  [491] "#cite_note-40"                                                                                                                                                                                                      
##  [492] "/wiki/Exilarch"                                                                                                                                                                                                     
##  [493] "/wiki/Hezekiah_Gaon"                                                                                                                                                                                                
##  [494] "/wiki/Buyyids"                                                                                                                                                                                                      
##  [495] "/wiki/Geonim"                                                                                                                                                                                                       
##  [496] "/wiki/Narbonne"                                                                                                                                                                                                     
##  [497] "/wiki/1066_Granada_massacre"                                                                                                                                                                                        
##  [498] "/wiki/Granada"                                                                                                                                                                                                      
##  [499] "/wiki/Crucifixion"                                                                                                                                                                                                  
##  [500] "/wiki/Jew"                                                                                                                                                                                                          
##  [501] "/wiki/Vizier"                                                                                                                                                                                                       
##  [502] "/wiki/Joseph_ibn_Naghrela"                                                                                                                                                                                          
##  [503] "#cite_note-41"                                                                                                                                                                                                      
##  [504] "/wiki/Girona"                                                                                                                                                                                                       
##  [505] "/wiki/Almoravides"                                                                                                                                                                                                  
##  [506] "/wiki/Yusuf_ibn_Tashfin"                                                                                                                                                                                            
##  [507] "/wiki/Golden_age_of_Jewish_culture_in_Spain"                                                                                                                                                                        
##  [508] "/wiki/Synod_of_Szabolcs"                                                                                                                                                                                            
##  [509] "/wiki/First_Crusade"                                                                                                                                                                                                
##  [510] "/wiki/Central_Europe"                                                                                                                                                                                               
##  [511] "/wiki/Emicho"                                                                                                                                                                                                       
##  [512] "/wiki/Rhineland"                                                                                                                                                                                                    
##  [513] "/wiki/Speyer"                                                                                                                                                                                                       
##  [514] "/wiki/Worms_massacre_(1096)"                                                                                                                                                                                        
##  [515] "/wiki/Mainz"                                                                                                                                                                                                        
##  [516] "/wiki/German_Crusade,_1096"                                                                                                                                                                                         
##  [517] "#cite_note-42"                                                                                                                                                                                                      
##  [518] "/wiki/Jerusalem"                                                                                                                                                                                                    
##  [519] "/wiki/History_of_the_Jews_and_the_Crusades#Massacre_of_Jerusalem"                                                                                                                                                   
##  [520] "#cite_note-tragic-43"                                                                                                                                                                                               
##  [521] "/wiki/Ibn_al-Qalanisi"                                                                                                                                                                                              
##  [522] "#cite_note-gibb-44"                                                                                                                                                                                                 
##  [523] "#cite_note-45"                                                                                                                                                                                                      
##  [524] "/wiki/Cairo_Geniza"                                                                                                                                                                                                 
##  [525] "/wiki/Shelomo_Dov_Goitein"                                                                                                                                                                                          
##  [526] "#cite_note-kedar63-46"                                                                                                                                                                                              
##  [527] "#cite_note-kedar63-46"                                                                                                                                                                                              
##  [528] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=13"                                                                                                                                                 
##  [529] "/wiki/Yusuf_ibn_Tashfin"                                                                                                                                                                                            
##  [530] "/wiki/Almoravid"                                                                                                                                                                                                    
##  [531] "/wiki/Yusuf_ibn_Tashfin"                                                                                                                                                                                            
##  [532] "/wiki/Battle_of_Ucl%C3%A9s_(1108)"                                                                                                                                                                                  
##  [533] "/wiki/Sviatopolk_II"                                                                                                                                                                                                
##  [534] "/wiki/Kievan_Rus%27"                                                                                                                                                                                                
##  [535] "#cite_note-47"                                                                                                                                                                                                      
##  [536] "/wiki/C%C3%B3rdoba,_Spain"                                                                                                                                                                                          
##  [537] "/wiki/The_Anarchy"                                                                                                                                                                                                  
##  [538] "/wiki/Ham,_France"                                                                                                                                                                                                  
##  [539] "#cite_note-48"                                                                                                                                                                                                      
##  [540] "/wiki/William_of_Norwich"                                                                                                                                                                                           
##  [541] "/wiki/Abd_al-Mu%27min"                                                                                                                                                                                              
##  [542] "/wiki/Sijilmasa"                                                                                                                                                                                                    
##  [543] "/wiki/Almohads"                                                                                                                                                                                                     
##  [544] "/wiki/Fez"                                                                                                                                                                                                          
##  [545] "/wiki/Marrakesh"                                                                                                                                                                                                    
##  [546] "#cite_note-Morocco-49"                                                                                                                                                                                              
##  [547] "/wiki/Muslim_Spain"                                                                                                                                                                                                 
##  [548] "#cite_note-Toledo_JE-50"                                                                                                                                                                                            
##  [549] "/wiki/Lucena,_C%C3%B3rdoba"                                                                                                                                                                                         
##  [550] "/wiki/Almohads"                                                                                                                                                                                                     
##  [551] "/wiki/Almohads"                                                                                                                                                                                                     
##  [552] "/wiki/Al-Andalus"                                                                                                                                                                                                   
##  [553] "/wiki/Granada"                                                                                                                                                                                                      
##  [554] "/wiki/Maimonides"                                                                                                                                                                                                   
##  [555] "/wiki/Fez,_Morocco"                                                                                                                                                                                                 
##  [556] "/wiki/Fustat"                                                                                                                                                                                                       
##  [557] "/wiki/Cairo"                                                                                                                                                                                                        
##  [558] "#cite_note-51"                                                                                                                                                                                                      
##  [559] "/wiki/Yemen"                                                                                                                                                                                                        
##  [560] "/wiki/Almohad"                                                                                                                                                                                                      
##  [561] "/wiki/Fez"                                                                                                                                                                                                          
##  [562] "/wiki/Maimonides"                                                                                                                                                                                                   
##  [563] "#cite_note-Fez-52"                                                                                                                                                                                                  
##  [564] "/wiki/Harold_of_Gloucester"                                                                                                                                                                                         
##  [565] "/wiki/William_of_Norwich"                                                                                                                                                                                           
##  [566] "/wiki/Blois"                                                                                                                                                                                                        
##  [567] "/wiki/Bologna"                                                                                                                                                                                                      
##  [568] "#cite_note-53"                                                                                                                                                                                                      
##  [569] "/wiki/Mieszko_III"                                                                                                                                                                                                  
##  [570] "/wiki/Teruel"                                                                                                                                                                                                       
##  [571] "/wiki/Third_Lateran_Council"                                                                                                                                                                                        
##  [572] "/wiki/Boppard"                                                                                                                                                                                                      
##  [573] "/wiki/Philip_Augustus_of_France"                                                                                                                                                                                    
##  [574] "/wiki/Paris"                                                                                                                                                                                                        
##  [575] "/wiki/Assize_of_Arms_of_1181"                                                                                                                                                                                       
##  [576] "/wiki/Orl%C3%A9ans"                                                                                                                                                                                                 
##  [577] "#cite_note-54"                                                                                                                                                                                                      
##  [578] "/wiki/Saladin_tithe"                                                                                                                                                                                                
##  [579] "/wiki/Holy_Roman_Emperor"                                                                                                                                                                                           
##  [580] "/wiki/Frederick_I_Barbarossa"                                                                                                                                                                                       
##  [581] "/wiki/Richard_I_of_England"                                                                                                                                                                                         
##  [582] "#cite_note-55"                                                                                                                                                                                                      
##  [583] "/wiki/York"                                                                                                                                                                                                         
##  [584] "/wiki/Third_Crusade"                                                                                                                                                                                                
##  [585] "#cite_note-56"                                                                                                                                                                                                      
##  [586] "/wiki/Saladdin"                                                                                                                                                                                                     
##  [587] "/wiki/Jerusalem"                                                                                                                                                                                                    
##  [588] "/wiki/Crusade"                                                                                                                                                                                                      
##  [589] "/wiki/Bray-sur-Seine"                                                                                                                                                                                               
##  [590] "#cite_note-57"                                                                                                                                                                                                      
##  [591] "#cite_note-58"                                                                                                                                                                                                      
##  [592] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=14"                                                                                                                                                 
##  [593] "/wiki/File:Regensburger_Dom_Judensau_2004.jpg"                                                                                                                                                                      
##  [594] "/wiki/File:Regensburger_Dom_Judensau_2004.jpg"                                                                                                                                                                      
##  [595] "/wiki/Regensburg"                                                                                                                                                                                                   
##  [596] "/wiki/Judensau"                                                                                                                                                                                                     
##  [597] "/wiki/Constantinople"                                                                                                                                                                                               
##  [598] "/wiki/Siege_of_Constantinople_(1203)"                                                                                                                                                                               
##  [599] "/wiki/Papacy"                                                                                                                                                                                                       
##  [600] "#cite_note-59"                                                                                                                                                                                                      
##  [601] "#cite_note-Popes&Jews-60"                                                                                                                                                                                           
##  [602] "/wiki/Halle_(Saale)"                                                                                                                                                                                                
##  [603] "#cite_note-Halle-61"                                                                                                                                                                                                
##  [604] "/wiki/B%C3%A9ziers"                                                                                                                                                                                                 
##  [605] "#cite_note-62"                                                                                                                                                                                                      
##  [606] "/wiki/Raymond_VI"                                                                                                                                                                                                   
##  [607] "/wiki/Count_of_Toulouse"                                                                                                                                                                                            
##  [608] "/wiki/King_John_of_England"                                                                                                                                                                                         
##  [609] "/wiki/Toledo,_Spain"                                                                                                                                                                                                
##  [610] "/wiki/Fourth_Lateran_Council"                                                                                                                                                                                       
##  [611] "/wiki/Pope_Innocent_III"                                                                                                                                                                                            
##  [612] "/wiki/Judenhut"                                                                                                                                                                                                     
##  [613] "/wiki/Fourth_Lateran_Council"                                                                                                                                                                                       
##  [614] "/wiki/Pope_Innocent_III"                                                                                                                                                                                            
##  [615] "#cite_note-63"                                                                                                                                                                                                      
##  [616] "/wiki/Alix_de_Montmorency"                                                                                                                                                                                          
##  [617] "/wiki/Toulouse"                                                                                                                                                                                                     
##  [618] "/wiki/Samuel_of_Speyer"                                                                                                                                                                                             
##  [619] "#cite_note-64"                                                                                                                                                                                                      
##  [620] "/wiki/Oxford"                                                                                                                                                                                                       
##  [621] "/wiki/Archbishop_of_Canterbury"                                                                                                                                                                                     
##  [622] "/wiki/Stephen_Langton"                                                                                                                                                                                              
##  [623] "/wiki/Louis_VIII_of_France"                                                                                                                                                                                         
##  [624] "/wiki/Fourth_Lateran_Council"                                                                                                                                                                                       
##  [625] "/wiki/Raymond_VII"                                                                                                                                                                                                  
##  [626] "/wiki/Count_of_Toulouse"                                                                                                                                                                                            
##  [627] "/wiki/Al-Kamil"                                                                                                                                                                                                     
##  [628] "/wiki/Theodore_Komnenos_Doukas"                                                                                                                                                                                     
##  [629] "/wiki/John_Asen_II"                                                                                                                                                                                                 
##  [630] "/wiki/Marrakesh"                                                                                                                                                                                                    
##  [631] "/wiki/Moroccan_Jews"                                                                                                                                                                                                
##  [632] "/wiki/Ritual_murder"                                                                                                                                                                                                
##  [633] "/wiki/Blood_libel"                                                                                                                                                                                                  
##  [634] "/wiki/Pope_Innocent_IV"                                                                                                                                                                                             
##  [635] "/wiki/Ritual_murder"                                                                                                                                                                                                
##  [636] "/wiki/Blood_libel"                                                                                                                                                                                                  
##  [637] "/wiki/Pope_Gregory_X"                                                                                                                                                                                               
##  [638] "#cite_note-65"                                                                                                                                                                                                      
##  [639] "/wiki/Crusade"                                                                                                                                                                                                      
##  [640] "/wiki/Anjou"                                                                                                                                                                                                        
##  [641] "/wiki/Poitou"                                                                                                                                                                                                       
##  [642] "#cite_note-66"                                                                                                                                                                                                      
##  [643] "#cite_note-67"                                                                                                                                                                                                      
##  [644] "/wiki/Brittany"                                                                                                                                                                                                     
##  [645] "/wiki/Disputation_of_Paris"                                                                                                                                                                                         
##  [646] "/wiki/Pope_Gregory_IX"                                                                                                                                                                                              
##  [647] "/wiki/Talmud"                                                                                                                                                                                                       
##  [648] "/wiki/Blasphemy"                                                                                                                                                                                                    
##  [649] "/wiki/Jesus"                                                                                                                                                                                                        
##  [650] "/wiki/Blessed_Virgin_Mary"                                                                                                                                                                                          
##  [651] "#cite_note-68"                                                                                                                                                                                                      
##  [652] "/wiki/James_I_of_Aragon"                                                                                                                                                                                            
##  [653] "/wiki/Host_Desecration"                                                                                                                                                                                             
##  [654] "/wiki/Beelitz"                                                                                                                                                                                                      
##  [655] "/wiki/Kitzingen"                                                                                                                                                                                                    
##  [656] "#cite_note-69"                                                                                                                                                                                                      
##  [657] "/wiki/Pope_Innocent_IV"                                                                                                                                                                                             
##  [658] "/wiki/Louis_IX_of_France"                                                                                                                                                                                           
##  [659] "/wiki/Alphonse_of_Poitiers"                                                                                                                                                                                         
##  [660] "/wiki/Poitou"                                                                                                                                                                                                       
##  [661] "/wiki/Saragossa"                                                                                                                                                                                                    
##  [662] "/wiki/Saint_Dominguito_del_Val"                                                                                                                                                                                     
##  [663] "/wiki/Ritual_murder"                                                                                                                                                                                                
##  [664] "/wiki/Seo_de_San_Salvador"                                                                                                                                                                                          
##  [665] "/wiki/Henry_III_of_England"                                                                                                                                                                                         
##  [666] "#cite_note-70"                                                                                                                                                                                                      
##  [667] "/wiki/Badge_of_shame"                                                                                                                                                                                               
##  [668] "/wiki/Italian_Jews"                                                                                                                                                                                                 
##  [669] "/wiki/Cave_of_the_Patriarchs"                                                                                                                                                                                       
##  [670] "/wiki/Thomas_Aquinas"                                                                                                                                                                                               
##  [671] "/wiki/Invincibly_ignorant"                                                                                                                                                                                          
##  [672] "/wiki/Disputation"                                                                                                                                                                                                  
##  [673] "/wiki/Barcelona"                                                                                                                                                                                                    
##  [674] "/wiki/Pope_Clement_IV"                                                                                                                                                                                              
##  [675] "/wiki/Simon_de_Montfort,_6th_Earl_of_Leicester"                                                                                                                                                                     
##  [676] "#cite_note-71"                                                                                                                                                                                                      
##  [677] "/wiki/Abraham_of_Augsburg"                                                                                                                                                                                          
##  [678] "/wiki/Torture"                                                                                                                                                                                                      
##  [679] "/wiki/Death_by_burning"                                                                                                                                                                                             
##  [680] "/wiki/Vienna"                                                                                                                                                                                                       
##  [681] "/wiki/Judenhut"                                                                                                                                                                                                     
##  [682] "/wiki/Yellow_badge"                                                                                                                                                                                                 
##  [683] "/wiki/Breslau"                                                                                                                                                                                                      
##  [684] "/wiki/Pforzheim"                                                                                                                                                                                                    
##  [685] "/wiki/Edward_I_of_England"                                                                                                                                                                                          
##  [686] "/wiki/Statute_of_the_Jewry"                                                                                                                                                                                         
##  [687] "/wiki/Yellow_badge"                                                                                                                                                                                                 
##  [688] "/wiki/Dominican_Order"                                                                                                                                                                                              
##  [689] "/wiki/Fez"                                                                                                                                                                                                          
##  [690] "#cite_note-google-72"                                                                                                                                                                                               
##  [691] "/wiki/Pope_Nicholas_III"                                                                                                                                                                                            
##  [692] "/wiki/Real_estate"                                                                                                                                                                                                  
##  [693] "/wiki/Archbishop_of_Canterbury"                                                                                                                                                                                     
##  [694] "/wiki/Philip_III_of_France"                                                                                                                                                                                         
##  [695] "/wiki/Mainz"                                                                                                                                                                                                        
##  [696] "#cite_note-73"                                                                                                                                                                                                      
##  [697] "/wiki/Blood_libel"                                                                                                                                                                                                  
##  [698] "/wiki/Munich,_Germany"                                                                                                                                                                                              
##  [699] "/wiki/Oberwesel"                                                                                                                                                                                                    
##  [700] "/wiki/Troyes"                                                                                                                                                                                                       
##  [701] "#cite_note-74"                                                                                                                                                                                                      
##  [702] "/wiki/Bonn"                                                                                                                                                                                                         
##  [703] "/wiki/Germany"                                                                                                                                                                                                      
##  [704] "#cite_note-75"                                                                                                                                                                                                      
##  [705] "/wiki/Gascony"                                                                                                                                                                                                      
##  [706] "/wiki/Anjou"                                                                                                                                                                                                        
##  [707] "/wiki/Edict_of_Expulsion"                                                                                                                                                                                           
##  [708] "/wiki/Edward_I_of_England"                                                                                                                                                                                          
##  [709] "/wiki/England"                                                                                                                                                                                                      
##  [710] "/wiki/The_Crown"                                                                                                                                                                                                    
##  [711] "/wiki/Usury"                                                                                                                                                                                                        
##  [712] "/wiki/Host_desecration"                                                                                                                                                                                             
##  [713] "#cite_note-76"                                                                                                                                                                                                      
##  [714] "/wiki/Baghdad"                                                                                                                                                                                                      
##  [715] "/wiki/Philip_IV_of_France"                                                                                                                                                                                          
##  [716] "/wiki/Vizier"                                                                                                                                                                                                       
##  [717] "/wiki/Sa%27ad_al-Dawla"                                                                                                                                                                                             
##  [718] "/wiki/Persian_Jews"                                                                                                                                                                                                 
##  [719] "/wiki/Italian_Jewish"                                                                                                                                                                                               
##  [720] "/wiki/Host_desecration"                                                                                                                                                                                             
##  [721] "/wiki/German_Jews"                                                                                                                                                                                                  
##  [722] "/wiki/Adolf,_King_of_Germany"                                                                                                                                                                                       
##  [723] "/wiki/Albert_I_of_Germany"                                                                                                                                                                                          
##  [724] "/wiki/Rintfleisch-Pogrom"                                                                                                                                                                                           
##  [725] "#cite_note-77"                                                                                                                                                                                                      
##  [726] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=15"                                                                                                                                                 
##  [727] "/wiki/Egypt"                                                                                                                                                                                                        
##  [728] "/wiki/Bilbeis"                                                                                                                                                                                                      
##  [729] "#cite_note-78"                                                                                                                                                                                                      
##  [730] "/wiki/Philip_IV_of_France"                                                                                                                                                                                          
##  [731] "/wiki/Louis_X_of_France"                                                                                                                                                                                            
##  [732] "/wiki/Frederick_II_of_Aragon"                                                                                                                                                                                       
##  [733] "/wiki/Yellow_badge"                                                                                                                                                                                                 
##  [734] "/wiki/Rashid-al-Din_Hamadani"                                                                                                                                                                                       
##  [735] "/wiki/Persian_Jewish"                                                                                                                                                                                               
##  [736] "/wiki/Islam"                                                                                                                                                                                                        
##  [737] "/wiki/%C3%96ljeit%C3%BC"                                                                                                                                                                                            
##  [738] "/wiki/Breslau"                                                                                                                                                                                                      
##  [739] "#cite_note-Breslau-79"                                                                                                                                                                                              
##  [740] "/wiki/Milan"                                                                                                                                                                                                        
##  [741] "#cite_note-Milan-80"                                                                                                                                                                                                
##  [742] "/wiki/Shepherds%27_Crusade_(1320)"                                                                                                                                                                                  
##  [743] "/wiki/Henry_II_of_Castile"                                                                                                                                                                                          
##  [744] "/wiki/Yellow_badge"                                                                                                                                                                                                 
##  [745] "/wiki/1321_leper_scare"                                                                                                                                                                                             
##  [746] "/wiki/Philip_V_of_France"                                                                                                                                                                                           
##  [747] "/wiki/Damascus"                                                                                                                                                                                                     
##  [748] "#cite_note-Damascus-81"                                                                                                                                                                                             
##  [749] "/wiki/Charles_IV_of_France"                                                                                                                                                                                         
##  [750] "/wiki/Anti-Jewish"                                                                                                                                                                                                  
##  [751] "/wiki/Friar"                                                                                                                                                                                                        
##  [752] "/wiki/Aaron_ben_Zerah"                                                                                                                                                                                              
##  [753] "/wiki/Baghdad"                                                                                                                                                                                                      
##  [754] "/wiki/Franconia"                                                                                                                                                                                                    
##  [755] "/wiki/Alsace"                                                                                                                                                                                                       
##  [756] "/wiki/Arnold_von_Uissigheim"                                                                                                                                                                                        
##  [757] "/wiki/Aleinu"                                                                                                                                                                                                       
##  [758] "#cite_note-82"                                                                                                                                                                                                      
##  [759] "/wiki/Host_desecration"                                                                                                                                                                                             
##  [760] "/wiki/Eucharist"                                                                                                                                                                                                    
##  [761] "#cite_note-83"                                                                                                                                                                                                      
##  [762] "/wiki/Casimir_the_Great"                                                                                                                                                                                            
##  [763] "#cite_note-84"                                                                                                                                                                                                      
##  [764] "/wiki/Black_Death_persecutions"                                                                                                                                                                                     
##  [765] "/wiki/Basel_massacre"                                                                                                                                                                                               
##  [766] "/wiki/File:1349_burning_of_Jews-European_chronicle_on_Black_Death.jpg"                                                                                                                                              
##  [767] "/wiki/File:1349_burning_of_Jews-European_chronicle_on_Black_Death.jpg"                                                                                                                                              
##  [768] "/wiki/Black_Death"                                                                                                                                                                                                  
##  [769] "/wiki/Erfurt_massacre"                                                                                                                                                                                              
##  [770] "/wiki/Black_Death_Jewish_persecutions"                                                                                                                                                                              
##  [771] "/wiki/Black_Death_Jewish_persecutions"                                                                                                                                                                              
##  [772] "/wiki/Zurich"                                                                                                                                                                                                       
##  [773] "/wiki/Black_Death_Jewish_persecutions"                                                                                                                                                                              
##  [774] "/wiki/Worms,_Germany"                                                                                                                                                                                               
##  [775] "/wiki/Black_Death_Jewish_persecutions"                                                                                                                                                                              
##  [776] "/wiki/Berlin"                                                                                                                                                                                                       
##  [777] "/wiki/Black_Death_Jewish_persecutions"                                                                                                                                                                              
##  [778] "#cite_note-Berlin-85"                                                                                                                                                                                               
##  [779] "/wiki/Breslau"                                                                                                                                                                                                      
##  [780] "/wiki/Black_Death_Jewish_persecutions"                                                                                                                                                                              
##  [781] "#cite_note-Breslau-79"                                                                                                                                                                                              
##  [782] "/wiki/Black_Death_Jewish_persecutions"                                                                                                                                                                              
##  [783] "#cite_note-86"                                                                                                                                                                                                      
##  [784] "/wiki/Strasbourg_massacre"                                                                                                                                                                                          
##  [785] "/wiki/Black_Death_persecutions"                                                                                                                                                                                     
##  [786] "/wiki/Mainz"                                                                                                                                                                                                        
##  [787] "/wiki/Black_Death_Jewish_persecutions"                                                                                                                                                                              
##  [788] "#cite_note-87"                                                                                                                                                                                                      
##  [789] "/wiki/Brussels"                                                                                                                                                                                                     
##  [790] "/wiki/Black_Death_Jewish_persecutions"                                                                                                                                                                              
##  [791] "/wiki/History_of_the_Jews_in_Bulgaria"                                                                                                                                                                              
##  [792] "/wiki/Spain"                                                                                                                                                                                                        
##  [793] "/wiki/Charles_V_of_France"                                                                                                                                                                                          
##  [794] "/wiki/John_II_of_France"                                                                                                                                                                                            
##  [795] "/wiki/Breslau"                                                                                                                                                                                                      
##  [796] "#cite_note-Breslau-79"                                                                                                                                                                                              
##  [797] "/wiki/Miranda_de_Ebro"                                                                                                                                                                                              
##  [798] "/wiki/Peter_of_Castile"                                                                                                                                                                                             
##  [799] "/wiki/Sephardic_Jew"                                                                                                                                                                                                
##  [800] "#cite_note-88"                                                                                                                                                                                                      
##  [801] "/wiki/Lorraine"                                                                                                                                                                                                     
##  [802] "/wiki/Host_desecration"                                                                                                                                                                                             
##  [803] "/wiki/Barcelona"                                                                                                                                                                                                    
##  [804] "/wiki/Toledo,_Spain"                                                                                                                                                                                                
##  [805] "/wiki/Brussels_massacre"                                                                                                                                                                                            
##  [806] "/wiki/Host_desecration"                                                                                                                                                                                             
##  [807] "/wiki/Hungary"                                                                                                                                                                                                      
##  [808] "/wiki/Greece"                                                                                                                                                                                                       
##  [809] "#cite_note-89"                                                                                                                                                                                                      
##  [810] "/wiki/Host_desecration"                                                                                                                                                                                             
##  [811] "/wiki/Teruel"                                                                                                                                                                                                       
##  [812] "/wiki/Huesca"                                                                                                                                                                                                       
##  [813] "#cite_note-Host-90"                                                                                                                                                                                                 
##  [814] "/wiki/Noerdlingen"                                                                                                                                                                                                  
##  [815] "#cite_note-91"                                                                                                                                                                                                      
##  [816] "/wiki/Wenceslaus,_Holy_Roman_Emperor"                                                                                                                                                                               
##  [817] "/wiki/Swabian_League"                                                                                                                                                                                               
##  [818] "/wiki/Strasbourg"                                                                                                                                                                                                   
##  [819] "/wiki/Prague"                                                                                                                                                                                                       
##  [820] "/wiki/Holy_Week"                                                                                                                                                                                                    
##  [821] "/wiki/Ferrand_Martinez"                                                                                                                                                                                             
##  [822] "/wiki/Ferrand_Martinez"                                                                                                                                                                                             
##  [823] "/wiki/Castile_(historical_region)"                                                                                                                                                                                  
##  [824] "/wiki/Valencia"                                                                                                                                                                                                     
##  [825] "/wiki/Catalonia"                                                                                                                                                                                                    
##  [826] "/wiki/Aragon"                                                                                                                                                                                                       
##  [827] "/wiki/Pogrom"                                                                                                                                                                                                       
##  [828] "/wiki/Toledo,_Spain"                                                                                                                                                                                                
##  [829] "/wiki/Seventeenth_of_Tammuz"                                                                                                                                                                                        
##  [830] "/wiki/Israel_Alnaqua"                                                                                                                                                                                               
##  [831] "/wiki/Valencia"                                                                                                                                                                                                     
##  [832] "/wiki/Palma,_Majorca"                                                                                                                                                                                               
##  [833] "/wiki/Barcelona"                                                                                                                                                                                                    
##  [834] "/wiki/Damascus"                                                                                                                                                                                                     
##  [835] "#cite_note-Damascus-81"                                                                                                                                                                                             
##  [836] "/wiki/Sicilian_Jews"                                                                                                                                                                                                
##  [837] "/wiki/Erice"                                                                                                                                                                                                        
##  [838] "/wiki/Catania"                                                                                                                                                                                                      
##  [839] "/wiki/Syracuse,_Sicily"                                                                                                                                                                                             
##  [840] "#cite_note-Sicily-92"                                                                                                                                                                                               
##  [841] "/wiki/Charles_VI_of_France"                                                                                                                                                                                         
##  [842] "/wiki/Jewish_ghettos"                                                                                                                                                                                               
##  [843] "/wiki/History_of_the_Jews_in_Slovenia"                                                                                                                                                                              
##  [844] "/wiki/Host_desecration"                                                                                                                                                                                             
##  [845] "/wiki/Pozna%C5%84"                                                                                                                                                                                                  
##  [846] "/wiki/Prague"                                                                                                                                                                                                       
##  [847] "/wiki/Yom-Tov_Lipmann-Muhlhausen"                                                                                                                                                                                   
##  [848] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=16"                                                                                                                                                 
##  [849] "/wiki/Host_desecration"                                                                                                                                                                                             
##  [850] "#cite_note-Glogau-93"                                                                                                                                                                                               
##  [851] "/wiki/Salzburg"                                                                                                                                                                                                     
##  [852] "/wiki/Hallein"                                                                                                                                                                                                      
##  [853] "/wiki/Host_desecration"                                                                                                                                                                                             
##  [854] "#cite_note-Host-90"                                                                                                                                                                                                 
##  [855] "/wiki/Krak%C3%B3w"                                                                                                                                                                                                  
##  [856] "/wiki/Dominican_Order"                                                                                                                                                                                              
##  [857] "/wiki/Vincent_Ferrer"                                                                                                                                                                                               
##  [858] "/wiki/Disputation"                                                                                                                                                                                                  
##  [859] "/wiki/Tortosa"                                                                                                                                                                                                      
##  [860] "/wiki/Antipope_Benedict_XIII"                                                                                                                                                                                       
##  [861] "/wiki/Lyon"                                                                                                                                                                                                         
##  [862] "/wiki/Vienna"                                                                                                                                                                                                       
##  [863] "/wiki/History_of_the_Jews_in_Vienna"                                                                                                                                                                                
##  [864] "/wiki/Pope_Martin_V"                                                                                                                                                                                                
##  [865] "/wiki/Christianity"                                                                                                                                                                                                 
##  [866] "/wiki/Judaism"                                                                                                                                                                                                      
##  [867] "/wiki/Fraud"                                                                                                                                                                                                        
##  [868] "/wiki/Zurich"                                                                                                                                                                                                       
##  [869] "#cite_note-Zurich-94"                                                                                                                                                                                               
##  [870] "/wiki/Iglau"                                                                                                                                                                                                        
##  [871] "/wiki/Hussites"                                                                                                                                                                                                     
##  [872] "#cite_note-Iglau-95"                                                                                                                                                                                                
##  [873] "/wiki/Bern"                                                                                                                                                                                                         
##  [874] "#cite_note-Bern-96"                                                                                                                                                                                                 
##  [875] "/wiki/Fribourg"                                                                                                                                                                                                     
##  [876] "#cite_note-97"                                                                                                                                                                                                      
##  [877] "/wiki/Aix-en-Provence"                                                                                                                                                                                              
##  [878] "#cite_note-98"                                                                                                                                                                                                      
##  [879] "/wiki/Majorca"                                                                                                                                                                                                      
##  [880] "#cite_note-Zurich-94"                                                                                                                                                                                               
##  [881] "/wiki/Augsburg"                                                                                                                                                                                                     
##  [882] "/wiki/D%C3%BCsseldorf"                                                                                                                                                                                              
##  [883] "/wiki/Mellah"                                                                                                                                                                                                       
##  [884] "/wiki/Morocco"                                                                                                                                                                                                      
##  [885] "/wiki/Glogau"                                                                                                                                                                                                       
##  [886] "#cite_note-Glogau-93"                                                                                                                                                                                               
##  [887] "#cite_note-Bavaria-99"                                                                                                                                                                                              
##  [888] "/wiki/Utrecht"                                                                                                                                                                                                      
##  [889] "#cite_note-Netherlands-100"                                                                                                                                                                                         
##  [890] "/wiki/Casimir_IV_Jagiellon"                                                                                                                                                                                         
##  [891] "/wiki/Poland"                                                                                                                                                                                                       
##  [892] "/wiki/Racial_purity"                                                                                                                                                                                                
##  [893] "/wiki/Converso"                                                                                                                                                                                                     
##  [894] "/wiki/Pope_Nicholas_V"                                                                                                                                                                                              
##  [895] "/wiki/Louis_IX,_Duke_of_Bavaria"                                                                                                                                                                                    
##  [896] "/wiki/Host_desecration"                                                                                                                                                                                             
##  [897] "#cite_note-101"                                                                                                                                                                                                     
##  [898] "/wiki/Erfurt"                                                                                                                                                                                                       
##  [899] "/wiki/Inquisition"                                                                                                                                                                                                  
##  [900] "/wiki/Marrano"                                                                                                                                                                                                      
##  [901] "/wiki/Crypto-Judaism"                                                                                                                                                                                               
##  [902] "/wiki/1465_Moroccan_revolt"                                                                                                                                                                                         
##  [903] "/wiki/Marinid"                                                                                                                                                                                                      
##  [904] "/wiki/Vizier"                                                                                                                                                                                                       
##  [905] "/wiki/Fes"                                                                                                                                                                                                          
##  [906] "#cite_note-102"                                                                                                                                                                                                     
##  [907] "#cite_note-103"                                                                                                                                                                                                     
##  [908] "/wiki/Qaitbay"                                                                                                                                                                                                      
##  [909] "#cite_note-104"                                                                                                                                                                                                     
##  [910] "/wiki/Bavaria"                                                                                                                                                                                                      
##  [911] "/wiki/Bulgaria"                                                                                                                                                                                                     
##  [912] "#cite_note-Sofia-105"                                                                                                                                                                                               
##  [913] "/wiki/Marranos"                                                                                                                                                                                                     
##  [914] "/wiki/Valladolid"                                                                                                                                                                                                   
##  [915] "/wiki/C%C3%B3rdoba,_Spain"                                                                                                                                                                                          
##  [916] "/wiki/Segovia"                                                                                                                                                                                                      
##  [917] "/wiki/Ciudad_Real"                                                                                                                                                                                                  
##  [918] "/w/index.php?title=Assumption_day&action=edit&redlink=1"                                                                                                                                                            
##  [919] "/wiki/Modica"                                                                                                                                                                                                       
##  [920] "/wiki/Sicilian_Jews"                                                                                                                                                                                                
##  [921] "/wiki/La_Giudecca"                                                                                                                                                                                                  
##  [922] "/wiki/File:Schedel_judenfeindlichkeit.jpg"                                                                                                                                                                          
##  [923] "/wiki/File:Schedel_judenfeindlichkeit.jpg"                                                                                                                                                                          
##  [924] "/wiki/Simon_of_Trent"                                                                                                                                                                                               
##  [925] "/wiki/Giovanni_da_Capistrano"                                                                                                                                                                                       
##  [926] "/wiki/Franciscan"                                                                                                                                                                                                   
##  [927] "/wiki/Bernardine_of_Feltre"                                                                                                                                                                                         
##  [928] "/wiki/Simon_of_Trent"                                                                                                                                                                                               
##  [929] "/wiki/Pope_Sixtus_V"                                                                                                                                                                                                
##  [930] "/wiki/Pope_Paul_VI"                                                                                                                                                                                                 
##  [931] "/wiki/Passau"                                                                                                                                                                                                       
##  [932] "#cite_note-Bavaria-99"                                                                                                                                                                                              
##  [933] "/wiki/Spanish_Inquisition"                                                                                                                                                                                          
##  [934] "/wiki/History_of_the_Jews_in_Arles"                                                                                                                                                                                 
##  [935] "/wiki/Heresy"                                                                                                                                                                                                       
##  [936] "/wiki/Judaizer"                                                                                                                                                                                                     
##  [937] "/wiki/Eastern_Orthodoxy"                                                                                                                                                                                            
##  [938] "/wiki/Muscovy"                                                                                                                                                                                                      
##  [939] "/wiki/Tom%C3%A1s_de_Torquemada"                                                                                                                                                                                     
##  [940] "/wiki/Salamanca"                                                                                                                                                                                                    
##  [941] "/wiki/Geneva"                                                                                                                                                                                                       
##  [942] "/wiki/Blood_libel"                                                                                                                                                                                                  
##  [943] "/wiki/Holy_Child_of_La_Guardia"                                                                                                                                                                                     
##  [944] "/wiki/Muhammad_al-Maghili"                                                                                                                                                                                          
##  [945] "/wiki/Tlemcen"                                                                                                                                                                                                      
##  [946] "/wiki/Tuat"                                                                                                                                                                                                         
##  [947] "#cite_note-Tuat-106"                                                                                                                                                                                                
##  [948] "/wiki/Ferdinand_II_of_Aragon"                                                                                                                                                                                       
##  [949] "/wiki/Isabella_I_of_Castile"                                                                                                                                                                                        
##  [950] "/wiki/Alhambra_decree"                                                                                                                                                                                              
##  [951] "/wiki/Land_of_Israel"                                                                                                                                                                                               
##  [952] "/wiki/Mecklenburg"                                                                                                                                                                                                  
##  [953] "/wiki/Askia_Mohammad_I"                                                                                                                                                                                             
##  [954] "/wiki/Muhammad_al-Maghili"                                                                                                                                                                                          
##  [955] "/wiki/Timbuktu"                                                                                                                                                                                                     
##  [956] "/wiki/John_II_of_Portugal"                                                                                                                                                                                          
##  [957] "/wiki/S%C3%A3o_Tom%C3%A9"                                                                                                                                                                                           
##  [958] "/wiki/Sicily"                                                                                                                                                                                                       
##  [959] "/wiki/Trnava"                                                                                                                                                                                                       
##  [960] "/wiki/Jan_I_Olbracht"                                                                                                                                                                                               
##  [961] "/wiki/Kazimierz"                                                                                                                                                                                                    
##  [962] "/wiki/Lithuania"                                                                                                                                                                                                    
##  [963] "#cite_note-Grodno-107"                                                                                                                                                                                              
##  [964] "/wiki/Lecce"                                                                                                                                                                                                        
##  [965] "/wiki/History_of_the_Jews_in_Naples"                                                                                                                                                                                
##  [966] "/wiki/Styria"                                                                                                                                                                                                       
##  [967] "#cite_note-108"                                                                                                                                                                                                     
##  [968] "/wiki/Forced_conversion"                                                                                                                                                                                            
##  [969] "/wiki/Portugal"                                                                                                                                                                                                     
##  [970] "/wiki/Graz"                                                                                                                                                                                                         
##  [971] "/wiki/Manuel_I_of_Portugal"                                                                                                                                                                                         
##  [972] "/wiki/Alexander_of_Poland"                                                                                                                                                                                          
##  [973] "/wiki/Lithuania"                                                                                                                                                                                                    
##  [974] "/wiki/French_Jews"                                                                                                                                                                                                  
##  [975] "/wiki/Nuremberg"                                                                                                                                                                                                    
##  [976] "/wiki/Verona"                                                                                                                                                                                                       
##  [977] "#cite_note-109"                                                                                                                                                                                                     
##  [978] "/wiki/New_Christians"                                                                                                                                                                                               
##  [979] "#cite_note-110"                                                                                                                                                                                                     
##  [980] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=17"                                                                                                                                                 
##  [981] "/wiki/File:Wormsjews.jpg"                                                                                                                                                                                           
##  [982] "/wiki/File:Wormsjews.jpg"                                                                                                                                                                                           
##  [983] "/wiki/Worms,_Germany"                                                                                                                                                                                               
##  [984] "/wiki/Yellow_badge"                                                                                                                                                                                                 
##  [985] "/wiki/Stereotype"                                                                                                                                                                                                   
##  [986] "/wiki/French_Jews"                                                                                                                                                                                                  
##  [987] "/wiki/Plze%C5%88"                                                                                                                                                                                                   
##  [988] "/wiki/Host_desecration"                                                                                                                                                                                             
##  [989] "#cite_note-Pilsen-111"                                                                                                                                                                                              
##  [990] "/wiki/Moscow"                                                                                                                                                                                                       
##  [991] "#cite_note-112"                                                                                                                                                                                                     
##  [992] "/wiki/%C4%8Cesk%C3%A9_Bud%C4%9Bjovice"                                                                                                                                                                              
##  [993] "/wiki/Marrano"                                                                                                                                                                                                      
##  [994] "/wiki/Lisbon"                                                                                                                                                                                                       
##  [995] "/wiki/Portugal"                                                                                                                                                                                                     
##  [996] "/wiki/Johannes_Pfefferkorn"                                                                                                                                                                                         
##  [997] "/wiki/Maximilian_I,_Holy_Roman_Emperor"                                                                                                                                                                             
##  [998] "/wiki/Hebrew_Bible"                                                                                                                                                                                                 
##  [999] "/wiki/Frankfurt"                                                                                                                                                                                                    
## [1000] "/wiki/Brandenburg,_Germany"                                                                                                                                                                                         
## [1001] "/wiki/Host_desecration"                                                                                                                                                                                             
## [1002] "/wiki/Berlin"                                                                                                                                                                                                       
## [1003] "/wiki/Calabria"                                                                                                                                                                                                     
## [1004] "/wiki/Jews"                                                                                                                                                                                                         
## [1005] "/wiki/New_Christians"                                                                                                                                                                                               
## [1006] "#cite_note-Calabria-113"                                                                                                                                                                                            
## [1007] "/wiki/Naples"                                                                                                                                                                                                       
## [1008] "/wiki/Conegliano"                                                                                                                                                                                                   
## [1009] "#cite_note-114"                                                                                                                                                                                                     
## [1010] "/wiki/History_of_the_Jews_in_Apulia"                                                                                                                                                                                
## [1011] "/wiki/Mittelberg"                                                                                                                                                                                                   
## [1012] "/wiki/Host_desecration"                                                                                                                                                                                             
## [1013] "#cite_note-115"                                                                                                                                                                                                     
## [1014] "/wiki/Genoa"                                                                                                                                                                                                        
## [1015] "#cite_note-Genoa-116"                                                                                                                                                                                               
## [1016] "/wiki/Ljubljana"                                                                                                                                                                                                    
## [1017] "#cite_note-Ljubljana-117"                                                                                                                                                                                           
## [1018] "/wiki/Ghetto"                                                                                                                                                                                                       
## [1019] "/wiki/Venice"                                                                                                                                                                                                       
## [1020] "/wiki/Hebron"                                                                                                                                                                                                       
## [1021] "/wiki/Martin_Luther"                                                                                                                                                                                                
## [1022] "/wiki/Protestant_Reformation"                                                                                                                                                                                       
## [1023] "/wiki/Corpus_Juris_Civilis#Servitus_Judaeorum"                                                                                                                                                                      
## [1024] "/wiki/Regensburg"                                                                                                                                                                                                   
## [1025] "/wiki/Pope_Leo_X"                                                                                                                                                                                                   
## [1026] "/wiki/Venice"                                                                                                                                                                                                       
## [1027] "#cite_note-118"                                                                                                                                                                                                     
## [1028] "#cite_note-119"                                                                                                                                                                                                     
## [1029] "/wiki/Jewish_history_of_Sopron"                                                                                                                                                                                     
## [1030] "/wiki/Croatia"                                                                                                                                                                                                      
## [1031] "/wiki/History_of_the_Jews_in_Slovakia"                                                                                                                                                                              
## [1032] "/wiki/Battle_of_Moh%C3%A1cs"                                                                                                                                                                                        
## [1033] "/wiki/Florence"                                                                                                                                                                                                     
## [1034] "/wiki/Judaizer"                                                                                                                                                                                                     
## [1035] "/wiki/Mexico_City"                                                                                                                                                                                                  
## [1036] "/wiki/Auto_da_fe"                                                                                                                                                                                                   
## [1037] "/wiki/Pezinok"                                                                                                                                                                                                      
## [1038] "#cite_note-Pezinok-120"                                                                                                                                                                                             
## [1039] "/wiki/Solomon_Molcho"                                                                                                                                                                                               
## [1040] "/wiki/Tunis"                                                                                                                                                                                                        
## [1041] "/wiki/Nauheim"                                                                                                                                                                                                      
## [1042] "#cite_note-121"                                                                                                                                                                                                     
## [1043] "/wiki/Katarzyna_Weiglowa"                                                                                                                                                                                           
## [1044] "/wiki/Roman_Catholic"                                                                                                                                                                                               
## [1045] "/wiki/Kingdom_of_Poland"                                                                                                                                                                                            
## [1046] "/wiki/Jesus_Christ"                                                                                                                                                                                                 
## [1047] "/wiki/Son_of_God"                                                                                                                                                                                                   
## [1048] "/wiki/Martyr"                                                                                                                                                                                                       
## [1049] "/wiki/Exile"                                                                                                                                                                                                        
## [1050] "/wiki/Prague"                                                                                                                                                                                                       
## [1051] "/wiki/Basel"                                                                                                                                                                                                        
## [1052] "#cite_note-Basel_JE-122"                                                                                                                                                                                            
## [1053] "#cite_note-123"                                                                                                                                                                                                     
## [1054] "/wiki/File:1543_On_the_Jews_and_Their_Lies_by_Martin_Luther.jpg"                                                                                                                                                    
## [1055] "/wiki/File:1543_On_the_Jews_and_Their_Lies_by_Martin_Luther.jpg"                                                                                                                                                    
## [1056] "/wiki/On_the_Jews_and_Their_Lies"                                                                                                                                                                                   
## [1057] "/wiki/On_the_Jews_and_Their_Lies"                                                                                                                                                                                   
## [1058] "/wiki/Religious_conversion"                                                                                                                                                                                         
## [1059] "/wiki/John_Frederick,_Elector_of_Saxony"                                                                                                                                                                            
## [1060] "#cite_note-124"                                                                                                                                                                                                     
## [1061] "/wiki/Martin_Luther_and_the_Jews"                                                                                                                                                                                   
## [1062] "/wiki/Ivan_the_Terrible"                                                                                                                                                                                            
## [1063] "/wiki/Sigismund_II_Augustus"                                                                                                                                                                                        
## [1064] "/wiki/Asolo"                                                                                                                                                                                                        
## [1065] "#cite_note-125"                                                                                                                                                                                                     
## [1066] "/wiki/Genoa"                                                                                                                                                                                                        
## [1067] "/wiki/Pope_Julius_III"                                                                                                                                                                                              
## [1068] "/wiki/Pope_Paul_IV"                                                                                                                                                                                                 
## [1069] "/w/index.php?title=Cornelio_da_Montalcino&action=edit&redlink=1"                                                                                                                                                    
## [1070] "/wiki/Franciscan"                                                                                                                                                                                                   
## [1071] "/wiki/Papal_Bull"                                                                                                                                                                                                   
## [1072] "/wiki/Cum_nimis_absurdum"                                                                                                                                                                                           
## [1073] "/wiki/Yellow_badge"                                                                                                                                                                                                 
## [1074] "/wiki/Yellow_badge"                                                                                                                                                                                                 
## [1075] "/wiki/History_of_the_Jews_in_Ancona#Martyrs_of_1555"                                                                                                                                                                
## [1076] "/wiki/Host_desecration"                                                                                                                                                                                             
## [1077] "#cite_note-126"                                                                                                                                                                                                     
## [1078] "/wiki/Recanati"                                                                                                                                                                                                     
## [1079] "/wiki/Yom_Kippur"                                                                                                                                                                                                   
## [1080] "/wiki/Pope_Paul_IV"                                                                                                                                                                                                 
## [1081] "/wiki/Goa_Inquisition"                                                                                                                                                                                              
## [1082] "/wiki/Ferdinand_I,_Holy_Roman_Emperor"                                                                                                                                                                              
## [1083] "/wiki/Polotsk"                                                                                                                                                                                                      
## [1084] "/wiki/Lithuania"                                                                                                                                                                                                    
## [1085] "/wiki/Russian_Orthodox_Church"                                                                                                                                                                                      
## [1086] "/wiki/Western_Dvina"                                                                                                                                                                                                
## [1087] "/wiki/Brest,_Belarus"                                                                                                                                                                                               
## [1088] "/wiki/Sigismund_II_Augustus"                                                                                                                                                                                        
## [1089] "/wiki/Pope_Pius_V"                                                                                                                                                                                                  
## [1090] "/wiki/Papal_States"                                                                                                                                                                                                 
## [1091] "/wiki/Pope_Pius_V"                                                                                                                                                                                                  
## [1092] "/wiki/Bologna"                                                                                                                                                                                                      
## [1093] "#cite_note-Bologna-127"                                                                                                                                                                                             
## [1094] "/wiki/Pope_Pius_V"                                                                                                                                                                                                  
## [1095] "/wiki/Berlin"                                                                                                                                                                                                       
## [1096] "#cite_note-Berlin-85"                                                                                                                                                                                               
## [1097] "/wiki/Mexican_Inquisition"                                                                                                                                                                                          
## [1098] "/wiki/Auto-da-f%C3%A9"                                                                                                                                                                                              
## [1099] "/wiki/Pope_Gregory_XIII"                                                                                                                                                                                            
## [1100] "/wiki/Conversos"                                                                                                                                                                                                    
## [1101] "/wiki/Rome"                                                                                                                                                                                                         
## [1102] "#cite_note-128"                                                                                                                                                                                                     
## [1103] "/wiki/Pope_Sixtus_V"                                                                                                                                                                                                
## [1104] "/wiki/Mikulov"                                                                                                                                                                                                      
## [1105] "/wiki/Philip_II_of_Spain"                                                                                                                                                                                           
## [1106] "/wiki/Lombardy"                                                                                                                                                                                                     
## [1107] "#cite_note-Remona-129"                                                                                                                                                                                              
## [1108] "#cite_note-130"                                                                                                                                                                                                     
## [1109] "/wiki/Pope_Clement_VIII"                                                                                                                                                                                            
## [1110] "/wiki/Bologna"                                                                                                                                                                                                      
## [1111] "#cite_note-Bologna-127"                                                                                                                                                                                             
## [1112] "/wiki/Lima"                                                                                                                                                                                                         
## [1113] "/wiki/Peru"                                                                                                                                                                                                         
## [1114] "#cite_note-Lima-131"                                                                                                                                                                                                
## [1115] "/wiki/Francisca_Nu%C3%B1ez_de_Carabajal"                                                                                                                                                                            
## [1116] "/wiki/Marrano"                                                                                                                                                                                                      
## [1117] "/wiki/New_Spain"                                                                                                                                                                                                    
## [1118] "/wiki/Mexican_Inquisition"                                                                                                                                                                                          
## [1119] "/wiki/Judaizers"                                                                                                                                                                                                    
## [1120] "/wiki/Auto_de_fe"                                                                                                                                                                                                   
## [1121] "#cite_note-132"                                                                                                                                                                                                     
## [1122] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=18"                                                                                                                                                 
## [1123] "/wiki/Lima"                                                                                                                                                                                                         
## [1124] "/wiki/Peru"                                                                                                                                                                                                         
## [1125] "#cite_note-Lima-131"                                                                                                                                                                                                
## [1126] "/w/index.php?title=Frei_Diogo_da_Assumpc%C3%A3o&action=edit&redlink=1"                                                                                                                                              
## [1127] "/wiki/Lisbon"                                                                                                                                                                                                       
## [1128] "/wiki/Lima"                                                                                                                                                                                                         
## [1129] "/wiki/Peru"                                                                                                                                                                                                         
## [1130] "#cite_note-Lima-131"                                                                                                                                                                                                
## [1131] "/wiki/Jesuit_order"                                                                                                                                                                                                 
## [1132] "/wiki/Pope_Paul_V"                                                                                                                                                                                                  
## [1133] "/wiki/Senate_of_Hamburg"                                                                                                                                                                                            
## [1134] "/wiki/Hamburg"                                                                                                                                                                                                      
## [1135] "/wiki/File:1614jews.jpg"                                                                                                                                                                                            
## [1136] "/wiki/File:1614jews.jpg"                                                                                                                                                                                            
## [1137] "/wiki/Haman_(Judaism)"                                                                                                                                                                                              
## [1138] "/wiki/Frankfurt"                                                                                                                                                                                                    
## [1139] "/wiki/Louis_XIII_of_France"                                                                                                                                                                                         
## [1140] "/wiki/Worms,_Germany"                                                                                                                                                                                               
## [1141] "/wiki/Grodno"                                                                                                                                                                                                       
## [1142] "#cite_note-Grodno-107"                                                                                                                                                                                              
## [1143] "/wiki/Mirror_of_the_Polish_Crown"                                                                                                                                                                                   
## [1144] "/wiki/Sebastian_Miczy%C5%84ski"                                                                                                                                                                                     
## [1145] "/wiki/King_Christian_IV"                                                                                                                                                                                            
## [1146] "/wiki/Ghetto"                                                                                                                                                                                                       
## [1147] "/wiki/Ferrara,_Italy"                                                                                                                                                                                               
## [1148] "/wiki/History_of_the_Jews_in_Vienna"                                                                                                                                                                                
## [1149] "/wiki/Leopoldstadt"                                                                                                                                                                                                 
## [1150] "/wiki/Roman_Jews"                                                                                                                                                                                                   
## [1151] "#cite_note-133"                                                                                                                                                                                                     
## [1152] "/wiki/Host_desecration"                                                                                                                                                                                             
## [1153] "/wiki/Padua"                                                                                                                                                                                                        
## [1154] "#cite_note-134"                                                                                                                                                                                                     
## [1155] "/wiki/Ladislaus_IV_of_Poland"                                                                                                                                                                                       
## [1156] "/wiki/Antisemitic"                                                                                                                                                                                                  
## [1157] "/wiki/Auto-da-f%C3%A9"                                                                                                                                                                                              
## [1158] "#cite_note-135"                                                                                                                                                                                                     
## [1159] "/wiki/Nicolas_Antoine"                                                                                                                                                                                              
## [1160] "/wiki/Radom"                                                                                                                                                                                                        
## [1161] "#cite_note-Radom-136"                                                                                                                                                                                               
## [1162] "/wiki/Pogrom"                                                                                                                                                                                                       
## [1163] "/wiki/Vilna"                                                                                                                                                                                                        
## [1164] "/wiki/Krak%C3%B3w"                                                                                                                                                                                                  
## [1165] "/wiki/Auto-da-f%C3%A9"                                                                                                                                                                                              
## [1166] "/wiki/Lima"                                                                                                                                                                                                         
## [1167] "/wiki/Peru"                                                                                                                                                                                                         
## [1168] "/wiki/Francisco_Maldonado_de_Silva"                                                                                                                                                                                 
## [1169] "/wiki/Roman_Jews"                                                                                                                                                                                                   
## [1170] "/wiki/Pope_Urban_VIII"                                                                                                                                                                                              
## [1171] "#cite_note-137"                                                                                                                                                                                                     
## [1172] "#cite_note-Lenchitza-138"                                                                                                                                                                                           
## [1173] "/wiki/Isaac_de_Castro_Tartas"                                                                                                                                                                                       
## [1174] "/wiki/Shema"                                                                                                                                                                                                        
## [1175] "#cite_note-139"                                                                                                                                                                                                     
## [1176] "/wiki/Ukraine"                                                                                                                                                                                                      
## [1177] "/wiki/Cossack"                                                                                                                                                                                                      
## [1178] "/wiki/Bohdan_Chmielnicki"                                                                                                                                                                                           
## [1179] "/wiki/Poland"                                                                                                                                                                                                       
## [1180] "/wiki/Nobles"                                                                                                                                                                                                       
## [1181] "/wiki/Auto-da-f%C3%A9"                                                                                                                                                                                              
## [1182] "#cite_note-140"                                                                                                                                                                                                     
## [1183] "/wiki/Oliver_Cromwell"                                                                                                                                                                                              
## [1184] "/wiki/Isfahan"                                                                                                                                                                                                      
## [1185] "/wiki/Forced_to_convert_to_Islam"                                                                                                                                                                                   
## [1186] "/wiki/Abbas_II_of_Persia"                                                                                                                                                                                           
## [1187] "#cite_note-Kashan-141"                                                                                                                                                                                              
## [1188] "/wiki/Antonio_Enr%C3%ADquez_G%C3%B3mez"                                                                                                                                                                             
## [1189] "/wiki/Seville"                                                                                                                                                                                                      
## [1190] "#cite_note-142"                                                                                                                                                                                                     
## [1191] "/wiki/Christians"                                                                                                                                                                                                   
## [1192] "/wiki/Janissaries"                                                                                                                                                                                                  
## [1193] "/wiki/Turkish_Jews"                                                                                                                                                                                                 
## [1194] "#cite_note-143"                                                                                                                                                                                                     
## [1195] "/wiki/Lemberg"                                                                                                                                                                                                      
## [1196] "/wiki/Lvov"                                                                                                                                                                                                         
## [1197] "/wiki/Oran"                                                                                                                                                                                                         
## [1198] "#cite_note-Oran-144"                                                                                                                                                                                                
## [1199] "/wiki/Vienna"                                                                                                                                                                                                       
## [1200] "/wiki/Raphael_Levy"                                                                                                                                                                                                 
## [1201] "/wiki/Blood_libel"                                                                                                                                                                                                  
## [1202] "/wiki/Exile_of_Mawza"                                                                                                                                                                                               
## [1203] "/wiki/Jews_of_Yemen"                                                                                                                                                                                                
## [1204] "/wiki/Auto-da-f%C3%A9"                                                                                                                                                                                              
## [1205] "/wiki/Vilna"                                                                                                                                                                                                        
## [1206] "/wiki/Lisbon"                                                                                                                                                                                                       
## [1207] "/wiki/Portugal"                                                                                                                                                                                                     
## [1208] "/wiki/Kuruc"                                                                                                                                                                                                        
## [1209] "/wiki/Uhersk%C3%BD_Brod"                                                                                                                                                                                            
## [1210] "/wiki/Nathan_ben_Moses_Hannover"                                                                                                                                                                                    
## [1211] "/wiki/Chmielnicki_massacres"                                                                                                                                                                                        
## [1212] "/wiki/Buda"                                                                                                                                                                                                         
## [1213] "#cite_note-Buda-145"                                                                                                                                                                                                
## [1214] "/wiki/Buda"                                                                                                                                                                                                         
## [1215] "#cite_note-Buda-145"                                                                                                                                                                                                
## [1216] "#cite_note-146"                                                                                                                                                                                                     
## [1217] "/wiki/Worms,_Germany"                                                                                                                                                                                               
## [1218] "/wiki/Prague"                                                                                                                                                                                                       
## [1219] "#cite_note-147"                                                                                                                                                                                                     
## [1220] "/wiki/Palma,_Majorca"                                                                                                                                                                                               
## [1221] "#cite_note-148"                                                                                                                                                                                                     
## [1222] "#cite_note-149"                                                                                                                                                                                                     
## [1223] "/wiki/%C3%89vora"                                                                                                                                                                                                   
## [1224] "/wiki/Portugal"                                                                                                                                                                                                     
## [1225] "#cite_note-150"                                                                                                                                                                                                     
## [1226] "/wiki/Bamberg"                                                                                                                                                                                                      
## [1227] "#cite_note-151"                                                                                                                                                                                                     
## [1228] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=19"                                                                                                                                                 
## [1229] "/wiki/Algeria"                                                                                                                                                                                                      
## [1230] "#cite_note-Algiers-152"                                                                                                                                                                                             
## [1231] "/wiki/Johann_Andreas_Eisenmenger"                                                                                                                                                                                   
## [1232] "/wiki/Judaism"                                                                                                                                                                                                      
## [1233] "/wiki/Blood_libel"                                                                                                                                                                                                  
## [1234] "/wiki/Sandomierz"                                                                                                                                                                                                   
## [1235] "#cite_note-153"                                                                                                                                                                                                     
## [1236] "/wiki/Gibraltar"                                                                                                                                                                                                    
## [1237] "#cite_note-154"                                                                                                                                                                                                     
## [1238] "/wiki/Maria_Barbara_Carillo"                                                                                                                                                                                        
## [1239] "/wiki/Burned_at_the_stake"                                                                                                                                                                                          
## [1240] "/wiki/Spanish_Inquisition"                                                                                                                                                                                          
## [1241] "#cite_note-155"                                                                                                                                                                                                     
## [1242] "#cite_note-156"                                                                                                                                                                                                     
## [1243] "/wiki/Radom"                                                                                                                                                                                                        
## [1244] "#cite_note-Radom-136"                                                                                                                                                                                               
## [1245] "/wiki/Catherine_I_of_Russia"                                                                                                                                                                                        
## [1246] "/wiki/Haidamaks"                                                                                                                                                                                                    
## [1247] "/wiki/Ana_de_Castro"                                                                                                                                                                                                
## [1248] "/wiki/Auto_de_fe"                                                                                                                                                                                                   
## [1249] "/wiki/Inquisition"                                                                                                                                                                                                  
## [1250] "/wiki/Jaros%C5%82aw"                                                                                                                                                                                                
## [1251] "#cite_note-Jaroslaw-157"                                                                                                                                                                                            
## [1252] "/wiki/Elizabeth_of_Russia"                                                                                                                                                                                          
## [1253] "/wiki/Russian_Empire"                                                                                                                                                                                               
## [1254] "/wiki/Riga"                                                                                                                                                                                                         
## [1255] "#cite_note-158"                                                                                                                                                                                                     
## [1256] "/wiki/Frederick_II_of_Prussia"                                                                                                                                                                                      
## [1257] "/wiki/Breslau"                                                                                                                                                                                                      
## [1258] "/wiki/Maria_Theresa_of_Austria"                                                                                                                                                                                     
## [1259] "/wiki/Radom"                                                                                                                                                                                                        
## [1260] "#cite_note-Radom-136"                                                                                                                                                                                               
## [1261] "/wiki/Kaunas"                                                                                                                                                                                                       
## [1262] "/wiki/Alsace"                                                                                                                                                                                                       
## [1263] "/wiki/Host_desecration"                                                                                                                                                                                             
## [1264] "/wiki/Kaunas"                                                                                                                                                                                                       
## [1265] "#cite_note-Kaunas-159"                                                                                                                                                                                              
## [1266] "/wiki/Rhode_Island"                                                                                                                                                                                                 
## [1267] "/wiki/Toru%C5%84"                                                                                                                                                                                                   
## [1268] "#cite_note-160"                                                                                                                                                                                                     
## [1269] "/wiki/Haidamaks"                                                                                                                                                                                                    
## [1270] "/wiki/Uman"                                                                                                                                                                                                         
## [1271] "/wiki/Pope_Pius_VI"                                                                                                                                                                                                 
## [1272] "/wiki/Babylonian_Jews"                                                                                                                                                                                              
## [1273] "#cite_note-161"                                                                                                                                                                                                     
## [1274] "/wiki/Holy_Roman_Emperor"                                                                                                                                                                                           
## [1275] "/wiki/Joseph_II,_Holy_Roman_Emperor"                                                                                                                                                                                
## [1276] "/wiki/Toleranzpatent"                                                                                                                                                                                               
## [1277] "/wiki/Yiddish"                                                                                                                                                                                                      
## [1278] "/wiki/Hebrew_language"                                                                                                                                                                                              
## [1279] "/wiki/Moses_Mendelssohn"                                                                                                                                                                                            
## [1280] "/wiki/Sultan"                                                                                                                                                                                                       
## [1281] "/wiki/Moroccan_Jews"                                                                                                                                                                                                
## [1282] "#cite_note-Timeline-162"                                                                                                                                                                                            
## [1283] "/wiki/Libyan_Jews"                                                                                                                                                                                                  
## [1284] "#cite_note-163"                                                                                                                                                                                                     
## [1285] "#cite_note-164"                                                                                                                                                                                                     
## [1286] "/wiki/Yazid_of_Morocco"                                                                                                                                                                                             
## [1287] "/wiki/Sultan"                                                                                                                                                                                                       
## [1288] "/wiki/Morocco"                                                                                                                                                                                                      
## [1289] "/wiki/T%C3%A9touan"                                                                                                                                                                                                 
## [1290] "/wiki/Touro_Synagogue"                                                                                                                                                                                              
## [1291] "/wiki/George_Washington"                                                                                                                                                                                            
## [1292] "#cite_note-165"                                                                                                                                                                                                     
## [1293] "/wiki/Ruth_Bader_Ginsburg"                                                                                                                                                                                          
## [1294] "/wiki/Elena_Kagan"                                                                                                                                                                                                  
## [1295] "#cite_note-166"                                                                                                                                                                                                     
## [1296] "/wiki/Brown_University"                                                                                                                                                                                             
## [1297] "/wiki/Ruth_Simmons"                                                                                                                                                                                                 
## [1298] "#cite_note-167"                                                                                                                                                                                                     
## [1299] "/wiki/Christina_Paxson"                                                                                                                                                                                             
## [1300] "#cite_note-168"                                                                                                                                                                                                     
## [1301] "/wiki/Grodno"                                                                                                                                                                                                       
## [1302] "/wiki/Morocco"                                                                                                                                                                                                      
## [1303] "/wiki/Catherine_II_of_Russia"                                                                                                                                                                                       
## [1304] "/wiki/Pale_of_Settlement"                                                                                                                                                                                           
## [1305] "#cite_note-169"                                                                                                                                                                                                     
## [1306] "/wiki/Napoleon"                                                                                                                                                                                                     
## [1307] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=20"                                                                                                                                                 
## [1308] "/wiki/Timeline_of_antisemitism_in_the_19th_century"                                                                                                                                                                 
## [1309] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=21"                                                                                                                                                 
## [1310] "/wiki/Timeline_of_antisemitism_in_the_20th_century"                                                                                                                                                                 
## [1311] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=22"                                                                                                                                                 
## [1312] "/wiki/Timeline_of_antisemitism_in_the_21st_century"                                                                                                                                                                 
## [1313] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=23"                                                                                                                                                 
## [1314] "/wiki/Timeline_of_anti-Zionism"                                                                                                                                                                                     
## [1315] "/wiki/Vichy_Holocaust_collaboration_timeline"                                                                                                                                                                       
## [1316] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=24"                                                                                                                                                 
## [1317] "#cite_ref-JVL_1-0"                                                                                                                                                                                                  
## [1318] "#cite_ref-JVL_1-1"                                                                                                                                                                                                  
## [1319] "https://www.jewishvirtuallibrary.org/jsource/judaica/ejud_0002_0008_0_08365.html"                                                                                                                                   
## [1320] "#cite_ref-Ilan_2-0"                                                                                                                                                                                                 
## [1321] "http://jwa.org/encyclopedia/article/hannah-mother-of-seven"                                                                                                                                                         
## [1322] "#cite_ref-Orthodox_3-0"                                                                                                                                                                                             
## [1323] "http://www.antiochian.org/node/19287"                                                                                                                                                                               
## [1324] "/wiki/Antiochian_Orthodox_Christian_Archdiocese_of_North_America"                                                                                                                                                   
## [1325] "#cite_ref-4"                                                                                                                                                                                                        
## [1326] "/wiki/New_English_Bible"                                                                                                                                                                                            
## [1327] "#cite_ref-5"                                                                                                                                                                                                        
## [1328] "/wiki/Authorised_Version"                                                                                                                                                                                           
## [1329] "/wiki/George_Bull"                                                                                                                                                                                                  
## [1330] "/wiki/Resurrection"                                                                                                                                                                                                 
## [1331] "/wiki/Immortality"                                                                                                                                                                                                  
## [1332] "/wiki/Martyrology"                                                                                                                                                                                                  
## [1333] "/wiki/Society_for_Promoting_Christian_Knowledge"                                                                                                                                                                    
## [1334] "#cite_ref-6"                                                                                                                                                                                                        
## [1335] "http://www.halakhah.com/gittin/gittin_57.html"                                                                                                                                                                      
## [1336] "#cite_ref-7"                                                                                                                                                                                                        
## [1337] "http://www.jewishvirtuallibrary.org/cicero-marcus-tullius-x00b0"                                                                                                                                                    
## [1338] "#cite_ref-8"                                                                                                                                                                                                        
## [1339] "#cite_ref-9"                                                                                                                                                                                                        
## [1340] "#cite_ref-auto2_10-0"                                                                                                                                                                                               
## [1341] "#cite_ref-auto2_10-1"                                                                                                                                                                                               
## [1342] "#cite_ref-archaeological378_11-0"                                                                                                                                                                                   
## [1343] "#cite_ref-archaeological378_11-1"                                                                                                                                                                                   
## [1344] "#cite_ref-archaeological378_11-2"                                                                                                                                                                                   
## [1345] "#cite_ref-12"                                                                                                                                                                                                       
## [1346] "#cite_ref-13"                                                                                                                                                                                                       
## [1347] "http://onlinebooks.library.upenn.edu/webbin/gutbook/author?name=Josephus,%20Flavius"                                                                                                                                
## [1348] "#cite_ref-Lehmann_14-0"                                                                                                                                                                                             
## [1349] "https://web.archive.org/web/20060717061703/http://www.usd.edu/erp/Palestine/history.htm#135-337"                                                                                                                    
## [1350] "http://www.usd.edu/erp/Palestine/history.htm#135-337"                                                                                                                                                               
## [1351] "#cite_ref-15"                                                                                                                                                                                                       
## [1352] "http://ccel.org/ccel/schaff/npnf203.iv.viii.i.x.html"                                                                                                                                                               
## [1353] "#cite_ref-16"                                                                                                                                                                                                       
## [1354] "http://www.newadvent.org/fathers/25023.htm"                                                                                                                                                                         
## [1355] "#cite_ref-17"                                                                                                                                                                                                       
## [1356] "http://www.ccel.org/ccel/schaff/npnf202/Page_159.html"                                                                                                                                                              
## [1357] "#cite_ref-18"                                                                                                                                                                                                       
## [1358] "http://www.research-projects.uzh.ch/p498.htm"                                                                                                                                                                       
## [1359] "https://web.archive.org/web/20111102115323/http://www.research-projects.uzh.ch/p498.htm"                                                                                                                            
## [1360] "#cite_ref-19"                                                                                                                                                                                                       
## [1361] "#cite_ref-20"                                                                                                                                                                                                       
## [1362] "http://www.ccel.org/ccel/schaff/npnf202/Page_161.html"                                                                                                                                                              
## [1363] "#cite_ref-21"                                                                                                                                                                                                       
## [1364] "https://www.darkmoon.me/2014/timeline-of-jewish-persecutions/"                                                                                                                                                      
## [1365] "#cite_ref-22"                                                                                                                                                                                                       
## [1366] "http://www.newadvent.org/cathen/14755a.htm"                                                                                                                                                                         
## [1367] "#cite_ref-23"                                                                                                                                                                                                       
## [1368] "#cite_ref-24"                                                                                                                                                                                                       
## [1369] "http://www.jewishvirtuallibrary.org/palermo"                                                                                                                                                                        
## [1370] "#cite_ref-25"                                                                                                                                                                                                       
## [1371] "https://www.nytimes.com/2011/10/30/books/review/jerusalem-by-simon-sebag-montefiore-book-review.html"                                                                                                               
## [1372] "#cite_ref-26"                                                                                                                                                                                                       
## [1373] "#cite_ref-27"                                                                                                                                                                                                       
## [1374] "http://www.jewishvirtuallibrary.org/tunisia-virtual-jewish-history-tour#2"                                                                                                                                          
## [1375] "#cite_ref-28"                                                                                                                                                                                                       
## [1376] "#cite_ref-29"                                                                                                                                                                                                       
## [1377] "#cite_ref-30"                                                                                                                                                                                                       
## [1378] "#cite_ref-Bari_31-0"                                                                                                                                                                                                
## [1379] "http://www.jewishvirtuallibrary.org/bari"                                                                                                                                                                           
## [1380] "#cite_ref-32"                                                                                                                                                                                                       
## [1381] "#cite_ref-33"                                                                                                                                                                                                       
## [1382] "#cite_ref-34"                                                                                                                                                                                                       
## [1383] "https://archive.is/20170727102848/http://www.haaretz.com/jewish/this-day-in-jewish-history/.premium-1.747846"                                                                                                       
## [1384] "/wiki/Category:CS1_maint:_BOT:_original-url_status_unknown"                                                                                                                                                         
## [1385] "#cite_ref-35"                                                                                                                                                                                                       
## [1386] "#cite_ref-36"                                                                                                                                                                                                       
## [1387] "#cite_ref-37"                                                                                                                                                                                                       
## [1388] "https://books.google.com/books?id=7U0hY3wtXe4C&pg=PA230#v=onepage&q&f=false"                                                                                                                                        
## [1389] "#cite_ref-38"                                                                                                                                                                                                       
## [1390] "http://www.jewishencyclopedia.com/articles/12816-rome"                                                                                                                                                              
## [1391] "#cite_ref-39"                                                                                                                                                                                                       
## [1392] "http://www.jewishencyclopedia.com/articles/4136-castrojeriz"                                                                                                                                                        
## [1393] "#cite_ref-40"                                                                                                                                                                                                       
## [1394] "https://www.theguardian.com/world/2014/apr/14/spain-castrillo-matajudios-kill-the-jews-name-change"                                                                                                                 
## [1395] "#cite_ref-41"                                                                                                                                                                                                       
## [1396] "http://jewishencyclopedia.com/view.jsp?artid=412&letter=G&search=Granada"                                                                                                                                           
## [1397] "/wiki/Meyer_Kayserling"                                                                                                                                                                                             
## [1398] "/wiki/Jewish_Encyclopedia"                                                                                                                                                                                          
## [1399] "#cite_ref-42"                                                                                                                                                                                                       
## [1400] "/wiki/Esther_Benbassa"                                                                                                                                                                                              
## [1401] "/wiki/Princeton_University_Press"                                                                                                                                                                                   
## [1402] "/wiki/International_Standard_Book_Number"                                                                                                                                                                           
## [1403] "/wiki/Special:BookSources/0-691-09014-9"                                                                                                                                                                            
## [1404] "#cite_ref-tragic_43-0"                                                                                                                                                                                              
## [1405] "/wiki/International_Standard_Book_Number"                                                                                                                                                                           
## [1406] "/wiki/Special:BookSources/1560430680"                                                                                                                                                                               
## [1407] "#cite_ref-gibb_44-0"                                                                                                                                                                                                
## [1408] "/wiki/Hamilton_Alexander_Rosskeen_Gibb"                                                                                                                                                                             
## [1409] "#cite_ref-45"                                                                                                                                                                                                       
## [1410] "/wiki/International_Standard_Book_Number"                                                                                                                                                                           
## [1411] "/wiki/Special:BookSources/075464099X"                                                                                                                                                                               
## [1412] "#cite_ref-kedar63_46-0"                                                                                                                                                                                             
## [1413] "#cite_ref-kedar63_46-1"                                                                                                                                                                                             
## [1414] "#cite_ref-47"                                                                                                                                                                                                       
## [1415] "#cite_ref-48"                                                                                                                                                                                                       
## [1416] "https://books.google.com/books?id=NGvQCgAAQBAJ&pg=PA67"                                                                                                                                                             
## [1417] "/wiki/International_Standard_Book_Number"                                                                                                                                                                           
## [1418] "/wiki/Special:BookSources/9780198717980"                                                                                                                                                                            
## [1419] "#cite_ref-Morocco_49-0"                                                                                                                                                                                             
## [1420] "/wiki/Jewish_Encyclopedia"                                                                                                                                                                                          
## [1421] "#cite_ref-Toledo_JE_50-0"                                                                                                                                                                                           
## [1422] "http://www.jewishencyclopedia.com/articles/14435-toledo"                                                                                                                                                            
## [1423] "#cite_ref-51"                                                                                                                                                                                                       
## [1424] "#cite_ref-Fez_52-0"                                                                                                                                                                                                 
## [1425] "http://www.jewishvirtuallibrary.org/fez"                                                                                                                                                                            
## [1426] "#cite_ref-53"                                                                                                                                                                                                       
## [1427] "#cite_ref-54"                                                                                                                                                                                                       
## [1428] "#cite_ref-55"                                                                                                                                                                                                       
## [1429] "http://www.jewishvirtuallibrary.org/bury-st-edmunds"                                                                                                                                                                
## [1430] "#cite_ref-56"                                                                                                                                                                                                       
## [1431] "http://www.fordham.edu/halsall/source/ephr-bonn1.html"                                                                                                                                                              
## [1432] "#cite_ref-57"                                                                                                                                                                                                       
## [1433] "http://www.jewishencyclopedia.com/articles/3658-bray-sur-seine"                                                                                                                                                     
## [1434] "#cite_ref-58"                                                                                                                                                                                                       
## [1435] "http://www.jewishvirtuallibrary.org/odo-eudes-of-sully-x00b0"                                                                                                                                                       
## [1436] "#cite_ref-59"                                                                                                                                                                                                       
## [1437] "http://www2.kenyon.edu/projects/margin/jew.htm"                                                                                                                                                                     
## [1438] "#cite_ref-Popes&Jews_60-0"                                                                                                                                                                                          
## [1439] "#cite_ref-Halle_61-0"                                                                                                                                                                                               
## [1440] "http://www.jewishvirtuallibrary.org/halle"                                                                                                                                                                          
## [1441] "#cite_ref-62"                                                                                                                                                                                                       
## [1442] "http://www.jewishencyclopedia.com/articles/3248-beziers"                                                                                                                                                            
## [1443] "#cite_ref-63"                                                                                                                                                                                                       
## [1444] "http://www.fordham.edu/halsall/source/inn3-jews.asp"                                                                                                                                                                
## [1445] "#cite_ref-64"                                                                                                                                                                                                       
## [1446] "http://www.jewishvirtuallibrary.org/erfurt"                                                                                                                                                                         
## [1447] "#cite_ref-65"                                                                                                                                                                                                       
## [1448] "/wiki/Harvard_University_Press"                                                                                                                                                                                     
## [1449] "/wiki/International_Standard_Book_Number"                                                                                                                                                                           
## [1450] "/wiki/Special:BookSources/0-674-39731-2"                                                                                                                                                                            
## [1451] "#cite_ref-66"                                                                                                                                                                                                       
## [1452] "http://www.jewishencyclopedia.com/articles/11323-narbonne"                                                                                                                                                          
## [1453] "#cite_ref-67"                                                                                                                                                                                                       
## [1454] "#cite_ref-68"                                                                                                                                                                                                       
## [1455] "#cite_ref-69"                                                                                                                                                                                                       
## [1456] "http://www.jewishvirtuallibrary.org/kitzingen"                                                                                                                                                                      
## [1457] "#cite_ref-70"                                                                                                                                                                                                       
## [1458] "#cite_ref-71"                                                                                                                                                                                                       
## [1459] "#cite_ref-google_72-0"                                                                                                                                                                                              
## [1460] "https://books.google.com/books?id=1eqtODKlq1cC"                                                                                                                                                                     
## [1461] "#cite_ref-73"                                                                                                                                                                                                       
## [1462] "http://www.jewishencyclopedia.com/articles/10511-mayence"                                                                                                                                                           
## [1463] "#cite_ref-74"                                                                                                                                                                                                       
## [1464] "http://www.jewishencyclopedia.com/articles/14528-troyes"                                                                                                                                                            
## [1465] "#cite_ref-75"                                                                                                                                                                                                       
## [1466] "http://www.jewishencyclopedia.com/articles/3540-bonn"                                                                                                                                                               
## [1467] "#cite_ref-76"                                                                                                                                                                                                       
## [1468] "http://www.jewishvirtuallibrary.org/paris"                                                                                                                                                                          
## [1469] "#cite_ref-77"                                                                                                                                                                                                       
## [1470] "http://www.jewishencyclopedia.com/view.jsp?artid=301&letter=R"                                                                                                                                                      
## [1471] "/wiki/Jewish_Encyclopedia"                                                                                                                                                                                          
## [1472] "#cite_ref-78"                                                                                                                                                                                                       
## [1473] "http://www.jewishvirtuallibrary.org/bilbeis"                                                                                                                                                                        
## [1474] "#cite_ref-Breslau_79-0"                                                                                                                                                                                             
## [1475] "#cite_ref-Breslau_79-1"                                                                                                                                                                                             
## [1476] "#cite_ref-Breslau_79-2"                                                                                                                                                                                             
## [1477] "http://www.jewishvirtuallibrary.org/breslau"                                                                                                                                                                        
## [1478] "#cite_ref-Milan_80-0"                                                                                                                                                                                               
## [1479] "http://www.jewishencyclopedia.com/articles/10828-milan"                                                                                                                                                             
## [1480] "#cite_ref-Damascus_81-0"                                                                                                                                                                                            
## [1481] "#cite_ref-Damascus_81-1"                                                                                                                                                                                            
## [1482] "http://www.jewishvirtuallibrary.org/damascus-jewish-history-tour"                                                                                                                                                   
## [1483] "#cite_ref-82"                                                                                                                                                                                                       
## [1484] "http://www.haaretz.com/jewish/this-day-in-jewish-history/.premium-1.576173"                                                                                                                                         
## [1485] "#cite_ref-83"                                                                                                                                                                                                       
## [1486] "http://www.jewishvirtuallibrary.org/wolfsberg"                                                                                                                                                                      
## [1487] "#cite_ref-84"                                                                                                                                                                                                       
## [1488] "http://www.jewishencyclopedia.com/articles/13951-speyer"                                                                                                                                                            
## [1489] "#cite_ref-Berlin_85-0"                                                                                                                                                                                              
## [1490] "#cite_ref-Berlin_85-1"                                                                                                                                                                                              
## [1491] "http://www.jewishvirtuallibrary.org/berlin-germany-jewish-history-tour"                                                                                                                                             
## [1492] "#cite_ref-86"                                                                                                                                                                                                       
## [1493] "http://www.haaretz.com/jewish/this-day-in-jewish-history/.premium-1.612079"                                                                                                                                         
## [1494] "#cite_ref-87"                                                                                                                                                                                                       
## [1495] "http://www.haaretz.com/jewish/this-day-in-jewish-history/1349-six-thousand-jews-die-in-plague-stricken-mainz-1.460153"                                                                                              
## [1496] "#cite_ref-88"                                                                                                                                                                                                       
## [1497] "http://www.jewishvirtuallibrary.org/samuel-ben-meir-abulafia"                                                                                                                                                       
## [1498] "#cite_ref-89"                                                                                                                                                                                                       
## [1499] "http://www.jewishvirtuallibrary.org/sofia"                                                                                                                                                                          
## [1500] "#cite_ref-Host_90-0"                                                                                                                                                                                                
## [1501] "#cite_ref-Host_90-1"                                                                                                                                                                                                
## [1502] "http://www.jewishvirtuallibrary.org/host-desecration-of"                                                                                                                                                            
## [1503] "#cite_ref-91"                                                                                                                                                                                                       
## [1504] "http://www.jewishvirtuallibrary.org/noerdlingen"                                                                                                                                                                    
## [1505] "#cite_ref-Sicily_92-0"                                                                                                                                                                                              
## [1506] "http://www.jewishencyclopedia.com/articles/13633-sicily"                                                                                                                                                            
## [1507] "#cite_ref-Glogau_93-0"                                                                                                                                                                                              
## [1508] "#cite_ref-Glogau_93-1"                                                                                                                                                                                              
## [1509] "http://www.jewishvirtuallibrary.org/glogau"                                                                                                                                                                         
## [1510] "#cite_ref-Zurich_94-0"                                                                                                                                                                                              
## [1511] "#cite_ref-Zurich_94-1"                                                                                                                                                                                              
## [1512] "http://www.jewishencyclopedia.com/articles/15302-zurich"                                                                                                                                                            
## [1513] "#cite_ref-Iglau_95-0"                                                                                                                                                                                               
## [1514] "http://www.jewishencyclopedia.com/articles/8064-iglau"                                                                                                                                                              
## [1515] "#cite_ref-Bern_96-0"                                                                                                                                                                                                
## [1516] "http://www.jewishencyclopedia.com/articles/3105-bern"                                                                                                                                                               
## [1517] "#cite_ref-97"                                                                                                                                                                                                       
## [1518] "http://dbs.bh.org.il/place/fribourg"                                                                                                                                                                                
## [1519] "#cite_ref-98"                                                                                                                                                                                                       
## [1520] "https://www.jewishvirtuallibrary.org/aix-en-provence"                                                                                                                                                               
## [1521] "#cite_ref-Bavaria_99-0"                                                                                                                                                                                             
## [1522] "#cite_ref-Bavaria_99-1"                                                                                                                                                                                             
## [1523] "http://www.jewishvirtuallibrary.org/bavaria-germany"                                                                                                                                                                
## [1524] "#cite_ref-Netherlands_100-0"                                                                                                                                                                                        
## [1525] "http://www.jewishencyclopedia.com/articles/11450-netherlands"                                                                                                                                                       
## [1526] "#cite_ref-101"                                                                                                                                                                                                      
## [1527] "http://www.haaretz.com/jewish/this-day-in-jewish-history/.premium-1.728677"                                                                                                                                         
## [1528] "#cite_ref-102"                                                                                                                                                                                                      
## [1529] "http://www.jewishencyclopedia.com/articles/4725-cracow"                                                                                                                                                             
## [1530] "#cite_ref-103"                                                                                                                                                                                                      
## [1531] "#cite_ref-104"                                                                                                                                                                                                      
## [1532] "http://www.jewishencyclopedia.com/articles/5456-egypt"                                                                                                                                                              
## [1533] "#cite_ref-Sofia_105-0"                                                                                                                                                                                              
## [1534] "http://www.jewishvirtuallibrary.org/sofia"                                                                                                                                                                          
## [1535] "#cite_ref-Tuat_106-0"                                                                                                                                                                                               
## [1536] "http://www.jewishvirtuallibrary.org/tuat"                                                                                                                                                                           
## [1537] "#cite_ref-Grodno_107-0"                                                                                                                                                                                             
## [1538] "#cite_ref-Grodno_107-1"                                                                                                                                                                                             
## [1539] "http://www.jewishvirtuallibrary.org/grodno"                                                                                                                                                                         
## [1540] "#cite_ref-108"                                                                                                                                                                                                      
## [1541] "http://www.jewishencyclopedia.com/articles/14092-styria"                                                                                                                                                            
## [1542] "#cite_ref-109"                                                                                                                                                                                                      
## [1543] "http://www.jewishencyclopedia.com/articles/14681-verona"                                                                                                                                                            
## [1544] "#cite_ref-110"                                                                                                                                                                                                      
## [1545] "#cite_ref-Pilsen_111-0"                                                                                                                                                                                             
## [1546] "http://www.jewishvirtuallibrary.org/pilsen"                                                                                                                                                                         
## [1547] "#cite_ref-112"                                                                                                                                                                                                      
## [1548] "https://archive.is/20170731064959/http://www.haaretz.com/jewish/this-day-in-jewish-history/1504-proselytizing-jews-burned-at-the-stake.premium-1.490321"                                                            
## [1549] "/wiki/Category:CS1_maint:_BOT:_original-url_status_unknown"                                                                                                                                                         
## [1550] "#cite_ref-Calabria_113-0"                                                                                                                                                                                           
## [1551] "http://www.jewishvirtuallibrary.org/calabria"                                                                                                                                                                       
## [1552] "#cite_ref-114"                                                                                                                                                                                                      
## [1553] "http://www.jewishvirtuallibrary.org/conegliano"                                                                                                                                                                     
## [1554] "#cite_ref-115"                                                                                                                                                                                                      
## [1555] "http://www.jewishencyclopedia.com/articles/9585-laibach"                                                                                                                                                            
## [1556] "#cite_ref-Genoa_116-0"                                                                                                                                                                                              
## [1557] "http://www.jewishvirtuallibrary.org/genoa"                                                                                                                                                                          
## [1558] "#cite_ref-Ljubljana_117-0"                                                                                                                                                                                          
## [1559] "http://www.jewishvirtuallibrary.org/ljubljana"                                                                                                                                                                      
## [1560] "#cite_ref-118"                                                                                                                                                                                                      
## [1561] "http://www.jewishvirtuallibrary.org/cranganore"                                                                                                                                                                     
## [1562] "#cite_ref-119"                                                                                                                                                                                                      
## [1563] "#cite_ref-Pezinok_120-0"                                                                                                                                                                                            
## [1564] "http://www.jewishvirtuallibrary.org/pezinok"                                                                                                                                                                        
## [1565] "#cite_ref-121"                                                                                                                                                                                                      
## [1566] "http://www.jewishvirtuallibrary.org/nauheim"                                                                                                                                                                        
## [1567] "#cite_ref-Basel_JE_122-0"                                                                                                                                                                                           
## [1568] "http://www.jewishencyclopedia.com/articles/2609-basel"                                                                                                                                                              
## [1569] "#cite_ref-123"                                                                                                                                                                                                      
## [1570] "http://www.jewishvirtuallibrary.org/goa"                                                                                                                                                                            
## [1571] "#cite_ref-124"                                                                                                                                                                                                      
## [1572] "#cite_ref-125"                                                                                                                                                                                                      
## [1573] "http://www.jewishencyclopedia.com/articles/2022-asolo"                                                                                                                                                              
## [1574] "#cite_ref-126"                                                                                                                                                                                                      
## [1575] "#cite_ref-Bologna_127-0"                                                                                                                                                                                            
## [1576] "#cite_ref-Bologna_127-1"                                                                                                                                                                                            
## [1577] "http://www.jewishvirtuallibrary.org/bologna-jewish-history-tour"                                                                                                                                                    
## [1578] "#cite_ref-128"                                                                                                                                                                                                      
## [1579] "#cite_ref-Remona_129-0"                                                                                                                                                                                             
## [1580] "https://www.jewishvirtuallibrary.org/cremona-jewish-virtual-library"                                                                                                                                                
## [1581] "#cite_ref-130"                                                                                                                                                                                                      
## [1582] "#cite_ref-Lima_131-0"                                                                                                                                                                                               
## [1583] "#cite_ref-Lima_131-1"                                                                                                                                                                                               
## [1584] "#cite_ref-Lima_131-2"                                                                                                                                                                                               
## [1585] "http://www.jewishvirtuallibrary.org/lima-peru"                                                                                                                                                                      
## [1586] "#cite_ref-132"                                                                                                                                                                                                      
## [1587] "http://www.jewishencyclopedia.com/articles/12943-russia"                                                                                                                                                            
## [1588] "#cite_ref-133"                                                                                                                                                                                                      
## [1589] "#cite_ref-134"                                                                                                                                                                                                      
## [1590] "http://www.jewishvirtuallibrary.org/padua"                                                                                                                                                                          
## [1591] "#cite_ref-135"                                                                                                                                                                                                      
## [1592] "https://www.jewishvirtuallibrary.org/nu-x00f1-ez"                                                                                                                                                                   
## [1593] "#cite_ref-Radom_136-0"                                                                                                                                                                                              
## [1594] "#cite_ref-Radom_136-1"                                                                                                                                                                                              
## [1595] "#cite_ref-Radom_136-2"                                                                                                                                                                                              
## [1596] "http://www.jewishvirtuallibrary.org/radom"                                                                                                                                                                          
## [1597] "#cite_ref-137"                                                                                                                                                                                                      
## [1598] "http://www.haaretz.com/jewish/this-day-in-jewish-history/.premium-1.649009"                                                                                                                                         
## [1599] "#cite_ref-Lenchitza_138-0"                                                                                                                                                                                          
## [1600] "http://www.jewishencyclopedia.com/articles/9748-lenchitza"                                                                                                                                                          
## [1601] "#cite_ref-139"                                                                                                                                                                                                      
## [1602] "http://www.haaretz.com/jewish/this-day-in-jewish-history/.premium-1.563595"                                                                                                                                         
## [1603] "#cite_ref-140"                                                                                                                                                                                                      
## [1604] "http://www.haaretz.com/jewish/features/1649-violent-public-penance-for-secret-spanish-jews.premium-1.514839"                                                                                                        
## [1605] "#cite_ref-Kashan_141-0"                                                                                                                                                                                             
## [1606] "http://www.jewishvirtuallibrary.org/kashan"                                                                                                                                                                         
## [1607] "#cite_ref-142"                                                                                                                                                                                                      
## [1608] "http://www.jewishencyclopedia.com/articles/6789-gomez-antonio-enriquez"                                                                                                                                             
## [1609] "#cite_ref-143"                                                                                                                                                                                                      
## [1610] "#cite_ref-Oran_144-0"                                                                                                                                                                                               
## [1611] "http://www.jewishvirtuallibrary.org/oran"                                                                                                                                                                           
## [1612] "#cite_ref-Buda_145-0"                                                                                                                                                                                               
## [1613] "#cite_ref-Buda_145-1"                                                                                                                                                                                               
## [1614] "http://www.haaretz.com/jewish/this-day-in-jewish-history/.premium-1.611302"                                                                                                                                         
## [1615] "#cite_ref-146"                                                                                                                                                                                                      
## [1616] "http://www.jewishvirtuallibrary.org/budapest-hungary-jewish-history-tour"                                                                                                                                           
## [1617] "#cite_ref-147"                                                                                                                                                                                                      
## [1618] "http://www.yivoencyclopedia.org/article.aspx/Prague"                                                                                                                                                                
## [1619] "#cite_ref-148"                                                                                                                                                                                                      
## [1620] "http://www.jewishencyclopedia.com/articles/14336-terongi-raphael-benito"                                                                                                                                            
## [1621] "#cite_ref-149"                                                                                                                                                                                                      
## [1622] "https://www.nytimes.com/2011/05/07/world/europe/07iht-spain07.html"                                                                                                                                                 
## [1623] "#cite_ref-150"                                                                                                                                                                                                      
## [1624] "http://www.encyclopedia.com/religion/encyclopedias-almanacs-transcripts-and-maps/sandomierz"                                                                                                                        
## [1625] "#cite_ref-151"                                                                                                                                                                                                      
## [1626] "http://www.jewishencyclopedia.com/articles/2422-bamberg"                                                                                                                                                            
## [1627] "#cite_ref-Algiers_152-0"                                                                                                                                                                                            
## [1628] "http://www.jewishvirtuallibrary.org/algiers"                                                                                                                                                                        
## [1629] "#cite_ref-153"                                                                                                                                                                                                      
## [1630] "#cite_ref-154"                                                                                                                                                                                                      
## [1631] "https://www.jewishvirtuallibrary.org/judah-hechassid"                                                                                                                                                               
## [1632] "#cite_ref-155"                                                                                                                                                                                                      
## [1633] "/wiki/International_Standard_Book_Number"                                                                                                                                                                           
## [1634] "/wiki/Special:BookSources/9780980171099"                                                                                                                                                                            
## [1635] "#cite_ref-156"                                                                                                                                                                                                      
## [1636] "http://www.jewishhistory.org.il/history.php?startyear=1720&endyear=1729"                                                                                                                                            
## [1637] "#cite_ref-Jaroslaw_157-0"                                                                                                                                                                                           
## [1638] "http://www.jewishvirtuallibrary.org/jaroslaw-poland"                                                                                                                                                                
## [1639] "#cite_ref-158"                                                                                                                                                                                                      
## [1640] "http://www.yivoencyclopedia.org/article.aspx/Latvia"                                                                                                                                                                
## [1641] "#cite_ref-Kaunas_159-0"                                                                                                                                                                                             
## [1642] "http://www.jewishvirtuallibrary.org/kaunas"                                                                                                                                                                         
## [1643] "#cite_ref-160"                                                                                                                                                                                                      
## [1644] "http://www.jewishencyclopedia.com/articles/14376-thorn"                                                                                                                                                             
## [1645] "#cite_ref-161"                                                                                                                                                                                                      
## [1646] "#cite_ref-Timeline_162-0"                                                                                                                                                                                           
## [1647] "http://www.jewishvirtuallibrary.org/timeline-for-the-history-of-judaism"                                                                                                                                            
## [1648] "#cite_ref-163"                                                                                                                                                                                                      
## [1649] "#cite_ref-164"                                                                                                                                                                                                      
## [1650] "#cite_ref-165"                                                                                                                                                                                                      
## [1651] "https://web.archive.org/web/20110615234338/http://www.tourosynagogue.org/pdfs/WashingtonLetter.pdf"                                                                                                                 
## [1652] "http://www.tourosynagogue.org/pdfs/WashingtonLetter.pdf"                                                                                                                                                            
## [1653] "#cite_ref-166"                                                                                                                                                                                                      
## [1654] "https://web.archive.org/web/20140819084238/http://www.providencejournal.com/breaking-news/content/20130818-newports-touro-synagogue-celebrates-its-250th-anniversary-gallery.ece"                                   
## [1655] "http://www.providencejournal.com/breaking-news/content/20130818-newports-touro-synagogue-celebrates-its-250th-anniversary-gallery.ece"                                                                              
## [1656] "#cite_ref-167"                                                                                                                                                                                                      
## [1657] "https://news.brown.edu/articles/2007/08/touro-address"                                                                                                                                                              
## [1658] "#cite_ref-168"                                                                                                                                                                                                      
## [1659] "https://news.brown.edu/articles/2014/08/touro"                                                                                                                                                                      
## [1660] "#cite_ref-169"                                                                                                                                                                                                      
## [1661] "https://web.archive.org/web/20021201224108/http://www.us-israel.org/jsource/History/pale.html"                                                                                                                      
## [1662] "http://www.us-israel.org/jsource/History/pale.html"                                                                                                                                                                 
## [1663] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=25"                                                                                                                                                 
## [1664] "https://www.state.gov/j/drl/rls/irf/religiousfreedom/index.htm#wrapper"                                                                                                                                             
## [1665] "/wiki/Template:Antisemitism_topics"                                                                                                                                                                                 
## [1666] "/wiki/Template_talk:Antisemitism_topics"                                                                                                                                                                            
## [1667] "//en.wikipedia.org/w/index.php?title=Template:Antisemitism_topics&action=edit"                                                                                                                                      
## [1668] "/wiki/Antisemitism"                                                                                                                                                                                                 
## [1669] "/wiki/Xenophobia"                                                                                                                                                                                                   
## [1670] "/wiki/History_of_antisemitism"                                                                                                                                                                                      
## [1671] "/wiki/Timeline_of_antisemitism_in_the_19th_century"                                                                                                                                                                 
## [1672] "/wiki/Timeline_of_antisemitism_in_the_20th_century"                                                                                                                                                                 
## [1673] "/wiki/Timeline_of_antisemitism_in_the_21st_century"                                                                                                                                                                 
## [1674] "/wiki/Geography_of_antisemitism"                                                                                                                                                                                    
## [1675] "/wiki/Religious_antisemitism"                                                                                                                                                                                       
## [1676] "/wiki/Antisemitic_canard"                                                                                                                                                                                           
## [1677] "/wiki/Persecution_of_Jews"                                                                                                                                                                                          
## [1678] "/wiki/New_antisemitism"                                                                                                                                                                                             
## [1679] "/wiki/3D_Test_of_Antisemitism"                                                                                                                                                                                      
## [1680] "/wiki/Working_Definition_of_Antisemitism"                                                                                                                                                                           
## [1681] "/wiki/Racial_antisemitism"                                                                                                                                                                                          
## [1682] "/wiki/Secondary_antisemitism"                                                                                                                                                                                       
## [1683] "/wiki/Christianity_and_antisemitism"                                                                                                                                                                                
## [1684] "/wiki/Islam_and_antisemitism"                                                                                                                                                                                       
## [1685] "/wiki/Nation_of_Islam_and_antisemitism"                                                                                                                                                                             
## [1686] "/wiki/Universities_and_antisemitism"                                                                                                                                                                                
## [1687] "/wiki/Anti-Zionism"                                                                                                                                                                                                 
## [1688] "/wiki/The_International_Jew"                                                                                                                                                                                        
## [1689] "/wiki/Jewish_Bolshevism"                                                                                                                                                                                            
## [1690] "/wiki/Ku_Klux_Klan"                                                                                                                                                                                                 
## [1691] "/wiki/Propaganda_in_Nazi_Germany"                                                                                                                                                                                   
## [1692] "/wiki/Philo-Semitism"                                                                                                                                                                                               
## [1693] "/wiki/The_Protocols_of_the_Elders_of_Zion"                                                                                                                                                                          
## [1694] "/wiki/Self-hating_Jew"                                                                                                                                                                                              
## [1695] "/wiki/Religious_antisemitism"                                                                                                                                                                                       
## [1696] "/wiki/Anti-Judaism"                                                                                                                                                                                                 
## [1697] "/wiki/Martin_Luther_and_antisemitism"                                                                                                                                                                               
## [1698] "/wiki/Spanish_Inquisition"                                                                                                                                                                                          
## [1699] "/wiki/Portuguese_Inquisition"                                                                                                                                                                                       
## [1700] "/wiki/Blood_curse"                                                                                                                                                                                                  
## [1701] "/wiki/Blood_libel"                                                                                                                                                                                                  
## [1702] "/wiki/Host_desecration"                                                                                                                                                                                             
## [1703] "/wiki/Judensau"                                                                                                                                                                                                     
## [1704] "/wiki/Pogrom"                                                                                                                                                                                                       
## [1705] "/wiki/Ghetto_benches"                                                                                                                                                                                               
## [1706] "/wiki/Hep-Hep_riots"                                                                                                                                                                                                
## [1707] "/wiki/Pogrom#In_the_Russian_Empire"                                                                                                                                                                                 
## [1708] "/wiki/May_Laws"                                                                                                                                                                                                     
## [1709] "/wiki/1968_Polish_political_crisis"                                                                                                                                                                                 
## [1710] "/wiki/Leo_Frank"                                                                                                                                                                                                    
## [1711] "/wiki/Dreyfus_affair"                                                                                                                                                                                               
## [1712] "/wiki/Farhud"                                                                                                                                                                                                       
## [1713] "/wiki/General_Order_No._11_(1862)"                                                                                                                                                                                  
## [1714] "/wiki/Historical_negationism"                                                                                                                                                                                       
## [1715] "/wiki/Nazism"                                                                                                                                                                                                       
## [1716] "/wiki/Nazi_Germany"                                                                                                                                                                                                 
## [1717] "/wiki/The_Holocaust"                                                                                                                                                                                                
## [1718] "/wiki/Racial_policy_of_Nazi_Germany"                                                                                                                                                                                
## [1719] "/wiki/Holocaust_denial"                                                                                                                                                                                             
## [1720] "/wiki/Zionist_Occupation_Government_conspiracy_theory"                                                                                                                                                              
## [1721] "/wiki/Bible_Believers"                                                                                                                                                                                              
## [1722] "/wiki/The_Daily_Stormer"                                                                                                                                                                                            
## [1723] "/wiki/Institute_for_Historical_Review"                                                                                                                                                                              
## [1724] "/wiki/Jew_Watch"                                                                                                                                                                                                    
## [1725] "/wiki/Metapedia"                                                                                                                                                                                                    
## [1726] "/wiki/Craig_Cobb"                                                                                                                                                                                                   
## [1727] "/wiki/Radio_Islam"                                                                                                                                                                                                  
## [1728] "/wiki/Redwatch"                                                                                                                                                                                                     
## [1729] "/wiki/The_Right_Stuff_(blog)"                                                                                                                                                                                       
## [1730] "/wiki/Stormfront_(website)"                                                                                                                                                                                         
## [1731] "/wiki/Anti-Defamation_League"                                                                                                                                                                                       
## [1732] "/wiki/Bay_Area_Holocaust_Oral_History_Project"                                                                                                                                                                      
## [1733] "/wiki/Community_Security_Trust"                                                                                                                                                                                     
## [1734] "/wiki/Middle_East_Media_Research_Institute"                                                                                                                                                                         
## [1735] "/wiki/Simon_Wiesenthal_Center"                                                                                                                                                                                      
## [1736] "/wiki/Southern_Poverty_Law_Center"                                                                                                                                                                                  
## [1737] "/wiki/Stephen_Roth_Institute"                                                                                                                                                                                       
## [1738] "/wiki/Yad_Vashem"                                                                                                                                                                                                   
## [1739] "/wiki/Antisemitism_in_the_Arab_world"                                                                                                                                                                               
## [1740] "/wiki/Antisemitism_in_Europe"                                                                                                                                                                                       
## [1741] "/wiki/Antisemitism_in_contemporary_Austria"                                                                                                                                                                         
## [1742] "/wiki/Antisemitism_in_Canada"                                                                                                                                                                                       
## [1743] "/wiki/Antisemitism_in_21st-century_France"                                                                                                                                                                          
## [1744] "/wiki/Antisemitism_in_Greece"                                                                                                                                                                                       
## [1745] "/wiki/Antisemitism_in_contemporary_Hungary"                                                                                                                                                                         
## [1746] "/wiki/Antisemitism_in_21st-century_Italy"                                                                                                                                                                           
## [1747] "/wiki/Antisemitism_in_Japan"                                                                                                                                                                                        
## [1748] "/wiki/Antisemitism_in_Norway"                                                                                                                                                                                       
## [1749] "/wiki/Antisemitism_in_Pakistan"                                                                                                                                                                                     
## [1750] "/wiki/Antisemitism_in_Russia"                                                                                                                                                                                       
## [1751] "/wiki/Antisemitism_in_the_Russian_Empire"                                                                                                                                                                           
## [1752] "/wiki/Antisemitism_in_the_Soviet_Union"                                                                                                                                                                             
## [1753] "/wiki/Antisemitism_in_Spain"                                                                                                                                                                                        
## [1754] "/wiki/Antisemitism_in_Sweden"                                                                                                                                                                                       
## [1755] "/wiki/Antisemitism_in_Turkey"                                                                                                                                                                                       
## [1756] "/wiki/Antisemitism_in_Ukraine"                                                                                                                                                                                      
## [1757] "/wiki/Antisemitism_in_the_United_Kingdom"                                                                                                                                                                           
## [1758] "/wiki/Antisemitism_in_the_United_States"                                                                                                                                                                            
## [1759] "/wiki/Antisemitism_in_Venezuela"                                                                                                                                                                                    
## [1760] "/wiki/Template:Timelines_of_religion"                                                                                                                                                                               
## [1761] "/wiki/Template_talk:Timelines_of_religion"                                                                                                                                                                          
## [1762] "//en.wikipedia.org/w/index.php?title=Template:Timelines_of_religion&action=edit"                                                                                                                                    
## [1763] "/wiki/Timeline_of_religion"                                                                                                                                                                                         
## [1764] "/wiki/Christianity"                                                                                                                                                                                                 
## [1765] "/wiki/Timeline_of_Christianity"                                                                                                                                                                                     
## [1766] "/wiki/Chronology_of_the_Bible"                                                                                                                                                                                      
## [1767] "/wiki/Ussher_chronology"                                                                                                                                                                                            
## [1768] "/wiki/Timeline_of_the_English_Reformation"                                                                                                                                                                          
## [1769] "/wiki/Timeline_of_intelligent_design"                                                                                                                                                                               
## [1770] "/wiki/Timeline_of_Jerusalem"                                                                                                                                                                                        
## [1771] "/wiki/Chronology_of_Jesus"                                                                                                                                                                                          
## [1772] "/wiki/Timeline_of_Joan_of_Arc"                                                                                                                                                                                      
## [1773] "/wiki/Timeline_of_Christian_missions"                                                                                                                                                                               
## [1774] "/wiki/Chronology_of_Mormonism"                                                                                                                                                                                      
## [1775] "/wiki/Book_of_Mormon_chronology"                                                                                                                                                                                    
## [1776] "/wiki/Timeline_of_Eastern_Orthodoxy_in_North_America"                                                                                                                                                               
## [1777] "/wiki/Timeline_of_Eastern_Orthodoxy_in_Greece"                                                                                                                                                                      
## [1778] "/wiki/Timeline_of_the_Catholic_Church"                                                                                                                                                                              
## [1779] "/wiki/Timeline_of_Opus_Dei"                                                                                                                                                                                         
## [1780] "/wiki/Timeline_of_the_Syro-Malabar_Catholic_Church"                                                                                                                                                                 
## [1781] "/wiki/Ancient_Greek_religion"                                                                                                                                                                                       
## [1782] "/wiki/Theogony"                                                                                                                                                                                                     
## [1783] "/wiki/Chaos_(mythology)"                                                                                                                                                                                            
## [1784] "/wiki/Chronos"                                                                                                                                                                                                      
## [1785] "/wiki/Prometheus"                                                                                                                                                                                                   
## [1786] "/wiki/Ages_of_Man"                                                                                                                                                                                                  
## [1787] "/wiki/Islam"                                                                                                                                                                                                        
## [1788] "/wiki/Timeline_of_Muslim_history"                                                                                                                                                                                   
## [1789] "/wiki/Timeline_of_Jerusalem"                                                                                                                                                                                        
## [1790] "/wiki/Timeline_of_the_Muslim_presence_in_the_Iberian_Peninsula"                                                                                                                                                     
## [1791] "/wiki/Judaism"                                                                                                                                                                                                      
## [1792] "/wiki/Timeline_of_Jewish_history"                                                                                                                                                                                   
## [1793] "/wiki/Hebrew_Bible:_Timeline"                                                                                                                                                                                       
## [1794] "/wiki/Timeline_of_the_Hebrew_prophets"                                                                                                                                                                              
## [1795] "/wiki/Timeline_of_Jerusalem"                                                                                                                                                                                        
## [1796] "/wiki/Timeline_of_Zionism"                                                                                                                                                                                          
## [1797] "/wiki/Timeline_of_Ayyavazhi_history"                                                                                                                                                                                
## [1798] "/wiki/Bah%C3%A1%27%C3%AD_timeline"                                                                                                                                                                                  
## [1799] "/wiki/Timeline_of_Buddhism"                                                                                                                                                                                         
## [1800] "/wiki/Timeline_of_Hindu_texts"                                                                                                                                                                                      
## [1801] "/wiki/Timeline_of_Scientology"                                                                                                                                                                                      
## [1802] "/wiki/Timeline_of_Zen_Buddhism_in_the_United_States"                                                                                                                                                                
## [1803] "/wiki/Portal:Religion"                                                                                                                                                                                              
## [1804] "https://en.wikipedia.org/w/index.php?title=Timeline_of_antisemitism&oldid=876890162"                                                                                                                                
## [1805] "/wiki/Help:Category"                                                                                                                                                                                                
## [1806] "/wiki/Category:Antisemitic_attacks_and_incidents"                                                                                                                                                                   
## [1807] "/wiki/Category:Antisemitism"                                                                                                                                                                                        
## [1808] "/wiki/Category:Jewish_history_timelines"                                                                                                                                                                            
## [1809] "/wiki/Category:CS1_maint:_BOT:_original-url_status_unknown"                                                                                                                                                         
## [1810] "/wiki/Category:Use_dmy_dates_from_October_2010"                                                                                                                                                                     
## [1811] "/wiki/Category:Dynamic_lists"                                                                                                                                                                                       
## [1812] "/wiki/Category:All_articles_with_unsourced_statements"                                                                                                                                                              
## [1813] "/wiki/Category:Articles_with_unsourced_statements_from_June_2014"                                                                                                                                                   
## [1814] "/wiki/Category:Articles_with_unsourced_statements_from_July_2018"                                                                                                                                                   
## [1815] "/wiki/Category:Wikipedia_articles_needing_clarification_from_June_2009"                                                                                                                                             
## [1816] "/wiki/Special:MyTalk"                                                                                                                                                                                               
## [1817] "/wiki/Special:MyContributions"                                                                                                                                                                                      
## [1818] "/w/index.php?title=Special:CreateAccount&returnto=Timeline+of+antisemitism"                                                                                                                                         
## [1819] "/w/index.php?title=Special:UserLogin&returnto=Timeline+of+antisemitism"                                                                                                                                             
## [1820] "/wiki/Timeline_of_antisemitism"                                                                                                                                                                                     
## [1821] "/wiki/Talk:Timeline_of_antisemitism"                                                                                                                                                                                
## [1822] "/wiki/Timeline_of_antisemitism"                                                                                                                                                                                     
## [1823] "/w/index.php?title=Timeline_of_antisemitism&action=edit"                                                                                                                                                            
## [1824] "/w/index.php?title=Timeline_of_antisemitism&action=history"                                                                                                                                                         
## [1825] "/wiki/Main_Page"                                                                                                                                                                                                    
## [1826] "/wiki/Main_Page"                                                                                                                                                                                                    
## [1827] "/wiki/Portal:Contents"                                                                                                                                                                                              
## [1828] "/wiki/Portal:Featured_content"                                                                                                                                                                                      
## [1829] "/wiki/Portal:Current_events"                                                                                                                                                                                        
## [1830] "/wiki/Special:Random"                                                                                                                                                                                               
## [1831] "https://donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&utm_medium=sidebar&utm_campaign=C13_en.wikipedia.org&uselang=en"                                                                   
## [1832] "//shop.wikimedia.org"                                                                                                                                                                                               
## [1833] "/wiki/Help:Contents"                                                                                                                                                                                                
## [1834] "/wiki/Wikipedia:About"                                                                                                                                                                                              
## [1835] "/wiki/Wikipedia:Community_portal"                                                                                                                                                                                   
## [1836] "/wiki/Special:RecentChanges"                                                                                                                                                                                        
## [1837] "//en.wikipedia.org/wiki/Wikipedia:Contact_us"                                                                                                                                                                       
## [1838] "/wiki/Special:WhatLinksHere/Timeline_of_antisemitism"                                                                                                                                                               
## [1839] "/wiki/Special:RecentChangesLinked/Timeline_of_antisemitism"                                                                                                                                                         
## [1840] "/wiki/Wikipedia:File_Upload_Wizard"                                                                                                                                                                                 
## [1841] "/wiki/Special:SpecialPages"                                                                                                                                                                                         
## [1842] "/w/index.php?title=Timeline_of_antisemitism&oldid=876890162"                                                                                                                                                        
## [1843] "/w/index.php?title=Timeline_of_antisemitism&action=info"                                                                                                                                                            
## [1844] "https://www.wikidata.org/wiki/Special:EntityPage/Q48172"                                                                                                                                                            
## [1845] "/w/index.php?title=Special:CiteThisPage&page=Timeline_of_antisemitism&id=876890162"                                                                                                                                 
## [1846] "/w/index.php?title=Special:Book&bookcmd=book_creator&referer=Timeline+of+antisemitism"                                                                                                                              
## [1847] "/w/index.php?title=Special:ElectronPdf&page=Timeline+of+antisemitism&action=show-download-screen"                                                                                                                   
## [1848] "/w/index.php?title=Timeline_of_antisemitism&printable=yes"                                                                                                                                                          
## [1849] "https://hy.wikipedia.org/wiki/%D5%80%D5%A1%D5%AF%D5%A1%D5%BD%D5%A5%D5%B4%D5%B8%D6%82%D5%A9%D5%B5%D5%A1%D5%B6_%D5%AA%D5%A1%D5%B4%D5%A1%D5%B6%D5%A1%D5%AF%D5%A1%D5%A3%D6%80%D5%B8%D6%82%D5%A9%D5%B5%D5%B8%D6%82%D5%B6"
## [1850] "https://pt.wikipedia.org/wiki/Linha_do_tempo_do_antissemitismo"                                                                                                                                                     
## [1851] "https://ro.wikipedia.org/wiki/Cronologia_antisemitismului"                                                                                                                                                          
## [1852] "https://ru.wikipedia.org/wiki/%D0%A5%D1%80%D0%BE%D0%BD%D0%BE%D0%BB%D0%BE%D0%B3%D0%B8%D1%8F_%D0%B0%D0%BD%D1%82%D0%B8%D1%81%D0%B5%D0%BC%D0%B8%D1%82%D0%B8%D0%B7%D0%BC%D0%B0"                                          
## [1853] "https://www.wikidata.org/wiki/Special:EntityPage/Q48172#sitelinks-wikipedia"                                                                                                                                        
## [1854] "//en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License"                                                                                                             
## [1855] "//creativecommons.org/licenses/by-sa/3.0/"                                                                                                                                                                          
## [1856] "//foundation.wikimedia.org/wiki/Terms_of_Use"                                                                                                                                                                       
## [1857] "//foundation.wikimedia.org/wiki/Privacy_policy"                                                                                                                                                                     
## [1858] "//www.wikimediafoundation.org/"                                                                                                                                                                                     
## [1859] "https://foundation.wikimedia.org/wiki/Privacy_policy"                                                                                                                                                               
## [1860] "/wiki/Wikipedia:About"                                                                                                                                                                                              
## [1861] "/wiki/Wikipedia:General_disclaimer"                                                                                                                                                                                 
## [1862] "//en.wikipedia.org/wiki/Wikipedia:Contact_us"                                                                                                                                                                       
## [1863] "https://www.mediawiki.org/wiki/Special:MyLanguage/How_to_contribute"                                                                                                                                                
## [1864] "https://foundation.wikimedia.org/wiki/Cookie_statement"                                                                                                                                                             
## [1865] "//en.m.wikipedia.org/w/index.php?title=Timeline_of_antisemitism&mobileaction=toggle_view_mobile"                                                                                                                    
## [1866] "https://wikimediafoundation.org/"                                                                                                                                                                                   
## [1867] "//www.mediawiki.org/"                                                                                                                                                                                               
## 
## [[3]]
## character(0)
## 
## [[4]]
##  [1] "https://rud.is/b/"                                                                                                                                                
##  [2] "https://twitter.com/hrbrmstr"                                                                                                                                     
##  [3] "https://gitlab.com/hrbrmstr"                                                                                                                                      
##  [4] "https://github.com/hrbrmstr"                                                                                                                                      
##  [5] "https://www.linkedin.com/in/hrbrmstr"                                                                                                                             
##  [6] "https://rud.is/b/feed/"                                                                                                                                           
##  [7] "http://rud.is/b/"                                                                                                                                                 
##  [8] "https://rud.is/b/about/"                                                                                                                                          
##  [9] "https://git.sr.ht/~hrbrmstr/"                                                                                                                                     
## [10] "https://micro.blog/hrbrmstr"                                                                                                                                      
## [11] "http://resume.github.io/?hrbrmstr"                                                                                                                                
## [12] "http://twitter.com/hrbrmstr"                                                                                                                                      
## [13] "http://rpubs.com/hrbrmstr/"                                                                                                                                       
## [14] "https://rud.is/b/playground/"                                                                                                                                     
## [15] "https://rud.is/b/privacy-policy/"                                                                                                                                 
## [16] "https://rud.is/b/cookie-policy/"                                                                                                                                  
## [17] "https://rweekly.org/"                                                                                                                                             
## [18] "https://www.r-bloggers.com/"                                                                                                                                      
## [19] "https://rud.is/b/books/"                                                                                                                                          
## [20] "https://rud.is/b/2018/01/12/post/"                                                                                                                                
## [21] "https://rud.is/b/2018/01/12/page/"                                                                                                                                
## [22] "https://rud.is/b/r-cyber/"                                                                                                                                        
## [23] "https://rud.is/b/2019/02/28/htmlunitjars-updated-to-2-34-0/"                                                                                                      
## [24] "https://rud.is/b/category/r/"                                                                                                                                     
## [25] "https://rud.is/b/category/web-scraping/"                                                                                                                          
## [26] "https://rud.is/b/2019/02/28/htmlunitjars-updated-to-2-34-0/"                                                                                                      
## [27] "https://rud.is/b/author/hrbrmstr/"                                                                                                                                
## [28] "https://rud.is/b/2019/02/28/htmlunitjars-updated-to-2-34-0/#comments"                                                                                             
## [29] "https://rud.is/b/2019/02/28/htmlunitjars-updated-to-2-34-0/"                                                                                                      
## [30] "https://rud.is/b/2019/02/28/drat-all-the-%f0%9f%93%a6-enabling-easier-package-discovery-and-installation-with-your-own-cran-like-repo-for-your-packages/"         
## [31] "https://rud.is/b/category/r/"                                                                                                                                     
## [32] "https://rud.is/b/2019/02/28/drat-all-the-%f0%9f%93%a6-enabling-easier-package-discovery-and-installation-with-your-own-cran-like-repo-for-your-packages/"         
## [33] "https://rud.is/b/author/hrbrmstr/"                                                                                                                                
## [34] "https://rud.is/b/2019/02/28/drat-all-the-%f0%9f%93%a6-enabling-easier-package-discovery-and-installation-with-your-own-cran-like-repo-for-your-packages/#comments"
## [35] "https://rud.is/b/2019/02/28/drat-all-the-%f0%9f%93%a6-enabling-easier-package-discovery-and-installation-with-your-own-cran-like-repo-for-your-packages/"         
## [36] "https://rud.is/b/2019/02/22/cloudy-with-a-chance-of-caffeinated-query-orchestration-new-rjava-wrappers-for-aws-athena-sdk-for-java/"                              
## [37] "https://rud.is/b/category/java/"                                                                                                                                  
## [38] "https://rud.is/b/category/r/"                                                                                                                                     
## [39] "https://rud.is/b/2019/02/22/cloudy-with-a-chance-of-caffeinated-query-orchestration-new-rjava-wrappers-for-aws-athena-sdk-for-java/"                              
## [40] "https://rud.is/b/author/hrbrmstr/"                                                                                                                                
## [41] "https://rud.is/b/2019/02/22/cloudy-with-a-chance-of-caffeinated-query-orchestration-new-rjava-wrappers-for-aws-athena-sdk-for-java/#respond"                      
## [42] "https://rud.is/b/2019/02/22/cloudy-with-a-chance-of-caffeinated-query-orchestration-new-rjava-wrappers-for-aws-athena-sdk-for-java/"                              
## [43] "https://rud.is/b/2019/02/20/i-just-wanted-the-data-turning-tableau-tidyverse-tears-into-smiles-with-base-r-an-encoding-detective-story/"                          
## [44] "https://rud.is/b/category/data-wrangling/"                                                                                                                        
## [45] "https://rud.is/b/category/r/"                                                                                                                                     
## [46] "https://rud.is/b/2019/02/20/i-just-wanted-the-data-turning-tableau-tidyverse-tears-into-smiles-with-base-r-an-encoding-detective-story/"                          
## [47] "https://rud.is/b/author/hrbrmstr/"                                                                                                                                
## [48] "https://rud.is/b/2019/02/20/i-just-wanted-the-data-turning-tableau-tidyverse-tears-into-smiles-with-base-r-an-encoding-detective-story/#comments"                 
## [49] "https://rud.is/b/2019/02/20/i-just-wanted-the-data-turning-tableau-tidyverse-tears-into-smiles-with-base-r-an-encoding-detective-story/"                          
## [50] "https://rud.is/b/2019/02/18/in-dev-wigle-your-way-into-a-hotspot-with-wiglr/"                                                                                     
## [51] "https://rud.is/b/category/r/"                                                                                                                                     
## [52] "https://rud.is/b/2019/02/18/in-dev-wigle-your-way-into-a-hotspot-with-wiglr/"                                                                                     
## [53] "https://rud.is/b/author/hrbrmstr/"                                                                                                                                
## [54] "https://rud.is/b/2019/02/18/in-dev-wigle-your-way-into-a-hotspot-with-wiglr/#comments"                                                                            
## [55] "https://rud.is/b/2019/02/18/in-dev-wigle-your-way-into-a-hotspot-with-wiglr/"                                                                                     
## [56] "https://rud.is/b/2019/02/18/in-dev-wigle-your-way-into-a-hotspot-with-wiglr/"                                                                                     
## [57] "https://rud.is/b/2019/02/17/conquering-caffeinated-amazon-athena-with-the-metis-trio-of-packages/"                                                                
## [58] "https://rud.is/b/category/athena/"                                                                                                                                
## [59] "https://rud.is/b/category/java/"                                                                                                                                  
## [60] "https://rud.is/b/category/linux/"                                                                                                                                 
## [61] "https://rud.is/b/category/r/"                                                                                                                                     
## [62] "https://rud.is/b/2019/02/17/conquering-caffeinated-amazon-athena-with-the-metis-trio-of-packages/"                                                                
## [63] "https://rud.is/b/author/hrbrmstr/"                                                                                                                                
## [64] "https://rud.is/b/2019/02/17/conquering-caffeinated-amazon-athena-with-the-metis-trio-of-packages/#comments"                                                       
## [65] "https://rud.is/b/2019/02/17/conquering-caffeinated-amazon-athena-with-the-metis-trio-of-packages/"                                                                
## [66] "https://rud.is/b/2019/02/14/using-the-ropendata-r-package-to-access-petabytes-of-free-internet-telemetry-data-from-rapid7/"                                       
## [67] "https://rud.is/b/category/r/"                                                                                                                                     
## [68] "https://rud.is/b/2019/02/14/using-the-ropendata-r-package-to-access-petabytes-of-free-internet-telemetry-data-from-rapid7/"                                       
## [69] "https://rud.is/b/author/hrbrmstr/"                                                                                                                                
## [70] "https://rud.is/b/2019/02/14/using-the-ropendata-r-package-to-access-petabytes-of-free-internet-telemetry-data-from-rapid7/#comments"                              
## [71] "https://rud.is/b/2019/02/14/using-the-ropendata-r-package-to-access-petabytes-of-free-internet-telemetry-data-from-rapid7/"                                       
## [72] "https://rud.is/b/2019/02/09/quick-hit-speeding-up-a-slow-mundane-task-with-a-little-rcpp/"                                                                        
## [73] "https://rud.is/b/category/c/"                                                                                                                                     
## [74] "https://rud.is/b/category/r/"                                                                                                                                     
## [75] "https://rud.is/b/category/rcpp/"                                                                                                                                  
## [76] "https://rud.is/b/2019/02/09/quick-hit-speeding-up-a-slow-mundane-task-with-a-little-rcpp/"                                                                        
## [77] "https://rud.is/b/author/hrbrmstr/"                                                                                                                                
## [78] "https://rud.is/b/2019/02/09/quick-hit-speeding-up-a-slow-mundane-task-with-a-little-rcpp/#comments"                                                               
## [79] "https://rud.is/b/2019/02/09/quick-hit-speeding-up-a-slow-mundane-task-with-a-little-rcpp/"                                                                        
## [80] "https://rud.is/b/page/2/"                                                                                                                                         
## [81] "https://amzn.to/2GYUS9B"                                                                                                                                          
## [82] "http://amazon.com/author/hrbrmstr"                                                                                                                                
## [83] "http://preview.rudis.net/core/app/validate.php"                                                                                                                   
## [84] "https://micro.blog/hrbrmstr"                                                                                                                                      
## [85] "http://preview.rudis.net/core/app/validate.php"