calacademy-research / antcat

World Catalog of Ants
19 stars 8 forks source link

Script: Re-use/rescue orphaned `ReferenceDocument`s with hardcoded "antcat.org" `url`s pointing to them #1307

Closed jonkerz closed 3 years ago

jonkerz commented 3 years ago

For https://github.com/calacademy-research/antcat-issues/issues/114

Script

```ruby EDIT_SUMMARY = 'Re-use/rescue orphaned `ReferenceDocument`s with hardcoded "antcat.org" `url`s pointing to them, see %github1307' ANTCATBOT = User.find_by!(name: 'AntCatBot') RequestStore.store[:current_request_uuid] = SecureRandom.uuid PaperTrail.request.whodunnit = ANTCATBOT.id class HardcodedUrlCleaner def initialize hardcoded_url_document raise '???' unless hardcoded_url_document.url @hardcoded_url_document = hardcoded_url_document @hardcoded_url = hardcoded_url_document.url end def puts_info puts <<~STR document_id: #{hardcoded_url_document.id} url: #{hardcoded_url} reference_id: #{hardcoded_url_document.reference_id} - #{hardcoded_url_document.reference.type} STR end def all_orphans ReferenceDocument.left_joins(:reference).where(references: { id: nil }) end def same_url_hardcoded_more_than_once? ReferenceDocument.where(url: hardcoded_url_document.url).count > 1 end def hardcoded_usage ReferenceDocument.where("url LIKE ?", "%antcat.org/documents/#{hardcoded_url_document.id}/%") end def hardcoded_usage_info "hardcoded_usage: #{hardcoded_usage.pluck(:id, :url)}" end def doc_id_from_url return @_doc_id_from_url if defined?(@_doc_id_from_url) @_doc_id_from_url = hardcoded_url.scan(/(?:antcat\.org\/documents\/)(\d+)/).flatten.first end def target_orphan return @_target_orphan if defined?(@_target_orphan) @_target_orphan = all_orphans.find_by(id: doc_id_from_url) end def replace_with_target_orphan? target_orphan.file_file_name.present? end def puts_target_orphan_info puts " found orphaned ReferenceDocument: #{target_orphan.id}" if target_orphan.file_file_name.present? puts " and it has file: #{target_orphan.file_file_name}".green else puts " but it has no file".red end end def replace_with_target! raise '???' unless (reference = hardcoded_url_document.reference) puts "Replacing...".green puts " hardcoded_url_document.id: #{hardcoded_url_document.id}" puts " hardcoded_url_document.reference_id: #{reference.id}" puts " hardcoded_url_document.url: #{hardcoded_url_document.url}" puts " target_orphan.id: #{target_orphan.id}" puts " target_orphan.reference_id: #{target_orphan.reference_id}" puts " target_orphan.file_file_name: #{target_orphan.file_file_name}" hardcoded_url_document.transaction do hardcoded_url_document.destroy! target_orphan.update!(reference: reference) end end private attr_reader :hardcoded_url_document, :hardcoded_url end ReferenceDocument.joins(:reference).where("url LIKE ?", "%antcat\.org%").find_each do |doc_w_hardcoded_url| cleaner = HardcodedUrlCleaner.new(doc_w_hardcoded_url) if cleaner.hardcoded_usage.any? puts "Skipping - hard harcoded usage".red puts cleaner.hardcoded_usage_info.yellow cleaner.puts_info puts next end if cleaner.same_url_hardcoded_more_than_once? puts "Skipping - the same url is hardcoded more than once".red cleaner.puts_info puts next end if cleaner.target_orphan if cleaner.replace_with_target_orphan? cleaner.replace_with_target! else puts "Ignoring target orphan without a filename".red cleaner.puts_target_orphan_info end else puts " found nothing".red end puts end; nil Activity.execute_script_activity User.find_by!(name: 'Fredrik Palmkron'), EDIT_SUMMARY ```

Output (first run)

```ruby Replacing... hardcoded_url_document.id: 5816 hardcoded_url_document.reference_id: 142323 hardcoded_url_document.url: http://antcat.org/documents/5815/bharti_-_sharma_2013_j_asia-pac_entomol-new-myrmica-from-india.pdf target_orphan.id: 5815 target_orphan.reference_id: target_orphan.file_file_name: bharti_-_sharma_2013_j_asia-pac_entomol-new-myrmica-from-india.pdf Replacing... hardcoded_url_document.id: 6655 hardcoded_url_document.reference_id: 142917 hardcoded_url_document.url: http://antcat.org/documents/6545/chomicki_et_al_2015_prsb_pseudomyrmex_ants_and_their_antplants_incl_suppl_material.pdf target_orphan.id: 6545 target_orphan.reference_id: target_orphan.file_file_name: chomicki_et_al_2015_prsb_pseudomyrmex_ants_and_their_antplants_incl_suppl_material.pdf Replacing... hardcoded_url_document.id: 6656 hardcoded_url_document.reference_id: 143001 hardcoded_url_document.url: http://antcat.org/documents/6652/trichomyrmex_of_arabia.pdf target_orphan.id: 6652 target_orphan.reference_id: target_orphan.file_file_name: trichomyrmex_of_arabia.pdf Skipping - the same url is hardcoded more than once document_id: 6662 url: http://antcat.org/documents/6660/chen_etal_2016_far_eastern_entomol_cerapachys_bispinatus.pdf reference_id: 143009 - ArticleReference Replacing... hardcoded_url_document.id: 6666 hardcoded_url_document.reference_id: 143010 hardcoded_url_document.url: http://antcat.org/documents/6665/hita_garcia_et_al_2017_taxonomy_of_the_ant_genus_nesomyrmex.pdf target_orphan.id: 6665 target_orphan.reference_id: target_orphan.file_file_name: hita_garcia_et_al_2017_taxonomy_of_the_ant_genus_nesomyrmex.pdf Replacing... hardcoded_url_document.id: 6674 hardcoded_url_document.reference_id: 143013 hardcoded_url_document.url: http://antcat.org/documents/6669/journal-pone-0049485.pdf target_orphan.id: 6669 target_orphan.reference_id: target_orphan.file_file_name: journal-pone-0049485.pdf Replacing... hardcoded_url_document.id: 6693 hardcoded_url_document.reference_id: 142679 hardcoded_url_document.url: http://antcat.org/documents/6314/talavera_et_al_2014_j_biogeo_lasius_balearicus_n-sp.pdf target_orphan.id: 6314 target_orphan.reference_id: target_orphan.file_file_name: talavera_et_al_2014_j_biogeo_lasius_balearicus_n-sp.pdf Replacing... hardcoded_url_document.id: 6698 hardcoded_url_document.reference_id: 143038 hardcoded_url_document.url: http://antcat.org/documents/6697/sosa-calvo_et_al_2017_plos_one_mycetosoritis.pdf target_orphan.id: 6697 target_orphan.reference_id: target_orphan.file_file_name: sosa-calvo_et_al_2017_plos_one_mycetosoritis.pdf Replacing... hardcoded_url_document.id: 6714 hardcoded_url_document.reference_id: 143050 hardcoded_url_document.url: http://antcat.org/documents/6709/vasquez__2011.pdf target_orphan.id: 6709 target_orphan.reference_id: target_orphan.file_file_name: vasquez__2011.pdf Replacing... hardcoded_url_document.id: 6726 hardcoded_url_document.reference_id: 131351 hardcoded_url_document.url: http://antcat.org/documents/3893/14645.pdf target_orphan.id: 3893 target_orphan.reference_id: target_orphan.file_file_name: 14645.pdf Replacing... hardcoded_url_document.id: 6728 hardcoded_url_document.reference_id: 131557 hardcoded_url_document.url: http://antcat.org/documents/4899/Johnson_2000_Seed_harvester_ants.pdf target_orphan.id: 4899 target_orphan.reference_id: target_orphan.file_file_name: Johnson_2000_Seed_harvester_ants.pdf Replacing... hardcoded_url_document.id: 6730 hardcoded_url_document.reference_id: 133069 hardcoded_url_document.url: http://antcat.org/documents/5705/dlussky_2012_paleontol_j-myrmeciinae-fossil-from-germany.pdf target_orphan.id: 5705 target_orphan.reference_id: target_orphan.file_file_name: dlussky_2012_paleontol_j-myrmeciinae-fossil-from-germany.pdf Replacing... hardcoded_url_document.id: 6739 hardcoded_url_document.reference_id: 134418 hardcoded_url_document.url: http://antcat.org/documents/5724/xu_2012_sociobiology-furcotanilla.pdf target_orphan.id: 5724 target_orphan.reference_id: target_orphan.file_file_name: xu_2012_sociobiology-furcotanilla.pdf Replacing... hardcoded_url_document.id: 6743 hardcoded_url_document.reference_id: 143079 hardcoded_url_document.url: http://antcat.org/documents/6742/hita_garcia_et_al_2017_afrotropical_zasphinctus.pdf target_orphan.id: 6742 target_orphan.reference_id: target_orphan.file_file_name: hita_garcia_et_al_2017_afrotropical_zasphinctus.pdf Replacing... hardcoded_url_document.id: 6749 hardcoded_url_document.reference_id: 143083 hardcoded_url_document.url: http://antcat.org/documents/6747/barden_etal_2017_syst_entomol_burmese_amber_haidomyrmecini_linguamyrmex.pdf target_orphan.id: 6747 target_orphan.reference_id: target_orphan.file_file_name: barden_etal_2017_syst_entomol_burmese_amber_haidomyrmecini_linguamyrmex.pdf Skipping - the same url is hardcoded more than once document_id: 6761 url: http://antcat.org/documents/6759/2017-desquivel_et_al-thaumatomyrmex_fraxini.pdf reference_id: 143099 - ArticleReference Replacing... hardcoded_url_document.id: 6784 hardcoded_url_document.reference_id: 130720 hardcoded_url_document.url: http://antcat.org/documents/3795/baroni_urbani__c-__de_andrade__m-l-_2003b-_the_ant_genus_proceratium.pdf target_orphan.id: 3795 target_orphan.reference_id: target_orphan.file_file_name: baroni_urbani__c-__de_andrade__m-l-_2003b-_the_ant_genus_proceratium.pdf Replacing... hardcoded_url_document.id: 6788 hardcoded_url_document.reference_id: 143122 hardcoded_url_document.url: http://antcat.org/documents/6785/mackay__dash_-_2016_-_a_revision_of_the_phalangium_species_complex_of_the_ant_genus_aphaenogaster_-hymenoptera_formicidae_myrmicinae.pdf target_orphan.id: 6785 target_orphan.reference_id: target_orphan.file_file_name: mackay__dash_-_2016_-_a_revision_of_the_phalangium_species_complex_of_the_ant_genus_aphaenogaster_-hymenoptera_formicidae_myrmicinae.pdf Replacing... hardcoded_url_document.id: 6800 hardcoded_url_document.reference_id: 143095 hardcoded_url_document.url: http://antcat.org/documents/6754/agavekar_et_al_2017_taxonomic_overview_of_the_hyperdiverse_ant_genus_tetramorium_in_india.pdf target_orphan.id: 6754 target_orphan.reference_id: target_orphan.file_file_name: agavekar_et_al_2017_taxonomic_overview_of_the_hyperdiverse_ant_genus_tetramorium_in_india.pdf Replacing... hardcoded_url_document.id: 6815 hardcoded_url_document.reference_id: 143129 hardcoded_url_document.url: http://antcat.org/documents/6795/archibald_etal_2018_okanagan_hymenos.pdf target_orphan.id: 6795 target_orphan.reference_id: target_orphan.file_file_name: archibald_etal_2018_okanagan_hymenos.pdf Replacing... hardcoded_url_document.id: 6856 hardcoded_url_document.reference_id: 142626 hardcoded_url_document.url: http://antcat.org/documents/6240/boudinot_2014_tricytarus_new_generic_synonym_of_meranoplus.pdf target_orphan.id: 6240 target_orphan.reference_id: target_orphan.file_file_name: boudinot_2014_tricytarus_new_generic_synonym_of_meranoplus.pdf Replacing... hardcoded_url_document.id: 6857 hardcoded_url_document.reference_id: 142603 hardcoded_url_document.url: http://antcat.org/documents/6218/macgown_et_al_2014_zootaxa_nearctic_odontomachus.pdf target_orphan.id: 6218 target_orphan.reference_id: target_orphan.file_file_name: macgown_et_al_2014_zootaxa_nearctic_odontomachus.pdf Replacing... hardcoded_url_document.id: 6859 hardcoded_url_document.reference_id: 143170 hardcoded_url_document.url: http://antcat.org/documents/6858/Ajerrar_et_al_Temnothorax_tamriensis.pdf target_orphan.id: 6858 target_orphan.reference_id: target_orphan.file_file_name: Ajerrar_et_al_Temnothorax_tamriensis.pdf Replacing... hardcoded_url_document.id: 6862 hardcoded_url_document.reference_id: 143172 hardcoded_url_document.url: http://antcat.org/documents/6861/Jaitrong___Yamane_2018_Nat-Hist-Bull-Siam-Soc_Calyptomyrmex_new_species_from_Laos.pdf target_orphan.id: 6861 target_orphan.reference_id: target_orphan.file_file_name: Jaitrong___Yamane_2018_Nat-Hist-Bull-Siam-Soc_Calyptomyrmex_new_species_from_Laos.pdf Replacing... hardcoded_url_document.id: 6864 hardcoded_url_document.reference_id: 143173 hardcoded_url_document.url: http://antcat.org/documents/6863/RAKOTONIRINA__FISHER_-_2018_-_Zootaxa.pdf target_orphan.id: 6863 target_orphan.reference_id: target_orphan.file_file_name: RAKOTONIRINA__FISHER_-_2018_-_Zootaxa.pdf Replacing... hardcoded_url_document.id: 6913 hardcoded_url_document.reference_id: 143180 hardcoded_url_document.url: http://antcat.org/documents/6906/ZK_article_24908.pdf target_orphan.id: 6906 target_orphan.reference_id: target_orphan.file_file_name: ZK_article_24908.pdf Replacing... hardcoded_url_document.id: 6915 hardcoded_url_document.reference_id: 143185 hardcoded_url_document.url: http://antcat.org/documents/6914/Schär_et_al._-_2018_-_Journal_of_Biogeography.pdf target_orphan.id: 6914 target_orphan.reference_id: target_orphan.file_file_name: Schär_et_al._-_2018_-_Journal_of_Biogeography.pdf Skipping - the same url is hardcoded more than once document_id: 6926 url: http://antcat.org/documents/5844/boudinot___fisher_2013_zootaxa_meranoplus_of_madagascar.pdf reference_id: 142345 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 6927 url: http://antcat.org/documents/6774/barden_etal_2017_leptomyrmex-phylogeny.pdf reference_id: 143112 - ArticleReference Replacing... hardcoded_url_document.id: 6928 hardcoded_url_document.reference_id: 130629 hardcoded_url_document.url: http://antcat.org/documents/5750/abouheif_-_wray_2002_sci-evol-wing-poliphenism-ants.pdf target_orphan.id: 5750 target_orphan.reference_id: target_orphan.file_file_name: abouheif_-_wray_2002_sci-evol-wing-poliphenism-ants.pdf Replacing... hardcoded_url_document.id: 6929 hardcoded_url_document.reference_id: 131007 hardcoded_url_document.url: http://antcat.org/documents/4308/Davidson_et_al_2003_Science.pdf target_orphan.id: 4308 target_orphan.reference_id: target_orphan.file_file_name: Davidson_et_al_2003_Science.pdf Skipping - the same url is hardcoded more than once document_id: 6932 url: http://antcat.org/documents/4487/Krieger&Ross_2002_Science.pdf reference_id: 131645 - ArticleReference Replacing... hardcoded_url_document.id: 6943 hardcoded_url_document.reference_id: 122980 hardcoded_url_document.url: http://antcat.org/documents/331/6524.pdf target_orphan.id: 331 target_orphan.reference_id: target_orphan.file_file_name: 6524.pdf Skipping - the same url is hardcoded more than once document_id: 6948 url: http://antcat.org/documents/1454/4031.pdf reference_id: 125216 - ArticleReference Replacing... hardcoded_url_document.id: 6957 hardcoded_url_document.reference_id: 143195 hardcoded_url_document.url: http://antcat.org/documents/6951/Steiner_et_al._-_2018_-_Molecular_Phylogenetics_and_Evolution.pdf target_orphan.id: 6951 target_orphan.reference_id: target_orphan.file_file_name: Steiner_et_al._-_2018_-_Molecular_Phylogenetics_and_Evolution.pdf Skipping - the same url is hardcoded more than once document_id: 6965 url: http://antcat.org/documents/6962/585-2799-1-SM.pdf reference_id: 143203 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 6971 url: http://antcat.org/documents/6968/Da_Silva_Neves_et_al._-_2018_-_Sociobiology.pdf reference_id: 143207 - ArticleReference Replacing... hardcoded_url_document.id: 6974 hardcoded_url_document.reference_id: 123079 hardcoded_url_document.url: http://antcat.org/documents/368/2360.pdf target_orphan.id: 368 target_orphan.reference_id: target_orphan.file_file_name: 2360.pdf Skipping - the same url is hardcoded more than once document_id: 6986 url: http://antcat.org/documents/838/7602.pdf reference_id: 124002 - BookReference Replacing... hardcoded_url_document.id: 7005 hardcoded_url_document.reference_id: 143233 hardcoded_url_document.url: http://antcat.org/documents/7004/Guerrero_2018_Zootaxa_Tapinoma_melanocephalum.pdf target_orphan.id: 7004 target_orphan.reference_id: target_orphan.file_file_name: Guerrero_2018_Zootaxa_Tapinoma_melanocephalum.pdf Replacing... hardcoded_url_document.id: 7009 hardcoded_url_document.reference_id: 143234 hardcoded_url_document.url: http://antcat.org/documents/7008/mn28_25-33_printable.pdf target_orphan.id: 7008 target_orphan.reference_id: target_orphan.file_file_name: mn28_25-33_printable.pdf Replacing... hardcoded_url_document.id: 7016 hardcoded_url_document.reference_id: 143237 hardcoded_url_document.url: http://antcat.org/documents/7015/Odontomachus_ferminae_upload.pdf target_orphan.id: 7015 target_orphan.reference_id: target_orphan.file_file_name: Odontomachus_ferminae_upload.pdf Skipping - the same url is hardcoded more than once document_id: 7019 url: http://antcat.org/documents/7017/Blaimer_et_al_2018_Insect_Syst___Diversity_Crematogastrini_phylogeny.pdf reference_id: 143238 - ArticleReference Replacing... hardcoded_url_document.id: 7021 hardcoded_url_document.reference_id: 143070 hardcoded_url_document.url: http://antcat.org/documents/6735/seifert__b-__d-eustacchio__d-_et_al-_2017-_four_species_within_the_supercolonial_ants_of_the_tapinoma_nigerrimum_complex_revealed_by_integrative_taxonomy.pdf target_orphan.id: 6735 target_orphan.reference_id: target_orphan.file_file_name: seifert__b-__d-eustacchio__d-_et_al-_2017-_four_species_within_the_supercolonial_ants_of_the_tapinoma_nigerrimum_complex_revealed_by_integrative_taxonomy.pdf Skipping - the same url is hardcoded more than once document_id: 7024 url: http://antcat.org/documents/6809/salata-and-borowiec-2018-am010002.pdf reference_id: 143140 - ArticleReference Replacing... hardcoded_url_document.id: 7025 hardcoded_url_document.reference_id: 143240 hardcoded_url_document.url: http://antcat.org/documents/7023/ZK_article_27022.pdf target_orphan.id: 7023 target_orphan.reference_id: target_orphan.file_file_name: ZK_article_27022.pdf Skipping - the same url is hardcoded more than once document_id: 7034 url: http://antcat.org/documents/6997/Wagner_et_al-2018-Scientific_Reports_(1).pdf reference_id: 143231 - ArticleReference Replacing... hardcoded_url_document.id: 7036 hardcoded_url_document.reference_id: 142676 hardcoded_url_document.url: http://antcat.org/documents/6311/sharaf_et_al_2014_plos_one_meranoplus_pulcher_new_species_from_saudi_arabia.pdf target_orphan.id: 6311 target_orphan.reference_id: target_orphan.file_file_name: sharaf_et_al_2014_plos_one_meranoplus_pulcher_new_species_from_saudi_arabia.pdf Replacing... hardcoded_url_document.id: 7038 hardcoded_url_document.reference_id: 123938 hardcoded_url_document.url: http://antcat.org/documents/825/5258.pdf target_orphan.id: 825 target_orphan.reference_id: target_orphan.file_file_name: 5258.pdf Skipping - the same url is hardcoded more than once document_id: 7052 url: http://antcat.org/documents/7050/Yamada__A.__Luong__P.T.H._et_al._2018._Description_of_a_new_species_of_the_ant_genus_Ooceraea.pdf reference_id: 143254 - ArticleReference Replacing... hardcoded_url_document.id: 7057 hardcoded_url_document.reference_id: 143258 hardcoded_url_document.url: http://antcat.org/documents/7056/Reyes-Lopez__J.L.__Carpintero-Ortega__S._2013._Descripcion_de_Temnothorax_bejaraniensis_nov._sp.pdf target_orphan.id: 7056 target_orphan.reference_id: target_orphan.file_file_name: Reyes-Lopez__J.L.__Carpintero-Ortega__S._2013._Descripcion_de_Temnothorax_bejaraniensis_nov._sp.pdf Replacing... hardcoded_url_document.id: 7076 hardcoded_url_document.reference_id: 143269 hardcoded_url_document.url: http://antcat.org/documents/7075/Hosoishi__S.__Ogata__K._2017._Phylogenetic_analysis_and_systematic_position_of_two_new_species_of_the_ant_genus_Crematogaster.pdf target_orphan.id: 7075 target_orphan.reference_id: target_orphan.file_file_name: Hosoishi__S.__Ogata__K._2017._Phylogenetic_analysis_and_systematic_position_of_two_new_species_of_the_ant_genus_Crematogaster.pdf Replacing... hardcoded_url_document.id: 7082 hardcoded_url_document.reference_id: 143273 hardcoded_url_document.url: http://antcat.org/documents/7080/04_Salata_68-4_769-808_(1).pdf target_orphan.id: 7080 target_orphan.reference_id: target_orphan.file_file_name: 04_Salata_68-4_769-808_(1).pdf Replacing... hardcoded_url_document.id: 7083 hardcoded_url_document.reference_id: 143274 hardcoded_url_document.url: http://antcat.org/documents/7081/05_Radchenko_68-4_809-824.pdf target_orphan.id: 7081 target_orphan.reference_id: target_orphan.file_file_name: 05_Radchenko_68-4_809-824.pdf Skipping - the same url is hardcoded more than once document_id: 7093 url: http://antcat.org/documents/7088/Zettel_et_al_2018_ZArbOstEnt_Camponotus_Myrmamblys_from_Southeast_Asia.pdf reference_id: 143278 - ArticleReference Replacing... hardcoded_url_document.id: 7096 hardcoded_url_document.reference_id: 122589 hardcoded_url_document.url: http://antcat.org/documents/7095/Benson___Setz_1985_RevtaBrasEntomol_Type_localities_of_Trail_ants.pdf target_orphan.id: 7095 target_orphan.reference_id: target_orphan.file_file_name: Benson___Setz_1985_RevtaBrasEntomol_Type_localities_of_Trail_ants.pdf Replacing... hardcoded_url_document.id: 7103 hardcoded_url_document.reference_id: 143286 hardcoded_url_document.url: http://antcat.org/documents/7102/5c2a0f119295e1.pdf target_orphan.id: 7102 target_orphan.reference_id: target_orphan.file_file_name: 5c2a0f119295e1.pdf Replacing... hardcoded_url_document.id: 7106 hardcoded_url_document.reference_id: 133060 hardcoded_url_document.url: http://antcat.org/documents/5675/general_-_alpert_2012_zookeys-ants-of-the-philippines-synopsis.pdf target_orphan.id: 5675 target_orphan.reference_id: target_orphan.file_file_name: general_-_alpert_2012_zookeys-ants-of-the-philippines-synopsis.pdf Replacing... hardcoded_url_document.id: 7107 hardcoded_url_document.reference_id: 143256 hardcoded_url_document.url: http://antcat.org/documents/7054/Yamane__S.__Dias__R.K.S._2016._New_species_of_the_Pristomyrmex_profundus_group_from_the_Oriental_region.pdf target_orphan.id: 7054 target_orphan.reference_id: target_orphan.file_file_name: Yamane__S.__Dias__R.K.S._2016._New_species_of_the_Pristomyrmex_profundus_group_from_the_Oriental_region.pdf Replacing... hardcoded_url_document.id: 7128 hardcoded_url_document.reference_id: 128255 hardcoded_url_document.url: http://antcat.org/documents/7127/090944600040667.pdf target_orphan.id: 7127 target_orphan.reference_id: target_orphan.file_file_name: 090944600040667.pdf Replacing... hardcoded_url_document.id: 7136 hardcoded_url_document.reference_id: 143303 hardcoded_url_document.url: http://antcat.org/documents/7135/ZK_article_31515.pdf target_orphan.id: 7135 target_orphan.reference_id: target_orphan.file_file_name: ZK_article_31515.pdf Replacing... hardcoded_url_document.id: 7152 hardcoded_url_document.reference_id: 123105 hardcoded_url_document.url: http://antcat.org/documents/388/6623.pdf target_orphan.id: 388 target_orphan.reference_id: target_orphan.file_file_name: 6623.pdf Replacing... hardcoded_url_document.id: 7154 hardcoded_url_document.reference_id: 130369 hardcoded_url_document.url: http://antcat.org/documents/3693/3487.pdf target_orphan.id: 3693 target_orphan.reference_id: target_orphan.file_file_name: 3487.pdf Replacing... hardcoded_url_document.id: 7156 hardcoded_url_document.reference_id: 130172 hardcoded_url_document.url: http://antcat.org/documents/3561/3376.pdf target_orphan.id: 3561 target_orphan.reference_id: target_orphan.file_file_name: 3376.pdf Replacing... hardcoded_url_document.id: 7158 hardcoded_url_document.reference_id: 131768 hardcoded_url_document.url: http://antcat.org/documents/4527/MacGown_&_Forster_2005_Entomol_News.pdf target_orphan.id: 4527 target_orphan.reference_id: target_orphan.file_file_name: MacGown_&_Forster_2005_Entomol_News.pdf Skipping - the same url is hardcoded more than once document_id: 7162 url: http://antcat.org/documents/862/5664.pdf reference_id: 124103 - ArticleReference Replacing... hardcoded_url_document.id: 7163 hardcoded_url_document.reference_id: 131073 hardcoded_url_document.url: http://antcat.org/documents/4321/Deyrup_2003_Fla_Entomol.pdf target_orphan.id: 4321 target_orphan.reference_id: target_orphan.file_file_name: Deyrup_2003_Fla_Entomol.pdf Replacing... hardcoded_url_document.id: 7166 hardcoded_url_document.reference_id: 123069 hardcoded_url_document.url: http://antcat.org/documents/360/2352.pdf target_orphan.id: 360 target_orphan.reference_id: target_orphan.file_file_name: 2352.pdf Replacing... hardcoded_url_document.id: 7167 hardcoded_url_document.reference_id: 123542 hardcoded_url_document.url: http://antcat.org/documents/6885/Carter__W.G._1962a.pdf target_orphan.id: 6885 target_orphan.reference_id: target_orphan.file_file_name: Carter__W.G._1962a.pdf Replacing... hardcoded_url_document.id: 7169 hardcoded_url_document.reference_id: 123910 hardcoded_url_document.url: http://antcat.org/documents/801/6224.pdf target_orphan.id: 801 target_orphan.reference_id: target_orphan.file_file_name: 6224.pdf Skipping - the same url is hardcoded more than once document_id: 7173 url: http://antcat.org/documents/6678/ant_fauna_hymenoptera_formicidae_of_the_socotra_archipelago_yemen_zoogeography_distribution_and_description_of_a_new_species.pdf reference_id: 143016 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7175 url: http://antcat.org/documents/6807/Sharaf_et_al._-_2018_-_Additions_to_the_ant_fauna_(_Hymenoptera_Formicidae_)_of_Oman_an_updated_list___new_records_and_a_description_o.pdf reference_id: 143138 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7177 url: http://antcat.org/documents/6250/borowiec_2014_catalogue_of_ants_of_europe_low.pdf reference_id: 142632 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7188 url: http://antcat.org/documents/3650/3462.pdf reference_id: 130282 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7190 url: http://antcat.org/documents/3438/3276.pdf reference_id: 130031 - ArticleReference Replacing... hardcoded_url_document.id: 7197 hardcoded_url_document.reference_id: 123250 hardcoded_url_document.url: http://antcat.org/documents/6000/brown___kempf_1960_studia_entomol_basicerotini_revision.pdf target_orphan.id: 6000 target_orphan.reference_id: target_orphan.file_file_name: brown___kempf_1960_studia_entomol_basicerotini_revision.pdf Replacing... hardcoded_url_document.id: 7198 hardcoded_url_document.reference_id: 142406 hardcoded_url_document.url: http://antcat.org/documents/5945/longino_2013_zootaxa_revision_of_octostruma.pdf target_orphan.id: 5945 target_orphan.reference_id: target_orphan.file_file_name: longino_2013_zootaxa_revision_of_octostruma.pdf Replacing... hardcoded_url_document.id: 7199 hardcoded_url_document.reference_id: 123072 hardcoded_url_document.url: http://antcat.org/documents/363/2355.pdf target_orphan.id: 363 target_orphan.reference_id: target_orphan.file_file_name: 2355.pdf Replacing... hardcoded_url_document.id: 7200 hardcoded_url_document.reference_id: 130136 hardcoded_url_document.url: http://antcat.org/documents/3529/3353.pdf target_orphan.id: 3529 target_orphan.reference_id: target_orphan.file_file_name: 3353.pdf Replacing... hardcoded_url_document.id: 7201 hardcoded_url_document.reference_id: 130250 hardcoded_url_document.url: http://antcat.org/documents/3622/3433.pdf target_orphan.id: 3622 target_orphan.reference_id: target_orphan.file_file_name: 3433.pdf Replacing... hardcoded_url_document.id: 7208 hardcoded_url_document.reference_id: 122108 hardcoded_url_document.url: http://antcat.org/documents/5752/acosta_1981_eos_rev_esp_entom-goniomma-morph.pdf target_orphan.id: 5752 target_orphan.reference_id: target_orphan.file_file_name: acosta_1981_eos_rev_esp_entom-goniomma-morph.pdf Replacing... hardcoded_url_document.id: 7210 hardcoded_url_document.reference_id: 132960 hardcoded_url_document.url: http://antcat.org/documents/5398/archibald_et_al_2011_proc_r_soc_b-titanomyrma.pdf target_orphan.id: 5398 target_orphan.reference_id: target_orphan.file_file_name: archibald_et_al_2011_proc_r_soc_b-titanomyrma.pdf Skipping - the same url is hardcoded more than once document_id: 7214 url: http://antcat.org/documents/3570/3386.pdf reference_id: 130187 - ArticleReference Replacing... hardcoded_url_document.id: 7215 hardcoded_url_document.reference_id: 123091 hardcoded_url_document.url: http://antcat.org/documents/377/6578.pdf target_orphan.id: 377 target_orphan.reference_id: target_orphan.file_file_name: 6578.pdf Replacing... hardcoded_url_document.id: 7230 hardcoded_url_document.reference_id: 143323 hardcoded_url_document.url: http://antcat.org/documents/7229/leong_et_al_2018_revsuissezool_ponerinae_ponera_taxonomic_notes_and_new_records.pdf target_orphan.id: 7229 target_orphan.reference_id: target_orphan.file_file_name: leong_et_al_2018_revsuissezool_ponerinae_ponera_taxonomic_notes_and_new_records.pdf Replacing... hardcoded_url_document.id: 7232 hardcoded_url_document.reference_id: 142608 hardcoded_url_document.url: http://antcat.org/documents/6223/dlussky_putyatina_2014_formicidae_croatia_miocene.pdf target_orphan.id: 6223 target_orphan.reference_id: target_orphan.file_file_name: dlussky_putyatina_2014_formicidae_croatia_miocene.pdf Replacing... hardcoded_url_document.id: 7234 hardcoded_url_document.reference_id: 143320 hardcoded_url_document.url: http://antcat.org/documents/7226/longino_2019_pheidole.pdf target_orphan.id: 7226 target_orphan.reference_id: target_orphan.file_file_name: longino_2019_pheidole.pdf Replacing... hardcoded_url_document.id: 7235 hardcoded_url_document.reference_id: 142987 hardcoded_url_document.url: http://antcat.org/documents/6634/xu__z-h-__he__q-j-_2015-_taxonomic_review_of_the_ponerine_ant_genus_leptogenys_with_a_key_to_the_oriental_species.pdf target_orphan.id: 6634 target_orphan.reference_id: target_orphan.file_file_name: xu__z-h-__he__q-j-_2015-_taxonomic_review_of_the_ponerine_ant_genus_leptogenys_with_a_key_to_the_oriental_species.pdf Replacing... hardcoded_url_document.id: 7236 hardcoded_url_document.reference_id: 142334 hardcoded_url_document.url: http://antcat.org/documents/5830/bharti___wachkoo_2013_asian_myrmecol_new_leptogenys_from_india.pdf target_orphan.id: 5830 target_orphan.reference_id: target_orphan.file_file_name: bharti___wachkoo_2013_asian_myrmecol_new_leptogenys_from_india.pdf Replacing... hardcoded_url_document.id: 7237 hardcoded_url_document.reference_id: 143202 hardcoded_url_document.url: http://antcat.org/documents/6961/Arimoto___Yamane_2018_Asian_Myrmecology_Leptogenys_chalybaea_group.pdf target_orphan.id: 6961 target_orphan.reference_id: target_orphan.file_file_name: Arimoto___Yamane_2018_Asian_Myrmecology_Leptogenys_chalybaea_group.pdf Replacing... hardcoded_url_document.id: 7239 hardcoded_url_document.reference_id: 128685 hardcoded_url_document.url: http://antcat.org/documents/2734/8127.pdf target_orphan.id: 2734 target_orphan.reference_id: target_orphan.file_file_name: 8127.pdf Replacing... hardcoded_url_document.id: 7240 hardcoded_url_document.reference_id: 131843 hardcoded_url_document.url: http://antcat.org/documents/4550/Mathew_&_Tiwari_2000 Fauna of Meghalaya Part 7. Formicidae.pdf target_orphan.id: 4550 target_orphan.reference_id: target_orphan.file_file_name: Mathew_&_Tiwari_2000 Fauna of Meghalaya Part 7. Formicidae.pdf Replacing... hardcoded_url_document.id: 7244 hardcoded_url_document.reference_id: 142517 hardcoded_url_document.url: http://antcat.org/documents/6100/pacheco___mackay_2013_new_world_solenopsis_thief_ants.pdf target_orphan.id: 6100 target_orphan.reference_id: target_orphan.file_file_name: pacheco___mackay_2013_new_world_solenopsis_thief_ants.pdf Replacing... hardcoded_url_document.id: 7247 hardcoded_url_document.reference_id: 123685 hardcoded_url_document.url: http://antcat.org/documents/672/6120.pdf target_orphan.id: 672 target_orphan.reference_id: target_orphan.file_file_name: 6120.pdf Skipping - the same url is hardcoded more than once document_id: 7250 url: http://antcat.org/documents/3511/3336.pdf reference_id: 130116 - ArticleReference Replacing... hardcoded_url_document.id: 7252 hardcoded_url_document.reference_id: 130568 hardcoded_url_document.url: http://antcat.org/documents/3773/3540.pdf target_orphan.id: 3773 target_orphan.reference_id: target_orphan.file_file_name: 3540.pdf Replacing... hardcoded_url_document.id: 7253 hardcoded_url_document.reference_id: 128863 hardcoded_url_document.url: http://antcat.org/documents/6899/Smith__M.R._1967a.pdf target_orphan.id: 6899 target_orphan.reference_id: target_orphan.file_file_name: Smith__M.R._1967a.pdf Replacing... hardcoded_url_document.id: 7255 hardcoded_url_document.reference_id: 128854 hardcoded_url_document.url: http://antcat.org/documents/6898/Smith__M.R._1958c.pdf target_orphan.id: 6898 target_orphan.reference_id: target_orphan.file_file_name: Smith__M.R._1958c.pdf Replacing... hardcoded_url_document.id: 7256 hardcoded_url_document.reference_id: 128824 hardcoded_url_document.url: http://antcat.org/documents/6900/Smith__M.R._1951c.pdf target_orphan.id: 6900 target_orphan.reference_id: target_orphan.file_file_name: Smith__M.R._1951c.pdf Replacing... hardcoded_url_document.id: 7257 hardcoded_url_document.reference_id: 123744 hardcoded_url_document.url: http://antcat.org/documents/717/6166.pdf target_orphan.id: 717 target_orphan.reference_id: target_orphan.file_file_name: 6166.pdf Skipping - the same url is hardcoded more than once document_id: 7259 url: http://antcat.org/documents/662/6127.pdf reference_id: 123672 - ArticleReference Replacing... hardcoded_url_document.id: 7260 hardcoded_url_document.reference_id: 130127 hardcoded_url_document.url: http://antcat.org/documents/3522/3345.pdf target_orphan.id: 3522 target_orphan.reference_id: target_orphan.file_file_name: 3345.pdf Replacing... hardcoded_url_document.id: 7261 hardcoded_url_document.reference_id: 133056 hardcoded_url_document.url: http://antcat.org/documents/5670/kohout_2012_mem_qld_mus_nat-aust-polyrhachis-ants-of-4-subgenera.pdf target_orphan.id: 5670 target_orphan.reference_id: target_orphan.file_file_name: kohout_2012_mem_qld_mus_nat-aust-polyrhachis-ants-of-4-subgenera.pdf Replacing... hardcoded_url_document.id: 7262 hardcoded_url_document.reference_id: 132000 hardcoded_url_document.url: http://antcat.org/documents/4602/Perfilieva_2002_Zool_Zh wing venation.pdf target_orphan.id: 4602 target_orphan.reference_id: target_orphan.file_file_name: Perfilieva_2002_Zool_Zh wing venation.pdf Replacing... hardcoded_url_document.id: 7263 hardcoded_url_document.reference_id: 131881 hardcoded_url_document.url: http://antcat.org/documents/4565/Moreau_et_al_2006_Science.pdf target_orphan.id: 4565 target_orphan.reference_id: target_orphan.file_file_name: Moreau_et_al_2006_Science.pdf Replacing... hardcoded_url_document.id: 7264 hardcoded_url_document.reference_id: 130828 hardcoded_url_document.url: http://antcat.org/documents/3814/21124.pdf target_orphan.id: 3814 target_orphan.reference_id: target_orphan.file_file_name: 21124.pdf Replacing... hardcoded_url_document.id: 7265 hardcoded_url_document.reference_id: 125611 hardcoded_url_document.url: http://antcat.org/documents/1581/4898.pdf target_orphan.id: 1581 target_orphan.reference_id: target_orphan.file_file_name: 4898.pdf Replacing... hardcoded_url_document.id: 7269 hardcoded_url_document.reference_id: 128699 hardcoded_url_document.url: http://antcat.org/documents/2745/2601.pdf target_orphan.id: 2745 target_orphan.reference_id: target_orphan.file_file_name: 2601.pdf Replacing... hardcoded_url_document.id: 7270 hardcoded_url_document.reference_id: 142950 hardcoded_url_document.url: http://antcat.org/documents/6587/clark_1924b_australian_formicidae.pdf target_orphan.id: 6587 target_orphan.reference_id: target_orphan.file_file_name: clark_1924b_australian_formicidae.pdf Replacing... hardcoded_url_document.id: 7271 hardcoded_url_document.reference_id: 123184 hardcoded_url_document.url: http://antcat.org/documents/454/6723.pdf target_orphan.id: 454 target_orphan.reference_id: target_orphan.file_file_name: 6723.pdf Replacing... hardcoded_url_document.id: 7273 hardcoded_url_document.reference_id: 130994 hardcoded_url_document.url: http://antcat.org/documents/4450/Czechowski_et_al_2002_The ants of Poland.pdf target_orphan.id: 4450 target_orphan.reference_id: target_orphan.file_file_name: Czechowski_et_al_2002_The ants of Poland.pdf Skipping - the same url is hardcoded more than once document_id: 7275 url: http://antcat.org/documents/497/6779.pdf reference_id: 123261 - ArticleReference Replacing... hardcoded_url_document.id: 7277 hardcoded_url_document.reference_id: 129527 hardcoded_url_document.url: http://antcat.org/documents/3127/2925.pdf target_orphan.id: 3127 target_orphan.reference_id: target_orphan.file_file_name: 2925.pdf Replacing... hardcoded_url_document.id: 7279 hardcoded_url_document.reference_id: 132242 hardcoded_url_document.url: http://antcat.org/documents/4669/Schultz_et_al_2006_Myrmecol_Nachr.pdf target_orphan.id: 4669 target_orphan.reference_id: target_orphan.file_file_name: Schultz_et_al_2006_Myrmecol_Nachr.pdf Skipping - the same url is hardcoded more than once document_id: 7280 url: http://antcat.org/documents/885/8314.pdf reference_id: 124151 - BookReference Replacing... hardcoded_url_document.id: 7281 hardcoded_url_document.reference_id: 142546 hardcoded_url_document.url: http://antcat.org/documents/6144/borowiec___salata_2013_genus_ants_of_greece_additions_and_corrections.pdf target_orphan.id: 6144 target_orphan.reference_id: target_orphan.file_file_name: borowiec___salata_2013_genus_ants_of_greece_additions_and_corrections.pdf Replacing... hardcoded_url_document.id: 7285 hardcoded_url_document.reference_id: 132074 hardcoded_url_document.url: http://antcat.org/documents/3990/14678.pdf target_orphan.id: 3990 target_orphan.reference_id: target_orphan.file_file_name: 14678.pdf Replacing... hardcoded_url_document.id: 7286 hardcoded_url_document.reference_id: 132856 hardcoded_url_document.url: http://antcat.org/documents/4877/Collingwood_et_al_2011_Arthropod_Fauna_UAE Formicidae.pdf target_orphan.id: 4877 target_orphan.reference_id: target_orphan.file_file_name: Collingwood_et_al_2011_Arthropod_Fauna_UAE Formicidae.pdf Replacing... hardcoded_url_document.id: 7287 hardcoded_url_document.reference_id: 124147 hardcoded_url_document.url: http://antcat.org/documents/883/9640.pdf target_orphan.id: 883 target_orphan.reference_id: target_orphan.file_file_name: 9640.pdf Replacing... hardcoded_url_document.id: 7289 hardcoded_url_document.reference_id: 130197 hardcoded_url_document.url: http://antcat.org/documents/3580/3399.pdf target_orphan.id: 3580 target_orphan.reference_id: target_orphan.file_file_name: 3399.pdf Replacing... hardcoded_url_document.id: 7290 hardcoded_url_document.reference_id: 123172 hardcoded_url_document.url: http://antcat.org/documents/442/9524.pdf target_orphan.id: 442 target_orphan.reference_id: target_orphan.file_file_name: 9524.pdf Replacing... hardcoded_url_document.id: 7294 hardcoded_url_document.reference_id: 129953 hardcoded_url_document.url: http://antcat.org/documents/3372/3358.pdf target_orphan.id: 3372 target_orphan.reference_id: target_orphan.file_file_name: 3358.pdf Skipping - the same url is hardcoded more than once document_id: 7296 url: http://antcat.org/documents/6315/dlussky_perfilieva_2014_isle_of_wight_eocene_ants.pdf reference_id: 142622 - NestedReference Replacing... hardcoded_url_document.id: 7297 hardcoded_url_document.reference_id: 130072 hardcoded_url_document.url: http://antcat.org/documents/3472/3305.pdf target_orphan.id: 3472 target_orphan.reference_id: target_orphan.file_file_name: 3305.pdf Replacing... hardcoded_url_document.id: 7298 hardcoded_url_document.reference_id: 130142 hardcoded_url_document.url: http://antcat.org/documents/3535/3359.pdf target_orphan.id: 3535 target_orphan.reference_id: target_orphan.file_file_name: 3359.pdf Replacing... hardcoded_url_document.id: 7299 hardcoded_url_document.reference_id: 130480 hardcoded_url_document.url: http://antcat.org/documents/3743/3518.pdf target_orphan.id: 3743 target_orphan.reference_id: target_orphan.file_file_name: 3518.pdf Skipping - the same url is hardcoded more than once document_id: 7302 url: http://antcat.org/documents/6341/ward_et_al_2015_syst_entomol_myrmicine_phylogeny_incl_supp_info.pdf reference_id: 142630 - ArticleReference Replacing... hardcoded_url_document.id: 7304 hardcoded_url_document.reference_id: 132940 hardcoded_url_document.url: http://antcat.org/documents/5334/werner_-_wiezik_2007_acta_entomol_mus_natl_pragae-checklist-of-ants-of-slovakia-and-czech-republic.pdf target_orphan.id: 5334 target_orphan.reference_id: target_orphan.file_file_name: werner_-_wiezik_2007_acta_entomol_mus_natl_pragae-checklist-of-ants-of-slovakia-and-czech-republic.pdf Replacing... hardcoded_url_document.id: 7305 hardcoded_url_document.reference_id: 142997 hardcoded_url_document.url: http://antcat.org/documents/6646/2007_lr.pdf target_orphan.id: 6646 target_orphan.reference_id: target_orphan.file_file_name: 2007_lr.pdf Replacing... hardcoded_url_document.id: 7307 hardcoded_url_document.reference_id: 123227 hardcoded_url_document.url: http://antcat.org/documents/476/6752.pdf target_orphan.id: 476 target_orphan.reference_id: target_orphan.file_file_name: 6752.pdf Replacing... hardcoded_url_document.id: 7308 hardcoded_url_document.reference_id: 129958 hardcoded_url_document.url: http://antcat.org/documents/3376/10486.pdf target_orphan.id: 3376 target_orphan.reference_id: target_orphan.file_file_name: 10486.pdf Replacing... hardcoded_url_document.id: 7309 hardcoded_url_document.reference_id: 129973 hardcoded_url_document.url: http://antcat.org/documents/3390/10497.pdf target_orphan.id: 3390 target_orphan.reference_id: target_orphan.file_file_name: 10497.pdf Replacing... hardcoded_url_document.id: 7310 hardcoded_url_document.reference_id: 125089 hardcoded_url_document.url: http://antcat.org/documents/7071/Forel_1899b_Biologia_centrali_americana.pdf target_orphan.id: 7071 target_orphan.reference_id: target_orphan.file_file_name: Forel_1899b_Biologia_centrali_americana.pdf Replacing... hardcoded_url_document.id: 7313 hardcoded_url_document.reference_id: 130102 hardcoded_url_document.url: http://antcat.org/documents/3499/3327.pdf target_orphan.id: 3499 target_orphan.reference_id: target_orphan.file_file_name: 3327.pdf Replacing... hardcoded_url_document.id: 7314 hardcoded_url_document.reference_id: 130152 hardcoded_url_document.url: http://antcat.org/documents/3545/3367.pdf target_orphan.id: 3545 target_orphan.reference_id: target_orphan.file_file_name: 3367.pdf Skipping - the same url is hardcoded more than once document_id: 7316 url: http://antcat.org/documents/3426/10540.pdf reference_id: 130019 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7317 url: http://antcat.org/documents/3458/3292.pdf reference_id: 130055 - ArticleReference Replacing... hardcoded_url_document.id: 7319 hardcoded_url_document.reference_id: 129955 hardcoded_url_document.url: http://antcat.org/documents/3373/3455.pdf target_orphan.id: 3373 target_orphan.reference_id: target_orphan.file_file_name: 3455.pdf Replacing... hardcoded_url_document.id: 7320 hardcoded_url_document.reference_id: 130144 hardcoded_url_document.url: http://antcat.org/documents/3537/3361.pdf target_orphan.id: 3537 target_orphan.reference_id: target_orphan.file_file_name: 3361.pdf Replacing... hardcoded_url_document.id: 7322 hardcoded_url_document.reference_id: 130218 hardcoded_url_document.url: http://antcat.org/documents/3594/3410.pdf target_orphan.id: 3594 target_orphan.reference_id: target_orphan.file_file_name: 3410.pdf Skipping - the same url is hardcoded more than once document_id: 7324 url: http://antcat.org/documents/3581/3400.pdf reference_id: 130198 - ArticleReference Replacing... hardcoded_url_document.id: 7325 hardcoded_url_document.reference_id: 130089 hardcoded_url_document.url: http://antcat.org/documents/3487/10603.pdf target_orphan.id: 3487 target_orphan.reference_id: target_orphan.file_file_name: 10603.pdf Skipping - the same url is hardcoded more than once document_id: 7327 url: http://antcat.org/documents/5151/2734.pdf reference_id: 128906 - ArticleReference Replacing... hardcoded_url_document.id: 7328 hardcoded_url_document.reference_id: 130192 hardcoded_url_document.url: http://antcat.org/documents/3575/3391.pdf target_orphan.id: 3575 target_orphan.reference_id: target_orphan.file_file_name: 3391.pdf Replacing... hardcoded_url_document.id: 7329 hardcoded_url_document.reference_id: 123111 hardcoded_url_document.url: http://antcat.org/documents/394/6629.pdf target_orphan.id: 394 target_orphan.reference_id: target_orphan.file_file_name: 6629.pdf Replacing... hardcoded_url_document.id: 7330 hardcoded_url_document.reference_id: 123146 hardcoded_url_document.url: http://antcat.org/documents/422/6701.pdf target_orphan.id: 422 target_orphan.reference_id: target_orphan.file_file_name: 6701.pdf Replacing... hardcoded_url_document.id: 7331 hardcoded_url_document.reference_id: 143031 hardcoded_url_document.url: http://antcat.org/documents/6687/chen_et_al_2017_j_hym_res_three_new_gnamptogenys_from_china.pdf target_orphan.id: 6687 target_orphan.reference_id: target_orphan.file_file_name: chen_et_al_2017_j_hym_res_three_new_gnamptogenys_from_china.pdf Replacing... hardcoded_url_document.id: 7333 hardcoded_url_document.reference_id: 123699 hardcoded_url_document.url: http://antcat.org/documents/682/6131.pdf target_orphan.id: 682 target_orphan.reference_id: target_orphan.file_file_name: 6131.pdf Replacing... hardcoded_url_document.id: 7336 hardcoded_url_document.reference_id: 123099 hardcoded_url_document.url: http://antcat.org/documents/383/6617.pdf target_orphan.id: 383 target_orphan.reference_id: target_orphan.file_file_name: 6617.pdf Replacing... hardcoded_url_document.id: 7337 hardcoded_url_document.reference_id: 123263 hardcoded_url_document.url: http://antcat.org/documents/499/6781.pdf target_orphan.id: 499 target_orphan.reference_id: target_orphan.file_file_name: 6781.pdf Replacing... hardcoded_url_document.id: 7338 hardcoded_url_document.reference_id: 129906 hardcoded_url_document.url: http://antcat.org/documents/3344/3126.pdf target_orphan.id: 3344 target_orphan.reference_id: target_orphan.file_file_name: 3126.pdf Replacing... hardcoded_url_document.id: 7339 hardcoded_url_document.reference_id: 132759 hardcoded_url_document.url: http://antcat.org/documents/4706/Sosa-Calvo_et_al_2010_J_Hym_Res_dacetine ants of Guyana.pdf target_orphan.id: 4706 target_orphan.reference_id: target_orphan.file_file_name: Sosa-Calvo_et_al_2010_J_Hym_Res_dacetine ants of Guyana.pdf Replacing... hardcoded_url_document.id: 7341 hardcoded_url_document.reference_id: 131761 hardcoded_url_document.url: http://antcat.org/documents/3950/20014.pdf target_orphan.id: 3950 target_orphan.reference_id: target_orphan.file_file_name: 20014.pdf Replacing... hardcoded_url_document.id: 7344 hardcoded_url_document.reference_id: 134419 hardcoded_url_document.url: http://antcat.org/documents/5725/xu_2012_sociobiology-gaoligongidris.pdf target_orphan.id: 5725 target_orphan.reference_id: target_orphan.file_file_name: xu_2012_sociobiology-gaoligongidris.pdf Replacing... hardcoded_url_document.id: 7345 hardcoded_url_document.reference_id: 142328 hardcoded_url_document.url: http://antcat.org/documents/5824/longino___boudinot_2013_zootaxa_rhopalothrix_of_central_america.pdf target_orphan.id: 5824 target_orphan.reference_id: target_orphan.file_file_name: longino___boudinot_2013_zootaxa_rhopalothrix_of_central_america.pdf Replacing... hardcoded_url_document.id: 7347 hardcoded_url_document.reference_id: 126118 hardcoded_url_document.url: http://antcat.org/documents/1703/4773.pdf target_orphan.id: 1703 target_orphan.reference_id: target_orphan.file_file_name: 4773.pdf Replacing... hardcoded_url_document.id: 7348 hardcoded_url_document.reference_id: 126573 hardcoded_url_document.url: http://antcat.org/documents/1870/4651.pdf target_orphan.id: 1870 target_orphan.reference_id: target_orphan.file_file_name: 4651.pdf Replacing... hardcoded_url_document.id: 7349 hardcoded_url_document.reference_id: 123262 hardcoded_url_document.url: http://antcat.org/documents/498/6780.pdf target_orphan.id: 498 target_orphan.reference_id: target_orphan.file_file_name: 6780.pdf Replacing... hardcoded_url_document.id: 7351 hardcoded_url_document.reference_id: 143328 hardcoded_url_document.url: http://antcat.org/documents/7350/borowiec-et-al-2019-am011001.pdf target_orphan.id: 7350 target_orphan.reference_id: target_orphan.file_file_name: borowiec-et-al-2019-am011001.pdf Replacing... hardcoded_url_document.id: 7352 hardcoded_url_document.reference_id: 142254 hardcoded_url_document.url: http://antcat.org/documents/5798/sarnat_-_economo_2012_univ_calif_publ_entomol-ants-of-fiji.pdf target_orphan.id: 5798 target_orphan.reference_id: target_orphan.file_file_name: sarnat_-_economo_2012_univ_calif_publ_entomol-ants-of-fiji.pdf Replacing... hardcoded_url_document.id: 7354 hardcoded_url_document.reference_id: 130818 hardcoded_url_document.url: http://antcat.org/documents/4271/Bracko_2007_Nat_Sloveniae ant checklist of Slovenia.pdf target_orphan.id: 4271 target_orphan.reference_id: target_orphan.file_file_name: Bracko_2007_Nat_Sloveniae ant checklist of Slovenia.pdf Replacing... hardcoded_url_document.id: 7358 hardcoded_url_document.reference_id: 128683 hardcoded_url_document.url: http://antcat.org/documents/2732/2588.pdf target_orphan.id: 2732 target_orphan.reference_id: target_orphan.file_file_name: 2588.pdf Replacing... hardcoded_url_document.id: 7359 hardcoded_url_document.reference_id: 128720 hardcoded_url_document.url: http://antcat.org/documents/2755/2611.pdf target_orphan.id: 2755 target_orphan.reference_id: target_orphan.file_file_name: 2611.pdf Replacing... hardcoded_url_document.id: 7360 hardcoded_url_document.reference_id: 130061 hardcoded_url_document.url: http://antcat.org/documents/3463/3297.pdf target_orphan.id: 3463 target_orphan.reference_id: target_orphan.file_file_name: 3297.pdf Skipping - the same url is hardcoded more than once document_id: 7362 url: http://antcat.org/documents/4795/Lapeva-Gjonova_et_al_2010_ZooKeys_Catalogue of the ants of Bulgaria.pdf reference_id: 132768 - ArticleReference Replacing... hardcoded_url_document.id: 7367 hardcoded_url_document.reference_id: 128455 hardcoded_url_document.url: http://antcat.org/documents/2665/3593.pdf target_orphan.id: 2665 target_orphan.reference_id: target_orphan.file_file_name: 3593.pdf Skipping - the same url is hardcoded more than once document_id: 7369 url: http://antcat.org/documents/22/6857.pdf reference_id: 122149 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7370 url: http://antcat.org/documents/3894/23047.pdf reference_id: 131396 - ArticleReference Replacing... hardcoded_url_document.id: 7371 hardcoded_url_document.reference_id: 127825 hardcoded_url_document.url: http://antcat.org/documents/2364/4181.pdf target_orphan.id: 2364 target_orphan.reference_id: target_orphan.file_file_name: 4181.pdf Replacing... hardcoded_url_document.id: 7372 hardcoded_url_document.reference_id: 132095 hardcoded_url_document.url: http://antcat.org/documents/4000/20094.pdf target_orphan.id: 4000 target_orphan.reference_id: target_orphan.file_file_name: 20094.pdf Replacing... hardcoded_url_document.id: 7375 hardcoded_url_document.reference_id: 130895 hardcoded_url_document.url: http://antcat.org/documents/5267/weulersse_-_galkowski_2009_bull_soc_entomol_fr.pdf target_orphan.id: 5267 target_orphan.reference_id: target_orphan.file_file_name: weulersse_-_galkowski_2009_bull_soc_entomol_fr.pdf Replacing... hardcoded_url_document.id: 7378 hardcoded_url_document.reference_id: 143331 hardcoded_url_document.url: http://antcat.org/documents/7377/breviora_548.pdf target_orphan.id: 7377 target_orphan.reference_id: target_orphan.file_file_name: breviora_548.pdf Replacing... hardcoded_url_document.id: 7379 hardcoded_url_document.reference_id: 126051 hardcoded_url_document.url: http://antcat.org/documents/1686/4780.pdf target_orphan.id: 1686 target_orphan.reference_id: target_orphan.file_file_name: 4780.pdf Replacing... hardcoded_url_document.id: 7380 hardcoded_url_document.reference_id: 131361 hardcoded_url_document.url: http://antcat.org/documents/4393/Ghosh_et_al_2005_Rec_Zool_Surv_India_Occas_Pap.pdf target_orphan.id: 4393 target_orphan.reference_id: target_orphan.file_file_name: Ghosh_et_al_2005_Rec_Zool_Surv_India_Occas_Pap.pdf Replacing... hardcoded_url_document.id: 7381 hardcoded_url_document.reference_id: 131519 hardcoded_url_document.url: http://antcat.org/documents/4456/Imai_et_al_2003_Ants of Japan.pdf target_orphan.id: 4456 target_orphan.reference_id: target_orphan.file_file_name: Imai_et_al_2003_Ants of Japan.pdf Replacing... hardcoded_url_document.id: 7382 hardcoded_url_document.reference_id: 130186 hardcoded_url_document.url: http://antcat.org/documents/3569/3385.pdf target_orphan.id: 3569 target_orphan.reference_id: target_orphan.file_file_name: 3385.pdf Replacing... hardcoded_url_document.id: 7383 hardcoded_url_document.reference_id: 130212 hardcoded_url_document.url: http://antcat.org/documents/3591/3409.pdf target_orphan.id: 3591 target_orphan.reference_id: target_orphan.file_file_name: 3409.pdf Replacing... hardcoded_url_document.id: 7384 hardcoded_url_document.reference_id: 130165 hardcoded_url_document.url: http://antcat.org/documents/3556/3371.pdf target_orphan.id: 3556 target_orphan.reference_id: target_orphan.file_file_name: 3371.pdf Replacing... hardcoded_url_document.id: 7388 hardcoded_url_document.reference_id: 130283 hardcoded_url_document.url: http://antcat.org/documents/3651/3463.pdf target_orphan.id: 3651 target_orphan.reference_id: target_orphan.file_file_name: 3463.pdf Replacing... hardcoded_url_document.id: 7390 hardcoded_url_document.reference_id: 132357 hardcoded_url_document.url: http://antcat.org/documents/4892/21290.pdf target_orphan.id: 4892 target_orphan.reference_id: target_orphan.file_file_name: 21290.pdf Replacing... hardcoded_url_document.id: 7391 hardcoded_url_document.reference_id: 128761 hardcoded_url_document.url: http://antcat.org/documents/2789/2624.pdf target_orphan.id: 2789 target_orphan.reference_id: target_orphan.file_file_name: 2624.pdf Replacing... hardcoded_url_document.id: 7392 hardcoded_url_document.reference_id: 128760 hardcoded_url_document.url: http://antcat.org/documents/2788/2623.pdf target_orphan.id: 2788 target_orphan.reference_id: target_orphan.file_file_name: 2623.pdf Replacing... hardcoded_url_document.id: 7393 hardcoded_url_document.reference_id: 128789 hardcoded_url_document.url: http://antcat.org/documents/2817/2644.pdf target_orphan.id: 2817 target_orphan.reference_id: target_orphan.file_file_name: 2644.pdf Replacing... hardcoded_url_document.id: 7394 hardcoded_url_document.reference_id: 129679 hardcoded_url_document.url: http://antcat.org/documents/3187/2994.pdf target_orphan.id: 3187 target_orphan.reference_id: target_orphan.file_file_name: 2994.pdf Replacing... hardcoded_url_document.id: 7395 hardcoded_url_document.reference_id: 129682 hardcoded_url_document.url: http://antcat.org/documents/3190/11076.pdf target_orphan.id: 3190 target_orphan.reference_id: target_orphan.file_file_name: 11076.pdf Replacing... hardcoded_url_document.id: 7396 hardcoded_url_document.reference_id: 129683 hardcoded_url_document.url: http://antcat.org/documents/3191/3003.pdf target_orphan.id: 3191 target_orphan.reference_id: target_orphan.file_file_name: 3003.pdf Replacing... hardcoded_url_document.id: 7397 hardcoded_url_document.reference_id: 129684 hardcoded_url_document.url: http://antcat.org/documents/3192/11077.pdf target_orphan.id: 3192 target_orphan.reference_id: target_orphan.file_file_name: 11077.pdf Replacing... hardcoded_url_document.id: 7398 hardcoded_url_document.reference_id: 122924 hardcoded_url_document.url: http://antcat.org/documents/303/6487.pdf target_orphan.id: 303 target_orphan.reference_id: target_orphan.file_file_name: 6487.pdf Replacing... hardcoded_url_document.id: 7403 hardcoded_url_document.reference_id: 130145 hardcoded_url_document.url: http://antcat.org/documents/3538/3362.pdf target_orphan.id: 3538 target_orphan.reference_id: target_orphan.file_file_name: 3362.pdf Replacing... hardcoded_url_document.id: 7404 hardcoded_url_document.reference_id: 124474 hardcoded_url_document.url: http://antcat.org/documents/1049/5033.pdf target_orphan.id: 1049 target_orphan.reference_id: target_orphan.file_file_name: 5033.pdf Replacing... hardcoded_url_document.id: 7405 hardcoded_url_document.reference_id: 128778 hardcoded_url_document.url: http://antcat.org/documents/2806/2632.pdf target_orphan.id: 2806 target_orphan.reference_id: target_orphan.file_file_name: 2632.pdf Replacing... hardcoded_url_document.id: 7406 hardcoded_url_document.reference_id: 129678 hardcoded_url_document.url: http://antcat.org/documents/3186/2993.pdf target_orphan.id: 3186 target_orphan.reference_id: target_orphan.file_file_name: 2993.pdf Replacing... hardcoded_url_document.id: 7407 hardcoded_url_document.reference_id: 129925 hardcoded_url_document.url: http://antcat.org/documents/4890/2828.pdf target_orphan.id: 4890 target_orphan.reference_id: target_orphan.file_file_name: 2828.pdf Replacing... hardcoded_url_document.id: 7409 hardcoded_url_document.reference_id: 143321 hardcoded_url_document.url: http://antcat.org/documents/7227/kubota_et_al_2019_scirep_formicinae_lasius_morphology_of_the_tentorium.pdf target_orphan.id: 7227 target_orphan.reference_id: target_orphan.file_file_name: kubota_et_al_2019_scirep_formicinae_lasius_morphology_of_the_tentorium.pdf Replacing... hardcoded_url_document.id: 7411 hardcoded_url_document.reference_id: 143335 hardcoded_url_document.url: http://antcat.org/documents/7410/10-1111_jzs-12297.pdf target_orphan.id: 7410 target_orphan.reference_id: target_orphan.file_file_name: 10-1111_jzs-12297.pdf Replacing... hardcoded_url_document.id: 7412 hardcoded_url_document.reference_id: 133048 hardcoded_url_document.url: http://antcat.org/documents/5661/yoshimura_-_fisher_2012_plos-one-amblyoponinae-males.pdf target_orphan.id: 5661 target_orphan.reference_id: target_orphan.file_file_name: yoshimura_-_fisher_2012_plos-one-amblyoponinae-males.pdf Replacing... hardcoded_url_document.id: 7415 hardcoded_url_document.reference_id: 133062 hardcoded_url_document.url: http://antcat.org/documents/5677/blaimer_2012_syst_entomol-crematogaster-oxygyne-in-madagascar.pdf target_orphan.id: 5677 target_orphan.reference_id: target_orphan.file_file_name: blaimer_2012_syst_entomol-crematogaster-oxygyne-in-madagascar.pdf Skipping - the same url is hardcoded more than once document_id: 7416 url: http://antcat.org/documents/5676/blaimer_2012_zookeys-crematogaster-orthocrema-of-madagascar.pdf reference_id: 133061 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7417 url: http://antcat.org/documents/5746/blaimer_2012_zootaxa-subgeneric-revision-of-crematogaster.pdf reference_id: 142232 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7418 url: http://antcat.org/documents/5747/blaimer_2012_mol_phylogenet_evol-acrobat-ants-go-global-incl-suppl-data.pdf reference_id: 142233 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7421 url: http://antcat.org/documents/5961/blaimer___fisher_2013_eur_j_taxon.pdf reference_id: 142420 - ArticleReference Replacing... hardcoded_url_document.id: 7424 hardcoded_url_document.reference_id: 131142 hardcoded_url_document.url: http://antcat.org/documents/3853/14638.pdf target_orphan.id: 3853 target_orphan.reference_id: target_orphan.file_file_name: 14638.pdf Replacing... hardcoded_url_document.id: 7427 hardcoded_url_document.reference_id: 143297 hardcoded_url_document.url: http://antcat.org/documents/7126/Heterick_et_al_2019_ZooKeys_Corrigendum_to_Melophorus_revision_2017.pdf target_orphan.id: 7126 target_orphan.reference_id: target_orphan.file_file_name: Heterick_et_al_2019_ZooKeys_Corrigendum_to_Melophorus_revision_2017.pdf Replacing... hardcoded_url_document.id: 7435 hardcoded_url_document.reference_id: 142344 hardcoded_url_document.url: http://antcat.org/documents/5843/cristiano_et_al_2013_plos_one_relationships_of_acromyrmex_striatus.pdf target_orphan.id: 5843 target_orphan.reference_id: target_orphan.file_file_name: cristiano_et_al_2013_plos_one_relationships_of_acromyrmex_striatus.pdf Replacing... hardcoded_url_document.id: 7437 hardcoded_url_document.reference_id: 143091 hardcoded_url_document.url: http://antcat.org/documents/6750/zk_article_15088.pdf target_orphan.id: 6750 target_orphan.reference_id: target_orphan.file_file_name: zk_article_15088.pdf Replacing... hardcoded_url_document.id: 7447 hardcoded_url_document.reference_id: 133063 hardcoded_url_document.url: http://antcat.org/documents/5678/chen_et_al_2012_psyche-pyramica-epinotalis-in-us.pdf target_orphan.id: 5678 target_orphan.reference_id: target_orphan.file_file_name: chen_et_al_2012_psyche-pyramica-epinotalis-in-us.pdf Replacing... hardcoded_url_document.id: 7449 hardcoded_url_document.reference_id: 142568 hardcoded_url_document.url: http://antcat.org/documents/6169/bharti___wachkoo_2014_biodivers_data_j_camponotus_parabarbatus.pdf target_orphan.id: 6169 target_orphan.reference_id: target_orphan.file_file_name: bharti___wachkoo_2014_biodivers_data_j_camponotus_parabarbatus.pdf Replacing... hardcoded_url_document.id: 7452 hardcoded_url_document.reference_id: 142599 hardcoded_url_document.url: http://antcat.org/documents/6213/brady_et_al_2014_bmc_evol_biol_doryline_phylogeny.pdf target_orphan.id: 6213 target_orphan.reference_id: target_orphan.file_file_name: brady_et_al_2014_bmc_evol_biol_doryline_phylogeny.pdf Replacing... hardcoded_url_document.id: 7453 hardcoded_url_document.reference_id: 142531 hardcoded_url_document.url: http://antcat.org/documents/6125/lucky_et_al_2013_plos_one_nesting_habitat_ancestral_state_reconstruction_for_ants.pdf target_orphan.id: 6125 target_orphan.reference_id: target_orphan.file_file_name: lucky_et_al_2013_plos_one_nesting_habitat_ancestral_state_reconstruction_for_ants.pdf Skipping - the same url is hardcoded more than once document_id: 7465 url: http://antcat.org/documents/5654/lacau_et_al_2012_psyche-tatuidris-kapasi-sp-nov.pdf reference_id: 133042 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7466 url: http://antcat.org/documents/5399/mariano_et_al_2011_psyche-pachycondyla.pdf reference_id: 132961 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7467 url: http://antcat.org/documents/5946/joma___mackay_2013_psyche_bothroponera_umgodikulula.pdf reference_id: 142407 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7468 url: http://antcat.org/documents/4760/wernegreen_et_al_2009_bmc_evol_biol.pdf reference_id: 132596 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7469 url: http://antcat.org/documents/4745/Wang_et_al_2007_Genome_Biol.pdf reference_id: 132546 - ArticleReference Replacing... hardcoded_url_document.id: 7470 hardcoded_url_document.reference_id: 142636 hardcoded_url_document.url: http://antcat.org/documents/6254/wachkoo___bharti_2014_bdj_nylanderia_smythiesii.pdf target_orphan.id: 6254 target_orphan.reference_id: target_orphan.file_file_name: wachkoo___bharti_2014_bdj_nylanderia_smythiesii.pdf Replacing... hardcoded_url_document.id: 7472 hardcoded_url_document.reference_id: 142710 hardcoded_url_document.url: http://antcat.org/documents/6357/smith_et_al_2015_can_entomol_adelomyrmex_barcoding_and_natural_history.pdf target_orphan.id: 6357 target_orphan.reference_id: target_orphan.file_file_name: smith_et_al_2015_can_entomol_adelomyrmex_barcoding_and_natural_history.pdf Replacing... hardcoded_url_document.id: 7473 hardcoded_url_document.reference_id: 132354 hardcoded_url_document.url: http://antcat.org/documents/4694/Smith_&_Fisher_2009_Frontiers_Zool.pdf target_orphan.id: 4694 target_orphan.reference_id: target_orphan.file_file_name: Smith_&_Fisher_2009_Frontiers_Zool.pdf Skipping - the same url is hardcoded more than once document_id: 7475 url: http://antcat.org/documents/5294/peters_et_al_2011_bmc_biol-hymenoptera-phylogeny.pdf reference_id: 132918 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7476 url: http://antcat.org/documents/4545/Maruyama_et_al_2008_BMC_Evol_Biol.pdf reference_id: 131832 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7478 url: http://antcat.org/documents/5278/kronauer_et_al_2011_frontiers_zool-dorylus-hybridization.pdf reference_id: 132907 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7479 url: http://antcat.org/documents/4175/Gotzek_2010_BMC Evolutionary Biology mt genome evolution in fire ants.pdf reference_id: 131391 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7480 url: http://antcat.org/documents/5404/fox_et_al_2011_psyche-comparative-immature-morphology-of-solenopsis.pdf reference_id: 132966 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7481 url: http://antcat.org/documents/5402/feitosa_et_al_2011_psyche-sphinctomyrmex.pdf reference_id: 132964 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7483 url: http://antcat.org/documents/5401/delsinne_-_fernandez_2011_psyche-lenomyrmex.pdf reference_id: 132963 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7484 url: http://antcat.org/documents/5400/cuezzo_-_guerrero_2011_psyche-dorymyrmex-of-colombia.pdf reference_id: 132962 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7486 url: http://antcat.org/documents/5657/sharaf_et_al_2012_plos_one-new-tetramorium-from-saudi-arabia.pdf reference_id: 133044 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7488 url: http://antcat.org/documents/4882/Kück_et_al_2011_PLoS_ONE incl FigsS1-S7 ant phylogeny.pdf reference_id: 132861 - ArticleReference Replacing... hardcoded_url_document.id: 7489 hardcoded_url_document.reference_id: 142536 hardcoded_url_document.url: http://antcat.org/documents/6131/keller_et_al_2014_elife_evolution_of_thorax_architecture_in_ant_castes.pdf target_orphan.id: 6131 target_orphan.reference_id: target_orphan.file_file_name: keller_et_al_2014_elife_evolution_of_thorax_architecture_in_ant_castes.pdf Skipping - the same url is hardcoded more than once document_id: 7490 url: http://antcat.org/documents/5234/Suen_et_al_2011_PLoS_Genet Atta cephalotes genome.pdf reference_id: 132872 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7491 url: http://antcat.org/documents/4620/Rabeling_et_al_2009_PLoS One.pdf reference_id: 132050 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7493 url: http://antcat.org/documents/5292/menke_et_al_2010_plos_one-tapinoma-sessile-phylogeography.pdf reference_id: 132917 - ArticleReference Replacing... hardcoded_url_document.id: 7494 hardcoded_url_document.reference_id: 131392 hardcoded_url_document.url: http://antcat.org/documents/4405/Gotzek_et_al_2007_PLoS_One.pdf target_orphan.id: 4405 target_orphan.reference_id: target_orphan.file_file_name: Gotzek_et_al_2007_PLoS_One.pdf Skipping - the same url is hardcoded more than once document_id: 7495 url: http://antcat.org/documents/5914/blaimer___fisher_2013_plos_one_crematogaster_kelleri_species-group.pdf reference_id: 142395 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7496 url: http://antcat.org/documents/4380/Fisher_&_Smith_2008_PLoS_ONE.pdf reference_id: 131306 - ArticleReference Replacing... hardcoded_url_document.id: 7498 hardcoded_url_document.reference_id: 142237 hardcoded_url_document.url: http://antcat.org/documents/5769/gotzek_et_al_2012_plos_one-crazy-rasberry-ant.pdf target_orphan.id: 5769 target_orphan.reference_id: target_orphan.file_file_name: gotzek_et_al_2012_plos_one-crazy-rasberry-ant.pdf Skipping - the same url is hardcoded more than once document_id: 7499 url: http://antcat.org/documents/5406/delsinne_et_al_2011_psyche-oxyepoecus-in-paraguay.pdf reference_id: 132973 - NestedReference Skipping - the same url is hardcoded more than once document_id: 7500 url: http://antcat.org/documents/5406/delsinne_et_al_2011_psyche-oxyepoecus-in-paraguay.pdf reference_id: 132974 - NestedReference Replacing... hardcoded_url_document.id: 7502 hardcoded_url_document.reference_id: 123089 hardcoded_url_document.url: http://antcat.org/documents/7220/brown__w-l-__jr-_1952g.pdf target_orphan.id: 7220 target_orphan.reference_id: target_orphan.file_file_name: brown__w-l-__jr-_1952g.pdf Replacing... hardcoded_url_document.id: 7505 hardcoded_url_document.reference_id: 123732 hardcoded_url_document.url: http://antcat.org/documents/707/6155.pdf target_orphan.id: 707 target_orphan.reference_id: target_orphan.file_file_name: 6155.pdf Replacing... hardcoded_url_document.id: 7507 hardcoded_url_document.reference_id: 129802 hardcoded_url_document.url: http://antcat.org/documents/3276/3060.pdf target_orphan.id: 3276 target_orphan.reference_id: target_orphan.file_file_name: 3060.pdf Replacing... hardcoded_url_document.id: 7513 hardcoded_url_document.reference_id: 129855 hardcoded_url_document.url: http://antcat.org/documents/3297/3078.pdf target_orphan.id: 3297 target_orphan.reference_id: target_orphan.file_file_name: 3078.pdf Replacing... hardcoded_url_document.id: 7514 hardcoded_url_document.reference_id: 123147 hardcoded_url_document.url: http://antcat.org/documents/423/6702.pdf target_orphan.id: 423 target_orphan.reference_id: target_orphan.file_file_name: 6702.pdf Replacing... hardcoded_url_document.id: 7515 hardcoded_url_document.reference_id: 142567 hardcoded_url_document.url: http://antcat.org/documents/6168/boer_2013_tijdschr_entomol_revision_of_aphaenogaster_testaceopilosa_group.pdf target_orphan.id: 6168 target_orphan.reference_id: target_orphan.file_file_name: boer_2013_tijdschr_entomol_revision_of_aphaenogaster_testaceopilosa_group.pdf Replacing... hardcoded_url_document.id: 7516 hardcoded_url_document.reference_id: 142313 hardcoded_url_document.url: http://antcat.org/documents/5806/borowiec_-_salata_2012_genus-ants-of-greece-checklist.pdf target_orphan.id: 5806 target_orphan.reference_id: target_orphan.file_file_name: borowiec_-_salata_2012_genus-ants-of-greece-checklist.pdf Skipping - the same url is hardcoded more than once document_id: 7518 url: http://antcat.org/documents/27/6862.pdf reference_id: 122158 - ArticleReference Replacing... hardcoded_url_document.id: 7519 hardcoded_url_document.reference_id: 143244 hardcoded_url_document.url: http://antcat.org/documents/7043/Borowiec___Salata_2018_Notes_on_ants_of_Samos.pdf target_orphan.id: 7043 target_orphan.reference_id: target_orphan.file_file_name: Borowiec___Salata_2018_Notes_on_ants_of_Samos.pdf Replacing... hardcoded_url_document.id: 7520 hardcoded_url_document.reference_id: 143275 hardcoded_url_document.url: http://antcat.org/documents/7085/Salata___Borowiec_2018_Taxonomic_and_faunistic_notes_on_Greek_ants(1).pdf target_orphan.id: 7085 target_orphan.reference_id: target_orphan.file_file_name: Salata___Borowiec_2018_Taxonomic_and_faunistic_notes_on_Greek_ants(1).pdf Replacing... hardcoded_url_document.id: 7521 hardcoded_url_document.reference_id: 132800 hardcoded_url_document.url: http://antcat.org/documents/4821/Bracko_2006_Acta_Entomol_Slov_Review of the ant fauna of Croatia.pdf target_orphan.id: 4821 target_orphan.reference_id: target_orphan.file_file_name: Bracko_2006_Acta_Entomol_Slov_Review of the ant fauna of Croatia.pdf Skipping - the same url is hardcoded more than once document_id: 7522 url: http://antcat.org/documents/5734/seifert_2012_myrmecol_news-european-bothriomyrmex-review.pdf reference_id: 134428 - ArticleReference Replacing... hardcoded_url_document.id: 7525 hardcoded_url_document.reference_id: 122970 hardcoded_url_document.url: http://antcat.org/documents/325/6512.pdf target_orphan.id: 325 target_orphan.reference_id: target_orphan.file_file_name: 6512.pdf Replacing... hardcoded_url_document.id: 7526 hardcoded_url_document.reference_id: 123129 hardcoded_url_document.url: http://antcat.org/documents/408/6684.pdf target_orphan.id: 408 target_orphan.reference_id: target_orphan.file_file_name: 6684.pdf Replacing... hardcoded_url_document.id: 7528 hardcoded_url_document.reference_id: 123246 hardcoded_url_document.url: http://antcat.org/documents/488/8056.pdf target_orphan.id: 488 target_orphan.reference_id: target_orphan.file_file_name: 8056.pdf Replacing... hardcoded_url_document.id: 7529 hardcoded_url_document.reference_id: 123217 hardcoded_url_document.url: http://antcat.org/documents/472/6745.pdf target_orphan.id: 472 target_orphan.reference_id: target_orphan.file_file_name: 6745.pdf Replacing... hardcoded_url_document.id: 7531 hardcoded_url_document.reference_id: 123310 hardcoded_url_document.url: http://antcat.org/documents/527/6808.pdf target_orphan.id: 527 target_orphan.reference_id: target_orphan.file_file_name: 6808.pdf Skipping - the same url is hardcoded more than once document_id: 7534 url: http://antcat.org/documents/329/6514.pdf reference_id: 122977 - ArticleReference Replacing... hardcoded_url_document.id: 7535 hardcoded_url_document.reference_id: 123140 hardcoded_url_document.url: http://antcat.org/documents/417/6693.pdf target_orphan.id: 417 target_orphan.reference_id: target_orphan.file_file_name: 6693.pdf Skipping - the same url is hardcoded more than once document_id: 7536 url: http://antcat.org/documents/440/6720.pdf reference_id: 123170 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7545 url: http://antcat.org/documents/7543/1145-6236-2-pb.pdf reference_id: 143343 - ArticleReference Replacing... hardcoded_url_document.id: 7546 hardcoded_url_document.reference_id: 130084 hardcoded_url_document.url: http://antcat.org/documents/3482/10596.pdf target_orphan.id: 3482 target_orphan.reference_id: target_orphan.file_file_name: 10596.pdf Replacing... hardcoded_url_document.id: 7549 hardcoded_url_document.reference_id: 123065 hardcoded_url_document.url: http://antcat.org/documents/358/2350.pdf target_orphan.id: 358 target_orphan.reference_id: target_orphan.file_file_name: 2350.pdf Skipping - the same url is hardcoded more than once document_id: 7550 url: http://antcat.org/documents/3374/3456.pdf reference_id: 129956 - ArticleReference Replacing... hardcoded_url_document.id: 7551 hardcoded_url_document.reference_id: 124779 hardcoded_url_document.url: http://antcat.org/documents/1221/5002.pdf target_orphan.id: 1221 target_orphan.reference_id: target_orphan.file_file_name: 5002.pdf Replacing... hardcoded_url_document.id: 7552 hardcoded_url_document.reference_id: 142982 hardcoded_url_document.url: http://antcat.org/documents/6628/journal-pone-0140000.pdf target_orphan.id: 6628 target_orphan.reference_id: target_orphan.file_file_name: journal-pone-0140000.pdf Replacing... hardcoded_url_document.id: 7567 hardcoded_url_document.reference_id: 143106 hardcoded_url_document.url: http://antcat.org/documents/6769/zk_article_12539.pdf target_orphan.id: 6769 target_orphan.reference_id: target_orphan.file_file_name: zk_article_12539.pdf Replacing... hardcoded_url_document.id: 7576 hardcoded_url_document.reference_id: 143362 hardcoded_url_document.url: http://antcat.org/documents/7575/10-11646_zootaxa-4658-3-1.pdf target_orphan.id: 7575 target_orphan.reference_id: target_orphan.file_file_name: 10-11646_zootaxa-4658-3-1.pdf Replacing... hardcoded_url_document.id: 7580 hardcoded_url_document.reference_id: 143364 hardcoded_url_document.url: http://antcat.org/documents/7579/miao_wang_2019_bu_linguamyrmex_rhinocerus.pdf target_orphan.id: 7579 target_orphan.reference_id: target_orphan.file_file_name: miao_wang_2019_bu_linguamyrmex_rhinocerus.pdf Replacing... hardcoded_url_document.id: 7587 hardcoded_url_document.reference_id: 143073 hardcoded_url_document.url: http://antcat.org/documents/6738/crematogaster_final_draft.pdf target_orphan.id: 6738 target_orphan.reference_id: target_orphan.file_file_name: crematogaster_final_draft.pdf Replacing... hardcoded_url_document.id: 7589 hardcoded_url_document.reference_id: 143372 hardcoded_url_document.url: http://antcat.org/documents/7588/zk_article_36320_en_5.pdf target_orphan.id: 7588 target_orphan.reference_id: target_orphan.file_file_name: zk_article_36320_en_5.pdf Replacing... hardcoded_url_document.id: 7596 hardcoded_url_document.reference_id: 143377 hardcoded_url_document.url: http://antcat.org/documents/7595/vankerkhoven_etal_2010_anochetus_madagascarensis_copal.pdf target_orphan.id: 7595 target_orphan.reference_id: target_orphan.file_file_name: vankerkhoven_etal_2010_anochetus_madagascarensis_copal.pdf Replacing... hardcoded_url_document.id: 7598 hardcoded_url_document.reference_id: 143378 hardcoded_url_document.url: http://antcat.org/documents/7597/vankerkhoven_etal_2009_baltic_gesomyrmex.pdf target_orphan.id: 7597 target_orphan.reference_id: target_orphan.file_file_name: vankerkhoven_etal_2009_baltic_gesomyrmex.pdf Replacing... hardcoded_url_document.id: 7602 hardcoded_url_document.reference_id: 143380 hardcoded_url_document.url: http://antcat.org/documents/7600/hita-garcia_et_al_2019_isd_proceratiinae_discothyrea_afrotropical_revision.pdf target_orphan.id: 7600 target_orphan.reference_id: target_orphan.file_file_name: hita-garcia_et_al_2019_isd_proceratiinae_discothyrea_afrotropical_revision.pdf Replacing... hardcoded_url_document.id: 7620 hardcoded_url_document.reference_id: 143307 hardcoded_url_document.url: http://antcat.org/documents/7183/2019-camponotus_lateralis_group_-1.pdf target_orphan.id: 7183 target_orphan.reference_id: target_orphan.file_file_name: 2019-camponotus_lateralis_group_-1.pdf Replacing... hardcoded_url_document.id: 7622 hardcoded_url_document.reference_id: 142680 hardcoded_url_document.url: http://antcat.org/documents/6316/terayama_2013_mem_myrmecol_soc_jap_new_ants_from_japan.pdf target_orphan.id: 6316 target_orphan.reference_id: target_orphan.file_file_name: terayama_2013_mem_myrmecol_soc_jap_new_ants_from_japan.pdf Skipping - the same url is hardcoded more than once document_id: 7624 url: http://antcat.org/documents/3771/3537.pdf reference_id: 130564 - ArticleReference Replacing... hardcoded_url_document.id: 7626 hardcoded_url_document.reference_id: 143396 hardcoded_url_document.url: http://antcat.org/documents/7625/ramage_etal_2019_nc_dorylinae_ponerinae.pdf target_orphan.id: 7625 target_orphan.reference_id: target_orphan.file_file_name: ramage_etal_2019_nc_dorylinae_ponerinae.pdf Replacing... hardcoded_url_document.id: 7635 hardcoded_url_document.reference_id: 125759 hardcoded_url_document.url: http://antcat.org/documents/1631/Harris_1979_Occasional_Papers_in_Entomology_A_glossary_of_surface_sculpturing.pdf target_orphan.id: 1631 target_orphan.reference_id: target_orphan.file_file_name: Harris_1979_Occasional_Papers_in_Entomology_A_glossary_of_surface_sculpturing.pdf Replacing... hardcoded_url_document.id: 7645 hardcoded_url_document.reference_id: 143403 hardcoded_url_document.url: http://antcat.org/documents/7638/lebas___galkowski_2019_notes_sur_le_genre_proformica_ruzsky.pdf target_orphan.id: 7638 target_orphan.reference_id: target_orphan.file_file_name: lebas___galkowski_2019_notes_sur_le_genre_proformica_ruzsky.pdf Skipping - the same url is hardcoded more than once document_id: 7650 url: http://antcat.org/documents/7568/ortiz-sepulveda2019.pdf reference_id: 143355 - ArticleReference Replacing... hardcoded_url_document.id: 7654 hardcoded_url_document.reference_id: 143067 hardcoded_url_document.url: http://antcat.org/documents/6731/2017-cardiocondyla_nuda_group.pdf target_orphan.id: 6731 target_orphan.reference_id: target_orphan.file_file_name: 2017-cardiocondyla_nuda_group.pdf Replacing... hardcoded_url_document.id: 7655 hardcoded_url_document.reference_id: 143373 hardcoded_url_document.url: http://antcat.org/documents/7590/09_mostafa_az_69-3_603-608.pdf target_orphan.id: 7590 target_orphan.reference_id: target_orphan.file_file_name: 09_mostafa_az_69-3_603-608.pdf Replacing... hardcoded_url_document.id: 7656 hardcoded_url_document.reference_id: 143406 hardcoded_url_document.url: http://antcat.org/documents/7640/perrichot_etal_2020_bu_haidomyrmecinae.pdf target_orphan.id: 7640 target_orphan.reference_id: target_orphan.file_file_name: perrichot_etal_2020_bu_haidomyrmecinae.pdf Replacing... hardcoded_url_document.id: 7661 hardcoded_url_document.reference_id: 124137 hardcoded_url_document.url: http://antcat.org/documents/880/8162.pdf target_orphan.id: 880 target_orphan.reference_id: target_orphan.file_file_name: 8162.pdf Replacing... hardcoded_url_document.id: 7663 hardcoded_url_document.reference_id: 143419 hardcoded_url_document.url: http://antcat.org/documents/7662/rasnitsyn_1969_hymenoptera_symphyta_origin_evol.pdf target_orphan.id: 7662 target_orphan.reference_id: target_orphan.file_file_name: rasnitsyn_1969_hymenoptera_symphyta_origin_evol.pdf Skipping - the same url is hardcoded more than once document_id: 7665 url: http://antcat.org/documents/3996/23195.pdf reference_id: 132090 - ArticleReference Replacing... hardcoded_url_document.id: 7666 hardcoded_url_document.reference_id: 133007 hardcoded_url_document.url: http://antcat.org/documents/6294/Forel_1899i_Formicidae_concl.pdf target_orphan.id: 6294 target_orphan.reference_id: target_orphan.file_file_name: Forel_1899i_Formicidae_concl.pdf Replacing... hardcoded_url_document.id: 7675 hardcoded_url_document.reference_id: 128176 hardcoded_url_document.url: http://antcat.org/documents/6389/ruzsky_m_1902e.pdf target_orphan.id: 6389 target_orphan.reference_id: target_orphan.file_file_name: ruzsky_m_1902e.pdf Replacing... hardcoded_url_document.id: 7678 hardcoded_url_document.reference_id: 143020 hardcoded_url_document.url: http://antcat.org/documents/6675/taylor_etal_2016_ants_mali.pdf target_orphan.id: 6675 target_orphan.reference_id: target_orphan.file_file_name: taylor_etal_2016_ants_mali.pdf Replacing... hardcoded_url_document.id: 7679 hardcoded_url_document.reference_id: 142991 hardcoded_url_document.url: http://antcat.org/documents/6639/polyrhachis_euthiacaena.pdf target_orphan.id: 6639 target_orphan.reference_id: target_orphan.file_file_name: polyrhachis_euthiacaena.pdf Skipping - the same url is hardcoded more than once document_id: 7715 url: http://antcat.org/documents/7713/gathalkar___barsagade_2018_japplbiolbiotech_myrmicinae_myrmicaria_brunnea_cephalic_microstructure.pdf reference_id: 143469 - ArticleReference Replacing... hardcoded_url_document.id: 7769 hardcoded_url_document.reference_id: 130753 hardcoded_url_document.url: http://antcat.org/documents/5821/billen_2009_arthropod_struct_devel_exocrine_glands_in_ant_legs.pdf target_orphan.id: 5821 target_orphan.reference_id: target_orphan.file_file_name: billen_2009_arthropod_struct_devel_exocrine_glands_in_ant_legs.pdf Skipping - the same url is hardcoded more than once document_id: 7774 url: http://antcat.org/documents/7763/schoeters___billen_1999_actcollinsectsoc_neurohemal_organs.pdf reference_id: 143512 - ArticleReference Replacing... hardcoded_url_document.id: 7777 hardcoded_url_document.reference_id: 130769 hardcoded_url_document.url: http://antcat.org/documents/4251/Billen&Wilson_2008_Arthropod_Struct_Devel.pdf target_orphan.id: 4251 target_orphan.reference_id: target_orphan.file_file_name: Billen&Wilson_2008_Arthropod_Struct_Devel.pdf Replacing... hardcoded_url_document.id: 7781 hardcoded_url_document.reference_id: 130756 hardcoded_url_document.url: http://antcat.org/documents/3802/14624.pdf target_orphan.id: 3802 target_orphan.reference_id: target_orphan.file_file_name: 14624.pdf Replacing... hardcoded_url_document.id: 7783 hardcoded_url_document.reference_id: 132450 hardcoded_url_document.url: http://antcat.org/documents/4211/Tijskens_et_al_2002_Neth_J_Zool.pdf target_orphan.id: 4211 target_orphan.reference_id: target_orphan.file_file_name: Tijskens_et_al_2002_Neth_J_Zool.pdf Replacing... hardcoded_url_document.id: 7784 hardcoded_url_document.reference_id: 131372 hardcoded_url_document.url: http://antcat.org/documents/4396/Gobin_et_al_2003_Acta_Zool.pdf target_orphan.id: 4396 target_orphan.reference_id: target_orphan.file_file_name: Gobin_et_al_2003_Acta_Zool.pdf Replacing... hardcoded_url_document.id: 7790 hardcoded_url_document.reference_id: 132811 hardcoded_url_document.url: http://antcat.org/documents/4828/Gobin_et_al_2006_Cell_Tissue_Res Queen-worker spermatheca differences.pdf target_orphan.id: 4828 target_orphan.reference_id: target_orphan.file_file_name: Gobin_et_al_2006_Cell_Tissue_Res Queen-worker spermatheca differences.pdf Replacing... hardcoded_url_document.id: 7791 hardcoded_url_document.reference_id: 131395 hardcoded_url_document.url: http://antcat.org/documents/4411/Grasso_et_al_2005_Zoomorphology.pdf target_orphan.id: 4411 target_orphan.reference_id: target_orphan.file_file_name: Grasso_et_al_2005_Zoomorphology.pdf Replacing... hardcoded_url_document.id: 7792 hardcoded_url_document.reference_id: 132812 hardcoded_url_document.url: http://antcat.org/documents/4829/Gobin_et_al_2008_Naturwissenschaften Degeneration of spermatheca in worker ants.pdf target_orphan.id: 4829 target_orphan.reference_id: target_orphan.file_file_name: Gobin_et_al_2008_Naturwissenschaften Degeneration of spermatheca in worker ants.pdf Skipping - the same url is hardcoded more than once document_id: 7794 url: http://antcat.org/documents/4252/Billen_et_al_2005_Arthropod_Struct_Devel.pdf reference_id: 130768 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7796 url: http://antcat.org/documents/6044/billen_et_al_2013_arthropod_struct_devel_abdominal_gland_diversity_in_myopias.pdf reference_id: 142489 - ArticleReference Skipping - the same url is hardcoded more than once document_id: 7814 url: http://antcat.org/documents/5878/billen_et_al_2013_arthropod_struct_devel_exocrine_system_of_protanilla.pdf reference_id: 142370 - ArticleReference ```

jonkerz commented 3 years ago
Output (re-run)

```ruby Replacing... hardcoded_url_document.id: 6662 hardcoded_url_document.reference_id: 143009 hardcoded_url_document.url: http://antcat.org/documents/6660/chen_etal_2016_far_eastern_entomol_cerapachys_bispinatus.pdf target_orphan.id: 6660 target_orphan.reference_id: target_orphan.file_file_name: chen_etal_2016_far_eastern_entomol_cerapachys_bispinatus.pdf Replacing... hardcoded_url_document.id: 6761 hardcoded_url_document.reference_id: 143099 hardcoded_url_document.url: http://antcat.org/documents/6759/2017-desquivel_et_al-thaumatomyrmex_fraxini.pdf target_orphan.id: 6759 target_orphan.reference_id: target_orphan.file_file_name: 2017-desquivel_et_al-thaumatomyrmex_fraxini.pdf Replacing... hardcoded_url_document.id: 6926 hardcoded_url_document.reference_id: 142345 hardcoded_url_document.url: http://antcat.org/documents/5844/boudinot___fisher_2013_zootaxa_meranoplus_of_madagascar.pdf target_orphan.id: 5844 target_orphan.reference_id: target_orphan.file_file_name: boudinot___fisher_2013_zootaxa_meranoplus_of_madagascar.pdf Replacing... hardcoded_url_document.id: 6927 hardcoded_url_document.reference_id: 143112 hardcoded_url_document.url: http://antcat.org/documents/6774/barden_etal_2017_leptomyrmex-phylogeny.pdf target_orphan.id: 6774 target_orphan.reference_id: target_orphan.file_file_name: barden_etal_2017_leptomyrmex-phylogeny.pdf Replacing... hardcoded_url_document.id: 6932 hardcoded_url_document.reference_id: 131645 hardcoded_url_document.url: http://antcat.org/documents/4487/Krieger&Ross_2002_Science.pdf target_orphan.id: 4487 target_orphan.reference_id: target_orphan.file_file_name: Krieger&Ross_2002_Science.pdf Replacing... hardcoded_url_document.id: 6948 hardcoded_url_document.reference_id: 125216 hardcoded_url_document.url: http://antcat.org/documents/1454/4031.pdf target_orphan.id: 1454 target_orphan.reference_id: target_orphan.file_file_name: 4031.pdf Replacing... hardcoded_url_document.id: 6965 hardcoded_url_document.reference_id: 143203 hardcoded_url_document.url: http://antcat.org/documents/6962/585-2799-1-SM.pdf target_orphan.id: 6962 target_orphan.reference_id: target_orphan.file_file_name: 585-2799-1-SM.pdf Replacing... hardcoded_url_document.id: 6971 hardcoded_url_document.reference_id: 143207 hardcoded_url_document.url: http://antcat.org/documents/6968/Da_Silva_Neves_et_al._-_2018_-_Sociobiology.pdf target_orphan.id: 6968 target_orphan.reference_id: target_orphan.file_file_name: Da_Silva_Neves_et_al._-_2018_-_Sociobiology.pdf Replacing... hardcoded_url_document.id: 6986 hardcoded_url_document.reference_id: 124002 hardcoded_url_document.url: http://antcat.org/documents/838/7602.pdf target_orphan.id: 838 target_orphan.reference_id: target_orphan.file_file_name: 7602.pdf Replacing... hardcoded_url_document.id: 7019 hardcoded_url_document.reference_id: 143238 hardcoded_url_document.url: http://antcat.org/documents/7017/Blaimer_et_al_2018_Insect_Syst___Diversity_Crematogastrini_phylogeny.pdf target_orphan.id: 7017 target_orphan.reference_id: target_orphan.file_file_name: Blaimer_et_al_2018_Insect_Syst___Diversity_Crematogastrini_phylogeny.pdf Replacing... hardcoded_url_document.id: 7024 hardcoded_url_document.reference_id: 143140 hardcoded_url_document.url: http://antcat.org/documents/6809/salata-and-borowiec-2018-am010002.pdf target_orphan.id: 6809 target_orphan.reference_id: target_orphan.file_file_name: salata-and-borowiec-2018-am010002.pdf Replacing... hardcoded_url_document.id: 7034 hardcoded_url_document.reference_id: 143231 hardcoded_url_document.url: http://antcat.org/documents/6997/Wagner_et_al-2018-Scientific_Reports_(1).pdf target_orphan.id: 6997 target_orphan.reference_id: target_orphan.file_file_name: Wagner_et_al-2018-Scientific_Reports_(1).pdf Replacing... hardcoded_url_document.id: 7052 hardcoded_url_document.reference_id: 143254 hardcoded_url_document.url: http://antcat.org/documents/7050/Yamada__A.__Luong__P.T.H._et_al._2018._Description_of_a_new_species_of_the_ant_genus_Ooceraea.pdf target_orphan.id: 7050 target_orphan.reference_id: target_orphan.file_file_name: Yamada__A.__Luong__P.T.H._et_al._2018._Description_of_a_new_species_of_the_ant_genus_Ooceraea.pdf Replacing... hardcoded_url_document.id: 7093 hardcoded_url_document.reference_id: 143278 hardcoded_url_document.url: http://antcat.org/documents/7088/Zettel_et_al_2018_ZArbOstEnt_Camponotus_Myrmamblys_from_Southeast_Asia.pdf target_orphan.id: 7088 target_orphan.reference_id: target_orphan.file_file_name: Zettel_et_al_2018_ZArbOstEnt_Camponotus_Myrmamblys_from_Southeast_Asia.pdf Replacing... hardcoded_url_document.id: 7162 hardcoded_url_document.reference_id: 124103 hardcoded_url_document.url: http://antcat.org/documents/862/5664.pdf target_orphan.id: 862 target_orphan.reference_id: target_orphan.file_file_name: 5664.pdf Replacing... hardcoded_url_document.id: 7173 hardcoded_url_document.reference_id: 143016 hardcoded_url_document.url: http://antcat.org/documents/6678/ant_fauna_hymenoptera_formicidae_of_the_socotra_archipelago_yemen_zoogeography_distribution_and_description_of_a_new_species.pdf target_orphan.id: 6678 target_orphan.reference_id: target_orphan.file_file_name: ant_fauna_hymenoptera_formicidae_of_the_socotra_archipelago_yemen_zoogeography_distribution_and_description_of_a_new_species.pdf Replacing... hardcoded_url_document.id: 7175 hardcoded_url_document.reference_id: 143138 hardcoded_url_document.url: http://antcat.org/documents/6807/Sharaf_et_al._-_2018_-_Additions_to_the_ant_fauna_(_Hymenoptera_Formicidae_)_of_Oman_an_updated_list___new_records_and_a_description_o.pdf target_orphan.id: 6807 target_orphan.reference_id: target_orphan.file_file_name: Sharaf_et_al._-_2018_-_Additions_to_the_ant_fauna_(_Hymenoptera_Formicidae_)_of_Oman_an_updated_list___new_records_and_a_description_o.pdf Replacing... hardcoded_url_document.id: 7177 hardcoded_url_document.reference_id: 142632 hardcoded_url_document.url: http://antcat.org/documents/6250/borowiec_2014_catalogue_of_ants_of_europe_low.pdf target_orphan.id: 6250 target_orphan.reference_id: target_orphan.file_file_name: borowiec_2014_catalogue_of_ants_of_europe_low.pdf Replacing... hardcoded_url_document.id: 7188 hardcoded_url_document.reference_id: 130282 hardcoded_url_document.url: http://antcat.org/documents/3650/3462.pdf target_orphan.id: 3650 target_orphan.reference_id: target_orphan.file_file_name: 3462.pdf Replacing... hardcoded_url_document.id: 7190 hardcoded_url_document.reference_id: 130031 hardcoded_url_document.url: http://antcat.org/documents/3438/3276.pdf target_orphan.id: 3438 target_orphan.reference_id: target_orphan.file_file_name: 3276.pdf Replacing... hardcoded_url_document.id: 7214 hardcoded_url_document.reference_id: 130187 hardcoded_url_document.url: http://antcat.org/documents/3570/3386.pdf target_orphan.id: 3570 target_orphan.reference_id: target_orphan.file_file_name: 3386.pdf Replacing... hardcoded_url_document.id: 7250 hardcoded_url_document.reference_id: 130116 hardcoded_url_document.url: http://antcat.org/documents/3511/3336.pdf target_orphan.id: 3511 target_orphan.reference_id: target_orphan.file_file_name: 3336.pdf Replacing... hardcoded_url_document.id: 7259 hardcoded_url_document.reference_id: 123672 hardcoded_url_document.url: http://antcat.org/documents/662/6127.pdf target_orphan.id: 662 target_orphan.reference_id: target_orphan.file_file_name: 6127.pdf Replacing... hardcoded_url_document.id: 7275 hardcoded_url_document.reference_id: 123261 hardcoded_url_document.url: http://antcat.org/documents/497/6779.pdf target_orphan.id: 497 target_orphan.reference_id: target_orphan.file_file_name: 6779.pdf Replacing... hardcoded_url_document.id: 7280 hardcoded_url_document.reference_id: 124151 hardcoded_url_document.url: http://antcat.org/documents/885/8314.pdf target_orphan.id: 885 target_orphan.reference_id: target_orphan.file_file_name: 8314.pdf Replacing... hardcoded_url_document.id: 7296 hardcoded_url_document.reference_id: 142622 hardcoded_url_document.url: http://antcat.org/documents/6315/dlussky_perfilieva_2014_isle_of_wight_eocene_ants.pdf target_orphan.id: 6315 target_orphan.reference_id: target_orphan.file_file_name: dlussky_perfilieva_2014_isle_of_wight_eocene_ants.pdf Replacing... hardcoded_url_document.id: 7302 hardcoded_url_document.reference_id: 142630 hardcoded_url_document.url: http://antcat.org/documents/6341/ward_et_al_2015_syst_entomol_myrmicine_phylogeny_incl_supp_info.pdf target_orphan.id: 6341 target_orphan.reference_id: target_orphan.file_file_name: ward_et_al_2015_syst_entomol_myrmicine_phylogeny_incl_supp_info.pdf Replacing... hardcoded_url_document.id: 7316 hardcoded_url_document.reference_id: 130019 hardcoded_url_document.url: http://antcat.org/documents/3426/10540.pdf target_orphan.id: 3426 target_orphan.reference_id: target_orphan.file_file_name: 10540.pdf Replacing... hardcoded_url_document.id: 7317 hardcoded_url_document.reference_id: 130055 hardcoded_url_document.url: http://antcat.org/documents/3458/3292.pdf target_orphan.id: 3458 target_orphan.reference_id: target_orphan.file_file_name: 3292.pdf Replacing... hardcoded_url_document.id: 7324 hardcoded_url_document.reference_id: 130198 hardcoded_url_document.url: http://antcat.org/documents/3581/3400.pdf target_orphan.id: 3581 target_orphan.reference_id: target_orphan.file_file_name: 3400.pdf Replacing... hardcoded_url_document.id: 7327 hardcoded_url_document.reference_id: 128906 hardcoded_url_document.url: http://antcat.org/documents/5151/2734.pdf target_orphan.id: 5151 target_orphan.reference_id: target_orphan.file_file_name: 2734.pdf Replacing... hardcoded_url_document.id: 7362 hardcoded_url_document.reference_id: 132768 hardcoded_url_document.url: http://antcat.org/documents/4795/Lapeva-Gjonova_et_al_2010_ZooKeys_Catalogue of the ants of Bulgaria.pdf target_orphan.id: 4795 target_orphan.reference_id: target_orphan.file_file_name: Lapeva-Gjonova_et_al_2010_ZooKeys_Catalogue of the ants of Bulgaria.pdf Replacing... hardcoded_url_document.id: 7369 hardcoded_url_document.reference_id: 122149 hardcoded_url_document.url: http://antcat.org/documents/22/6857.pdf target_orphan.id: 22 target_orphan.reference_id: target_orphan.file_file_name: 6857.pdf Replacing... hardcoded_url_document.id: 7370 hardcoded_url_document.reference_id: 131396 hardcoded_url_document.url: http://antcat.org/documents/3894/23047.pdf target_orphan.id: 3894 target_orphan.reference_id: target_orphan.file_file_name: 23047.pdf Replacing... hardcoded_url_document.id: 7416 hardcoded_url_document.reference_id: 133061 hardcoded_url_document.url: http://antcat.org/documents/5676/blaimer_2012_zookeys-crematogaster-orthocrema-of-madagascar.pdf target_orphan.id: 5676 target_orphan.reference_id: target_orphan.file_file_name: blaimer_2012_zookeys-crematogaster-orthocrema-of-madagascar.pdf Replacing... hardcoded_url_document.id: 7417 hardcoded_url_document.reference_id: 142232 hardcoded_url_document.url: http://antcat.org/documents/5746/blaimer_2012_zootaxa-subgeneric-revision-of-crematogaster.pdf target_orphan.id: 5746 target_orphan.reference_id: target_orphan.file_file_name: blaimer_2012_zootaxa-subgeneric-revision-of-crematogaster.pdf Replacing... hardcoded_url_document.id: 7418 hardcoded_url_document.reference_id: 142233 hardcoded_url_document.url: http://antcat.org/documents/5747/blaimer_2012_mol_phylogenet_evol-acrobat-ants-go-global-incl-suppl-data.pdf target_orphan.id: 5747 target_orphan.reference_id: target_orphan.file_file_name: blaimer_2012_mol_phylogenet_evol-acrobat-ants-go-global-incl-suppl-data.pdf Replacing... hardcoded_url_document.id: 7421 hardcoded_url_document.reference_id: 142420 hardcoded_url_document.url: http://antcat.org/documents/5961/blaimer___fisher_2013_eur_j_taxon.pdf target_orphan.id: 5961 target_orphan.reference_id: target_orphan.file_file_name: blaimer___fisher_2013_eur_j_taxon.pdf Replacing... hardcoded_url_document.id: 7465 hardcoded_url_document.reference_id: 133042 hardcoded_url_document.url: http://antcat.org/documents/5654/lacau_et_al_2012_psyche-tatuidris-kapasi-sp-nov.pdf target_orphan.id: 5654 target_orphan.reference_id: target_orphan.file_file_name: lacau_et_al_2012_psyche-tatuidris-kapasi-sp-nov.pdf Replacing... hardcoded_url_document.id: 7466 hardcoded_url_document.reference_id: 132961 hardcoded_url_document.url: http://antcat.org/documents/5399/mariano_et_al_2011_psyche-pachycondyla.pdf target_orphan.id: 5399 target_orphan.reference_id: target_orphan.file_file_name: mariano_et_al_2011_psyche-pachycondyla.pdf Replacing... hardcoded_url_document.id: 7467 hardcoded_url_document.reference_id: 142407 hardcoded_url_document.url: http://antcat.org/documents/5946/joma___mackay_2013_psyche_bothroponera_umgodikulula.pdf target_orphan.id: 5946 target_orphan.reference_id: target_orphan.file_file_name: joma___mackay_2013_psyche_bothroponera_umgodikulula.pdf Replacing... hardcoded_url_document.id: 7468 hardcoded_url_document.reference_id: 132596 hardcoded_url_document.url: http://antcat.org/documents/4760/wernegreen_et_al_2009_bmc_evol_biol.pdf target_orphan.id: 4760 target_orphan.reference_id: target_orphan.file_file_name: wernegreen_et_al_2009_bmc_evol_biol.pdf Replacing... hardcoded_url_document.id: 7469 hardcoded_url_document.reference_id: 132546 hardcoded_url_document.url: http://antcat.org/documents/4745/Wang_et_al_2007_Genome_Biol.pdf target_orphan.id: 4745 target_orphan.reference_id: target_orphan.file_file_name: Wang_et_al_2007_Genome_Biol.pdf Replacing... hardcoded_url_document.id: 7475 hardcoded_url_document.reference_id: 132918 hardcoded_url_document.url: http://antcat.org/documents/5294/peters_et_al_2011_bmc_biol-hymenoptera-phylogeny.pdf target_orphan.id: 5294 target_orphan.reference_id: target_orphan.file_file_name: peters_et_al_2011_bmc_biol-hymenoptera-phylogeny.pdf Replacing... hardcoded_url_document.id: 7476 hardcoded_url_document.reference_id: 131832 hardcoded_url_document.url: http://antcat.org/documents/4545/Maruyama_et_al_2008_BMC_Evol_Biol.pdf target_orphan.id: 4545 target_orphan.reference_id: target_orphan.file_file_name: Maruyama_et_al_2008_BMC_Evol_Biol.pdf Replacing... hardcoded_url_document.id: 7478 hardcoded_url_document.reference_id: 132907 hardcoded_url_document.url: http://antcat.org/documents/5278/kronauer_et_al_2011_frontiers_zool-dorylus-hybridization.pdf target_orphan.id: 5278 target_orphan.reference_id: target_orphan.file_file_name: kronauer_et_al_2011_frontiers_zool-dorylus-hybridization.pdf Replacing... hardcoded_url_document.id: 7479 hardcoded_url_document.reference_id: 131391 hardcoded_url_document.url: http://antcat.org/documents/4175/Gotzek_2010_BMC Evolutionary Biology mt genome evolution in fire ants.pdf target_orphan.id: 4175 target_orphan.reference_id: target_orphan.file_file_name: Gotzek_2010_BMC Evolutionary Biology mt genome evolution in fire ants.pdf Replacing... hardcoded_url_document.id: 7480 hardcoded_url_document.reference_id: 132966 hardcoded_url_document.url: http://antcat.org/documents/5404/fox_et_al_2011_psyche-comparative-immature-morphology-of-solenopsis.pdf target_orphan.id: 5404 target_orphan.reference_id: target_orphan.file_file_name: fox_et_al_2011_psyche-comparative-immature-morphology-of-solenopsis.pdf Replacing... hardcoded_url_document.id: 7481 hardcoded_url_document.reference_id: 132964 hardcoded_url_document.url: http://antcat.org/documents/5402/feitosa_et_al_2011_psyche-sphinctomyrmex.pdf target_orphan.id: 5402 target_orphan.reference_id: target_orphan.file_file_name: feitosa_et_al_2011_psyche-sphinctomyrmex.pdf Replacing... hardcoded_url_document.id: 7483 hardcoded_url_document.reference_id: 132963 hardcoded_url_document.url: http://antcat.org/documents/5401/delsinne_-_fernandez_2011_psyche-lenomyrmex.pdf target_orphan.id: 5401 target_orphan.reference_id: target_orphan.file_file_name: delsinne_-_fernandez_2011_psyche-lenomyrmex.pdf Replacing... hardcoded_url_document.id: 7484 hardcoded_url_document.reference_id: 132962 hardcoded_url_document.url: http://antcat.org/documents/5400/cuezzo_-_guerrero_2011_psyche-dorymyrmex-of-colombia.pdf target_orphan.id: 5400 target_orphan.reference_id: target_orphan.file_file_name: cuezzo_-_guerrero_2011_psyche-dorymyrmex-of-colombia.pdf Replacing... hardcoded_url_document.id: 7486 hardcoded_url_document.reference_id: 133044 hardcoded_url_document.url: http://antcat.org/documents/5657/sharaf_et_al_2012_plos_one-new-tetramorium-from-saudi-arabia.pdf target_orphan.id: 5657 target_orphan.reference_id: target_orphan.file_file_name: sharaf_et_al_2012_plos_one-new-tetramorium-from-saudi-arabia.pdf Replacing... hardcoded_url_document.id: 7488 hardcoded_url_document.reference_id: 132861 hardcoded_url_document.url: http://antcat.org/documents/4882/Kück_et_al_2011_PLoS_ONE incl FigsS1-S7 ant phylogeny.pdf target_orphan.id: 4882 target_orphan.reference_id: target_orphan.file_file_name: Kück_et_al_2011_PLoS_ONE incl FigsS1-S7 ant phylogeny.pdf Replacing... hardcoded_url_document.id: 7490 hardcoded_url_document.reference_id: 132872 hardcoded_url_document.url: http://antcat.org/documents/5234/Suen_et_al_2011_PLoS_Genet Atta cephalotes genome.pdf target_orphan.id: 5234 target_orphan.reference_id: target_orphan.file_file_name: Suen_et_al_2011_PLoS_Genet Atta cephalotes genome.pdf Replacing... hardcoded_url_document.id: 7491 hardcoded_url_document.reference_id: 132050 hardcoded_url_document.url: http://antcat.org/documents/4620/Rabeling_et_al_2009_PLoS One.pdf target_orphan.id: 4620 target_orphan.reference_id: target_orphan.file_file_name: Rabeling_et_al_2009_PLoS One.pdf Replacing... hardcoded_url_document.id: 7493 hardcoded_url_document.reference_id: 132917 hardcoded_url_document.url: http://antcat.org/documents/5292/menke_et_al_2010_plos_one-tapinoma-sessile-phylogeography.pdf target_orphan.id: 5292 target_orphan.reference_id: target_orphan.file_file_name: menke_et_al_2010_plos_one-tapinoma-sessile-phylogeography.pdf Replacing... hardcoded_url_document.id: 7495 hardcoded_url_document.reference_id: 142395 hardcoded_url_document.url: http://antcat.org/documents/5914/blaimer___fisher_2013_plos_one_crematogaster_kelleri_species-group.pdf target_orphan.id: 5914 target_orphan.reference_id: target_orphan.file_file_name: blaimer___fisher_2013_plos_one_crematogaster_kelleri_species-group.pdf Replacing... hardcoded_url_document.id: 7496 hardcoded_url_document.reference_id: 131306 hardcoded_url_document.url: http://antcat.org/documents/4380/Fisher_&_Smith_2008_PLoS_ONE.pdf target_orphan.id: 4380 target_orphan.reference_id: target_orphan.file_file_name: Fisher_&_Smith_2008_PLoS_ONE.pdf Skipping - the same url is hardcoded more than once document_id: 7499 url: http://antcat.org/documents/5406/delsinne_et_al_2011_psyche-oxyepoecus-in-paraguay.pdf reference_id: 132973 - NestedReference Skipping - the same url is hardcoded more than once document_id: 7500 url: http://antcat.org/documents/5406/delsinne_et_al_2011_psyche-oxyepoecus-in-paraguay.pdf reference_id: 132974 - NestedReference Replacing... hardcoded_url_document.id: 7518 hardcoded_url_document.reference_id: 122158 hardcoded_url_document.url: http://antcat.org/documents/27/6862.pdf target_orphan.id: 27 target_orphan.reference_id: target_orphan.file_file_name: 6862.pdf Replacing... hardcoded_url_document.id: 7522 hardcoded_url_document.reference_id: 134428 hardcoded_url_document.url: http://antcat.org/documents/5734/seifert_2012_myrmecol_news-european-bothriomyrmex-review.pdf target_orphan.id: 5734 target_orphan.reference_id: target_orphan.file_file_name: seifert_2012_myrmecol_news-european-bothriomyrmex-review.pdf Replacing... hardcoded_url_document.id: 7534 hardcoded_url_document.reference_id: 122977 hardcoded_url_document.url: http://antcat.org/documents/329/6514.pdf target_orphan.id: 329 target_orphan.reference_id: target_orphan.file_file_name: 6514.pdf Replacing... hardcoded_url_document.id: 7536 hardcoded_url_document.reference_id: 123170 hardcoded_url_document.url: http://antcat.org/documents/440/6720.pdf target_orphan.id: 440 target_orphan.reference_id: target_orphan.file_file_name: 6720.pdf Replacing... hardcoded_url_document.id: 7545 hardcoded_url_document.reference_id: 143343 hardcoded_url_document.url: http://antcat.org/documents/7543/1145-6236-2-pb.pdf target_orphan.id: 7543 target_orphan.reference_id: target_orphan.file_file_name: 1145-6236-2-pb.pdf Replacing... hardcoded_url_document.id: 7550 hardcoded_url_document.reference_id: 129956 hardcoded_url_document.url: http://antcat.org/documents/3374/3456.pdf target_orphan.id: 3374 target_orphan.reference_id: target_orphan.file_file_name: 3456.pdf Replacing... hardcoded_url_document.id: 7624 hardcoded_url_document.reference_id: 130564 hardcoded_url_document.url: http://antcat.org/documents/3771/3537.pdf target_orphan.id: 3771 target_orphan.reference_id: target_orphan.file_file_name: 3537.pdf Replacing... hardcoded_url_document.id: 7650 hardcoded_url_document.reference_id: 143355 hardcoded_url_document.url: http://antcat.org/documents/7568/ortiz-sepulveda2019.pdf target_orphan.id: 7568 target_orphan.reference_id: target_orphan.file_file_name: ortiz-sepulveda2019.pdf Replacing... hardcoded_url_document.id: 7665 hardcoded_url_document.reference_id: 132090 hardcoded_url_document.url: http://antcat.org/documents/3996/23195.pdf target_orphan.id: 3996 target_orphan.reference_id: target_orphan.file_file_name: 23195.pdf Replacing... hardcoded_url_document.id: 7715 hardcoded_url_document.reference_id: 143469 hardcoded_url_document.url: http://antcat.org/documents/7713/gathalkar___barsagade_2018_japplbiolbiotech_myrmicinae_myrmicaria_brunnea_cephalic_microstructure.pdf target_orphan.id: 7713 target_orphan.reference_id: target_orphan.file_file_name: gathalkar___barsagade_2018_japplbiolbiotech_myrmicinae_myrmicaria_brunnea_cephalic_microstructure.pdf Replacing... hardcoded_url_document.id: 7774 hardcoded_url_document.reference_id: 143512 hardcoded_url_document.url: http://antcat.org/documents/7763/schoeters___billen_1999_actcollinsectsoc_neurohemal_organs.pdf target_orphan.id: 7763 target_orphan.reference_id: target_orphan.file_file_name: schoeters___billen_1999_actcollinsectsoc_neurohemal_organs.pdf Replacing... hardcoded_url_document.id: 7794 hardcoded_url_document.reference_id: 130768 hardcoded_url_document.url: http://antcat.org/documents/4252/Billen_et_al_2005_Arthropod_Struct_Devel.pdf target_orphan.id: 4252 target_orphan.reference_id: target_orphan.file_file_name: Billen_et_al_2005_Arthropod_Struct_Devel.pdf Replacing... hardcoded_url_document.id: 7796 hardcoded_url_document.reference_id: 142489 hardcoded_url_document.url: http://antcat.org/documents/6044/billen_et_al_2013_arthropod_struct_devel_abdominal_gland_diversity_in_myopias.pdf target_orphan.id: 6044 target_orphan.reference_id: target_orphan.file_file_name: billen_et_al_2013_arthropod_struct_devel_abdominal_gland_diversity_in_myopias.pdf Replacing... hardcoded_url_document.id: 7814 hardcoded_url_document.reference_id: 142370 hardcoded_url_document.url: http://antcat.org/documents/5878/billen_et_al_2013_arthropod_struct_devel_exocrine_system_of_protanilla.pdf target_orphan.id: 5878 target_orphan.reference_id: target_orphan.file_file_name: billen_et_al_2013_arthropod_struct_devel_exocrine_system_of_protanilla.pdf ```