Skip to contents

High Dimensional Phylogenetic Modeling

In this notebook, we will work with the in development R packages phyf and fibre to try out some modelling of high dimensional traits.

Latent Trait Space

The high dimensional traits we will be working with are actually estimated ‘latent traits’, from a trained deep learning model called an autodecoder. Any vector of latent traits can be converted into a full 3d bird beak using a pretrained neural network that is included in the fibre package.

Working with phylogenetic data in the {phyf} package

phyf is a package for working with phylogenetic data that implements a novel phylogenetic data structure called a ‘phylogenetic flow’. These structures are convenient for fast types of phylogenetic trait models and also make it easy to manipulate a phylogeny along with associated data.

Let’s start by loading the packages we need today, and then explore the dataset we will work with!

## 
## Attaching package: 'phyf'
## The following object is masked from 'package:stats':
## 
##     pf
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
## Warning in rgl.init(initValue, onlyNULL): RGL: unable to open X11 display
## Warning: 'rgl.init' failed, running with 'rgl.useNULL = TRUE'.
library(patchwork)
data(bird_beak_codes)

bird_beak_codes is a pf object. A pf object is a type of data.frame that includes phylogenetic information in a special type of column. By convention this column is called phlo. Let’s print it and have a look:

print(bird_beak_codes)
## # A tibble: 4,040 × 80
##    label      is_tip phlo            Commo…¹ Sex   Scien…² Clade BLFam…³ BLFam…⁴
##    <chr>      <lgl>  <pfc>           <chr>   <chr> <chr>   <chr> <chr>   <chr>  
##  1 Nothocerc… TRUE   ◎── 27.partei  Highla… F     Nothoc… Pale… Tinami… Tinamo…
##  2 Tinamus_g… TRUE   ◎── 27.ttatus  White-… M     Tinamu… Pale… Tinami… Tinamo…
##  3 Crypturel… TRUE   ◎── 27.egatus  Varieg… M     Cryptu… Pale… Tinami… Tinamo…
##  4 Eudromia_… TRUE   ◎──   2legans  Elegan… M     Eudrom… Pale… Tinami… Tinamo…
##  5 Tinamotis… TRUE   ◎──   2landii  Puna T… M     Tinamo… Pale… Tinami… Tinamo…
##  6 Taoniscus… TRUE   ◎──   2_nanus  Dwarf … M     Taonis… Pale… Tinami… Tinamo…
##  7 Nothura_d… TRUE   ◎──   2rwinii  Darwin… M     Nothur… Pale… Tinami… Tinamo…
##  8 Rhynchotu… TRUE   ◎──   2collis  Huayco… U     Rhynch… Pale… Tinami… Tinamo…
##  9 Nothoproc… TRUE   ◎──   2icaria  Chilea… M     Nothop… Pale… Tinami… Tinamo…
## 10 Rhea_amer… TRUE   ◎──   2ricana  Greate… M     Rhea a… Pale… Rheidae Rheas  
## # … with 4,030 more rows, 71 more variables: Order <chr>, OscSubOsc <chr>,
## #   X <dbl>, Y <dbl>, X0 <dbl>, Y0 <dbl>, Z0 <dbl>, latent_code_1 <dbl>,
## #   latent_code_2 <dbl>, latent_code_3 <dbl>, latent_code_4 <dbl>,
## #   latent_code_5 <dbl>, latent_code_6 <dbl>, latent_code_7 <dbl>,
## #   latent_code_8 <dbl>, latent_code_9 <dbl>, latent_code_10 <dbl>,
## #   latent_code_11 <dbl>, latent_code_12 <dbl>, latent_code_13 <dbl>,
## #   latent_code_14 <dbl>, latent_code_15 <dbl>, latent_code_16 <dbl>, …

The phlo column is a special R vector called a pfc object (for phylogenetic flow collection). For those familiar with spatial analysis in R, you might have noticed that phyf is heavily inspired by the sf package, and uses similar naming conventions. The pfc object can be extracted in the usual way:

bird_beak_codes$phlo
## <pfc<e:4040>[4040]>
## First  10 phylogenetic flows: 
## [1] ◎── 27.3──→ Node2 ── 15.6──→ Node3 ──  7.8──→ Node4 ──  7.7──→ Node5 ── 70.5──→ Nothocercus_bonapartei 
## 
## [2] ◎── 27.3──→ Node2 ── 15.6──→ Node3 ──  7.8──→ Node4 ──  7.7──→ Node5 ── 70.5──→ Tinamus_guttatus 
## 
## [3] ◎── 27.3──→ Node2 ── 15.6──→ Node3 ──  7.8──→ Node4 ── 78.2──→ Crypturellus_variegatus 
## 
## [4] ◎──   27──→ Node2 ──   16──→ Node3 ──   14──→ Node6 ──   25──→ Node7 ──   46──→ Eudromia_elegans 
## 
## [5] ◎──   27──→ Node2 ──   16──→ Node3 ──   14──→ Node6 ──   25──→ Node7 ──   22──→ Node8 ──   24──→ Tinamotis_pentlandii 
## 
## [6] ◎──   27──→ Node2 ──   16──→ Node3 ──   14──→ Node6 ──   25──→ Node7 ──   22──→ Node8 ──   24──→ Taoniscus_nanus 
## 
## [7] ◎──   27──→ Node2 ──   16──→ Node3 ──   14──→ Node6 ──   20──→ Node9 ──   52──→ Nothura_darwinii 
## 
## [8] ◎──   27──→ Node2 ──   16──→ Node3 ──   14──→ Node6 ──   20──→ Node9 ──   14──→ Node10 ──   37──→ Rhynchotus_maculicollis 
## 
## [9] ◎──   27──→ Node2 ──   16──→ Node3 ──   14──→ Node6 ──   20──→ Node9 ──   14──→ Node10 ──   37──→ Nothoprocta_perdicaria 
## 
## [10] ◎──   27──→ Node2 ──   40──→ Node11 ──   15──→ Node12 ──   47──→ Rhea_americana

The printout gives a sense of the underlying structure of a phylogenetic flow. Essentially it is a list of pathways (or ‘flows’) from the root of the phylogeny to its tips (or internal nodes). This makes it have a fair bit of redundant information in it, but this is counter-intuitively part of what makes it so efficient. Another way of visualizing the structure is as a sparse matrix (and this is where the efficiency really lies). Each row is a ‘flow’ from root to a terminal node (internal nodes are ‘fake’ terminal nodes). Each column is an edge on the phylogeny (named by it’s end node).

pf_as_sparse(bird_beak_codes)
## 4040 x 4040 sparse Matrix of class "dgCMatrix"
##    [[ suppressing 32 column names 'Node15', 'Node2', 'Node11' ... ]]
##    [[ suppressing 32 column names 'Node15', 'Node2', 'Node11' ... ]]
##                                                                                      
## Nothocercus_bonapartei           .       27.34468  .       15.57873  .       7.830317
## Tinamus_guttatus                 .       27.34468  .       15.57873  .       7.830317
## Crypturellus_variegatus          .       27.34468  .       15.57873  .       7.830317
## Eudromia_elegans                 .       27.34468  .       15.57873 14.44853 .       
## Tinamotis_pentlandii             .       27.34468  .       15.57873 14.44853 .       
## Taoniscus_nanus                  .       27.34468  .       15.57873 14.44853 .       
## Nothura_darwinii                 .       27.34468  .       15.57873 14.44853 .       
## Rhynchotus_maculicollis          .       27.34468  .       15.57873 14.44853 .       
## Nothoprocta_perdicaria           .       27.34468  .       15.57873 14.44853 .       
## Rhea_americana                   .       27.34468 40.20318  .        .       .       
## Apteryx_haastii                  .       27.34468 40.20318  .        .       .       
## Casuarius_casuarius              .       27.34468 40.20318  .        .       .       
## Dromaius_novaehollandiae         .       27.34468 40.20318  .        .       .       
## Struthio_camelus                 .       27.34468 40.20318  .        .       .       
## Chauna_chavaria                 10.00638  .        .        .        .       .       
## Anhima_cornuta                  10.00638  .        .        .        .       .       
## Anseranas_semipalmata           10.00638  .        .        .        .       .       
## Dendrocygna_arborea             10.00638  .        .        .        .       .       
## Thalassornis_leuconotus         10.00638  .        .        .        .       .       
## Cygnus_melancoryphus            10.00638  .        .        .        .       .       
## Anser_fabalis                   10.00638  .        .        .        .       .       
## Chen_caerulescens               10.00638  .        .        .        .       .       
## Branta_bernicla                 10.00638  .        .        .        .       .       
## Coscoroba_coscoroba             10.00638  .        .        .        .       .       
## Cereopsis_novaehollandiae       10.00638  .        .        .        .       .       
## Malacorhynchus_membranaceus     10.00638  .        .        .        .       .       
## Netta_rufina                    10.00638  .        .        .        .       .       
## Aythya_ferina                   10.00638  .        .        .        .       .       
## Marmaronetta_angustirostris     10.00638  .        .        .        .       .       
## Salvadorina_waigiuensis         10.00638  .        .        .        .       .       
## Pteronetta_hartlaubii           10.00638  .        .        .        .       .       
## Cyanochen_cyanoptera            10.00638  .        .        .        .       .       
## Tadorna_ferruginea              10.00638  .        .        .        .       .       
## Alopochen_aegyptiaca            10.00638  .        .        .        .       .       
## Chloephaga_melanoptera          10.00638  .        .        .        .       .       
## Neochen_jubata                  10.00638  .        .        .        .       .       
## Cairina_moschata                10.00638  .        .        .        .       .       
## Aix_sponsa                      10.00638  .        .        .        .       .       
## Callonetta_leucophrys           10.00638  .        .        .        .       .       
## Merganetta_armata               10.00638  .        .        .        .       .       
## Melanitta_nigra                 10.00638  .        .        .        .       .       
## Mergellus_albellus              10.00638  .        .        .        .       .       
## Mergus_serrator                 10.00638  .        .        .        .       .       
## Lophodytes_cucullatus           10.00638  .        .        .        .       .       
## Bucephala_clangula              10.00638  .        .        .        .       .       
## Histrionicus_histrionicus       10.00638  .        .        .        .       .       
## Clangula_hyemalis               10.00638  .        .        .        .       .       
## Polysticta_stelleri             10.00638  .        .        .        .       .       
## Somateria_mollissima            10.00638  .        .        .        .       .       
## Chenonetta_jubata               10.00638  .        .        .        .       .       
## Hymenolaimus_malacorhynchos     10.00638  .        .        .        .       .       
## Sarkidiornis_melanotos          10.00638  .        .        .        .       .       
## Anas_platyrhynchos              10.00638  .        .        .        .       .       
## Tachyeres_pteneres              10.00638  .        .        .        .       .       
## Lophonetta_specularioides       10.00638  .        .        .        .       .       
## Speculanas_specularis           10.00638  .        .        .        .       .       
## Amazonetta_brasiliensis         10.00638  .        .        .        .       .       
## Nettapus_pulchellus             10.00638  .        .        .        .       .       
## Biziura_lobata                  10.00638  .        .        .        .       .       
## Nomonyx_dominicus               10.00638  .        .        .        .       .       
## Oxyura_jamaicensis              10.00638  .        .        .        .       .       
## Plectropterus_gambensis         10.00638  .        .        .        .       .       
## Heteronetta_atricapilla         10.00638  .        .        .        .       .       
## Stictonetta_naevosa             10.00638  .        .        .        .       .       
## Aepypodius_arfakianus           10.00638  .        .        .        .       .       
## Alectura_lathami                10.00638  .        .        .        .       .       
## Talegalla_cuvieri               10.00638  .        .        .        .       .       
## Leipoa_ocellata                 10.00638  .        .        .        .       .       
## Eulipoa_wallacei                10.00638  .        .        .        .       .       
## Megapodius_freycinet            10.00638  .        .        .        .       .       
## Macrocephalon_maleo             10.00638  .        .        .        .       .       
## Mitu_tomentosum                 10.00638  .        .        .        .       .       
## Nothocrax_urumutum              10.00638  .        .        .        .       .       
## Crax_rubra                      10.00638  .        .        .        .       .       
## Ortalis_vetula                  10.00638  .        .        .        .       .       
## Oreophasis_derbianus            10.00638  .        .        .        .       .       
## Penelopina_nigra                10.00638  .        .        .        .       .       
## Aburria_aburri                  10.00638  .        .        .        .       .       
## Pipile_cumanensis               10.00638  .        .        .        .       .       
## Penelope_argyrotis              10.00638  .        .        .        .       .       
## Chamaepetes_unicolor            10.00638  .        .        .        .       .       
## Acryllium_vulturinum            10.00638  .        .        .        .       .       
## Guttera_plumifera               10.00638  .        .        .        .       .       
## Agelastes_niger                 10.00638  .        .        .        .       .       
## Numida_meleagris                10.00638  .        .        .        .       .       
## Dendrortyx_macroura             10.00638  .        .        .        .       .       
## Philortyx_fasciatus             10.00638  .        .        .        .       .       
## Odontophorus_capueira           10.00638  .        .        .        .       .       
## Dactylortyx_thoracicus          10.00638  .        .        .        .       .       
## Rhynchortyx_cinctus             10.00638  .        .        .        .       .       
## Cyrtonyx_montezumae             10.00638  .        .        .        .       .       
## Oreortyx_pictus                 10.00638  .        .        .        .       .       
## Colinus_cristatus               10.00638  .        .        .        .       .       
## Callipepla_squamata             10.00638  .        .        .        .       .       
## Ptilopachus_petrosus            10.00638  .        .        .        .       .       
## Arborophila_mandellii           10.00638  .        .        .        .       .       
## Caloperdix_oculeus              10.00638  .        .        .        .       .       
## Rollulus_rouloul                10.00638  .        .        .        .       .       
## Melanoperdix_niger              10.00638  .        .        .        .       .       
## Tetraogallus_caspius            10.00638  .        .        .        .       .       
## Perdicula_asiatica              10.00638  .        .        .        .       .       
## Ammoperdix_griseogularis        10.00638  .        .        .        .       .       
## Alectoris_chukar                10.00638  .        .        .        .       .       
## Francolinus_jacksoni            10.00638  .        .        .        .       .       
## Anurophasis_monorthonyx         10.00638  .        .        .        .       .       
## Coturnix_coturnix               10.00638  .        .        .        .       .       
## Margaroperdix_madagascariensis  10.00638  .        .        .        .       .       
## Afropavo_congensis              10.00638  .        .        .        .       .       
## Pavo_cristatus                  10.00638  .        .        .        .       .       
## Rheinardia_ocellata             10.00638  .        .        .        .       .       
## Argusianus_argus                10.00638  .        .        .        .       .       
## Polyplectron_napoleonis         10.00638  .        .        .        .       .       
## Galloperdix_spadicea            10.00638  .        .        .        .       .       
## Haematortyx_sanguiniceps        10.00638  .        .        .        .       .       
## Gallus_gallus                   10.00638  .        .        .        .       .       
## Bambusicola_fytchii             10.00638  .        .        .        .       .       
## Meleagris_gallopavo             10.00638  .        .        .        .       .       
## Bonasa_bonasia                  10.00638  .        .        .        .       .       
## Lagopus_lagopus                 10.00638  .        .        .        .       .       
## Lerwa_lerwa                     10.00638  .        .        .        .       .       
## Dendragapus_obscurus            10.00638  .        .        .        .       .       
## Tympanuchus_phasianellus        10.00638  .        .        .        .       .       
## Centrocercus_urophasianus       10.00638  .        .        .        .       .       
## Tetrao_tetrix                   10.00638  .        .        .        .       .       
## Pucrasia_macrolopha             10.00638  .        .        .        .       .       
## Rhizothera_longirostris         10.00638  .        .        .        .       .       
## Crossoptilon_harmani            10.00638  .        .        .        .       .       
## Catreus_wallichi                10.00638  .        .        .        .       .       
## Lophura_leucomelanos            10.00638  .        .        .        .       .       
## Chrysolophus_pictus             10.00638  .        .        .        .       .       
## Phasianus_colchicus             10.00638  .        .        .        .       .       
## Syrmaticus_humiae               10.00638  .        .        .        .       .       
## Perdix_perdix                   10.00638  .        .        .        .       .       
## Tetraophasis_szechenyii         10.00638  .        .        .        .       .       
## Lophophorus_impejanus           10.00638  .        .        .        .       .       
## Tragopan_melanocephalus         10.00638  .        .        .        .       .       
## Ithaginis_cruentus              10.00638  .        .        .        .       .       
## Pterocles_gutturalis            10.00638  .        .        .        .       .       
## Syrrhaptes_tibetanus            10.00638  .        .        .        .       .       
## Leptotila_verreauxi             10.00638  .        .        .        .       .       
## Geotrygon_lawrencii             10.00638  .        .        .        .       .       
## Starnoenas_cyanocephala         10.00638  .        .        .        .       .       
## Zenaida_macroura                10.00638  .        .        .        .       .       
## Patagioenas_leucocephala        10.00638  .        .        .        .       .       
## Turacoena_manadensis            10.00638  .        .        .        .       .       
## Macropygia_unchall              10.00638  .        .        .        .       .       
## Reinwardtoena_reinwardtsi       10.00638  .        .        .        .       .       
## Streptopelia_semitorquata       10.00638  .        .        .        .       .       
## Stigmatopelia_chinensis         10.00638  .        .        .        .       .       
## Nesoenas_picturata              10.00638  .        .        .        .       .       
## Aplopelia_larvata               10.00638  .        .        .        .       .       
## Columba_bollii                  10.00638  .        .        .        .       .       
## Geopelia_striata                10.00638  .        .        .        .       .       
## Geophaps_scripta                10.00638  .        .        .        .       .       
## Phaps_chalcoptera               10.00638  .        .        .        .       .       
## Petrophassa_albipennis          10.00638  .        .        .        .       .       
## Ocyphaps_lophotes               10.00638  .        .        .        .       .       
## Leucosarcia_melanoleuca         10.00638  .        .        .        .       .       
## Henicophaps_albifrons           10.00638  .        .        .        .       .       
## Gallicolumba_erythroptera       10.00638  .        .        .        .       .       
## Treron_calvus                   10.00638  .        .        .        .       .       
## Ptilinopus_magnificus           10.00638  .        .        .        .       .       
## Drepanoptila_holosericea        10.00638  .        .        .        .       .       
## Alectroenas_madagascariensis    10.00638  .        .        .        .       .       
## Lopholaimus_antarcticus         10.00638  .        .        .        .       .       
## Gymnophaps_albertisii           10.00638  .        .        .        .       .       
## Hemiphaga_novaeseelandiae       10.00638  .        .        .        .       .       
## Ducula_aenea                    10.00638  .        .        .        .       .       
## Phapitreron_leucotis            10.00638  .        .        .        .       .       
## Turtur_abyssinicus              10.00638  .        .        .        .       .       
## Oena_capensis                   10.00638  .        .        .        .       .       
## Chalcophaps_indica              10.00638  .        .        .        .       .       
## Didunculus_strigirostris        10.00638  .        .        .        .       .       
## Goura_victoria                  10.00638  .        .        .        .       .       
## Caloenas_nicobarica             10.00638  .        .        .        .       .       
## Otidiphaps_nobilis              10.00638  .        .        .        .       .       
## Trugon_terrestris               10.00638  .        .        .        .       .       
## Uropelia_campestris             10.00638  .        .        .        .       .       
## Columbina_squammata             10.00638  .        .        .        .       .       
## Metriopelia_ceciliae            10.00638  .        .        .        .       .       
## Claravis_pretiosa               10.00638  .        .        .        .       .       
## Pelecanus_crispus               10.00638  .        .        .        .       .       
## Balaeniceps_rex                 10.00638  .        .        .        .       .       
## Scopus_umbretta                 10.00638  .        .        .        .       .       
## Pygoscelis_antarcticus          10.00638  .        .        .        .       .       
## Aptenodytes_forsteri            10.00638  .        .        .        .       .       
## Spheniscus_demersus             10.00638  .        .        .        .       .       
## Eudyptula_minor                 10.00638  .        .        .        .       .       
## Megadyptes_antipodes            10.00638  .        .        .        .       .       
## Eudyptes_robustus               10.00638  .        .        .        .       .       
## Tigrisoma_lineatum              10.00638  .        .        .        .       .       
## Zebrilus_undulatus              10.00638  .        .        .        .       .       
## Botaurus_pinnatus               10.00638  .        .        .        .       .       
## Ixobrychus_cinnamomeus          10.00638  .        .        .        .       .       
## Pilherodius_pileatus            10.00638  .        .        .        .       .       
## Agamia_agami                    10.00638  .        .        .        .       .       
## Nycticorax_nycticorax           10.00638  .        .        .        .       .       
## Ardeola_speciosa                10.00638  .        .        .        .       .       
## Nyctanassa_violacea             10.00638  .        .        .        .       .       
## Gorsachius_leuconotus           10.00638  .        .        .        .       .       
## Butorides_striata               10.00638  .        .        .        .       .       
## Ardea_sumatrana                 10.00638  .        .        .        .       .       
## Bubulcus_ibis                   10.00638  .        .        .        .       .       
## Mesophoyx_intermedia            10.00638  .        .        .        .       .       
## Casmerodius_albus               10.00638  .        .        .        .       .       
## Egretta_garzetta                10.00638  .        .        .        .       .       
## Syrigma_sibilatrix              10.00638  .        .        .        .       .       
## Cochlearius_cochlearius         10.00638  .        .        .        .       .       
## Zonerodius_heliosylus           10.00638  .        .        .        .       .       
## Tigriornis_leucolopha           10.00638  .        .        .        .       .       
## Fregata_ariel                   10.00638  .        .        .        .       .       
## Morus_serrator                  10.00638  .        .        .        .       .       
## Papasula_abbotti                10.00638  .        .        .        .       .       
## Sula_nebouxii                   10.00638  .        .        .        .       .       
## Anhinga_anhinga                 10.00638  .        .        .        .       .       
## Phalacrocorax_carbo             10.00638  .        .        .        .       .       
## Geronticus_calvus               10.00638  .        .        .        .       .       
## Plegadis_falcinellus            10.00638  .        .        .        .       .       
## Nipponia_nippon                 10.00638  .        .        .        .       .       
## Pseudibis_papillosa             10.00638  .        .        .        .       .       
## Bostrychia_hagedash             10.00638  .        .        .        .       .       
## Threskiornis_aethiopicus        10.00638  .        .        .        .       .       
## Lophotibis_cristata             10.00638  .        .        .        .       .       
## Platalea_leucorodia             10.00638  .        .        .        .       .       
## Mesembrinibis_cayennensis       10.00638  .        .        .        .       .       
## Eudocimus_albus                 10.00638  .        .        .        .       .       
## Theristicus_caerulescens        10.00638  .        .        .        .       .       
## Cercibis_oxycerca               10.00638  .        .        .        .       .       
## Phimosus_infuscatus             10.00638  .        .        .        .       .       
## Thaumatibis_gigantea            10.00638  .        .        .        .       .       
## Anastomus_oscitans              10.00638  .        .        .        .       .       
## Mycteria_americana              10.00638  .        .        .        .       .       
## Leptoptilos_javanicus           10.00638  .        .        .        .       .       
## Ciconia_maguari                 10.00638  .        .        .        .       .       
## Ephippiorhynchus_asiaticus      10.00638  .        .        .        .       .       
## Jabiru_mycteria                 10.00638  .        .        .        .       .       
## Gavia_stellata                  10.00638  .        .        .        .       .       
## Oceanites_gracilis              10.00638  .        .        .        .       .       
## Fregetta_grallaria              10.00638  .        .        .        .       .       
## Pelagodroma_marina              10.00638  .        .        .        .       .       
## Garrodia_nereis                 10.00638  .        .        .        .       .       
## Nesofregetta_fuliginosa         10.00638  .        .        .        .       .       
## Phoebetria_palpebrata           10.00638  .        .        .        .       .       
## Diomedea_exulans                10.00638  .        .        .        .       .       
## Thalassarche_impavida           10.00638  .        .        .        .       .       
## Phoebastria_irrorata            10.00638  .        .        .        .       .       
## Pelecanoides_magellani          10.00638  .        .        .        .       .       
## Lugensa_brevirostris            10.00638  .        .        .        .       .       
## Halobaena_caerulea              10.00638  .        .        .        .       .       
## Pachyptila_belcheri             10.00638  .        .        .        .       .       
## Bulweria_fallax                 10.00638  .        .        .        .       .       
## Calonectris_leucomelas          10.00638  .        .        .        .       .       
## Puffinus_assimilis              10.00638  .        .        .        .       .       
## Pseudobulweria_aterrima         10.00638  .        .        .        .       .       
## Procellaria_cinerea             10.00638  .        .        .        .       .       
## Pterodroma_longirostris         10.00638  .        .        .        .       .       
## Fulmarus_glacialoides           10.00638  .        .        .        .       .       
## Macronectes_giganteus           10.00638  .        .        .        .       .       
## Pagodroma_nivea                 10.00638  .        .        .        .       .       
## Thalassoica_antarctica          10.00638  .        .        .        .       .       
## Daption_capense                 10.00638  .        .        .        .       .       
## Halocyptena_microsoma           10.00638  .        .        .        .       .       
## Hydrobates_pelagicus            10.00638  .        .        .        .       .       
## Oceanodroma_furcata             10.00638  .        .        .        .       .       
## Opisthocomus_hoazin             10.00638  .        .        .        .       .       
## Phaethon_rubricauda             10.00638  .        .        .        .       .       
## Musophaga_rossae                10.00638  .        .        .        .       .       
## Tauraco_erythrolophus           10.00638  .        .        .        .       .       
## Ruwenzorornis_johnstoni         10.00638  .        .        .        .       .       
## Corythaeola_cristata            10.00638  .        .        .        .       .       
## Corythaixoides_leucogaster      10.00638  .        .        .        .       .       
## Crinifer_piscator               10.00638  .        .        .        .       .       
## Houbaropsis_bengalensis         10.00638  .        .        .        .       .       
## Sypheotides_indicus             10.00638  .        .        .        .       .       
## Eupodotis_savilei               10.00638  .        .        .        .       .       
## Tetrax_tetrax                   10.00638  .        .        .        .       .       
## Chlamydotis_undulata            10.00638  .        .        .        .       .       
## Otis_tarda                      10.00638  .        .        .        .       .       
## Ardeotis_kori                   10.00638  .        .        .        .       .       
## Neotis_denhami                  10.00638  .        .        .        .       .       
## Ibidorhyncha_struthersii        10.00638  .        .        .        .       .       
## Haematopus_longirostris         10.00638  .        .        .        .       .       
## Recurvirostra_avosetta          10.00638  .        .        .        .       .       
## Himantopus_himantopus           10.00638  .        .        .        .       .       
## Cladorhynchus_leucocephalus     10.00638  .        .        .        .       .       
## Pluvialis_squatarola            10.00638  .        .        .        .       .       
## Phegornis_mitchellii            10.00638  .        .        .        .       .       
## Charadrius_vociferus            10.00638  .        .        .        .       .       
## Thinornis_rubricollis           10.00638  .        .        .        .       .       
## Elseyornis_melanops             10.00638  .        .        .        .       .       
## Eudromias_morinellus            10.00638  .        .        .        .       .       
## Vanellus_vanellus               10.00638  .        .        .        .       .       
## Erythrogonys_cinctus            10.00638  .        .        .        .       .       
## Anarhynchus_frontalis           10.00638  .        .        .        .       .       
## Oreopholus_ruficollis           10.00638  .        .        .        .       .       
## Pluvianus_aegyptius             10.00638  .        .        .        .       .       
## Esacus_recurvirostris           10.00638  .        .        .        .       .       
## Burhinus_superciliaris          10.00638  .        .        .        .       .       
## Chionis_albus                   10.00638  .        .        .        .       .       
## Pluvianellus_socialis           10.00638  .        .        .        .       .       
## Thinocorus_rumicivorus          10.00638  .        .        .        .       .       
## Attagis_gayi                    10.00638  .        .        .        .       .       
## Pedionomus_torquatus            10.00638  .        .        .        .       .       
## Rostratula_benghalensis         10.00638  .        .        .        .       .       
## Jacana_spinosa                  10.00638  .        .        .        .       .       
## Hydrophasianus_chirurgus        10.00638  .        .        .        .       .       
## Actophilornis_albinucha         10.00638  .        .        .        .       .       
## Metopidius_indicus              10.00638  .        .        .        .       .       
## Microparra_capensis             10.00638  .        .        .        .       .       
## Irediparra_gallinacea           10.00638  .        .        .        .       .       
## Bartramia_longicauda            10.00638  .        .        .        .       .       
## Numenius_arquata                10.00638  .        .        .        .       .       
## Lymnocryptes_minimus            10.00638  .        .        .        .       .       
## Limosa_lapponica                10.00638  .        .        .        .       .       
## Phalaropus_fulicarius           10.00638  .        .        .        .       .       
## Steganopus_tricolor             10.00638  .        .        .        .       .       
## Xenus_cinereus                  10.00638  .        .        .        .       .       
## Prosobonia_cancellata           10.00638  .        .        .        .       .       
## Catoptrophorus_semipalmatus     10.00638  .        .        .        .       .       
## Heteroscelus_brevipes           10.00638  .        .        .        .       .       
## Tringa_ochropus                 10.00638  .        .        .        .       .       
## Actitis_macularius              10.00638  .        .        .        .       .       
## Coenocorypha_pusilla            10.00638  .        .        .        .       .       
## Gallinago_gallinago             10.00638  .        .        .        .       .       
## Scolopax_rusticola              10.00638  .        .        .        .       .       
## Limnodromus_semipalmatus        10.00638  .        .        .        .       .       
## Aphriza_virgata                 10.00638  .        .        .        .       .       
## Calidris_tenuirostris           10.00638  .        .        .        .       .       
## Limicola_falcinellus            10.00638  .        .        .        .       .       
## Philomachus_pugnax              10.00638  .        .        .        .       .       
## Tryngites_subruficollis         10.00638  .        .        .        .       .       
## Eurynorhynchus_pygmeus          10.00638  .        .        .        .       .       
## Arenaria_interpres              10.00638  .        .        .        .       .       
## Turnix_sylvaticus               10.00638  .        .        .        .       .       
## Ortyxelos_meiffrenii            10.00638  .        .        .        .       .       
## Stercorarius_longicaudus        10.00638  .        .        .        .       .       
## Catharacta_lonnbergi            10.00638  .        .        .        .       .       
## Synthliboramphus_antiquus       10.00638  .        .        .        .       .       
## Uria_aalge                      10.00638  .        .        .        .       .       
## Alca_torda                      10.00638  .        .        .        .       .       
## Alle_alle                       10.00638  .        .        .        .       .       
## Brachyramphus_marmoratus        10.00638  .        .        .        .       .       
## Cepphus_grylle                  10.00638  .        .        .        .       .       
## Ptychoramphus_aleuticus         10.00638  .        .        .        .       .       
## Aethia_psittacula               10.00638  .        .        .        .       .       
## Cerorhinca_monocerata           10.00638  .        .        .        .       .       
## Fratercula_corniculata          10.00638  .        .        .        .       .       
## Rynchops_niger                  10.00638  .        .        .        .       .       
## Pagophila_eburnea               10.00638  .        .        .        .       .       
## Xema_sabini                     10.00638  .        .        .        .       .       
## Rissa_tridactyla                10.00638  .        .        .        .       .       
## Larus_saundersi                 10.00638  .        .        .        .       .       
## Leucophaeus_scoresbii           10.00638  .        .        .        .       .       
## Rhodostethia_rosea              10.00638  .        .        .        .       .       
## Creagrus_furcatus               10.00638  .        .        .        .       .       
## Anous_stolidus                  10.00638  .        .        .        .       .       
## Sterna_nilotica                 10.00638  .        .        .        .       .       
## Chlidonias_hybrida              10.00638  .        .        .        .       .       
## Larosterna_inca                 10.00638  .        .        .        .       .       
## Phaetusa_simplex                10.00638  .        .        .        .       .       
## Gygis_alba                      10.00638  .        .        .        .       .       
## Procelsterna_cerulea            10.00638  .        .        .        .       .       
## Dromas_ardeola                  10.00638  .        .        .        .       .       
## Rhinoptilus_africanus           10.00638  .        .        .        .       .       
## Cursorius_cursor                10.00638  .        .        .        .       .       
## Glareola_pratincola             10.00638  .        .        .        .       .       
## Stiltia_isabella                10.00638  .        .        .        .       .       
## Anurolimnas_castaneiceps        10.00638  .        .        .        .       .       
## Podica_senegalensis             10.00638  .        .        .        .       .       
## Heliopais_personatus            10.00638  .        .        .        .       .       
## Heliornis_fulica                10.00638  .        .        .        .       .       
## Sarothrura_pulchra              10.00638  .        .        .        .       .       
## Porphyrio_porphyrio             10.00638  .        .        .        .       .       
## Gymnocrex_rosenbergii           10.00638  .        .        .        .       .       
## Laterallus_melanophaius         10.00638  .        .        .        .       .       
## Dryolimnas_cuvieri              10.00638  .        .        .        .       .       
## Gallicrex_cinerea               10.00638  .        .        .        .       .       
## Coturnicops_exquisitus          10.00638  .        .        .        .       .       
## Rallina_fasciata                10.00638  .        .        .        .       .       
## Pardirallus_maculatus           10.00638  .        .        .        .       .       
## Habroptila_wallacii             10.00638  .        .        .        .       .       
## Aramides_cajanea                10.00638  .        .        .        .       .       
## Rougetius_rougetii              10.00638  .        .        .        .       .       
## Canirallus_oculeus              10.00638  .        .        .        .       .       
## Megacrex_inepta                 10.00638  .        .        .        .       .       
## Gallirallus_torquatus           10.00638  .        .        .        .       .       
## Crex_crex                       10.00638  .        .        .        .       .       
## Rallus_longirostris             10.00638  .        .        .        .       .       
## Eulabeornis_castaneoventris     10.00638  .        .        .        .       .       
## Neocrex_colombiana              10.00638  .        .        .        .       .       
## Amaurornis_olivacea             10.00638  .        .        .        .       .       
## Himantornis_haematopus          10.00638  .        .        .        .       .       
## Lewinia_pectoralis              10.00638  .        .        .        .       .       
## Micropygia_schomburgkii         10.00638  .        .        .        .       .       
## Gallinula_nesiotis              10.00638  .        .        .        .       .       
## Fulica_armillata                10.00638  .        .        .        .       .       
## Crecopsis_egregia               10.00638  .        .        .        .       .       
## Aenigmatolimnas_marginalis      10.00638  .        .        .        .       .       
## Porzana_parva                   10.00638  .        .        .        .       .       
## Amaurolimnas_concolor           10.00638  .        .        .        .       .       
## Atlantisia_rogersi              10.00638  .        .        .        .       .       
## Psophia_viridis                 10.00638  .        .        .        .       .       
## Aramus_guarauna                 10.00638  .        .        .        .       .       
## Grus_rubicunda                  10.00638  .        .        .        .       .       
## Balearica_regulorum             10.00638  .        .        .        .       .       
## Monias_benschi                  10.00638  .        .        .        .       .       
## Mesitornis_unicolor             10.00638  .        .        .        .       .       
## Phoenicopterus_ruber            10.00638  .        .        .        .       .       
## Phoenicoparrus_andinus          10.00638  .        .        .        .       .       
## Phoeniconaias_minor             10.00638  .        .        .        .       .       
## Poliocephalus_poliocephalus     10.00638  .        .        .        .       .       
## Podilymbus_podiceps             10.00638  .        .        .        .       .       
## Tachybaptus_ruficollis          10.00638  .        .        .        .       .       
## Aechmophorus_occidentalis       10.00638  .        .        .        .       .       
## Podiceps_cristatus              10.00638  .        .        .        .       .       
## Rollandia_rolland               10.00638  .        .        .        .       .       
## Centropus_milo                  10.00638  .        .        .        .       .       
## Carpococcyx_radiatus            10.00638  .        .        .        .       .       
## Coua_serriana                   10.00638  .        .        .        .       .       
## Phaenicophaeus_cumingi          10.00638  .        .        .        .       .       
## Clamator_jacobinus              10.00638  .        .        .        .       .       
## Coccyzus_merlini                10.00638  .        .        .        .       .       
## Piaya_cayana                    10.00638  .        .        .        .       .       
## Coccycua_pumila                 10.00638  .        .        .        .       .       
## Ceuthmochares_aereus            10.00638  .        .        .        .       .       
## Pachycoccyx_audeberti           10.00638  .        .        .        .       .       
## Scythrops_novaehollandiae       10.00638  .        .        .        .       .       
## Cuculus_canorus                 10.00638  .        .        .        .       .       
## Caliechthrus_leucolophus        10.00638  .        .        .        .       .       
## Surniculus_lugubris             10.00638  .        .        .        .       .       
## Cercococcyx_mechowi             10.00638  .        .        .        .       .       
## Cacomantis_sonneratii           10.00638  .        .        .        .       .       
## Chrysococcyx_minutillus         10.00638  .        .        .        .       .       
## Rhamphomantis_megarhynchus      10.00638  .        .        .        .       .       
## Microdynamis_parva              10.00638  .        .        .        .       .       
## Eudynamys_scolopaceus           10.00638  .        .        .        .       .       
## Guira_guira                     10.00638  .        .        .        .       .       
## Crotophaga_major                10.00638  .        .        .        .       .       
## Geococcyx_californianus         10.00638  .        .        .        .       .       
## Neomorphus_geoffroyi            10.00638  .        .        .        .       .       
## Morococcyx_erythropygus         10.00638  .        .        .        .       .       
## Dromococcyx_phasianellus        10.00638  .        .        .        .       .       
## Tapera_naevia                   10.00638  .        .        .        .       .       
## Eurypyga_helias                 10.00638  .        .        .        .       .       
## Rhynochetos_jubatus             10.00638  .        .        .        .       .       
## Chunga_burmeisteri              10.00638  .        .        .        .       .       
## Cariama_cristata                10.00638  .        .        .        .       .       
## Spiziapteryx_circumcincta       10.00638  .        .        .        .       .       
## Caracara_cheriway               10.00638  .        .        .        .       .       
## Ibycter_americanus              10.00638  .        .        .        .       .       
## Milvago_chimachima              10.00638  .        .        .        .       .       
## Daptrius_ater                   10.00638  .        .        .        .       .       
## Phalcoboenus_carunculatus       10.00638  .        .        .        .       .       
## Falco_cherrug                   10.00638  .        .        .        .       .       
## Polihierax_semitorquatus        10.00638  .        .        .        .       .       
## Microhierax_caerulescens        10.00638  .        .        .        .       .       
## Herpetotheres_cachinnans        10.00638  .        .        .        .       .       
## Micrastur_ruficollis            10.00638  .        .        .        .       .       
## Xenicus_gilviventris            10.00638  .        .        .        .       .       
## Acanthisitta_chloris            10.00638  .        .        .        .       .       
## Sapayoa_aenigma                 10.00638  .        .        .        .       .       
## Neodrepanis_coruscans           10.00638  .        .        .        .       .       
## Philepitta_schlegeli            10.00638  .        .        .        .       .       
## Eurylaimus_steerii              10.00638  .        .        .        .       .       
## Cymbirhynchus_macrorhynchos     10.00638  .        .        .        .       .       
## Serilophus_lunatus              10.00638  .        .        .        .       .       
## Corydon_sumatranus              10.00638  .        .        .        .       .       
## Psarisomus_dalhousiae           10.00638  .        .        .        .       .       
## Pseudocalyptomena_graueri       10.00638  .        .        .        .       .       
## Calyptomena_viridis             10.00638  .        .        .        .       .       
## Smithornis_capensis             10.00638  .        .        .        .       .       
## Pitta_steerii                   10.00638  .        .        .        .       .       
## Terenotriccus_erythrurus        10.00638  .        .        .        .       .       
## Onychorhynchus_coronatus        10.00638  .        .        .        .       .       
## Oxyruncus_cristatus             10.00638  .        .        .        .       .       
## Cnipodectes_subbrunneus         10.00638  .        .        .        .       .       
## Todirostrum_maculatum           10.00638  .        .        .        .       .       
## Poecilotriccus_ruficeps         10.00638  .        .        .        .       .       
## Oncostoma_cinereigulare         10.00638  .        .        .        .       .       
## Lophotriccus_pileatus           10.00638  .        .        .        .       .       
## Hemitriccus_minor               10.00638  .        .        .        .       .       
## Atalotriccus_pilaris            10.00638  .        .        .        .       .       
## Myiornis_auricularis            10.00638  .        .        .        .       .       
## Rhynchocyclus_brevirostris      10.00638  .        .        .        .       .       
## Tolmomyias_sulphurescens        10.00638  .        .        .        .       .       
## Corythopis_torquatus            10.00638  .        .        .        .       .       
## Pseudotriccus_pelzelni          10.00638  .        .        .        .       .       
## Phylloscartes_eximius           10.00638  .        .        .        .       .       
## Leptopogon_amaurocephalus       10.00638  .        .        .        .       .       
## Mionectes_olivaceus             10.00638  .        .        .        .       .       
## Tachuris_rubrigastra            10.00638  .        .        .        .       .       
## Neopipo_cinnamomea              10.00638  .        .        .        .       .       
## Platyrinchus_leucoryphus        10.00638  .        .        .        .       .       
## Culicivora_caudacuta            10.00638  .        .        .        .       .       
## Anairetes_agilis                10.00638  .        .        .        .       .       
## Pseudocolopteryx_flaviventris   10.00638  .        .        .        .       .       
## Serpophaga_cinerea              10.00638  .        .        .        .       .       
## Polystictus_pectoralis          10.00638  .        .        .        .       .       
## Pseudelaenia_leucospodia        10.00638  .        .        .        .       .       
## Stigmatura_napensis             10.00638  .        .        .        .       .       
## Mecocerculus_leucophrys         10.00638  .        .        .        .       .       
## Phaeomyias_murina               10.00638  .        .        .        .       .       
## Capsiempis_flaveola             10.00638  .        .        .        .       .       
## Suiriri_suiriri                 10.00638  .        .        .        .       .       
## Tyrannulus_elatus               10.00638  .        .        .        .       .       
## Myiopagis_gaimardii             10.00638  .        .        .        .       .       
## Elaenia_martinica               10.00638  .        .        .        .       .       
## Zimmerius_vilissimus            10.00638  .        .        .        .       .       
## Nesotriccus_ridgwayi            10.00638  .        .        .        .       .       
## Ornithion_inerme                10.00638  .        .        .        .       .       
## Camptostoma_imberbe             10.00638  .        .        .        .       .       
## Phyllomyias_burmeisteri         10.00638  .        .        .        .       .       
## Inezia_inornata                 10.00638  .        .        .        .       .       
## Euscarthmus_meloryphus          10.00638  .        .        .        .       .       
## Muscigralla_brevicauda          10.00638  .        .        .        .       .       
## Conopias_parvus                 10.00638  .        .        .        .       .       
## Colorhamphus_parvirostris       10.00638  .        .        .        .       .       
## Colonia_colonus                 10.00638  .        .        .        .       .       
## Mitrephanes_phaeocercus         10.00638  .        .        .        .       .       
## Empidonax_affinis               10.00638  .        .        .        .       .       
## Contopus_cooperi                10.00638  .        .        .        .       .       
## Sayornis_phoebe                 10.00638  .        .        .        .       .       
## Lathrotriccus_euleri            10.00638  .        .        .        .       .       
## Ochthornis_littoralis           10.00638  .        .        .        .       .       
## Cnemotriccus_fuscatus           10.00638  .        .        .        .       .       
## Aphanotriccus_capitalis         10.00638  .        .        .        .       .       
## Muscisaxicola_maculirostris     10.00638  .        .        .        .       .       
## Satrapa_icterophrys             10.00638  .        .        .        .       .       
## Muscipipra_vetula               10.00638  .        .        .        .       .       
## Knipolegus_striaticeps          10.00638  .        .        .        .       .       
## Hymenops_perspicillatus         10.00638  .        .        .        .       .       
## Lessonia_oreas                  10.00638  .        .        .        .       .       
## Myiotheretes_striaticollis      10.00638  .        .        .        .       .       
## Agriornis_montanus              10.00638  .        .        .        .       .       
## Neoxolmis_rufiventris           10.00638  .        .        .        .       .       
## Xolmis_pyrope                   10.00638  .        .        .        .       .       
## Cnemarchus_erythropygius        10.00638  .        .        .        .       .       
## Polioxolmis_rufipennis          10.00638  .        .        .        .       .       
## Arundinicola_leucocephala       10.00638  .        .        .        .       .       
## Alectrurus_tricolor             10.00638  .        .        .        .       .       
## Gubernetes_yetapa               10.00638  .        .        .        .       .       
## Pyrocephalus_rubinus            10.00638  .        .        .        .       .       
## Fluvicola_pica                  10.00638  .        .        .        .       .       
## Sublegatus_modestus             10.00638  .        .        .        .       .       
## Tumbezia_salvini                10.00638  .        .        .        .       .       
## Ochthoeca_frontalis             10.00638  .        .        .        .       .       
## Myiophobus_flavicans            10.00638  .        .        .        .       .       
## Legatus_leucophaius             10.00638  .        .        .        .       .       
## Pitangus_lictor                 10.00638  .        .        .        .       .       
## Machetornis_rixosa              10.00638  .        .        .        .       .       
## Myiozetetes_cayanensis          10.00638  .        .        .        .       .       
## Empidonomus_varius              10.00638  .        .        .        .       .       
## Tyrannus_melancholicus          10.00638  .        .        .        .       .       
## Megarynchus_pitangua            10.00638  .        .        .        .       .       
## Tyrannopsis_sulphurea           10.00638  .        .        .        .       .       
## Myiodynastes_hemichrysus        10.00638  .        .        .        .       .       
## Sirystes_sibilator              10.00638  .        .        .        .       .       
## Myiarchus_semirufus             10.00638  .        .        .        .       .       
## Rhytipterna_simplex             10.00638  .        .        .        .       .       
## Casiornis_rufus                 10.00638  .        .        .        .       .       
## Phelpsia_inornatus              10.00638  .        .        .        .       .       
## Attila_spadiceus                10.00638  .        .        .        .       .       
## Ramphotrigon_ruficauda          10.00638  .        .        .        .       .       
## Deltarhynchus_flammulatus       10.00638  .        .        .        .       .       
## Pyrrhomyias_cinnamomeus         10.00638  .        .        .        .       .       
## Hirundinea_ferruginea           10.00638  .        .        .        .       .       
## Myiotriccus_ornatus             10.00638  .        .        .        .       .       
## Piprites_pileata                10.00638  .        .        .        .       .       
## Iodopleura_fusca                10.00638  .        .        .        .       .       
## Tityra_semifasciata             10.00638  .        .        .        .       .       
## Pachyramphus_viridis            10.00638  .        .        .        .       .       
## Schiffornis_major               10.00638  .        .        .        .       .       
## Laniisoma_elegans               10.00638  .        .        .        .       .       
## Laniocera_rufescens             10.00638  .        .        .        .       .       
## Corapipo_gutturalis             10.00638  .        .        .        .       .       
## Masius_chrysopterus             10.00638  .        .        .        .       .       
## Ilicura_militaris               10.00638  .        .        .        .       .       
## Antilophia_galeata              10.00638  .        .        .        .       .       
## Chiroxiphia_linearis            10.00638  .        .        .        .       .       
## Xenopipo_atronitens             10.00638  .        .        .        .       .       
## Lepidothrix_coronata            10.00638  .        .        .        .       .       
## Machaeropterus_pyrocephalus     10.00638  .        .        .        .       .       
## Pipra_chloromeros               10.00638  .        .        .        .       .       
## Manacus_vitellinus              10.00638  .        .        .        .       .       
## Heterocercus_flavivertex        10.00638  .        .        .        .       .       
## Tyranneutes_stolzmanni          10.00638  .        .        .        .       .       
## Neopelma_chrysocephalum         10.00638  .        .        .        .       .       
## Doliornis_sclateri              10.00638  .        .        .        .       .       
## Ampelion_rubrocristatus         10.00638  .        .        .        .       .       
## Phytotoma_raimondii             10.00638  .        .        .        .       .       
## Carpornis_cucullata             10.00638  .        .        .        .       .       
## Snowornis_subalaris             10.00638  .        .        .        .       .       
## Querula_purpurata               10.00638  .        .        .        .       .       
## Pyroderus_scutatus              10.00638  .        .        .        .       .       
## Cephalopterus_penduliger        10.00638  .        .        .        .       .       
## Perissocephalus_tricolor        10.00638  .        .        .        .       .       
## Haematoderus_militaris          10.00638  .        .        .        .       .       
## Procnias_tricarunculatus        10.00638  .        .        .        .       .       
## Carpodectes_nitidus             10.00638  .        .        .        .       .       
## Xipholena_punicea               10.00638  .        .        .        .       .       
## Gymnoderus_foetidus             10.00638  .        .        .        .       .       
## Porphyrolaema_porphyrolaema     10.00638  .        .        .        .       .       
## Phibalura_flavirostris          10.00638  .        .        .        .       .       
## Lipaugus_fuscocinereus          10.00638  .        .        .        .       .       
## Tijuca_atra                     10.00638  .        .        .        .       .       
## Cotinga_amabilis                10.00638  .        .        .        .       .       
## Calyptura_cristata              10.00638  .        .        .        .       .       
## Rupicola_rupicola               10.00638  .        .        .        .       .       
## Phoenicircus_nigricollis        10.00638  .        .        .        .       .       
## Ampelioides_tschudii            10.00638  .        .        .        .       .       
## Pipreola_whitelyi               10.00638  .        .        .        .       .       
## Thamnistes_anabatinus           10.00638  .        .        .        .       .       
## Pygiptila_stellaris             10.00638  .        .        .        .       .       
## Myrmornis_torquata              10.00638  .        .        .        .       .       
## Neoctantes_niger                10.00638  .        .        .        .       .       
## Epinecrophylla_fulviventris     10.00638  .        .        .        .       .       
## Myrmorchilus_strigilatus        10.00638  .        .        .        .       .       
## Microrhopias_quixensis          10.00638  .        .        .        .       .       
## Clytoctantes_alixii             10.00638  .        .        .        .       .       
## Formicivora_grisea              10.00638  .        .        .        .       .       
## Myrmotherula_brachyura          10.00638  .        .        .        .       .       
## Cercomacra_cinerascens          10.00638  .        .        .        .       .       
## Hypocnemis_cantator             10.00638  .        .        .        .       .       
## Drymophila_ferruginea           10.00638  .        .        .        .       .       
## Willisornis_poecilinotus        10.00638  .        .        .        .       .       
## Rhegmatorhina_gymnops           10.00638  .        .        .        .       .       
## Gymnopithys_rufigula            10.00638  .        .        .        .       .       
## Phlegopsis_nigromaculata        10.00638  .        .        .        .       .       
## Phaenostictus_mcleannani        10.00638  .        .        .        .       .       
## Pithys_albifrons                10.00638  .        .        .        .       .       
## Rhopornis_ardesiacus            10.00638  .        .        .        .       .       
## Myrmoborus_leucophrys           10.00638  .        .        .        .       .       
## Percnostola_rufifrons           10.00638  .        .        .        .       .       
## Pyriglena_atra                  10.00638  .        .        .        .       .       
## Gymnocichla_nudiceps            10.00638  .        .        .        .       .       
## Myrmeciza_ruficauda             10.00638  .        .        .        .       .       
## Hylophylax_naevioides           10.00638  .        .        .        .       .       
## Hypocnemoides_maculicauda       10.00638  .        .        .        .       .       
## Schistocichla_leucostigma       10.00638  .        .        .        .       .       
## Sclateria_naevia                10.00638  .        .        .        .       .       
## Thamnomanes_saturninus          10.00638  .        .        .        .       .       
## Megastictus_margaritatus        10.00638  .        .        .        .       .       
## Biatas_nigropectus              10.00638  .        .        .        .       .       
## Herpsilochmus_rufimarginatus    10.00638  .        .        .        .       .       
## Dysithamnus_stictothorax        10.00638  .        .        .        .       .       
## Sakesphorus_canadensis          10.00638  .        .        .        .       .       
## Thamnophilus_doliatus           10.00638  .        .        .        .       .       
## Mackenziaena_severa             10.00638  .        .        .        .       .       
## Frederickena_viridis            10.00638  .        .        .        .       .       
## Hypoedaleus_guttatus            10.00638  .        .        .        .       .       
## Batara_cinerea                  10.00638  .        .        .        .       .       
## Taraba_major                    10.00638  .        .        .        .       .       
## Cymbilaimus_lineatus            10.00638  .        .        .        .       .       
## Dichrozona_cincta               10.00638  .        .        .        .       .       
## Terenura_maculata               10.00638  .        .        .        .       .       
## Pittasoma_michleri              10.00638  .        .        .        .       .       
## Conopophaga_melanops            10.00638  .        .        .        .       .       
## Melanopareia_torquata           10.00638  .        .        .        .       .       
## Dendrocincla_tyrannina          10.00638  .        .        .        .       .       
## Deconychura_longicauda          10.00638  .        .        .        .       .       
## Sittasomus_griseicapillus       10.00638  .        .        .        .       .       
## Dendroplex_picus                10.00638  .        .        .        .       .       
## Xiphorhynchus_obsoletus         10.00638  .        .        .        .       .       
## Drymornis_bridgesii             10.00638  .        .        .        .       .       
## Campylorhamphus_pucherani       10.00638  .        .        .        .       .       
## Lepidocolaptes_souleyetii       10.00638  .        .        .        .       .       
## Hylexetastes_perrotii           10.00638  .        .        .        .       .       
## Xiphocolaptes_promeropirhynchus 10.00638  .        .        .        .       .       
## Dendrocolaptes_picumnus         10.00638  .        .        .        .       .       
## Nasica_longirostris             10.00638  .        .        .        .       .       
## Dendrexetastes_rufigula         10.00638  .        .        .        .       .       
## Glyphorynchus_spirurus          10.00638  .        .        .        .       .       
## Xenops_rutilans                 10.00638  .        .        .        .       .       
## Margarornis_rubiginosus         10.00638  .        .        .        .       .       
## Premnoplex_brunnescens          10.00638  .        .        .        .       .       
## Anabazenops_fuscus              10.00638  .        .        .        .       .       
## Syndactyla_guttulata            10.00638  .        .        .        .       .       
## Anabacerthia_variegaticeps      10.00638  .        .        .        .       .       
## Cichlocolaptes_leucophrus       10.00638  .        .        .        .       .       
## Heliobletus_contaminatus        10.00638  .        .        .        .       .       
## Philydor_ruficaudatum           10.00638  .        .        .        .       .       
## Ancistrops_strigilatus          10.00638  .        .        .        .       .       
## Hylocryptus_rectirostris        10.00638  .        .        .        .       .       
## Automolus_infuscatus            10.00638  .        .        .        .       .       
## Hyloctistes_subulatus           10.00638  .        .        .        .       .       
## Thripadectes_melanorhynchus     10.00638  .        .        .        .       .       
## Berlepschia_rikeri              10.00638  .        .        .        .       .       
## Premnornis_guttuligera          10.00638  .        .        .        .       .       
## Tarphonomus_certhioides         10.00638  .        .        .        .       .       
## Pseudocolaptes_lawrencii        10.00638  .        .        .        .       .       
## Cinclodes_fuscus                10.00638  .        .        .        .       .       
## Upucerthia_serrana              10.00638  .        .        .        .       .       
## Furnarius_rufus                 10.00638  .        .        .        .       .       
## Phleocryptes_melanops           10.00638  .        .        .        .       .       
## Limnornis_curvirostris          10.00638  .        .        .        .       .       
## Lochmias_nematura               10.00638  .        .        .        .       .       
## Leptasthenura_platensis         10.00638  .        .        .        .       .       
## Sylviorthorhynchus_desmursii    10.00638  .        .        .        .       .       
## Schizoeaca_coryi                10.00638  .        .        .        .       .       
## Pseudoseisura_cristata          10.00638  .        .        .        .       .       
## Cranioleuca_vulpecula           10.00638  .        .        .        .       .       
## Limnoctites_rectirostris        10.00638  .        .        .        .       .       
## Siptornis_striaticollis         10.00638  .        .        .        .       .       
## Thripophaga_macroura            10.00638  .        .        .        .       .       
## Roraimia_adusta                 10.00638  .        .        .        .       .       
## Metopothrix_aurantiaca          10.00638  .        .        .        .       .       
## Synallaxis_brachyura            10.00638  .        .        .        .       .       
## Asthenes_steinbachi             10.00638  .        .        .        .       .       
## Siptornopsis_hypochondriaca     10.00638  .        .        .        .       .       
## Schoeniophylax_phryganophilus   10.00638  .        .        .        .       .       
## Certhiaxis_cinnamomeus          10.00638  .        .        .        .       .       
## Spartonoica_maluroides          10.00638  .        .        .        .       .       
## Anumbius_annumbi                10.00638  .        .        .        .       .       
## Coryphistera_alaudina           10.00638  .        .        .        .       .       
## Hellmayrea_gularis              10.00638  .        .        .        .       .       
## Phacellodomus_rufifrons         10.00638  .        .        .        .       .       
## Aphrastura_spinicauda           10.00638  .        .        .        .       .       
## Pygarrhichas_albogularis        10.00638  .        .        .        .       .       
## Ochetorhynchus_andaecola        10.00638  .        .        .        .       .       
## Sclerurus_rufigularis           10.00638  .        .        .        .       .       
## Geositta_tenuirostris           10.00638  .        .        .        .       .       
## Chamaeza_campanisona            10.00638  .        .        .        .       .       
## Formicarius_colma               10.00638  .        .        .        .       .       
## Eugralla_paradoxa               10.00638  .        .        .        .       .       
## Scytalopus_meridanus            10.00638  .        .        .        .       .       
## Myornis_senilis                 10.00638  .        .        .        .       .       
## Eleoscytalopus_indigoticus      10.00638  .        .        .        .       .       
## Merulaxis_ater                  10.00638  .        .        .        .       .       
## Scelorchilus_rubecula           10.00638  .        .        .        .       .       
## Pteroptochos_tarnii             10.00638  .        .        .        .       .       
## Teledromas_fuscus               10.00638  .        .        .        .       .       
## Rhinocrypta_lanceolata          10.00638  .        .        .        .       .       
## Acropternis_orthonyx            10.00638  .        .        .        .       .       
## Psilorhamphus_guttatus          10.00638  .        .        .        .       .       
## Liosceles_thoracicus            10.00638  .        .        .        .       .       
## Grallaria_ruficapilla           10.00638  .        .        .        .       .       
## Myrmothera_campanisona          10.00638  .        .        .        .       .       
## Hylopezus_perspicillatus        10.00638  .        .        .        .       .       
## Grallaricula_flavirostris       10.00638  .        .        .        .       .       
## Menura_novaehollandiae          10.00638  .        .        .        .       .       
## Atrichornis_rufescens           10.00638  .        .        .        .       .       
## Scenopoeetes_dentirostris       10.00638  .        .        .        .       .       
## Prionodura_newtoniana           10.00638  .        .        .        .       .       
## Archboldia_papuensis            10.00638  .        .        .        .       .       
## Amblyornis_macgregoriae         10.00638  .        .        .        .       .       
## Ailuroedus_crassirostris        10.00638  .        .        .        .       .       
## Sericulus_chrysocephalus        10.00638  .        .        .        .       .       
## Chlamydera_cerviniventris       10.00638  .        .        .        .       .       
## Ptilonorhynchus_violaceus       10.00638  .        .        .        .       .       
## Cormobates_leucophaea           10.00638  .        .        .        .       .       
## Climacteris_affinis             10.00638  .        .        .        .       .       
## Amytornis_barbatus              10.00638  .        .        .        .       .       
## Stipiturus_malachurus           10.00638  .        .        .        .       .       
## Sipodotus_wallacii              10.00638  .        .        .        .       .       
## Malurus_cyaneus                 10.00638  .        .        .        .       .       
## Dasyornis_longirostris          10.00638  .        .        .        .       .       
## Melitograis_gilolensis          10.00638  .        .        .        .       .       
## Glycichaera_fallax              10.00638  .        .        .        .       .       
## Ptiloprora_guisei               10.00638  .        .        .        .       .       
## Anthornis_melanura              10.00638  .        .        .        .       .       
## Apalopteron_familiare           10.00638  .        .        .        .       .       
## Lichenostomus_subfrenatus       10.00638  .        .        .        .       .       
## Acanthorhynchus_superciliosus   10.00638  .        .        .        .       .       
## Certhionyx_variegatus           10.00638  .        .        .        .       .       
## Prosthemadera_novaeseelandiae   10.00638  .        .        .        .       .       
## Pycnopygius_ixoides             10.00638  .        .        .        .       .       
## Xanthomyza_phrygia              10.00638  .        .        .        .       .       
## Anthochaera_chrysoptera         10.00638  .        .        .        .       .       
## Acanthagenys_rufogularis        10.00638  .        .        .        .       .       
## Stresemannia_bougainvillei      10.00638  .        .        .        .       .       
## Manorina_melanocephala          10.00638  .        .        .        .       .       
## Melidectes_torquatus            10.00638  .        .        .        .       .       
## Guadalcanaria_inexpectata       10.00638  .        .        .        .       .       
## Timeliopsis_fulvigula           10.00638  .        .        .        .       .       
## Melilestes_megarhynchus         10.00638  .        .        .        .       .       
## Melipotes_gymnops               10.00638  .        .        .        .       .       
## Macgregoria_pulchra             10.00638  .        .        .        .       .       
## Ashbyia_lovensis                10.00638  .        .        .        .       .       
## Epthianura_tricolor             10.00638  .        .        .        .       .       
## Conopophila_albogularis         10.00638  .        .        .        .       .       
## Ramsayornis_modestus            10.00638  .        .        .        .       .       
## Myzomela_eichhorni              10.00638  .        .        .        .       .       
## Gymnomyza_aubryana              10.00638  .        .        .        .       .       
## Foulehaio_carunculatus          10.00638  .        .        .        .       .       
## Entomyzon_cyanotis              10.00638  .        .        .        .       .       
## Melithreptus_lunatus            10.00638  .        .        .        .       .       
## Myza_sarasinorum                10.00638  .        .        .        .       .       
## Phylidonyris_pyrrhopterus       10.00638  .        .        .        .       .       
## Trichodere_cockerelli           10.00638  .        .        .        .       .       
## Lichmera_flavicans              10.00638  .        .        .        .       .       
## Grantiella_picta                10.00638  .        .        .        .       .       
## Plectorhyncha_lanceolata        10.00638  .        .        .        .       .       
## Xanthotis_provocator            10.00638  .        .        .        .       .       
## Philemon_novaeguineae           10.00638  .        .        .        .       .       
## Pardalotus_quadragintus         10.00638  .        .        .        .       .       
## Aphelocephala_leucopsis         10.00638  .        .        .        .       .       
## Acanthornis_magna               10.00638  .        .        .        .       .       
## Acanthiza_murina                10.00638  .        .        .        .       .       
## Smicrornis_brevirostris         10.00638  .        .        .        .       .       
## Origma_solitaria                10.00638  .        .        .        .       .       
## Crateroscelis_murina            10.00638  .        .        .        .       .       
## Sericornis_citreogularis        10.00638  .        .        .        .       .       
## Pycnoptilus_floccosus           10.00638  .        .        .        .       .       
## Chthonicola_sagittatus          10.00638  .        .        .        .       .       
## Pyrrholaemus_brunneus           10.00638  .        .        .        .       .       
## Hylacola_pyrrhopygia            10.00638  .        .        .        .       .       
## Calamanthus_fuliginosus         10.00638  .        .        .        .       .       
## Gerygone_cinerea                10.00638  .        .        .        .       .       
## Oreoscopus_gutturalis           10.00638  .        .        .        .       .       
## Pomatostomus_ruficeps           10.00638  .        .        .        .       .       
## Orthonyx_temminckii             10.00638  .        .        .        .       .       
## Notiomystis_cincta              10.00638  .        .        .        .       .       
## Melanocharis_striativentris     10.00638  .        .        .        .       .       
## Oedistoma_pygmaeum              10.00638  .        .        .        .       .       
## Toxorhamphus_novaeguineae       10.00638  .        .        .        .       .       
## Loboparadisea_sericea           10.00638  .        .        .        .       .       
## Cnemophilus_macgregorii         10.00638  .        .        .        .       .       
## Callaeas_cinereus               10.00638  .        .        .        .       .       
## Philesturnus_carunculatus       10.00638  .        .        .        .       .       
## Daphoenositta_chrysoptera       10.00638  .        .        .        .       .       
## Oreocharis_arfaki               10.00638  .        .        .        .       .       
## Paramythia_montium              10.00638  .        .        .        .       .       
## Pitohui_dichrous                10.00638  .        .        .        .       .       
## Sphecotheres_hypoleucus         10.00638  .        .        .        .       .       
## Oriolus_sagittatus              10.00638  .        .        .        .       .       
## Lamprolia_victoriae             10.00638  .        .        .        .       .       
## Rhipidura_teysmanni             10.00638  .        .        .        .       .       
## Struthidea_cinerea              10.00638  .        .        .        .       .       
## Corcorax_melanorhamphos         10.00638  .        .        .        .       .       
## Hypothymis_azurea               10.00638  .        .        .        .       .       
## Terpsiphone_rufiventer          10.00638  .        .        .        .       .       
## Trochocercus_nitens             10.00638  .        .        .        .       .       
## Grallina_cyanoleuca             10.00638  .        .        .        .       .       
## Myiagra_alecto                  10.00638  .        .        .        .       .       
## Monarcha_axillaris              10.00638  .        .        .        .       .       
## Metabolus_rugensis              10.00638  .        .        .        .       .       
## Clytorhynchus_hamlini           10.00638  .        .        .        .       .       
## Mayrornis_lessoni               10.00638  .        .        .        .       .       
## Neolalage_banksiana             10.00638  .        .        .        .       .       
## Pomarea_whitneyi                10.00638  .        .        .        .       .       
## Chasiempis_sandwichensis        10.00638  .        .        .        .       .       
## Arses_kaupi                     10.00638  .        .        .        .       .       
## Melampitta_lugubris             10.00638  .        .        .        .       .       
## Lycocorax_pyrrhopterus          10.00638  .        .        .        .       .       
## Manucodia_comrii                10.00638  .        .        .        .       .       
## Parotia_carolae                 10.00638  .        .        .        .       .       
## Pteridophora_alberti            10.00638  .        .        .        .       .       
## Cicinnurus_regius               10.00638  .        .        .        .       .       
## Paradisaea_raggiana             10.00638  .        .        .        .       .       
## Paradigalla_brevicauda          10.00638  .        .        .        .       .       
## Astrapia_splendidissima         10.00638  .        .        .        .       .       
## Epimachus_bruijnii              10.00638  .        .        .        .       .       
## Seleucidis_melanoleucus         10.00638  .        .        .        .       .       
## Semioptera_wallacii             10.00638  .        .        .        .       .       
## Ptiloris_intercedens            10.00638  .        .        .        .       .       
## Lophorina_superba               10.00638  .        .        .        .       .       
## Ifrita_kowaldi                  10.00638  .        .        .        .       .       
## Eurocephalus_anguitimens        10.00638  .        .        .        .       .       
## Lanius_minor                    10.00638  .        .        .        .       .       
## Urolestes_melanoleucus          10.00638  .        .        .        .       .       
## Corvinella_corvina              10.00638  .        .        .        .       .       
## Platylophus_galericulatus       10.00638  .        .        .        .       .       
## Cyanopica_cyanus                10.00638  .        .        .        .       .       
## Perisoreus_canadensis           10.00638  .        .        .        .       .       
## Ptilostomus_afer                10.00638  .        .        .        .       .       
## Podoces_hendersoni              10.00638  .        .        .        .       .       
## Pica_hudsonia                   10.00638  .        .        .        .       .       
## Nucifraga_caryocatactes         10.00638  .        .        .        .       .       
## Corvus_corone                   10.00638  .        .        .        .       .       
## Garrulus_lidthi                 10.00638  .        .        .        .       .       
## Zavattariornis_stresemanni      10.00638  .        .        .        .       .       
## Calocitta_colliei               10.00638  .        .        .        .       .       
## Cyanocorax_yncas                10.00638  .        .        .        .       .       
## Aphelocoma_insularis            10.00638  .        .        .        .       .       
## Gymnorhinus_cyanocephalus       10.00638  .        .        .        .       .       
## Cyanocitta_cristata             10.00638  .        .        .        .       .       
## Cyanolyca_cucullata             10.00638  .        .        .        .       .       
## Urocissa_caerulea               10.00638  .        .        .        .       .       
## Cissa_hypoleuca                 10.00638  .        .        .        .       .       
## Dendrocitta_leucogastra         10.00638  .        .        .        .       .       
## Platysmurus_leucopterus         10.00638  .        .        .        .       .       
## Temnurus_temnurus               10.00638  .        .        .        .       .       
## Crypsirina_cucullata            10.00638  .        .        .        .       .       
## Pyrrhocorax_pyrrhocorax         10.00638  .        .        .        .       .       
## Dicrurus_caerulescens           10.00638  .        .        .        .       .       
## Vireolanius_leucotis            10.00638  .        .        .        .       .       
## Hylophilus_poicilotis           10.00638  .        .        .        .       .       
## Vireo_brevipennis               10.00638  .        .        .        .       .       
## Erpornis_zantholeuca            10.00638  .        .        .        .       .       
## Cyclarhis_gujanensis            10.00638  .        .        .        .       .       
## Pteruthius_rufiventer           10.00638  .        .        .        .       .       
## Pachycephala_albiventris        10.00638  .        .        .        .       .       
## Colluricincla_harmonica         10.00638  .        .        .        .       .       
## Pachycare_flavogriseum          10.00638  .        .        .        .       .       
## Aleadryas_rufinucha             10.00638  .        .        .        .       .       
## Oreoica_gutturalis              10.00638  .        .        .        .       .       
## Rhagologus_leucostigma          10.00638  .        .        .        .       .       
## Machaerirhynchus_nigripectus    10.00638  .        .        .        .       .       
## Artamus_fuscus                  10.00638  .        .        .        .       .       
## Peltops_blainvillii             10.00638  .        .        .        .       .       
## Strepera_graculina              10.00638  .        .        .        .       .       
## Gymnorhina_tibicen              10.00638  .        .        .        .       .       
## Cracticus_mentalis              10.00638  .        .        .        .       .       
## Aegithina_viridissima           10.00638  .        .        .        .       .       
## Malaconotus_alius               10.00638  .        .        .        .       .       
## Tchagra_minutus                 10.00638  .        .        .        .       .       
## Dryoscopus_angolensis           10.00638  .        .        .        .       .       
## Telophorus_zeylonus             10.00638  .        .        .        .       .       
## Rhodophoneus_cruentus           10.00638  .        .        .        .       .       
## Laniarius_poensis               10.00638  .        .        .        .       .       
## Nilaus_afer                     10.00638  .        .        .        .       .       
## Euryceros_prevostii             10.00638  .        .        .        .       .       
## Vanga_curvirostris              10.00638  .        .        .        .       .       
## Xenopirostris_xenopirostris     10.00638  .        .        .        .       .       
## Hypositta_corallirostris        10.00638  .        .        .        .       .       
## Schetba_rufa                    10.00638  .        .        .        .       .       
## Pseudobias_wardi                10.00638  .        .        .        .       .       
## Oriolia_bernieri                10.00638  .        .        .        .       .       
## Falculea_palliata               10.00638  .        .        .        .       .       
## Newtonia_brunneicauda           10.00638  .        .        .        .       .       
## Leptopterus_chabert             10.00638  .        .        .        .       .       
## Cyanolanius_madagascarinus      10.00638  .        .        .        .       .       
## Calicalicus_madagascariensis    10.00638  .        .        .        .       .       
## Tylas_eduardi                   10.00638  .        .        .        .       .       
## Artamella_viridis               10.00638  .        .        .        .       .       
## Mystacornis_crossleyi           10.00638  .        .        .        .       .       
## Philentoma_pyrhoptera           10.00638  .        .        .        .       .       
## Megabyas_flammulatus            10.00638  .        .        .        .       .       
## Bias_musicus                    10.00638  .        .        .        .       .       
## Prionops_caniceps               10.00638  .        .        .        .       .       
## Hemipus_picatus                 10.00638  .        .        .        .       .       
## Tephrodornis_pondicerianus      10.00638  .        .        .        .       .       
## Lanioturdus_torquatus           10.00638  .        .        .        .       .       
## Batis_minor                     10.00638  .        .        .        .       .       
## Platysteira_castanea            10.00638  .        .        .        .       .       
## Pityriasis_gymnocephala         10.00638  .        .        .        .       .       
## Lalage_melanoleuca              10.00638  .        .        .        .       .       
## Coracina_typica                 10.00638  .        .        .        .       .       
## Campochaera_sloetii             10.00638  .        .        .        .       .       
## Campephaga_petiti               10.00638  .        .        .        .       .       
## Pericrocotus_flammeus           10.00638  .        .        .        .       .       
## Eulacestoma_nigropectus         10.00638  .        .        .        .       .       
## Falcunculus_frontatus           10.00638  .        .        .        .       .       
## Psophodes_olivaceus             10.00638  .        .        .        .       .       
## Cinclosoma_castaneothorax       10.00638  .        .        .        .       .       
## Ptilorrhoa_leucosticta          10.00638  .        .        .        .       .       
## Mohoua_ochrocephala             10.00638  .        .        .        .       .       
## Chaetops_aurantius              10.00638  .        .        .        .       .       
## Eupetes_macrocerus              10.00638  .        .        .        .       .       
## Picathartes_oreas               10.00638  .        .        .        .       .       
## Microeca_fascinans              10.00638  .        .        .        .       .       
## Monachella_muelleriana          10.00638  .        .        .        .       .       
## Drymodes_superciliaris          10.00638  .        .        .        .       .       
## Peneothello_sigillatus          10.00638  .        .        .        .       .       
## Melanodryas_cucullata           10.00638  .        .        .        .       .       
## Tregellasia_capito              10.00638  .        .        .        .       .       
## Eopsaltria_griseogularis        10.00638  .        .        .        .       .       
## Heteromyias_albispecularis      10.00638  .        .        .        .       .       
## Poecilodryas_hypoleuca          10.00638  .        .        .        .       .       
## Pachycephalopsis_poliosoma      10.00638  .        .        .        .       .       
## Petroica_multicolor             10.00638  .        .        .        .       .       
## Amalocichla_incerta             10.00638  .        .        .        .       .       
## Auriparus_flaviceps             10.00638  .        .        .        .       .       
## Remiz_pendulinus                10.00638  .        .        .        .       .       
## Anthoscopus_punctifrons         10.00638  .        .        .        .       .       
## Sylviparus_modestus             10.00638  .        .        .        .       .       
## Pseudopodoces_humilis           10.00638  .        .        .        .       .       
## Parus_major                     10.00638  .        .        .        .       .       
## Baeolophus_bicolor              10.00638  .        .        .        .       .       
## Melanochlora_sultanea           10.00638  .        .        .        .       .       
## Cephalopyrus_flammiceps         10.00638  .        .        .        .       .       
## Elminia_longicauda              10.00638  .        .        .        .       .       
## Culicicapa_ceylonensis          10.00638  .        .        .        .       .       
## Stenostira_scita                10.00638  .        .        .        .       .       
## Chelidorhynx_hypoxantha         10.00638  .        .        .        .       .       
## Nicator_chloris                 10.00638  .        .        .        .       .       
## Panurus_biarmicus               10.00638  .        .        .        .       .       
## Pinarocorys_erythropygia        10.00638  .        .        .        .       .       
## Alaemon_alaudipes               10.00638  .        .        .        .       .       
## Heteromirafra_ruddi             10.00638  .        .        .        .       .       
## Chersomanes_albofasciata        10.00638  .        .        .        .       .       
## Eremopterix_nigriceps           10.00638  .        .        .        .       .       
## Certhilauda_curvirostris        10.00638  .        .        .        .       .       
## Ammomanes_grayi                 10.00638  .        .        .        .       .       
## Chersophilus_duponti            10.00638  .        .        .        .       .       
## Rhamphocoris_clotbey            10.00638  .        .        .        .       .       
## Eremophila_bilopha              10.00638  .        .        .        .       .       
## Calandrella_cinerea             10.00638  .        .        .        .       .       
## Melanocorypha_calandra          10.00638  .        .        .        .       .       
## Eremalauda_starki               10.00638  .        .        .        .       .       
## Spizocorys_conirostris          10.00638  .        .        .        .       .       
## Lullula_arborea                 10.00638  .        .        .        .       .       
## Galerida_magnirostris           10.00638  .        .        .        .       .       
## Alauda_arvensis                 10.00638  .        .        .        .       .       
## Mirafra_passerina               10.00638  .        .        .        .       .       
## Pseudalaemon_fremantlii         10.00638  .        .        .        .       .       
## Hyliota_australis               10.00638  .        .        .        .       .       
## Amaurocichla_bocagei            10.00638  .        .        .        .       .       
## Megalurulus_mariei              10.00638  .        .        .        .       .       
## Scotocerca_inquieta             10.00638  .        .        .        .       .       
## Nesillas_lantzii                10.00638  .        .        .        .       .       
## Hippolais_olivetorum            10.00638  .        .        .        .       .       
## Acrocephalus_concinens          10.00638  .        .        .        .       .       
## Chloropeta_natalensis           10.00638  .        .        .        .       .       
## Locustella_luscinioides         10.00638  .        .        .        .       .       
## Bradypterus_thoracicus          10.00638  .        .        .        .       .       
## Schoenicola_brevirostris        10.00638  .        .        .        .       .       
## Dromaeocercus_brunneus          10.00638  .        .        .        .       .       
## Megalurus_gramineus             10.00638  .        .        .        .       .       
## Eremiornis_carteri              10.00638  .        .        .        .       .       
## Chaetornis_striata              10.00638  .        .        .        .       .       
## Cincloramphus_cruralis          10.00638  .        .        .        .       .       
## Randia_pseudozosterops          10.00638  .        .        .        .       .       
## Crossleyia_xanthophrys          10.00638  .        .        .        .       .       
## Bowdleria_punctata              10.00638  .        .        .        .       .       
## Thamnornis_chloropetoides       10.00638  .        .        .        .       .       
## Amphilais_seebohmi              10.00638  .        .        .        .       .       
## Oxylabes_madagascariensis       10.00638  .        .        .        .       .       
## Buettikoferella_bivittata       10.00638  .        .        .        .       .       
## Hemitesia_neumanni              10.00638  .        .        .        .       .       
## Neomixis_flavoviridis           10.00638  .        .        .        .       .       
## Donacobius_atricapilla          10.00638  .        .        .        .       .       
## Neolestes_torquatus             10.00638  .        .        .        .       .       
## Pyrrhurus_scandens              10.00638  .        .        .        .       .       
## Phyllastrephus_cabanisi         10.00638  .        .        .        .       .       
## Criniger_barbatus               10.00638  .        .        .        .       .       
## Bleda_notatus                   10.00638  .        .        .        .       .       
## Baeopogon_indicator             10.00638  .        .        .        .       .       
## Chlorocichla_simplex            10.00638  .        .        .        .       .       
## Thescelocichla_leucopleura      10.00638  .        .        .        .       .       
## Ixonotus_guttatus               10.00638  .        .        .        .       .       
## Andropadus_montanus             10.00638  .        .        .        .       .       
## Calyptocichla_serina            10.00638  .        .        .        .       .       
## Tricholestes_criniger           10.00638  .        .        .        .       .       
## Hemixos_flavala                 10.00638  .        .        .        .       .       
## Hypsipetes_mcclellandii         10.00638  .        .        .        .       .       
## Iole_olivacea                   10.00638  .        .        .        .       .       
## Ixos_palawanensis               10.00638  .        .        .        .       .       
## Setornis_criniger               10.00638  .        .        .        .       .       
## Alophoixus_finschii             10.00638  .        .        .        .       .       
## Spizixos_semitorques            10.00638  .        .        .        .       .       
## Pycnonotus_sinensis             10.00638  .        .        .        .       .       
## Bernieria_zosterops             10.00638  .        .        .        .       .       
## Drymocichla_incana              10.00638  .        .        .        .       .       
## Phragmacia_substriata           10.00638  .        .        .        .       .       
## Malcorus_pectoralis             10.00638  .        .        .        .       .       
## Heliolais_erythropterus         10.00638  .        .        .        .       .       
## Graueria_vittata                10.00638  .        .        .        .       .       
## Incana_incana                   10.00638  .        .        .        .       .       
## Hypergerus_atriceps             10.00638  .        .        .        .       .       
## Eminia_lepida                   10.00638  .        .        .        .       .       
## Euryptila_subcinnamomea         10.00638  .        .        .        .       .       
## Bathmocercus_rufus              10.00638  .        .        .        .       .       
## Cisticola_lateralis             10.00638  .        .        .        .       .       
## Oreolais_pulchra                10.00638  .        .        .        .       .       
## Artisornis_moreaui              10.00638  .        .        .        .       .       
## Urolais_epichlorus              10.00638  .        .        .        .       .       
## Phyllolais_pulchella            10.00638  .        .        .        .       .       
## Poliolais_lopezi                10.00638  .        .        .        .       .       
## Prinia_burnesii                 10.00638  .        .        .        .       .       
## Camaroptera_chloronota          10.00638  .        .        .        .       .       
## Spiloptila_clamans              10.00638  .        .        .        .       .       
## Apalis_thoracica                10.00638  .        .        .        .       .       
## Eremomela_pusilla               10.00638  .        .        .        .       .       
## Pnoepyga_albiventer             10.00638  .        .        .        .       .       
## Kakamega_poliothorax            10.00638  .        .        .        .       .       
## Hypocryptadius_cinnamomeus      10.00638  .        .        .        .       .       
## Turdinus_macrodactylus          10.00638  .        .        .        .       .       
## Graminicola_bengalensis         10.00638  .        .        .        .       .       
## Malacopteron_magnum             10.00638  .        .        .        .       .       
## Gypsophila_crispifrons          10.00638  .        .        .        .       .       
## Robsonius_rabori                10.00638  .        .        .        .       .       
## Gampsorhynchus_rufulus          10.00638  .        .        .        .       .       
## Napothera_brevicaudata          10.00638  .        .        .        .       .       
## Rimator_pasquieri               10.00638  .        .        .        .       .       
## Jabouilleia_danjoui             10.00638  .        .        .        .       .       
## Malacocincla_abbotti            10.00638  .        .        .        .       .       
## Illadopsis_cleaveri             10.00638  .        .        .        .       .       
## Ptyrticus_turdinus              10.00638  .        .        .        .       .       
## Pellorneum_albiventre           10.00638  .        .        .        .       .       
## Trichastoma_rostratum           10.00638  .        .        .        .       .       
## Kenopia_striata                 10.00638  .        .        .        .       .       
## Kupeornis_gilberti              10.00638  .        .        .        .       .       
## Phyllanthus_atripennis          10.00638  .        .        .        .       .       
## Turdoides_hindei                10.00638  .        .        .        .       .       
## Babax_waddelli                  10.00638  .        .        .        .       .       
## Garrulax_monileger              10.00638  .        .        .        .       .       
## Cutia_nipalensis                10.00638  .        .        .        .       .       
## Liocichla_steerii               10.00638  .        .        .        .       .       
## Heterophasia_picaoides          10.00638  .        .        .        .       .       
## Leiothrix_argentauris           10.00638  .        .        .        .       .       
## Strophocincla_cachinnans        10.00638  .        .        .        .       .       
## Minla_cyanouroptera             10.00638  .        .        .        .       .       
## Actinodura_egertoni             10.00638  .        .        .        .       .       
## Spelaeornis_troglodytoides      10.00638  .        .        .        .       .       
## Ptilocichla_leucogrammica       10.00638  .        .        .        .       .       
## Xiphirhynchus_superciliaris     10.00638  .        .        .        .       .       
## Pomatorhinus_montanus           10.00638  .        .        .        .       .       
## Macronous_gularis               10.00638  .        .        .        .       .       
## Timalia_pileata                 10.00638  .        .        .        .       .       
## Dumetia_hyperythra              10.00638  .        .        .        .       .       
## Sphenocichla_humei              10.00638  .        .        .        .       .       
## Stachyris_ambigua               10.00638  .        .        .        .       .       
## Rhopocichla_atriceps            10.00638  .        .        .        .       .       
## Yuhina_castaniceps              10.00638  .        .        .        .       .       
## Crocias_albonotatus             10.00638  .        .        .        .       .       
## Cleptornis_marchei              10.00638  .        .        .        .       .       
## Woodfordia_superciliosa         10.00638  .        .        .        .       .       
## Tephrozosterops_stalkeri        10.00638  .        .        .        .       .       
## Zosterops_erythropleurus        10.00638  .        .        .        .       .       
## Chlorocharis_emiliae            10.00638  .        .        .        .       .       
## Speirops_leucophoeus            10.00638  .        .        .        .       .       
## Megazosterops_palauensis        10.00638  .        .        .        .       .       
## Oculocincta_squamifrons         10.00638  .        .        .        .       .       
## Lophozosterops_dohertyi         10.00638  .        .        .        .       .       
## Heleia_crassirostris            10.00638  .        .        .        .       .       
## Dasycrotapha_speciosa           10.00638  .        .        .        .       .       
## Rukia_ruki                      10.00638  .        .        .        .       .       
## Malia_grata                     10.00638  .        .        .        .       .       
## Myzornis_pyrrhoura              10.00638  .        .        .        .       .       
## Lioptilus_nigricapillus         10.00638  .        .        .        .       .       
## Parophasma_galinieri            10.00638  .        .        .        .       .       
## Paradoxornis_heudei             10.00638  .        .        .        .       .       
## Chamaea_fasciata                10.00638  .        .        .        .       .       
## Chrysomma_sinense               10.00638  .        .        .        .       .       
## Rhopophilus_pekinensis          10.00638  .        .        .        .       .       
## Alcippe_ruficapilla             10.00638  .        .        .        .       .       
## Conostoma_oemodium              10.00638  .        .        .        .       .       
## Sylvia_atricapilla              10.00638  .        .        .        .       .       
## Horizorhinus_dohrni             10.00638  .        .        .        .       .       
## Pseudoalcippe_abyssinica        10.00638  .        .        .        .       .       
## Tachycineta_bicolor             10.00638  .        .        .        .       .       
## Pygochelidon_cyanoleuca         10.00638  .        .        .        .       .       
## Atticora_melanoleuca            10.00638  .        .        .        .       .       
## Haplochelidon_andecola          10.00638  .        .        .        .       .       
## Notiochelidon_murina            10.00638  .        .        .        .       .       
## Alopochelidon_fucata            10.00638  .        .        .        .       .       
## Neochelidon_tibialis            10.00638  .        .        .        .       .       
## Stelgidopteryx_serripennis      10.00638  .        .        .        .       .       
## Progne_subis                    10.00638  .        .        .        .       .       
## Phedina_borbonica               10.00638  .        .        .        .       .       
## Riparia_cincta                  10.00638  .        .        .        .       .       
## Delichon_urbicum                10.00638  .        .        .        .       .       
## Hirundo_rupestris               10.00638  .        .        .        .       .       
## Petrochelidon_pyrrhonota        10.00638  .        .        .        .       .       
## Psalidoprocne_nitens            10.00638  .        .        .        .       .       
## Pseudhirundo_griseopyga         10.00638  .        .        .        .       .       
## Cheramoeca_leucosterna          10.00638  .        .        .        .       .       
## Eurochelidon_sirintarae         10.00638  .        .        .        .       .       
## Pseudochelidon_eurystomina      10.00638  .        .        .        .       .       
## Pholidornis_rushiae             10.00638  .        .        .        .       .       
## Hylia_prasina                   10.00638  .        .        .        .       .       
## Erythrocercus_holochlorus       10.00638  .        .        .        .       .       
## Abroscopus_schisticeps          10.00638  .        .        .        .       .       
## Tesia_cyaniventer               10.00638  .        .        .        .       .       
## Urosphena_squameiceps           10.00638  .        .        .        .       .       
## Cettia_diphone                  10.00638  .        .        .        .       .       
## Orthotomus_cuculatus            10.00638  .        .        .        .       .       
## Tickellia_hodgsoni              10.00638  .        .        .        .       .       
## Seicercus_montis                10.00638  .        .        .        .       .       
## Phylloscopus_canariensis        10.00638  .        .        .        .       .       
## Leptopoecile_sophiae            10.00638  .        .        .        .       .       
## Psaltria_exilis                 10.00638  .        .        .        .       .       
## Psaltriparus_minimus            10.00638  .        .        .        .       .       
## Aegithalos_concinnus            10.00638  .        .        .        .       .       
## Macrosphenus_kretschmeri        10.00638  .        .        .        .       .       
## Melocichla_mentalis             10.00638  .        .        .        .       .       
## Achaetops_pycnopygius           10.00638  .        .        .        .       .       
## Sphenoeacus_afer                10.00638  .        .        .        .       .       
## Sylvietta_rufescens             10.00638  .        .        .        .       .       
## Dulus_dominicus                 10.00638  .        .        .        .       .       
## Phainoptila_melanoxantha        10.00638  .        .        .        .       .       
## Phainopepla_nitens              10.00638  .        .        .        .       .       
## Ptilogonys_cinereus             10.00638  .        .        .        .       .       
## Bombycilla_garrulus             10.00638  .        .        .        .       .       
## Hylocitrea_bonensis             10.00638  .        .        .        .       .       
## Hypocolius_ampelinus            10.00638  .        .        .        .       .       
## Certhia_familiaris              10.00638  .        .        .        .       .       
## Tichodroma_muraria              10.00638  .        .        .        .       .       
## Salpornis_spilonotus            10.00638  .        .        .        .       .       
## Thryomanes_bewickii             10.00638  .        .        .        .       .       
## Henicorhina_leucosticta         10.00638  .        .        .        .       .       
## Thryothorus_atrogularis         10.00638  .        .        .        .       .       
## Ferminia_cerverai               10.00638  .        .        .        .       .       
## Uropsila_leucogastra            10.00638  .        .        .        .       .       
## Cyphorhinus_arada               10.00638  .        .        .        .       .       
## Cinnycerthia_unirufa            10.00638  .        .        .        .       .       
## Thryorchilus_browni             10.00638  .        .        .        .       .       
## Cistothorus_platensis           10.00638  .        .        .        .       .       
## Troglodytes_troglodytes         10.00638  .        .        .        .       .       
## Campylorhynchus_brunneicapillus 10.00638  .        .        .        .       .       
## Microcerculus_philomela         10.00638  .        .        .        .       .       
## Hylorchilus_sumichrasti         10.00638  .        .        .        .       .       
## Catherpes_mexicanus             10.00638  .        .        .        .       .       
## Salpinctes_obsoletus            10.00638  .        .        .        .       .       
## Microbates_cinereiventris       10.00638  .        .        .        .       .       
## Polioptila_dumicola             10.00638  .        .        .        .       .       
## Ramphocaenus_melanurus          10.00638  .        .        .        .       .       
## Sitta_formosa                   10.00638  .        .        .        .       .       
## Rhabdornis_mystacalis           10.00638  .        .        .        .       .       
## Enodes_erythrophris             10.00638  .        .        .        .       .       
## Scissirostrum_dubium            10.00638  .        .        .        .       .       
## Aplonis_grandis                 10.00638  .        .        .        .       .       
## Basilornis_mirandus             10.00638  .        .        .        .       .       
## Sarcops_calvus                  10.00638  .        .        .        .       .       
## Streptocitta_albicollis         10.00638  .        .        .        .       .       
## Mino_dumontii                   10.00638  .        .        .        .       .       
## Ampeliceps_coronatus            10.00638  .        .        .        .       .       
## Gracula_religiosa               10.00638  .        .        .        .       .       
## Lamprotornis_australis          10.00638  .        .        .        .       .       
## Spreo_albicapillus              10.00638  .        .        .        .       .       
## Cosmopsarus_regius              10.00638  .        .        .        .       .       
## Coccycolius_iris                10.00638  .        .        .        .       .       
## Neocichla_gutturalis            10.00638  .        .        .        .       .       
## Saroglossa_spiloptera           10.00638  .        .        .        .       .       
## Speculipastor_bicolor           10.00638  .        .        .        .       .       
## Grafisia_torquata               10.00638  .        .        .        .       .       
## Cinnyricinclus_femoralis        10.00638  .        .        .        .       .       
## Poeoptera_lugubris              10.00638  .        .        .        .       .       
## Onychognathus_nabouroup         10.00638  .        .        .        .       .       
## Creatophora_cinerea             10.00638  .        .        .        .       .       
## Sturnus_erythropygius           10.00638  .        .        .        .       .       
## Leucopsar_rothschildi           10.00638  .        .        .        .       .       
## Acridotheres_tristis            10.00638  .        .        .        .       .       
## Mimus_parvulus                  10.00638  .        .        .        .       .       
## Oreoscoptes_montanus            10.00638  .        .        .        .       .       
## Toxostoma_crissale              10.00638  .        .        .        .       .       
## Melanotis_caerulescens          10.00638  .        .        .        .       .       
## Melanoptila_glabrirostris       10.00638  .        .        .        .       .       
## Ramphocinclus_brachyurus        10.00638  .        .        .        .       .       
## Cinclocerthia_ruficauda         10.00638  .        .        .        .       .       
## Margarops_fuscus                10.00638  .        .        .        .       .       
## Dumetella_carolinensis          10.00638  .        .        .        .       .       
## Buphagus_erythrorhynchus        10.00638  .        .        .        .       .       
## Cinclus_pallasii                10.00638  .        .        .        .       .       
## Psophocichla_litsitsirupa       10.00638  .        .        .        .       .       
## Nesocichla_eremita              10.00638  .        .        .        .       .       
## Turdus_pallidus                 10.00638  .        .        .        .       .       
## Geomalia_heinrichi              10.00638  .        .        .        .       .       
## Grandala_coelicolor             10.00638  .        .        .        .       .       
## Hylocichla_mustelina            10.00638  .        .        .        .       .       
## Catharus_guttatus               10.00638  .        .        .        .       .       
## Cichlopsis_leucogenys           10.00638  .        .        .        .       .       
## Entomodestes_coracinus          10.00638  .        .        .        .       .       
## Zoothera_andromedae             10.00638  .        .        .        .       .       
## Cochoa_purpurea                 10.00638  .        .        .        .       .       
## Chlamydochaera_jefferyi         10.00638  .        .        .        .       .       
## Sialia_mexicana                 10.00638  .        .        .        .       .       
## Myadestes_occidentalis          10.00638  .        .        .        .       .       
## Neocossyphus_poensis            10.00638  .        .        .        .       .       
## Cataponera_turdoides            10.00638  .        .        .        .       .       
## Stizorhina_finschi              10.00638  .        .        .        .       .       
## Alethe_poliophrys               10.00638  .        .        .        .       .       
## Stiphrornis_erythrothorax       10.00638  .        .        .        .       .       
## Cichladusa_arquata              10.00638  .        .        .        .       .       
## Swynnertonia_swynnertoni        10.00638  .        .        .        .       .       
## Cossyphicula_roberti            10.00638  .        .        .        .       .       
## Pogonocichla_stellata           10.00638  .        .        .        .       .       
## Sheppardia_bocagei              10.00638  .        .        .        .       .       
## Cossypha_isabellae              10.00638  .        .        .        .       .       
## Brachypteryx_stellata           10.00638  .        .        .        .       .       
## Erithacus_rubecula              10.00638  .        .        .        .       .       
## Luscinia_svecica                10.00638  .        .        .        .       .       
## Hodgsonius_phaenicuroides       10.00638  .        .        .        .       .       
## Irania_gutturalis               10.00638  .        .        .        .       .       
## Cinclidium_diana                10.00638  .        .        .        .       .       
## Enicurus_schistaceus            10.00638  .        .        .        .       .       
## Myophonus_borneensis            10.00638  .        .        .        .       .       
## Ficedula_albicollis             10.00638  .        .        .        .       .       
## Muscicapella_hodgsoni           10.00638  .        .        .        .       .       
## Xenocopsychus_ansorgei          10.00638  .        .        .        .       .       
## Tarsiger_cyanurus               10.00638  .        .        .        .       .       
## Monticola_saxatilis             10.00638  .        .        .        .       .       
## Myrmecocichla_tholloni          10.00638  .        .        .        .       .       
## Oenanthe_bifasciata             10.00638  .        .        .        .       .       
## Cercomela_sinuata               10.00638  .        .        .        .       .       
## Saxicola_leucurus               10.00638  .        .        .        .       .       
## Rhyacornis_fuliginosa           10.00638  .        .        .        .       .       
## Chaimarrornis_leucocephalus     10.00638  .        .        .        .       .       
## Phoenicurus_erythronotus        10.00638  .        .        .        .       .       
## Myiomela_major                  10.00638  .        .        .        .       .       
## Niltava_grandis                 10.00638  .        .        .        .       .       
## Rhinomyias_umbratilis           10.00638  .        .        .        .       .       
## Eumyias_thalassinus             10.00638  .        .        .        .       .       
## Dioptrornis_chocolatinus        10.00638  .        .        .        .       .       
## Cyanoptila_cyanomelana          10.00638  .        .        .        .       .       
## Erythropygia_quadrivirgata      10.00638  .        .        .        .       .       
## Cercotrichas_podobe             10.00638  .        .        .        .       .       
## Copsychus_albospecularis        10.00638  .        .        .        .       .       
## Pinarornis_plumosus             10.00638  .        .        .        .       .       
## Saxicoloides_fulicatus          10.00638  .        .        .        .       .       
## Cyornis_tickelliae              10.00638  .        .        .        .       .       
## Humblotia_flavirostris          10.00638  .        .        .        .       .       
## Trichixos_pyrropygus            10.00638  .        .        .        .       .       
## Muscicapa_striata               10.00638  .        .        .        .       .       
## Bradornis_pallidus              10.00638  .        .        .        .       .       
## Namibornis_herero               10.00638  .        .        .        .       .       
## Fraseria_ocreata                10.00638  .        .        .        .       .       
## Myioparus_griseigularis         10.00638  .        .        .        .       .       
## Empidornis_semipartitus         10.00638  .        .        .        .       .       
## Sigelus_silens                  10.00638  .        .        .        .       .       
## Melaenornis_edolioides          10.00638  .        .        .        .       .       
## Regulus_regulus                 10.00638  .        .        .        .       .       
## Anthreptes_longuemarei          10.00638  .        .        .        .       .       
## Nectarinia_johannae             10.00638  .        .        .        .       .       
## Aethopyga_mystacalis            10.00638  .        .        .        .       .       
## Hypogramma_hypogrammicum        10.00638  .        .        .        .       .       
## Arachnothera_robusta            10.00638  .        .        .        .       .       
## Dicaeum_pygmaeum                10.00638  .        .        .        .       .       
## Prionochilus_olivaceus          10.00638  .        .        .        .       .       
## Chloropsis_cyanopogon           10.00638  .        .        .        .       .       
## Irena_puella                    10.00638  .        .        .        .       .       
## Amblyospiza_albifrons           10.00638  .        .        .        .       .       
## Malimbus_coronatus              10.00638  .        .        .        .       .       
## Ploceus_insignis                10.00638  .        .        .        .       .       
## Quelea_erythrops                10.00638  .        .        .        .       .       
## Foudia_madagascariensis         10.00638  .        .        .        .       .       
## Euplectes_afer                  10.00638  .        .        .        .       .       
## Bubalornis_albirostris          10.00638  .        .        .        .       .       
## Plocepasser_mahali              10.00638  .        .        .        .       .       
## Histurgops_ruficaudus           10.00638  .        .        .        .       .       
## Pseudonigrita_cabanisi          10.00638  .        .        .        .       .       
## Philetairus_socius              10.00638  .        .        .        .       .       
## Dinemellia_dinemelli            10.00638  .        .        .        .       .       
## Brachycope_anomala              10.00638  .        .        .        .       .       
## Anaplectes_rubriceps            10.00638  .        .        .        .       .       
## Sporopipes_frontalis            10.00638  .        .        .        .       .       
## Ortygospiza_gabonensis          10.00638  .        .        .        .       .       
## Erythrura_gouldiae              10.00638  .        .        .        .       .       
## Stagonopleura_bella             10.00638  .        .        .        .       .       
## Taeniopygia_guttata             10.00638  .        .        .        .       .       
## Poephila_personata              10.00638  .        .        .        .       .       
## Neochmia_temporalis             10.00638  .        .        .        .       .       
## Emblema_pictum                  10.00638  .        .        .        .       .       
## Oreostruthus_fuliginosus        10.00638  .        .        .        .       .       
## Lonchura_pallida                10.00638  .        .        .        .       .       
## Padda_oryzivora                 10.00638  .        .        .        .       .       
## Heteromunia_pectoralis          10.00638  .        .        .        .       .       
## Pytilia_melba                   10.00638  .        .        .        .       .       
## Euschistospiza_dybowskii        10.00638  .        .        .        .       .       
## Hypargos_niveoguttatus          10.00638  .        .        .        .       .       
## Amadina_fasciata                10.00638  .        .        .        .       .       
## Lagonosticta_senegala           10.00638  .        .        .        .       .       
## Clytospiza_monteiri             10.00638  .        .        .        .       .       
## Uraeginthus_bengalus            10.00638  .        .        .        .       .       
## Pyrenestes_sanguineus           10.00638  .        .        .        .       .       
## Spermophaga_poliogenys          10.00638  .        .        .        .       .       
## Nesocharis_shelleyi             10.00638  .        .        .        .       .       
## Estrilda_quartinia              10.00638  .        .        .        .       .       
## Mandingoa_nitidula              10.00638  .        .        .        .       .       
## Cryptospiza_shelleyi            10.00638  .        .        .        .       .       
## Nigrita_bicolor                 10.00638  .        .        .        .       .       
## Parmoptila_woodhousei           10.00638  .        .        .        .       .       
## Amandava_amandava               10.00638  .        .        .        .       .       
## Anomalospiza_imberbis           10.00638  .        .        .        .       .       
## Vidua_chalybeata                10.00638  .        .        .        .       .       
## Prunella_himalayana             10.00638  .        .        .        .       .       
## Peucedramus_taeniatus           10.00638  .        .        .        .       .       
## Passer_domesticus               10.00638  .        .        .        .       .       
## Montifringilla_nivalis          10.00638  .        .        .        .       .       
## Petronia_petronia               10.00638  .        .        .        .       .       
## Euphonia_gouldi                 10.00638  .        .        .        .       .       
## Eophona_personata               10.00638  .        .        .        .       .       
## Mycerobas_melanozanthos         10.00638  .        .        .        .       .       
## Coccothraustes_vespertinus      10.00638  .        .        .        .       .       
## Eremopsaltria_mongolicus        10.00638  .        .        .        .       .       
## Bucanetes_githagineus           10.00638  .        .        .        .       .       
## Paroreomyza_maculata            10.00638  .        .        .        .       .       
## Oreomystis_mana                 10.00638  .        .        .        .       .       
## Loxioides_bailleui              10.00638  .        .        .        .       .       
## Telespiza_cantans               10.00638  .        .        .        .       .       
## Pseudonestor_xanthophrys        10.00638  .        .        .        .       .       
## Loxops_caeruleirostris          10.00638  .        .        .        .       .       
## Hemignathus_parvus              10.00638  .        .        .        .       .       
## Vestiaria_coccinea              10.00638  .        .        .        .       .       
## Himatione_sanguinea             10.00638  .        .        .        .       .       
## Palmeria_dolei                  10.00638  .        .        .        .       .       
## Uragus_sibiricus                10.00638  .        .        .        .       .       
## Neospiza_concolor               10.00638  .        .        .        .       .       
## Haematospiza_sipahi             10.00638  .        .        .        .       .       
## Callacanthis_burtoni            10.00638  .        .        .        .       .       
## Psittirostra_psittacea          10.00638  .        .        .        .       .       
## Carpodacus_erythrinus           10.00638  .        .        .        .       .       
## Leucosticte_australis           10.00638  .        .        .        .       .       
## Pyrrhula_murina                 10.00638  .        .        .        .       .       
## Pyrrhoplectes_epauletta         10.00638  .        .        .        .       .       
## Pinicola_enucleator             10.00638  .        .        .        .       .       
## Loxia_pytyopsittacus            10.00638  .        .        .        .       .       
## Serinus_scotops                 10.00638  .        .        .        .       .       
## Carduelis_psaltria              10.00638  .        .        .        .       .       
## Rhynchostruthus_percivali       10.00638  .        .        .        .       .       
## Linurgus_olivaceus              10.00638  .        .        .        .       .       
## Rhodopechys_sanguineus          10.00638  .        .        .        .       .       
## Fringilla_montifringilla        10.00638  .        .        .        .       .       
## Lophospingus_pusillus           10.00638  .        .        .        .       .       
## Diuca_speculifera               10.00638  .        .        .        .       .       
## Cissopis_leverianus             10.00638  .        .        .        .       .       
## Schistochlamys_ruficapillus     10.00638  .        .        .        .       .       
## Urothraupis_stolzmanni          10.00638  .        .        .        .       .       
## Gubernatrix_cristata            10.00638  .        .        .        .       .       
## Cyanicterus_cyanicterus         10.00638  .        .        .        .       .       
## Neothraupis_fasciata            10.00638  .        .        .        .       .       
## Stephanophorus_diadematus       10.00638  .        .        .        .       .       
## Paroaria_coronata               10.00638  .        .        .        .       .       
## Chlorochrysa_nitidissima        10.00638  .        .        .        .       .       
## Tangara_xanthocephala           10.00638  .        .        .        .       .       
## Coereba_flaveola                10.00638  .        .        .        .       .       
## Loxigilla_violacea              10.00638  .        .        .        .       .       
## Melopyrrha_nigra                10.00638  .        .        .        .       .       
## Euneornis_campestris            10.00638  .        .        .        .       .       
## Platyspiza_crassirostris        10.00638  .        .        .        .       .       
## Geospiza_conirostris            10.00638  .        .        .        .       .       
## Camarhynchus_parvulus           10.00638  .        .        .        .       .       
## Pinaroloxias_inornata           10.00638  .        .        .        .       .       
## Certhidea_olivacea              10.00638  .        .        .        .       .       
## Loxipasser_anoxanthus           10.00638  .        .        .        .       .       
## Melanospiza_richardsoni         10.00638  .        .        .        .       .       
## Tiaris_obscurus                 10.00638  .        .        .        .       .       
## Bangsia_arcaei                  10.00638  .        .        .        .       .       
## Pipraeidea_melanonota           10.00638  .        .        .        .       .       
## Iridosornis_analis              10.00638  .        .        .        .       .       
## Calochaetes_coccineus           10.00638  .        .        .        .       .       
## Orthogonys_chloricterus         10.00638  .        .        .        .       .       
## Thraupis_palmarum               10.00638  .        .        .        .       .       
## Compsothraupis_loricata         10.00638  .        .        .        .       .       
## Buthraupis_eximia               10.00638  .        .        .        .       .       
## Chlorornis_riefferii            10.00638  .        .        .        .       .       
## Delothraupis_castaneoventris    10.00638  .        .        .        .       .       
## Dubusia_taeniata                10.00638  .        .        .        .       .       
## Anisognathus_lacrymosus         10.00638  .        .        .        .       .       
## Parkerthraustes_humeralis       10.00638  .        .        .        .       .       
## Lamprospiza_melanoleuca         10.00638  .        .        .        .       .       
## Rhodinocichla_rosea             10.00638  .        .        .        .       .       
## Chlorophonia_pyrrhophrys        10.00638  .        .        .        .       .       
## Mitrospingus_oleagineus         10.00638  .        .        .        .       .       
## Phaenicophilus_poliocephalus    10.00638  .        .        .        .       .       
## Oreothraupis_arremonops         10.00638  .        .        .        .       .       
## Orchesticus_abeillei            10.00638  .        .        .        .       .       
## Rowettia_goughensis             10.00638  .        .        .        .       .       
## Nesospiza_wilkinsi              10.00638  .        .        .        .       .       
## Calyptophilus_frugivorus        10.00638  .        .        .        .       .       
## Saltatricula_multicolor         10.00638  .        .        .        .       .       
## Saltator_coerulescens           10.00638  .        .        .        .       .       
## Sericossypha_albocristata       10.00638  .        .        .        .       .       
## Nemosia_pileata                 10.00638  .        .        .        .       .       
## Chrysothlypis_salmoni           10.00638  .        .        .        .       .       
## Heterospingus_xanthopygius      10.00638  .        .        .        .       .       
## Hemithraupis_ruficapilla        10.00638  .        .        .        .       .       
## Iridophanes_pulcherrimus        10.00638  .        .        .        .       .       
## Chlorophanes_spiza              10.00638  .        .        .        .       .       
## Creurgops_verticalis            10.00638  .        .        .        .       .       
## Porphyrospiza_caerulescens      10.00638  .        .        .        .       .       
## Embernagra_platensis            10.00638  .        .        .        .       .       
## Emberizoides_herbicola          10.00638  .        .        .        .       .       
## Cnemoscopus_rubrirostris        10.00638  .        .        .        .       .       
## Incaspiza_pulchra               10.00638  .        .        .        .       .       
## Piezorhina_cinerea              10.00638  .        .        .        .       .       
## Poospiza_alticola               10.00638  .        .        .        .       .       
## Donacospiza_albifrons           10.00638  .        .        .        .       .       
## Cypsnagra_hirundinacea          10.00638  .        .        .        .       .       
## Hemispingus_goeringi            10.00638  .        .        .        .       .       
## Pyrrhocoma_ruficeps             10.00638  .        .        .        .       .       
## Thlypopsis_ruficeps             10.00638  .        .        .        .       .       
## Compsospiza_garleppi            10.00638  .        .        .        .       .       
## Cyanerpes_nitidus               10.00638  .        .        .        .       .       
## Dacnis_lineata                  10.00638  .        .        .        .       .       
## Xenospingus_concolor            10.00638  .        .        .        .       .       
## Tersina_viridis                 10.00638  .        .        .        .       .       
## Lanio_fulvus                    10.00638  .        .        .        .       .       
## Rhodospingus_cruentus           10.00638  .        .        .        .       .       
## Tachyphonus_surinamus           10.00638  .        .        .        .       .       
## Coryphaspiza_melanotis          10.00638  .        .        .        .       .       
## Charitospiza_eucosma            10.00638  .        .        .        .       .       
## Eucometis_penicillata           10.00638  .        .        .        .       .       
## Trichothraupis_melanops         10.00638  .        .        .        .       .       
## Coryphospingus_cucullatus       10.00638  .        .        .        .       .       
## Ramphocelus_costaricensis       10.00638  .        .        .        .       .       
## Volatinia_jacarina              10.00638  .        .        .        .       .       
## Conothraupis_speculigera        10.00638  .        .        .        .       .       
## Oryzoborus_nuttingi             10.00638  .        .        .        .       .       
## Sporophila_luctuosa             10.00638  .        .        .        .       .       
## Conirostrum_albifrons           10.00638  .        .        .        .       .       
## Oreomanes_fraseri               10.00638  .        .        .        .       .       
## Diglossa_lafresnayii            10.00638  .        .        .        .       .       
## Catamenia_analis                10.00638  .        .        .        .       .       
## Acanthidops_bairdii             10.00638  .        .        .        .       .       
## Haplospiza_rustica              10.00638  .        .        .        .       .       
## Idiopsar_brachyurus             10.00638  .        .        .        .       .       
## Xenodacnis_parina               10.00638  .        .        .        .       .       
## Sicalis_citrina                 10.00638  .        .        .        .       .       
## Phrygilus_gayi                  10.00638  .        .        .        .       .       
## Melanodera_xanthogramma         10.00638  .        .        .        .       .       
## Catamblyrhynchus_diadema        10.00638  .        .        .        .       .       
## Habia_cristata                  10.00638  .        .        .        .       .       
## Chlorothraupis_olivacea         10.00638  .        .        .        .       .       
## Piranga_rubra                   10.00638  .        .        .        .       .       
## Cardinalis_sinuatus             10.00638  .        .        .        .       .       
## Caryothraustes_canadensis       10.00638  .        .        .        .       .       
## Periporphyrus_erythromelas      10.00638  .        .        .        .       .       
## Rhodothraupis_celaeno           10.00638  .        .        .        .       .       
## Pheucticus_chrysogaster         10.00638  .        .        .        .       .       
## Passerina_amoena                10.00638  .        .        .        .       .       
## Amaurospiza_concolor            10.00638  .        .        .        .       .       
## Cyanocompsa_cyanoides           10.00638  .        .        .        .       .       
## Cyanoloxia_glaucocaerulea       10.00638  .        .        .        .       .       
## Spiza_americana                 10.00638  .        .        .        .       .       
## Granatellus_pelzelni            10.00638  .        .        .        .       .       
## Ocyalus_latirostris             10.00638  .        .        .        .       .       
## Clypicterus_oseryi              10.00638  .        .        .        .       .       
## Cacicus_cela                    10.00638  .        .        .        .       .       
## Psarocolius_decumanus           10.00638  .        .        .        .       .       
## Icterus_graceannae              10.00638  .        .        .        .       .       
## Amblycercus_holosericeus        10.00638  .        .        .        .       .       
## Nesopsar_nigerrimus             10.00638  .        .        .        .       .       
## Gnorimopsar_chopi               10.00638  .        .        .        .       .       
## Oreopsar_bolivianus             10.00638  .        .        .        .       .       
## Agelaioides_badius              10.00638  .        .        .        .       .       
## Agelasticus_thilius             10.00638  .        .        .        .       .       
## Chrysomus_icterocephalus        10.00638  .        .        .        .       .       
## Pseudoleistes_guirahuro         10.00638  .        .        .        .       .       
## Xanthopsar_flavus               10.00638  .        .        .        .       .       
## Amblyramphus_holosericeus       10.00638  .        .        .        .       .       
## Curaeus_curaeus                 10.00638  .        .        .        .       .       
## Hypopyrrhus_pyrohypogaster      10.00638  .        .        .        .       .       
## Lampropsar_tanagrinus           10.00638  .        .        .        .       .       
## Gymnomystax_mexicanus           10.00638  .        .        .        .       .       
## Macroagelaius_imthurni          10.00638  .        .        .        .       .       
## Dives_dives                     10.00638  .        .        .        .       .       
## Molothrus_oryzivorus            10.00638  .        .        .        .       .       
## Agelaius_phoeniceus             10.00638  .        .        .        .       .       
## Euphagus_carolinus              10.00638  .        .        .        .       .       
## Quiscalus_quiscula              10.00638  .        .        .        .       .       
## Sturnella_loyca                 10.00638  .        .        .        .       .       
## Dolichonyx_oryzivorus           10.00638  .        .        .        .       .       
## Xanthocephalus_xanthocephalus   10.00638  .        .        .        .       .       
## Zeledonia_coronata              10.00638  .        .        .        .       .       
## Spindalis_zena                  10.00638  .        .        .        .       .       
## Microligea_palustris            10.00638  .        .        .        .       .       
## Xenoligea_montana               10.00638  .        .        .        .       .       
## Seiurus_aurocapilla             10.00638  .        .        .        .       .       
## Parula_americana                10.00638  .        .        .        .       .       
## Dendroica_petechia              10.00638  .        .        .        .       .       
## Wilsonia_citrina                10.00638  .        .        .        .       .       
## Catharopeza_bishopi             10.00638  .        .        .        .       .       
## Phaeothlypis_rivularis          10.00638  .        .        .        .       .       
## Basileuterus_flaveolus          10.00638  .        .        .        .       .       
## Ergaticus_ruber                 10.00638  .        .        .        .       .       
## Myioborus_pictus                10.00638  .        .        .        .       .       
## Euthlypis_lachrymosa            10.00638  .        .        .        .       .       
## Protonotaria_citrea             10.00638  .        .        .        .       .       
## Limnothlypis_swainsonii         10.00638  .        .        .        .       .       
## Leucopeza_semperi               10.00638  .        .        .        .       .       
## Mniotilta_varia                 10.00638  .        .        .        .       .       
## Vermivora_chrysoptera           10.00638  .        .        .        .       .       
## Helmitheros_vermivorum          10.00638  .        .        .        .       .       
## Teretistris_fernandinae         10.00638  .        .        .        .       .       
## Icteria_virens                  10.00638  .        .        .        .       .       
## Miliaria_calandra               10.00638  .        .        .        .       .       
## Emberiza_buchanani              10.00638  .        .        .        .       .       
## Melophus_lathami                10.00638  .        .        .        .       .       
## Torreornis_inexpectata          10.00638  .        .        .        .       .       
## Latoucheornis_siemsseni         10.00638  .        .        .        .       .       
##                                                                                      
## Nothocercus_bonapartei           .       7.708799  .       70.46361  .        .      
## Tinamus_guttatus                 .       7.708799 70.46361  .        .        .      
## Crypturellus_variegatus         78.17241 .         .        .        .        .      
## Eudromia_elegans                 .       .         .        .        .       25.33508
## Tinamotis_pentlandii             .       .         .        .        .       25.33508
## Taoniscus_nanus                  .       .         .        .        .       25.33508
## Nothura_darwinii                 .       .         .        .       19.90608  .      
## Rhynchotus_maculicollis          .       .         .        .       19.90608  .      
## Nothoprocta_perdicaria           .       .         .        .       19.90608  .      
## Rhea_americana                   .       .         .        .        .        .      
## Apteryx_haastii                  .       .         .        .        .        .      
## Casuarius_casuarius              .       .         .        .        .        .      
## Dromaius_novaehollandiae         .       .         .        .        .        .      
## Struthio_camelus                 .       .         .        .        .        .      
## Chauna_chavaria                  .       .         .        .        .        .      
## Anhima_cornuta                   .       .         .        .        .        .      
## Anseranas_semipalmata            .       .         .        .        .        .      
## Dendrocygna_arborea              .       .         .        .        .        .      
## Thalassornis_leuconotus          .       .         .        .        .        .      
## Cygnus_melancoryphus             .       .         .        .        .        .      
## Anser_fabalis                    .       .         .        .        .        .      
## Chen_caerulescens                .       .         .        .        .        .      
## Branta_bernicla                  .       .         .        .        .        .      
## Coscoroba_coscoroba              .       .         .        .        .        .      
## Cereopsis_novaehollandiae        .       .         .        .        .        .      
## Malacorhynchus_membranaceus      .       .         .        .        .        .      
## Netta_rufina                     .       .         .        .        .        .      
## Aythya_ferina                    .       .         .        .        .        .      
## Marmaronetta_angustirostris      .       .         .        .        .        .      
## Salvadorina_waigiuensis          .       .         .        .        .        .      
## Pteronetta_hartlaubii            .       .         .        .        .        .      
## Cyanochen_cyanoptera             .       .         .        .        .        .      
## Tadorna_ferruginea               .       .         .        .        .        .      
## Alopochen_aegyptiaca             .       .         .        .        .        .      
## Chloephaga_melanoptera           .       .         .        .        .        .      
## Neochen_jubata                   .       .         .        .        .        .      
## Cairina_moschata                 .       .         .        .        .        .      
## Aix_sponsa                       .       .         .        .        .        .      
## Callonetta_leucophrys            .       .         .        .        .        .      
## Merganetta_armata                .       .         .        .        .        .      
## Melanitta_nigra                  .       .         .        .        .        .      
## Mergellus_albellus               .       .         .        .        .        .      
## Mergus_serrator                  .       .         .        .        .        .      
## Lophodytes_cucullatus            .       .         .        .        .        .      
## Bucephala_clangula               .       .         .        .        .        .      
## Histrionicus_histrionicus        .       .         .        .        .        .      
## Clangula_hyemalis                .       .         .        .        .        .      
## Polysticta_stelleri              .       .         .        .        .        .      
## Somateria_mollissima             .       .         .        .        .        .      
## Chenonetta_jubata                .       .         .        .        .        .      
## Hymenolaimus_malacorhynchos      .       .         .        .        .        .      
## Sarkidiornis_melanotos           .       .         .        .        .        .      
## Anas_platyrhynchos               .       .         .        .        .        .      
## Tachyeres_pteneres               .       .         .        .        .        .      
## Lophonetta_specularioides        .       .         .        .        .        .      
## Speculanas_specularis            .       .         .        .        .        .      
## Amazonetta_brasiliensis          .       .         .        .        .        .      
## Nettapus_pulchellus              .       .         .        .        .        .      
## Biziura_lobata                   .       .         .        .        .        .      
## Nomonyx_dominicus                .       .         .        .        .        .      
## Oxyura_jamaicensis               .       .         .        .        .        .      
## Plectropterus_gambensis          .       .         .        .        .        .      
## Heteronetta_atricapilla          .       .         .        .        .        .      
## Stictonetta_naevosa              .       .         .        .        .        .      
## Aepypodius_arfakianus            .       .         .        .        .        .      
## Alectura_lathami                 .       .         .        .        .        .      
## Talegalla_cuvieri                .       .         .        .        .        .      
## Leipoa_ocellata                  .       .         .        .        .        .      
## Eulipoa_wallacei                 .       .         .        .        .        .      
## Megapodius_freycinet             .       .         .        .        .        .      
## Macrocephalon_maleo              .       .         .        .        .        .      
## Mitu_tomentosum                  .       .         .        .        .        .      
## Nothocrax_urumutum               .       .         .        .        .        .      
## Crax_rubra                       .       .         .        .        .        .      
## Ortalis_vetula                   .       .         .        .        .        .      
## Oreophasis_derbianus             .       .         .        .        .        .      
## Penelopina_nigra                 .       .         .        .        .        .      
## Aburria_aburri                   .       .         .        .        .        .      
## Pipile_cumanensis                .       .         .        .        .        .      
## Penelope_argyrotis               .       .         .        .        .        .      
## Chamaepetes_unicolor             .       .         .        .        .        .      
## Acryllium_vulturinum             .       .         .        .        .        .      
## Guttera_plumifera                .       .         .        .        .        .      
## Agelastes_niger                  .       .         .        .        .        .      
## Numida_meleagris                 .       .         .        .        .        .      
## Dendrortyx_macroura              .       .         .        .        .        .      
## Philortyx_fasciatus              .       .         .        .        .        .      
## Odontophorus_capueira            .       .         .        .        .        .      
## Dactylortyx_thoracicus           .       .         .        .        .        .      
## Rhynchortyx_cinctus              .       .         .        .        .        .      
## Cyrtonyx_montezumae              .       .         .        .        .        .      
## Oreortyx_pictus                  .       .         .        .        .        .      
## Colinus_cristatus                .       .         .        .        .        .      
## Callipepla_squamata              .       .         .        .        .        .      
## Ptilopachus_petrosus             .       .         .        .        .        .      
## Arborophila_mandellii            .       .         .        .        .        .      
## Caloperdix_oculeus               .       .         .        .        .        .      
## Rollulus_rouloul                 .       .         .        .        .        .      
## Melanoperdix_niger               .       .         .        .        .        .      
## Tetraogallus_caspius             .       .         .        .        .        .      
## Perdicula_asiatica               .       .         .        .        .        .      
## Ammoperdix_griseogularis         .       .         .        .        .        .      
## Alectoris_chukar                 .       .         .        .        .        .      
## Francolinus_jacksoni             .       .         .        .        .        .      
## Anurophasis_monorthonyx          .       .         .        .        .        .      
## Coturnix_coturnix                .       .         .        .        .        .      
## Margaroperdix_madagascariensis   .       .         .        .        .        .      
## Afropavo_congensis               .       .         .        .        .        .      
## Pavo_cristatus                   .       .         .        .        .        .      
## Rheinardia_ocellata              .       .         .        .        .        .      
## Argusianus_argus                 .       .         .        .        .        .      
## Polyplectron_napoleonis          .       .         .        .        .        .      
## Galloperdix_spadicea             .       .         .        .        .        .      
## Haematortyx_sanguiniceps         .       .         .        .        .        .      
## Gallus_gallus                    .       .         .        .        .        .      
## Bambusicola_fytchii              .       .         .        .        .        .      
## Meleagris_gallopavo              .       .         .        .        .        .      
## Bonasa_bonasia                   .       .         .        .        .        .      
## Lagopus_lagopus                  .       .         .        .        .        .      
## Lerwa_lerwa                      .       .         .        .        .        .      
## Dendragapus_obscurus             .       .         .        .        .        .      
## Tympanuchus_phasianellus         .       .         .        .        .        .      
## Centrocercus_urophasianus        .       .         .        .        .        .      
## Tetrao_tetrix                    .       .         .        .        .        .      
## Pucrasia_macrolopha              .       .         .        .        .        .      
## Rhizothera_longirostris          .       .         .        .        .        .      
## Crossoptilon_harmani             .       .         .        .        .        .      
## Catreus_wallichi                 .       .         .        .        .        .      
## Lophura_leucomelanos             .       .         .        .        .        .      
## Chrysolophus_pictus              .       .         .        .        .        .      
## Phasianus_colchicus              .       .         .        .        .        .      
## Syrmaticus_humiae                .       .         .        .        .        .      
## Perdix_perdix                    .       .         .        .        .        .      
## Tetraophasis_szechenyii          .       .         .        .        .        .      
## Lophophorus_impejanus            .       .         .        .        .        .      
## Tragopan_melanocephalus          .       .         .        .        .        .      
## Ithaginis_cruentus               .       .         .        .        .        .      
## Pterocles_gutturalis             .       .         .        .        .        .      
## Syrrhaptes_tibetanus             .       .         .        .        .        .      
## Leptotila_verreauxi              .       .         .        .        .        .      
## Geotrygon_lawrencii              .       .         .        .        .        .      
## Starnoenas_cyanocephala          .       .         .        .        .        .      
## Zenaida_macroura                 .       .         .        .        .        .      
## Patagioenas_leucocephala         .       .         .        .        .        .      
## Turacoena_manadensis             .       .         .        .        .        .      
## Macropygia_unchall               .       .         .        .        .        .      
## Reinwardtoena_reinwardtsi        .       .         .        .        .        .      
## Streptopelia_semitorquata        .       .         .        .        .        .      
## Stigmatopelia_chinensis          .       .         .        .        .        .      
## Nesoenas_picturata               .       .         .        .        .        .      
## Aplopelia_larvata                .       .         .        .        .        .      
## Columba_bollii                   .       .         .        .        .        .      
## Geopelia_striata                 .       .         .        .        .        .      
## Geophaps_scripta                 .       .         .        .        .        .      
## Phaps_chalcoptera                .       .         .        .        .        .      
## Petrophassa_albipennis           .       .         .        .        .        .      
## Ocyphaps_lophotes                .       .         .        .        .        .      
## Leucosarcia_melanoleuca          .       .         .        .        .        .      
## Henicophaps_albifrons            .       .         .        .        .        .      
## Gallicolumba_erythroptera        .       .         .        .        .        .      
## Treron_calvus                    .       .         .        .        .        .      
## Ptilinopus_magnificus            .       .         .        .        .        .      
## Drepanoptila_holosericea         .       .         .        .        .        .      
## Alectroenas_madagascariensis     .       .         .        .        .        .      
## Lopholaimus_antarcticus          .       .         .        .        .        .      
## Gymnophaps_albertisii            .       .         .        .        .        .      
## Hemiphaga_novaeseelandiae        .       .         .        .        .        .      
## Ducula_aenea                     .       .         .        .        .        .      
## Phapitreron_leucotis             .       .         .        .        .        .      
## Turtur_abyssinicus               .       .         .        .        .        .      
## Oena_capensis                    .       .         .        .        .        .      
## Chalcophaps_indica               .       .         .        .        .        .      
## Didunculus_strigirostris         .       .         .        .        .        .      
## Goura_victoria                   .       .         .        .        .        .      
## Caloenas_nicobarica              .       .         .        .        .        .      
## Otidiphaps_nobilis               .       .         .        .        .        .      
## Trugon_terrestris                .       .         .        .        .        .      
## Uropelia_campestris              .       .         .        .        .        .      
## Columbina_squammata              .       .         .        .        .        .      
## Metriopelia_ceciliae             .       .         .        .        .        .      
## Claravis_pretiosa                .       .         .        .        .        .      
## Pelecanus_crispus                .       .         .        .        .        .      
## Balaeniceps_rex                  .       .         .        .        .        .      
## Scopus_umbretta                  .       .         .        .        .        .      
## Pygoscelis_antarcticus           .       .         .        .        .        .      
## Aptenodytes_forsteri             .       .         .        .        .        .      
## Spheniscus_demersus              .       .         .        .        .        .      
## Eudyptula_minor                  .       .         .        .        .        .      
## Megadyptes_antipodes             .       .         .        .        .        .      
## Eudyptes_robustus                .       .         .        .        .        .      
## Tigrisoma_lineatum               .       .         .        .        .        .      
## Zebrilus_undulatus               .       .         .        .        .        .      
## Botaurus_pinnatus                .       .         .        .        .        .      
## Ixobrychus_cinnamomeus           .       .         .        .        .        .      
## Pilherodius_pileatus             .       .         .        .        .        .      
## Agamia_agami                     .       .         .        .        .        .      
## Nycticorax_nycticorax            .       .         .        .        .        .      
## Ardeola_speciosa                 .       .         .        .        .        .      
## Nyctanassa_violacea              .       .         .        .        .        .      
## Gorsachius_leuconotus            .       .         .        .        .        .      
## Butorides_striata                .       .         .        .        .        .      
## Ardea_sumatrana                  .       .         .        .        .        .      
## Bubulcus_ibis                    .       .         .        .        .        .      
## Mesophoyx_intermedia             .       .         .        .        .        .      
## Casmerodius_albus                .       .         .        .        .        .      
## Egretta_garzetta                 .       .         .        .        .        .      
## Syrigma_sibilatrix               .       .         .        .        .        .      
## Cochlearius_cochlearius          .       .         .        .        .        .      
## Zonerodius_heliosylus            .       .         .        .        .        .      
## Tigriornis_leucolopha            .       .         .        .        .        .      
## Fregata_ariel                    .       .         .        .        .        .      
## Morus_serrator                   .       .         .        .        .        .      
## Papasula_abbotti                 .       .         .        .        .        .      
## Sula_nebouxii                    .       .         .        .        .        .      
## Anhinga_anhinga                  .       .         .        .        .        .      
## Phalacrocorax_carbo              .       .         .        .        .        .      
## Geronticus_calvus                .       .         .        .        .        .      
## Plegadis_falcinellus             .       .         .        .        .        .      
## Nipponia_nippon                  .       .         .        .        .        .      
## Pseudibis_papillosa              .       .         .        .        .        .      
## Bostrychia_hagedash              .       .         .        .        .        .      
## Threskiornis_aethiopicus         .       .         .        .        .        .      
## Lophotibis_cristata              .       .         .        .        .        .      
## Platalea_leucorodia              .       .         .        .        .        .      
## Mesembrinibis_cayennensis        .       .         .        .        .        .      
## Eudocimus_albus                  .       .         .        .        .        .      
## Theristicus_caerulescens         .       .         .        .        .        .      
## Cercibis_oxycerca                .       .         .        .        .        .      
## Phimosus_infuscatus              .       .         .        .        .        .      
## Thaumatibis_gigantea             .       .         .        .        .        .      
## Anastomus_oscitans               .       .         .        .        .        .      
## Mycteria_americana               .       .         .        .        .        .      
## Leptoptilos_javanicus            .       .         .        .        .        .      
## Ciconia_maguari                  .       .         .        .        .        .      
## Ephippiorhynchus_asiaticus       .       .         .        .        .        .      
## Jabiru_mycteria                  .       .         .        .        .        .      
## Gavia_stellata                   .       .         .        .        .        .      
## Oceanites_gracilis               .       .         .        .        .        .      
## Fregetta_grallaria               .       .         .        .        .        .      
## Pelagodroma_marina               .       .         .        .        .        .      
## Garrodia_nereis                  .       .         .        .        .        .      
## Nesofregetta_fuliginosa          .       .         .        .        .        .      
## Phoebetria_palpebrata            .       .         .        .        .        .      
## Diomedea_exulans                 .       .         .        .        .        .      
## Thalassarche_impavida            .       .         .        .        .        .      
## Phoebastria_irrorata             .       .         .        .        .        .      
## Pelecanoides_magellani           .       .         .        .        .        .      
## Lugensa_brevirostris             .       .         .        .        .        .      
## Halobaena_caerulea               .       .         .        .        .        .      
## Pachyptila_belcheri              .       .         .        .        .        .      
## Bulweria_fallax                  .       .         .        .        .        .      
## Calonectris_leucomelas           .       .         .        .        .        .      
## Puffinus_assimilis               .       .         .        .        .        .      
## Pseudobulweria_aterrima          .       .         .        .        .        .      
## Procellaria_cinerea              .       .         .        .        .        .      
## Pterodroma_longirostris          .       .         .        .        .        .      
## Fulmarus_glacialoides            .       .         .        .        .        .      
## Macronectes_giganteus            .       .         .        .        .        .      
## Pagodroma_nivea                  .       .         .        .        .        .      
## Thalassoica_antarctica           .       .         .        .        .        .      
## Daption_capense                  .       .         .        .        .        .      
## Halocyptena_microsoma            .       .         .        .        .        .      
## Hydrobates_pelagicus             .       .         .        .        .        .      
## Oceanodroma_furcata              .       .         .        .        .        .      
## Opisthocomus_hoazin              .       .         .        .        .        .      
## Phaethon_rubricauda              .       .         .        .        .        .      
## Musophaga_rossae                 .       .         .        .        .        .      
## Tauraco_erythrolophus            .       .         .        .        .        .      
## Ruwenzorornis_johnstoni          .       .         .        .        .        .      
## Corythaeola_cristata             .       .         .        .        .        .      
## Corythaixoides_leucogaster       .       .         .        .        .        .      
## Crinifer_piscator                .       .         .        .        .        .      
## Houbaropsis_bengalensis          .       .         .        .        .        .      
## Sypheotides_indicus              .       .         .        .        .        .      
## Eupodotis_savilei                .       .         .        .        .        .      
## Tetrax_tetrax                    .       .         .        .        .        .      
## Chlamydotis_undulata             .       .         .        .        .        .      
## Otis_tarda                       .       .         .        .        .        .      
## Ardeotis_kori                    .       .         .        .        .        .      
## Neotis_denhami                   .       .         .        .        .        .      
## Ibidorhyncha_struthersii         .       .         .        .        .        .      
## Haematopus_longirostris          .       .         .        .        .        .      
## Recurvirostra_avosetta           .       .         .        .        .        .      
## Himantopus_himantopus            .       .         .        .        .        .      
## Cladorhynchus_leucocephalus      .       .         .        .        .        .      
## Pluvialis_squatarola             .       .         .        .        .        .      
## Phegornis_mitchellii             .       .         .        .        .        .      
## Charadrius_vociferus             .       .         .        .        .        .      
## Thinornis_rubricollis            .       .         .        .        .        .      
## Elseyornis_melanops              .       .         .        .        .        .      
## Eudromias_morinellus             .       .         .        .        .        .      
## Vanellus_vanellus                .       .         .        .        .        .      
## Erythrogonys_cinctus             .       .         .        .        .        .      
## Anarhynchus_frontalis            .       .         .        .        .        .      
## Oreopholus_ruficollis            .       .         .        .        .        .      
## Pluvianus_aegyptius              .       .         .        .        .        .      
## Esacus_recurvirostris            .       .         .        .        .        .      
## Burhinus_superciliaris           .       .         .        .        .        .      
## Chionis_albus                    .       .         .        .        .        .      
## Pluvianellus_socialis            .       .         .        .        .        .      
## Thinocorus_rumicivorus           .       .         .        .        .        .      
## Attagis_gayi                     .       .         .        .        .        .      
## Pedionomus_torquatus             .       .         .        .        .        .      
## Rostratula_benghalensis          .       .         .        .        .        .      
## Jacana_spinosa                   .       .         .        .        .        .      
## Hydrophasianus_chirurgus         .       .         .        .        .        .      
## Actophilornis_albinucha          .       .         .        .        .        .      
## Metopidius_indicus               .       .         .        .        .        .      
## Microparra_capensis              .       .         .        .        .        .      
## Irediparra_gallinacea            .       .         .        .        .        .      
## Bartramia_longicauda             .       .         .        .        .        .      
## Numenius_arquata                 .       .         .        .        .        .      
## Lymnocryptes_minimus             .       .         .        .        .        .      
## Limosa_lapponica                 .       .         .        .        .        .      
## Phalaropus_fulicarius            .       .         .        .        .        .      
## Steganopus_tricolor              .       .         .        .        .        .      
## Xenus_cinereus                   .       .         .        .        .        .      
## Prosobonia_cancellata            .       .         .        .        .        .      
## Catoptrophorus_semipalmatus      .       .         .        .        .        .      
## Heteroscelus_brevipes            .       .         .        .        .        .      
## Tringa_ochropus                  .       .         .        .        .        .      
## Actitis_macularius               .       .         .        .        .        .      
## Coenocorypha_pusilla             .       .         .        .        .        .      
## Gallinago_gallinago              .       .         .        .        .        .      
## Scolopax_rusticola               .       .         .        .        .        .      
## Limnodromus_semipalmatus         .       .         .        .        .        .      
## Aphriza_virgata                  .       .         .        .        .        .      
## Calidris_tenuirostris            .       .         .        .        .        .      
## Limicola_falcinellus             .       .         .        .        .        .      
## Philomachus_pugnax               .       .         .        .        .        .      
## Tryngites_subruficollis          .       .         .        .        .        .      
## Eurynorhynchus_pygmeus           .       .         .        .        .        .      
## Arenaria_interpres               .       .         .        .        .        .      
## Turnix_sylvaticus                .       .         .        .        .        .      
## Ortyxelos_meiffrenii             .       .         .        .        .        .      
## Stercorarius_longicaudus         .       .         .        .        .        .      
## Catharacta_lonnbergi             .       .         .        .        .        .      
## Synthliboramphus_antiquus        .       .         .        .        .        .      
## Uria_aalge                       .       .         .        .        .        .      
## Alca_torda                       .       .         .        .        .        .      
## Alle_alle                        .       .         .        .        .        .      
## Brachyramphus_marmoratus         .       .         .        .        .        .      
## Cepphus_grylle                   .       .         .        .        .        .      
## Ptychoramphus_aleuticus          .       .         .        .        .        .      
## Aethia_psittacula                .       .         .        .        .        .      
## Cerorhinca_monocerata            .       .         .        .        .        .      
## Fratercula_corniculata           .       .         .        .        .        .      
## Rynchops_niger                   .       .         .        .        .        .      
## Pagophila_eburnea                .       .         .        .        .        .      
## Xema_sabini                      .       .         .        .        .        .      
## Rissa_tridactyla                 .       .         .        .        .        .      
## Larus_saundersi                  .       .         .        .        .        .      
## Leucophaeus_scoresbii            .       .         .        .        .        .      
## Rhodostethia_rosea               .       .         .        .        .        .      
## Creagrus_furcatus                .       .         .        .        .        .      
## Anous_stolidus                   .       .         .        .        .        .      
## Sterna_nilotica                  .       .         .        .        .        .      
## Chlidonias_hybrida               .       .         .        .        .        .      
## Larosterna_inca                  .       .         .        .        .        .      
## Phaetusa_simplex                 .       .         .        .        .        .      
## Gygis_alba                       .       .         .        .        .        .      
## Procelsterna_cerulea             .       .         .        .        .        .      
## Dromas_ardeola                   .       .         .        .        .        .      
## Rhinoptilus_africanus            .       .         .        .        .        .      
## Cursorius_cursor                 .       .         .        .        .        .      
## Glareola_pratincola              .       .         .        .        .        .      
## Stiltia_isabella                 .       .         .        .        .        .      
## Anurolimnas_castaneiceps         .       .         .        .        .        .      
## Podica_senegalensis              .       .         .        .        .        .      
## Heliopais_personatus             .       .         .        .        .        .      
## Heliornis_fulica                 .       .         .        .        .        .      
## Sarothrura_pulchra               .       .         .        .        .        .      
## Porphyrio_porphyrio              .       .         .        .        .        .      
## Gymnocrex_rosenbergii            .       .         .        .        .        .      
## Laterallus_melanophaius          .       .         .        .        .        .      
## Dryolimnas_cuvieri               .       .         .        .        .        .      
## Gallicrex_cinerea                .       .         .        .        .        .      
## Coturnicops_exquisitus           .       .         .        .        .        .      
## Rallina_fasciata                 .       .         .        .        .        .      
## Pardirallus_maculatus            .       .         .        .        .        .      
## Habroptila_wallacii              .       .         .        .        .        .      
## Aramides_cajanea                 .       .         .        .        .        .      
## Rougetius_rougetii               .       .         .        .        .        .      
## Canirallus_oculeus               .       .         .        .        .        .      
## Megacrex_inepta                  .       .         .        .        .        .      
## Gallirallus_torquatus            .       .         .        .        .        .      
## Crex_crex                        .       .         .        .        .        .      
## Rallus_longirostris              .       .         .        .        .        .      
## Eulabeornis_castaneoventris      .       .         .        .        .        .      
## Neocrex_colombiana               .       .         .        .        .        .      
## Amaurornis_olivacea              .       .         .        .        .        .      
## Himantornis_haematopus           .       .         .        .        .        .      
## Lewinia_pectoralis               .       .         .        .        .        .      
## Micropygia_schomburgkii          .       .         .        .        .        .      
## Gallinula_nesiotis               .       .         .        .        .        .      
## Fulica_armillata                 .       .         .        .        .        .      
## Crecopsis_egregia                .       .         .        .        .        .      
## Aenigmatolimnas_marginalis       .       .         .        .        .        .      
## Porzana_parva                    .       .         .        .        .        .      
## Amaurolimnas_concolor            .       .         .        .        .        .      
## Atlantisia_rogersi               .       .         .        .        .        .      
## Psophia_viridis                  .       .         .        .        .        .      
## Aramus_guarauna                  .       .         .        .        .        .      
## Grus_rubicunda                   .       .         .        .        .        .      
## Balearica_regulorum              .       .         .        .        .        .      
## Monias_benschi                   .       .         .        .        .        .      
## Mesitornis_unicolor              .       .         .        .        .        .      
## Phoenicopterus_ruber             .       .         .        .        .        .      
## Phoenicoparrus_andinus           .       .         .        .        .        .      
## Phoeniconaias_minor              .       .         .        .        .        .      
## Poliocephalus_poliocephalus      .       .         .        .        .        .      
## Podilymbus_podiceps              .       .         .        .        .        .      
## Tachybaptus_ruficollis           .       .         .        .        .        .      
## Aechmophorus_occidentalis        .       .         .        .        .        .      
## Podiceps_cristatus               .       .         .        .        .        .      
## Rollandia_rolland                .       .         .        .        .        .      
## Centropus_milo                   .       .         .        .        .        .      
## Carpococcyx_radiatus             .       .         .        .        .        .      
## Coua_serriana                    .       .         .        .        .        .      
## Phaenicophaeus_cumingi           .       .         .        .        .        .      
## Clamator_jacobinus               .       .         .        .        .        .      
## Coccyzus_merlini                 .       .         .        .        .        .      
## Piaya_cayana                     .       .         .        .        .        .      
## Coccycua_pumila                  .       .         .        .        .        .      
## Ceuthmochares_aereus             .       .         .        .        .        .      
## Pachycoccyx_audeberti            .       .         .        .        .        .      
## Scythrops_novaehollandiae        .       .         .        .        .        .      
## Cuculus_canorus                  .       .         .        .        .        .      
## Caliechthrus_leucolophus         .       .         .        .        .        .      
## Surniculus_lugubris              .       .         .        .        .        .      
## Cercococcyx_mechowi              .       .         .        .        .        .      
## Cacomantis_sonneratii            .       .         .        .        .        .      
## Chrysococcyx_minutillus          .       .         .        .        .        .      
## Rhamphomantis_megarhynchus       .       .         .        .        .        .      
## Microdynamis_parva               .       .         .        .        .        .      
## Eudynamys_scolopaceus            .       .         .        .        .        .      
## Guira_guira                      .       .         .        .        .        .      
## Crotophaga_major                 .       .         .        .        .        .      
## Geococcyx_californianus          .       .         .        .        .        .      
## Neomorphus_geoffroyi             .       .         .        .        .        .      
## Morococcyx_erythropygus          .       .         .        .        .        .      
## Dromococcyx_phasianellus         .       .         .        .        .        .      
## Tapera_naevia                    .       .         .        .        .        .      
## Eurypyga_helias                  .       .         .        .        .        .      
## Rhynochetos_jubatus              .       .         .        .        .        .      
## Chunga_burmeisteri               .       .         .        .        .        .      
## Cariama_cristata                 .       .         .        .        .        .      
## Spiziapteryx_circumcincta        .       .         .        .        .        .      
## Caracara_cheriway                .       .         .        .        .        .      
## Ibycter_americanus               .       .         .        .        .        .      
## Milvago_chimachima               .       .         .        .        .        .      
## Daptrius_ater                    .       .         .        .        .        .      
## Phalcoboenus_carunculatus        .       .         .        .        .        .      
## Falco_cherrug                    .       .         .        .        .        .      
## Polihierax_semitorquatus         .       .         .        .        .        .      
## Microhierax_caerulescens         .       .         .        .        .        .      
## Herpetotheres_cachinnans         .       .         .        .        .        .      
## Micrastur_ruficollis             .       .         .        .        .        .      
## Xenicus_gilviventris             .       .         .        .        .        .      
## Acanthisitta_chloris             .       .         .        .        .        .      
## Sapayoa_aenigma                  .       .         .        .        .        .      
## Neodrepanis_coruscans            .       .         .        .        .        .      
## Philepitta_schlegeli             .       .         .        .        .        .      
## Eurylaimus_steerii               .       .         .        .        .        .      
## Cymbirhynchus_macrorhynchos      .       .         .        .        .        .      
## Serilophus_lunatus               .       .         .        .        .        .      
## Corydon_sumatranus               .       .         .        .        .        .      
## Psarisomus_dalhousiae            .       .         .        .        .        .      
## Pseudocalyptomena_graueri        .       .         .        .        .        .      
## Calyptomena_viridis              .       .         .        .        .        .      
## Smithornis_capensis              .       .         .        .        .        .      
## Pitta_steerii                    .       .         .        .        .        .      
## Terenotriccus_erythrurus         .       .         .        .        .        .      
## Onychorhynchus_coronatus         .       .         .        .        .        .      
## Oxyruncus_cristatus              .       .         .        .        .        .      
## Cnipodectes_subbrunneus          .       .         .        .        .        .      
## Todirostrum_maculatum            .       .         .        .        .        .      
## Poecilotriccus_ruficeps          .       .         .        .        .        .      
## Oncostoma_cinereigulare          .       .         .        .        .        .      
## Lophotriccus_pileatus            .       .         .        .        .        .      
## Hemitriccus_minor                .       .         .        .        .        .      
## Atalotriccus_pilaris             .       .         .        .        .        .      
## Myiornis_auricularis             .       .         .        .        .        .      
## Rhynchocyclus_brevirostris       .       .         .        .        .        .      
## Tolmomyias_sulphurescens         .       .         .        .        .        .      
## Corythopis_torquatus             .       .         .        .        .        .      
## Pseudotriccus_pelzelni           .       .         .        .        .        .      
## Phylloscartes_eximius            .       .         .        .        .        .      
## Leptopogon_amaurocephalus        .       .         .        .        .        .      
## Mionectes_olivaceus              .       .         .        .        .        .      
## Tachuris_rubrigastra             .       .         .        .        .        .      
## Neopipo_cinnamomea               .       .         .        .        .        .      
## Platyrinchus_leucoryphus         .       .         .        .        .        .      
## Culicivora_caudacuta             .       .         .        .        .        .      
## Anairetes_agilis                 .       .         .        .        .        .      
## Pseudocolopteryx_flaviventris    .       .         .        .        .        .      
## Serpophaga_cinerea               .       .         .        .        .        .      
## Polystictus_pectoralis           .       .         .        .        .        .      
## Pseudelaenia_leucospodia         .       .         .        .        .        .      
## Stigmatura_napensis              .       .         .        .        .        .      
## Mecocerculus_leucophrys          .       .         .        .        .        .      
## Phaeomyias_murina                .       .         .        .        .        .      
## Capsiempis_flaveola              .       .         .        .        .        .      
## Suiriri_suiriri                  .       .         .        .        .        .      
## Tyrannulus_elatus                .       .         .        .        .        .      
## Myiopagis_gaimardii              .       .         .        .        .        .      
## Elaenia_martinica                .       .         .        .        .        .      
## Zimmerius_vilissimus             .       .         .        .        .        .      
## Nesotriccus_ridgwayi             .       .         .        .        .        .      
## Ornithion_inerme                 .       .         .        .        .        .      
## Camptostoma_imberbe              .       .         .        .        .        .      
## Phyllomyias_burmeisteri          .       .         .        .        .        .      
## Inezia_inornata                  .       .         .        .        .        .      
## Euscarthmus_meloryphus           .       .         .        .        .        .      
## Muscigralla_brevicauda           .       .         .        .        .        .      
## Conopias_parvus                  .       .         .        .        .        .      
## Colorhamphus_parvirostris        .       .         .        .        .        .      
## Colonia_colonus                  .       .         .        .        .        .      
## Mitrephanes_phaeocercus          .       .         .        .        .        .      
## Empidonax_affinis                .       .         .        .        .        .      
## Contopus_cooperi                 .       .         .        .        .        .      
## Sayornis_phoebe                  .       .         .        .        .        .      
## Lathrotriccus_euleri             .       .         .        .        .        .      
## Ochthornis_littoralis            .       .         .        .        .        .      
## Cnemotriccus_fuscatus            .       .         .        .        .        .      
## Aphanotriccus_capitalis          .       .         .        .        .        .      
## Muscisaxicola_maculirostris      .       .         .        .        .        .      
## Satrapa_icterophrys              .       .         .        .        .        .      
## Muscipipra_vetula                .       .         .        .        .        .      
## Knipolegus_striaticeps           .       .         .        .        .        .      
## Hymenops_perspicillatus          .       .         .        .        .        .      
## Lessonia_oreas                   .       .         .        .        .        .      
## Myiotheretes_striaticollis       .       .         .        .        .        .      
## Agriornis_montanus               .       .         .        .        .        .      
## Neoxolmis_rufiventris            .       .         .        .        .        .      
## Xolmis_pyrope                    .       .         .        .        .        .      
## Cnemarchus_erythropygius         .       .         .        .        .        .      
## Polioxolmis_rufipennis           .       .         .        .        .        .      
## Arundinicola_leucocephala        .       .         .        .        .        .      
## Alectrurus_tricolor              .       .         .        .        .        .      
## Gubernetes_yetapa                .       .         .        .        .        .      
## Pyrocephalus_rubinus             .       .         .        .        .        .      
## Fluvicola_pica                   .       .         .        .        .        .      
## Sublegatus_modestus              .       .         .        .        .        .      
## Tumbezia_salvini                 .       .         .        .        .        .      
## Ochthoeca_frontalis              .       .         .        .        .        .      
## Myiophobus_flavicans             .       .         .        .        .        .      
## Legatus_leucophaius              .       .         .        .        .        .      
## Pitangus_lictor                  .       .         .        .        .        .      
## Machetornis_rixosa               .       .         .        .        .        .      
## Myiozetetes_cayanensis           .       .         .        .        .        .      
## Empidonomus_varius               .       .         .        .        .        .      
## Tyrannus_melancholicus           .       .         .        .        .        .      
## Megarynchus_pitangua             .       .         .        .        .        .      
## Tyrannopsis_sulphurea            .       .         .        .        .        .      
## Myiodynastes_hemichrysus         .       .         .        .        .        .      
## Sirystes_sibilator               .       .         .        .        .        .      
## Myiarchus_semirufus              .       .         .        .        .        .      
## Rhytipterna_simplex              .       .         .        .        .        .      
## Casiornis_rufus                  .       .         .        .        .        .      
## Phelpsia_inornatus               .       .         .        .        .        .      
## Attila_spadiceus                 .       .         .        .        .        .      
## Ramphotrigon_ruficauda           .       .         .        .        .        .      
## Deltarhynchus_flammulatus        .       .         .        .        .        .      
## Pyrrhomyias_cinnamomeus          .       .         .        .        .        .      
## Hirundinea_ferruginea            .       .         .        .        .        .      
## Myiotriccus_ornatus              .       .         .        .        .        .      
## Piprites_pileata                 .       .         .        .        .        .      
## Iodopleura_fusca                 .       .         .        .        .        .      
## Tityra_semifasciata              .       .         .        .        .        .      
## Pachyramphus_viridis             .       .         .        .        .        .      
## Schiffornis_major                .       .         .        .        .        .      
## Laniisoma_elegans                .       .         .        .        .        .      
## Laniocera_rufescens              .       .         .        .        .        .      
## Corapipo_gutturalis              .       .         .        .        .        .      
## Masius_chrysopterus              .       .         .        .        .        .      
## Ilicura_militaris                .       .         .        .        .        .      
## Antilophia_galeata               .       .         .        .        .        .      
## Chiroxiphia_linearis             .       .         .        .        .        .      
## Xenopipo_atronitens              .       .         .        .        .        .      
## Lepidothrix_coronata             .       .         .        .        .        .      
## Machaeropterus_pyrocephalus      .       .         .        .        .        .      
## Pipra_chloromeros                .       .         .        .        .        .      
## Manacus_vitellinus               .       .         .        .        .        .      
## Heterocercus_flavivertex         .       .         .        .        .        .      
## Tyranneutes_stolzmanni           .       .         .        .        .        .      
## Neopelma_chrysocephalum          .       .         .        .        .        .      
## Doliornis_sclateri               .       .         .        .        .        .      
## Ampelion_rubrocristatus          .       .         .        .        .        .      
## Phytotoma_raimondii              .       .         .        .        .        .      
## Carpornis_cucullata              .       .         .        .        .        .      
## Snowornis_subalaris              .       .         .        .        .        .      
## Querula_purpurata                .       .         .        .        .        .      
## Pyroderus_scutatus               .       .         .        .        .        .      
## Cephalopterus_penduliger         .       .         .        .        .        .      
## Perissocephalus_tricolor         .       .         .        .        .        .      
## Haematoderus_militaris           .       .         .        .        .        .      
## Procnias_tricarunculatus         .       .         .        .        .        .      
## Carpodectes_nitidus              .       .         .        .        .        .      
## Xipholena_punicea                .       .         .        .        .        .      
## Gymnoderus_foetidus              .       .         .        .        .        .      
## Porphyrolaema_porphyrolaema      .       .         .        .        .        .      
## Phibalura_flavirostris           .       .         .        .        .        .      
## Lipaugus_fuscocinereus           .       .         .        .        .        .      
## Tijuca_atra                      .       .         .        .        .        .      
## Cotinga_amabilis                 .       .         .        .        .        .      
## Calyptura_cristata               .       .         .        .        .        .      
## Rupicola_rupicola                .       .         .        .        .        .      
## Phoenicircus_nigricollis         .       .         .        .        .        .      
## Ampelioides_tschudii             .       .         .        .        .        .      
## Pipreola_whitelyi                .       .         .        .        .        .      
## Thamnistes_anabatinus            .       .         .        .        .        .      
## Pygiptila_stellaris              .       .         .        .        .        .      
## Myrmornis_torquata               .       .         .        .        .        .      
## Neoctantes_niger                 .       .         .        .        .        .      
## Epinecrophylla_fulviventris      .       .         .        .        .        .      
## Myrmorchilus_strigilatus         .       .         .        .        .        .      
## Microrhopias_quixensis           .       .         .        .        .        .      
## Clytoctantes_alixii              .       .         .        .        .        .      
## Formicivora_grisea               .       .         .        .        .        .      
## Myrmotherula_brachyura           .       .         .        .        .        .      
## Cercomacra_cinerascens           .       .         .        .        .        .      
## Hypocnemis_cantator              .       .         .        .        .        .      
## Drymophila_ferruginea            .       .         .        .        .        .      
## Willisornis_poecilinotus         .       .         .        .        .        .      
## Rhegmatorhina_gymnops            .       .         .        .        .        .      
## Gymnopithys_rufigula             .       .         .        .        .        .      
## Phlegopsis_nigromaculata         .       .         .        .        .        .      
## Phaenostictus_mcleannani         .       .         .        .        .        .      
## Pithys_albifrons                 .       .         .        .        .        .      
## Rhopornis_ardesiacus             .       .         .        .        .        .      
## Myrmoborus_leucophrys            .       .         .        .        .        .      
## Percnostola_rufifrons            .       .         .        .        .        .      
## Pyriglena_atra                   .       .         .        .        .        .      
## Gymnocichla_nudiceps             .       .         .        .        .        .      
## Myrmeciza_ruficauda              .       .         .        .        .        .      
## Hylophylax_naevioides            .       .         .        .        .        .      
## Hypocnemoides_maculicauda        .       .         .        .        .        .      
## Schistocichla_leucostigma        .       .         .        .        .        .      
## Sclateria_naevia                 .       .         .        .        .        .      
## Thamnomanes_saturninus           .       .         .        .        .        .      
## Megastictus_margaritatus         .       .         .        .        .        .      
## Biatas_nigropectus               .       .         .        .        .        .      
## Herpsilochmus_rufimarginatus     .       .         .        .        .        .      
## Dysithamnus_stictothorax         .       .         .        .        .        .      
## Sakesphorus_canadensis           .       .         .        .        .        .      
## Thamnophilus_doliatus            .       .         .        .        .        .      
## Mackenziaena_severa              .       .         .        .        .        .      
## Frederickena_viridis             .       .         .        .        .        .      
## Hypoedaleus_guttatus             .       .         .        .        .        .      
## Batara_cinerea                   .       .         .        .        .        .      
## Taraba_major                     .       .         .        .        .        .      
## Cymbilaimus_lineatus             .       .         .        .        .        .      
## Dichrozona_cincta                .       .         .        .        .        .      
## Terenura_maculata                .       .         .        .        .        .      
## Pittasoma_michleri               .       .         .        .        .        .      
## Conopophaga_melanops             .       .         .        .        .        .      
## Melanopareia_torquata            .       .         .        .        .        .      
## Dendrocincla_tyrannina           .       .         .        .        .        .      
## Deconychura_longicauda           .       .         .        .        .        .      
## Sittasomus_griseicapillus        .       .         .        .        .        .      
## Dendroplex_picus                 .       .         .        .        .        .      
## Xiphorhynchus_obsoletus          .       .         .        .        .        .      
## Drymornis_bridgesii              .       .         .        .        .        .      
## Campylorhamphus_pucherani        .       .         .        .        .        .      
## Lepidocolaptes_souleyetii        .       .         .        .        .        .      
## Hylexetastes_perrotii            .       .         .        .        .        .      
## Xiphocolaptes_promeropirhynchus  .       .         .        .        .        .      
## Dendrocolaptes_picumnus          .       .         .        .        .        .      
## Nasica_longirostris              .       .         .        .        .        .      
## Dendrexetastes_rufigula          .       .         .        .        .        .      
## Glyphorynchus_spirurus           .       .         .        .        .        .      
## Xenops_rutilans                  .       .         .        .        .        .      
## Margarornis_rubiginosus          .       .         .        .        .        .      
## Premnoplex_brunnescens           .       .         .        .        .        .      
## Anabazenops_fuscus               .       .         .        .        .        .      
## Syndactyla_guttulata             .       .         .        .        .        .      
## Anabacerthia_variegaticeps       .       .         .        .        .        .      
## Cichlocolaptes_leucophrus        .       .         .        .        .        .      
## Heliobletus_contaminatus         .       .         .        .        .        .      
## Philydor_ruficaudatum            .       .         .        .        .        .      
## Ancistrops_strigilatus           .       .         .        .        .        .      
## Hylocryptus_rectirostris         .       .         .        .        .        .      
## Automolus_infuscatus             .       .         .        .        .        .      
## Hyloctistes_subulatus            .       .         .        .        .        .      
## Thripadectes_melanorhynchus      .       .         .        .        .        .      
## Berlepschia_rikeri               .       .         .        .        .        .      
## Premnornis_guttuligera           .       .         .        .        .        .      
## Tarphonomus_certhioides          .       .         .        .        .        .      
## Pseudocolaptes_lawrencii         .       .         .        .        .        .      
## Cinclodes_fuscus                 .       .         .        .        .        .      
## Upucerthia_serrana               .       .         .        .        .        .      
## Furnarius_rufus                  .       .         .        .        .        .      
## Phleocryptes_melanops            .       .         .        .        .        .      
## Limnornis_curvirostris           .       .         .        .        .        .      
## Lochmias_nematura                .       .         .        .        .        .      
## Leptasthenura_platensis          .       .         .        .        .        .      
## Sylviorthorhynchus_desmursii     .       .         .        .        .        .      
## Schizoeaca_coryi                 .       .         .        .        .        .      
## Pseudoseisura_cristata           .       .         .        .        .        .      
## Cranioleuca_vulpecula            .       .         .        .        .        .      
## Limnoctites_rectirostris         .       .         .        .        .        .      
## Siptornis_striaticollis          .       .         .        .        .        .      
## Thripophaga_macroura             .       .         .        .        .        .      
## Roraimia_adusta                  .       .         .        .        .        .      
## Metopothrix_aurantiaca           .       .         .        .        .        .      
## Synallaxis_brachyura             .       .         .        .        .        .      
## Asthenes_steinbachi              .       .         .        .        .        .      
## Siptornopsis_hypochondriaca      .       .         .        .        .        .      
## Schoeniophylax_phryganophilus    .       .         .        .        .        .      
## Certhiaxis_cinnamomeus           .       .         .        .        .        .      
## Spartonoica_maluroides           .       .         .        .        .        .      
## Anumbius_annumbi                 .       .         .        .        .        .      
## Coryphistera_alaudina            .       .         .        .        .        .      
## Hellmayrea_gularis               .       .         .        .        .        .      
## Phacellodomus_rufifrons          .       .         .        .        .        .      
## Aphrastura_spinicauda            .       .         .        .        .        .      
## Pygarrhichas_albogularis         .       .         .        .        .        .      
## Ochetorhynchus_andaecola         .       .         .        .        .        .      
## Sclerurus_rufigularis            .       .         .        .        .        .      
## Geositta_tenuirostris            .       .         .        .        .        .      
## Chamaeza_campanisona             .       .         .        .        .        .      
## Formicarius_colma                .       .         .        .        .        .      
## Eugralla_paradoxa                .       .         .        .        .        .      
## Scytalopus_meridanus             .       .         .        .        .        .      
## Myornis_senilis                  .       .         .        .        .        .      
## Eleoscytalopus_indigoticus       .       .         .        .        .        .      
## Merulaxis_ater                   .       .         .        .        .        .      
## Scelorchilus_rubecula            .       .         .        .        .        .      
## Pteroptochos_tarnii              .       .         .        .        .        .      
## Teledromas_fuscus                .       .         .        .        .        .      
## Rhinocrypta_lanceolata           .       .         .        .        .        .      
## Acropternis_orthonyx             .       .         .        .        .        .      
## Psilorhamphus_guttatus           .       .         .        .        .        .      
## Liosceles_thoracicus             .       .         .        .        .        .      
## Grallaria_ruficapilla            .       .         .        .        .        .      
## Myrmothera_campanisona           .       .         .        .        .        .      
## Hylopezus_perspicillatus         .       .         .        .        .        .      
## Grallaricula_flavirostris        .       .         .        .        .        .      
## Menura_novaehollandiae           .       .         .        .        .        .      
## Atrichornis_rufescens            .       .         .        .        .        .      
## Scenopoeetes_dentirostris        .       .         .        .        .        .      
## Prionodura_newtoniana            .       .         .        .        .        .      
## Archboldia_papuensis             .       .         .        .        .        .      
## Amblyornis_macgregoriae          .       .         .        .        .        .      
## Ailuroedus_crassirostris         .       .         .        .        .        .      
## Sericulus_chrysocephalus         .       .         .        .        .        .      
## Chlamydera_cerviniventris        .       .         .        .        .        .      
## Ptilonorhynchus_violaceus        .       .         .        .        .        .      
## Cormobates_leucophaea            .       .         .        .        .        .      
## Climacteris_affinis              .       .         .        .        .        .      
## Amytornis_barbatus               .       .         .        .        .        .      
## Stipiturus_malachurus            .       .         .        .        .        .      
## Sipodotus_wallacii               .       .         .        .        .        .      
## Malurus_cyaneus                  .       .         .        .        .        .      
## Dasyornis_longirostris           .       .         .        .        .        .      
## Melitograis_gilolensis           .       .         .        .        .        .      
## Glycichaera_fallax               .       .         .        .        .        .      
## Ptiloprora_guisei                .       .         .        .        .        .      
## Anthornis_melanura               .       .         .        .        .        .      
## Apalopteron_familiare            .       .         .        .        .        .      
## Lichenostomus_subfrenatus        .       .         .        .        .        .      
## Acanthorhynchus_superciliosus    .       .         .        .        .        .      
## Certhionyx_variegatus            .       .         .        .        .        .      
## Prosthemadera_novaeseelandiae    .       .         .        .        .        .      
## Pycnopygius_ixoides              .       .         .        .        .        .      
## Xanthomyza_phrygia               .       .         .        .        .        .      
## Anthochaera_chrysoptera          .       .         .        .        .        .      
## Acanthagenys_rufogularis         .       .         .        .        .        .      
## Stresemannia_bougainvillei       .       .         .        .        .        .      
## Manorina_melanocephala           .       .         .        .        .        .      
## Melidectes_torquatus             .       .         .        .        .        .      
## Guadalcanaria_inexpectata        .       .         .        .        .        .      
## Timeliopsis_fulvigula            .       .         .        .        .        .      
## Melilestes_megarhynchus          .       .         .        .        .        .      
## Melipotes_gymnops                .       .         .        .        .        .      
## Macgregoria_pulchra              .       .         .        .        .        .      
## Ashbyia_lovensis                 .       .         .        .        .        .      
## Epthianura_tricolor              .       .         .        .        .        .      
## Conopophila_albogularis          .       .         .        .        .        .      
## Ramsayornis_modestus             .       .         .        .        .        .      
## Myzomela_eichhorni               .       .         .        .        .        .      
## Gymnomyza_aubryana               .       .         .        .        .        .      
## Foulehaio_carunculatus           .       .         .        .        .        .      
## Entomyzon_cyanotis               .       .         .        .        .        .      
## Melithreptus_lunatus             .       .         .        .        .        .      
## Myza_sarasinorum                 .       .         .        .        .        .      
## Phylidonyris_pyrrhopterus        .       .         .        .        .        .      
## Trichodere_cockerelli            .       .         .        .        .        .      
## Lichmera_flavicans               .       .         .        .        .        .      
## Grantiella_picta                 .       .         .        .        .        .      
## Plectorhyncha_lanceolata         .       .         .        .        .        .      
## Xanthotis_provocator             .       .         .        .        .        .      
## Philemon_novaeguineae            .       .         .        .        .        .      
## Pardalotus_quadragintus          .       .         .        .        .        .      
## Aphelocephala_leucopsis          .       .         .        .        .        .      
## Acanthornis_magna                .       .         .        .        .        .      
## Acanthiza_murina                 .       .         .        .        .        .      
## Smicrornis_brevirostris          .       .         .        .        .        .      
## Origma_solitaria                 .       .         .        .        .        .      
## Crateroscelis_murina             .       .         .        .        .        .      
## Sericornis_citreogularis         .       .         .        .        .        .      
## Pycnoptilus_floccosus            .       .         .        .        .        .      
## Chthonicola_sagittatus           .       .         .        .        .        .      
## Pyrrholaemus_brunneus            .       .         .        .        .        .      
## Hylacola_pyrrhopygia             .       .         .        .        .        .      
## Calamanthus_fuliginosus          .       .         .        .        .        .      
## Gerygone_cinerea                 .       .         .        .        .        .      
## Oreoscopus_gutturalis            .       .         .        .        .        .      
## Pomatostomus_ruficeps            .       .         .        .        .        .      
## Orthonyx_temminckii              .       .         .        .        .        .      
## Notiomystis_cincta               .       .         .        .        .        .      
## Melanocharis_striativentris      .       .         .        .        .        .      
## Oedistoma_pygmaeum               .       .         .        .        .        .      
## Toxorhamphus_novaeguineae        .       .         .        .        .        .      
## Loboparadisea_sericea            .       .         .        .        .        .      
## Cnemophilus_macgregorii          .       .         .        .        .        .      
## Callaeas_cinereus                .       .         .        .        .        .      
## Philesturnus_carunculatus        .       .         .        .        .        .      
## Daphoenositta_chrysoptera        .       .         .        .        .        .      
## Oreocharis_arfaki                .       .         .        .        .        .      
## Paramythia_montium               .       .         .        .        .        .      
## Pitohui_dichrous                 .       .         .        .        .        .      
## Sphecotheres_hypoleucus          .       .         .        .        .        .      
## Oriolus_sagittatus               .       .         .        .        .        .      
## Lamprolia_victoriae              .       .         .        .        .        .      
## Rhipidura_teysmanni              .       .         .        .        .        .      
## Struthidea_cinerea               .       .         .        .        .        .      
## Corcorax_melanorhamphos          .       .         .        .        .        .      
## Hypothymis_azurea                .       .         .        .        .        .      
## Terpsiphone_rufiventer           .       .         .        .        .        .      
## Trochocercus_nitens              .       .         .        .        .        .      
## Grallina_cyanoleuca              .       .         .        .        .        .      
## Myiagra_alecto                   .       .         .        .        .        .      
## Monarcha_axillaris               .       .         .        .        .        .      
## Metabolus_rugensis               .       .         .        .        .        .      
## Clytorhynchus_hamlini            .       .         .        .        .        .      
## Mayrornis_lessoni                .       .         .        .        .        .      
## Neolalage_banksiana              .       .         .        .        .        .      
## Pomarea_whitneyi                 .       .         .        .        .        .      
## Chasiempis_sandwichensis         .       .         .        .        .        .      
## Arses_kaupi                      .       .         .        .        .        .      
## Melampitta_lugubris              .       .         .        .        .        .      
## Lycocorax_pyrrhopterus           .       .         .        .        .        .      
## Manucodia_comrii                 .       .         .        .        .        .      
## Parotia_carolae                  .       .         .        .        .        .      
## Pteridophora_alberti             .       .         .        .        .        .      
## Cicinnurus_regius                .       .         .        .        .        .      
## Paradisaea_raggiana              .       .         .        .        .        .      
## Paradigalla_brevicauda           .       .         .        .        .        .      
## Astrapia_splendidissima          .       .         .        .        .        .      
## Epimachus_bruijnii               .       .         .        .        .        .      
## Seleucidis_melanoleucus          .       .         .        .        .        .      
## Semioptera_wallacii              .       .         .        .        .        .      
## Ptiloris_intercedens             .       .         .        .        .        .      
## Lophorina_superba                .       .         .        .        .        .      
## Ifrita_kowaldi                   .       .         .        .        .        .      
## Eurocephalus_anguitimens         .       .         .        .        .        .      
## Lanius_minor                     .       .         .        .        .        .      
## Urolestes_melanoleucus           .       .         .        .        .        .      
## Corvinella_corvina               .       .         .        .        .        .      
## Platylophus_galericulatus        .       .         .        .        .        .      
## Cyanopica_cyanus                 .       .         .        .        .        .      
## Perisoreus_canadensis            .       .         .        .        .        .      
## Ptilostomus_afer                 .       .         .        .        .        .      
## Podoces_hendersoni               .       .         .        .        .        .      
## Pica_hudsonia                    .       .         .        .        .        .      
## Nucifraga_caryocatactes          .       .         .        .        .        .      
## Corvus_corone                    .       .         .        .        .        .      
## Garrulus_lidthi                  .       .         .        .        .        .      
## Zavattariornis_stresemanni       .       .         .        .        .        .      
## Calocitta_colliei                .       .         .        .        .        .      
## Cyanocorax_yncas                 .       .         .        .        .        .      
## Aphelocoma_insularis             .       .         .        .        .        .      
## Gymnorhinus_cyanocephalus        .       .         .        .        .        .      
## Cyanocitta_cristata              .       .         .        .        .        .      
## Cyanolyca_cucullata              .       .         .        .        .        .      
## Urocissa_caerulea                .       .         .        .        .        .      
## Cissa_hypoleuca                  .       .         .        .        .        .      
## Dendrocitta_leucogastra          .       .         .        .        .        .      
## Platysmurus_leucopterus          .       .         .        .        .        .      
## Temnurus_temnurus                .       .         .        .        .        .      
## Crypsirina_cucullata             .       .         .        .        .        .      
## Pyrrhocorax_pyrrhocorax          .       .         .        .        .        .      
## Dicrurus_caerulescens            .       .         .        .        .        .      
## Vireolanius_leucotis             .       .         .        .        .        .      
## Hylophilus_poicilotis            .       .         .        .        .        .      
## Vireo_brevipennis                .       .         .        .        .        .      
## Erpornis_zantholeuca             .       .         .        .        .        .      
## Cyclarhis_gujanensis             .       .         .        .        .        .      
## Pteruthius_rufiventer            .       .         .        .        .        .      
## Pachycephala_albiventris         .       .         .        .        .        .      
## Colluricincla_harmonica          .       .         .        .        .        .      
## Pachycare_flavogriseum           .       .         .        .        .        .      
## Aleadryas_rufinucha              .       .         .        .        .        .      
## Oreoica_gutturalis               .       .         .        .        .        .      
## Rhagologus_leucostigma           .       .         .        .        .        .      
## Machaerirhynchus_nigripectus     .       .         .        .        .        .      
## Artamus_fuscus                   .       .         .        .        .        .      
## Peltops_blainvillii              .       .         .        .        .        .      
## Strepera_graculina               .       .         .        .        .        .      
## Gymnorhina_tibicen               .       .         .        .        .        .      
## Cracticus_mentalis               .       .         .        .        .        .      
## Aegithina_viridissima            .       .         .        .        .        .      
## Malaconotus_alius                .       .         .        .        .        .      
## Tchagra_minutus                  .       .         .        .        .        .      
## Dryoscopus_angolensis            .       .         .        .        .        .      
## Telophorus_zeylonus              .       .         .        .        .        .      
## Rhodophoneus_cruentus            .       .         .        .        .        .      
## Laniarius_poensis                .       .         .        .        .        .      
## Nilaus_afer                      .       .         .        .        .        .      
## Euryceros_prevostii              .       .         .        .        .        .      
## Vanga_curvirostris               .       .         .        .        .        .      
## Xenopirostris_xenopirostris      .       .         .        .        .        .      
## Hypositta_corallirostris         .       .         .        .        .        .      
## Schetba_rufa                     .       .         .        .        .        .      
## Pseudobias_wardi                 .       .         .        .        .        .      
## Oriolia_bernieri                 .       .         .        .        .        .      
## Falculea_palliata                .       .         .        .        .        .      
## Newtonia_brunneicauda            .       .         .        .        .        .      
## Leptopterus_chabert              .       .         .        .        .        .      
## Cyanolanius_madagascarinus       .       .         .        .        .        .      
## Calicalicus_madagascariensis     .       .         .        .        .        .      
## Tylas_eduardi                    .       .         .        .        .        .      
## Artamella_viridis                .       .         .        .        .        .      
## Mystacornis_crossleyi            .       .         .        .        .        .      
## Philentoma_pyrhoptera            .       .         .        .        .        .      
## Megabyas_flammulatus             .       .         .        .        .        .      
## Bias_musicus                     .       .         .        .        .        .      
## Prionops_caniceps                .       .         .        .        .        .      
## Hemipus_picatus                  .       .         .        .        .        .      
## Tephrodornis_pondicerianus       .       .         .        .        .        .      
## Lanioturdus_torquatus            .       .         .        .        .        .      
## Batis_minor                      .       .         .        .        .        .      
## Platysteira_castanea             .       .         .        .        .        .      
## Pityriasis_gymnocephala          .       .         .        .        .        .      
## Lalage_melanoleuca               .       .         .        .        .        .      
## Coracina_typica                  .       .         .        .        .        .      
## Campochaera_sloetii              .       .         .        .        .        .      
## Campephaga_petiti                .       .         .        .        .        .      
## Pericrocotus_flammeus            .       .         .        .        .        .      
## Eulacestoma_nigropectus          .       .         .        .        .        .      
## Falcunculus_frontatus            .       .         .        .        .        .      
## Psophodes_olivaceus              .       .         .        .        .        .      
## Cinclosoma_castaneothorax        .       .         .        .        .        .      
## Ptilorrhoa_leucosticta           .       .         .        .        .        .      
## Mohoua_ochrocephala              .       .         .        .        .        .      
## Chaetops_aurantius               .       .         .        .        .        .      
## Eupetes_macrocerus               .       .         .        .        .        .      
## Picathartes_oreas                .       .         .        .        .        .      
## Microeca_fascinans               .       .         .        .        .        .      
## Monachella_muelleriana           .       .         .        .        .        .      
## Drymodes_superciliaris           .       .         .        .        .        .      
## Peneothello_sigillatus           .       .         .        .        .        .      
## Melanodryas_cucullata            .       .         .        .        .        .      
## Tregellasia_capito               .       .         .        .        .        .      
## Eopsaltria_griseogularis         .       .         .        .        .        .      
## Heteromyias_albispecularis       .       .         .        .        .        .      
## Poecilodryas_hypoleuca           .       .         .        .        .        .      
## Pachycephalopsis_poliosoma       .       .         .        .        .        .      
## Petroica_multicolor              .       .         .        .        .        .      
## Amalocichla_incerta              .       .         .        .        .        .      
## Auriparus_flaviceps              .       .         .        .        .        .      
## Remiz_pendulinus                 .       .         .        .        .        .      
## Anthoscopus_punctifrons          .       .         .        .        .        .      
## Sylviparus_modestus              .       .         .        .        .        .      
## Pseudopodoces_humilis            .       .         .        .        .        .      
## Parus_major                      .       .         .        .        .        .      
## Baeolophus_bicolor               .       .         .        .        .        .      
## Melanochlora_sultanea            .       .         .        .        .        .      
## Cephalopyrus_flammiceps          .       .         .        .        .        .      
## Elminia_longicauda               .       .         .        .        .        .      
## Culicicapa_ceylonensis           .       .         .        .        .        .      
## Stenostira_scita                 .       .         .        .        .        .      
## Chelidorhynx_hypoxantha          .       .         .        .        .        .      
## Nicator_chloris                  .       .         .        .        .        .      
## Panurus_biarmicus                .       .         .        .        .        .      
## Pinarocorys_erythropygia         .       .         .        .        .        .      
## Alaemon_alaudipes                .       .         .        .        .        .      
## Heteromirafra_ruddi              .       .         .        .        .        .      
## Chersomanes_albofasciata         .       .         .        .        .        .      
## Eremopterix_nigriceps            .       .         .        .        .        .      
## Certhilauda_curvirostris         .       .         .        .        .        .      
## Ammomanes_grayi                  .       .         .        .        .        .      
## Chersophilus_duponti             .       .         .        .        .        .      
## Rhamphocoris_clotbey             .       .         .        .        .        .      
## Eremophila_bilopha               .       .         .        .        .        .      
## Calandrella_cinerea              .       .         .        .        .        .      
## Melanocorypha_calandra           .       .         .        .        .        .      
## Eremalauda_starki                .       .         .        .        .        .      
## Spizocorys_conirostris           .       .         .        .        .        .      
## Lullula_arborea                  .       .         .        .        .        .      
## Galerida_magnirostris            .       .         .        .        .        .      
## Alauda_arvensis                  .       .         .        .        .        .      
## Mirafra_passerina                .       .         .        .        .        .      
## Pseudalaemon_fremantlii          .       .         .        .        .        .      
## Hyliota_australis                .       .         .        .        .        .      
## Amaurocichla_bocagei             .       .         .        .        .        .      
## Megalurulus_mariei               .       .         .        .        .        .      
## Scotocerca_inquieta              .       .         .        .        .        .      
## Nesillas_lantzii                 .       .         .        .        .        .      
## Hippolais_olivetorum             .       .         .        .        .        .      
## Acrocephalus_concinens           .       .         .        .        .        .      
## Chloropeta_natalensis            .       .         .        .        .        .      
## Locustella_luscinioides          .       .         .        .        .        .      
## Bradypterus_thoracicus           .       .         .        .        .        .      
## Schoenicola_brevirostris         .       .         .        .        .        .      
## Dromaeocercus_brunneus           .       .         .        .        .        .      
## Megalurus_gramineus              .       .         .        .        .        .      
## Eremiornis_carteri               .       .         .        .        .        .      
## Chaetornis_striata               .       .         .        .        .        .      
## Cincloramphus_cruralis           .       .         .        .        .        .      
## Randia_pseudozosterops           .       .         .        .        .        .      
## Crossleyia_xanthophrys           .       .         .        .        .        .      
## Bowdleria_punctata               .       .         .        .        .        .      
## Thamnornis_chloropetoides        .       .         .        .        .        .      
## Amphilais_seebohmi               .       .         .        .        .        .      
## Oxylabes_madagascariensis        .       .         .        .        .        .      
## Buettikoferella_bivittata        .       .         .        .        .        .      
## Hemitesia_neumanni               .       .         .        .        .        .      
## Neomixis_flavoviridis            .       .         .        .        .        .      
## Donacobius_atricapilla           .       .         .        .        .        .      
## Neolestes_torquatus              .       .         .        .        .        .      
## Pyrrhurus_scandens               .       .         .        .        .        .      
## Phyllastrephus_cabanisi          .       .         .        .        .        .      
## Criniger_barbatus                .       .         .        .        .        .      
## Bleda_notatus                    .       .         .        .        .        .      
## Baeopogon_indicator              .       .         .        .        .        .      
## Chlorocichla_simplex             .       .         .        .        .        .      
## Thescelocichla_leucopleura       .       .         .        .        .        .      
## Ixonotus_guttatus                .       .         .        .        .        .      
## Andropadus_montanus              .       .         .        .        .        .      
## Calyptocichla_serina             .       .         .        .        .        .      
## Tricholestes_criniger            .       .         .        .        .        .      
## Hemixos_flavala                  .       .         .        .        .        .      
## Hypsipetes_mcclellandii          .       .         .        .        .        .      
## Iole_olivacea                    .       .         .        .        .        .      
## Ixos_palawanensis                .       .         .        .        .        .      
## Setornis_criniger                .       .         .        .        .        .      
## Alophoixus_finschii              .       .         .        .        .        .      
## Spizixos_semitorques             .       .         .        .        .        .      
## Pycnonotus_sinensis              .       .         .        .        .        .      
## Bernieria_zosterops              .       .         .        .        .        .      
## Drymocichla_incana               .       .         .        .        .        .      
## Phragmacia_substriata            .       .         .        .        .        .      
## Malcorus_pectoralis              .       .         .        .        .        .      
## Heliolais_erythropterus          .       .         .        .        .        .      
## Graueria_vittata                 .       .         .        .        .        .      
## Incana_incana                    .       .         .        .        .        .      
## Hypergerus_atriceps              .       .         .        .        .        .      
## Eminia_lepida                    .       .         .        .        .        .      
## Euryptila_subcinnamomea          .       .         .        .        .        .      
## Bathmocercus_rufus               .       .         .        .        .        .      
## Cisticola_lateralis              .       .         .        .        .        .      
## Oreolais_pulchra                 .       .         .        .        .        .      
## Artisornis_moreaui               .       .         .        .        .        .      
## Urolais_epichlorus               .       .         .        .        .        .      
## Phyllolais_pulchella             .       .         .        .        .        .      
## Poliolais_lopezi                 .       .         .        .        .        .      
## Prinia_burnesii                  .       .         .        .        .        .      
## Camaroptera_chloronota           .       .         .        .        .        .      
## Spiloptila_clamans               .       .         .        .        .        .      
## Apalis_thoracica                 .       .         .        .        .        .      
## Eremomela_pusilla                .       .         .        .        .        .      
## Pnoepyga_albiventer              .       .         .        .        .        .      
## Kakamega_poliothorax             .       .         .        .        .        .      
## Hypocryptadius_cinnamomeus       .       .         .        .        .        .      
## Turdinus_macrodactylus           .       .         .        .        .        .      
## Graminicola_bengalensis          .       .         .        .        .        .      
## Malacopteron_magnum              .       .         .        .        .        .      
## Gypsophila_crispifrons           .       .         .        .        .        .      
## Robsonius_rabori                 .       .         .        .        .        .      
## Gampsorhynchus_rufulus           .       .         .        .        .        .      
## Napothera_brevicaudata           .       .         .        .        .        .      
## Rimator_pasquieri                .       .         .        .        .        .      
## Jabouilleia_danjoui              .       .         .        .        .        .      
## Malacocincla_abbotti             .       .         .        .        .        .      
## Illadopsis_cleaveri              .       .         .        .        .        .      
## Ptyrticus_turdinus               .       .         .        .        .        .      
## Pellorneum_albiventre            .       .         .        .        .        .      
## Trichastoma_rostratum            .       .         .        .        .        .      
## Kenopia_striata                  .       .         .        .        .        .      
## Kupeornis_gilberti               .       .         .        .        .        .      
## Phyllanthus_atripennis           .       .         .        .        .        .      
## Turdoides_hindei                 .       .         .        .        .        .      
## Babax_waddelli                   .       .         .        .        .        .      
## Garrulax_monileger               .       .         .        .        .        .      
## Cutia_nipalensis                 .       .         .        .        .        .      
## Liocichla_steerii                .       .         .        .        .        .      
## Heterophasia_picaoides           .       .         .        .        .        .      
## Leiothrix_argentauris            .       .         .        .        .        .      
## Strophocincla_cachinnans         .       .         .        .        .        .      
## Minla_cyanouroptera              .       .         .        .        .        .      
## Actinodura_egertoni              .       .         .        .        .        .      
## Spelaeornis_troglodytoides       .       .         .        .        .        .      
## Ptilocichla_leucogrammica        .       .         .        .        .        .      
## Xiphirhynchus_superciliaris      .       .         .        .        .        .      
## Pomatorhinus_montanus            .       .         .        .        .        .      
## Macronous_gularis                .       .         .        .        .        .      
## Timalia_pileata                  .       .         .        .        .        .      
## Dumetia_hyperythra               .       .         .        .        .        .      
## Sphenocichla_humei               .       .         .        .        .        .      
## Stachyris_ambigua                .       .         .        .        .        .      
## Rhopocichla_atriceps             .       .         .        .        .        .      
## Yuhina_castaniceps               .       .         .        .        .        .      
## Crocias_albonotatus              .       .         .        .        .        .      
## Cleptornis_marchei               .       .         .        .        .        .      
## Woodfordia_superciliosa          .       .         .        .        .        .      
## Tephrozosterops_stalkeri         .       .         .        .        .        .      
## Zosterops_erythropleurus         .       .         .        .        .        .      
## Chlorocharis_emiliae             .       .         .        .        .        .      
## Speirops_leucophoeus             .       .         .        .        .        .      
## Megazosterops_palauensis         .       .         .        .        .        .      
## Oculocincta_squamifrons          .       .         .        .        .        .      
## Lophozosterops_dohertyi          .       .         .        .        .        .      
## Heleia_crassirostris             .       .         .        .        .        .      
## Dasycrotapha_speciosa            .       .         .        .        .        .      
## Rukia_ruki                       .       .         .        .        .        .      
## Malia_grata                      .       .         .        .        .        .      
## Myzornis_pyrrhoura               .       .         .        .        .        .      
## Lioptilus_nigricapillus          .       .         .        .        .        .      
## Parophasma_galinieri             .       .         .        .        .        .      
## Paradoxornis_heudei              .       .         .        .        .        .      
## Chamaea_fasciata                 .       .         .        .        .        .      
## Chrysomma_sinense                .       .         .        .        .        .      
## Rhopophilus_pekinensis           .       .         .        .        .        .      
## Alcippe_ruficapilla              .       .         .        .        .        .      
## Conostoma_oemodium               .       .         .        .        .        .      
## Sylvia_atricapilla               .       .         .        .        .        .      
## Horizorhinus_dohrni              .       .         .        .        .        .      
## Pseudoalcippe_abyssinica         .       .         .        .        .        .      
## Tachycineta_bicolor              .       .         .        .        .        .      
## Pygochelidon_cyanoleuca          .       .         .        .        .        .      
## Atticora_melanoleuca             .       .         .        .        .        .      
## Haplochelidon_andecola           .       .         .        .        .        .      
## Notiochelidon_murina             .       .         .        .        .        .      
## Alopochelidon_fucata             .       .         .        .        .        .      
## Neochelidon_tibialis             .       .         .        .        .        .      
## Stelgidopteryx_serripennis       .       .         .        .        .        .      
## Progne_subis                     .       .         .        .        .        .      
## Phedina_borbonica                .       .         .        .        .        .      
## Riparia_cincta                   .       .         .        .        .        .      
## Delichon_urbicum                 .       .         .        .        .        .      
## Hirundo_rupestris                .       .         .        .        .        .      
## Petrochelidon_pyrrhonota         .       .         .        .        .        .      
## Psalidoprocne_nitens             .       .         .        .        .        .      
## Pseudhirundo_griseopyga          .       .         .        .        .        .      
## Cheramoeca_leucosterna           .       .         .        .        .        .      
## Eurochelidon_sirintarae          .       .         .        .        .        .      
## Pseudochelidon_eurystomina       .       .         .        .        .        .      
## Pholidornis_rushiae              .       .         .        .        .        .      
## Hylia_prasina                    .       .         .        .        .        .      
## Erythrocercus_holochlorus        .       .         .        .        .        .      
## Abroscopus_schisticeps           .       .         .        .        .        .      
## Tesia_cyaniventer                .       .         .        .        .        .      
## Urosphena_squameiceps            .       .         .        .        .        .      
## Cettia_diphone                   .       .         .        .        .        .      
## Orthotomus_cuculatus             .       .         .        .        .        .      
## Tickellia_hodgsoni               .       .         .        .        .        .      
## Seicercus_montis                 .       .         .        .        .        .      
## Phylloscopus_canariensis         .       .         .        .        .        .      
## Leptopoecile_sophiae             .       .         .        .        .        .      
## Psaltria_exilis                  .       .         .        .        .        .      
## Psaltriparus_minimus             .       .         .        .        .        .      
## Aegithalos_concinnus             .       .         .        .        .        .      
## Macrosphenus_kretschmeri         .       .         .        .        .        .      
## Melocichla_mentalis              .       .         .        .        .        .      
## Achaetops_pycnopygius            .       .         .        .        .        .      
## Sphenoeacus_afer                 .       .         .        .        .        .      
## Sylvietta_rufescens              .       .         .        .        .        .      
## Dulus_dominicus                  .       .         .        .        .        .      
## Phainoptila_melanoxantha         .       .         .        .        .        .      
## Phainopepla_nitens               .       .         .        .        .        .      
## Ptilogonys_cinereus              .       .         .        .        .        .      
## Bombycilla_garrulus              .       .         .        .        .        .      
## Hylocitrea_bonensis              .       .         .        .        .        .      
## Hypocolius_ampelinus             .       .         .        .        .        .      
## Certhia_familiaris               .       .         .        .        .        .      
## Tichodroma_muraria               .       .         .        .        .        .      
## Salpornis_spilonotus             .       .         .        .        .        .      
## Thryomanes_bewickii              .       .         .        .        .        .      
## Henicorhina_leucosticta          .       .         .        .        .        .      
## Thryothorus_atrogularis          .       .         .        .        .        .      
## Ferminia_cerverai                .       .         .        .        .        .      
## Uropsila_leucogastra             .       .         .        .        .        .      
## Cyphorhinus_arada                .       .         .        .        .        .      
## Cinnycerthia_unirufa             .       .         .        .        .        .      
## Thryorchilus_browni              .       .         .        .        .        .      
## Cistothorus_platensis            .       .         .        .        .        .      
## Troglodytes_troglodytes          .       .         .        .        .        .      
## Campylorhynchus_brunneicapillus  .       .         .        .        .        .      
## Microcerculus_philomela          .       .         .        .        .        .      
## Hylorchilus_sumichrasti          .       .         .        .        .        .      
## Catherpes_mexicanus              .       .         .        .        .        .      
## Salpinctes_obsoletus             .       .         .        .        .        .      
## Microbates_cinereiventris        .       .         .        .        .        .      
## Polioptila_dumicola              .       .         .        .        .        .      
## Ramphocaenus_melanurus           .       .         .        .        .        .      
## Sitta_formosa                    .       .         .        .        .        .      
## Rhabdornis_mystacalis            .       .         .        .        .        .      
## Enodes_erythrophris              .       .         .        .        .        .      
## Scissirostrum_dubium             .       .         .        .        .        .      
## Aplonis_grandis                  .       .         .        .        .        .      
## Basilornis_mirandus              .       .         .        .        .        .      
## Sarcops_calvus                   .       .         .        .        .        .      
## Streptocitta_albicollis          .       .         .        .        .        .      
## Mino_dumontii                    .       .         .        .        .        .      
## Ampeliceps_coronatus             .       .         .        .        .        .      
## Gracula_religiosa                .       .         .        .        .        .      
## Lamprotornis_australis           .       .         .        .        .        .      
## Spreo_albicapillus               .       .         .        .        .        .      
## Cosmopsarus_regius               .       .         .        .        .        .      
## Coccycolius_iris                 .       .         .        .        .        .      
## Neocichla_gutturalis             .       .         .        .        .        .      
## Saroglossa_spiloptera            .       .         .        .        .        .      
## Speculipastor_bicolor            .       .         .        .        .        .      
## Grafisia_torquata                .       .         .        .        .        .      
## Cinnyricinclus_femoralis         .       .         .        .        .        .      
## Poeoptera_lugubris               .       .         .        .        .        .      
## Onychognathus_nabouroup          .       .         .        .        .        .      
## Creatophora_cinerea              .       .         .        .        .        .      
## Sturnus_erythropygius            .       .         .        .        .        .      
## Leucopsar_rothschildi            .       .         .        .        .        .      
## Acridotheres_tristis             .       .         .        .        .        .      
## Mimus_parvulus                   .       .         .        .        .        .      
## Oreoscoptes_montanus             .       .         .        .        .        .      
## Toxostoma_crissale               .       .         .        .        .        .      
## Melanotis_caerulescens           .       .         .        .        .        .      
## Melanoptila_glabrirostris        .       .         .        .        .        .      
## Ramphocinclus_brachyurus         .       .         .        .        .        .      
## Cinclocerthia_ruficauda          .       .         .        .        .        .      
## Margarops_fuscus                 .       .         .        .        .        .      
## Dumetella_carolinensis           .       .         .        .        .        .      
## Buphagus_erythrorhynchus         .       .         .        .        .        .      
## Cinclus_pallasii                 .       .         .        .        .        .      
## Psophocichla_litsitsirupa        .       .         .        .        .        .      
## Nesocichla_eremita               .       .         .        .        .        .      
## Turdus_pallidus                  .       .         .        .        .        .      
## Geomalia_heinrichi               .       .         .        .        .        .      
## Grandala_coelicolor              .       .         .        .        .        .      
## Hylocichla_mustelina             .       .         .        .        .        .      
## Catharus_guttatus                .       .         .        .        .        .      
## Cichlopsis_leucogenys            .       .         .        .        .        .      
## Entomodestes_coracinus           .       .         .        .        .        .      
## Zoothera_andromedae              .       .         .        .        .        .      
## Cochoa_purpurea                  .       .         .        .        .        .      
## Chlamydochaera_jefferyi          .       .         .        .        .        .      
## Sialia_mexicana                  .       .         .        .        .        .      
## Myadestes_occidentalis           .       .         .        .        .        .      
## Neocossyphus_poensis             .       .         .        .        .        .      
## Cataponera_turdoides             .       .         .        .        .        .      
## Stizorhina_finschi               .       .         .        .        .        .      
## Alethe_poliophrys                .       .         .        .        .        .      
## Stiphrornis_erythrothorax        .       .         .        .        .        .      
## Cichladusa_arquata               .       .         .        .        .        .      
## Swynnertonia_swynnertoni         .       .         .        .        .        .      
## Cossyphicula_roberti             .       .         .        .        .        .      
## Pogonocichla_stellata            .       .         .        .        .        .      
## Sheppardia_bocagei               .       .         .        .        .        .      
## Cossypha_isabellae               .       .         .        .        .        .      
## Brachypteryx_stellata            .       .         .        .        .        .      
## Erithacus_rubecula               .       .         .        .        .        .      
## Luscinia_svecica                 .       .         .        .        .        .      
## Hodgsonius_phaenicuroides        .       .         .        .        .        .      
## Irania_gutturalis                .       .         .        .        .        .      
## Cinclidium_diana                 .       .         .        .        .        .      
## Enicurus_schistaceus             .       .         .        .        .        .      
## Myophonus_borneensis             .       .         .        .        .        .      
## Ficedula_albicollis              .       .         .        .        .        .      
## Muscicapella_hodgsoni            .       .         .        .        .        .      
## Xenocopsychus_ansorgei           .       .         .        .        .        .      
## Tarsiger_cyanurus                .       .         .        .        .        .      
## Monticola_saxatilis              .       .         .        .        .        .      
## Myrmecocichla_tholloni           .       .         .        .        .        .      
## Oenanthe_bifasciata              .       .         .        .        .        .      
## Cercomela_sinuata                .       .         .        .        .        .      
## Saxicola_leucurus                .       .         .        .        .        .      
## Rhyacornis_fuliginosa            .       .         .        .        .        .      
## Chaimarrornis_leucocephalus      .       .         .        .        .        .      
## Phoenicurus_erythronotus         .       .         .        .        .        .      
## Myiomela_major                   .       .         .        .        .        .      
## Niltava_grandis                  .       .         .        .        .        .      
## Rhinomyias_umbratilis            .       .         .        .        .        .      
## Eumyias_thalassinus              .       .         .        .        .        .      
## Dioptrornis_chocolatinus         .       .         .        .        .        .      
## Cyanoptila_cyanomelana           .       .         .        .        .        .      
## Erythropygia_quadrivirgata       .       .         .        .        .        .      
## Cercotrichas_podobe              .       .         .        .        .        .      
## Copsychus_albospecularis         .       .         .        .        .        .      
## Pinarornis_plumosus              .       .         .        .        .        .      
## Saxicoloides_fulicatus           .       .         .        .        .        .      
## Cyornis_tickelliae               .       .         .        .        .        .      
## Humblotia_flavirostris           .       .         .        .        .        .      
## Trichixos_pyrropygus             .       .         .        .        .        .      
## Muscicapa_striata                .       .         .        .        .        .      
## Bradornis_pallidus               .       .         .        .        .        .      
## Namibornis_herero                .       .         .        .        .        .      
## Fraseria_ocreata                 .       .         .        .        .        .      
## Myioparus_griseigularis          .       .         .        .        .        .      
## Empidornis_semipartitus          .       .         .        .        .        .      
## Sigelus_silens                   .       .         .        .        .        .      
## Melaenornis_edolioides           .       .         .        .        .        .      
## Regulus_regulus                  .       .         .        .        .        .      
## Anthreptes_longuemarei           .       .         .        .        .        .      
## Nectarinia_johannae              .       .         .        .        .        .      
## Aethopyga_mystacalis             .       .         .        .        .        .      
## Hypogramma_hypogrammicum         .       .         .        .        .        .      
## Arachnothera_robusta             .       .         .        .        .        .      
## Dicaeum_pygmaeum                 .       .         .        .        .        .      
## Prionochilus_olivaceus           .       .         .        .        .        .      
## Chloropsis_cyanopogon            .       .         .        .        .        .      
## Irena_puella                     .       .         .        .        .        .      
## Amblyospiza_albifrons            .       .         .        .        .        .      
## Malimbus_coronatus               .       .         .        .        .        .      
## Ploceus_insignis                 .       .         .        .        .        .      
## Quelea_erythrops                 .       .         .        .        .        .      
## Foudia_madagascariensis          .       .         .        .        .        .      
## Euplectes_afer                   .       .         .        .        .        .      
## Bubalornis_albirostris           .       .         .        .        .        .      
## Plocepasser_mahali               .       .         .        .        .        .      
## Histurgops_ruficaudus            .       .         .        .        .        .      
## Pseudonigrita_cabanisi           .       .         .        .        .        .      
## Philetairus_socius               .       .         .        .        .        .      
## Dinemellia_dinemelli             .       .         .        .        .        .      
## Brachycope_anomala               .       .         .        .        .        .      
## Anaplectes_rubriceps             .       .         .        .        .        .      
## Sporopipes_frontalis             .       .         .        .        .        .      
## Ortygospiza_gabonensis           .       .         .        .        .        .      
## Erythrura_gouldiae               .       .         .        .        .        .      
## Stagonopleura_bella              .       .         .        .        .        .      
## Taeniopygia_guttata              .       .         .        .        .        .      
## Poephila_personata               .       .         .        .        .        .      
## Neochmia_temporalis              .       .         .        .        .        .      
## Emblema_pictum                   .       .         .        .        .        .      
## Oreostruthus_fuliginosus         .       .         .        .        .        .      
## Lonchura_pallida                 .       .         .        .        .        .      
## Padda_oryzivora                  .       .         .        .        .        .      
## Heteromunia_pectoralis           .       .         .        .        .        .      
## Pytilia_melba                    .       .         .        .        .        .      
## Euschistospiza_dybowskii         .       .         .        .        .        .      
## Hypargos_niveoguttatus           .       .         .        .        .        .      
## Amadina_fasciata                 .       .         .        .        .        .      
## Lagonosticta_senegala            .       .         .        .        .        .      
## Clytospiza_monteiri              .       .         .        .        .        .      
## Uraeginthus_bengalus             .       .         .        .        .        .      
## Pyrenestes_sanguineus            .       .         .        .        .        .      
## Spermophaga_poliogenys           .       .         .        .        .        .      
## Nesocharis_shelleyi              .       .         .        .        .        .      
## Estrilda_quartinia               .       .         .        .        .        .      
## Mandingoa_nitidula               .       .         .        .        .        .      
## Cryptospiza_shelleyi             .       .         .        .        .        .      
## Nigrita_bicolor                  .       .         .        .        .        .      
## Parmoptila_woodhousei            .       .         .        .        .        .      
## Amandava_amandava                .       .         .        .        .        .      
## Anomalospiza_imberbis            .       .         .        .        .        .      
## Vidua_chalybeata                 .       .         .        .        .        .      
## Prunella_himalayana              .       .         .        .        .        .      
## Peucedramus_taeniatus            .       .         .        .        .        .      
## Passer_domesticus                .       .         .        .        .        .      
## Montifringilla_nivalis           .       .         .        .        .        .      
## Petronia_petronia                .       .         .        .        .        .      
## Euphonia_gouldi                  .       .         .        .        .        .      
## Eophona_personata                .       .         .        .        .        .      
## Mycerobas_melanozanthos          .       .         .        .        .        .      
## Coccothraustes_vespertinus       .       .         .        .        .        .      
## Eremopsaltria_mongolicus         .       .         .        .        .        .      
## Bucanetes_githagineus            .       .         .        .        .        .      
## Paroreomyza_maculata             .       .         .        .        .        .      
## Oreomystis_mana                  .       .         .        .        .        .      
## Loxioides_bailleui               .       .         .        .        .        .      
## Telespiza_cantans                .       .         .        .        .        .      
## Pseudonestor_xanthophrys         .       .         .        .        .        .      
## Loxops_caeruleirostris           .       .         .        .        .        .      
## Hemignathus_parvus               .       .         .        .        .        .      
## Vestiaria_coccinea               .       .         .        .        .        .      
## Himatione_sanguinea              .       .         .        .        .        .      
## Palmeria_dolei                   .       .         .        .        .        .      
## Uragus_sibiricus                 .       .         .        .        .        .      
## Neospiza_concolor                .       .         .        .        .        .      
## Haematospiza_sipahi              .       .         .        .        .        .      
## Callacanthis_burtoni             .       .         .        .        .        .      
## Psittirostra_psittacea           .       .         .        .        .        .      
## Carpodacus_erythrinus            .       .         .        .        .        .      
## Leucosticte_australis            .       .         .        .        .        .      
## Pyrrhula_murina                  .       .         .        .        .        .      
## Pyrrhoplectes_epauletta          .       .         .        .        .        .      
## Pinicola_enucleator              .       .         .        .        .        .      
## Loxia_pytyopsittacus             .       .         .        .        .        .      
## Serinus_scotops                  .       .         .        .        .        .      
## Carduelis_psaltria               .       .         .        .        .        .      
## Rhynchostruthus_percivali        .       .         .        .        .        .      
## Linurgus_olivaceus               .       .         .        .        .        .      
## Rhodopechys_sanguineus           .       .         .        .        .        .      
## Fringilla_montifringilla         .       .         .        .        .        .      
## Lophospingus_pusillus            .       .         .        .        .        .      
## Diuca_speculifera                .       .         .        .        .        .      
## Cissopis_leverianus              .       .         .        .        .        .      
## Schistochlamys_ruficapillus      .       .         .        .        .        .      
## Urothraupis_stolzmanni           .       .         .        .        .        .      
## Gubernatrix_cristata             .       .         .        .        .        .      
## Cyanicterus_cyanicterus          .       .         .        .        .        .      
## Neothraupis_fasciata             .       .         .        .        .        .      
## Stephanophorus_diadematus        .       .         .        .        .        .      
## Paroaria_coronata                .       .         .        .        .        .      
## Chlorochrysa_nitidissima         .       .         .        .        .        .      
## Tangara_xanthocephala            .       .         .        .        .        .      
## Coereba_flaveola                 .       .         .        .        .        .      
## Loxigilla_violacea               .       .         .        .        .        .      
## Melopyrrha_nigra                 .       .         .        .        .        .      
## Euneornis_campestris             .       .         .        .        .        .      
## Platyspiza_crassirostris         .       .         .        .        .        .      
## Geospiza_conirostris             .       .         .        .        .        .      
## Camarhynchus_parvulus            .       .         .        .        .        .      
## Pinaroloxias_inornata            .       .         .        .        .        .      
## Certhidea_olivacea               .       .         .        .        .        .      
## Loxipasser_anoxanthus            .       .         .        .        .        .      
## Melanospiza_richardsoni          .       .         .        .        .        .      
## Tiaris_obscurus                  .       .         .        .        .        .      
## Bangsia_arcaei                   .       .         .        .        .        .      
## Pipraeidea_melanonota            .       .         .        .        .        .      
## Iridosornis_analis               .       .         .        .        .        .      
## Calochaetes_coccineus            .       .         .        .        .        .      
## Orthogonys_chloricterus          .       .         .        .        .        .      
## Thraupis_palmarum                .       .         .        .        .        .      
## Compsothraupis_loricata          .       .         .        .        .        .      
## Buthraupis_eximia                .       .         .        .        .        .      
## Chlorornis_riefferii             .       .         .        .        .        .      
## Delothraupis_castaneoventris     .       .         .        .        .        .      
## Dubusia_taeniata                 .       .         .        .        .        .      
## Anisognathus_lacrymosus          .       .         .        .        .        .      
## Parkerthraustes_humeralis        .       .         .        .        .        .      
## Lamprospiza_melanoleuca          .       .         .        .        .        .      
## Rhodinocichla_rosea              .       .         .        .        .        .      
## Chlorophonia_pyrrhophrys         .       .         .        .        .        .      
## Mitrospingus_oleagineus          .       .         .        .        .        .      
## Phaenicophilus_poliocephalus     .       .         .        .        .        .      
## Oreothraupis_arremonops          .       .         .        .        .        .      
## Orchesticus_abeillei             .       .         .        .        .        .      
## Rowettia_goughensis              .       .         .        .        .        .      
## Nesospiza_wilkinsi               .       .         .        .        .        .      
## Calyptophilus_frugivorus         .       .         .        .        .        .      
## Saltatricula_multicolor          .       .         .        .        .        .      
## Saltator_coerulescens            .       .         .        .        .        .      
## Sericossypha_albocristata        .       .         .        .        .        .      
## Nemosia_pileata                  .       .         .        .        .        .      
## Chrysothlypis_salmoni            .       .         .        .        .        .      
## Heterospingus_xanthopygius       .       .         .        .        .        .      
## Hemithraupis_ruficapilla         .       .         .        .        .        .      
## Iridophanes_pulcherrimus         .       .         .        .        .        .      
## Chlorophanes_spiza               .       .         .        .        .        .      
## Creurgops_verticalis             .       .         .        .        .        .      
## Porphyrospiza_caerulescens       .       .         .        .        .        .      
## Embernagra_platensis             .       .         .        .        .        .      
## Emberizoides_herbicola           .       .         .        .        .        .      
## Cnemoscopus_rubrirostris         .       .         .        .        .        .      
## Incaspiza_pulchra                .       .         .        .        .        .      
## Piezorhina_cinerea               .       .         .        .        .        .      
## Poospiza_alticola                .       .         .        .        .        .      
## Donacospiza_albifrons            .       .         .        .        .        .      
## Cypsnagra_hirundinacea           .       .         .        .        .        .      
## Hemispingus_goeringi             .       .         .        .        .        .      
## Pyrrhocoma_ruficeps              .       .         .        .        .        .      
## Thlypopsis_ruficeps              .       .         .        .        .        .      
## Compsospiza_garleppi             .       .         .        .        .        .      
## Cyanerpes_nitidus                .       .         .        .        .        .      
## Dacnis_lineata                   .       .         .        .        .        .      
## Xenospingus_concolor             .       .         .        .        .        .      
## Tersina_viridis                  .       .         .        .        .        .      
## Lanio_fulvus                     .       .         .        .        .        .      
## Rhodospingus_cruentus            .       .         .        .        .        .      
## Tachyphonus_surinamus            .       .         .        .        .        .      
## Coryphaspiza_melanotis           .       .         .        .        .        .      
## Charitospiza_eucosma             .       .         .        .        .        .      
## Eucometis_penicillata            .       .         .        .        .        .      
## Trichothraupis_melanops          .       .         .        .        .        .      
## Coryphospingus_cucullatus        .       .         .        .        .        .      
## Ramphocelus_costaricensis        .       .         .        .        .        .      
## Volatinia_jacarina               .       .         .        .        .        .      
## Conothraupis_speculigera         .       .         .        .        .        .      
## Oryzoborus_nuttingi              .       .         .        .        .        .      
## Sporophila_luctuosa              .       .         .        .        .        .      
## Conirostrum_albifrons            .       .         .        .        .        .      
## Oreomanes_fraseri                .       .         .        .        .        .      
## Diglossa_lafresnayii             .       .         .        .        .        .      
## Catamenia_analis                 .       .         .        .        .        .      
## Acanthidops_bairdii              .       .         .        .        .        .      
## Haplospiza_rustica               .       .         .        .        .        .      
## Idiopsar_brachyurus              .       .         .        .        .        .      
## Xenodacnis_parina                .       .         .        .        .        .      
## Sicalis_citrina                  .       .         .        .        .        .      
## Phrygilus_gayi                   .       .         .        .        .        .      
## Melanodera_xanthogramma          .       .         .        .        .        .      
## Catamblyrhynchus_diadema         .       .         .        .        .        .      
## Habia_cristata                   .       .         .        .        .        .      
## Chlorothraupis_olivacea          .       .         .        .        .        .      
## Piranga_rubra                    .       .         .        .        .        .      
## Cardinalis_sinuatus              .       .         .        .        .        .      
## Caryothraustes_canadensis        .       .         .        .        .        .      
## Periporphyrus_erythromelas       .       .         .        .        .        .      
## Rhodothraupis_celaeno            .       .         .        .        .        .      
## Pheucticus_chrysogaster          .       .         .        .        .        .      
## Passerina_amoena                 .       .         .        .        .        .      
## Amaurospiza_concolor             .       .         .        .        .        .      
## Cyanocompsa_cyanoides            .       .         .        .        .        .      
## Cyanoloxia_glaucocaerulea        .       .         .        .        .        .      
## Spiza_americana                  .       .         .        .        .        .      
## Granatellus_pelzelni             .       .         .        .        .        .      
## Ocyalus_latirostris              .       .         .        .        .        .      
## Clypicterus_oseryi               .       .         .        .        .        .      
## Cacicus_cela                     .       .         .        .        .        .      
## Psarocolius_decumanus            .       .         .        .        .        .      
## Icterus_graceannae               .       .         .        .        .        .      
## Amblycercus_holosericeus         .       .         .        .        .        .      
## Nesopsar_nigerrimus              .       .         .        .        .        .      
## Gnorimopsar_chopi                .       .         .        .        .        .      
## Oreopsar_bolivianus              .       .         .        .        .        .      
## Agelaioides_badius               .       .         .        .        .        .      
## Agelasticus_thilius              .       .         .        .        .        .      
## Chrysomus_icterocephalus         .       .         .        .        .        .      
## Pseudoleistes_guirahuro          .       .         .        .        .        .      
## Xanthopsar_flavus                .       .         .        .        .        .      
## Amblyramphus_holosericeus        .       .         .        .        .        .      
## Curaeus_curaeus                  .       .         .        .        .        .      
## Hypopyrrhus_pyrohypogaster       .       .         .        .        .        .      
## Lampropsar_tanagrinus            .       .         .        .        .        .      
## Gymnomystax_mexicanus            .       .         .        .        .        .      
## Macroagelaius_imthurni           .       .         .        .        .        .      
## Dives_dives                      .       .         .        .        .        .      
## Molothrus_oryzivorus             .       .         .        .        .        .      
## Agelaius_phoeniceus              .       .         .        .        .        .      
## Euphagus_carolinus               .       .         .        .        .        .      
## Quiscalus_quiscula               .       .         .        .        .        .      
## Sturnella_loyca                  .       .         .        .        .        .      
## Dolichonyx_oryzivorus            .       .         .        .        .        .      
## Xanthocephalus_xanthocephalus    .       .         .        .        .        .      
## Zeledonia_coronata               .       .         .        .        .        .      
## Spindalis_zena                   .       .         .        .        .        .      
## Microligea_palustris             .       .         .        .        .        .      
## Xenoligea_montana                .       .         .        .        .        .      
## Seiurus_aurocapilla              .       .         .        .        .        .      
## Parula_americana                 .       .         .        .        .        .      
## Dendroica_petechia               .       .         .        .        .        .      
## Wilsonia_citrina                 .       .         .        .        .        .      
## Catharopeza_bishopi              .       .         .        .        .        .      
## Phaeothlypis_rivularis           .       .         .        .        .        .      
## Basileuterus_flaveolus           .       .         .        .        .        .      
## Ergaticus_ruber                  .       .         .        .        .        .      
## Myioborus_pictus                 .       .         .        .        .        .      
## Euthlypis_lachrymosa             .       .         .        .        .        .      
## Protonotaria_citrea              .       .         .        .        .        .      
## Limnothlypis_swainsonii          .       .         .        .        .        .      
## Leucopeza_semperi                .       .         .        .        .        .      
## Mniotilta_varia                  .       .         .        .        .        .      
## Vermivora_chrysoptera            .       .         .        .        .        .      
## Helmitheros_vermivorum           .       .         .        .        .        .      
## Teretistris_fernandinae          .       .         .        .        .        .      
## Icteria_virens                   .       .         .        .        .        .      
## Miliaria_calandra                .       .         .        .        .        .      
## Emberiza_buchanani               .       .         .        .        .        .      
## Melophus_lathami                 .       .         .        .        .        .      
## Torreornis_inexpectata           .       .         .        .        .        .      
## Latoucheornis_siemsseni          .       .         .        .        .        .      
##                                                                                      
## Nothocercus_bonapartei           .        .        .        .        .        .      
## Tinamus_guttatus                 .        .        .        .        .        .      
## Crypturellus_variegatus          .        .        .        .        .        .      
## Eudromia_elegans                 .       46.21911  .        .        .        .      
## Tinamotis_pentlandii            22.01677  .        .       24.20234  .        .      
## Taoniscus_nanus                 22.01677  .       24.20234  .        .        .      
## Nothura_darwinii                 .        .        .        .        .       51.64811
## Rhynchotus_maculicollis          .        .        .        .       14.36816  .      
## Nothoprocta_perdicaria           .        .        .        .       14.36816  .      
## Rhea_americana                   .        .        .        .        .        .      
## Apteryx_haastii                  .        .        .        .        .        .      
## Casuarius_casuarius              .        .        .        .        .        .      
## Dromaius_novaehollandiae         .        .        .        .        .        .      
## Struthio_camelus                 .        .        .        .        .        .      
## Chauna_chavaria                  .        .        .        .        .        .      
## Anhima_cornuta                   .        .        .        .        .        .      
## Anseranas_semipalmata            .        .        .        .        .        .      
## Dendrocygna_arborea              .        .        .        .        .        .      
## Thalassornis_leuconotus          .        .        .        .        .        .      
## Cygnus_melancoryphus             .        .        .        .        .        .      
## Anser_fabalis                    .        .        .        .        .        .      
## Chen_caerulescens                .        .        .        .        .        .      
## Branta_bernicla                  .        .        .        .        .        .      
## Coscoroba_coscoroba              .        .        .        .        .        .      
## Cereopsis_novaehollandiae        .        .        .        .        .        .      
## Malacorhynchus_membranaceus      .        .        .        .        .        .      
## Netta_rufina                     .        .        .        .        .        .      
## Aythya_ferina                    .        .        .        .        .        .      
## Marmaronetta_angustirostris      .        .        .        .        .        .      
## Salvadorina_waigiuensis          .        .        .        .        .        .      
## Pteronetta_hartlaubii            .        .        .        .        .        .      
## Cyanochen_cyanoptera             .        .        .        .        .        .      
## Tadorna_ferruginea               .        .        .        .        .        .      
## Alopochen_aegyptiaca             .        .        .        .        .        .      
## Chloephaga_melanoptera           .        .        .        .        .        .      
## Neochen_jubata                   .        .        .        .        .        .      
## Cairina_moschata                 .        .        .        .        .        .      
## Aix_sponsa                       .        .        .        .        .        .      
## Callonetta_leucophrys            .        .        .        .        .        .      
## Merganetta_armata                .        .        .        .        .        .      
## Melanitta_nigra                  .        .        .        .        .        .      
## Mergellus_albellus               .        .        .        .        .        .      
## Mergus_serrator                  .        .        .        .        .        .      
## Lophodytes_cucullatus            .        .        .        .        .        .      
## Bucephala_clangula               .        .        .        .        .        .      
## Histrionicus_histrionicus        .        .        .        .        .        .      
## Clangula_hyemalis                .        .        .        .        .        .      
## Polysticta_stelleri              .        .        .        .        .        .      
## Somateria_mollissima             .        .        .        .        .        .      
## Chenonetta_jubata                .        .        .        .        .        .      
## Hymenolaimus_malacorhynchos      .        .        .        .        .        .      
## Sarkidiornis_melanotos           .        .        .        .        .        .      
## Anas_platyrhynchos               .        .        .        .        .        .      
## Tachyeres_pteneres               .        .        .        .        .        .      
## Lophonetta_specularioides        .        .        .        .        .        .      
## Speculanas_specularis            .        .        .        .        .        .      
## Amazonetta_brasiliensis          .        .        .        .        .        .      
## Nettapus_pulchellus              .        .        .        .        .        .      
## Biziura_lobata                   .        .        .        .        .        .      
## Nomonyx_dominicus                .        .        .        .        .        .      
## Oxyura_jamaicensis               .        .        .        .        .        .      
## Plectropterus_gambensis          .        .        .        .        .        .      
## Heteronetta_atricapilla          .        .        .        .        .        .      
## Stictonetta_naevosa              .        .        .        .        .        .      
## Aepypodius_arfakianus            .        .        .        .        .        .      
## Alectura_lathami                 .        .        .        .        .        .      
## Talegalla_cuvieri                .        .        .        .        .        .      
## Leipoa_ocellata                  .        .        .        .        .        .      
## Eulipoa_wallacei                 .        .        .        .        .        .      
## Megapodius_freycinet             .        .        .        .        .        .      
## Macrocephalon_maleo              .        .        .        .        .        .      
## Mitu_tomentosum                  .        .        .        .        .        .      
## Nothocrax_urumutum               .        .        .        .        .        .      
## Crax_rubra                       .        .        .        .        .        .      
## Ortalis_vetula                   .        .        .        .        .        .      
## Oreophasis_derbianus             .        .        .        .        .        .      
## Penelopina_nigra                 .        .        .        .        .        .      
## Aburria_aburri                   .        .        .        .        .        .      
## Pipile_cumanensis                .        .        .        .        .        .      
## Penelope_argyrotis               .        .        .        .        .        .      
## Chamaepetes_unicolor             .        .        .        .        .        .      
## Acryllium_vulturinum             .        .        .        .        .        .      
## Guttera_plumifera                .        .        .        .        .        .      
## Agelastes_niger                  .        .        .        .        .        .      
## Numida_meleagris                 .        .        .        .        .        .      
## Dendrortyx_macroura              .        .        .        .        .        .      
## Philortyx_fasciatus              .        .        .        .        .        .      
## Odontophorus_capueira            .        .        .        .        .        .      
## Dactylortyx_thoracicus           .        .        .        .        .        .      
## Rhynchortyx_cinctus              .        .        .        .        .        .      
## Cyrtonyx_montezumae              .        .        .        .        .        .      
## Oreortyx_pictus                  .        .        .        .        .        .      
## Colinus_cristatus                .        .        .        .        .        .      
## Callipepla_squamata              .        .        .        .        .        .      
## Ptilopachus_petrosus             .        .        .        .        .        .      
## Arborophila_mandellii            .        .        .        .        .        .      
## Caloperdix_oculeus               .        .        .        .        .        .      
## Rollulus_rouloul                 .        .        .        .        .        .      
## Melanoperdix_niger               .        .        .        .        .        .      
## Tetraogallus_caspius             .        .        .        .        .        .      
## Perdicula_asiatica               .        .        .        .        .        .      
## Ammoperdix_griseogularis         .        .        .        .        .        .      
## Alectoris_chukar                 .        .        .        .        .        .      
## Francolinus_jacksoni             .        .        .        .        .        .      
## Anurophasis_monorthonyx          .        .        .        .        .        .      
## Coturnix_coturnix                .        .        .        .        .        .      
## Margaroperdix_madagascariensis   .        .        .        .        .        .      
## Afropavo_congensis               .        .        .        .        .        .      
## Pavo_cristatus                   .        .        .        .        .        .      
## Rheinardia_ocellata              .        .        .        .        .        .      
## Argusianus_argus                 .        .        .        .        .        .      
## Polyplectron_napoleonis          .        .        .        .        .        .      
## Galloperdix_spadicea             .        .        .        .        .        .      
## Haematortyx_sanguiniceps         .        .        .        .        .        .      
## Gallus_gallus                    .        .        .        .        .        .      
## Bambusicola_fytchii              .        .        .        .        .        .      
## Meleagris_gallopavo              .        .        .        .        .        .      
## Bonasa_bonasia                   .        .        .        .        .        .      
## Lagopus_lagopus                  .        .        .        .        .        .      
## Lerwa_lerwa                      .        .        .        .        .        .      
## Dendragapus_obscurus             .        .        .        .        .        .      
## Tympanuchus_phasianellus         .        .        .        .        .        .      
## Centrocercus_urophasianus        .        .        .        .        .        .      
## Tetrao_tetrix                    .        .        .        .        .        .      
## Pucrasia_macrolopha              .        .        .        .        .        .      
## Rhizothera_longirostris          .        .        .        .        .        .      
## Crossoptilon_harmani             .        .        .        .        .        .      
## Catreus_wallichi                 .        .        .        .        .        .      
## Lophura_leucomelanos             .        .        .        .        .        .      
## Chrysolophus_pictus              .        .        .        .        .        .      
## Phasianus_colchicus              .        .        .        .        .        .      
## Syrmaticus_humiae                .        .        .        .        .        .      
## Perdix_perdix                    .        .        .        .        .        .      
## Tetraophasis_szechenyii          .        .        .        .        .        .      
## Lophophorus_impejanus            .        .        .        .        .        .      
## Tragopan_melanocephalus          .        .        .        .        .        .      
## Ithaginis_cruentus               .        .        .        .        .        .      
## Pterocles_gutturalis             .        .        .        .        .        .      
## Syrrhaptes_tibetanus             .        .        .        .        .        .      
## Leptotila_verreauxi              .        .        .        .        .        .      
## Geotrygon_lawrencii              .        .        .        .        .        .      
## Starnoenas_cyanocephala          .        .        .        .        .        .      
## Zenaida_macroura                 .        .        .        .        .        .      
## Patagioenas_leucocephala         .        .        .        .        .        .      
## Turacoena_manadensis             .        .        .        .        .        .      
## Macropygia_unchall               .        .        .        .        .        .      
## Reinwardtoena_reinwardtsi        .        .        .        .        .        .      
## Streptopelia_semitorquata        .        .        .        .        .        .      
## Stigmatopelia_chinensis          .        .        .        .        .        .      
## Nesoenas_picturata               .        .        .        .        .        .      
## Aplopelia_larvata                .        .        .        .        .        .      
## Columba_bollii                   .        .        .        .        .        .      
## Geopelia_striata                 .        .        .        .        .        .      
## Geophaps_scripta                 .        .        .        .        .        .      
## Phaps_chalcoptera                .        .        .        .        .        .      
## Petrophassa_albipennis           .        .        .        .        .        .      
## Ocyphaps_lophotes                .        .        .        .        .        .      
## Leucosarcia_melanoleuca          .        .        .        .        .        .      
## Henicophaps_albifrons            .        .        .        .        .        .      
## Gallicolumba_erythroptera        .        .        .        .        .        .      
## Treron_calvus                    .        .        .        .        .        .      
## Ptilinopus_magnificus            .        .        .        .        .        .      
## Drepanoptila_holosericea         .        .        .        .        .        .      
## Alectroenas_madagascariensis     .        .        .        .        .        .      
## Lopholaimus_antarcticus          .        .        .        .        .        .      
## Gymnophaps_albertisii            .        .        .        .        .        .      
## Hemiphaga_novaeseelandiae        .        .        .        .        .        .      
## Ducula_aenea                     .        .        .        .        .        .      
## Phapitreron_leucotis             .        .        .        .        .        .      
## Turtur_abyssinicus               .        .        .        .        .        .      
## Oena_capensis                    .        .        .        .        .        .      
## Chalcophaps_indica               .        .        .        .        .        .      
## Didunculus_strigirostris         .        .        .        .        .        .      
## Goura_victoria                   .        .        .        .        .        .      
## Caloenas_nicobarica              .        .        .        .        .        .      
## Otidiphaps_nobilis               .        .        .        .        .        .      
## Trugon_terrestris                .        .        .        .        .        .      
## Uropelia_campestris              .        .        .        .        .        .      
## Columbina_squammata              .        .        .        .        .        .      
## Metriopelia_ceciliae             .        .        .        .        .        .      
## Claravis_pretiosa                .        .        .        .        .        .      
## Pelecanus_crispus                .        .        .        .        .        .      
## Balaeniceps_rex                  .        .        .        .        .        .      
## Scopus_umbretta                  .        .        .        .        .        .      
## Pygoscelis_antarcticus           .        .        .        .        .        .      
## Aptenodytes_forsteri             .        .        .        .        .        .      
## Spheniscus_demersus              .        .        .        .        .        .      
## Eudyptula_minor                  .        .        .        .        .        .      
## Megadyptes_antipodes             .        .        .        .        .        .      
## Eudyptes_robustus                .        .        .        .        .        .      
## Tigrisoma_lineatum               .        .        .        .        .        .      
## Zebrilus_undulatus               .        .        .        .        .        .      
## Botaurus_pinnatus                .        .        .        .        .        .      
## Ixobrychus_cinnamomeus           .        .        .        .        .        .      
## Pilherodius_pileatus             .        .        .        .        .        .      
## Agamia_agami                     .        .        .        .        .        .      
## Nycticorax_nycticorax            .        .        .        .        .        .      
## Ardeola_speciosa                 .        .        .        .        .        .      
## Nyctanassa_violacea              .        .        .        .        .        .      
## Gorsachius_leuconotus            .        .        .        .        .        .      
## Butorides_striata                .        .        .        .        .        .      
## Ardea_sumatrana                  .        .        .        .        .        .      
## Bubulcus_ibis                    .        .        .        .        .        .      
## Mesophoyx_intermedia             .        .        .        .        .        .      
## Casmerodius_albus                .        .        .        .        .        .      
## Egretta_garzetta                 .        .        .        .        .        .      
## Syrigma_sibilatrix               .        .        .        .        .        .      
## Cochlearius_cochlearius          .        .        .        .        .        .      
## Zonerodius_heliosylus            .        .        .        .        .        .      
## Tigriornis_leucolopha            .        .        .        .        .        .      
## Fregata_ariel                    .        .        .        .        .        .      
## Morus_serrator                   .        .        .        .        .        .      
## Papasula_abbotti                 .        .        .        .        .        .      
## Sula_nebouxii                    .        .        .        .        .        .      
## Anhinga_anhinga                  .        .        .        .        .        .      
## Phalacrocorax_carbo              .        .        .        .        .        .      
## Geronticus_calvus                .        .        .        .        .        .      
## Plegadis_falcinellus             .        .        .        .        .        .      
## Nipponia_nippon                  .        .        .        .        .        .      
## Pseudibis_papillosa              .        .        .        .        .        .      
## Bostrychia_hagedash              .        .        .        .        .        .      
## Threskiornis_aethiopicus         .        .        .        .        .        .      
## Lophotibis_cristata              .        .        .        .        .        .      
## Platalea_leucorodia              .        .        .        .        .        .      
## Mesembrinibis_cayennensis        .        .        .        .        .        .      
## Eudocimus_albus                  .        .        .        .        .        .      
## Theristicus_caerulescens         .        .        .        .        .        .      
## Cercibis_oxycerca                .        .        .        .        .        .      
## Phimosus_infuscatus              .        .        .        .        .        .      
## Thaumatibis_gigantea             .        .        .        .        .        .      
## Anastomus_oscitans               .        .        .        .        .        .      
## Mycteria_americana               .        .        .        .        .        .      
## Leptoptilos_javanicus            .        .        .        .        .        .      
## Ciconia_maguari                  .        .        .        .        .        .      
## Ephippiorhynchus_asiaticus       .        .        .        .        .        .      
## Jabiru_mycteria                  .        .        .        .        .        .      
## Gavia_stellata                   .        .        .        .        .        .      
## Oceanites_gracilis               .        .        .        .        .        .      
## Fregetta_grallaria               .        .        .        .        .        .      
## Pelagodroma_marina               .        .        .        .        .        .      
## Garrodia_nereis                  .        .        .        .        .        .      
## Nesofregetta_fuliginosa          .        .        .        .        .        .      
## Phoebetria_palpebrata            .        .        .        .        .        .      
## Diomedea_exulans                 .        .        .        .        .        .      
## Thalassarche_impavida            .        .        .        .        .        .      
## Phoebastria_irrorata             .        .        .        .        .        .      
## Pelecanoides_magellani           .        .        .        .        .        .      
## Lugensa_brevirostris             .        .        .        .        .        .      
## Halobaena_caerulea               .        .        .        .        .        .      
## Pachyptila_belcheri              .        .        .        .        .        .      
## Bulweria_fallax                  .        .        .        .        .        .      
## Calonectris_leucomelas           .        .        .        .        .        .      
## Puffinus_assimilis               .        .        .        .        .        .      
## Pseudobulweria_aterrima          .        .        .        .        .        .      
## Procellaria_cinerea              .        .        .        .        .        .      
## Pterodroma_longirostris          .        .        .        .        .        .      
## Fulmarus_glacialoides            .        .        .        .        .        .      
## Macronectes_giganteus            .        .        .        .        .        .      
## Pagodroma_nivea                  .        .        .        .        .        .      
## Thalassoica_antarctica           .        .        .        .        .        .      
## Daption_capense                  .        .        .        .        .        .      
## Halocyptena_microsoma            .        .        .        .        .        .      
## Hydrobates_pelagicus             .        .        .        .        .        .      
## Oceanodroma_furcata              .        .        .        .        .        .      
## Opisthocomus_hoazin              .        .        .        .        .        .      
## Phaethon_rubricauda              .        .        .        .        .        .      
## Musophaga_rossae                 .        .        .        .        .        .      
## Tauraco_erythrolophus            .        .        .        .        .        .      
## Ruwenzorornis_johnstoni          .        .        .        .        .        .      
## Corythaeola_cristata             .        .        .        .        .        .      
## Corythaixoides_leucogaster       .        .        .        .        .        .      
## Crinifer_piscator                .        .        .        .        .        .      
## Houbaropsis_bengalensis          .        .        .        .        .        .      
## Sypheotides_indicus              .        .        .        .        .        .      
## Eupodotis_savilei                .        .        .        .        .        .      
## Tetrax_tetrax                    .        .        .        .        .        .      
## Chlamydotis_undulata             .        .        .        .        .        .      
## Otis_tarda                       .        .        .        .        .        .      
## Ardeotis_kori                    .        .        .        .        .        .      
## Neotis_denhami                   .        .        .        .        .        .      
## Ibidorhyncha_struthersii         .        .        .        .        .        .      
## Haematopus_longirostris          .        .        .        .        .        .      
## Recurvirostra_avosetta           .        .        .        .        .        .      
## Himantopus_himantopus            .        .        .        .        .        .      
## Cladorhynchus_leucocephalus      .        .        .        .        .        .      
## Pluvialis_squatarola             .        .        .        .        .        .      
## Phegornis_mitchellii             .        .        .        .        .        .      
## Charadrius_vociferus             .        .        .        .        .        .      
## Thinornis_rubricollis            .        .        .        .        .        .      
## Elseyornis_melanops              .        .        .        .        .        .      
## Eudromias_morinellus             .        .        .        .        .        .      
## Vanellus_vanellus                .        .        .        .        .        .      
## Erythrogonys_cinctus             .        .        .        .        .        .      
## Anarhynchus_frontalis            .        .        .        .        .        .      
## Oreopholus_ruficollis            .        .        .        .        .        .      
## Pluvianus_aegyptius              .        .        .        .        .        .      
## Esacus_recurvirostris            .        .        .        .        .        .      
## Burhinus_superciliaris           .        .        .        .        .        .      
## Chionis_albus                    .        .        .        .        .        .      
## Pluvianellus_socialis            .        .        .        .        .        .      
## Thinocorus_rumicivorus           .        .        .        .        .        .      
## Attagis_gayi                     .        .        .        .        .        .      
## Pedionomus_torquatus             .        .        .        .        .        .      
## Rostratula_benghalensis          .        .        .        .        .        .      
## Jacana_spinosa                   .        .        .        .        .        .      
## Hydrophasianus_chirurgus         .        .        .        .        .        .      
## Actophilornis_albinucha          .        .        .        .        .        .      
## Metopidius_indicus               .        .        .        .        .        .      
## Microparra_capensis              .        .        .        .        .        .      
## Irediparra_gallinacea            .        .        .        .        .        .      
## Bartramia_longicauda             .        .        .        .        .        .      
## Numenius_arquata                 .        .        .        .        .        .      
## Lymnocryptes_minimus             .        .        .        .        .        .      
## Limosa_lapponica                 .        .        .        .        .        .      
## Phalaropus_fulicarius            .        .        .        .        .        .      
## Steganopus_tricolor              .        .        .        .        .        .      
## Xenus_cinereus                   .        .        .        .        .        .      
## Prosobonia_cancellata            .        .        .        .        .        .      
## Catoptrophorus_semipalmatus      .        .        .        .        .        .      
## Heteroscelus_brevipes            .        .        .        .        .        .      
## Tringa_ochropus                  .        .        .        .        .        .      
## Actitis_macularius               .        .        .        .        .        .      
## Coenocorypha_pusilla             .        .        .        .        .        .      
## Gallinago_gallinago              .        .        .        .        .        .      
## Scolopax_rusticola               .        .        .        .        .        .      
## Limnodromus_semipalmatus         .        .        .        .        .        .      
## Aphriza_virgata                  .        .        .        .        .        .      
## Calidris_tenuirostris            .        .        .        .        .        .      
## Limicola_falcinellus             .        .        .        .        .        .      
## Philomachus_pugnax               .        .        .        .        .        .      
## Tryngites_subruficollis          .        .        .        .        .        .      
## Eurynorhynchus_pygmeus           .        .        .        .        .        .      
## Arenaria_interpres               .        .        .        .        .        .      
## Turnix_sylvaticus                .        .        .        .        .        .      
## Ortyxelos_meiffrenii             .        .        .        .        .        .      
## Stercorarius_longicaudus         .        .        .        .        .        .      
## Catharacta_lonnbergi             .        .        .        .        .        .      
## Synthliboramphus_antiquus        .        .        .        .        .        .      
## Uria_aalge                       .        .        .        .        .        .      
## Alca_torda                       .        .        .        .        .        .      
## Alle_alle                        .        .        .        .        .        .      
## Brachyramphus_marmoratus         .        .        .        .        .        .      
## Cepphus_grylle                   .        .        .        .        .        .      
## Ptychoramphus_aleuticus          .        .        .        .        .        .      
## Aethia_psittacula                .        .        .        .        .        .      
## Cerorhinca_monocerata            .        .        .        .        .        .      
## Fratercula_corniculata           .        .        .        .        .        .      
## Rynchops_niger                   .        .        .        .        .        .      
## Pagophila_eburnea                .        .        .        .        .        .      
## Xema_sabini                      .        .        .        .        .        .      
## Rissa_tridactyla                 .        .        .        .        .        .      
## Larus_saundersi                  .        .        .        .        .        .      
## Leucophaeus_scoresbii            .        .        .        .        .        .      
## Rhodostethia_rosea               .        .        .        .        .        .      
## Creagrus_furcatus                .        .        .        .        .        .      
## Anous_stolidus                   .        .        .        .        .        .      
## Sterna_nilotica                  .        .        .        .        .        .      
## Chlidonias_hybrida               .        .        .        .        .        .      
## Larosterna_inca                  .        .        .        .        .        .      
## Phaetusa_simplex                 .        .        .        .        .        .      
## Gygis_alba                       .        .        .        .        .        .      
## Procelsterna_cerulea             .        .        .        .        .        .      
## Dromas_ardeola                   .        .        .        .        .        .      
## Rhinoptilus_africanus            .        .        .        .        .        .      
## Cursorius_cursor                 .        .        .        .        .        .      
## Glareola_pratincola              .        .        .        .        .        .      
## Stiltia_isabella                 .        .        .        .        .        .      
## Anurolimnas_castaneiceps         .        .        .        .        .        .      
## Podica_senegalensis              .        .        .        .        .        .      
## Heliopais_personatus             .        .        .        .        .        .      
## Heliornis_fulica                 .        .        .        .        .        .      
## Sarothrura_pulchra               .        .        .        .        .        .      
## Porphyrio_porphyrio              .        .        .        .        .        .      
## Gymnocrex_rosenbergii            .        .        .        .        .        .      
## Laterallus_melanophaius          .        .        .        .        .        .      
## Dryolimnas_cuvieri               .        .        .        .        .        .      
## Gallicrex_cinerea                .        .        .        .        .        .      
## Coturnicops_exquisitus           .        .        .        .        .        .      
## Rallina_fasciata                 .        .        .        .        .        .      
## Pardirallus_maculatus            .        .        .        .        .        .      
## Habroptila_wallacii              .        .        .        .        .        .      
## Aramides_cajanea                 .        .        .        .        .        .      
## Rougetius_rougetii               .        .        .        .        .        .      
## Canirallus_oculeus               .        .        .        .        .        .      
## Megacrex_inepta                  .        .        .        .        .        .      
## Gallirallus_torquatus            .        .        .        .        .        .      
## Crex_crex                        .        .        .        .        .        .      
## Rallus_longirostris              .        .        .        .        .        .      
## Eulabeornis_castaneoventris      .        .        .        .        .        .      
## Neocrex_colombiana               .        .        .        .        .        .      
## Amaurornis_olivacea              .        .        .        .        .        .      
## Himantornis_haematopus           .        .        .        .        .        .      
## Lewinia_pectoralis               .        .        .        .        .        .      
## Micropygia_schomburgkii          .        .        .        .        .        .      
## Gallinula_nesiotis               .        .        .        .        .        .      
## Fulica_armillata                 .        .        .        .        .        .      
## Crecopsis_egregia                .        .        .        .        .        .      
## Aenigmatolimnas_marginalis       .        .        .        .        .        .      
## Porzana_parva                    .        .        .        .        .        .      
## Amaurolimnas_concolor            .        .        .        .        .        .      
## Atlantisia_rogersi               .        .        .        .        .        .      
## Psophia_viridis                  .        .        .        .        .        .      
## Aramus_guarauna                  .        .        .        .        .        .      
## Grus_rubicunda                   .        .        .        .        .        .      
## Balearica_regulorum              .        .        .        .        .        .      
## Monias_benschi                   .        .        .        .        .        .      
## Mesitornis_unicolor              .        .        .        .        .        .      
## Phoenicopterus_ruber             .        .        .        .        .        .      
## Phoenicoparrus_andinus           .        .        .        .        .        .      
## Phoeniconaias_minor              .        .        .        .        .        .      
## Poliocephalus_poliocephalus      .        .        .        .        .        .      
## Podilymbus_podiceps              .        .        .        .        .        .      
## Tachybaptus_ruficollis           .        .        .        .        .        .      
## Aechmophorus_occidentalis        .        .        .        .        .        .      
## Podiceps_cristatus               .        .        .        .        .        .      
## Rollandia_rolland                .        .        .        .        .        .      
## Centropus_milo                   .        .        .        .        .        .      
## Carpococcyx_radiatus             .        .        .        .        .        .      
## Coua_serriana                    .        .        .        .        .        .      
## Phaenicophaeus_cumingi           .        .        .        .        .        .      
## Clamator_jacobinus               .        .        .        .        .        .      
## Coccyzus_merlini                 .        .        .        .        .        .      
## Piaya_cayana                     .        .        .        .        .        .      
## Coccycua_pumila                  .        .        .        .        .        .      
## Ceuthmochares_aereus             .        .        .        .        .        .      
## Pachycoccyx_audeberti            .        .        .        .        .        .      
## Scythrops_novaehollandiae        .        .        .        .        .        .      
## Cuculus_canorus                  .        .        .        .        .        .      
## Caliechthrus_leucolophus         .        .        .        .        .        .      
## Surniculus_lugubris              .        .        .        .        .        .      
## Cercococcyx_mechowi              .        .        .        .        .        .      
## Cacomantis_sonneratii            .        .        .        .        .        .      
## Chrysococcyx_minutillus          .        .        .        .        .        .      
## Rhamphomantis_megarhynchus       .        .        .        .        .        .      
## Microdynamis_parva               .        .        .        .        .        .      
## Eudynamys_scolopaceus            .        .        .        .        .        .      
## Guira_guira                      .        .        .        .        .        .      
## Crotophaga_major                 .        .        .        .        .        .      
## Geococcyx_californianus          .        .        .        .        .        .      
## Neomorphus_geoffroyi             .        .        .        .        .        .      
## Morococcyx_erythropygus          .        .        .        .        .        .      
## Dromococcyx_phasianellus         .        .        .        .        .        .      
## Tapera_naevia                    .        .        .        .        .        .      
## Eurypyga_helias                  .        .        .        .        .        .      
## Rhynochetos_jubatus              .        .        .        .        .        .      
## Chunga_burmeisteri               .        .        .        .        .        .      
## Cariama_cristata                 .        .        .        .        .        .      
## Spiziapteryx_circumcincta        .        .        .        .        .        .      
## Caracara_cheriway                .        .        .        .        .        .      
## Ibycter_americanus               .        .        .        .        .        .      
## Milvago_chimachima               .        .        .        .        .        .      
## Daptrius_ater                    .        .        .        .        .        .      
## Phalcoboenus_carunculatus        .        .        .        .        .        .      
## Falco_cherrug                    .        .        .        .        .        .      
## Polihierax_semitorquatus         .        .        .        .        .        .      
## Microhierax_caerulescens         .        .        .        .        .        .      
## Herpetotheres_cachinnans         .        .        .        .        .        .      
## Micrastur_ruficollis             .        .        .        .        .        .      
## Xenicus_gilviventris             .        .        .        .        .        .      
## Acanthisitta_chloris             .        .        .        .        .        .      
## Sapayoa_aenigma                  .        .        .        .        .        .      
## Neodrepanis_coruscans            .        .        .        .        .        .      
## Philepitta_schlegeli             .        .        .        .        .        .      
## Eurylaimus_steerii               .        .        .        .        .        .      
## Cymbirhynchus_macrorhynchos      .        .        .        .        .        .      
## Serilophus_lunatus               .        .        .        .        .        .      
## Corydon_sumatranus               .        .        .        .        .        .      
## Psarisomus_dalhousiae            .        .        .        .        .        .      
## Pseudocalyptomena_graueri        .        .        .        .        .        .      
## Calyptomena_viridis              .        .        .        .        .        .      
## Smithornis_capensis              .        .        .        .        .        .      
## Pitta_steerii                    .        .        .        .        .        .      
## Terenotriccus_erythrurus         .        .        .        .        .        .      
## Onychorhynchus_coronatus         .        .        .        .        .        .      
## Oxyruncus_cristatus              .        .        .        .        .        .      
## Cnipodectes_subbrunneus          .        .        .        .        .        .      
## Todirostrum_maculatum            .        .        .        .        .        .      
## Poecilotriccus_ruficeps          .        .        .        .        .        .      
## Oncostoma_cinereigulare          .        .        .        .        .        .      
## Lophotriccus_pileatus            .        .        .        .        .        .      
## Hemitriccus_minor                .        .        .        .        .        .      
## Atalotriccus_pilaris             .        .        .        .        .        .      
## Myiornis_auricularis             .        .        .        .        .        .      
## Rhynchocyclus_brevirostris       .        .        .        .        .        .      
## Tolmomyias_sulphurescens         .        .        .        .        .        .      
## Corythopis_torquatus             .        .        .        .        .        .      
## Pseudotriccus_pelzelni           .        .        .        .        .        .      
## Phylloscartes_eximius            .        .        .        .        .        .      
## Leptopogon_amaurocephalus        .        .        .        .        .        .      
## Mionectes_olivaceus              .        .        .        .        .        .      
## Tachuris_rubrigastra             .        .        .        .        .        .      
## Neopipo_cinnamomea               .        .        .        .        .        .      
## Platyrinchus_leucoryphus         .        .        .        .        .        .      
## Culicivora_caudacuta             .        .        .        .        .        .      
## Anairetes_agilis                 .        .        .        .        .        .      
## Pseudocolopteryx_flaviventris    .        .        .        .        .        .      
## Serpophaga_cinerea               .        .        .        .        .        .      
## Polystictus_pectoralis           .        .        .        .        .        .      
## Pseudelaenia_leucospodia         .        .        .        .        .        .      
## Stigmatura_napensis              .        .        .        .        .        .      
## Mecocerculus_leucophrys          .        .        .        .        .        .      
## Phaeomyias_murina                .        .        .        .        .        .      
## Capsiempis_flaveola              .        .        .        .        .        .      
## Suiriri_suiriri                  .        .        .        .        .        .      
## Tyrannulus_elatus                .        .        .        .        .        .      
## Myiopagis_gaimardii              .        .        .        .        .        .      
## Elaenia_martinica                .        .        .        .        .        .      
## Zimmerius_vilissimus             .        .        .        .        .        .      
## Nesotriccus_ridgwayi             .        .        .        .        .        .      
## Ornithion_inerme                 .        .        .        .        .        .      
## Camptostoma_imberbe              .        .        .        .        .        .      
## Phyllomyias_burmeisteri          .        .        .        .        .        .      
## Inezia_inornata                  .        .        .        .        .        .      
## Euscarthmus_meloryphus           .        .        .        .        .        .      
## Muscigralla_brevicauda           .        .        .        .        .        .      
## Conopias_parvus                  .        .        .        .        .        .      
## Colorhamphus_parvirostris        .        .        .        .        .        .      
## Colonia_colonus                  .        .        .        .        .        .      
## Mitrephanes_phaeocercus          .        .        .        .        .        .      
## Empidonax_affinis                .        .        .        .        .        .      
## Contopus_cooperi                 .        .        .        .        .        .      
## Sayornis_phoebe                  .        .        .        .        .        .      
## Lathrotriccus_euleri             .        .        .        .        .        .      
## Ochthornis_littoralis            .        .        .        .        .        .      
## Cnemotriccus_fuscatus            .        .        .        .        .        .      
## Aphanotriccus_capitalis          .        .        .        .        .        .      
## Muscisaxicola_maculirostris      .        .        .        .        .        .      
## Satrapa_icterophrys              .        .        .        .        .        .      
## Muscipipra_vetula                .        .        .        .        .        .      
## Knipolegus_striaticeps           .        .        .        .        .        .      
## Hymenops_perspicillatus          .        .        .        .        .        .      
## Lessonia_oreas                   .        .        .        .        .        .      
## Myiotheretes_striaticollis       .        .        .        .        .        .      
## Agriornis_montanus               .        .        .        .        .        .      
## Neoxolmis_rufiventris            .        .        .        .        .        .      
## Xolmis_pyrope                    .        .        .        .        .        .      
## Cnemarchus_erythropygius         .        .        .        .        .        .      
## Polioxolmis_rufipennis           .        .        .        .        .        .      
## Arundinicola_leucocephala        .        .        .        .        .        .      
## Alectrurus_tricolor              .        .        .        .        .        .      
## Gubernetes_yetapa                .        .        .        .        .        .      
## Pyrocephalus_rubinus             .        .        .        .        .        .      
## Fluvicola_pica                   .        .        .        .        .        .      
## Sublegatus_modestus              .        .        .        .        .        .      
## Tumbezia_salvini                 .        .        .        .        .        .      
## Ochthoeca_frontalis              .        .        .        .        .        .      
## Myiophobus_flavicans             .        .        .        .        .        .      
## Legatus_leucophaius              .        .        .        .        .        .      
## Pitangus_lictor                  .        .        .        .        .        .      
## Machetornis_rixosa               .        .        .        .        .        .      
## Myiozetetes_cayanensis           .        .        .        .        .        .      
## Empidonomus_varius               .        .        .        .        .        .      
## Tyrannus_melancholicus           .        .        .        .        .        .      
## Megarynchus_pitangua             .        .        .        .        .        .      
## Tyrannopsis_sulphurea            .        .        .        .        .        .      
## Myiodynastes_hemichrysus         .        .        .        .        .        .      
## Sirystes_sibilator               .        .        .        .        .        .      
## Myiarchus_semirufus              .        .        .        .        .        .      
## Rhytipterna_simplex              .        .        .        .        .        .      
## Casiornis_rufus                  .        .        .        .        .        .      
## Phelpsia_inornatus               .        .        .        .        .        .      
## Attila_spadiceus                 .        .        .        .        .        .      
## Ramphotrigon_ruficauda           .        .        .        .        .        .      
## Deltarhynchus_flammulatus        .        .        .        .        .        .      
## Pyrrhomyias_cinnamomeus          .        .        .        .        .        .      
## Hirundinea_ferruginea            .        .        .        .        .        .      
## Myiotriccus_ornatus              .        .        .        .        .        .      
## Piprites_pileata                 .        .        .        .        .        .      
## Iodopleura_fusca                 .        .        .        .        .        .      
## Tityra_semifasciata              .        .        .        .        .        .      
## Pachyramphus_viridis             .        .        .        .        .        .      
## Schiffornis_major                .        .        .        .        .        .      
## Laniisoma_elegans                .        .        .        .        .        .      
## Laniocera_rufescens              .        .        .        .        .        .      
## Corapipo_gutturalis              .        .        .        .        .        .      
## Masius_chrysopterus              .        .        .        .        .        .      
## Ilicura_militaris                .        .        .        .        .        .      
## Antilophia_galeata               .        .        .        .        .        .      
## Chiroxiphia_linearis             .        .        .        .        .        .      
## Xenopipo_atronitens              .        .        .        .        .        .      
## Lepidothrix_coronata             .        .        .        .        .        .      
## Machaeropterus_pyrocephalus      .        .        .        .        .        .      
## Pipra_chloromeros                .        .        .        .        .        .      
## Manacus_vitellinus               .        .        .        .        .        .      
## Heterocercus_flavivertex         .        .        .        .        .        .      
## Tyranneutes_stolzmanni           .        .        .        .        .        .      
## Neopelma_chrysocephalum          .        .        .        .        .        .      
## Doliornis_sclateri               .        .        .        .        .        .      
## Ampelion_rubrocristatus          .        .        .        .        .        .      
## Phytotoma_raimondii              .        .        .        .        .        .      
## Carpornis_cucullata              .        .        .        .        .        .      
## Snowornis_subalaris              .        .        .        .        .        .      
## Querula_purpurata                .        .        .        .        .        .      
## Pyroderus_scutatus               .        .        .        .        .        .      
## Cephalopterus_penduliger         .        .        .        .        .        .      
## Perissocephalus_tricolor         .        .        .        .        .        .      
## Haematoderus_militaris           .        .        .        .        .        .      
## Procnias_tricarunculatus         .        .        .        .        .        .      
## Carpodectes_nitidus              .        .        .        .        .        .      
## Xipholena_punicea                .        .        .        .        .        .      
## Gymnoderus_foetidus              .        .        .        .        .        .      
## Porphyrolaema_porphyrolaema      .        .        .        .        .        .      
## Phibalura_flavirostris           .        .        .        .        .        .      
## Lipaugus_fuscocinereus           .        .        .        .        .        .      
## Tijuca_atra                      .        .        .        .        .        .      
## Cotinga_amabilis                 .        .        .        .        .        .      
## Calyptura_cristata               .        .        .        .        .        .      
## Rupicola_rupicola                .        .        .        .        .        .      
## Phoenicircus_nigricollis         .        .        .        .        .        .      
## Ampelioides_tschudii             .        .        .        .        .        .      
## Pipreola_whitelyi                .        .        .        .        .        .      
## Thamnistes_anabatinus            .        .        .        .        .        .      
## Pygiptila_stellaris              .        .        .        .        .        .      
## Myrmornis_torquata               .        .        .        .        .        .      
## Neoctantes_niger                 .        .        .        .        .        .      
## Epinecrophylla_fulviventris      .        .        .        .        .        .      
## Myrmorchilus_strigilatus         .        .        .        .        .        .      
## Microrhopias_quixensis           .        .        .        .        .        .      
## Clytoctantes_alixii              .        .        .        .        .        .      
## Formicivora_grisea               .        .        .        .        .        .      
## Myrmotherula_brachyura           .        .        .        .        .        .      
## Cercomacra_cinerascens           .        .        .        .        .        .      
## Hypocnemis_cantator              .        .        .        .        .        .      
## Drymophila_ferruginea            .        .        .        .        .        .      
## Willisornis_poecilinotus         .        .        .        .        .        .      
## Rhegmatorhina_gymnops            .        .        .        .        .        .      
## Gymnopithys_rufigula             .        .        .        .        .        .      
## Phlegopsis_nigromaculata         .        .        .        .        .        .      
## Phaenostictus_mcleannani         .        .        .        .        .        .      
## Pithys_albifrons                 .        .        .        .        .        .      
## Rhopornis_ardesiacus             .        .        .        .        .        .      
## Myrmoborus_leucophrys            .        .        .        .        .        .      
## Percnostola_rufifrons            .        .        .        .        .        .      
## Pyriglena_atra                   .        .        .        .        .        .      
## Gymnocichla_nudiceps             .        .        .        .        .        .      
## Myrmeciza_ruficauda              .        .        .        .        .        .      
## Hylophylax_naevioides            .        .        .        .        .        .      
## Hypocnemoides_maculicauda        .        .        .        .        .        .      
## Schistocichla_leucostigma        .        .        .        .        .        .      
## Sclateria_naevia                 .        .        .        .        .        .      
## Thamnomanes_saturninus           .        .        .        .        .        .      
## Megastictus_margaritatus         .        .        .        .        .        .      
## Biatas_nigropectus               .        .        .        .        .        .      
## Herpsilochmus_rufimarginatus     .        .        .        .        .        .      
## Dysithamnus_stictothorax         .        .        .        .        .        .      
## Sakesphorus_canadensis           .        .        .        .        .        .      
## Thamnophilus_doliatus            .        .        .        .        .        .      
## Mackenziaena_severa              .        .        .        .        .        .      
## Frederickena_viridis             .        .        .        .        .        .      
## Hypoedaleus_guttatus             .        .        .        .        .        .      
## Batara_cinerea                   .        .        .        .        .        .      
## Taraba_major                     .        .        .        .        .        .      
## Cymbilaimus_lineatus             .        .        .        .        .        .      
## Dichrozona_cincta                .        .        .        .        .        .      
## Terenura_maculata                .        .        .        .        .        .      
## Pittasoma_michleri               .        .        .        .        .        .      
## Conopophaga_melanops             .        .        .        .        .        .      
## Melanopareia_torquata            .        .        .        .        .        .      
## Dendrocincla_tyrannina           .        .        .        .        .        .      
## Deconychura_longicauda           .        .        .        .        .        .      
## Sittasomus_griseicapillus        .        .        .        .        .        .      
## Dendroplex_picus                 .        .        .        .        .        .      
## Xiphorhynchus_obsoletus          .        .        .        .        .        .      
## Drymornis_bridgesii              .        .        .        .        .        .      
## Campylorhamphus_pucherani        .        .        .        .        .        .      
## Lepidocolaptes_souleyetii        .        .        .        .        .        .      
## Hylexetastes_perrotii            .        .        .        .        .        .      
## Xiphocolaptes_promeropirhynchus  .        .        .        .        .        .      
## Dendrocolaptes_picumnus          .        .        .        .        .        .      
## Nasica_longirostris              .        .        .        .        .        .      
## Dendrexetastes_rufigula          .        .        .        .        .        .      
## Glyphorynchus_spirurus           .        .        .        .        .        .      
## Xenops_rutilans                  .        .        .        .        .        .      
## Margarornis_rubiginosus          .        .        .        .        .        .      
## Premnoplex_brunnescens           .        .        .        .        .        .      
## Anabazenops_fuscus               .        .        .        .        .        .      
## Syndactyla_guttulata             .        .        .        .        .        .      
## Anabacerthia_variegaticeps       .        .        .        .        .        .      
## Cichlocolaptes_leucophrus        .        .        .        .        .        .      
## Heliobletus_contaminatus         .        .        .        .        .        .      
## Philydor_ruficaudatum            .        .        .        .        .        .      
## Ancistrops_strigilatus           .        .        .        .        .        .      
## Hylocryptus_rectirostris         .        .        .        .        .        .      
## Automolus_infuscatus             .        .        .        .        .        .      
## Hyloctistes_subulatus            .        .        .        .        .        .      
## Thripadectes_melanorhynchus      .        .        .        .        .        .      
## Berlepschia_rikeri               .        .        .        .        .        .      
## Premnornis_guttuligera           .        .        .        .        .        .      
## Tarphonomus_certhioides          .        .        .        .        .        .      
## Pseudocolaptes_lawrencii         .        .        .        .        .        .      
## Cinclodes_fuscus                 .        .        .        .        .        .      
## Upucerthia_serrana               .        .        .        .        .        .      
## Furnarius_rufus                  .        .        .        .        .        .      
## Phleocryptes_melanops            .        .        .        .        .        .      
## Limnornis_curvirostris           .        .        .        .        .        .      
## Lochmias_nematura                .        .        .        .        .        .      
## Leptasthenura_platensis          .        .        .        .        .        .      
## Sylviorthorhynchus_desmursii     .        .        .        .        .        .      
## Schizoeaca_coryi                 .        .        .        .        .        .      
## Pseudoseisura_cristata           .        .        .        .        .        .      
## Cranioleuca_vulpecula            .        .        .        .        .        .      
## Limnoctites_rectirostris         .        .        .        .        .        .      
## Siptornis_striaticollis          .        .        .        .        .        .      
## Thripophaga_macroura             .        .        .        .        .        .      
## Roraimia_adusta                  .        .        .        .        .        .      
## Metopothrix_aurantiaca           .        .        .        .        .        .      
## Synallaxis_brachyura             .        .        .        .        .        .      
## Asthenes_steinbachi              .        .        .        .        .        .      
## Siptornopsis_hypochondriaca      .        .        .        .        .        .      
## Schoeniophylax_phryganophilus    .        .        .        .        .        .      
## Certhiaxis_cinnamomeus           .        .        .        .        .        .      
## Spartonoica_maluroides           .        .        .        .        .        .      
## Anumbius_annumbi                 .        .        .        .        .        .      
## Coryphistera_alaudina            .        .        .        .        .        .      
## Hellmayrea_gularis               .        .        .        .        .        .      
## Phacellodomus_rufifrons          .        .        .        .        .        .      
## Aphrastura_spinicauda            .        .        .        .        .        .      
## Pygarrhichas_albogularis         .        .        .        .        .        .      
## Ochetorhynchus_andaecola         .        .        .        .        .        .      
## Sclerurus_rufigularis            .        .        .        .        .        .      
## Geositta_tenuirostris            .        .        .        .        .        .      
## Chamaeza_campanisona             .        .        .        .        .        .      
## Formicarius_colma                .        .        .        .        .        .      
## Eugralla_paradoxa                .        .        .        .        .        .      
## Scytalopus_meridanus             .        .        .        .        .        .      
## Myornis_senilis                  .        .        .        .        .        .      
## Eleoscytalopus_indigoticus       .        .        .        .        .        .      
## Merulaxis_ater                   .        .        .        .        .        .      
## Scelorchilus_rubecula            .        .        .        .        .        .      
## Pteroptochos_tarnii              .        .        .        .        .        .      
## Teledromas_fuscus                .        .        .        .        .        .      
## Rhinocrypta_lanceolata           .        .        .        .        .        .      
## Acropternis_orthonyx             .        .        .        .        .        .      
## Psilorhamphus_guttatus           .        .        .        .        .        .      
## Liosceles_thoracicus             .        .        .        .        .        .      
## Grallaria_ruficapilla            .        .        .        .        .        .      
## Myrmothera_campanisona           .        .        .        .        .        .      
## Hylopezus_perspicillatus         .        .        .        .        .        .      
## Grallaricula_flavirostris        .        .        .        .        .        .      
## Menura_novaehollandiae           .        .        .        .        .        .      
## Atrichornis_rufescens            .        .        .        .        .        .      
## Scenopoeetes_dentirostris        .        .        .        .        .        .      
## Prionodura_newtoniana            .        .        .        .        .        .      
## Archboldia_papuensis             .        .        .        .        .        .      
## Amblyornis_macgregoriae          .        .        .        .        .        .      
## Ailuroedus_crassirostris         .        .        .        .        .        .      
## Sericulus_chrysocephalus         .        .        .        .        .        .      
## Chlamydera_cerviniventris        .        .        .        .        .        .      
## Ptilonorhynchus_violaceus        .        .        .        .        .        .      
## Cormobates_leucophaea            .        .        .        .        .        .      
## Climacteris_affinis              .        .        .        .        .        .      
## Amytornis_barbatus               .        .        .        .        .        .      
## Stipiturus_malachurus            .        .        .        .        .        .      
## Sipodotus_wallacii               .        .        .        .        .        .      
## Malurus_cyaneus                  .        .        .        .        .        .      
## Dasyornis_longirostris           .        .        .        .        .        .      
## Melitograis_gilolensis           .        .        .        .        .        .      
## Glycichaera_fallax               .        .        .        .        .        .      
## Ptiloprora_guisei                .        .        .        .        .        .      
## Anthornis_melanura               .        .        .        .        .        .      
## Apalopteron_familiare            .        .        .        .        .        .      
## Lichenostomus_subfrenatus        .        .        .        .        .        .      
## Acanthorhynchus_superciliosus    .        .        .        .        .        .      
## Certhionyx_variegatus            .        .        .        .        .        .      
## Prosthemadera_novaeseelandiae    .        .        .        .        .        .      
## Pycnopygius_ixoides              .        .        .        .        .        .      
## Xanthomyza_phrygia               .        .        .        .        .        .      
## Anthochaera_chrysoptera          .        .        .        .        .        .      
## Acanthagenys_rufogularis         .        .        .        .        .        .      
## Stresemannia_bougainvillei       .        .        .        .        .        .      
## Manorina_melanocephala           .        .        .        .        .        .      
## Melidectes_torquatus             .        .        .        .        .        .      
## Guadalcanaria_inexpectata        .        .        .        .        .        .      
## Timeliopsis_fulvigula            .        .        .        .        .        .      
## Melilestes_megarhynchus          .        .        .        .        .        .      
## Melipotes_gymnops                .        .        .        .        .        .      
## Macgregoria_pulchra              .        .        .        .        .        .      
## Ashbyia_lovensis                 .        .        .        .        .        .      
## Epthianura_tricolor              .        .        .        .        .        .      
## Conopophila_albogularis          .        .        .        .        .        .      
## Ramsayornis_modestus             .        .        .        .        .        .      
## Myzomela_eichhorni               .        .        .        .        .        .      
## Gymnomyza_aubryana               .        .        .        .        .        .      
## Foulehaio_carunculatus           .        .        .        .        .        .      
## Entomyzon_cyanotis               .        .        .        .        .        .      
## Melithreptus_lunatus             .        .        .        .        .        .      
## Myza_sarasinorum                 .        .        .        .        .        .      
## Phylidonyris_pyrrhopterus        .        .        .        .        .        .      
## Trichodere_cockerelli            .        .        .        .        .        .      
## Lichmera_flavicans               .        .        .        .        .        .      
## Grantiella_picta                 .        .        .        .        .        .      
## Plectorhyncha_lanceolata         .        .        .        .        .        .      
## Xanthotis_provocator             .        .        .        .        .        .      
## Philemon_novaeguineae            .        .        .        .        .        .      
## Pardalotus_quadragintus          .        .        .        .        .        .      
## Aphelocephala_leucopsis          .        .        .        .        .        .      
## Acanthornis_magna                .        .        .        .        .        .      
## Acanthiza_murina                 .        .        .        .        .        .      
## Smicrornis_brevirostris          .        .        .        .        .        .      
## Origma_solitaria                 .        .        .        .        .        .      
## Crateroscelis_murina             .        .        .        .        .        .      
## Sericornis_citreogularis         .        .        .        .        .        .      
## Pycnoptilus_floccosus            .        .        .        .        .        .      
## Chthonicola_sagittatus           .        .        .        .        .        .      
## Pyrrholaemus_brunneus            .        .        .        .        .        .      
## Hylacola_pyrrhopygia             .        .        .        .        .        .      
## Calamanthus_fuliginosus          .        .        .        .        .        .      
## Gerygone_cinerea                 .        .        .        .        .        .      
## Oreoscopus_gutturalis            .        .        .        .        .        .      
## Pomatostomus_ruficeps            .        .        .        .        .        .      
## Orthonyx_temminckii              .        .        .        .        .        .      
## Notiomystis_cincta               .        .        .        .        .        .      
## Melanocharis_striativentris      .        .        .        .        .        .      
## Oedistoma_pygmaeum               .        .        .        .        .        .      
## Toxorhamphus_novaeguineae        .        .        .        .        .        .      
## Loboparadisea_sericea            .        .        .        .        .        .      
## Cnemophilus_macgregorii          .        .        .        .        .        .      
## Callaeas_cinereus                .        .        .        .        .        .      
## Philesturnus_carunculatus        .        .        .        .        .        .      
## Daphoenositta_chrysoptera        .        .        .        .        .        .      
## Oreocharis_arfaki                .        .        .        .        .        .      
## Paramythia_montium               .        .        .        .        .        .      
## Pitohui_dichrous                 .        .        .        .        .        .      
## Sphecotheres_hypoleucus          .        .        .        .        .        .      
## Oriolus_sagittatus               .        .        .        .        .        .      
## Lamprolia_victoriae              .        .        .        .        .        .      
## Rhipidura_teysmanni              .        .        .        .        .        .      
## Struthidea_cinerea               .        .        .        .        .        .      
## Corcorax_melanorhamphos          .        .        .        .        .        .      
## Hypothymis_azurea                .        .        .        .        .        .      
## Terpsiphone_rufiventer           .        .        .        .        .        .      
## Trochocercus_nitens              .        .        .        .        .        .      
## Grallina_cyanoleuca              .        .        .        .        .        .      
## Myiagra_alecto                   .        .        .        .        .        .      
## Monarcha_axillaris               .        .        .        .        .        .      
## Metabolus_rugensis               .        .        .        .        .        .      
## Clytorhynchus_hamlini            .        .        .        .        .        .      
## Mayrornis_lessoni                .        .        .        .        .        .      
## Neolalage_banksiana              .        .        .        .        .        .      
## Pomarea_whitneyi                 .        .        .        .        .        .      
## Chasiempis_sandwichensis         .        .        .        .        .        .      
## Arses_kaupi                      .        .        .        .        .        .      
## Melampitta_lugubris              .        .        .        .        .        .      
## Lycocorax_pyrrhopterus           .        .        .        .        .        .      
## Manucodia_comrii                 .        .        .        .        .        .      
## Parotia_carolae                  .        .        .        .        .        .      
## Pteridophora_alberti             .        .        .        .        .        .      
## Cicinnurus_regius                .        .        .        .        .        .      
## Paradisaea_raggiana              .        .        .        .        .        .      
## Paradigalla_brevicauda           .        .        .        .        .        .      
## Astrapia_splendidissima          .        .        .        .        .        .      
## Epimachus_bruijnii               .        .        .        .        .        .      
## Seleucidis_melanoleucus          .        .        .        .        .        .      
## Semioptera_wallacii              .        .        .        .        .        .      
## Ptiloris_intercedens             .        .        .        .        .        .      
## Lophorina_superba                .        .        .        .        .        .      
## Ifrita_kowaldi                   .        .        .        .        .        .      
## Eurocephalus_anguitimens         .        .        .        .        .        .      
## Lanius_minor                     .        .        .        .        .        .      
## Urolestes_melanoleucus           .        .        .        .        .        .      
## Corvinella_corvina               .        .        .        .        .        .      
## Platylophus_galericulatus        .        .        .        .        .        .      
## Cyanopica_cyanus                 .        .        .        .        .        .      
## Perisoreus_canadensis            .        .        .        .        .        .      
## Ptilostomus_afer                 .        .        .        .        .        .      
## Podoces_hendersoni               .        .        .        .        .        .      
## Pica_hudsonia                    .        .        .        .        .        .      
## Nucifraga_caryocatactes          .        .        .        .        .        .      
## Corvus_corone                    .        .        .        .        .        .      
## Garrulus_lidthi                  .        .        .        .        .        .      
## Zavattariornis_stresemanni       .        .        .        .        .        .      
## Calocitta_colliei                .        .        .        .        .        .      
## Cyanocorax_yncas                 .        .        .        .        .        .      
## Aphelocoma_insularis             .        .        .        .        .        .      
## Gymnorhinus_cyanocephalus        .        .        .        .        .        .      
## Cyanocitta_cristata              .        .        .        .        .        .      
## Cyanolyca_cucullata              .        .        .        .        .        .      
## Urocissa_caerulea                .        .        .        .        .        .      
## Cissa_hypoleuca                  .        .        .        .        .        .      
## Dendrocitta_leucogastra          .        .        .        .        .        .      
## Platysmurus_leucopterus          .        .        .        .        .        .      
## Temnurus_temnurus                .        .        .        .        .        .      
## Crypsirina_cucullata             .        .        .        .        .        .      
## Pyrrhocorax_pyrrhocorax          .        .        .        .        .        .      
## Dicrurus_caerulescens            .        .        .        .        .        .      
## Vireolanius_leucotis             .        .        .        .        .        .      
## Hylophilus_poicilotis            .        .        .        .        .        .      
## Vireo_brevipennis                .        .        .        .        .        .      
## Erpornis_zantholeuca             .        .        .        .        .        .      
## Cyclarhis_gujanensis             .        .        .        .        .        .      
## Pteruthius_rufiventer            .        .        .        .        .        .      
## Pachycephala_albiventris         .        .        .        .        .        .      
## Colluricincla_harmonica          .        .        .        .        .        .      
## Pachycare_flavogriseum           .        .        .        .        .        .      
## Aleadryas_rufinucha              .        .        .        .        .        .      
## Oreoica_gutturalis               .        .        .        .        .        .      
## Rhagologus_leucostigma           .        .        .        .        .        .      
## Machaerirhynchus_nigripectus     .        .        .        .        .        .      
## Artamus_fuscus                   .        .        .        .        .        .      
## Peltops_blainvillii              .        .        .        .        .        .      
## Strepera_graculina               .        .        .        .        .        .      
## Gymnorhina_tibicen               .        .        .        .        .        .      
## Cracticus_mentalis               .        .        .        .        .        .      
## Aegithina_viridissima            .        .        .        .        .        .      
## Malaconotus_alius                .        .        .        .        .        .      
## Tchagra_minutus                  .        .        .        .        .        .      
## Dryoscopus_angolensis            .        .        .        .        .        .      
## Telophorus_zeylonus              .        .        .        .        .        .      
## Rhodophoneus_cruentus            .        .        .        .        .        .      
## Laniarius_poensis                .        .        .        .        .        .      
## Nilaus_afer                      .        .        .        .        .        .      
## Euryceros_prevostii              .        .        .        .        .        .      
## Vanga_curvirostris               .        .        .        .        .        .      
## Xenopirostris_xenopirostris      .        .        .        .        .        .      
## Hypositta_corallirostris         .        .        .        .        .        .      
## Schetba_rufa                     .        .        .        .        .        .      
## Pseudobias_wardi                 .        .        .        .        .        .      
## Oriolia_bernieri                 .        .        .        .        .        .      
## Falculea_palliata                .        .        .        .        .        .      
## Newtonia_brunneicauda            .        .        .        .        .        .      
## Leptopterus_chabert              .        .        .        .        .        .      
## Cyanolanius_madagascarinus       .        .        .        .        .        .      
## Calicalicus_madagascariensis     .        .        .        .        .        .      
## Tylas_eduardi                    .        .        .        .        .        .      
## Artamella_viridis                .        .        .        .        .        .      
## Mystacornis_crossleyi            .        .        .        .        .        .      
## Philentoma_pyrhoptera            .        .        .        .        .        .      
## Megabyas_flammulatus             .        .        .        .        .        .      
## Bias_musicus                     .        .        .        .        .        .      
## Prionops_caniceps                .        .        .        .        .        .      
## Hemipus_picatus                  .        .        .        .        .        .      
## Tephrodornis_pondicerianus       .        .        .        .        .        .      
## Lanioturdus_torquatus            .        .        .        .        .        .      
## Batis_minor                      .        .        .        .        .        .      
## Platysteira_castanea             .        .        .        .        .        .      
## Pityriasis_gymnocephala          .        .        .        .        .        .      
## Lalage_melanoleuca               .        .        .        .        .        .      
## Coracina_typica                  .        .        .        .        .        .      
## Campochaera_sloetii              .        .        .        .        .        .      
## Campephaga_petiti                .        .        .        .        .        .      
## Pericrocotus_flammeus            .        .        .        .        .        .      
## Eulacestoma_nigropectus          .        .        .        .        .        .      
## Falcunculus_frontatus            .        .        .        .        .        .      
## Psophodes_olivaceus              .        .        .        .        .        .      
## Cinclosoma_castaneothorax        .        .        .        .        .        .      
## Ptilorrhoa_leucosticta           .        .        .        .        .        .      
## Mohoua_ochrocephala              .        .        .        .        .        .      
## Chaetops_aurantius               .        .        .        .        .        .      
## Eupetes_macrocerus               .        .        .        .        .        .      
## Picathartes_oreas                .        .        .        .        .        .      
## Microeca_fascinans               .        .        .        .        .        .      
## Monachella_muelleriana           .        .        .        .        .        .      
## Drymodes_superciliaris           .        .        .        .        .        .      
## Peneothello_sigillatus           .        .        .        .        .        .      
## Melanodryas_cucullata            .        .        .        .        .        .      
## Tregellasia_capito               .        .        .        .        .        .      
## Eopsaltria_griseogularis         .        .        .        .        .        .      
## Heteromyias_albispecularis       .        .        .        .        .        .      
## Poecilodryas_hypoleuca           .        .        .        .        .        .      
## Pachycephalopsis_poliosoma       .        .        .        .        .        .      
## Petroica_multicolor              .        .        .        .        .        .      
## Amalocichla_incerta              .        .        .        .        .        .      
## Auriparus_flaviceps              .        .        .        .        .        .      
## Remiz_pendulinus                 .        .        .        .        .        .      
## Anthoscopus_punctifrons          .        .        .        .        .        .      
## Sylviparus_modestus              .        .        .        .        .        .      
## Pseudopodoces_humilis            .        .        .        .        .        .      
## Parus_major                      .        .        .        .        .        .      
## Baeolophus_bicolor               .        .        .        .        .        .      
## Melanochlora_sultanea            .        .        .        .        .        .      
## Cephalopyrus_flammiceps          .        .        .        .        .        .      
## Elminia_longicauda               .        .        .        .        .        .      
## Culicicapa_ceylonensis           .        .        .        .        .        .      
## Stenostira_scita                 .        .        .        .        .        .      
## Chelidorhynx_hypoxantha          .        .        .        .        .        .      
## Nicator_chloris                  .        .        .        .        .        .      
## Panurus_biarmicus                .        .        .        .        .        .      
## Pinarocorys_erythropygia         .        .        .        .        .        .      
## Alaemon_alaudipes                .        .        .        .        .        .      
## Heteromirafra_ruddi              .        .        .        .        .        .      
## Chersomanes_albofasciata         .        .        .        .        .        .      
## Eremopterix_nigriceps            .        .        .        .        .        .      
## Certhilauda_curvirostris         .        .        .        .        .        .      
## Ammomanes_grayi                  .        .        .        .        .        .      
## Chersophilus_duponti             .        .        .        .        .        .      
## Rhamphocoris_clotbey             .        .        .        .        .        .      
## Eremophila_bilopha               .        .        .        .        .        .      
## Calandrella_cinerea              .        .        .        .        .        .      
## Melanocorypha_calandra           .        .        .        .        .        .      
## Eremalauda_starki                .        .        .        .        .        .      
## Spizocorys_conirostris           .        .        .        .        .        .      
## Lullula_arborea                  .        .        .        .        .        .      
## Galerida_magnirostris            .        .        .        .        .        .      
## Alauda_arvensis                  .        .        .        .        .        .      
## Mirafra_passerina                .        .        .        .        .        .      
## Pseudalaemon_fremantlii          .        .        .        .        .        .      
## Hyliota_australis                .        .        .        .        .        .      
## Amaurocichla_bocagei             .        .        .        .        .        .      
## Megalurulus_mariei               .        .        .        .        .        .      
## Scotocerca_inquieta              .        .        .        .        .        .      
## Nesillas_lantzii                 .        .        .        .        .        .      
## Hippolais_olivetorum             .        .        .        .        .        .      
## Acrocephalus_concinens           .        .        .        .        .        .      
## Chloropeta_natalensis            .        .        .        .        .        .      
## Locustella_luscinioides          .        .        .        .        .        .      
## Bradypterus_thoracicus           .        .        .        .        .        .      
## Schoenicola_brevirostris         .        .        .        .        .        .      
## Dromaeocercus_brunneus           .        .        .        .        .        .      
## Megalurus_gramineus              .        .        .        .        .        .      
## Eremiornis_carteri               .        .        .        .        .        .      
## Chaetornis_striata               .        .        .        .        .        .      
## Cincloramphus_cruralis           .        .        .        .        .        .      
## Randia_pseudozosterops           .        .        .        .        .        .      
## Crossleyia_xanthophrys           .        .        .        .        .        .      
## Bowdleria_punctata               .        .        .        .        .        .      
## Thamnornis_chloropetoides        .        .        .        .        .        .      
## Amphilais_seebohmi               .        .        .        .        .        .      
## Oxylabes_madagascariensis        .        .        .        .        .        .      
## Buettikoferella_bivittata        .        .        .        .        .        .      
## Hemitesia_neumanni               .        .        .        .        .        .      
## Neomixis_flavoviridis            .        .        .        .        .        .      
## Donacobius_atricapilla           .        .        .        .        .        .      
## Neolestes_torquatus              .        .        .        .        .        .      
## Pyrrhurus_scandens               .        .        .        .        .        .      
## Phyllastrephus_cabanisi          .        .        .        .        .        .      
## Criniger_barbatus                .        .        .        .        .        .      
## Bleda_notatus                    .        .        .        .        .        .      
## Baeopogon_indicator              .        .        .        .        .        .      
## Chlorocichla_simplex             .        .        .        .        .        .      
## Thescelocichla_leucopleura       .        .        .        .        .        .      
## Ixonotus_guttatus                .        .        .        .        .        .      
## Andropadus_montanus              .        .        .        .        .        .      
## Calyptocichla_serina             .        .        .        .        .        .      
## Tricholestes_criniger            .        .        .        .        .        .      
## Hemixos_flavala                  .        .        .        .        .        .      
## Hypsipetes_mcclellandii          .        .        .        .        .        .      
## Iole_olivacea                    .        .        .        .        .        .      
## Ixos_palawanensis                .        .        .        .        .        .      
## Setornis_criniger                .        .        .        .        .        .      
## Alophoixus_finschii              .        .        .        .        .        .      
## Spizixos_semitorques             .        .        .        .        .        .      
## Pycnonotus_sinensis              .        .        .        .        .        .      
## Bernieria_zosterops              .        .        .        .        .        .      
## Drymocichla_incana               .        .        .        .        .        .      
## Phragmacia_substriata            .        .        .        .        .        .      
## Malcorus_pectoralis              .        .        .        .        .        .      
## Heliolais_erythropterus          .        .        .        .        .        .      
## Graueria_vittata                 .        .        .        .        .        .      
## Incana_incana                    .        .        .        .        .        .      
## Hypergerus_atriceps              .        .        .        .        .        .      
## Eminia_lepida                    .        .        .        .        .        .      
## Euryptila_subcinnamomea          .        .        .        .        .        .      
## Bathmocercus_rufus               .        .        .        .        .        .      
## Cisticola_lateralis              .        .        .        .        .        .      
## Oreolais_pulchra                 .        .        .        .        .        .      
## Artisornis_moreaui               .        .        .        .        .        .      
## Urolais_epichlorus               .        .        .        .        .        .      
## Phyllolais_pulchella             .        .        .        .        .        .      
## Poliolais_lopezi                 .        .        .        .        .        .      
## Prinia_burnesii                  .        .        .        .        .        .      
## Camaroptera_chloronota           .        .        .        .        .        .      
## Spiloptila_clamans               .        .        .        .        .        .      
## Apalis_thoracica                 .        .        .        .        .        .      
## Eremomela_pusilla                .        .        .        .        .        .      
## Pnoepyga_albiventer              .        .        .        .        .        .      
## Kakamega_poliothorax             .        .        .        .        .        .      
## Hypocryptadius_cinnamomeus       .        .        .        .        .        .      
## Turdinus_macrodactylus           .        .        .        .        .        .      
## Graminicola_bengalensis          .        .        .        .        .        .      
## Malacopteron_magnum              .        .        .        .        .        .      
## Gypsophila_crispifrons           .        .        .        .        .        .      
## Robsonius_rabori                 .        .        .        .        .        .      
## Gampsorhynchus_rufulus           .        .        .        .        .        .      
## Napothera_brevicaudata           .        .        .        .        .        .      
## Rimator_pasquieri                .        .        .        .        .        .      
## Jabouilleia_danjoui              .        .        .        .        .        .      
## Malacocincla_abbotti             .        .        .        .        .        .      
## Illadopsis_cleaveri              .        .        .        .        .        .      
## Ptyrticus_turdinus               .        .        .        .        .        .      
## Pellorneum_albiventre            .        .        .        .        .        .      
## Trichastoma_rostratum            .        .        .        .        .        .      
## Kenopia_striata                  .        .        .        .        .        .      
## Kupeornis_gilberti               .        .        .        .        .        .      
## Phyllanthus_atripennis           .        .        .        .        .        .      
## Turdoides_hindei                 .        .        .        .        .        .      
## Babax_waddelli                   .        .        .        .        .        .      
## Garrulax_monileger               .        .        .        .        .        .      
## Cutia_nipalensis                 .        .        .        .        .        .      
## Liocichla_steerii                .        .        .        .        .        .      
## Heterophasia_picaoides           .        .        .        .        .        .      
## Leiothrix_argentauris            .        .        .        .        .        .      
## Strophocincla_cachinnans         .        .        .        .        .        .      
## Minla_cyanouroptera              .        .        .        .        .        .      
## Actinodura_egertoni              .        .        .        .        .        .      
## Spelaeornis_troglodytoides       .        .        .        .        .        .      
## Ptilocichla_leucogrammica        .        .        .        .        .        .      
## Xiphirhynchus_superciliaris      .        .        .        .        .        .      
## Pomatorhinus_montanus            .        .        .        .        .        .      
## Macronous_gularis                .        .        .        .        .        .      
## Timalia_pileata                  .        .        .        .        .        .      
## Dumetia_hyperythra               .        .        .        .        .        .      
## Sphenocichla_humei               .        .        .        .        .        .      
## Stachyris_ambigua                .        .        .        .        .        .      
## Rhopocichla_atriceps             .        .        .        .        .        .      
## Yuhina_castaniceps               .        .        .        .        .        .      
## Crocias_albonotatus              .        .        .        .        .        .      
## Cleptornis_marchei               .        .        .        .        .        .      
## Woodfordia_superciliosa          .        .        .        .        .        .      
## Tephrozosterops_stalkeri         .        .        .        .        .        .      
## Zosterops_erythropleurus         .        .        .        .        .        .      
## Chlorocharis_emiliae             .        .        .        .        .        .      
## Speirops_leucophoeus             .        .        .        .        .        .      
## Megazosterops_palauensis         .        .        .        .        .        .      
## Oculocincta_squamifrons          .        .        .        .        .        .      
## Lophozosterops_dohertyi          .        .        .        .        .        .      
## Heleia_crassirostris             .        .        .        .        .        .      
## Dasycrotapha_speciosa            .        .        .        .        .        .      
## Rukia_ruki                       .        .        .        .        .        .      
## Malia_grata                      .        .        .        .        .        .      
## Myzornis_pyrrhoura               .        .        .        .        .        .      
## Lioptilus_nigricapillus          .        .        .        .        .        .      
## Parophasma_galinieri             .        .        .        .        .        .      
## Paradoxornis_heudei              .        .        .        .        .        .      
## Chamaea_fasciata                 .        .        .        .        .        .      
## Chrysomma_sinense                .        .        .        .        .        .      
## Rhopophilus_pekinensis           .        .        .        .        .        .      
## Alcippe_ruficapilla              .        .        .        .        .        .      
## Conostoma_oemodium               .        .        .        .        .        .      
## Sylvia_atricapilla               .        .        .        .        .        .      
## Horizorhinus_dohrni              .        .        .        .        .        .      
## Pseudoalcippe_abyssinica         .        .        .        .        .        .      
## Tachycineta_bicolor              .        .        .        .        .        .      
## Pygochelidon_cyanoleuca          .        .        .        .        .        .      
## Atticora_melanoleuca             .        .        .        .        .        .      
## Haplochelidon_andecola           .        .        .        .        .        .      
## Notiochelidon_murina             .        .        .        .        .        .      
## Alopochelidon_fucata             .        .        .        .        .        .      
## Neochelidon_tibialis             .        .        .        .        .        .      
## Stelgidopteryx_serripennis       .        .        .        .        .        .      
## Progne_subis                     .        .        .        .        .        .      
## Phedina_borbonica                .        .        .        .        .        .      
## Riparia_cincta                   .        .        .        .        .        .      
## Delichon_urbicum                 .        .        .        .        .        .      
## Hirundo_rupestris                .        .        .        .        .        .      
## Petrochelidon_pyrrhonota         .        .        .        .        .        .      
## Psalidoprocne_nitens             .        .        .        .        .        .      
## Pseudhirundo_griseopyga          .        .        .        .        .        .      
## Cheramoeca_leucosterna           .        .        .        .        .        .      
## Eurochelidon_sirintarae          .        .        .        .        .        .      
## Pseudochelidon_eurystomina       .        .        .        .        .        .      
## Pholidornis_rushiae              .        .        .        .        .        .      
## Hylia_prasina                    .        .        .        .        .        .      
## Erythrocercus_holochlorus        .        .        .        .        .        .      
## Abroscopus_schisticeps           .        .        .        .        .        .      
## Tesia_cyaniventer                .        .        .        .        .        .      
## Urosphena_squameiceps            .        .        .        .        .        .      
## Cettia_diphone                   .        .        .        .        .        .      
## Orthotomus_cuculatus             .        .        .        .        .        .      
## Tickellia_hodgsoni               .        .        .        .        .        .      
## Seicercus_montis                 .        .        .        .        .        .      
## Phylloscopus_canariensis         .        .        .        .        .        .      
## Leptopoecile_sophiae             .        .        .        .        .        .      
## Psaltria_exilis                  .        .        .        .        .        .      
## Psaltriparus_minimus             .        .        .        .        .        .      
## Aegithalos_concinnus             .        .        .        .        .        .      
## Macrosphenus_kretschmeri         .        .        .        .        .        .      
## Melocichla_mentalis              .        .        .        .        .        .      
## Achaetops_pycnopygius            .        .        .        .        .        .      
## Sphenoeacus_afer                 .        .        .        .        .        .      
## Sylvietta_rufescens              .        .        .        .        .        .      
## Dulus_dominicus                  .        .        .        .        .        .      
## Phainoptila_melanoxantha         .        .        .        .        .        .      
## Phainopepla_nitens               .        .        .        .        .        .      
## Ptilogonys_cinereus              .        .        .        .        .        .      
## Bombycilla_garrulus              .        .        .        .        .        .      
## Hylocitrea_bonensis              .        .        .        .        .        .      
## Hypocolius_ampelinus             .        .        .        .        .        .      
## Certhia_familiaris               .        .        .        .        .        .      
## Tichodroma_muraria               .        .        .        .        .        .      
## Salpornis_spilonotus             .        .        .        .        .        .      
## Thryomanes_bewickii              .        .        .        .        .        .      
## Henicorhina_leucosticta          .        .        .        .        .        .      
## Thryothorus_atrogularis          .        .        .        .        .        .      
## Ferminia_cerverai                .        .        .        .        .        .      
## Uropsila_leucogastra             .        .        .        .        .        .      
## Cyphorhinus_arada                .        .        .        .        .        .      
## Cinnycerthia_unirufa             .        .        .        .        .        .      
## Thryorchilus_browni              .        .        .        .        .        .      
## Cistothorus_platensis            .        .        .        .        .        .      
## Troglodytes_troglodytes          .        .        .        .        .        .      
## Campylorhynchus_brunneicapillus  .        .        .        .        .        .      
## Microcerculus_philomela          .        .        .        .        .        .      
## Hylorchilus_sumichrasti          .        .        .        .        .        .      
## Catherpes_mexicanus              .        .        .        .        .        .      
## Salpinctes_obsoletus             .        .        .        .        .        .      
## Microbates_cinereiventris        .        .        .        .        .        .      
## Polioptila_dumicola              .        .        .        .        .        .      
## Ramphocaenus_melanurus           .        .        .        .        .        .      
## Sitta_formosa                    .        .        .        .        .        .      
## Rhabdornis_mystacalis            .        .        .        .        .        .      
## Enodes_erythrophris              .        .        .        .        .        .      
## Scissirostrum_dubium             .        .        .        .        .        .      
## Aplonis_grandis                  .        .        .        .        .        .      
## Basilornis_mirandus              .        .        .        .        .        .      
## Sarcops_calvus                   .        .        .        .        .        .      
## Streptocitta_albicollis          .        .        .        .        .        .      
## Mino_dumontii                    .        .        .        .        .        .      
## Ampeliceps_coronatus             .        .        .        .        .        .      
## Gracula_religiosa                .        .        .        .        .        .      
## Lamprotornis_australis           .        .        .        .        .        .      
## Spreo_albicapillus               .        .        .        .        .        .      
## Cosmopsarus_regius               .        .        .        .        .        .      
## Coccycolius_iris                 .        .        .        .        .        .      
## Neocichla_gutturalis             .        .        .        .        .        .      
## Saroglossa_spiloptera            .        .        .        .        .        .      
## Speculipastor_bicolor            .        .        .        .        .        .      
## Grafisia_torquata                .        .        .        .        .        .      
## Cinnyricinclus_femoralis         .        .        .        .        .        .      
## Poeoptera_lugubris               .        .        .        .        .        .      
## Onychognathus_nabouroup          .        .        .        .        .        .      
## Creatophora_cinerea              .        .        .        .        .        .      
## Sturnus_erythropygius            .        .        .        .        .        .      
## Leucopsar_rothschildi            .        .        .        .        .        .      
## Acridotheres_tristis             .        .        .        .        .        .      
## Mimus_parvulus                   .        .        .        .        .        .      
## Oreoscoptes_montanus             .        .        .        .        .        .      
## Toxostoma_crissale               .        .        .        .        .        .      
## Melanotis_caerulescens           .        .        .        .        .        .      
## Melanoptila_glabrirostris        .        .        .        .        .        .      
## Ramphocinclus_brachyurus         .        .        .        .        .        .      
## Cinclocerthia_ruficauda          .        .        .        .        .        .      
## Margarops_fuscus                 .        .        .        .        .        .      
## Dumetella_carolinensis           .        .        .        .        .        .      
## Buphagus_erythrorhynchus         .        .        .        .        .        .      
## Cinclus_pallasii                 .        .        .        .        .        .      
## Psophocichla_litsitsirupa        .        .        .        .        .        .      
## Nesocichla_eremita               .        .        .        .        .        .      
## Turdus_pallidus                  .        .        .        .        .        .      
## Geomalia_heinrichi               .        .        .        .        .        .      
## Grandala_coelicolor              .        .        .        .        .        .      
## Hylocichla_mustelina             .        .        .        .        .        .      
## Catharus_guttatus                .        .        .        .        .        .      
## Cichlopsis_leucogenys            .        .        .        .        .        .      
## Entomodestes_coracinus           .        .        .        .        .        .      
## Zoothera_andromedae              .        .        .        .        .        .      
## Cochoa_purpurea                  .        .        .        .        .        .      
## Chlamydochaera_jefferyi          .        .        .        .        .        .      
## Sialia_mexicana                  .        .        .        .        .        .      
## Myadestes_occidentalis           .        .        .        .        .        .      
## Neocossyphus_poensis             .        .        .        .        .        .      
## Cataponera_turdoides             .        .        .        .        .        .      
## Stizorhina_finschi               .        .        .        .        .        .      
## Alethe_poliophrys                .        .        .        .        .        .      
## Stiphrornis_erythrothorax        .        .        .        .        .        .      
## Cichladusa_arquata               .        .        .        .        .        .      
## Swynnertonia_swynnertoni         .        .        .        .        .        .      
## Cossyphicula_roberti             .        .        .        .        .        .      
## Pogonocichla_stellata            .        .        .        .        .        .      
## Sheppardia_bocagei               .        .        .        .        .        .      
## Cossypha_isabellae               .        .        .        .        .        .      
## Brachypteryx_stellata            .        .        .        .        .        .      
## Erithacus_rubecula               .        .        .        .        .        .      
## Luscinia_svecica                 .        .        .        .        .        .      
## Hodgsonius_phaenicuroides        .        .        .        .        .        .      
## Irania_gutturalis                .        .        .        .        .        .      
## Cinclidium_diana                 .        .        .        .        .        .      
## Enicurus_schistaceus             .        .        .        .        .        .      
## Myophonus_borneensis             .        .        .        .        .        .      
## Ficedula_albicollis              .        .        .        .        .        .      
## Muscicapella_hodgsoni            .        .        .        .        .        .      
## Xenocopsychus_ansorgei           .        .        .        .        .        .      
## Tarsiger_cyanurus                .        .        .        .        .        .      
## Monticola_saxatilis              .        .        .        .        .        .      
## Myrmecocichla_tholloni           .        .        .        .        .        .      
## Oenanthe_bifasciata              .        .        .        .        .        .      
## Cercomela_sinuata                .        .        .        .        .        .      
## Saxicola_leucurus                .        .        .        .        .        .      
## Rhyacornis_fuliginosa            .        .        .        .        .        .      
## Chaimarrornis_leucocephalus      .        .        .        .        .        .      
## Phoenicurus_erythronotus         .        .        .        .        .        .      
## Myiomela_major                   .        .        .        .        .        .      
## Niltava_grandis                  .        .        .        .        .        .      
## Rhinomyias_umbratilis            .        .        .        .        .        .      
## Eumyias_thalassinus              .        .        .        .        .        .      
## Dioptrornis_chocolatinus         .        .        .        .        .        .      
## Cyanoptila_cyanomelana           .        .        .        .        .        .      
## Erythropygia_quadrivirgata       .        .        .        .        .        .      
## Cercotrichas_podobe              .        .        .        .        .        .      
## Copsychus_albospecularis         .        .        .        .        .        .      
## Pinarornis_plumosus              .        .        .        .        .        .      
## Saxicoloides_fulicatus           .        .        .        .        .        .      
## Cyornis_tickelliae               .        .        .        .        .        .      
## Humblotia_flavirostris           .        .        .        .        .        .      
## Trichixos_pyrropygus             .        .        .        .        .        .      
## Muscicapa_striata                .        .        .        .        .        .      
## Bradornis_pallidus               .        .        .        .        .        .      
## Namibornis_herero                .        .        .        .        .        .      
## Fraseria_ocreata                 .        .        .        .        .        .      
## Myioparus_griseigularis          .        .        .        .        .        .      
## Empidornis_semipartitus          .        .        .        .        .        .      
## Sigelus_silens                   .        .        .        .        .        .      
## Melaenornis_edolioides           .        .        .        .        .        .      
## Regulus_regulus                  .        .        .        .        .        .      
## Anthreptes_longuemarei           .        .        .        .        .        .      
## Nectarinia_johannae              .        .        .        .        .        .      
## Aethopyga_mystacalis             .        .        .        .        .        .      
## Hypogramma_hypogrammicum         .        .        .        .        .        .      
## Arachnothera_robusta             .        .        .        .        .        .      
## Dicaeum_pygmaeum                 .        .        .        .        .        .      
## Prionochilus_olivaceus           .        .        .        .        .        .      
## Chloropsis_cyanopogon            .        .        .        .        .        .      
## Irena_puella                     .        .        .        .        .        .      
## Amblyospiza_albifrons            .        .        .        .        .        .      
## Malimbus_coronatus               .        .        .        .        .        .      
## Ploceus_insignis                 .        .        .        .        .        .      
## Quelea_erythrops                 .        .        .        .        .        .      
## Foudia_madagascariensis          .        .        .        .        .        .      
## Euplectes_afer                   .        .        .        .        .        .      
## Bubalornis_albirostris           .        .        .        .        .        .      
## Plocepasser_mahali               .        .        .        .        .        .      
## Histurgops_ruficaudus            .        .        .        .        .        .      
## Pseudonigrita_cabanisi           .        .        .        .        .        .      
## Philetairus_socius               .        .        .        .        .        .      
## Dinemellia_dinemelli             .        .        .        .        .        .      
## Brachycope_anomala               .        .        .        .        .        .      
## Anaplectes_rubriceps             .        .        .        .        .        .      
## Sporopipes_frontalis             .        .        .        .        .        .      
## Ortygospiza_gabonensis           .        .        .        .        .        .      
## Erythrura_gouldiae               .        .        .        .        .        .      
## Stagonopleura_bella              .        .        .        .        .        .      
## Taeniopygia_guttata              .        .        .        .        .        .      
## Poephila_personata               .        .        .        .        .        .      
## Neochmia_temporalis              .        .        .        .        .        .      
## Emblema_pictum                   .        .        .        .        .        .      
## Oreostruthus_fuliginosus         .        .        .        .        .        .      
## Lonchura_pallida                 .        .        .        .        .        .      
## Padda_oryzivora                  .        .        .        .        .        .      
## Heteromunia_pectoralis           .        .        .        .        .        .      
## Pytilia_melba                    .        .        .        .        .        .      
## Euschistospiza_dybowskii         .        .        .        .        .        .      
## Hypargos_niveoguttatus           .        .        .        .        .        .      
## Amadina_fasciata                 .        .        .        .        .        .      
## Lagonosticta_senegala            .        .        .        .        .        .      
## Clytospiza_monteiri              .        .        .        .        .        .      
## Uraeginthus_bengalus             .        .        .        .        .        .      
## Pyrenestes_sanguineus            .        .        .        .        .        .      
## Spermophaga_poliogenys           .        .        .        .        .        .      
## Nesocharis_shelleyi              .        .        .        .        .        .      
## Estrilda_quartinia               .        .        .        .        .        .      
## Mandingoa_nitidula               .        .        .        .        .        .      
## Cryptospiza_shelleyi             .        .        .        .        .        .      
## Nigrita_bicolor                  .        .        .        .        .        .      
## Parmoptila_woodhousei            .        .        .        .        .        .      
## Amandava_amandava                .        .        .        .        .        .      
## Anomalospiza_imberbis            .        .        .        .        .        .      
## Vidua_chalybeata                 .        .        .        .        .        .      
## Prunella_himalayana              .        .        .        .        .        .      
## Peucedramus_taeniatus            .        .        .        .        .        .      
## Passer_domesticus                .        .        .        .        .        .      
## Montifringilla_nivalis           .        .        .        .        .        .      
## Petronia_petronia                .        .        .        .        .        .      
## Euphonia_gouldi                  .        .        .        .        .        .      
## Eophona_personata                .        .        .        .        .        .      
## Mycerobas_melanozanthos          .        .        .        .        .        .      
## Coccothraustes_vespertinus       .        .        .        .        .        .      
## Eremopsaltria_mongolicus         .        .        .        .        .        .      
## Bucanetes_githagineus            .        .        .        .        .        .      
## Paroreomyza_maculata             .        .        .        .        .        .      
## Oreomystis_mana                  .        .        .        .        .        .      
## Loxioides_bailleui               .        .        .        .        .        .      
## Telespiza_cantans                .        .        .        .        .        .      
## Pseudonestor_xanthophrys         .        .        .        .        .        .      
## Loxops_caeruleirostris           .        .        .        .        .        .      
## Hemignathus_parvus               .        .        .        .        .        .      
## Vestiaria_coccinea               .        .        .        .        .        .      
## Himatione_sanguinea              .        .        .        .        .        .      
## Palmeria_dolei                   .        .        .        .        .        .      
## Uragus_sibiricus                 .        .        .        .        .        .      
## Neospiza_concolor                .        .        .        .        .        .      
## Haematospiza_sipahi              .        .        .        .        .        .      
## Callacanthis_burtoni             .        .        .        .        .        .      
## Psittirostra_psittacea           .        .        .        .        .        .      
## Carpodacus_erythrinus            .        .        .        .        .        .      
## Leucosticte_australis            .        .        .        .        .        .      
## Pyrrhula_murina                  .        .        .        .        .        .      
## Pyrrhoplectes_epauletta          .        .        .        .        .        .      
## Pinicola_enucleator              .        .        .        .        .        .      
## Loxia_pytyopsittacus             .        .        .        .        .        .      
## Serinus_scotops                  .        .        .        .        .        .      
## Carduelis_psaltria               .        .        .        .        .        .      
## Rhynchostruthus_percivali        .        .        .        .        .        .      
## Linurgus_olivaceus               .        .        .        .        .        .      
## Rhodopechys_sanguineus           .        .        .        .        .        .      
## Fringilla_montifringilla         .        .        .        .        .        .      
## Lophospingus_pusillus            .        .        .        .        .        .      
## Diuca_speculifera                .        .        .        .        .        .      
## Cissopis_leverianus              .        .        .        .        .        .      
## Schistochlamys_ruficapillus      .        .        .        .        .        .      
## Urothraupis_stolzmanni           .        .        .        .        .        .      
## Gubernatrix_cristata             .        .        .        .        .        .      
## Cyanicterus_cyanicterus          .        .        .        .        .        .      
## Neothraupis_fasciata             .        .        .        .        .        .      
## Stephanophorus_diadematus        .        .        .        .        .        .      
## Paroaria_coronata                .        .        .        .        .        .      
## Chlorochrysa_nitidissima         .        .        .        .        .        .      
## Tangara_xanthocephala            .        .        .        .        .        .      
## Coereba_flaveola                 .        .        .        .        .        .      
## Loxigilla_violacea               .        .        .        .        .        .      
## Melopyrrha_nigra                 .        .        .        .        .        .      
## Euneornis_campestris             .        .        .        .        .        .      
## Platyspiza_crassirostris         .        .        .        .        .        .      
## Geospiza_conirostris             .        .        .        .        .        .      
## Camarhynchus_parvulus            .        .        .        .        .        .      
## Pinaroloxias_inornata            .        .        .        .        .        .      
## Certhidea_olivacea               .        .        .        .        .        .      
## Loxipasser_anoxanthus            .        .        .        .        .        .      
## Melanospiza_richardsoni          .        .        .        .        .        .      
## Tiaris_obscurus                  .        .        .        .        .        .      
## Bangsia_arcaei                   .        .        .        .        .        .      
## Pipraeidea_melanonota            .        .        .        .        .        .      
## Iridosornis_analis               .        .        .        .        .        .      
## Calochaetes_coccineus            .        .        .        .        .        .      
## Orthogonys_chloricterus          .        .        .        .        .        .      
## Thraupis_palmarum                .        .        .        .        .        .      
## Compsothraupis_loricata          .        .        .        .        .        .      
## Buthraupis_eximia                .        .        .        .        .        .      
## Chlorornis_riefferii             .        .        .        .        .        .      
## Delothraupis_castaneoventris     .        .        .        .        .        .      
## Dubusia_taeniata                 .        .        .        .        .        .      
## Anisognathus_lacrymosus          .        .        .        .        .        .      
## Parkerthraustes_humeralis        .        .        .        .        .        .      
## Lamprospiza_melanoleuca          .        .        .        .        .        .      
## Rhodinocichla_rosea              .        .        .        .        .        .      
## Chlorophonia_pyrrhophrys         .        .        .        .        .        .      
## Mitrospingus_oleagineus          .        .        .        .        .        .      
## Phaenicophilus_poliocephalus     .        .        .        .        .        .      
## Oreothraupis_arremonops          .        .        .        .        .        .      
## Orchesticus_abeillei             .        .        .        .        .        .      
## Rowettia_goughensis              .        .        .        .        .        .      
## Nesospiza_wilkinsi               .        .        .        .        .        .      
## Calyptophilus_frugivorus         .        .        .        .        .        .      
## Saltatricula_multicolor          .        .        .        .        .        .      
## Saltator_coerulescens            .        .        .        .        .        .      
## Sericossypha_albocristata        .        .        .        .        .        .      
## Nemosia_pileata                  .        .        .        .        .        .      
## Chrysothlypis_salmoni            .        .        .        .        .        .      
## Heterospingus_xanthopygius       .        .        .        .        .        .      
## Hemithraupis_ruficapilla         .        .        .        .        .        .      
## Iridophanes_pulcherrimus         .        .        .        .        .        .      
## Chlorophanes_spiza               .        .        .        .        .        .      
## Creurgops_verticalis             .        .        .        .        .        .      
## Porphyrospiza_caerulescens       .        .        .        .        .        .      
## Embernagra_platensis             .        .        .        .        .        .      
## Emberizoides_herbicola           .        .        .        .        .        .      
## Cnemoscopus_rubrirostris         .        .        .        .        .        .      
## Incaspiza_pulchra                .        .        .        .        .        .      
## Piezorhina_cinerea               .        .        .        .        .        .      
## Poospiza_alticola                .        .        .        .        .        .      
## Donacospiza_albifrons            .        .        .        .        .        .      
## Cypsnagra_hirundinacea           .        .        .        .        .        .      
## Hemispingus_goeringi             .        .        .        .        .        .      
## Pyrrhocoma_ruficeps              .        .        .        .        .        .      
## Thlypopsis_ruficeps              .        .        .        .        .        .      
## Compsospiza_garleppi             .        .        .        .        .        .      
## Cyanerpes_nitidus                .        .        .        .        .        .      
## Dacnis_lineata                   .        .        .        .        .        .      
## Xenospingus_concolor             .        .        .        .        .        .      
## Tersina_viridis                  .        .        .        .        .        .      
## Lanio_fulvus                     .        .        .        .        .        .      
## Rhodospingus_cruentus            .        .        .        .        .        .      
## Tachyphonus_surinamus            .        .        .        .        .        .      
## Coryphaspiza_melanotis           .        .        .        .        .        .      
## Charitospiza_eucosma             .        .        .        .        .        .      
## Eucometis_penicillata            .        .        .        .        .        .      
## Trichothraupis_melanops          .        .        .        .        .        .      
## Coryphospingus_cucullatus        .        .        .        .        .        .      
## Ramphocelus_costaricensis        .        .        .        .        .        .      
## Volatinia_jacarina               .        .        .        .        .        .      
## Conothraupis_speculigera         .        .        .        .        .        .      
## Oryzoborus_nuttingi              .        .        .        .        .        .      
## Sporophila_luctuosa              .        .        .        .        .        .      
## Conirostrum_albifrons            .        .        .        .        .        .      
## Oreomanes_fraseri                .        .        .        .        .        .      
## Diglossa_lafresnayii             .        .        .        .        .        .      
## Catamenia_analis                 .        .        .        .        .        .      
## Acanthidops_bairdii              .        .        .        .        .        .      
## Haplospiza_rustica               .        .        .        .        .        .      
## Idiopsar_brachyurus              .        .        .        .        .        .      
## Xenodacnis_parina                .        .        .        .        .        .      
## Sicalis_citrina                  .        .        .        .        .        .      
## Phrygilus_gayi                   .        .        .        .        .        .      
## Melanodera_xanthogramma          .        .        .        .        .        .      
## Catamblyrhynchus_diadema         .        .        .        .        .        .      
## Habia_cristata                   .        .        .        .        .        .      
## Chlorothraupis_olivacea          .        .        .        .        .        .      
## Piranga_rubra                    .        .        .        .        .        .      
## Cardinalis_sinuatus              .        .        .        .        .        .      
## Caryothraustes_canadensis        .        .        .        .        .        .      
## Periporphyrus_erythromelas       .        .        .        .        .        .      
## Rhodothraupis_celaeno            .        .        .        .        .        .      
## Pheucticus_chrysogaster          .        .        .        .        .        .      
## Passerina_amoena                 .        .        .        .        .        .      
## Amaurospiza_concolor             .        .        .        .        .        .      
## Cyanocompsa_cyanoides            .        .        .        .        .        .      
## Cyanoloxia_glaucocaerulea        .        .        .        .        .        .      
## Spiza_americana                  .        .        .        .        .        .      
## Granatellus_pelzelni             .        .        .        .        .        .      
## Ocyalus_latirostris              .        .        .        .        .        .      
## Clypicterus_oseryi               .        .        .        .        .        .      
## Cacicus_cela                     .        .        .        .        .        .      
## Psarocolius_decumanus            .        .        .        .        .        .      
## Icterus_graceannae               .        .        .        .        .        .      
## Amblycercus_holosericeus         .        .        .        .        .        .      
## Nesopsar_nigerrimus              .        .        .        .        .        .      
## Gnorimopsar_chopi                .        .        .        .        .        .      
## Oreopsar_bolivianus              .        .        .        .        .        .      
## Agelaioides_badius               .        .        .        .        .        .      
## Agelasticus_thilius              .        .        .        .        .        .      
## Chrysomus_icterocephalus         .        .        .        .        .        .      
## Pseudoleistes_guirahuro          .        .        .        .        .        .      
## Xanthopsar_flavus                .        .        .        .        .        .      
## Amblyramphus_holosericeus        .        .        .        .        .        .      
## Curaeus_curaeus                  .        .        .        .        .        .      
## Hypopyrrhus_pyrohypogaster       .        .        .        .        .        .      
## Lampropsar_tanagrinus            .        .        .        .        .        .      
## Gymnomystax_mexicanus            .        .        .        .        .        .      
## Macroagelaius_imthurni           .        .        .        .        .        .      
## Dives_dives                      .        .        .        .        .        .      
## Molothrus_oryzivorus             .        .        .        .        .        .      
## Agelaius_phoeniceus              .        .        .        .        .        .      
## Euphagus_carolinus               .        .        .        .        .        .      
## Quiscalus_quiscula               .        .        .        .        .        .      
## Sturnella_loyca                  .        .        .        .        .        .      
## Dolichonyx_oryzivorus            .        .        .        .        .        .      
## Xanthocephalus_xanthocephalus    .        .        .        .        .        .      
## Zeledonia_coronata               .        .        .        .        .        .      
## Spindalis_zena                   .        .        .        .        .        .      
## Microligea_palustris             .        .        .        .        .        .      
## Xenoligea_montana                .        .        .        .        .        .      
## Seiurus_aurocapilla              .        .        .        .        .        .      
## Parula_americana                 .        .        .        .        .        .      
## Dendroica_petechia               .        .        .        .        .        .      
## Wilsonia_citrina                 .        .        .        .        .        .      
## Catharopeza_bishopi              .        .        .        .        .        .      
## Phaeothlypis_rivularis           .        .        .        .        .        .      
## Basileuterus_flaveolus           .        .        .        .        .        .      
## Ergaticus_ruber                  .        .        .        .        .        .      
## Myioborus_pictus                 .        .        .        .        .        .      
## Euthlypis_lachrymosa             .        .        .        .        .        .      
## Protonotaria_citrea              .        .        .        .        .        .      
## Limnothlypis_swainsonii          .        .        .        .        .        .      
## Leucopeza_semperi                .        .        .        .        .        .      
## Mniotilta_varia                  .        .        .        .        .        .      
## Vermivora_chrysoptera            .        .        .        .        .        .      
## Helmitheros_vermivorum           .        .        .        .        .        .      
## Teretistris_fernandinae          .        .        .        .        .        .      
## Icteria_virens                   .        .        .        .        .        .      
## Miliaria_calandra                .        .        .        .        .        .      
## Emberiza_buchanani               .        .        .        .        .        .      
## Melophus_lathami                 .        .        .        .        .        .      
## Torreornis_inexpectata           .        .        .        .        .        .      
## Latoucheornis_siemsseni          .        .        .        .        .        .      
##                                                                                      
## Nothocercus_bonapartei           .        .        .        .       .         .      
## Tinamus_guttatus                 .        .        .        .       .         .      
## Crypturellus_variegatus          .        .        .        .       .         .      
## Eudromia_elegans                 .        .        .        .       .         .      
## Tinamotis_pentlandii             .        .        .        .       .         .      
## Taoniscus_nanus                  .        .        .        .       .         .      
## Nothura_darwinii                 .        .        .        .       .         .      
## Rhynchotus_maculicollis          .       37.27995  .        .       .         .      
## Nothoprocta_perdicaria          37.27995  .        .        .       .         .      
## Rhea_americana                   .        .        .       14.72461 .        46.65367
## Apteryx_haastii                  .        .        .       14.72461 6.995412  .      
## Casuarius_casuarius              .        .        .       14.72461 6.995412  .      
## Dromaius_novaehollandiae         .        .        .       14.72461 6.995412  .      
## Struthio_camelus                 .        .       61.37828  .       .         .      
## Chauna_chavaria                  .        .        .        .       .         .      
## Anhima_cornuta                   .        .        .        .       .         .      
## Anseranas_semipalmata            .        .        .        .       .         .      
## Dendrocygna_arborea              .        .        .        .       .         .      
## Thalassornis_leuconotus          .        .        .        .       .         .      
## Cygnus_melancoryphus             .        .        .        .       .         .      
## Anser_fabalis                    .        .        .        .       .         .      
## Chen_caerulescens                .        .        .        .       .         .      
## Branta_bernicla                  .        .        .        .       .         .      
## Coscoroba_coscoroba              .        .        .        .       .         .      
## Cereopsis_novaehollandiae        .        .        .        .       .         .      
## Malacorhynchus_membranaceus      .        .        .        .       .         .      
## Netta_rufina                     .        .        .        .       .         .      
## Aythya_ferina                    .        .        .        .       .         .      
## Marmaronetta_angustirostris      .        .        .        .       .         .      
## Salvadorina_waigiuensis          .        .        .        .       .         .      
## Pteronetta_hartlaubii            .        .        .        .       .         .      
## Cyanochen_cyanoptera             .        .        .        .       .         .      
## Tadorna_ferruginea               .        .        .        .       .         .      
## Alopochen_aegyptiaca             .        .        .        .       .         .      
## Chloephaga_melanoptera           .        .        .        .       .         .      
## Neochen_jubata                   .        .        .        .       .         .      
## Cairina_moschata                 .        .        .        .       .         .      
## Aix_sponsa                       .        .        .        .       .         .      
## Callonetta_leucophrys            .        .        .        .       .         .      
## Merganetta_armata                .        .        .        .       .         .      
## Melanitta_nigra                  .        .        .        .       .         .      
## Mergellus_albellus               .        .        .        .       .         .      
## Mergus_serrator                  .        .        .        .       .         .      
## Lophodytes_cucullatus            .        .        .        .       .         .      
## Bucephala_clangula               .        .        .        .       .         .      
## Histrionicus_histrionicus        .        .        .        .       .         .      
## Clangula_hyemalis                .        .        .        .       .         .      
## Polysticta_stelleri              .        .        .        .       .         .      
## Somateria_mollissima             .        .        .        .       .         .      
## Chenonetta_jubata                .        .        .        .       .         .      
## Hymenolaimus_malacorhynchos      .        .        .        .       .         .      
## Sarkidiornis_melanotos           .        .        .        .       .         .      
## Anas_platyrhynchos               .        .        .        .       .         .      
## Tachyeres_pteneres               .        .        .        .       .         .      
## Lophonetta_specularioides        .        .        .        .       .         .      
## Speculanas_specularis            .        .        .        .       .         .      
## Amazonetta_brasiliensis          .        .        .        .       .         .      
## Nettapus_pulchellus              .        .        .        .       .         .      
## Biziura_lobata                   .        .        .        .       .         .      
## Nomonyx_dominicus                .        .        .        .       .         .      
## Oxyura_jamaicensis               .        .        .        .       .         .      
## Plectropterus_gambensis          .        .        .        .       .         .      
## Heteronetta_atricapilla          .        .        .        .       .         .      
## Stictonetta_naevosa              .        .        .        .       .         .      
## Aepypodius_arfakianus            .        .        .        .       .         .      
## Alectura_lathami                 .        .        .        .       .         .      
## Talegalla_cuvieri                .        .        .        .       .         .      
## Leipoa_ocellata                  .        .        .        .       .         .      
## Eulipoa_wallacei                 .        .        .        .       .         .      
## Megapodius_freycinet             .        .        .        .       .         .      
## Macrocephalon_maleo              .        .        .        .       .         .      
## Mitu_tomentosum                  .        .        .        .       .         .      
## Nothocrax_urumutum               .        .        .        .       .         .      
## Crax_rubra                       .        .        .        .       .         .      
## Ortalis_vetula                   .        .        .        .       .         .      
## Oreophasis_derbianus             .        .        .        .       .         .      
## Penelopina_nigra                 .        .        .        .       .         .      
## Aburria_aburri                   .        .        .        .       .         .      
## Pipile_cumanensis                .        .        .        .       .         .      
## Penelope_argyrotis               .        .        .        .       .         .      
## Chamaepetes_unicolor             .        .        .        .       .         .      
## Acryllium_vulturinum             .        .        .        .       .         .      
## Guttera_plumifera                .        .        .        .       .         .      
## Agelastes_niger                  .        .        .        .       .         .      
## Numida_meleagris                 .        .        .        .       .         .      
## Dendrortyx_macroura              .        .        .        .       .         .      
## Philortyx_fasciatus              .        .        .        .       .         .      
## Odontophorus_capueira            .        .        .        .       .         .      
## Dactylortyx_thoracicus           .        .        .        .       .         .      
## Rhynchortyx_cinctus              .        .        .        .       .         .      
## Cyrtonyx_montezumae              .        .        .        .       .         .      
## Oreortyx_pictus                  .        .        .        .       .         .      
## Colinus_cristatus                .        .        .        .       .         .      
## Callipepla_squamata              .        .        .        .       .         .      
## Ptilopachus_petrosus             .        .        .        .       .         .      
## Arborophila_mandellii            .        .        .        .       .         .      
## Caloperdix_oculeus               .        .        .        .       .         .      
## Rollulus_rouloul                 .        .        .        .       .         .      
## Melanoperdix_niger               .        .        .        .       .         .      
## Tetraogallus_caspius             .        .        .        .       .         .      
## Perdicula_asiatica               .        .        .        .       .         .      
## Ammoperdix_griseogularis         .        .        .        .       .         .      
## Alectoris_chukar                 .        .        .        .       .         .      
## Francolinus_jacksoni             .        .        .        .       .         .      
## Anurophasis_monorthonyx          .        .        .        .       .         .      
## Coturnix_coturnix                .        .        .        .       .         .      
## Margaroperdix_madagascariensis   .        .        .        .       .         .      
## Afropavo_congensis               .        .        .        .       .         .      
## Pavo_cristatus                   .        .        .        .       .         .      
## Rheinardia_ocellata              .        .        .        .       .         .      
## Argusianus_argus                 .        .        .        .       .         .      
## Polyplectron_napoleonis          .        .        .        .       .         .      
## Galloperdix_spadicea             .        .        .        .       .         .      
## Haematortyx_sanguiniceps         .        .        .        .       .         .      
## Gallus_gallus                    .        .        .        .       .         .      
## Bambusicola_fytchii              .        .        .        .       .         .      
## Meleagris_gallopavo              .        .        .        .       .         .      
## Bonasa_bonasia                   .        .        .        .       .         .      
## Lagopus_lagopus                  .        .        .        .       .         .      
## Lerwa_lerwa                      .        .        .        .       .         .      
## Dendragapus_obscurus             .        .        .        .       .         .      
## Tympanuchus_phasianellus         .        .        .        .       .         .      
## Centrocercus_urophasianus        .        .        .        .       .         .      
## Tetrao_tetrix                    .        .        .        .       .         .      
## Pucrasia_macrolopha              .        .        .        .       .         .      
## Rhizothera_longirostris          .        .        .        .       .         .      
## Crossoptilon_harmani             .        .        .        .       .         .      
## Catreus_wallichi                 .        .        .        .       .         .      
## Lophura_leucomelanos             .        .        .        .       .         .      
## Chrysolophus_pictus              .        .        .        .       .         .      
## Phasianus_colchicus              .        .        .        .       .         .      
## Syrmaticus_humiae                .        .        .        .       .         .      
## Perdix_perdix                    .        .        .        .       .         .      
## Tetraophasis_szechenyii          .        .        .        .       .         .      
## Lophophorus_impejanus            .        .        .        .       .         .      
## Tragopan_melanocephalus          .        .        .        .       .         .      
## Ithaginis_cruentus               .        .        .        .       .         .      
## Pterocles_gutturalis             .        .        .        .       .         .      
## Syrrhaptes_tibetanus             .        .        .        .       .         .      
## Leptotila_verreauxi              .        .        .        .       .         .      
## Geotrygon_lawrencii              .        .        .        .       .         .      
## Starnoenas_cyanocephala          .        .        .        .       .         .      
## Zenaida_macroura                 .        .        .        .       .         .      
## Patagioenas_leucocephala         .        .        .        .       .         .      
## Turacoena_manadensis             .        .        .        .       .         .      
## Macropygia_unchall               .        .        .        .       .         .      
## Reinwardtoena_reinwardtsi        .        .        .        .       .         .      
## Streptopelia_semitorquata        .        .        .        .       .         .      
## Stigmatopelia_chinensis          .        .        .        .       .         .      
## Nesoenas_picturata               .        .        .        .       .         .      
## Aplopelia_larvata                .        .        .        .       .         .      
## Columba_bollii                   .        .        .        .       .         .      
## Geopelia_striata                 .        .        .        .       .         .      
## Geophaps_scripta                 .        .        .        .       .         .      
## Phaps_chalcoptera                .        .        .        .       .         .      
## Petrophassa_albipennis           .        .        .        .       .         .      
## Ocyphaps_lophotes                .        .        .        .       .         .      
## Leucosarcia_melanoleuca          .        .        .        .       .         .      
## Henicophaps_albifrons            .        .        .        .       .         .      
## Gallicolumba_erythroptera        .        .        .        .       .         .      
## Treron_calvus                    .        .        .        .       .         .      
## Ptilinopus_magnificus            .        .        .        .       .         .      
## Drepanoptila_holosericea         .        .        .        .       .         .      
## Alectroenas_madagascariensis     .        .        .        .       .         .      
## Lopholaimus_antarcticus          .        .        .        .       .         .      
## Gymnophaps_albertisii            .        .        .        .       .         .      
## Hemiphaga_novaeseelandiae        .        .        .        .       .         .      
## Ducula_aenea                     .        .        .        .       .         .      
## Phapitreron_leucotis             .        .        .        .       .         .      
## Turtur_abyssinicus               .        .        .        .       .         .      
## Oena_capensis                    .        .        .        .       .         .      
## Chalcophaps_indica               .        .        .        .       .         .      
## Didunculus_strigirostris         .        .        .        .       .         .      
## Goura_victoria                   .        .        .        .       .         .      
## Caloenas_nicobarica              .        .        .        .       .         .      
## Otidiphaps_nobilis               .        .        .        .       .         .      
## Trugon_terrestris                .        .        .        .       .         .      
## Uropelia_campestris              .        .        .        .       .         .      
## Columbina_squammata              .        .        .        .       .         .      
## Metriopelia_ceciliae             .        .        .        .       .         .      
## Claravis_pretiosa                .        .        .        .       .         .      
## Pelecanus_crispus                .        .        .        .       .         .      
## Balaeniceps_rex                  .        .        .        .       .         .      
## Scopus_umbretta                  .        .        .        .       .         .      
## Pygoscelis_antarcticus           .        .        .        .       .         .      
## Aptenodytes_forsteri             .        .        .        .       .         .      
## Spheniscus_demersus              .        .        .        .       .         .      
## Eudyptula_minor                  .        .        .        .       .         .      
## Megadyptes_antipodes             .        .        .        .       .         .      
## Eudyptes_robustus                .        .        .        .       .         .      
## Tigrisoma_lineatum               .        .        .        .       .         .      
## Zebrilus_undulatus               .        .        .        .       .         .      
## Botaurus_pinnatus                .        .        .        .       .         .      
## Ixobrychus_cinnamomeus           .        .        .        .       .         .      
## Pilherodius_pileatus             .        .        .        .       .         .      
## Agamia_agami                     .        .        .        .       .         .      
## Nycticorax_nycticorax            .        .        .        .       .         .      
## Ardeola_speciosa                 .        .        .        .       .         .      
## Nyctanassa_violacea              .        .        .        .       .         .      
## Gorsachius_leuconotus            .        .        .        .       .         .      
## Butorides_striata                .        .        .        .       .         .      
## Ardea_sumatrana                  .        .        .        .       .         .      
## Bubulcus_ibis                    .        .        .        .       .         .      
## Mesophoyx_intermedia             .        .        .        .       .         .      
## Casmerodius_albus                .        .        .        .       .         .      
## Egretta_garzetta                 .        .        .        .       .         .      
## Syrigma_sibilatrix               .        .        .        .       .         .      
## Cochlearius_cochlearius          .        .        .        .       .         .      
## Zonerodius_heliosylus            .        .        .        .       .         .      
## Tigriornis_leucolopha            .        .        .        .       .         .      
## Fregata_ariel                    .        .        .        .       .         .      
## Morus_serrator                   .        .        .        .       .         .      
## Papasula_abbotti                 .        .        .        .       .         .      
## Sula_nebouxii                    .        .        .        .       .         .      
## Anhinga_anhinga                  .        .        .        .       .         .      
## Phalacrocorax_carbo              .        .        .        .       .         .      
## Geronticus_calvus                .        .        .        .       .         .      
## Plegadis_falcinellus             .        .        .        .       .         .      
## Nipponia_nippon                  .        .        .        .       .         .      
## Pseudibis_papillosa              .        .        .        .       .         .      
## Bostrychia_hagedash              .        .        .        .       .         .      
## Threskiornis_aethiopicus         .        .        .        .       .         .      
## Lophotibis_cristata              .        .        .        .       .         .      
## Platalea_leucorodia              .        .        .        .       .         .      
## Mesembrinibis_cayennensis        .        .        .        .       .         .      
## Eudocimus_albus                  .        .        .        .       .         .      
## Theristicus_caerulescens         .        .        .        .       .         .      
## Cercibis_oxycerca                .        .        .        .       .         .      
## Phimosus_infuscatus              .        .        .        .       .         .      
## Thaumatibis_gigantea             .        .        .        .       .         .      
## Anastomus_oscitans               .        .        .        .       .         .      
## Mycteria_americana               .        .        .        .       .         .      
## Leptoptilos_javanicus            .        .        .        .       .         .      
## Ciconia_maguari                  .        .        .        .       .         .      
## Ephippiorhynchus_asiaticus       .        .        .        .       .         .      
## Jabiru_mycteria                  .        .        .        .       .         .      
## Gavia_stellata                   .        .        .        .       .         .      
## Oceanites_gracilis               .        .        .        .       .         .      
## Fregetta_grallaria               .        .        .        .       .         .      
## Pelagodroma_marina               .        .        .        .       .         .      
## Garrodia_nereis                  .        .        .        .       .         .      
## Nesofregetta_fuliginosa          .        .        .        .       .         .      
## Phoebetria_palpebrata            .        .        .        .       .         .      
## Diomedea_exulans                 .        .        .        .       .         .      
## Thalassarche_impavida            .        .        .        .       .         .      
## Phoebastria_irrorata             .        .        .        .       .         .      
## Pelecanoides_magellani           .        .        .        .       .         .      
## Lugensa_brevirostris             .        .        .        .       .         .      
## Halobaena_caerulea               .        .        .        .       .         .      
## Pachyptila_belcheri              .        .        .        .       .         .      
## Bulweria_fallax                  .        .        .        .       .         .      
## Calonectris_leucomelas           .        .        .        .       .         .      
## Puffinus_assimilis               .        .        .        .       .         .      
## Pseudobulweria_aterrima          .        .        .        .       .         .      
## Procellaria_cinerea              .        .        .        .       .         .      
## Pterodroma_longirostris          .        .        .        .       .         .      
## Fulmarus_glacialoides            .        .        .        .       .         .      
## Macronectes_giganteus            .        .        .        .       .         .      
## Pagodroma_nivea                  .        .        .        .       .         .      
## Thalassoica_antarctica           .        .        .        .       .         .      
## Daption_capense                  .        .        .        .       .         .      
## Halocyptena_microsoma            .        .        .        .       .         .      
## Hydrobates_pelagicus             .        .        .        .       .         .      
## Oceanodroma_furcata              .        .        .        .       .         .      
## Opisthocomus_hoazin              .        .        .        .       .         .      
## Phaethon_rubricauda              .        .        .        .       .         .      
## Musophaga_rossae                 .        .        .        .       .         .      
## Tauraco_erythrolophus            .        .        .        .       .         .      
## Ruwenzorornis_johnstoni          .        .        .        .       .         .      
## Corythaeola_cristata             .        .        .        .       .         .      
## Corythaixoides_leucogaster       .        .        .        .       .         .      
## Crinifer_piscator                .        .        .        .       .         .      
## Houbaropsis_bengalensis          .        .        .        .       .         .      
## Sypheotides_indicus              .        .        .        .       .         .      
## Eupodotis_savilei                .        .        .        .       .         .      
## Tetrax_tetrax                    .        .        .        .       .         .      
## Chlamydotis_undulata             .        .        .        .       .         .      
## Otis_tarda                       .        .        .        .       .         .      
## Ardeotis_kori                    .        .        .        .       .         .      
## Neotis_denhami                   .        .        .        .       .         .      
## Ibidorhyncha_struthersii         .        .        .        .       .         .      
## Haematopus_longirostris          .        .        .        .       .         .      
## Recurvirostra_avosetta           .        .        .        .       .         .      
## Himantopus_himantopus            .        .        .        .       .         .      
## Cladorhynchus_leucocephalus      .        .        .        .       .         .      
## Pluvialis_squatarola             .        .        .        .       .         .      
## Phegornis_mitchellii             .        .        .        .       .         .      
## Charadrius_vociferus             .        .        .        .       .         .      
## Thinornis_rubricollis            .        .        .        .       .         .      
## Elseyornis_melanops              .        .        .        .       .         .      
## Eudromias_morinellus             .        .        .        .       .         .      
## Vanellus_vanellus                .        .        .        .       .         .      
## Erythrogonys_cinctus             .        .        .        .       .         .      
## Anarhynchus_frontalis            .        .        .        .       .         .      
## Oreopholus_ruficollis            .        .        .        .       .         .      
## Pluvianus_aegyptius              .        .        .        .       .         .      
## Esacus_recurvirostris            .        .        .        .       .         .      
## Burhinus_superciliaris           .        .        .        .       .         .      
## Chionis_albus                    .        .        .        .       .         .      
## Pluvianellus_socialis            .        .        .        .       .         .      
## Thinocorus_rumicivorus           .        .        .        .       .         .      
## Attagis_gayi                     .        .        .        .       .         .      
## Pedionomus_torquatus             .        .        .        .       .         .      
## Rostratula_benghalensis          .        .        .        .       .         .      
## Jacana_spinosa                   .        .        .        .       .         .      
## Hydrophasianus_chirurgus         .        .        .        .       .         .      
## Actophilornis_albinucha          .        .        .        .       .         .      
## Metopidius_indicus               .        .        .        .       .         .      
## Microparra_capensis              .        .        .        .       .         .      
## Irediparra_gallinacea            .        .        .        .       .         .      
## Bartramia_longicauda             .        .        .        .       .         .      
## Numenius_arquata                 .        .        .        .       .         .      
## Lymnocryptes_minimus             .        .        .        .       .         .      
## Limosa_lapponica                 .        .        .        .       .         .      
## Phalaropus_fulicarius            .        .        .        .       .         .      
## Steganopus_tricolor              .        .        .        .       .         .      
## Xenus_cinereus                   .        .        .        .       .         .      
## Prosobonia_cancellata            .        .        .        .       .         .      
## Catoptrophorus_semipalmatus      .        .        .        .       .         .      
## Heteroscelus_brevipes            .        .        .        .       .         .      
## Tringa_ochropus                  .        .        .        .       .         .      
## Actitis_macularius               .        .        .        .       .         .      
## Coenocorypha_pusilla             .        .        .        .       .         .      
## Gallinago_gallinago              .        .        .        .       .         .      
## Scolopax_rusticola               .        .        .        .       .         .      
## Limnodromus_semipalmatus         .        .        .        .       .         .      
## Aphriza_virgata                  .        .        .        .       .         .      
## Calidris_tenuirostris            .        .        .        .       .         .      
## Limicola_falcinellus             .        .        .        .       .         .      
## Philomachus_pugnax               .        .        .        .       .         .      
## Tryngites_subruficollis          .        .        .        .       .         .      
## Eurynorhynchus_pygmeus           .        .        .        .       .         .      
## Arenaria_interpres               .        .        .        .       .         .      
## Turnix_sylvaticus                .        .        .        .       .         .      
## Ortyxelos_meiffrenii             .        .        .        .       .         .      
## Stercorarius_longicaudus         .        .        .        .       .         .      
## Catharacta_lonnbergi             .        .        .        .       .         .      
## Synthliboramphus_antiquus        .        .        .        .       .         .      
## Uria_aalge                       .        .        .        .       .         .      
## Alca_torda                       .        .        .        .       .         .      
## Alle_alle                        .        .        .        .       .         .      
## Brachyramphus_marmoratus         .        .        .        .       .         .      
## Cepphus_grylle                   .        .        .        .       .         .      
## Ptychoramphus_aleuticus          .        .        .        .       .         .      
## Aethia_psittacula                .        .        .        .       .         .      
## Cerorhinca_monocerata            .        .        .        .       .         .      
## Fratercula_corniculata           .        .        .        .       .         .      
## Rynchops_niger                   .        .        .        .       .         .      
## Pagophila_eburnea                .        .        .        .       .         .      
## Xema_sabini                      .        .        .        .       .         .      
## Rissa_tridactyla                 .        .        .        .       .         .      
## Larus_saundersi                  .        .        .        .       .         .      
## Leucophaeus_scoresbii            .        .        .        .       .         .      
## Rhodostethia_rosea               .        .        .        .       .         .      
## Creagrus_furcatus                .        .        .        .       .         .      
## Anous_stolidus                   .        .        .        .       .         .      
## Sterna_nilotica                  .        .        .        .       .         .      
## Chlidonias_hybrida               .        .        .        .       .         .      
## Larosterna_inca                  .        .        .        .       .         .      
## Phaetusa_simplex                 .        .        .        .       .         .      
## Gygis_alba                       .        .        .        .       .         .      
## Procelsterna_cerulea             .        .        .        .       .         .      
## Dromas_ardeola                   .        .        .        .       .         .      
## Rhinoptilus_africanus            .        .        .        .       .         .      
## Cursorius_cursor                 .        .        .        .       .         .      
## Glareola_pratincola              .        .        .        .       .         .      
## Stiltia_isabella                 .        .        .        .       .         .      
## Anurolimnas_castaneiceps         .        .        .        .       .         .      
## Podica_senegalensis              .        .        .        .       .         .      
## Heliopais_personatus             .        .        .        .       .         .      
## Heliornis_fulica                 .        .        .        .       .         .      
## Sarothrura_pulchra               .        .        .        .       .         .      
## Porphyrio_porphyrio              .        .        .        .       .         .      
## Gymnocrex_rosenbergii            .        .        .        .       .         .      
## Laterallus_melanophaius          .        .        .        .       .         .      
## Dryolimnas_cuvieri               .        .        .        .       .         .      
## Gallicrex_cinerea                .        .        .        .       .         .      
## Coturnicops_exquisitus           .        .        .        .       .         .      
## Rallina_fasciata                 .        .        .        .       .         .      
## Pardirallus_maculatus            .        .        .        .       .         .      
## Habroptila_wallacii              .        .        .        .       .         .      
## Aramides_cajanea                 .        .        .        .       .         .      
## Rougetius_rougetii               .        .        .        .       .         .      
## Canirallus_oculeus               .        .        .        .       .         .      
## Megacrex_inepta                  .        .        .        .       .         .      
## Gallirallus_torquatus            .        .        .        .       .         .      
## Crex_crex                        .        .        .        .       .         .      
## Rallus_longirostris              .        .        .        .       .         .      
## Eulabeornis_castaneoventris      .        .        .        .       .         .      
## Neocrex_colombiana               .        .        .        .       .         .      
## Amaurornis_olivacea              .        .        .        .       .         .      
## Himantornis_haematopus           .        .        .        .       .         .      
## Lewinia_pectoralis               .        .        .        .       .         .      
## Micropygia_schomburgkii          .        .        .        .       .         .      
## Gallinula_nesiotis               .        .        .        .       .         .      
## Fulica_armillata                 .        .        .        .       .         .      
## Crecopsis_egregia                .        .        .        .       .         .      
## Aenigmatolimnas_marginalis       .        .        .        .       .         .      
## Porzana_parva                    .        .        .        .       .         .      
## Amaurolimnas_concolor            .        .        .        .       .         .      
## Atlantisia_rogersi               .        .        .        .       .         .      
## Psophia_viridis                  .        .        .        .       .         .      
## Aramus_guarauna                  .        .        .        .       .         .      
## Grus_rubicunda                   .        .        .        .       .         .      
## Balearica_regulorum              .        .        .        .       .         .      
## Monias_benschi                   .        .        .        .       .         .      
## Mesitornis_unicolor              .        .        .        .       .         .      
## Phoenicopterus_ruber             .        .        .        .       .         .      
## Phoenicoparrus_andinus           .        .        .        .       .         .      
## Phoeniconaias_minor              .        .        .        .       .         .      
## Poliocephalus_poliocephalus      .        .        .        .       .         .      
## Podilymbus_podiceps              .        .        .        .       .         .      
## Tachybaptus_ruficollis           .        .        .        .       .         .      
## Aechmophorus_occidentalis        .        .        .        .       .         .      
## Podiceps_cristatus               .        .        .        .       .         .      
## Rollandia_rolland                .        .        .        .       .         .      
## Centropus_milo                   .        .        .        .       .         .      
## Carpococcyx_radiatus             .        .        .        .       .         .      
## Coua_serriana                    .        .        .        .       .         .      
## Phaenicophaeus_cumingi           .        .        .        .       .         .      
## Clamator_jacobinus               .        .        .        .       .         .      
## Coccyzus_merlini                 .        .        .        .       .         .      
## Piaya_cayana                     .        .        .        .       .         .      
## Coccycua_pumila                  .        .        .        .       .         .      
## Ceuthmochares_aereus             .        .        .        .       .         .      
## Pachycoccyx_audeberti            .        .        .        .       .         .      
## Scythrops_novaehollandiae        .        .        .        .       .         .      
## Cuculus_canorus                  .        .        .        .       .         .      
## Caliechthrus_leucolophus         .        .        .        .       .         .      
## Surniculus_lugubris              .        .        .        .       .         .      
## Cercococcyx_mechowi              .        .        .        .       .         .      
## Cacomantis_sonneratii            .        .        .        .       .         .      
## Chrysococcyx_minutillus          .        .        .        .       .         .      
## Rhamphomantis_megarhynchus       .        .        .        .       .         .      
## Microdynamis_parva               .        .        .        .       .         .      
## Eudynamys_scolopaceus            .        .        .        .       .         .      
## Guira_guira                      .        .        .        .       .         .      
## Crotophaga_major                 .        .        .        .       .         .      
## Geococcyx_californianus          .        .        .        .       .         .      
## Neomorphus_geoffroyi             .        .        .        .       .         .      
## Morococcyx_erythropygus          .        .        .        .       .         .      
## Dromococcyx_phasianellus         .        .        .        .       .         .      
## Tapera_naevia                    .        .        .        .       .         .      
## Eurypyga_helias                  .        .        .        .       .         .      
## Rhynochetos_jubatus              .        .        .        .       .         .      
## Chunga_burmeisteri               .        .        .        .       .         .      
## Cariama_cristata                 .        .        .        .       .         .      
## Spiziapteryx_circumcincta        .        .        .        .       .         .      
## Caracara_cheriway                .        .        .        .       .         .      
## Ibycter_americanus               .        .        .        .       .         .      
## Milvago_chimachima               .        .        .        .       .         .      
## Daptrius_ater                    .        .        .        .       .         .      
## Phalcoboenus_carunculatus        .        .        .        .       .         .      
## Falco_cherrug                    .        .        .        .       .         .      
## Polihierax_semitorquatus         .        .        .        .       .         .      
## Microhierax_caerulescens         .        .        .        .       .         .      
## Herpetotheres_cachinnans         .        .        .        .       .         .      
## Micrastur_ruficollis             .        .        .        .       .         .      
## Xenicus_gilviventris             .        .        .        .       .         .      
## Acanthisitta_chloris             .        .        .        .       .         .      
## Sapayoa_aenigma                  .        .        .        .       .         .      
## Neodrepanis_coruscans            .        .        .        .       .         .      
## Philepitta_schlegeli             .        .        .        .       .         .      
## Eurylaimus_steerii               .        .        .        .       .         .      
## Cymbirhynchus_macrorhynchos      .        .        .        .       .         .      
## Serilophus_lunatus               .        .        .        .       .         .      
## Corydon_sumatranus               .        .        .        .       .         .      
## Psarisomus_dalhousiae            .        .        .        .       .         .      
## Pseudocalyptomena_graueri        .        .        .        .       .         .      
## Calyptomena_viridis              .        .        .        .       .         .      
## Smithornis_capensis              .        .        .        .       .         .      
## Pitta_steerii                    .        .        .        .       .         .      
## Terenotriccus_erythrurus         .        .        .        .       .         .      
## Onychorhynchus_coronatus         .        .        .        .       .         .      
## Oxyruncus_cristatus              .        .        .        .       .         .      
## Cnipodectes_subbrunneus          .        .        .        .       .         .      
## Todirostrum_maculatum            .        .        .        .       .         .      
## Poecilotriccus_ruficeps          .        .        .        .       .         .      
## Oncostoma_cinereigulare          .        .        .        .       .         .      
## Lophotriccus_pileatus            .        .        .        .       .         .      
## Hemitriccus_minor                .        .        .        .       .         .      
## Atalotriccus_pilaris             .        .        .        .       .         .      
## Myiornis_auricularis             .        .        .        .       .         .      
## Rhynchocyclus_brevirostris       .        .        .        .       .         .      
## Tolmomyias_sulphurescens         .        .        .        .       .         .      
## Corythopis_torquatus             .        .        .        .       .         .      
## Pseudotriccus_pelzelni           .        .        .        .       .         .      
## Phylloscartes_eximius            .        .        .        .       .         .      
## Leptopogon_amaurocephalus        .        .        .        .       .         .      
## Mionectes_olivaceus              .        .        .        .       .         .      
## Tachuris_rubrigastra             .        .        .        .       .         .      
## Neopipo_cinnamomea               .        .        .        .       .         .      
## Platyrinchus_leucoryphus         .        .        .        .       .         .      
## Culicivora_caudacuta             .        .        .        .       .         .      
## Anairetes_agilis                 .        .        .        .       .         .      
## Pseudocolopteryx_flaviventris    .        .        .        .       .         .      
## Serpophaga_cinerea               .        .        .        .       .         .      
## Polystictus_pectoralis           .        .        .        .       .         .      
## Pseudelaenia_leucospodia         .        .        .        .       .         .      
## Stigmatura_napensis              .        .        .        .       .         .      
## Mecocerculus_leucophrys          .        .        .        .       .         .      
## Phaeomyias_murina                .        .        .        .       .         .      
## Capsiempis_flaveola              .        .        .        .       .         .      
## Suiriri_suiriri                  .        .        .        .       .         .      
## Tyrannulus_elatus                .        .        .        .       .         .      
## Myiopagis_gaimardii              .        .        .        .       .         .      
## Elaenia_martinica                .        .        .        .       .         .      
## Zimmerius_vilissimus             .        .        .        .       .         .      
## Nesotriccus_ridgwayi             .        .        .        .       .         .      
## Ornithion_inerme                 .        .        .        .       .         .      
## Camptostoma_imberbe              .        .        .        .       .         .      
## Phyllomyias_burmeisteri          .        .        .        .       .         .      
## Inezia_inornata                  .        .        .        .       .         .      
## Euscarthmus_meloryphus           .        .        .        .       .         .      
## Muscigralla_brevicauda           .        .        .        .       .         .      
## Conopias_parvus                  .        .        .        .       .         .      
## Colorhamphus_parvirostris        .        .        .        .       .         .      
## Colonia_colonus                  .        .        .        .       .         .      
## Mitrephanes_phaeocercus          .        .        .        .       .         .      
## Empidonax_affinis                .        .        .        .       .         .      
## Contopus_cooperi                 .        .        .        .       .         .      
## Sayornis_phoebe                  .        .        .        .       .         .      
## Lathrotriccus_euleri             .        .        .        .       .         .      
## Ochthornis_littoralis            .        .        .        .       .         .      
## Cnemotriccus_fuscatus            .        .        .        .       .         .      
## Aphanotriccus_capitalis          .        .        .        .       .         .      
## Muscisaxicola_maculirostris      .        .        .        .       .         .      
## Satrapa_icterophrys              .        .        .        .       .         .      
## Muscipipra_vetula                .        .        .        .       .         .      
## Knipolegus_striaticeps           .        .        .        .       .         .      
## Hymenops_perspicillatus          .        .        .        .       .         .      
## Lessonia_oreas                   .        .        .        .       .         .      
## Myiotheretes_striaticollis       .        .        .        .       .         .      
## Agriornis_montanus               .        .        .        .       .         .      
## Neoxolmis_rufiventris            .        .        .        .       .         .      
## Xolmis_pyrope                    .        .        .        .       .         .      
## Cnemarchus_erythropygius         .        .        .        .       .         .      
## Polioxolmis_rufipennis           .        .        .        .       .         .      
## Arundinicola_leucocephala        .        .        .        .       .         .      
## Alectrurus_tricolor              .        .        .        .       .         .      
## Gubernetes_yetapa                .        .        .        .       .         .      
## Pyrocephalus_rubinus             .        .        .        .       .         .      
## Fluvicola_pica                   .        .        .        .       .         .      
## Sublegatus_modestus              .        .        .        .       .         .      
## Tumbezia_salvini                 .        .        .        .       .         .      
## Ochthoeca_frontalis              .        .        .        .       .         .      
## Myiophobus_flavicans             .        .        .        .       .         .      
## Legatus_leucophaius              .        .        .        .       .         .      
## Pitangus_lictor                  .        .        .        .       .         .      
## Machetornis_rixosa               .        .        .        .       .         .      
## Myiozetetes_cayanensis           .        .        .        .       .         .      
## Empidonomus_varius               .        .        .        .       .         .      
## Tyrannus_melancholicus           .        .        .        .       .         .      
## Megarynchus_pitangua             .        .        .        .       .         .      
## Tyrannopsis_sulphurea            .        .        .        .       .         .      
## Myiodynastes_hemichrysus         .        .        .        .       .         .      
## Sirystes_sibilator               .        .        .        .       .         .      
## Myiarchus_semirufus              .        .        .        .       .         .      
## Rhytipterna_simplex              .        .        .        .       .         .      
## Casiornis_rufus                  .        .        .        .       .         .      
## Phelpsia_inornatus               .        .        .        .       .         .      
## Attila_spadiceus                 .        .        .        .       .         .      
## Ramphotrigon_ruficauda           .        .        .        .       .         .      
## Deltarhynchus_flammulatus        .        .        .        .       .         .      
## Pyrrhomyias_cinnamomeus          .        .        .        .       .         .      
## Hirundinea_ferruginea            .        .        .        .       .         .      
## Myiotriccus_ornatus              .        .        .        .       .         .      
## Piprites_pileata                 .        .        .        .       .         .      
## Iodopleura_fusca                 .        .        .        .       .         .      
## Tityra_semifasciata              .        .        .        .       .         .      
## Pachyramphus_viridis             .        .        .        .       .         .      
## Schiffornis_major                .        .        .        .       .         .      
## Laniisoma_elegans                .        .        .        .       .         .      
## Laniocera_rufescens              .        .        .        .       .         .      
## Corapipo_gutturalis              .        .        .        .       .         .      
## Masius_chrysopterus              .        .        .        .       .         .      
## Ilicura_militaris                .        .        .        .       .         .      
## Antilophia_galeata               .        .        .        .       .         .      
## Chiroxiphia_linearis             .        .        .        .       .         .      
## Xenopipo_atronitens              .        .        .        .       .         .      
## Lepidothrix_coronata             .        .        .        .       .         .      
## Machaeropterus_pyrocephalus      .        .        .        .       .         .      
## Pipra_chloromeros                .        .        .        .       .         .      
## Manacus_vitellinus               .        .        .        .       .         .      
## Heterocercus_flavivertex         .        .        .        .       .         .      
## Tyranneutes_stolzmanni           .        .        .        .       .         .      
## Neopelma_chrysocephalum          .        .        .        .       .         .      
## Doliornis_sclateri               .        .        .        .       .         .      
## Ampelion_rubrocristatus          .        .        .        .       .         .      
## Phytotoma_raimondii              .        .        .        .       .         .      
## Carpornis_cucullata              .        .        .        .       .         .      
## Snowornis_subalaris              .        .        .        .       .         .      
## Querula_purpurata                .        .        .        .       .         .      
## Pyroderus_scutatus               .        .        .        .       .         .      
## Cephalopterus_penduliger         .        .        .        .       .         .      
## Perissocephalus_tricolor         .        .        .        .       .         .      
## Haematoderus_militaris           .        .        .        .       .         .      
## Procnias_tricarunculatus         .        .        .        .       .         .      
## Carpodectes_nitidus              .        .        .        .       .         .      
## Xipholena_punicea                .        .        .        .       .         .      
## Gymnoderus_foetidus              .        .        .        .       .         .      
## Porphyrolaema_porphyrolaema      .        .        .        .       .         .      
## Phibalura_flavirostris           .        .        .        .       .         .      
## Lipaugus_fuscocinereus           .        .        .        .       .         .      
## Tijuca_atra                      .        .        .        .       .         .      
## Cotinga_amabilis                 .        .        .        .       .         .      
## Calyptura_cristata               .        .        .        .       .         .      
## Rupicola_rupicola                .        .        .        .       .         .      
## Phoenicircus_nigricollis         .        .        .        .       .         .      
## Ampelioides_tschudii             .        .        .        .       .         .      
## Pipreola_whitelyi                .        .        .        .       .         .      
## Thamnistes_anabatinus            .        .        .        .       .         .      
## Pygiptila_stellaris              .        .        .        .       .         .      
## Myrmornis_torquata               .        .        .        .       .         .      
## Neoctantes_niger                 .        .        .        .       .         .      
## Epinecrophylla_fulviventris      .        .        .        .       .         .      
## Myrmorchilus_strigilatus         .        .        .        .       .         .      
## Microrhopias_quixensis           .        .        .        .       .         .      
## Clytoctantes_alixii              .        .        .        .       .         .      
## Formicivora_grisea               .        .        .        .       .         .      
## Myrmotherula_brachyura           .        .        .        .       .         .      
## Cercomacra_cinerascens           .        .        .        .       .         .      
## Hypocnemis_cantator              .        .        .        .       .         .      
## Drymophila_ferruginea            .        .        .        .       .         .      
## Willisornis_poecilinotus         .        .        .        .       .         .      
## Rhegmatorhina_gymnops            .        .        .        .       .         .      
## Gymnopithys_rufigula             .        .        .        .       .         .      
## Phlegopsis_nigromaculata         .        .        .        .       .         .      
## Phaenostictus_mcleannani         .        .        .        .       .         .      
## Pithys_albifrons                 .        .        .        .       .         .      
## Rhopornis_ardesiacus             .        .        .        .       .         .      
## Myrmoborus_leucophrys            .        .        .        .       .         .      
## Percnostola_rufifrons            .        .        .        .       .         .      
## Pyriglena_atra                   .        .        .        .       .         .      
## Gymnocichla_nudiceps             .        .        .        .       .         .      
## Myrmeciza_ruficauda              .        .        .        .       .         .      
## Hylophylax_naevioides            .        .        .        .       .         .      
## Hypocnemoides_maculicauda        .        .        .        .       .         .      
## Schistocichla_leucostigma        .        .        .        .       .         .      
## Sclateria_naevia                 .        .        .        .       .         .      
## Thamnomanes_saturninus           .        .        .        .       .         .      
## Megastictus_margaritatus         .        .        .        .       .         .      
## Biatas_nigropectus               .        .        .        .       .         .      
## Herpsilochmus_rufimarginatus     .        .        .        .       .         .      
## Dysithamnus_stictothorax         .        .        .        .       .         .      
## Sakesphorus_canadensis           .        .        .        .       .         .      
## Thamnophilus_doliatus            .        .        .        .       .         .      
## Mackenziaena_severa              .        .        .        .       .         .      
## Frederickena_viridis             .        .        .        .       .         .      
## Hypoedaleus_guttatus             .        .        .        .       .         .      
## Batara_cinerea                   .        .        .        .       .         .      
## Taraba_major                     .        .        .        .       .         .      
## Cymbilaimus_lineatus             .        .        .        .       .         .      
## Dichrozona_cincta                .        .        .        .       .         .      
## Terenura_maculata                .        .        .        .       .         .      
## Pittasoma_michleri               .        .        .        .       .         .      
## Conopophaga_melanops             .        .        .        .       .         .      
## Melanopareia_torquata            .        .        .        .       .         .      
## Dendrocincla_tyrannina           .        .        .        .       .         .      
## Deconychura_longicauda           .        .        .        .       .         .      
## Sittasomus_griseicapillus        .        .        .        .       .         .      
## Dendroplex_picus                 .        .        .        .       .         .      
## Xiphorhynchus_obsoletus          .        .        .        .       .         .      
## Drymornis_bridgesii              .        .        .        .       .         .      
## Campylorhamphus_pucherani        .        .        .        .       .         .      
## Lepidocolaptes_souleyetii        .        .        .        .       .         .      
## Hylexetastes_perrotii            .        .        .        .       .         .      
## Xiphocolaptes_promeropirhynchus  .        .        .        .       .         .      
## Dendrocolaptes_picumnus          .        .        .        .       .         .      
## Nasica_longirostris              .        .        .        .       .         .      
## Dendrexetastes_rufigula          .        .        .        .       .         .      
## Glyphorynchus_spirurus           .        .        .        .       .         .      
## Xenops_rutilans                  .        .        .        .       .         .      
## Margarornis_rubiginosus          .        .        .        .       .         .      
## Premnoplex_brunnescens           .        .        .        .       .         .      
## Anabazenops_fuscus               .        .        .        .       .         .      
## Syndactyla_guttulata             .        .        .        .       .         .      
## Anabacerthia_variegaticeps       .        .        .        .       .         .      
## Cichlocolaptes_leucophrus        .        .        .        .       .         .      
## Heliobletus_contaminatus         .        .        .        .       .         .      
## Philydor_ruficaudatum            .        .        .        .       .         .      
## Ancistrops_strigilatus           .        .        .        .       .         .      
## Hylocryptus_rectirostris         .        .        .        .       .         .      
## Automolus_infuscatus             .        .        .        .       .         .      
## Hyloctistes_subulatus            .        .        .        .       .         .      
## Thripadectes_melanorhynchus      .        .        .        .       .         .      
## Berlepschia_rikeri               .        .        .        .       .         .      
## Premnornis_guttuligera           .        .        .        .       .         .      
## Tarphonomus_certhioides          .        .        .        .       .         .      
## Pseudocolaptes_lawrencii         .        .        .        .       .         .      
## Cinclodes_fuscus                 .        .        .        .       .         .      
## Upucerthia_serrana               .        .        .        .       .         .      
## Furnarius_rufus                  .        .        .        .       .         .      
## Phleocryptes_melanops            .        .        .        .       .         .      
## Limnornis_curvirostris           .        .        .        .       .         .      
## Lochmias_nematura                .        .        .        .       .         .      
## Leptasthenura_platensis          .        .        .        .       .         .      
## Sylviorthorhynchus_desmursii     .        .        .        .       .         .      
## Schizoeaca_coryi                 .        .        .        .       .         .      
## Pseudoseisura_cristata           .        .        .        .       .         .      
## Cranioleuca_vulpecula            .        .        .        .       .         .      
## Limnoctites_rectirostris         .        .        .        .       .         .      
## Siptornis_striaticollis          .        .        .        .       .         .      
## Thripophaga_macroura             .        .        .        .       .         .      
## Roraimia_adusta                  .        .        .        .       .         .      
## Metopothrix_aurantiaca           .        .        .        .       .         .      
## Synallaxis_brachyura             .        .        .        .       .         .      
## Asthenes_steinbachi              .        .        .        .       .         .      
## Siptornopsis_hypochondriaca      .        .        .        .       .         .      
## Schoeniophylax_phryganophilus    .        .        .        .       .         .      
## Certhiaxis_cinnamomeus           .        .        .        .       .         .      
## Spartonoica_maluroides           .        .        .        .       .         .      
## Anumbius_annumbi                 .        .        .        .       .         .      
## Coryphistera_alaudina            .        .        .        .       .         .      
## Hellmayrea_gularis               .        .        .        .       .         .      
## Phacellodomus_rufifrons          .        .        .        .       .         .      
## Aphrastura_spinicauda            .        .        .        .       .         .      
## Pygarrhichas_albogularis         .        .        .        .       .         .      
## Ochetorhynchus_andaecola         .        .        .        .       .         .      
## Sclerurus_rufigularis            .        .        .        .       .         .      
## Geositta_tenuirostris            .        .        .        .       .         .      
## Chamaeza_campanisona             .        .        .        .       .         .      
## Formicarius_colma                .        .        .        .       .         .      
## Eugralla_paradoxa                .        .        .        .       .         .      
## Scytalopus_meridanus             .        .        .        .       .         .      
## Myornis_senilis                  .        .        .        .       .         .      
## Eleoscytalopus_indigoticus       .        .        .        .       .         .      
## Merulaxis_ater                   .        .        .        .       .         .      
## Scelorchilus_rubecula            .        .        .        .       .         .      
## Pteroptochos_tarnii              .        .        .        .       .         .      
## Teledromas_fuscus                .        .        .        .       .         .      
## Rhinocrypta_lanceolata           .        .        .        .       .         .      
## Acropternis_orthonyx             .        .        .        .       .         .      
## Psilorhamphus_guttatus           .        .        .        .       .         .      
## Liosceles_thoracicus             .        .        .        .       .         .      
## Grallaria_ruficapilla            .        .        .        .       .         .      
## Myrmothera_campanisona           .        .        .        .       .         .      
## Hylopezus_perspicillatus         .        .        .        .       .         .      
## Grallaricula_flavirostris        .        .        .        .       .         .      
## Menura_novaehollandiae           .        .        .        .       .         .      
## Atrichornis_rufescens            .        .        .        .       .         .      
## Scenopoeetes_dentirostris        .        .        .        .       .         .      
## Prionodura_newtoniana            .        .        .        .       .         .      
## Archboldia_papuensis             .        .        .        .       .         .      
## Amblyornis_macgregoriae          .        .        .        .       .         .      
## Ailuroedus_crassirostris         .        .        .        .       .         .      
## Sericulus_chrysocephalus         .        .        .        .       .         .      
## Chlamydera_cerviniventris        .        .        .        .       .         .      
## Ptilonorhynchus_violaceus        .        .        .        .       .         .      
## Cormobates_leucophaea            .        .        .        .       .         .      
## Climacteris_affinis              .        .        .        .       .         .      
## Amytornis_barbatus               .        .        .        .       .         .      
## Stipiturus_malachurus            .        .        .        .       .         .      
## Sipodotus_wallacii               .        .        .        .       .         .      
## Malurus_cyaneus                  .        .        .        .       .         .      
## Dasyornis_longirostris           .        .        .        .       .         .      
## Melitograis_gilolensis           .        .        .        .       .         .      
## Glycichaera_fallax               .        .        .        .       .         .      
## Ptiloprora_guisei                .        .        .        .       .         .      
## Anthornis_melanura               .        .        .        .       .         .      
## Apalopteron_familiare            .        .        .        .       .         .      
## Lichenostomus_subfrenatus        .        .        .        .       .         .      
## Acanthorhynchus_superciliosus    .        .        .        .       .         .      
## Certhionyx_variegatus            .        .        .        .       .         .      
## Prosthemadera_novaeseelandiae    .        .        .        .       .         .      
## Pycnopygius_ixoides              .        .        .        .       .         .      
## Xanthomyza_phrygia               .        .        .        .       .         .      
## Anthochaera_chrysoptera          .        .        .        .       .         .      
## Acanthagenys_rufogularis         .        .        .        .       .         .      
## Stresemannia_bougainvillei       .        .        .        .       .         .      
## Manorina_melanocephala           .        .        .        .       .         .      
## Melidectes_torquatus             .        .        .        .       .         .      
## Guadalcanaria_inexpectata        .        .        .        .       .         .      
## Timeliopsis_fulvigula            .        .        .        .       .         .      
## Melilestes_megarhynchus          .        .        .        .       .         .      
## Melipotes_gymnops                .        .        .        .       .         .      
## Macgregoria_pulchra              .        .        .        .       .         .      
## Ashbyia_lovensis                 .        .        .        .       .         .      
## Epthianura_tricolor              .        .        .        .       .         .      
## Conopophila_albogularis          .        .        .        .       .         .      
## Ramsayornis_modestus             .        .        .        .       .         .      
## Myzomela_eichhorni               .        .        .        .       .         .      
## Gymnomyza_aubryana               .        .        .        .       .         .      
## Foulehaio_carunculatus           .        .        .        .       .         .      
## Entomyzon_cyanotis               .        .        .        .       .         .      
## Melithreptus_lunatus             .        .        .        .       .         .      
## Myza_sarasinorum                 .        .        .        .       .         .      
## Phylidonyris_pyrrhopterus        .        .        .        .       .         .      
## Trichodere_cockerelli            .        .        .        .       .         .      
## Lichmera_flavicans               .        .        .        .       .         .      
## Grantiella_picta                 .        .        .        .       .         .      
## Plectorhyncha_lanceolata         .        .        .        .       .         .      
## Xanthotis_provocator             .        .        .        .       .         .      
## Philemon_novaeguineae            .        .        .        .       .         .      
## Pardalotus_quadragintus          .        .        .        .       .         .      
## Aphelocephala_leucopsis          .        .        .        .       .         .      
## Acanthornis_magna                .        .        .        .       .         .      
## Acanthiza_murina                 .        .        .        .       .         .      
## Smicrornis_brevirostris          .        .        .        .       .         .      
## Origma_solitaria                 .        .        .        .       .         .      
## Crateroscelis_murina             .        .        .        .       .         .      
## Sericornis_citreogularis         .        .        .        .       .         .      
## Pycnoptilus_floccosus            .        .        .        .       .         .      
## Chthonicola_sagittatus           .        .        .        .       .         .      
## Pyrrholaemus_brunneus            .        .        .        .       .         .      
## Hylacola_pyrrhopygia             .        .        .        .       .         .      
## Calamanthus_fuliginosus          .        .        .        .       .         .      
## Gerygone_cinerea                 .        .        .        .       .         .      
## Oreoscopus_gutturalis            .        .        .        .       .         .      
## Pomatostomus_ruficeps            .        .        .        .       .         .      
## Orthonyx_temminckii              .        .        .        .       .         .      
## Notiomystis_cincta               .        .        .        .       .         .      
## Melanocharis_striativentris      .        .        .        .       .         .      
## Oedistoma_pygmaeum               .        .        .        .       .         .      
## Toxorhamphus_novaeguineae        .        .        .        .       .         .      
## Loboparadisea_sericea            .        .        .        .       .         .      
## Cnemophilus_macgregorii          .        .        .        .       .         .      
## Callaeas_cinereus                .        .        .        .       .         .      
## Philesturnus_carunculatus        .        .        .        .       .         .      
## Daphoenositta_chrysoptera        .        .        .        .       .         .      
## Oreocharis_arfaki                .        .        .        .       .         .      
## Paramythia_montium               .        .        .        .       .         .      
## Pitohui_dichrous                 .        .        .        .       .         .      
## Sphecotheres_hypoleucus          .        .        .        .       .         .      
## Oriolus_sagittatus               .        .        .        .       .         .      
## Lamprolia_victoriae              .        .        .        .       .         .      
## Rhipidura_teysmanni              .        .        .        .       .         .      
## Struthidea_cinerea               .        .        .        .       .         .      
## Corcorax_melanorhamphos          .        .        .        .       .         .      
## Hypothymis_azurea                .        .        .        .       .         .      
## Terpsiphone_rufiventer           .        .        .        .       .         .      
## Trochocercus_nitens              .        .        .        .       .         .      
## Grallina_cyanoleuca              .        .        .        .       .         .      
## Myiagra_alecto                   .        .        .        .       .         .      
## Monarcha_axillaris               .        .        .        .       .         .      
## Metabolus_rugensis               .        .        .        .       .         .      
## Clytorhynchus_hamlini            .        .        .        .       .         .      
## Mayrornis_lessoni                .        .        .        .       .         .      
## Neolalage_banksiana              .        .        .        .       .         .      
## Pomarea_whitneyi                 .        .        .        .       .         .      
## Chasiempis_sandwichensis         .        .        .        .       .         .      
## Arses_kaupi                      .        .        .        .       .         .      
## Melampitta_lugubris              .        .        .        .       .         .      
## Lycocorax_pyrrhopterus           .        .        .        .       .         .      
## Manucodia_comrii                 .        .        .        .       .         .      
## Parotia_carolae                  .        .        .        .       .         .      
## Pteridophora_alberti             .        .        .        .       .         .      
## Cicinnurus_regius                .        .        .        .       .         .      
## Paradisaea_raggiana              .        .        .        .       .         .      
## Paradigalla_brevicauda           .        .        .        .       .         .      
## Astrapia_splendidissima          .        .        .        .       .         .      
## Epimachus_bruijnii               .        .        .        .       .         .      
## Seleucidis_melanoleucus          .        .        .        .       .         .      
## Semioptera_wallacii              .        .        .        .       .         .      
## Ptiloris_intercedens             .        .        .        .       .         .      
## Lophorina_superba                .        .        .        .       .         .      
## Ifrita_kowaldi                   .        .        .        .       .         .      
## Eurocephalus_anguitimens         .        .        .        .       .         .      
## Lanius_minor                     .        .        .        .       .         .      
## Urolestes_melanoleucus           .        .        .        .       .         .      
## Corvinella_corvina               .        .        .        .       .         .      
## Platylophus_galericulatus        .        .        .        .       .         .      
## Cyanopica_cyanus                 .        .        .        .       .         .      
## Perisoreus_canadensis            .        .        .        .       .         .      
## Ptilostomus_afer                 .        .        .        .       .         .      
## Podoces_hendersoni               .        .        .        .       .         .      
## Pica_hudsonia                    .        .        .        .       .         .      
## Nucifraga_caryocatactes          .        .        .        .       .         .      
## Corvus_corone                    .        .        .        .       .         .      
## Garrulus_lidthi                  .        .        .        .       .         .      
## Zavattariornis_stresemanni       .        .        .        .       .         .      
## Calocitta_colliei                .        .        .        .       .         .      
## Cyanocorax_yncas                 .        .        .        .       .         .      
## Aphelocoma_insularis             .        .        .        .       .         .      
## Gymnorhinus_cyanocephalus        .        .        .        .       .         .      
## Cyanocitta_cristata              .        .        .        .       .         .      
## Cyanolyca_cucullata              .        .        .        .       .         .      
## Urocissa_caerulea                .        .        .        .       .         .      
## Cissa_hypoleuca                  .        .        .        .       .         .      
## Dendrocitta_leucogastra          .        .        .        .       .         .      
## Platysmurus_leucopterus          .        .        .        .       .         .      
## Temnurus_temnurus                .        .        .        .       .         .      
## Crypsirina_cucullata             .        .        .        .       .         .      
## Pyrrhocorax_pyrrhocorax          .        .        .        .       .         .      
## Dicrurus_caerulescens            .        .        .        .       .         .      
## Vireolanius_leucotis             .        .        .        .       .         .      
## Hylophilus_poicilotis            .        .        .        .       .         .      
## Vireo_brevipennis                .        .        .        .       .         .      
## Erpornis_zantholeuca             .        .        .        .       .         .      
## Cyclarhis_gujanensis             .        .        .        .       .         .      
## Pteruthius_rufiventer            .        .        .        .       .         .      
## Pachycephala_albiventris         .        .        .        .       .         .      
## Colluricincla_harmonica          .        .        .        .       .         .      
## Pachycare_flavogriseum           .        .        .        .       .         .      
## Aleadryas_rufinucha              .        .        .        .       .         .      
## Oreoica_gutturalis               .        .        .        .       .         .      
## Rhagologus_leucostigma           .        .        .        .       .         .      
## Machaerirhynchus_nigripectus     .        .        .        .       .         .      
## Artamus_fuscus                   .        .        .        .       .         .      
## Peltops_blainvillii              .        .        .        .       .         .      
## Strepera_graculina               .        .        .        .       .         .      
## Gymnorhina_tibicen               .        .        .        .       .         .      
## Cracticus_mentalis               .        .        .        .       .         .      
## Aegithina_viridissima            .        .        .        .       .         .      
## Malaconotus_alius                .        .        .        .       .         .      
## Tchagra_minutus                  .        .        .        .       .         .      
## Dryoscopus_angolensis            .        .        .        .       .         .      
## Telophorus_zeylonus              .        .        .        .       .         .      
## Rhodophoneus_cruentus            .        .        .        .       .         .      
## Laniarius_poensis                .        .        .        .       .         .      
## Nilaus_afer                      .        .        .        .       .         .      
## Euryceros_prevostii              .        .        .        .       .         .      
## Vanga_curvirostris               .        .        .        .       .         .      
## Xenopirostris_xenopirostris      .        .        .        .       .         .      
## Hypositta_corallirostris         .        .        .        .       .         .      
## Schetba_rufa                     .        .        .        .       .         .      
## Pseudobias_wardi                 .        .        .        .       .         .      
## Oriolia_bernieri                 .        .        .        .       .         .      
## Falculea_palliata                .        .        .        .       .         .      
## Newtonia_brunneicauda            .        .        .        .       .         .      
## Leptopterus_chabert              .        .        .        .       .         .      
## Cyanolanius_madagascarinus       .        .        .        .       .         .      
## Calicalicus_madagascariensis     .        .        .        .       .         .      
## Tylas_eduardi                    .        .        .        .       .         .      
## Artamella_viridis                .        .        .        .       .         .      
## Mystacornis_crossleyi            .        .        .        .       .         .      
## Philentoma_pyrhoptera            .        .        .        .       .         .      
## Megabyas_flammulatus             .        .        .        .       .         .      
## Bias_musicus                     .        .        .        .       .         .      
## Prionops_caniceps                .        .        .        .       .         .      
## Hemipus_picatus                  .        .        .        .       .         .      
## Tephrodornis_pondicerianus       .        .        .        .       .         .      
## Lanioturdus_torquatus            .        .        .        .       .         .      
## Batis_minor                      .        .        .        .       .         .      
## Platysteira_castanea             .        .        .        .       .         .      
## Pityriasis_gymnocephala          .        .        .        .       .         .      
## Lalage_melanoleuca               .        .        .        .       .         .      
## Coracina_typica                  .        .        .        .       .         .      
## Campochaera_sloetii              .        .        .        .       .         .      
## Campephaga_petiti                .        .        .        .       .         .      
## Pericrocotus_flammeus            .        .        .        .       .         .      
## Eulacestoma_nigropectus          .        .        .        .       .         .      
## Falcunculus_frontatus            .        .        .        .       .         .      
## Psophodes_olivaceus              .        .        .        .       .         .      
## Cinclosoma_castaneothorax        .        .        .        .       .         .      
## Ptilorrhoa_leucosticta           .        .        .        .       .         .      
## Mohoua_ochrocephala              .        .        .        .       .         .      
## Chaetops_aurantius               .        .        .        .       .         .      
## Eupetes_macrocerus               .        .        .        .       .         .      
## Picathartes_oreas                .        .        .        .       .         .      
## Microeca_fascinans               .        .        .        .       .         .      
## Monachella_muelleriana           .        .        .        .       .         .      
## Drymodes_superciliaris           .        .        .        .       .         .      
## Peneothello_sigillatus           .        .        .        .       .         .      
## Melanodryas_cucullata            .        .        .        .       .         .      
## Tregellasia_capito               .        .        .        .       .         .      
## Eopsaltria_griseogularis         .        .        .        .       .         .      
## Heteromyias_albispecularis       .        .        .        .       .         .      
## Poecilodryas_hypoleuca           .        .        .        .       .         .      
## Pachycephalopsis_poliosoma       .        .        .        .       .         .      
## Petroica_multicolor              .        .        .        .       .         .      
## Amalocichla_incerta              .        .        .        .       .         .      
## Auriparus_flaviceps              .        .        .        .       .         .      
## Remiz_pendulinus                 .        .        .        .       .         .      
## Anthoscopus_punctifrons          .        .        .        .       .         .      
## Sylviparus_modestus              .        .        .        .       .         .      
## Pseudopodoces_humilis            .        .        .        .       .         .      
## Parus_major                      .        .        .        .       .         .      
## Baeolophus_bicolor               .        .        .        .       .         .      
## Melanochlora_sultanea            .        .        .        .       .         .      
## Cephalopyrus_flammiceps          .        .        .        .       .         .      
## Elminia_longicauda               .        .        .        .       .         .      
## Culicicapa_ceylonensis           .        .        .        .       .         .      
## Stenostira_scita                 .        .        .        .       .         .      
## Chelidorhynx_hypoxantha          .        .        .        .       .         .      
## Nicator_chloris                  .        .        .        .       .         .      
## Panurus_biarmicus                .        .        .        .       .         .      
## Pinarocorys_erythropygia         .        .        .        .       .         .      
## Alaemon_alaudipes                .        .        .        .       .         .      
## Heteromirafra_ruddi              .        .        .        .       .         .      
## Chersomanes_albofasciata         .        .        .        .       .         .      
## Eremopterix_nigriceps            .        .        .        .       .         .      
## Certhilauda_curvirostris         .        .        .        .       .         .      
## Ammomanes_grayi                  .        .        .        .       .         .      
## Chersophilus_duponti             .        .        .        .       .         .      
## Rhamphocoris_clotbey             .        .        .        .       .         .      
## Eremophila_bilopha               .        .        .        .       .         .      
## Calandrella_cinerea              .        .        .        .       .         .      
## Melanocorypha_calandra           .        .        .        .       .         .      
## Eremalauda_starki                .        .        .        .       .         .      
## Spizocorys_conirostris           .        .        .        .       .         .      
## Lullula_arborea                  .        .        .        .       .         .      
## Galerida_magnirostris            .        .        .        .       .         .      
## Alauda_arvensis                  .        .        .        .       .         .      
## Mirafra_passerina                .        .        .        .       .         .      
## Pseudalaemon_fremantlii          .        .        .        .       .         .      
## Hyliota_australis                .        .        .        .       .         .      
## Amaurocichla_bocagei             .        .        .        .       .         .      
## Megalurulus_mariei               .        .        .        .       .         .      
## Scotocerca_inquieta              .        .        .        .       .         .      
## Nesillas_lantzii                 .        .        .        .       .         .      
## Hippolais_olivetorum             .        .        .        .       .         .      
## Acrocephalus_concinens           .        .        .        .       .         .      
## Chloropeta_natalensis            .        .        .        .       .         .      
## Locustella_luscinioides          .        .        .        .       .         .      
## Bradypterus_thoracicus           .        .        .        .       .         .      
## Schoenicola_brevirostris         .        .        .        .       .         .      
## Dromaeocercus_brunneus           .        .        .        .       .         .      
## Megalurus_gramineus              .        .        .        .       .         .      
## Eremiornis_carteri               .        .        .        .       .         .      
## Chaetornis_striata               .        .        .        .       .         .      
## Cincloramphus_cruralis           .        .        .        .       .         .      
## Randia_pseudozosterops           .        .        .        .       .         .      
## Crossleyia_xanthophrys           .        .        .        .       .         .      
## Bowdleria_punctata               .        .        .        .       .         .      
## Thamnornis_chloropetoides        .        .        .        .       .         .      
## Amphilais_seebohmi               .        .        .        .       .         .      
## Oxylabes_madagascariensis        .        .        .        .       .         .      
## Buettikoferella_bivittata        .        .        .        .       .         .      
## Hemitesia_neumanni               .        .        .        .       .         .      
## Neomixis_flavoviridis            .        .        .        .       .         .      
## Donacobius_atricapilla           .        .        .        .       .         .      
## Neolestes_torquatus              .        .        .        .       .         .      
## Pyrrhurus_scandens               .        .        .        .       .         .      
## Phyllastrephus_cabanisi          .        .        .        .       .         .      
## Criniger_barbatus                .        .        .        .       .         .      
## Bleda_notatus                    .        .        .        .       .         .      
## Baeopogon_indicator              .        .        .        .       .         .      
## Chlorocichla_simplex             .        .        .        .       .         .      
## Thescelocichla_leucopleura       .        .        .        .       .         .      
## Ixonotus_guttatus                .        .        .        .       .         .      
## Andropadus_montanus              .        .        .        .       .         .      
## Calyptocichla_serina             .        .        .        .       .         .      
## Tricholestes_criniger            .        .        .        .       .         .      
## Hemixos_flavala                  .        .        .        .       .         .      
## Hypsipetes_mcclellandii          .        .        .        .       .         .      
## Iole_olivacea                    .        .        .        .       .         .      
## Ixos_palawanensis                .        .        .        .       .         .      
## Setornis_criniger                .        .        .        .       .         .      
## Alophoixus_finschii              .        .        .        .       .         .      
## Spizixos_semitorques             .        .        .        .       .         .      
## Pycnonotus_sinensis              .        .        .        .       .         .      
## Bernieria_zosterops              .        .        .        .       .         .      
## Drymocichla_incana               .        .        .        .       .         .      
## Phragmacia_substriata            .        .        .        .       .         .      
## Malcorus_pectoralis              .        .        .        .       .         .      
## Heliolais_erythropterus          .        .        .        .       .         .      
## Graueria_vittata                 .        .        .        .       .         .      
## Incana_incana                    .        .        .        .       .         .      
## Hypergerus_atriceps              .        .        .        .       .         .      
## Eminia_lepida                    .        .        .        .       .         .      
## Euryptila_subcinnamomea          .        .        .        .       .         .      
## Bathmocercus_rufus               .        .        .        .       .         .      
## Cisticola_lateralis              .        .        .        .       .         .      
## Oreolais_pulchra                 .        .        .        .       .         .      
## Artisornis_moreaui               .        .        .        .       .         .      
## Urolais_epichlorus               .        .        .        .       .         .      
## Phyllolais_pulchella             .        .        .        .       .         .      
## Poliolais_lopezi                 .        .        .        .       .         .      
## Prinia_burnesii                  .        .        .        .       .         .      
## Camaroptera_chloronota           .        .        .        .       .         .      
## Spiloptila_clamans               .        .        .        .       .         .      
## Apalis_thoracica                 .        .        .        .       .         .      
## Eremomela_pusilla                .        .        .        .       .         .      
## Pnoepyga_albiventer              .        .        .        .       .         .      
## Kakamega_poliothorax             .        .        .        .       .         .      
## Hypocryptadius_cinnamomeus       .        .        .        .       .         .      
## Turdinus_macrodactylus           .        .        .        .       .         .      
## Graminicola_bengalensis          .        .        .        .       .         .      
## Malacopteron_magnum              .        .        .        .       .         .      
## Gypsophila_crispifrons           .        .        .        .       .         .      
## Robsonius_rabori                 .        .        .        .       .         .      
## Gampsorhynchus_rufulus           .        .        .        .       .         .      
## Napothera_brevicaudata           .        .        .        .       .         .      
## Rimator_pasquieri                .        .        .        .       .         .      
## Jabouilleia_danjoui              .        .        .        .       .         .      
## Malacocincla_abbotti             .        .        .        .       .         .      
## Illadopsis_cleaveri              .        .        .        .       .         .      
## Ptyrticus_turdinus               .        .        .        .       .         .      
## Pellorneum_albiventre            .        .        .        .       .         .      
## Trichastoma_rostratum            .        .        .        .       .         .      
## Kenopia_striata                  .        .        .        .       .         .      
## Kupeornis_gilberti               .        .        .        .       .         .      
## Phyllanthus_atripennis           .        .        .        .       .         .      
## Turdoides_hindei                 .        .        .        .       .         .      
## Babax_waddelli                   .        .        .        .       .         .      
## Garrulax_monileger               .        .        .        .       .         .      
## Cutia_nipalensis                 .        .        .        .       .         .      
## Liocichla_steerii                .        .        .        .       .         .      
## Heterophasia_picaoides           .        .        .        .       .         .      
## Leiothrix_argentauris            .        .        .        .       .         .      
## Strophocincla_cachinnans         .        .        .        .       .         .      
## Minla_cyanouroptera              .        .        .        .       .         .      
## Actinodura_egertoni              .        .        .        .       .         .      
## Spelaeornis_troglodytoides       .        .        .        .       .         .      
## Ptilocichla_leucogrammica        .        .        .        .       .         .      
## Xiphirhynchus_superciliaris      .        .        .        .       .         .      
## Pomatorhinus_montanus            .        .        .        .       .         .      
## Macronous_gularis                .        .        .        .       .         .      
## Timalia_pileata                  .        .        .        .       .         .      
## Dumetia_hyperythra               .        .        .        .       .         .      
## Sphenocichla_humei               .        .        .        .       .         .      
## Stachyris_ambigua                .        .        .        .       .         .      
## Rhopocichla_atriceps             .        .        .        .       .         .      
## Yuhina_castaniceps               .        .        .        .       .         .      
## Crocias_albonotatus              .        .        .        .       .         .      
## Cleptornis_marchei               .        .        .        .       .         .      
## Woodfordia_superciliosa          .        .        .        .       .         .      
## Tephrozosterops_stalkeri         .        .        .        .       .         .      
## Zosterops_erythropleurus         .        .        .        .       .         .      
## Chlorocharis_emiliae             .        .        .        .       .         .      
## Speirops_leucophoeus             .        .        .        .       .         .      
## Megazosterops_palauensis         .        .        .        .       .         .      
## Oculocincta_squamifrons          .        .        .        .       .         .      
## Lophozosterops_dohertyi          .        .        .        .       .         .      
## Heleia_crassirostris             .        .        .        .       .         .      
## Dasycrotapha_speciosa            .        .        .        .       .         .      
## Rukia_ruki                       .        .        .        .       .         .      
## Malia_grata                      .        .        .        .       .         .      
## Myzornis_pyrrhoura               .        .        .        .       .         .      
## Lioptilus_nigricapillus          .        .        .        .       .         .      
## Parophasma_galinieri             .        .        .        .       .         .      
## Paradoxornis_heudei              .        .        .        .       .         .      
## Chamaea_fasciata                 .        .        .        .       .         .      
## Chrysomma_sinense                .        .        .        .       .         .      
## Rhopophilus_pekinensis           .        .        .        .       .         .      
## Alcippe_ruficapilla              .        .        .        .       .         .      
## Conostoma_oemodium               .        .        .        .       .         .      
## Sylvia_atricapilla               .        .        .        .       .         .      
## Horizorhinus_dohrni              .        .        .        .       .         .      
## Pseudoalcippe_abyssinica         .        .        .        .       .         .      
## Tachycineta_bicolor              .        .        .        .       .         .      
## Pygochelidon_cyanoleuca          .        .        .        .       .         .      
## Atticora_melanoleuca             .        .        .        .       .         .      
## Haplochelidon_andecola           .        .        .        .       .         .      
## Notiochelidon_murina             .        .        .        .       .         .      
## Alopochelidon_fucata             .        .        .        .       .         .      
## Neochelidon_tibialis             .        .        .        .       .         .      
## Stelgidopteryx_serripennis       .        .        .        .       .         .      
## Progne_subis                     .        .        .        .       .         .      
## Phedina_borbonica                .        .        .        .       .         .      
## Riparia_cincta                   .        .        .        .       .         .      
## Delichon_urbicum                 .        .        .        .       .         .      
## Hirundo_rupestris                .        .        .        .       .         .      
## Petrochelidon_pyrrhonota         .        .        .        .       .         .      
## Psalidoprocne_nitens             .        .        .        .       .         .      
## Pseudhirundo_griseopyga          .        .        .        .       .         .      
## Cheramoeca_leucosterna           .        .        .        .       .         .      
## Eurochelidon_sirintarae          .        .        .        .       .         .      
## Pseudochelidon_eurystomina       .        .        .        .       .         .      
## Pholidornis_rushiae              .        .        .        .       .         .      
## Hylia_prasina                    .        .        .        .       .         .      
## Erythrocercus_holochlorus        .        .        .        .       .         .      
## Abroscopus_schisticeps           .        .        .        .       .         .      
## Tesia_cyaniventer                .        .        .        .       .         .      
## Urosphena_squameiceps            .        .        .        .       .         .      
## Cettia_diphone                   .        .        .        .       .         .      
## Orthotomus_cuculatus             .        .        .        .       .         .      
## Tickellia_hodgsoni               .        .        .        .       .         .      
## Seicercus_montis                 .        .        .        .       .         .      
## Phylloscopus_canariensis         .        .        .        .       .         .      
## Leptopoecile_sophiae             .        .        .        .       .         .      
## Psaltria_exilis                  .        .        .        .       .         .      
## Psaltriparus_minimus             .        .        .        .       .         .      
## Aegithalos_concinnus             .        .        .        .       .         .      
## Macrosphenus_kretschmeri         .        .        .        .       .         .      
## Melocichla_mentalis              .        .        .        .       .         .      
## Achaetops_pycnopygius            .        .        .        .       .         .      
## Sphenoeacus_afer                 .        .        .        .       .         .      
## Sylvietta_rufescens              .        .        .        .       .         .      
## Dulus_dominicus                  .        .        .        .       .         .      
## Phainoptila_melanoxantha         .        .        .        .       .         .      
## Phainopepla_nitens               .        .        .        .       .         .      
## Ptilogonys_cinereus              .        .        .        .       .         .      
## Bombycilla_garrulus              .        .        .        .       .         .      
## Hylocitrea_bonensis              .        .        .        .       .         .      
## Hypocolius_ampelinus             .        .        .        .       .         .      
## Certhia_familiaris               .        .        .        .       .         .      
## Tichodroma_muraria               .        .        .        .       .         .      
## Salpornis_spilonotus             .        .        .        .       .         .      
## Thryomanes_bewickii              .        .        .        .       .         .      
## Henicorhina_leucosticta          .        .        .        .       .         .      
## Thryothorus_atrogularis          .        .        .        .       .         .      
## Ferminia_cerverai                .        .        .        .       .         .      
## Uropsila_leucogastra             .        .        .        .       .         .      
## Cyphorhinus_arada                .        .        .        .       .         .      
## Cinnycerthia_unirufa             .        .        .        .       .         .      
## Thryorchilus_browni              .        .        .        .       .         .      
## Cistothorus_platensis            .        .        .        .       .         .      
## Troglodytes_troglodytes          .        .        .        .       .         .      
## Campylorhynchus_brunneicapillus  .        .        .        .       .         .      
## Microcerculus_philomela          .        .        .        .       .         .      
## Hylorchilus_sumichrasti          .        .        .        .       .         .      
## Catherpes_mexicanus              .        .        .        .       .         .      
## Salpinctes_obsoletus             .        .        .        .       .         .      
## Microbates_cinereiventris        .        .        .        .       .         .      
## Polioptila_dumicola              .        .        .        .       .         .      
## Ramphocaenus_melanurus           .        .        .        .       .         .      
## Sitta_formosa                    .        .        .        .       .         .      
## Rhabdornis_mystacalis            .        .        .        .       .         .      
## Enodes_erythrophris              .        .        .        .       .         .      
## Scissirostrum_dubium             .        .        .        .       .         .      
## Aplonis_grandis                  .        .        .        .       .         .      
## Basilornis_mirandus              .        .        .        .       .         .      
## Sarcops_calvus                   .        .        .        .       .         .      
## Streptocitta_albicollis          .        .        .        .       .         .      
## Mino_dumontii                    .        .        .        .       .         .      
## Ampeliceps_coronatus             .        .        .        .       .         .      
## Gracula_religiosa                .        .        .        .       .         .      
## Lamprotornis_australis           .        .        .        .       .         .      
## Spreo_albicapillus               .        .        .        .       .         .      
## Cosmopsarus_regius               .        .        .        .       .         .      
## Coccycolius_iris                 .        .        .        .       .         .      
## Neocichla_gutturalis             .        .        .        .       .         .      
## Saroglossa_spiloptera            .        .        .        .       .         .      
## Speculipastor_bicolor            .        .        .        .       .         .      
## Grafisia_torquata                .        .        .        .       .         .      
## Cinnyricinclus_femoralis         .        .        .        .       .         .      
## Poeoptera_lugubris               .        .        .        .       .         .      
## Onychognathus_nabouroup          .        .        .        .       .         .      
## Creatophora_cinerea              .        .        .        .       .         .      
## Sturnus_erythropygius            .        .        .        .       .         .      
## Leucopsar_rothschildi            .        .        .        .       .         .      
## Acridotheres_tristis             .        .        .        .       .         .      
## Mimus_parvulus                   .        .        .        .       .         .      
## Oreoscoptes_montanus             .        .        .        .       .         .      
## Toxostoma_crissale               .        .        .        .       .         .      
## Melanotis_caerulescens           .        .        .        .       .         .      
## Melanoptila_glabrirostris        .        .        .        .       .         .      
## Ramphocinclus_brachyurus         .        .        .        .       .         .      
## Cinclocerthia_ruficauda          .        .        .        .       .         .      
## Margarops_fuscus                 .        .        .        .       .         .      
## Dumetella_carolinensis           .        .        .        .       .         .      
## Buphagus_erythrorhynchus         .        .        .        .       .         .      
## Cinclus_pallasii                 .        .        .        .       .         .      
## Psophocichla_litsitsirupa        .        .        .        .       .         .      
## Nesocichla_eremita               .        .        .        .       .         .      
## Turdus_pallidus                  .        .        .        .       .         .      
## Geomalia_heinrichi               .        .        .        .       .         .      
## Grandala_coelicolor              .        .        .        .       .         .      
## Hylocichla_mustelina             .        .        .        .       .         .      
## Catharus_guttatus                .        .        .        .       .         .      
## Cichlopsis_leucogenys            .        .        .        .       .         .      
## Entomodestes_coracinus           .        .        .        .       .         .      
## Zoothera_andromedae              .        .        .        .       .         .      
## Cochoa_purpurea                  .        .        .        .       .         .      
## Chlamydochaera_jefferyi          .        .        .        .       .         .      
## Sialia_mexicana                  .        .        .        .       .         .      
## Myadestes_occidentalis           .        .        .        .       .         .      
## Neocossyphus_poensis             .        .        .        .       .         .      
## Cataponera_turdoides             .        .        .        .       .         .      
## Stizorhina_finschi               .        .        .        .       .         .      
## Alethe_poliophrys                .        .        .        .       .         .      
## Stiphrornis_erythrothorax        .        .        .        .       .         .      
## Cichladusa_arquata               .        .        .        .       .         .      
## Swynnertonia_swynnertoni         .        .        .        .       .         .      
## Cossyphicula_roberti             .        .        .        .       .         .      
## Pogonocichla_stellata            .        .        .        .       .         .      
## Sheppardia_bocagei               .        .        .        .       .         .      
## Cossypha_isabellae               .        .        .        .       .         .      
## Brachypteryx_stellata            .        .        .        .       .         .      
## Erithacus_rubecula               .        .        .        .       .         .      
## Luscinia_svecica                 .        .        .        .       .         .      
## Hodgsonius_phaenicuroides        .        .        .        .       .         .      
## Irania_gutturalis                .        .        .        .       .         .      
## Cinclidium_diana                 .        .        .        .       .         .      
## Enicurus_schistaceus             .        .        .        .       .         .      
## Myophonus_borneensis             .        .        .        .       .         .      
## Ficedula_albicollis              .        .        .        .       .         .      
## Muscicapella_hodgsoni            .        .        .        .       .         .      
## Xenocopsychus_ansorgei           .        .        .        .       .         .      
## Tarsiger_cyanurus                .        .        .        .       .         .      
## Monticola_saxatilis              .        .        .        .       .         .      
## Myrmecocichla_tholloni           .        .        .        .       .         .      
## Oenanthe_bifasciata              .        .        .        .       .         .      
## Cercomela_sinuata                .        .        .        .       .         .      
## Saxicola_leucurus                .        .        .        .       .         .      
## Rhyacornis_fuliginosa            .        .        .        .       .         .      
## Chaimarrornis_leucocephalus      .        .        .        .       .         .      
## Phoenicurus_erythronotus         .        .        .        .       .         .      
## Myiomela_major                   .        .        .        .       .         .      
## Niltava_grandis                  .        .        .        .       .         .      
## Rhinomyias_umbratilis            .        .        .        .       .         .      
## Eumyias_thalassinus              .        .        .        .       .         .      
## Dioptrornis_chocolatinus         .        .        .        .       .         .      
## Cyanoptila_cyanomelana           .        .        .        .       .         .      
## Erythropygia_quadrivirgata       .        .        .        .       .         .      
## Cercotrichas_podobe              .        .        .        .       .         .      
## Copsychus_albospecularis         .        .        .        .       .         .      
## Pinarornis_plumosus              .        .        .        .       .         .      
## Saxicoloides_fulicatus           .        .        .        .       .         .      
## Cyornis_tickelliae               .        .        .        .       .         .      
## Humblotia_flavirostris           .        .        .        .       .         .      
## Trichixos_pyrropygus             .        .        .        .       .         .      
## Muscicapa_striata                .        .        .        .       .         .      
## Bradornis_pallidus               .        .        .        .       .         .      
## Namibornis_herero                .        .        .        .       .         .      
## Fraseria_ocreata                 .        .        .        .       .         .      
## Myioparus_griseigularis          .        .        .        .       .         .      
## Empidornis_semipartitus          .        .        .        .       .         .      
## Sigelus_silens                   .        .        .        .       .         .      
## Melaenornis_edolioides           .        .        .        .       .         .      
## Regulus_regulus                  .        .        .        .       .         .      
## Anthreptes_longuemarei           .        .        .        .       .         .      
## Nectarinia_johannae              .        .        .        .       .         .      
## Aethopyga_mystacalis             .        .        .        .       .         .      
## Hypogramma_hypogrammicum         .        .        .        .       .         .      
## Arachnothera_robusta             .        .        .        .       .         .      
## Dicaeum_pygmaeum                 .        .        .        .       .         .      
## Prionochilus_olivaceus           .        .        .        .       .         .      
## Chloropsis_cyanopogon            .        .        .        .       .         .      
## Irena_puella                     .        .        .        .       .         .      
## Amblyospiza_albifrons            .        .        .        .       .         .      
## Malimbus_coronatus               .        .        .        .       .         .      
## Ploceus_insignis                 .        .        .        .       .         .      
## Quelea_erythrops                 .        .        .        .       .         .      
## Foudia_madagascariensis          .        .        .        .       .         .      
## Euplectes_afer                   .        .        .        .       .         .      
## Bubalornis_albirostris           .        .        .        .       .         .      
## Plocepasser_mahali               .        .        .        .       .         .      
## Histurgops_ruficaudus            .        .        .        .       .         .      
## Pseudonigrita_cabanisi           .        .        .        .       .         .      
## Philetairus_socius               .        .        .        .       .         .      
## Dinemellia_dinemelli             .        .        .        .       .         .      
## Brachycope_anomala               .        .        .        .       .         .      
## Anaplectes_rubriceps             .        .        .        .       .         .      
## Sporopipes_frontalis             .        .        .        .       .         .      
## Ortygospiza_gabonensis           .        .        .        .       .         .      
## Erythrura_gouldiae               .        .        .        .       .         .      
## Stagonopleura_bella              .        .        .        .       .         .      
## Taeniopygia_guttata              .        .        .        .       .         .      
## Poephila_personata               .        .        .        .       .         .      
## Neochmia_temporalis              .        .        .        .       .         .      
## Emblema_pictum                   .        .        .        .       .         .      
## Oreostruthus_fuliginosus         .        .        .        .       .         .      
## Lonchura_pallida                 .        .        .        .       .         .      
## Padda_oryzivora                  .        .        .        .       .         .      
## Heteromunia_pectoralis           .        .        .        .       .         .      
## Pytilia_melba                    .        .        .        .       .         .      
## Euschistospiza_dybowskii         .        .        .        .       .         .      
## Hypargos_niveoguttatus           .        .        .        .       .         .      
## Amadina_fasciata                 .        .        .        .       .         .      
## Lagonosticta_senegala            .        .        .        .       .         .      
## Clytospiza_monteiri              .        .        .        .       .         .      
## Uraeginthus_bengalus             .        .        .        .       .         .      
## Pyrenestes_sanguineus            .        .        .        .       .         .      
## Spermophaga_poliogenys           .        .        .        .       .         .      
## Nesocharis_shelleyi              .        .        .        .       .         .      
## Estrilda_quartinia               .        .        .        .       .         .      
## Mandingoa_nitidula               .        .        .        .       .         .      
## Cryptospiza_shelleyi             .        .        .        .       .         .      
## Nigrita_bicolor                  .        .        .        .       .         .      
## Parmoptila_woodhousei            .        .        .        .       .         .      
## Amandava_amandava                .        .        .        .       .         .      
## Anomalospiza_imberbis            .        .        .        .       .         .      
## Vidua_chalybeata                 .        .        .        .       .         .      
## Prunella_himalayana              .        .        .        .       .         .      
## Peucedramus_taeniatus            .        .        .        .       .         .      
## Passer_domesticus                .        .        .        .       .         .      
## Montifringilla_nivalis           .        .        .        .       .         .      
## Petronia_petronia                .        .        .        .       .         .      
## Euphonia_gouldi                  .        .        .        .       .         .      
## Eophona_personata                .        .        .        .       .         .      
## Mycerobas_melanozanthos          .        .        .        .       .         .      
## Coccothraustes_vespertinus       .        .        .        .       .         .      
## Eremopsaltria_mongolicus         .        .        .        .       .         .      
## Bucanetes_githagineus            .        .        .        .       .         .      
## Paroreomyza_maculata             .        .        .        .       .         .      
## Oreomystis_mana                  .        .        .        .       .         .      
## Loxioides_bailleui               .        .        .        .       .         .      
## Telespiza_cantans                .        .        .        .       .         .      
## Pseudonestor_xanthophrys         .        .        .        .       .         .      
## Loxops_caeruleirostris           .        .        .        .       .         .      
## Hemignathus_parvus               .        .        .        .       .         .      
## Vestiaria_coccinea               .        .        .        .       .         .      
## Himatione_sanguinea              .        .        .        .       .         .      
## Palmeria_dolei                   .        .        .        .       .         .      
## Uragus_sibiricus                 .        .        .        .       .         .      
## Neospiza_concolor                .        .        .        .       .         .      
## Haematospiza_sipahi              .        .        .        .       .         .      
## Callacanthis_burtoni             .        .        .        .       .         .      
## Psittirostra_psittacea           .        .        .        .       .         .      
## Carpodacus_erythrinus            .        .        .        .       .         .      
## Leucosticte_australis            .        .        .        .       .         .      
## Pyrrhula_murina                  .        .        .        .       .         .      
## Pyrrhoplectes_epauletta          .        .        .        .       .         .      
## Pinicola_enucleator              .        .        .        .       .         .      
## Loxia_pytyopsittacus             .        .        .        .       .         .      
## Serinus_scotops                  .        .        .        .       .         .      
## Carduelis_psaltria               .        .        .        .       .         .      
## Rhynchostruthus_percivali        .        .        .        .       .         .      
## Linurgus_olivaceus               .        .        .        .       .         .      
## Rhodopechys_sanguineus           .        .        .        .       .         .      
## Fringilla_montifringilla         .        .        .        .       .         .      
## Lophospingus_pusillus            .        .        .        .       .         .      
## Diuca_speculifera                .        .        .        .       .         .      
## Cissopis_leverianus              .        .        .        .       .         .      
## Schistochlamys_ruficapillus      .        .        .        .       .         .      
## Urothraupis_stolzmanni           .        .        .        .       .         .      
## Gubernatrix_cristata             .        .        .        .       .         .      
## Cyanicterus_cyanicterus          .        .        .        .       .         .      
## Neothraupis_fasciata             .        .        .        .       .         .      
## Stephanophorus_diadematus        .        .        .        .       .         .      
## Paroaria_coronata                .        .        .        .       .         .      
## Chlorochrysa_nitidissima         .        .        .        .       .         .      
## Tangara_xanthocephala            .        .        .        .       .         .      
## Coereba_flaveola                 .        .        .        .       .         .      
## Loxigilla_violacea               .        .        .        .       .         .      
## Melopyrrha_nigra                 .        .        .        .       .         .      
## Euneornis_campestris             .        .        .        .       .         .      
## Platyspiza_crassirostris         .        .        .        .       .         .      
## Geospiza_conirostris             .        .        .        .       .         .      
## Camarhynchus_parvulus            .        .        .        .       .         .      
## Pinaroloxias_inornata            .        .        .        .       .         .      
## Certhidea_olivacea               .        .        .        .       .         .      
## Loxipasser_anoxanthus            .        .        .        .       .         .      
## Melanospiza_richardsoni          .        .        .        .       .         .      
## Tiaris_obscurus                  .        .        .        .       .         .      
## Bangsia_arcaei                   .        .        .        .       .         .      
## Pipraeidea_melanonota            .        .        .        .       .         .      
## Iridosornis_analis               .        .        .        .       .         .      
## Calochaetes_coccineus            .        .        .        .       .         .      
## Orthogonys_chloricterus          .        .        .        .       .         .      
## Thraupis_palmarum                .        .        .        .       .         .      
## Compsothraupis_loricata          .        .        .        .       .         .      
## Buthraupis_eximia                .        .        .        .       .         .      
## Chlorornis_riefferii             .        .        .        .       .         .      
## Delothraupis_castaneoventris     .        .        .        .       .         .      
## Dubusia_taeniata                 .        .        .        .       .         .      
## Anisognathus_lacrymosus          .        .        .        .       .         .      
## Parkerthraustes_humeralis        .        .        .        .       .         .      
## Lamprospiza_melanoleuca          .        .        .        .       .         .      
## Rhodinocichla_rosea              .        .        .        .       .         .      
## Chlorophonia_pyrrhophrys         .        .        .        .       .         .      
## Mitrospingus_oleagineus          .        .        .        .       .         .      
## Phaenicophilus_poliocephalus     .        .        .        .       .         .      
## Oreothraupis_arremonops          .        .        .        .       .         .      
## Orchesticus_abeillei             .        .        .        .       .         .      
## Rowettia_goughensis              .        .        .        .       .         .      
## Nesospiza_wilkinsi               .        .        .        .       .         .      
## Calyptophilus_frugivorus         .        .        .        .       .         .      
## Saltatricula_multicolor          .        .        .        .       .         .      
## Saltator_coerulescens            .        .        .        .       .         .      
## Sericossypha_albocristata        .        .        .        .       .         .      
## Nemosia_pileata                  .        .        .        .       .         .      
## Chrysothlypis_salmoni            .        .        .        .       .         .      
## Heterospingus_xanthopygius       .        .        .        .       .         .      
## Hemithraupis_ruficapilla         .        .        .        .       .         .      
## Iridophanes_pulcherrimus         .        .        .        .       .         .      
## Chlorophanes_spiza               .        .        .        .       .         .      
## Creurgops_verticalis             .        .        .        .       .         .      
## Porphyrospiza_caerulescens       .        .        .        .       .         .      
## Embernagra_platensis             .        .        .        .       .         .      
## Emberizoides_herbicola           .        .        .        .       .         .      
## Cnemoscopus_rubrirostris         .        .        .        .       .         .      
## Incaspiza_pulchra                .        .        .        .       .         .      
## Piezorhina_cinerea               .        .        .        .       .         .      
## Poospiza_alticola                .        .        .        .       .         .      
## Donacospiza_albifrons            .        .        .        .       .         .      
## Cypsnagra_hirundinacea           .        .        .        .       .         .      
## Hemispingus_goeringi             .        .        .        .       .         .      
## Pyrrhocoma_ruficeps              .        .        .        .       .         .      
## Thlypopsis_ruficeps              .        .        .        .       .         .      
## Compsospiza_garleppi             .        .        .        .       .         .      
## Cyanerpes_nitidus                .        .        .        .       .         .      
## Dacnis_lineata                   .        .        .        .       .         .      
## Xenospingus_concolor             .        .        .        .       .         .      
## Tersina_viridis                  .        .        .        .       .         .      
## Lanio_fulvus                     .        .        .        .       .         .      
## Rhodospingus_cruentus            .        .        .        .       .         .      
## Tachyphonus_surinamus            .        .        .        .       .         .      
## Coryphaspiza_melanotis           .        .        .        .       .         .      
## Charitospiza_eucosma             .        .        .        .       .         .      
## Eucometis_penicillata            .        .        .        .       .         .      
## Trichothraupis_melanops          .        .        .        .       .         .      
## Coryphospingus_cucullatus        .        .        .        .       .         .      
## Ramphocelus_costaricensis        .        .        .        .       .         .      
## Volatinia_jacarina               .        .        .        .       .         .      
## Conothraupis_speculigera         .        .        .        .       .         .      
## Oryzoborus_nuttingi              .        .        .        .       .         .      
## Sporophila_luctuosa              .        .        .        .       .         .      
## Conirostrum_albifrons            .        .        .        .       .         .      
## Oreomanes_fraseri                .        .        .        .       .         .      
## Diglossa_lafresnayii             .        .        .        .       .         .      
## Catamenia_analis                 .        .        .        .       .         .      
## Acanthidops_bairdii              .        .        .        .       .         .      
## Haplospiza_rustica               .        .        .        .       .         .      
## Idiopsar_brachyurus              .        .        .        .       .         .      
## Xenodacnis_parina                .        .        .        .       .         .      
## Sicalis_citrina                  .        .        .        .       .         .      
## Phrygilus_gayi                   .        .        .        .       .         .      
## Melanodera_xanthogramma          .        .        .        .       .         .      
## Catamblyrhynchus_diadema         .        .        .        .       .         .      
## Habia_cristata                   .        .        .        .       .         .      
## Chlorothraupis_olivacea          .        .        .        .       .         .      
## Piranga_rubra                    .        .        .        .       .         .      
## Cardinalis_sinuatus              .        .        .        .       .         .      
## Caryothraustes_canadensis        .        .        .        .       .         .      
## Periporphyrus_erythromelas       .        .        .        .       .         .      
## Rhodothraupis_celaeno            .        .        .        .       .         .      
## Pheucticus_chrysogaster          .        .        .        .       .         .      
## Passerina_amoena                 .        .        .        .       .         .      
## Amaurospiza_concolor             .        .        .        .       .         .      
## Cyanocompsa_cyanoides            .        .        .        .       .         .      
## Cyanoloxia_glaucocaerulea        .        .        .        .       .         .      
## Spiza_americana                  .        .        .        .       .         .      
## Granatellus_pelzelni             .        .        .        .       .         .      
## Ocyalus_latirostris              .        .        .        .       .         .      
## Clypicterus_oseryi               .        .        .        .       .         .      
## Cacicus_cela                     .        .        .        .       .         .      
## Psarocolius_decumanus            .        .        .        .       .         .      
## Icterus_graceannae               .        .        .        .       .         .      
## Amblycercus_holosericeus         .        .        .        .       .         .      
## Nesopsar_nigerrimus              .        .        .        .       .         .      
## Gnorimopsar_chopi                .        .        .        .       .         .      
## Oreopsar_bolivianus              .        .        .        .       .         .      
## Agelaioides_badius               .        .        .        .       .         .      
## Agelasticus_thilius              .        .        .        .       .         .      
## Chrysomus_icterocephalus         .        .        .        .       .         .      
## Pseudoleistes_guirahuro          .        .        .        .       .         .      
## Xanthopsar_flavus                .        .        .        .       .         .      
## Amblyramphus_holosericeus        .        .        .        .       .         .      
## Curaeus_curaeus                  .        .        .        .       .         .      
## Hypopyrrhus_pyrohypogaster       .        .        .        .       .         .      
## Lampropsar_tanagrinus            .        .        .        .       .         .      
## Gymnomystax_mexicanus            .        .        .        .       .         .      
## Macroagelaius_imthurni           .        .        .        .       .         .      
## Dives_dives                      .        .        .        .       .         .      
## Molothrus_oryzivorus             .        .        .        .       .         .      
## Agelaius_phoeniceus              .        .        .        .       .         .      
## Euphagus_carolinus               .        .        .        .       .         .      
## Quiscalus_quiscula               .        .        .        .       .         .      
## Sturnella_loyca                  .        .        .        .       .         .      
## Dolichonyx_oryzivorus            .        .        .        .       .         .      
## Xanthocephalus_xanthocephalus    .        .        .        .       .         .      
## Zeledonia_coronata               .        .        .        .       .         .      
## Spindalis_zena                   .        .        .        .       .         .      
## Microligea_palustris             .        .        .        .       .         .      
## Xenoligea_montana                .        .        .        .       .         .      
## Seiurus_aurocapilla              .        .        .        .       .         .      
## Parula_americana                 .        .        .        .       .         .      
## Dendroica_petechia               .        .        .        .       .         .      
## Wilsonia_citrina                 .        .        .        .       .         .      
## Catharopeza_bishopi              .        .        .        .       .         .      
## Phaeothlypis_rivularis           .        .        .        .       .         .      
## Basileuterus_flaveolus           .        .        .        .       .         .      
## Ergaticus_ruber                  .        .        .        .       .         .      
## Myioborus_pictus                 .        .        .        .       .         .      
## Euthlypis_lachrymosa             .        .        .        .       .         .      
## Protonotaria_citrea              .        .        .        .       .         .      
## Limnothlypis_swainsonii          .        .        .        .       .         .      
## Leucopeza_semperi                .        .        .        .       .         .      
## Mniotilta_varia                  .        .        .        .       .         .      
## Vermivora_chrysoptera            .        .        .        .       .         .      
## Helmitheros_vermivorum           .        .        .        .       .         .      
## Teretistris_fernandinae          .        .        .        .       .         .      
## Icteria_virens                   .        .        .        .       .         .      
## Miliaria_calandra                .        .        .        .       .         .      
## Emberiza_buchanani               .        .        .        .       .         .      
## Melophus_lathami                 .        .        .        .       .         .      
## Torreornis_inexpectata           .        .        .        .       .         .      
## Latoucheornis_siemsseni          .        .        .        .       .         .      
##                                                                                     
## Nothocercus_bonapartei           .        .        .        .        .       .      
## Tinamus_guttatus                 .        .        .        .        .       .      
## Crypturellus_variegatus          .        .        .        .        .       .      
## Eudromia_elegans                 .        .        .        .        .       .      
## Tinamotis_pentlandii             .        .        .        .        .       .      
## Taoniscus_nanus                  .        .        .        .        .       .      
## Nothura_darwinii                 .        .        .        .        .       .      
## Rhynchotus_maculicollis          .        .        .        .        .       .      
## Nothoprocta_perdicaria           .        .        .        .        .       .      
## Rhea_americana                   .        .        .        .        .       .      
## Apteryx_haastii                  .       39.65826  .        .        .       .      
## Casuarius_casuarius             13.38629  .        .       26.27197  .       .      
## Dromaius_novaehollandiae        13.38629  .       26.27197  .        .       .      
## Struthio_camelus                 .        .        .        .        .       .      
## Chauna_chavaria                  .        .        .        .        .      39.54042
## Anhima_cornuta                   .        .        .        .        .      39.54042
## Anseranas_semipalmata            .        .        .        .        .      39.54042
## Dendrocygna_arborea              .        .        .        .        .      39.54042
## Thalassornis_leuconotus          .        .        .        .        .      39.54042
## Cygnus_melancoryphus             .        .        .        .        .      39.54042
## Anser_fabalis                    .        .        .        .        .      39.54042
## Chen_caerulescens                .        .        .        .        .      39.54042
## Branta_bernicla                  .        .        .        .        .      39.54042
## Coscoroba_coscoroba              .        .        .        .        .      39.54042
## Cereopsis_novaehollandiae        .        .        .        .        .      39.54042
## Malacorhynchus_membranaceus      .        .        .        .        .      39.54042
## Netta_rufina                     .        .        .        .        .      39.54042
## Aythya_ferina                    .        .        .        .        .      39.54042
## Marmaronetta_angustirostris      .        .        .        .        .      39.54042
## Salvadorina_waigiuensis          .        .        .        .        .      39.54042
## Pteronetta_hartlaubii            .        .        .        .        .      39.54042
## Cyanochen_cyanoptera             .        .        .        .        .      39.54042
## Tadorna_ferruginea               .        .        .        .        .      39.54042
## Alopochen_aegyptiaca             .        .        .        .        .      39.54042
## Chloephaga_melanoptera           .        .        .        .        .      39.54042
## Neochen_jubata                   .        .        .        .        .      39.54042
## Cairina_moschata                 .        .        .        .        .      39.54042
## Aix_sponsa                       .        .        .        .        .      39.54042
## Callonetta_leucophrys            .        .        .        .        .      39.54042
## Merganetta_armata                .        .        .        .        .      39.54042
## Melanitta_nigra                  .        .        .        .        .      39.54042
## Mergellus_albellus               .        .        .        .        .      39.54042
## Mergus_serrator                  .        .        .        .        .      39.54042
## Lophodytes_cucullatus            .        .        .        .        .      39.54042
## Bucephala_clangula               .        .        .        .        .      39.54042
## Histrionicus_histrionicus        .        .        .        .        .      39.54042
## Clangula_hyemalis                .        .        .        .        .      39.54042
## Polysticta_stelleri              .        .        .        .        .      39.54042
## Somateria_mollissima             .        .        .        .        .      39.54042
## Chenonetta_jubata                .        .        .        .        .      39.54042
## Hymenolaimus_malacorhynchos      .        .        .        .        .      39.54042
## Sarkidiornis_melanotos           .        .        .        .        .      39.54042
## Anas_platyrhynchos               .        .        .        .        .      39.54042
## Tachyeres_pteneres               .        .        .        .        .      39.54042
## Lophonetta_specularioides        .        .        .        .        .      39.54042
## Speculanas_specularis            .        .        .        .        .      39.54042
## Amazonetta_brasiliensis          .        .        .        .        .      39.54042
## Nettapus_pulchellus              .        .        .        .        .      39.54042
## Biziura_lobata                   .        .        .        .        .      39.54042
## Nomonyx_dominicus                .        .        .        .        .      39.54042
## Oxyura_jamaicensis               .        .        .        .        .      39.54042
## Plectropterus_gambensis          .        .        .        .        .      39.54042
## Heteronetta_atricapilla          .        .        .        .        .      39.54042
## Stictonetta_naevosa              .        .        .        .        .      39.54042
## Aepypodius_arfakianus            .        .        .        .        .      39.54042
## Alectura_lathami                 .        .        .        .        .      39.54042
## Talegalla_cuvieri                .        .        .        .        .      39.54042
## Leipoa_ocellata                  .        .        .        .        .      39.54042
## Eulipoa_wallacei                 .        .        .        .        .      39.54042
## Megapodius_freycinet             .        .        .        .        .      39.54042
## Macrocephalon_maleo              .        .        .        .        .      39.54042
## Mitu_tomentosum                  .        .        .        .        .      39.54042
## Nothocrax_urumutum               .        .        .        .        .      39.54042
## Crax_rubra                       .        .        .        .        .      39.54042
## Ortalis_vetula                   .        .        .        .        .      39.54042
## Oreophasis_derbianus             .        .        .        .        .      39.54042
## Penelopina_nigra                 .        .        .        .        .      39.54042
## Aburria_aburri                   .        .        .        .        .      39.54042
## Pipile_cumanensis                .        .        .        .        .      39.54042
## Penelope_argyrotis               .        .        .        .        .      39.54042
## Chamaepetes_unicolor             .        .        .        .        .      39.54042
## Acryllium_vulturinum             .        .        .        .        .      39.54042
## Guttera_plumifera                .        .        .        .        .      39.54042
## Agelastes_niger                  .        .        .        .        .      39.54042
## Numida_meleagris                 .        .        .        .        .      39.54042
## Dendrortyx_macroura              .        .        .        .        .      39.54042
## Philortyx_fasciatus              .        .        .        .        .      39.54042
## Odontophorus_capueira            .        .        .        .        .      39.54042
## Dactylortyx_thoracicus           .        .        .        .        .      39.54042
## Rhynchortyx_cinctus              .        .        .        .        .      39.54042
## Cyrtonyx_montezumae              .        .        .        .        .      39.54042
## Oreortyx_pictus                  .        .        .        .        .      39.54042
## Colinus_cristatus                .        .        .        .        .      39.54042
## Callipepla_squamata              .        .        .        .        .      39.54042
## Ptilopachus_petrosus             .        .        .        .        .      39.54042
## Arborophila_mandellii            .        .        .        .        .      39.54042
## Caloperdix_oculeus               .        .        .        .        .      39.54042
## Rollulus_rouloul                 .        .        .        .        .      39.54042
## Melanoperdix_niger               .        .        .        .        .      39.54042
## Tetraogallus_caspius             .        .        .        .        .      39.54042
## Perdicula_asiatica               .        .        .        .        .      39.54042
## Ammoperdix_griseogularis         .        .        .        .        .      39.54042
## Alectoris_chukar                 .        .        .        .        .      39.54042
## Francolinus_jacksoni             .        .        .        .        .      39.54042
## Anurophasis_monorthonyx          .        .        .        .        .      39.54042
## Coturnix_coturnix                .        .        .        .        .      39.54042
## Margaroperdix_madagascariensis   .        .        .        .        .      39.54042
## Afropavo_congensis               .        .        .        .        .      39.54042
## Pavo_cristatus                   .        .        .        .        .      39.54042
## Rheinardia_ocellata              .        .        .        .        .      39.54042
## Argusianus_argus                 .        .        .        .        .      39.54042
## Polyplectron_napoleonis          .        .        .        .        .      39.54042
## Galloperdix_spadicea             .        .        .        .        .      39.54042
## Haematortyx_sanguiniceps         .        .        .        .        .      39.54042
## Gallus_gallus                    .        .        .        .        .      39.54042
## Bambusicola_fytchii              .        .        .        .        .      39.54042
## Meleagris_gallopavo              .        .        .        .        .      39.54042
## Bonasa_bonasia                   .        .        .        .        .      39.54042
## Lagopus_lagopus                  .        .        .        .        .      39.54042
## Lerwa_lerwa                      .        .        .        .        .      39.54042
## Dendragapus_obscurus             .        .        .        .        .      39.54042
## Tympanuchus_phasianellus         .        .        .        .        .      39.54042
## Centrocercus_urophasianus        .        .        .        .        .      39.54042
## Tetrao_tetrix                    .        .        .        .        .      39.54042
## Pucrasia_macrolopha              .        .        .        .        .      39.54042
## Rhizothera_longirostris          .        .        .        .        .      39.54042
## Crossoptilon_harmani             .        .        .        .        .      39.54042
## Catreus_wallichi                 .        .        .        .        .      39.54042
## Lophura_leucomelanos             .        .        .        .        .      39.54042
## Chrysolophus_pictus              .        .        .        .        .      39.54042
## Phasianus_colchicus              .        .        .        .        .      39.54042
## Syrmaticus_humiae                .        .        .        .        .      39.54042
## Perdix_perdix                    .        .        .        .        .      39.54042
## Tetraophasis_szechenyii          .        .        .        .        .      39.54042
## Lophophorus_impejanus            .        .        .        .        .      39.54042
## Tragopan_melanocephalus          .        .        .        .        .      39.54042
## Ithaginis_cruentus               .        .        .        .        .      39.54042
## Pterocles_gutturalis             .        .        .        .       29.5828  .      
## Syrrhaptes_tibetanus             .        .        .        .       29.5828  .      
## Leptotila_verreauxi              .        .        .        .       29.5828  .      
## Geotrygon_lawrencii              .        .        .        .       29.5828  .      
## Starnoenas_cyanocephala          .        .        .        .       29.5828  .      
## Zenaida_macroura                 .        .        .        .       29.5828  .      
## Patagioenas_leucocephala         .        .        .        .       29.5828  .      
## Turacoena_manadensis             .        .        .        .       29.5828  .      
## Macropygia_unchall               .        .        .        .       29.5828  .      
## Reinwardtoena_reinwardtsi        .        .        .        .       29.5828  .      
## Streptopelia_semitorquata        .        .        .        .       29.5828  .      
## Stigmatopelia_chinensis          .        .        .        .       29.5828  .      
## Nesoenas_picturata               .        .        .        .       29.5828  .      
## Aplopelia_larvata                .        .        .        .       29.5828  .      
## Columba_bollii                   .        .        .        .       29.5828  .      
## Geopelia_striata                 .        .        .        .       29.5828  .      
## Geophaps_scripta                 .        .        .        .       29.5828  .      
## Phaps_chalcoptera                .        .        .        .       29.5828  .      
## Petrophassa_albipennis           .        .        .        .       29.5828  .      
## Ocyphaps_lophotes                .        .        .        .       29.5828  .      
## Leucosarcia_melanoleuca          .        .        .        .       29.5828  .      
## Henicophaps_albifrons            .        .        .        .       29.5828  .      
## Gallicolumba_erythroptera        .        .        .        .       29.5828  .      
## Treron_calvus                    .        .        .        .       29.5828  .      
## Ptilinopus_magnificus            .        .        .        .       29.5828  .      
## Drepanoptila_holosericea         .        .        .        .       29.5828  .      
## Alectroenas_madagascariensis     .        .        .        .       29.5828  .      
## Lopholaimus_antarcticus          .        .        .        .       29.5828  .      
## Gymnophaps_albertisii            .        .        .        .       29.5828  .      
## Hemiphaga_novaeseelandiae        .        .        .        .       29.5828  .      
## Ducula_aenea                     .        .        .        .       29.5828  .      
## Phapitreron_leucotis             .        .        .        .       29.5828  .      
## Turtur_abyssinicus               .        .        .        .       29.5828  .      
## Oena_capensis                    .        .        .        .       29.5828  .      
## Chalcophaps_indica               .        .        .        .       29.5828  .      
## Didunculus_strigirostris         .        .        .        .       29.5828  .      
## Goura_victoria                   .        .        .        .       29.5828  .      
## Caloenas_nicobarica              .        .        .        .       29.5828  .      
## Otidiphaps_nobilis               .        .        .        .       29.5828  .      
## Trugon_terrestris                .        .        .        .       29.5828  .      
## Uropelia_campestris              .        .        .        .       29.5828  .      
## Columbina_squammata              .        .        .        .       29.5828  .      
## Metriopelia_ceciliae             .        .        .        .       29.5828  .      
## Claravis_pretiosa                .        .        .        .       29.5828  .      
## Pelecanus_crispus                .        .        .        .       29.5828  .      
## Balaeniceps_rex                  .        .        .        .       29.5828  .      
## Scopus_umbretta                  .        .        .        .       29.5828  .      
## Pygoscelis_antarcticus           .        .        .        .       29.5828  .      
## Aptenodytes_forsteri             .        .        .        .       29.5828  .      
## Spheniscus_demersus              .        .        .        .       29.5828  .      
## Eudyptula_minor                  .        .        .        .       29.5828  .      
## Megadyptes_antipodes             .        .        .        .       29.5828  .      
## Eudyptes_robustus                .        .        .        .       29.5828  .      
## Tigrisoma_lineatum               .        .        .        .       29.5828  .      
## Zebrilus_undulatus               .        .        .        .       29.5828  .      
## Botaurus_pinnatus                .        .        .        .       29.5828  .      
## Ixobrychus_cinnamomeus           .        .        .        .       29.5828  .      
## Pilherodius_pileatus             .        .        .        .       29.5828  .      
## Agamia_agami                     .        .        .        .       29.5828  .      
## Nycticorax_nycticorax            .        .        .        .       29.5828  .      
## Ardeola_speciosa                 .        .        .        .       29.5828  .      
## Nyctanassa_violacea              .        .        .        .       29.5828  .      
## Gorsachius_leuconotus            .        .        .        .       29.5828  .      
## Butorides_striata                .        .        .        .       29.5828  .      
## Ardea_sumatrana                  .        .        .        .       29.5828  .      
## Bubulcus_ibis                    .        .        .        .       29.5828  .      
## Mesophoyx_intermedia             .        .        .        .       29.5828  .      
## Casmerodius_albus                .        .        .        .       29.5828  .      
## Egretta_garzetta                 .        .        .        .       29.5828  .      
## Syrigma_sibilatrix               .        .        .        .       29.5828  .      
## Cochlearius_cochlearius          .        .        .        .       29.5828  .      
## Zonerodius_heliosylus            .        .        .        .       29.5828  .      
## Tigriornis_leucolopha            .        .        .        .       29.5828  .      
## Fregata_ariel                    .        .        .        .       29.5828  .      
## Morus_serrator                   .        .        .        .       29.5828  .      
## Papasula_abbotti                 .        .        .        .       29.5828  .      
## Sula_nebouxii                    .        .        .        .       29.5828  .      
## Anhinga_anhinga                  .        .        .        .       29.5828  .      
## Phalacrocorax_carbo              .        .        .        .       29.5828  .      
## Geronticus_calvus                .        .        .        .       29.5828  .      
## Plegadis_falcinellus             .        .        .        .       29.5828  .      
## Nipponia_nippon                  .        .        .        .       29.5828  .      
## Pseudibis_papillosa              .        .        .        .       29.5828  .      
## Bostrychia_hagedash              .        .        .        .       29.5828  .      
## Threskiornis_aethiopicus         .        .        .        .       29.5828  .      
## Lophotibis_cristata              .        .        .        .       29.5828  .      
## Platalea_leucorodia              .        .        .        .       29.5828  .      
## Mesembrinibis_cayennensis        .        .        .        .       29.5828  .      
## Eudocimus_albus                  .        .        .        .       29.5828  .      
## Theristicus_caerulescens         .        .        .        .       29.5828  .      
## Cercibis_oxycerca                .        .        .        .       29.5828  .      
## Phimosus_infuscatus              .        .        .        .       29.5828  .      
## Thaumatibis_gigantea             .        .        .        .       29.5828  .      
## Anastomus_oscitans               .        .        .        .       29.5828  .      
## Mycteria_americana               .        .        .        .       29.5828  .      
## Leptoptilos_javanicus            .        .        .        .       29.5828  .      
## Ciconia_maguari                  .        .        .        .       29.5828  .      
## Ephippiorhynchus_asiaticus       .        .        .        .       29.5828  .      
## Jabiru_mycteria                  .        .        .        .       29.5828  .      
## Gavia_stellata                   .        .        .        .       29.5828  .      
## Oceanites_gracilis               .        .        .        .       29.5828  .      
## Fregetta_grallaria               .        .        .        .       29.5828  .      
## Pelagodroma_marina               .        .        .        .       29.5828  .      
## Garrodia_nereis                  .        .        .        .       29.5828  .      
## Nesofregetta_fuliginosa          .        .        .        .       29.5828  .      
## Phoebetria_palpebrata            .        .        .        .       29.5828  .      
## Diomedea_exulans                 .        .        .        .       29.5828  .      
## Thalassarche_impavida            .        .        .        .       29.5828  .      
## Phoebastria_irrorata             .        .        .        .       29.5828  .      
## Pelecanoides_magellani           .        .        .        .       29.5828  .      
## Lugensa_brevirostris             .        .        .        .       29.5828  .      
## Halobaena_caerulea               .        .        .        .       29.5828  .      
## Pachyptila_belcheri              .        .        .        .       29.5828  .      
## Bulweria_fallax                  .        .        .        .       29.5828  .      
## Calonectris_leucomelas           .        .        .        .       29.5828  .      
## Puffinus_assimilis               .        .        .        .       29.5828  .      
## Pseudobulweria_aterrima          .        .        .        .       29.5828  .      
## Procellaria_cinerea              .        .        .        .       29.5828  .      
## Pterodroma_longirostris          .        .        .        .       29.5828  .      
## Fulmarus_glacialoides            .        .        .        .       29.5828  .      
## Macronectes_giganteus            .        .        .        .       29.5828  .      
## Pagodroma_nivea                  .        .        .        .       29.5828  .      
## Thalassoica_antarctica           .        .        .        .       29.5828  .      
## Daption_capense                  .        .        .        .       29.5828  .      
## Halocyptena_microsoma            .        .        .        .       29.5828  .      
## Hydrobates_pelagicus             .        .        .        .       29.5828  .      
## Oceanodroma_furcata              .        .        .        .       29.5828  .      
## Opisthocomus_hoazin              .        .        .        .       29.5828  .      
## Phaethon_rubricauda              .        .        .        .       29.5828  .      
## Musophaga_rossae                 .        .        .        .       29.5828  .      
## Tauraco_erythrolophus            .        .        .        .       29.5828  .      
## Ruwenzorornis_johnstoni          .        .        .        .       29.5828  .      
## Corythaeola_cristata             .        .        .        .       29.5828  .      
## Corythaixoides_leucogaster       .        .        .        .       29.5828  .      
## Crinifer_piscator                .        .        .        .       29.5828  .      
## Houbaropsis_bengalensis          .        .        .        .       29.5828  .      
## Sypheotides_indicus              .        .        .        .       29.5828  .      
## Eupodotis_savilei                .        .        .        .       29.5828  .      
## Tetrax_tetrax                    .        .        .        .       29.5828  .      
## Chlamydotis_undulata             .        .        .        .       29.5828  .      
## Otis_tarda                       .        .        .        .       29.5828  .      
## Ardeotis_kori                    .        .        .        .       29.5828  .      
## Neotis_denhami                   .        .        .        .       29.5828  .      
## Ibidorhyncha_struthersii         .        .        .        .       29.5828  .      
## Haematopus_longirostris          .        .        .        .       29.5828  .      
## Recurvirostra_avosetta           .        .        .        .       29.5828  .      
## Himantopus_himantopus            .        .        .        .       29.5828  .      
## Cladorhynchus_leucocephalus      .        .        .        .       29.5828  .      
## Pluvialis_squatarola             .        .        .        .       29.5828  .      
## Phegornis_mitchellii             .        .        .        .       29.5828  .      
## Charadrius_vociferus             .        .        .        .       29.5828  .      
## Thinornis_rubricollis            .        .        .        .       29.5828  .      
## Elseyornis_melanops              .        .        .        .       29.5828  .      
## Eudromias_morinellus             .        .        .        .       29.5828  .      
## Vanellus_vanellus                .        .        .        .       29.5828  .      
## Erythrogonys_cinctus             .        .        .        .       29.5828  .      
## Anarhynchus_frontalis            .        .        .        .       29.5828  .      
## Oreopholus_ruficollis            .        .        .        .       29.5828  .      
## Pluvianus_aegyptius              .        .        .        .       29.5828  .      
## Esacus_recurvirostris            .        .        .        .       29.5828  .      
## Burhinus_superciliaris           .        .        .        .       29.5828  .      
## Chionis_albus                    .        .        .        .       29.5828  .      
## Pluvianellus_socialis            .        .        .        .       29.5828  .      
## Thinocorus_rumicivorus           .        .        .        .       29.5828  .      
## Attagis_gayi                     .        .        .        .       29.5828  .      
## Pedionomus_torquatus             .        .        .        .       29.5828  .      
## Rostratula_benghalensis          .        .        .        .       29.5828  .      
## Jacana_spinosa                   .        .        .        .       29.5828  .      
## Hydrophasianus_chirurgus         .        .        .        .       29.5828  .      
## Actophilornis_albinucha          .        .        .        .       29.5828  .      
## Metopidius_indicus               .        .        .        .       29.5828  .      
## Microparra_capensis              .        .        .        .       29.5828  .      
## Irediparra_gallinacea            .        .        .        .       29.5828  .      
## Bartramia_longicauda             .        .        .        .       29.5828  .      
## Numenius_arquata                 .        .        .        .       29.5828  .      
## Lymnocryptes_minimus             .        .        .        .       29.5828  .      
## Limosa_lapponica                 .        .        .        .       29.5828  .      
## Phalaropus_fulicarius            .        .        .        .       29.5828  .      
## Steganopus_tricolor              .        .        .        .       29.5828  .      
## Xenus_cinereus                   .        .        .        .       29.5828  .      
## Prosobonia_cancellata            .        .        .        .       29.5828  .      
## Catoptrophorus_semipalmatus      .        .        .        .       29.5828  .      
## Heteroscelus_brevipes            .        .        .        .       29.5828  .      
## Tringa_ochropus                  .        .        .        .       29.5828  .      
## Actitis_macularius               .        .        .        .       29.5828  .      
## Coenocorypha_pusilla             .        .        .        .       29.5828  .      
## Gallinago_gallinago              .        .        .        .       29.5828  .      
## Scolopax_rusticola               .        .        .        .       29.5828  .      
## Limnodromus_semipalmatus         .        .        .        .       29.5828  .      
## Aphriza_virgata                  .        .        .        .       29.5828  .      
## Calidris_tenuirostris            .        .        .        .       29.5828  .      
## Limicola_falcinellus             .        .        .        .       29.5828  .      
## Philomachus_pugnax               .        .        .        .       29.5828  .      
## Tryngites_subruficollis          .        .        .        .       29.5828  .      
## Eurynorhynchus_pygmeus           .        .        .        .       29.5828  .      
## Arenaria_interpres               .        .        .        .       29.5828  .      
## Turnix_sylvaticus                .        .        .        .       29.5828  .      
## Ortyxelos_meiffrenii             .        .        .        .       29.5828  .      
## Stercorarius_longicaudus         .        .        .        .       29.5828  .      
## Catharacta_lonnbergi             .        .        .        .       29.5828  .      
## Synthliboramphus_antiquus        .        .        .        .       29.5828  .      
## Uria_aalge                       .        .        .        .       29.5828  .      
## Alca_torda                       .        .        .        .       29.5828  .      
## Alle_alle                        .        .        .        .       29.5828  .      
## Brachyramphus_marmoratus         .        .        .        .       29.5828  .      
## Cepphus_grylle                   .        .        .        .       29.5828  .      
## Ptychoramphus_aleuticus          .        .        .        .       29.5828  .      
## Aethia_psittacula                .        .        .        .       29.5828  .      
## Cerorhinca_monocerata            .        .        .        .       29.5828  .      
## Fratercula_corniculata           .        .        .        .       29.5828  .      
## Rynchops_niger                   .        .        .        .       29.5828  .      
## Pagophila_eburnea                .        .        .        .       29.5828  .      
## Xema_sabini                      .        .        .        .       29.5828  .      
## Rissa_tridactyla                 .        .        .        .       29.5828  .      
## Larus_saundersi                  .        .        .        .       29.5828  .      
## Leucophaeus_scoresbii            .        .        .        .       29.5828  .      
## Rhodostethia_rosea               .        .        .        .       29.5828  .      
## Creagrus_furcatus                .        .        .        .       29.5828  .      
## Anous_stolidus                   .        .        .        .       29.5828  .      
## Sterna_nilotica                  .        .        .        .       29.5828  .      
## Chlidonias_hybrida               .        .        .        .       29.5828  .      
## Larosterna_inca                  .        .        .        .       29.5828  .      
## Phaetusa_simplex                 .        .        .        .       29.5828  .      
## Gygis_alba                       .        .        .        .       29.5828  .      
## Procelsterna_cerulea             .        .        .        .       29.5828  .      
## Dromas_ardeola                   .        .        .        .       29.5828  .      
## Rhinoptilus_africanus            .        .        .        .       29.5828  .      
## Cursorius_cursor                 .        .        .        .       29.5828  .      
## Glareola_pratincola              .        .        .        .       29.5828  .      
## Stiltia_isabella                 .        .        .        .       29.5828  .      
## Anurolimnas_castaneiceps         .        .        .        .       29.5828  .      
## Podica_senegalensis              .        .        .        .       29.5828  .      
## Heliopais_personatus             .        .        .        .       29.5828  .      
## Heliornis_fulica                 .        .        .        .       29.5828  .      
## Sarothrura_pulchra               .        .        .        .       29.5828  .      
## Porphyrio_porphyrio              .        .        .        .       29.5828  .      
## Gymnocrex_rosenbergii            .        .        .        .       29.5828  .      
## Laterallus_melanophaius          .        .        .        .       29.5828  .      
## Dryolimnas_cuvieri               .        .        .        .       29.5828  .      
## Gallicrex_cinerea                .        .        .        .       29.5828  .      
## Coturnicops_exquisitus           .        .        .        .       29.5828  .      
## Rallina_fasciata                 .        .        .        .       29.5828  .      
## Pardirallus_maculatus            .        .        .        .       29.5828  .      
## Habroptila_wallacii              .        .        .        .       29.5828  .      
## Aramides_cajanea                 .        .        .        .       29.5828  .      
## Rougetius_rougetii               .        .        .        .       29.5828  .      
## Canirallus_oculeus               .        .        .        .       29.5828  .      
## Megacrex_inepta                  .        .        .        .       29.5828  .      
## Gallirallus_torquatus            .        .        .        .       29.5828  .      
## Crex_crex                        .        .        .        .       29.5828  .      
## Rallus_longirostris              .        .        .        .       29.5828  .      
## Eulabeornis_castaneoventris      .        .        .        .       29.5828  .      
## Neocrex_colombiana               .        .        .        .       29.5828  .      
## Amaurornis_olivacea              .        .        .        .       29.5828  .      
## Himantornis_haematopus           .        .        .        .       29.5828  .      
## Lewinia_pectoralis               .        .        .        .       29.5828  .      
## Micropygia_schomburgkii          .        .        .        .       29.5828  .      
## Gallinula_nesiotis               .        .        .        .       29.5828  .      
## Fulica_armillata                 .        .        .        .       29.5828  .      
## Crecopsis_egregia                .        .        .        .       29.5828  .      
## Aenigmatolimnas_marginalis       .        .        .        .       29.5828  .      
## Porzana_parva                    .        .        .        .       29.5828  .      
## Amaurolimnas_concolor            .        .        .        .       29.5828  .      
## Atlantisia_rogersi               .        .        .        .       29.5828  .      
## Psophia_viridis                  .        .        .        .       29.5828  .      
## Aramus_guarauna                  .        .        .        .       29.5828  .      
## Grus_rubicunda                   .        .        .        .       29.5828  .      
## Balearica_regulorum              .        .        .        .       29.5828  .      
## Monias_benschi                   .        .        .        .       29.5828  .      
## Mesitornis_unicolor              .        .        .        .       29.5828  .      
## Phoenicopterus_ruber             .        .        .        .       29.5828  .      
## Phoenicoparrus_andinus           .        .        .        .       29.5828  .      
## Phoeniconaias_minor              .        .        .        .       29.5828  .      
## Poliocephalus_poliocephalus      .        .        .        .       29.5828  .      
## Podilymbus_podiceps              .        .        .        .       29.5828  .      
## Tachybaptus_ruficollis           .        .        .        .       29.5828  .      
## Aechmophorus_occidentalis        .        .        .        .       29.5828  .      
## Podiceps_cristatus               .        .        .        .       29.5828  .      
## Rollandia_rolland                .        .        .        .       29.5828  .      
## Centropus_milo                   .        .        .        .       29.5828  .      
## Carpococcyx_radiatus             .        .        .        .       29.5828  .      
## Coua_serriana                    .        .        .        .       29.5828  .      
## Phaenicophaeus_cumingi           .        .        .        .       29.5828  .      
## Clamator_jacobinus               .        .        .        .       29.5828  .      
## Coccyzus_merlini                 .        .        .        .       29.5828  .      
## Piaya_cayana                     .        .        .        .       29.5828  .      
## Coccycua_pumila                  .        .        .        .       29.5828  .      
## Ceuthmochares_aereus             .        .        .        .       29.5828  .      
## Pachycoccyx_audeberti            .        .        .        .       29.5828  .      
## Scythrops_novaehollandiae        .        .        .        .       29.5828  .      
## Cuculus_canorus                  .        .        .        .       29.5828  .      
## Caliechthrus_leucolophus         .        .        .        .       29.5828  .      
## Surniculus_lugubris              .        .        .        .       29.5828  .      
## Cercococcyx_mechowi              .        .        .        .       29.5828  .      
## Cacomantis_sonneratii            .        .        .        .       29.5828  .      
## Chrysococcyx_minutillus          .        .        .        .       29.5828  .      
## Rhamphomantis_megarhynchus       .        .        .        .       29.5828  .      
## Microdynamis_parva               .        .        .        .       29.5828  .      
## Eudynamys_scolopaceus            .        .        .        .       29.5828  .      
## Guira_guira                      .        .        .        .       29.5828  .      
## Crotophaga_major                 .        .        .        .       29.5828  .      
## Geococcyx_californianus          .        .        .        .       29.5828  .      
## Neomorphus_geoffroyi             .        .        .        .       29.5828  .      
## Morococcyx_erythropygus          .        .        .        .       29.5828  .      
## Dromococcyx_phasianellus         .        .        .        .       29.5828  .      
## Tapera_naevia                    .        .        .        .       29.5828  .      
## Eurypyga_helias                  .        .        .        .       29.5828  .      
## Rhynochetos_jubatus              .        .        .        .       29.5828  .      
## Chunga_burmeisteri               .        .        .        .       29.5828  .      
## Cariama_cristata                 .        .        .        .       29.5828  .      
## Spiziapteryx_circumcincta        .        .        .        .       29.5828  .      
## Caracara_cheriway                .        .        .        .       29.5828  .      
## Ibycter_americanus               .        .        .        .       29.5828  .      
## Milvago_chimachima               .        .        .        .       29.5828  .      
## Daptrius_ater                    .        .        .        .       29.5828  .      
## Phalcoboenus_carunculatus        .        .        .        .       29.5828  .      
## Falco_cherrug                    .        .        .        .       29.5828  .      
## Polihierax_semitorquatus         .        .        .        .       29.5828  .      
## Microhierax_caerulescens         .        .        .        .       29.5828  .      
## Herpetotheres_cachinnans         .        .        .        .       29.5828  .      
## Micrastur_ruficollis             .        .        .        .       29.5828  .      
## Xenicus_gilviventris             .        .        .        .       29.5828  .      
## Acanthisitta_chloris             .        .        .        .       29.5828  .      
## Sapayoa_aenigma                  .        .        .        .       29.5828  .      
## Neodrepanis_coruscans            .        .        .        .       29.5828  .      
## Philepitta_schlegeli             .        .        .        .       29.5828  .      
## Eurylaimus_steerii               .        .        .        .       29.5828  .      
## Cymbirhynchus_macrorhynchos      .        .        .        .       29.5828  .      
## Serilophus_lunatus               .        .        .        .       29.5828  .      
## Corydon_sumatranus               .        .        .        .       29.5828  .      
## Psarisomus_dalhousiae            .        .        .        .       29.5828  .      
## Pseudocalyptomena_graueri        .        .        .        .       29.5828  .      
## Calyptomena_viridis              .        .        .        .       29.5828  .      
## Smithornis_capensis              .        .        .        .       29.5828  .      
## Pitta_steerii                    .        .        .        .       29.5828  .      
## Terenotriccus_erythrurus         .        .        .        .       29.5828  .      
## Onychorhynchus_coronatus         .        .        .        .       29.5828  .      
## Oxyruncus_cristatus              .        .        .        .       29.5828  .      
## Cnipodectes_subbrunneus          .        .        .        .       29.5828  .      
## Todirostrum_maculatum            .        .        .        .       29.5828  .      
## Poecilotriccus_ruficeps          .        .        .        .       29.5828  .      
## Oncostoma_cinereigulare          .        .        .        .       29.5828  .      
## Lophotriccus_pileatus            .        .        .        .       29.5828  .      
## Hemitriccus_minor                .        .        .        .       29.5828  .      
## Atalotriccus_pilaris             .        .        .        .       29.5828  .      
## Myiornis_auricularis             .        .        .        .       29.5828  .      
## Rhynchocyclus_brevirostris       .        .        .        .       29.5828  .      
## Tolmomyias_sulphurescens         .        .        .        .       29.5828  .      
## Corythopis_torquatus             .        .        .        .       29.5828  .      
## Pseudotriccus_pelzelni           .        .        .        .       29.5828  .      
## Phylloscartes_eximius            .        .        .        .       29.5828  .      
## Leptopogon_amaurocephalus        .        .        .        .       29.5828  .      
## Mionectes_olivaceus              .        .        .        .       29.5828  .      
## Tachuris_rubrigastra             .        .        .        .       29.5828  .      
## Neopipo_cinnamomea               .        .        .        .       29.5828  .      
## Platyrinchus_leucoryphus         .        .        .        .       29.5828  .      
## Culicivora_caudacuta             .        .        .        .       29.5828  .      
## Anairetes_agilis                 .        .        .        .       29.5828  .      
## Pseudocolopteryx_flaviventris    .        .        .        .       29.5828  .      
## Serpophaga_cinerea               .        .        .        .       29.5828  .      
## Polystictus_pectoralis           .        .        .        .       29.5828  .      
## Pseudelaenia_leucospodia         .        .        .        .       29.5828  .      
## Stigmatura_napensis              .        .        .        .       29.5828  .      
## Mecocerculus_leucophrys          .        .        .        .       29.5828  .      
## Phaeomyias_murina                .        .        .        .       29.5828  .      
## Capsiempis_flaveola              .        .        .        .       29.5828  .      
## Suiriri_suiriri                  .        .        .        .       29.5828  .      
## Tyrannulus_elatus                .        .        .        .       29.5828  .      
## Myiopagis_gaimardii              .        .        .        .       29.5828  .      
## Elaenia_martinica                .        .        .        .       29.5828  .      
## Zimmerius_vilissimus             .        .        .        .       29.5828  .      
## Nesotriccus_ridgwayi             .        .        .        .       29.5828  .      
## Ornithion_inerme                 .        .        .        .       29.5828  .      
## Camptostoma_imberbe              .        .        .        .       29.5828  .      
## Phyllomyias_burmeisteri          .        .        .        .       29.5828  .      
## Inezia_inornata                  .        .        .        .       29.5828  .      
## Euscarthmus_meloryphus           .        .        .        .       29.5828  .      
## Muscigralla_brevicauda           .        .        .        .       29.5828  .      
## Conopias_parvus                  .        .        .        .       29.5828  .      
## Colorhamphus_parvirostris        .        .        .        .       29.5828  .      
## Colonia_colonus                  .        .        .        .       29.5828  .      
## Mitrephanes_phaeocercus          .        .        .        .       29.5828  .      
## Empidonax_affinis                .        .        .        .       29.5828  .      
## Contopus_cooperi                 .        .        .        .       29.5828  .      
## Sayornis_phoebe                  .        .        .        .       29.5828  .      
## Lathrotriccus_euleri             .        .        .        .       29.5828  .      
## Ochthornis_littoralis            .        .        .        .       29.5828  .      
## Cnemotriccus_fuscatus            .        .        .        .       29.5828  .      
## Aphanotriccus_capitalis          .        .        .        .       29.5828  .      
## Muscisaxicola_maculirostris      .        .        .        .       29.5828  .      
## Satrapa_icterophrys              .        .        .        .       29.5828  .      
## Muscipipra_vetula                .        .        .        .       29.5828  .      
## Knipolegus_striaticeps           .        .        .        .       29.5828  .      
## Hymenops_perspicillatus          .        .        .        .       29.5828  .      
## Lessonia_oreas                   .        .        .        .       29.5828  .      
## Myiotheretes_striaticollis       .        .        .        .       29.5828  .      
## Agriornis_montanus               .        .        .        .       29.5828  .      
## Neoxolmis_rufiventris            .        .        .        .       29.5828  .      
## Xolmis_pyrope                    .        .        .        .       29.5828  .      
## Cnemarchus_erythropygius         .        .        .        .       29.5828  .      
## Polioxolmis_rufipennis           .        .        .        .       29.5828  .      
## Arundinicola_leucocephala        .        .        .        .       29.5828  .      
## Alectrurus_tricolor              .        .        .        .       29.5828  .      
## Gubernetes_yetapa                .        .        .        .       29.5828  .      
## Pyrocephalus_rubinus             .        .        .        .       29.5828  .      
## Fluvicola_pica                   .        .        .        .       29.5828  .      
## Sublegatus_modestus              .        .        .        .       29.5828  .      
## Tumbezia_salvini                 .        .        .        .       29.5828  .      
## Ochthoeca_frontalis              .        .        .        .       29.5828  .      
## Myiophobus_flavicans             .        .        .        .       29.5828  .      
## Legatus_leucophaius              .        .        .        .       29.5828  .      
## Pitangus_lictor                  .        .        .        .       29.5828  .      
## Machetornis_rixosa               .        .        .        .       29.5828  .      
## Myiozetetes_cayanensis           .        .        .        .       29.5828  .      
## Empidonomus_varius               .        .        .        .       29.5828  .      
## Tyrannus_melancholicus           .        .        .        .       29.5828  .      
## Megarynchus_pitangua             .        .        .        .       29.5828  .      
## Tyrannopsis_sulphurea            .        .        .        .       29.5828  .      
## Myiodynastes_hemichrysus         .        .        .        .       29.5828  .      
## Sirystes_sibilator               .        .        .        .       29.5828  .      
## Myiarchus_semirufus              .        .        .        .       29.5828  .      
## Rhytipterna_simplex              .        .        .        .       29.5828  .      
## Casiornis_rufus                  .        .        .        .       29.5828  .      
## Phelpsia_inornatus               .        .        .        .       29.5828  .      
## Attila_spadiceus                 .        .        .        .       29.5828  .      
## Ramphotrigon_ruficauda           .        .        .        .       29.5828  .      
## Deltarhynchus_flammulatus        .        .        .        .       29.5828  .      
## Pyrrhomyias_cinnamomeus          .        .        .        .       29.5828  .      
## Hirundinea_ferruginea            .        .        .        .       29.5828  .      
## Myiotriccus_ornatus              .        .        .        .       29.5828  .      
## Piprites_pileata                 .        .        .        .       29.5828  .      
## Iodopleura_fusca                 .        .        .        .       29.5828  .      
## Tityra_semifasciata              .        .        .        .       29.5828  .      
## Pachyramphus_viridis             .        .        .        .       29.5828  .      
## Schiffornis_major                .        .        .        .       29.5828  .      
## Laniisoma_elegans                .        .        .        .       29.5828  .      
## Laniocera_rufescens              .        .        .        .       29.5828  .      
## Corapipo_gutturalis              .        .        .        .       29.5828  .      
## Masius_chrysopterus              .        .        .        .       29.5828  .      
## Ilicura_militaris                .        .        .        .       29.5828  .      
## Antilophia_galeata               .        .        .        .       29.5828  .      
## Chiroxiphia_linearis             .        .        .        .       29.5828  .      
## Xenopipo_atronitens              .        .        .        .       29.5828  .      
## Lepidothrix_coronata             .        .        .        .       29.5828  .      
## Machaeropterus_pyrocephalus      .        .        .        .       29.5828  .      
## Pipra_chloromeros                .        .        .        .       29.5828  .      
## Manacus_vitellinus               .        .        .        .       29.5828  .      
## Heterocercus_flavivertex         .        .        .        .       29.5828  .      
## Tyranneutes_stolzmanni           .        .        .        .       29.5828  .      
## Neopelma_chrysocephalum          .        .        .        .       29.5828  .      
## Doliornis_sclateri               .        .        .        .       29.5828  .      
## Ampelion_rubrocristatus          .        .        .        .       29.5828  .      
## Phytotoma_raimondii              .        .        .        .       29.5828  .      
## Carpornis_cucullata              .        .        .        .       29.5828  .      
## Snowornis_subalaris              .        .        .        .       29.5828  .      
## Querula_purpurata                .        .        .        .       29.5828  .      
## Pyroderus_scutatus               .        .        .        .       29.5828  .      
## Cephalopterus_penduliger         .        .        .        .       29.5828  .      
## Perissocephalus_tricolor         .        .        .        .       29.5828  .      
## Haematoderus_militaris           .        .        .        .       29.5828  .      
## Procnias_tricarunculatus         .        .        .        .       29.5828  .      
## Carpodectes_nitidus              .        .        .        .       29.5828  .      
## Xipholena_punicea                .        .        .        .       29.5828  .      
## Gymnoderus_foetidus              .        .        .        .       29.5828  .      
## Porphyrolaema_porphyrolaema      .        .        .        .       29.5828  .      
## Phibalura_flavirostris           .        .        .        .       29.5828  .      
## Lipaugus_fuscocinereus           .        .        .        .       29.5828  .      
## Tijuca_atra                      .        .        .        .       29.5828  .      
## Cotinga_amabilis                 .        .        .        .       29.5828  .      
## Calyptura_cristata               .        .        .        .       29.5828  .      
## Rupicola_rupicola                .        .        .        .       29.5828  .      
## Phoenicircus_nigricollis         .        .        .        .       29.5828  .      
## Ampelioides_tschudii             .        .        .        .       29.5828  .      
## Pipreola_whitelyi                .        .        .        .       29.5828  .      
## Thamnistes_anabatinus            .        .        .        .       29.5828  .      
## Pygiptila_stellaris              .        .        .        .       29.5828  .      
## Myrmornis_torquata               .        .        .        .       29.5828  .      
## Neoctantes_niger                 .        .        .        .       29.5828  .      
## Epinecrophylla_fulviventris      .        .        .        .       29.5828  .      
## Myrmorchilus_strigilatus         .        .        .        .       29.5828  .      
## Microrhopias_quixensis           .        .        .        .       29.5828  .      
## Clytoctantes_alixii              .        .        .        .       29.5828  .      
## Formicivora_grisea               .        .        .        .       29.5828  .      
## Myrmotherula_brachyura           .        .        .        .       29.5828  .      
## Cercomacra_cinerascens           .        .        .        .       29.5828  .      
## Hypocnemis_cantator              .        .        .        .       29.5828  .      
## Drymophila_ferruginea            .        .        .        .       29.5828  .      
## Willisornis_poecilinotus         .        .        .        .       29.5828  .      
## Rhegmatorhina_gymnops            .        .        .        .       29.5828  .      
## Gymnopithys_rufigula             .        .        .        .       29.5828  .      
## Phlegopsis_nigromaculata         .        .        .        .       29.5828  .      
## Phaenostictus_mcleannani         .        .        .        .       29.5828  .      
## Pithys_albifrons                 .        .        .        .       29.5828  .      
## Rhopornis_ardesiacus             .        .        .        .       29.5828  .      
## Myrmoborus_leucophrys            .        .        .        .       29.5828  .      
## Percnostola_rufifrons            .        .        .        .       29.5828  .      
## Pyriglena_atra                   .        .        .        .       29.5828  .      
## Gymnocichla_nudiceps             .        .        .        .       29.5828  .      
## Myrmeciza_ruficauda              .        .        .        .       29.5828  .      
## Hylophylax_naevioides            .        .        .        .       29.5828  .      
## Hypocnemoides_maculicauda        .        .        .        .       29.5828  .      
## Schistocichla_leucostigma        .        .        .        .       29.5828  .      
## Sclateria_naevia                 .        .        .        .       29.5828  .      
## Thamnomanes_saturninus           .        .        .        .       29.5828  .      
## Megastictus_margaritatus         .        .        .        .       29.5828  .      
## Biatas_nigropectus               .        .        .        .       29.5828  .      
## Herpsilochmus_rufimarginatus     .        .        .        .       29.5828  .      
## Dysithamnus_stictothorax         .        .        .        .       29.5828  .      
## Sakesphorus_canadensis           .        .        .        .       29.5828  .      
## Thamnophilus_doliatus            .        .        .        .       29.5828  .      
## Mackenziaena_severa              .        .        .        .       29.5828  .      
## Frederickena_viridis             .        .        .        .       29.5828  .      
## Hypoedaleus_guttatus             .        .        .        .       29.5828  .      
## Batara_cinerea                   .        .        .        .       29.5828  .      
## Taraba_major                     .        .        .        .       29.5828  .      
## Cymbilaimus_lineatus             .        .        .        .       29.5828  .      
## Dichrozona_cincta                .        .        .        .       29.5828  .      
## Terenura_maculata                .        .        .        .       29.5828  .      
## Pittasoma_michleri               .        .        .        .       29.5828  .      
## Conopophaga_melanops             .        .        .        .       29.5828  .      
## Melanopareia_torquata            .        .        .        .       29.5828  .      
## Dendrocincla_tyrannina           .        .        .        .       29.5828  .      
## Deconychura_longicauda           .        .        .        .       29.5828  .      
## Sittasomus_griseicapillus        .        .        .        .       29.5828  .      
## Dendroplex_picus                 .        .        .        .       29.5828  .      
## Xiphorhynchus_obsoletus          .        .        .        .       29.5828  .      
## Drymornis_bridgesii              .        .        .        .       29.5828  .      
## Campylorhamphus_pucherani        .        .        .        .       29.5828  .      
## Lepidocolaptes_souleyetii        .        .        .        .       29.5828  .      
## Hylexetastes_perrotii            .        .        .        .       29.5828  .      
## Xiphocolaptes_promeropirhynchus  .        .        .        .       29.5828  .      
## Dendrocolaptes_picumnus          .        .        .        .       29.5828  .      
## Nasica_longirostris              .        .        .        .       29.5828  .      
## Dendrexetastes_rufigula          .        .        .        .       29.5828  .      
## Glyphorynchus_spirurus           .        .        .        .       29.5828  .      
## Xenops_rutilans                  .        .        .        .       29.5828  .      
## Margarornis_rubiginosus          .        .        .        .       29.5828  .      
## Premnoplex_brunnescens           .        .        .        .       29.5828  .      
## Anabazenops_fuscus               .        .        .        .       29.5828  .      
## Syndactyla_guttulata             .        .        .        .       29.5828  .      
## Anabacerthia_variegaticeps       .        .        .        .       29.5828  .      
## Cichlocolaptes_leucophrus        .        .        .        .       29.5828  .      
## Heliobletus_contaminatus         .        .        .        .       29.5828  .      
## Philydor_ruficaudatum            .        .        .        .       29.5828  .      
## Ancistrops_strigilatus           .        .        .        .       29.5828  .      
## Hylocryptus_rectirostris         .        .        .        .       29.5828  .      
## Automolus_infuscatus             .        .        .        .       29.5828  .      
## Hyloctistes_subulatus            .        .        .        .       29.5828  .      
## Thripadectes_melanorhynchus      .        .        .        .       29.5828  .      
## Berlepschia_rikeri               .        .        .        .       29.5828  .      
## Premnornis_guttuligera           .        .        .        .       29.5828  .      
## Tarphonomus_certhioides          .        .        .        .       29.5828  .      
## Pseudocolaptes_lawrencii         .        .        .        .       29.5828  .      
## Cinclodes_fuscus                 .        .        .        .       29.5828  .      
## Upucerthia_serrana               .        .        .        .       29.5828  .      
## Furnarius_rufus                  .        .        .        .       29.5828  .      
## Phleocryptes_melanops            .        .        .        .       29.5828  .      
## Limnornis_curvirostris           .        .        .        .       29.5828  .      
## Lochmias_nematura                .        .        .        .       29.5828  .      
## Leptasthenura_platensis          .        .        .        .       29.5828  .      
## Sylviorthorhynchus_desmursii     .        .        .        .       29.5828  .      
## Schizoeaca_coryi                 .        .        .        .       29.5828  .      
## Pseudoseisura_cristata           .        .        .        .       29.5828  .      
## Cranioleuca_vulpecula            .        .        .        .       29.5828  .      
## Limnoctites_rectirostris         .        .        .        .       29.5828  .      
## Siptornis_striaticollis          .        .        .        .       29.5828  .      
## Thripophaga_macroura             .        .        .        .       29.5828  .      
## Roraimia_adusta                  .        .        .        .       29.5828  .      
## Metopothrix_aurantiaca           .        .        .        .       29.5828  .      
## Synallaxis_brachyura             .        .        .        .       29.5828  .      
## Asthenes_steinbachi              .        .        .        .       29.5828  .      
## Siptornopsis_hypochondriaca      .        .        .        .       29.5828  .      
## Schoeniophylax_phryganophilus    .        .        .        .       29.5828  .      
## Certhiaxis_cinnamomeus           .        .        .        .       29.5828  .      
## Spartonoica_maluroides           .        .        .        .       29.5828  .      
## Anumbius_annumbi                 .        .        .        .       29.5828  .      
## Coryphistera_alaudina            .        .        .        .       29.5828  .      
## Hellmayrea_gularis               .        .        .        .       29.5828  .      
## Phacellodomus_rufifrons          .        .        .        .       29.5828  .      
## Aphrastura_spinicauda            .        .        .        .       29.5828  .      
## Pygarrhichas_albogularis         .        .        .        .       29.5828  .      
## Ochetorhynchus_andaecola         .        .        .        .       29.5828  .      
## Sclerurus_rufigularis            .        .        .        .       29.5828  .      
## Geositta_tenuirostris            .        .        .        .       29.5828  .      
## Chamaeza_campanisona             .        .        .        .       29.5828  .      
## Formicarius_colma                .        .        .        .       29.5828  .      
## Eugralla_paradoxa                .        .        .        .       29.5828  .      
## Scytalopus_meridanus             .        .        .        .       29.5828  .      
## Myornis_senilis                  .        .        .        .       29.5828  .      
## Eleoscytalopus_indigoticus       .        .        .        .       29.5828  .      
## Merulaxis_ater                   .        .        .        .       29.5828  .      
## Scelorchilus_rubecula            .        .        .        .       29.5828  .      
## Pteroptochos_tarnii              .        .        .        .       29.5828  .      
## Teledromas_fuscus                .        .        .        .       29.5828  .      
## Rhinocrypta_lanceolata           .        .        .        .       29.5828  .      
## Acropternis_orthonyx             .        .        .        .       29.5828  .      
## Psilorhamphus_guttatus           .        .        .        .       29.5828  .      
## Liosceles_thoracicus             .        .        .        .       29.5828  .      
## Grallaria_ruficapilla            .        .        .        .       29.5828  .      
## Myrmothera_campanisona           .        .        .        .       29.5828  .      
## Hylopezus_perspicillatus         .        .        .        .       29.5828  .      
## Grallaricula_flavirostris        .        .        .        .       29.5828  .      
## Menura_novaehollandiae           .        .        .        .       29.5828  .      
## Atrichornis_rufescens            .        .        .        .       29.5828  .      
## Scenopoeetes_dentirostris        .        .        .        .       29.5828  .      
## Prionodura_newtoniana            .        .        .        .       29.5828  .      
## Archboldia_papuensis             .        .        .        .       29.5828  .      
## Amblyornis_macgregoriae          .        .        .        .       29.5828  .      
## Ailuroedus_crassirostris         .        .        .        .       29.5828  .      
## Sericulus_chrysocephalus         .        .        .        .       29.5828  .      
## Chlamydera_cerviniventris        .        .        .        .       29.5828  .      
## Ptilonorhynchus_violaceus        .        .        .        .       29.5828  .      
## Cormobates_leucophaea            .        .        .        .       29.5828  .      
## Climacteris_affinis              .        .        .        .       29.5828  .      
## Amytornis_barbatus               .        .        .        .       29.5828  .      
## Stipiturus_malachurus            .        .        .        .       29.5828  .      
## Sipodotus_wallacii               .        .        .        .       29.5828  .      
## Malurus_cyaneus                  .        .        .        .       29.5828  .      
## Dasyornis_longirostris           .        .        .        .       29.5828  .      
## Melitograis_gilolensis           .        .        .        .       29.5828  .      
## Glycichaera_fallax               .        .        .        .       29.5828  .      
## Ptiloprora_guisei                .        .        .        .       29.5828  .      
## Anthornis_melanura               .        .        .        .       29.5828  .      
## Apalopteron_familiare            .        .        .        .       29.5828  .      
## Lichenostomus_subfrenatus        .        .        .        .       29.5828  .      
## Acanthorhynchus_superciliosus    .        .        .        .       29.5828  .      
## Certhionyx_variegatus            .        .        .        .       29.5828  .      
## Prosthemadera_novaeseelandiae    .        .        .        .       29.5828  .      
## Pycnopygius_ixoides              .        .        .        .       29.5828  .      
## Xanthomyza_phrygia               .        .        .        .       29.5828  .      
## Anthochaera_chrysoptera          .        .        .        .       29.5828  .      
## Acanthagenys_rufogularis         .        .        .        .       29.5828  .      
## Stresemannia_bougainvillei       .        .        .        .       29.5828  .      
## Manorina_melanocephala           .        .        .        .       29.5828  .      
## Melidectes_torquatus             .        .        .        .       29.5828  .      
## Guadalcanaria_inexpectata        .        .        .        .       29.5828  .      
## Timeliopsis_fulvigula            .        .        .        .       29.5828  .      
## Melilestes_megarhynchus          .        .        .        .       29.5828  .      
## Melipotes_gymnops                .        .        .        .       29.5828  .      
## Macgregoria_pulchra              .        .        .        .       29.5828  .      
## Ashbyia_lovensis                 .        .        .        .       29.5828  .      
## Epthianura_tricolor              .        .        .        .       29.5828  .      
## Conopophila_albogularis          .        .        .        .       29.5828  .      
## Ramsayornis_modestus             .        .        .        .       29.5828  .      
## Myzomela_eichhorni               .        .        .        .       29.5828  .      
## Gymnomyza_aubryana               .        .        .        .       29.5828  .      
## Foulehaio_carunculatus           .        .        .        .       29.5828  .      
## Entomyzon_cyanotis               .        .        .        .       29.5828  .      
## Melithreptus_lunatus             .        .        .        .       29.5828  .      
## Myza_sarasinorum                 .        .        .        .       29.5828  .      
## Phylidonyris_pyrrhopterus        .        .        .        .       29.5828  .      
## Trichodere_cockerelli            .        .        .        .       29.5828  .      
## Lichmera_flavicans               .        .        .        .       29.5828  .      
## Grantiella_picta                 .        .        .        .       29.5828  .      
## Plectorhyncha_lanceolata         .        .        .        .       29.5828  .      
## Xanthotis_provocator             .        .        .        .       29.5828  .      
## Philemon_novaeguineae            .        .        .        .       29.5828  .      
## Pardalotus_quadragintus          .        .        .        .       29.5828  .      
## Aphelocephala_leucopsis          .        .        .        .       29.5828  .      
## Acanthornis_magna                .        .        .        .       29.5828  .      
## Acanthiza_murina                 .        .        .        .       29.5828  .      
## Smicrornis_brevirostris          .        .        .        .       29.5828  .      
## Origma_solitaria                 .        .        .        .       29.5828  .      
## Crateroscelis_murina             .        .        .        .       29.5828  .      
## Sericornis_citreogularis         .        .        .        .       29.5828  .      
## Pycnoptilus_floccosus            .        .        .        .       29.5828  .      
## Chthonicola_sagittatus           .        .        .        .       29.5828  .      
## Pyrrholaemus_brunneus            .        .        .        .       29.5828  .      
## Hylacola_pyrrhopygia             .        .        .        .       29.5828  .      
## Calamanthus_fuliginosus          .        .        .        .       29.5828  .      
## Gerygone_cinerea                 .        .        .        .       29.5828  .      
## Oreoscopus_gutturalis            .        .        .        .       29.5828  .      
## Pomatostomus_ruficeps            .        .        .        .       29.5828  .      
## Orthonyx_temminckii              .        .        .        .       29.5828  .      
## Notiomystis_cincta               .        .        .        .       29.5828  .      
## Melanocharis_striativentris      .        .        .        .       29.5828  .      
## Oedistoma_pygmaeum               .        .        .        .       29.5828  .      
## Toxorhamphus_novaeguineae        .        .        .        .       29.5828  .      
## Loboparadisea_sericea            .        .        .        .       29.5828  .      
## Cnemophilus_macgregorii          .        .        .        .       29.5828  .      
## Callaeas_cinereus                .        .        .        .       29.5828  .      
## Philesturnus_carunculatus        .        .        .        .       29.5828  .      
## Daphoenositta_chrysoptera        .        .        .        .       29.5828  .      
## Oreocharis_arfaki                .        .        .        .       29.5828  .      
## Paramythia_montium               .        .        .        .       29.5828  .      
## Pitohui_dichrous                 .        .        .        .       29.5828  .      
## Sphecotheres_hypoleucus          .        .        .        .       29.5828  .      
## Oriolus_sagittatus               .        .        .        .       29.5828  .      
## Lamprolia_victoriae              .        .        .        .       29.5828  .      
## Rhipidura_teysmanni              .        .        .        .       29.5828  .      
## Struthidea_cinerea               .        .        .        .       29.5828  .      
## Corcorax_melanorhamphos          .        .        .        .       29.5828  .      
## Hypothymis_azurea                .        .        .        .       29.5828  .      
## Terpsiphone_rufiventer           .        .        .        .       29.5828  .      
## Trochocercus_nitens              .        .        .        .       29.5828  .      
## Grallina_cyanoleuca              .        .        .        .       29.5828  .      
## Myiagra_alecto                   .        .        .        .       29.5828  .      
## Monarcha_axillaris               .        .        .        .       29.5828  .      
## Metabolus_rugensis               .        .        .        .       29.5828  .      
## Clytorhynchus_hamlini            .        .        .        .       29.5828  .      
## Mayrornis_lessoni                .        .        .        .       29.5828  .      
## Neolalage_banksiana              .        .        .        .       29.5828  .      
## Pomarea_whitneyi                 .        .        .        .       29.5828  .      
## Chasiempis_sandwichensis         .        .        .        .       29.5828  .      
## Arses_kaupi                      .        .        .        .       29.5828  .      
## Melampitta_lugubris              .        .        .        .       29.5828  .      
## Lycocorax_pyrrhopterus           .        .        .        .       29.5828  .      
## Manucodia_comrii                 .        .        .        .       29.5828  .      
## Parotia_carolae                  .        .        .        .       29.5828  .      
## Pteridophora_alberti             .        .        .        .       29.5828  .      
## Cicinnurus_regius                .        .        .        .       29.5828  .      
## Paradisaea_raggiana              .        .        .        .       29.5828  .      
## Paradigalla_brevicauda           .        .        .        .       29.5828  .      
## Astrapia_splendidissima          .        .        .        .       29.5828  .      
## Epimachus_bruijnii               .        .        .        .       29.5828  .      
## Seleucidis_melanoleucus          .        .        .        .       29.5828  .      
## Semioptera_wallacii              .        .        .        .       29.5828  .      
## Ptiloris_intercedens             .        .        .        .       29.5828  .      
## Lophorina_superba                .        .        .        .       29.5828  .      
## Ifrita_kowaldi                   .        .        .        .       29.5828  .      
## Eurocephalus_anguitimens         .        .        .        .       29.5828  .      
## Lanius_minor                     .        .        .        .       29.5828  .      
## Urolestes_melanoleucus           .        .        .        .       29.5828  .      
## Corvinella_corvina               .        .        .        .       29.5828  .      
## Platylophus_galericulatus        .        .        .        .       29.5828  .      
## Cyanopica_cyanus                 .        .        .        .       29.5828  .      
## Perisoreus_canadensis            .        .        .        .       29.5828  .      
## Ptilostomus_afer                 .        .        .        .       29.5828  .      
## Podoces_hendersoni               .        .        .        .       29.5828  .      
## Pica_hudsonia                    .        .        .        .       29.5828  .      
## Nucifraga_caryocatactes          .        .        .        .       29.5828  .      
## Corvus_corone                    .        .        .        .       29.5828  .      
## Garrulus_lidthi                  .        .        .        .       29.5828  .      
## Zavattariornis_stresemanni       .        .        .        .       29.5828  .      
## Calocitta_colliei                .        .        .        .       29.5828  .      
## Cyanocorax_yncas                 .        .        .        .       29.5828  .      
## Aphelocoma_insularis             .        .        .        .       29.5828  .      
## Gymnorhinus_cyanocephalus        .        .        .        .       29.5828  .      
## Cyanocitta_cristata              .        .        .        .       29.5828  .      
## Cyanolyca_cucullata              .        .        .        .       29.5828  .      
## Urocissa_caerulea                .        .        .        .       29.5828  .      
## Cissa_hypoleuca                  .        .        .        .       29.5828  .      
## Dendrocitta_leucogastra          .        .        .        .       29.5828  .      
## Platysmurus_leucopterus          .        .        .        .       29.5828  .      
## Temnurus_temnurus                .        .        .        .       29.5828  .      
## Crypsirina_cucullata             .        .        .        .       29.5828  .      
## Pyrrhocorax_pyrrhocorax          .        .        .        .       29.5828  .      
## Dicrurus_caerulescens            .        .        .        .       29.5828  .      
## Vireolanius_leucotis             .        .        .        .       29.5828  .      
## Hylophilus_poicilotis            .        .        .        .       29.5828  .      
## Vireo_brevipennis                .        .        .        .       29.5828  .      
## Erpornis_zantholeuca             .        .        .        .       29.5828  .      
## Cyclarhis_gujanensis             .        .        .        .       29.5828  .      
## Pteruthius_rufiventer            .        .        .        .       29.5828  .      
## Pachycephala_albiventris         .        .        .        .       29.5828  .      
## Colluricincla_harmonica          .        .        .        .       29.5828  .      
## Pachycare_flavogriseum           .        .        .        .       29.5828  .      
## Aleadryas_rufinucha              .        .        .        .       29.5828  .      
## Oreoica_gutturalis               .        .        .        .       29.5828  .      
## Rhagologus_leucostigma           .        .        .        .       29.5828  .      
## Machaerirhynchus_nigripectus     .        .        .        .       29.5828  .      
## Artamus_fuscus                   .        .        .        .       29.5828  .      
## Peltops_blainvillii              .        .        .        .       29.5828  .      
## Strepera_graculina               .        .        .        .       29.5828  .      
## Gymnorhina_tibicen               .        .        .        .       29.5828  .      
## Cracticus_mentalis               .        .        .        .       29.5828  .      
## Aegithina_viridissima            .        .        .        .       29.5828  .      
## Malaconotus_alius                .        .        .        .       29.5828  .      
## Tchagra_minutus                  .        .        .        .       29.5828  .      
## Dryoscopus_angolensis            .        .        .        .       29.5828  .      
## Telophorus_zeylonus              .        .        .        .       29.5828  .      
## Rhodophoneus_cruentus            .        .        .        .       29.5828  .      
## Laniarius_poensis                .        .        .        .       29.5828  .      
## Nilaus_afer                      .        .        .        .       29.5828  .      
## Euryceros_prevostii              .        .        .        .       29.5828  .      
## Vanga_curvirostris               .        .        .        .       29.5828  .      
## Xenopirostris_xenopirostris      .        .        .        .       29.5828  .      
## Hypositta_corallirostris         .        .        .        .       29.5828  .      
## Schetba_rufa                     .        .        .        .       29.5828  .      
## Pseudobias_wardi                 .        .        .        .       29.5828  .      
## Oriolia_bernieri                 .        .        .        .       29.5828  .      
## Falculea_palliata                .        .        .        .       29.5828  .      
## Newtonia_brunneicauda            .        .        .        .       29.5828  .      
## Leptopterus_chabert              .        .        .        .       29.5828  .      
## Cyanolanius_madagascarinus       .        .        .        .       29.5828  .      
## Calicalicus_madagascariensis     .        .        .        .       29.5828  .      
## Tylas_eduardi                    .        .        .        .       29.5828  .      
## Artamella_viridis                .        .        .        .       29.5828  .      
## Mystacornis_crossleyi            .        .        .        .       29.5828  .      
## Philentoma_pyrhoptera            .        .        .        .       29.5828  .      
## Megabyas_flammulatus             .        .        .        .       29.5828  .      
## Bias_musicus                     .        .        .        .       29.5828  .      
## Prionops_caniceps                .        .        .        .       29.5828  .      
## Hemipus_picatus                  .        .        .        .       29.5828  .      
## Tephrodornis_pondicerianus       .        .        .        .       29.5828  .      
## Lanioturdus_torquatus            .        .        .        .       29.5828  .      
## Batis_minor                      .        .        .        .       29.5828  .      
## Platysteira_castanea             .        .        .        .       29.5828  .      
## Pityriasis_gymnocephala          .        .        .        .       29.5828  .      
## Lalage_melanoleuca               .        .        .        .       29.5828  .      
## Coracina_typica                  .        .        .        .       29.5828  .      
## Campochaera_sloetii              .        .        .        .       29.5828  .      
## Campephaga_petiti                .        .        .        .       29.5828  .      
## Pericrocotus_flammeus            .        .        .        .       29.5828  .      
## Eulacestoma_nigropectus          .        .        .        .       29.5828  .      
## Falcunculus_frontatus            .        .        .        .       29.5828  .      
## Psophodes_olivaceus              .        .        .        .       29.5828  .      
## Cinclosoma_castaneothorax        .        .        .        .       29.5828  .      
## Ptilorrhoa_leucosticta           .        .        .        .       29.5828  .      
## Mohoua_ochrocephala              .        .        .        .       29.5828  .      
## Chaetops_aurantius               .        .        .        .       29.5828  .      
## Eupetes_macrocerus               .        .        .        .       29.5828  .      
## Picathartes_oreas                .        .        .        .       29.5828  .      
## Microeca_fascinans               .        .        .        .       29.5828  .      
## Monachella_muelleriana           .        .        .        .       29.5828  .      
## Drymodes_superciliaris           .        .        .        .       29.5828  .      
## Peneothello_sigillatus           .        .        .        .       29.5828  .      
## Melanodryas_cucullata            .        .        .        .       29.5828  .      
## Tregellasia_capito               .        .        .        .       29.5828  .      
## Eopsaltria_griseogularis         .        .        .        .       29.5828  .      
## Heteromyias_albispecularis       .        .        .        .       29.5828  .      
## Poecilodryas_hypoleuca           .        .        .        .       29.5828  .      
## Pachycephalopsis_poliosoma       .        .        .        .       29.5828  .      
## Petroica_multicolor              .        .        .        .       29.5828  .      
## Amalocichla_incerta              .        .        .        .       29.5828  .      
## Auriparus_flaviceps              .        .        .        .       29.5828  .      
## Remiz_pendulinus                 .        .        .        .       29.5828  .      
## Anthoscopus_punctifrons          .        .        .        .       29.5828  .      
## Sylviparus_modestus              .        .        .        .       29.5828  .      
## Pseudopodoces_humilis            .        .        .        .       29.5828  .      
## Parus_major                      .        .        .        .       29.5828  .      
## Baeolophus_bicolor               .        .        .        .       29.5828  .      
## Melanochlora_sultanea            .        .        .        .       29.5828  .      
## Cephalopyrus_flammiceps          .        .        .        .       29.5828  .      
## Elminia_longicauda               .        .        .        .       29.5828  .      
## Culicicapa_ceylonensis           .        .        .        .       29.5828  .      
## Stenostira_scita                 .        .        .        .       29.5828  .      
## Chelidorhynx_hypoxantha          .        .        .        .       29.5828  .      
## Nicator_chloris                  .        .        .        .       29.5828  .      
## Panurus_biarmicus                .        .        .        .       29.5828  .      
## Pinarocorys_erythropygia         .        .        .        .       29.5828  .      
## Alaemon_alaudipes                .        .        .        .       29.5828  .      
## Heteromirafra_ruddi              .        .        .        .       29.5828  .      
## Chersomanes_albofasciata         .        .        .        .       29.5828  .      
## Eremopterix_nigriceps            .        .        .        .       29.5828  .      
## Certhilauda_curvirostris         .        .        .        .       29.5828  .      
## Ammomanes_grayi                  .        .        .        .       29.5828  .      
## Chersophilus_duponti             .        .        .        .       29.5828  .      
## Rhamphocoris_clotbey             .        .        .        .       29.5828  .      
## Eremophila_bilopha               .        .        .        .       29.5828  .      
## Calandrella_cinerea              .        .        .        .       29.5828  .      
## Melanocorypha_calandra           .        .        .        .       29.5828  .      
## Eremalauda_starki                .        .        .        .       29.5828  .      
## Spizocorys_conirostris           .        .        .        .       29.5828  .      
## Lullula_arborea                  .        .        .        .       29.5828  .      
## Galerida_magnirostris            .        .        .        .       29.5828  .      
## Alauda_arvensis                  .        .        .        .       29.5828  .      
## Mirafra_passerina                .        .        .        .       29.5828  .      
## Pseudalaemon_fremantlii          .        .        .        .       29.5828  .      
## Hyliota_australis                .        .        .        .       29.5828  .      
## Amaurocichla_bocagei             .        .        .        .       29.5828  .      
## Megalurulus_mariei               .        .        .        .       29.5828  .      
## Scotocerca_inquieta              .        .        .        .       29.5828  .      
## Nesillas_lantzii                 .        .        .        .       29.5828  .      
## Hippolais_olivetorum             .        .        .        .       29.5828  .      
## Acrocephalus_concinens           .        .        .        .       29.5828  .      
## Chloropeta_natalensis            .        .        .        .       29.5828  .      
## Locustella_luscinioides          .        .        .        .       29.5828  .      
## Bradypterus_thoracicus           .        .        .        .       29.5828  .      
## Schoenicola_brevirostris         .        .        .        .       29.5828  .      
## Dromaeocercus_brunneus           .        .        .        .       29.5828  .      
## Megalurus_gramineus              .        .        .        .       29.5828  .      
## Eremiornis_carteri               .        .        .        .       29.5828  .      
## Chaetornis_striata               .        .        .        .       29.5828  .      
## Cincloramphus_cruralis           .        .        .        .       29.5828  .      
## Randia_pseudozosterops           .        .        .        .       29.5828  .      
## Crossleyia_xanthophrys           .        .        .        .       29.5828  .      
## Bowdleria_punctata               .        .        .        .       29.5828  .      
## Thamnornis_chloropetoides        .        .        .        .       29.5828  .      
## Amphilais_seebohmi               .        .        .        .       29.5828  .      
## Oxylabes_madagascariensis        .        .        .        .       29.5828  .      
## Buettikoferella_bivittata        .        .        .        .       29.5828  .      
## Hemitesia_neumanni               .        .        .        .       29.5828  .      
## Neomixis_flavoviridis            .        .        .        .       29.5828  .      
## Donacobius_atricapilla           .        .        .        .       29.5828  .      
## Neolestes_torquatus              .        .        .        .       29.5828  .      
## Pyrrhurus_scandens               .        .        .        .       29.5828  .      
## Phyllastrephus_cabanisi          .        .        .        .       29.5828  .      
## Criniger_barbatus                .        .        .        .       29.5828  .      
## Bleda_notatus                    .        .        .        .       29.5828  .      
## Baeopogon_indicator              .        .        .        .       29.5828  .      
## Chlorocichla_simplex             .        .        .        .       29.5828  .      
## Thescelocichla_leucopleura       .        .        .        .       29.5828  .      
## Ixonotus_guttatus                .        .        .        .       29.5828  .      
## Andropadus_montanus              .        .        .        .       29.5828  .      
## Calyptocichla_serina             .        .        .        .       29.5828  .      
## Tricholestes_criniger            .        .        .        .       29.5828  .      
## Hemixos_flavala                  .        .        .        .       29.5828  .      
## Hypsipetes_mcclellandii          .        .        .        .       29.5828  .      
## Iole_olivacea                    .        .        .        .       29.5828  .      
## Ixos_palawanensis                .        .        .        .       29.5828  .      
## Setornis_criniger                .        .        .        .       29.5828  .      
## Alophoixus_finschii              .        .        .        .       29.5828  .      
## Spizixos_semitorques             .        .        .        .       29.5828  .      
## Pycnonotus_sinensis              .        .        .        .       29.5828  .      
## Bernieria_zosterops              .        .        .        .       29.5828  .      
## Drymocichla_incana               .        .        .        .       29.5828  .      
## Phragmacia_substriata            .        .        .        .       29.5828  .      
## Malcorus_pectoralis              .        .        .        .       29.5828  .      
## Heliolais_erythropterus          .        .        .        .       29.5828  .      
## Graueria_vittata                 .        .        .        .       29.5828  .      
## Incana_incana                    .        .        .        .       29.5828  .      
## Hypergerus_atriceps              .        .        .        .       29.5828  .      
## Eminia_lepida                    .        .        .        .       29.5828  .      
## Euryptila_subcinnamomea          .        .        .        .       29.5828  .      
## Bathmocercus_rufus               .        .        .        .       29.5828  .      
## Cisticola_lateralis              .        .        .        .       29.5828  .      
## Oreolais_pulchra                 .        .        .        .       29.5828  .      
## Artisornis_moreaui               .        .        .        .       29.5828  .      
## Urolais_epichlorus               .        .        .        .       29.5828  .      
## Phyllolais_pulchella             .        .        .        .       29.5828  .      
## Poliolais_lopezi                 .        .        .        .       29.5828  .      
## Prinia_burnesii                  .        .        .        .       29.5828  .      
## Camaroptera_chloronota           .        .        .        .       29.5828  .      
## Spiloptila_clamans               .        .        .        .       29.5828  .      
## Apalis_thoracica                 .        .        .        .       29.5828  .      
## Eremomela_pusilla                .        .        .        .       29.5828  .      
## Pnoepyga_albiventer              .        .        .        .       29.5828  .      
## Kakamega_poliothorax             .        .        .        .       29.5828  .      
## Hypocryptadius_cinnamomeus       .        .        .        .       29.5828  .      
## Turdinus_macrodactylus           .        .        .        .       29.5828  .      
## Graminicola_bengalensis          .        .        .        .       29.5828  .      
## Malacopteron_magnum              .        .        .        .       29.5828  .      
## Gypsophila_crispifrons           .        .        .        .       29.5828  .      
## Robsonius_rabori                 .        .        .        .       29.5828  .      
## Gampsorhynchus_rufulus           .        .        .        .       29.5828  .      
## Napothera_brevicaudata           .        .        .        .       29.5828  .      
## Rimator_pasquieri                .        .        .        .       29.5828  .      
## Jabouilleia_danjoui              .        .        .        .       29.5828  .      
## Malacocincla_abbotti             .        .        .        .       29.5828  .      
## Illadopsis_cleaveri              .        .        .        .       29.5828  .      
## Ptyrticus_turdinus               .        .        .        .       29.5828  .      
## Pellorneum_albiventre            .        .        .        .       29.5828  .      
## Trichastoma_rostratum            .        .        .        .       29.5828  .      
## Kenopia_striata                  .        .        .        .       29.5828  .      
## Kupeornis_gilberti               .        .        .        .       29.5828  .      
## Phyllanthus_atripennis           .        .        .        .       29.5828  .      
## Turdoides_hindei                 .        .        .        .       29.5828  .      
## Babax_waddelli                   .        .        .        .       29.5828  .      
## Garrulax_monileger               .        .        .        .       29.5828  .      
## Cutia_nipalensis                 .        .        .        .       29.5828  .      
## Liocichla_steerii                .        .        .        .       29.5828  .      
## Heterophasia_picaoides           .        .        .        .       29.5828  .      
## Leiothrix_argentauris            .        .        .        .       29.5828  .      
## Strophocincla_cachinnans         .        .        .        .       29.5828  .      
## Minla_cyanouroptera              .        .        .        .       29.5828  .      
## Actinodura_egertoni              .        .        .        .       29.5828  .      
## Spelaeornis_troglodytoides       .        .        .        .       29.5828  .      
## Ptilocichla_leucogrammica        .        .        .        .       29.5828  .      
## Xiphirhynchus_superciliaris      .        .        .        .       29.5828  .      
## Pomatorhinus_montanus            .        .        .        .       29.5828  .      
## Macronous_gularis                .        .        .        .       29.5828  .      
## Timalia_pileata                  .        .        .        .       29.5828  .      
## Dumetia_hyperythra               .        .        .        .       29.5828  .      
## Sphenocichla_humei               .        .        .        .       29.5828  .      
## Stachyris_ambigua                .        .        .        .       29.5828  .      
## Rhopocichla_atriceps             .        .        .        .       29.5828  .      
## Yuhina_castaniceps               .        .        .        .       29.5828  .      
## Crocias_albonotatus              .        .        .        .       29.5828  .      
## Cleptornis_marchei               .        .        .        .       29.5828  .      
## Woodfordia_superciliosa          .        .        .        .       29.5828  .      
## Tephrozosterops_stalkeri         .        .        .        .       29.5828  .      
## Zosterops_erythropleurus         .        .        .        .       29.5828  .      
## Chlorocharis_emiliae             .        .        .        .       29.5828  .      
## Speirops_leucophoeus             .        .        .        .       29.5828  .      
## Megazosterops_palauensis         .        .        .        .       29.5828  .      
## Oculocincta_squamifrons          .        .        .        .       29.5828  .      
## Lophozosterops_dohertyi          .        .        .        .       29.5828  .      
## Heleia_crassirostris             .        .        .        .       29.5828  .      
## Dasycrotapha_speciosa            .        .        .        .       29.5828  .      
## Rukia_ruki                       .        .        .        .       29.5828  .      
## Malia_grata                      .        .        .        .       29.5828  .      
## Myzornis_pyrrhoura               .        .        .        .       29.5828  .      
## Lioptilus_nigricapillus          .        .        .        .       29.5828  .      
## Parophasma_galinieri             .        .        .        .       29.5828  .      
## Paradoxornis_heudei              .        .        .        .       29.5828  .      
## Chamaea_fasciata                 .        .        .        .       29.5828  .      
## Chrysomma_sinense                .        .        .        .       29.5828  .      
## Rhopophilus_pekinensis           .        .        .        .       29.5828  .      
## Alcippe_ruficapilla              .        .        .        .       29.5828  .      
## Conostoma_oemodium               .        .        .        .       29.5828  .      
## Sylvia_atricapilla               .        .        .        .       29.5828  .      
## Horizorhinus_dohrni              .        .        .        .       29.5828  .      
## Pseudoalcippe_abyssinica         .        .        .        .       29.5828  .      
## Tachycineta_bicolor              .        .        .        .       29.5828  .      
## Pygochelidon_cyanoleuca          .        .        .        .       29.5828  .      
## Atticora_melanoleuca             .        .        .        .       29.5828  .      
## Haplochelidon_andecola           .        .        .        .       29.5828  .      
## Notiochelidon_murina             .        .        .        .       29.5828  .      
## Alopochelidon_fucata             .        .        .        .       29.5828  .      
## Neochelidon_tibialis             .        .        .        .       29.5828  .      
## Stelgidopteryx_serripennis       .        .        .        .       29.5828  .      
## Progne_subis                     .        .        .        .       29.5828  .      
## Phedina_borbonica                .        .        .        .       29.5828  .      
## Riparia_cincta                   .        .        .        .       29.5828  .      
## Delichon_urbicum                 .        .        .        .       29.5828  .      
## Hirundo_rupestris                .        .        .        .       29.5828  .      
## Petrochelidon_pyrrhonota         .        .        .        .       29.5828  .      
## Psalidoprocne_nitens             .        .        .        .       29.5828  .      
## Pseudhirundo_griseopyga          .        .        .        .       29.5828  .      
## Cheramoeca_leucosterna           .        .        .        .       29.5828  .      
## Eurochelidon_sirintarae          .        .        .        .       29.5828  .      
## Pseudochelidon_eurystomina       .        .        .        .       29.5828  .      
## Pholidornis_rushiae              .        .        .        .       29.5828  .      
## Hylia_prasina                    .        .        .        .       29.5828  .      
## Erythrocercus_holochlorus        .        .        .        .       29.5828  .      
## Abroscopus_schisticeps           .        .        .        .       29.5828  .      
## Tesia_cyaniventer                .        .        .        .       29.5828  .      
## Urosphena_squameiceps            .        .        .        .       29.5828  .      
## Cettia_diphone                   .        .        .        .       29.5828  .      
## Orthotomus_cuculatus             .        .        .        .       29.5828  .      
## Tickellia_hodgsoni               .        .        .        .       29.5828  .      
## Seicercus_montis                 .        .        .        .       29.5828  .      
## Phylloscopus_canariensis         .        .        .        .       29.5828  .      
## Leptopoecile_sophiae             .        .        .        .       29.5828  .      
## Psaltria_exilis                  .        .        .        .       29.5828  .      
## Psaltriparus_minimus             .        .        .        .       29.5828  .      
## Aegithalos_concinnus             .        .        .        .       29.5828  .      
## Macrosphenus_kretschmeri         .        .        .        .       29.5828  .      
## Melocichla_mentalis              .        .        .        .       29.5828  .      
## Achaetops_pycnopygius            .        .        .        .       29.5828  .      
## Sphenoeacus_afer                 .        .        .        .       29.5828  .      
## Sylvietta_rufescens              .        .        .        .       29.5828  .      
## Dulus_dominicus                  .        .        .        .       29.5828  .      
## Phainoptila_melanoxantha         .        .        .        .       29.5828  .      
## Phainopepla_nitens               .        .        .        .       29.5828  .      
## Ptilogonys_cinereus              .        .        .        .       29.5828  .      
## Bombycilla_garrulus              .        .        .        .       29.5828  .      
## Hylocitrea_bonensis              .        .        .        .       29.5828  .      
## Hypocolius_ampelinus             .        .        .        .       29.5828  .      
## Certhia_familiaris               .        .        .        .       29.5828  .      
## Tichodroma_muraria               .        .        .        .       29.5828  .      
## Salpornis_spilonotus             .        .        .        .       29.5828  .      
## Thryomanes_bewickii              .        .        .        .       29.5828  .      
## Henicorhina_leucosticta          .        .        .        .       29.5828  .      
## Thryothorus_atrogularis          .        .        .        .       29.5828  .      
## Ferminia_cerverai                .        .        .        .       29.5828  .      
## Uropsila_leucogastra             .        .        .        .       29.5828  .      
## Cyphorhinus_arada                .        .        .        .       29.5828  .      
## Cinnycerthia_unirufa             .        .        .        .       29.5828  .      
## Thryorchilus_browni              .        .        .        .       29.5828  .      
## Cistothorus_platensis            .        .        .        .       29.5828  .      
## Troglodytes_troglodytes          .        .        .        .       29.5828  .      
## Campylorhynchus_brunneicapillus  .        .        .        .       29.5828  .      
## Microcerculus_philomela          .        .        .        .       29.5828  .      
## Hylorchilus_sumichrasti          .        .        .        .       29.5828  .      
## Catherpes_mexicanus              .        .        .        .       29.5828  .      
## Salpinctes_obsoletus             .        .        .        .       29.5828  .      
## Microbates_cinereiventris        .        .        .        .       29.5828  .      
## Polioptila_dumicola              .        .        .        .       29.5828  .      
## Ramphocaenus_melanurus           .        .        .        .       29.5828  .      
## Sitta_formosa                    .        .        .        .       29.5828  .      
## Rhabdornis_mystacalis            .        .        .        .       29.5828  .      
## Enodes_erythrophris              .        .        .        .       29.5828  .      
## Scissirostrum_dubium             .        .        .        .       29.5828  .      
## Aplonis_grandis                  .        .        .        .       29.5828  .      
## Basilornis_mirandus              .        .        .        .       29.5828  .      
## Sarcops_calvus                   .        .        .        .       29.5828  .      
## Streptocitta_albicollis          .        .        .        .       29.5828  .      
## Mino_dumontii                    .        .        .        .       29.5828  .      
## Ampeliceps_coronatus             .        .        .        .       29.5828  .      
## Gracula_religiosa                .        .        .        .       29.5828  .      
## Lamprotornis_australis           .        .        .        .       29.5828  .      
## Spreo_albicapillus               .        .        .        .       29.5828  .      
## Cosmopsarus_regius               .        .        .        .       29.5828  .      
## Coccycolius_iris                 .        .        .        .       29.5828  .      
## Neocichla_gutturalis             .        .        .        .       29.5828  .      
## Saroglossa_spiloptera            .        .        .        .       29.5828  .      
## Speculipastor_bicolor            .        .        .        .       29.5828  .      
## Grafisia_torquata                .        .        .        .       29.5828  .      
## Cinnyricinclus_femoralis         .        .        .        .       29.5828  .      
## Poeoptera_lugubris               .        .        .        .       29.5828  .      
## Onychognathus_nabouroup          .        .        .        .       29.5828  .      
## Creatophora_cinerea              .        .        .        .       29.5828  .      
## Sturnus_erythropygius            .        .        .        .       29.5828  .      
## Leucopsar_rothschildi            .        .        .        .       29.5828  .      
## Acridotheres_tristis             .        .        .        .       29.5828  .      
## Mimus_parvulus                   .        .        .        .       29.5828  .      
## Oreoscoptes_montanus             .        .        .        .       29.5828  .      
## Toxostoma_crissale               .        .        .        .       29.5828  .      
## Melanotis_caerulescens           .        .        .        .       29.5828  .      
## Melanoptila_glabrirostris        .        .        .        .       29.5828  .      
## Ramphocinclus_brachyurus         .        .        .        .       29.5828  .      
## Cinclocerthia_ruficauda          .        .        .        .       29.5828  .      
## Margarops_fuscus                 .        .        .        .       29.5828  .      
## Dumetella_carolinensis           .        .        .        .       29.5828  .      
## Buphagus_erythrorhynchus         .        .        .        .       29.5828  .      
## Cinclus_pallasii                 .        .        .        .       29.5828  .      
## Psophocichla_litsitsirupa        .        .        .        .       29.5828  .      
## Nesocichla_eremita               .        .        .        .       29.5828  .      
## Turdus_pallidus                  .        .        .        .       29.5828  .      
## Geomalia_heinrichi               .        .        .        .       29.5828  .      
## Grandala_coelicolor              .        .        .        .       29.5828  .      
## Hylocichla_mustelina             .        .        .        .       29.5828  .      
## Catharus_guttatus                .        .        .        .       29.5828  .      
## Cichlopsis_leucogenys            .        .        .        .       29.5828  .      
## Entomodestes_coracinus           .        .        .        .       29.5828  .      
## Zoothera_andromedae              .        .        .        .       29.5828  .      
## Cochoa_purpurea                  .        .        .        .       29.5828  .      
## Chlamydochaera_jefferyi          .        .        .        .       29.5828  .      
## Sialia_mexicana                  .        .        .        .       29.5828  .      
## Myadestes_occidentalis           .        .        .        .       29.5828  .      
## Neocossyphus_poensis             .        .        .        .       29.5828  .      
## Cataponera_turdoides             .        .        .        .       29.5828  .      
## Stizorhina_finschi               .        .        .        .       29.5828  .      
## Alethe_poliophrys                .        .        .        .       29.5828  .      
## Stiphrornis_erythrothorax        .        .        .        .       29.5828  .      
## Cichladusa_arquata               .        .        .        .       29.5828  .      
## Swynnertonia_swynnertoni         .        .        .        .       29.5828  .      
## Cossyphicula_roberti             .        .        .        .       29.5828  .      
## Pogonocichla_stellata            .        .        .        .       29.5828  .      
## Sheppardia_bocagei               .        .        .        .       29.5828  .      
## Cossypha_isabellae               .        .        .        .       29.5828  .      
## Brachypteryx_stellata            .        .        .        .       29.5828  .      
## Erithacus_rubecula               .        .        .        .       29.5828  .      
## Luscinia_svecica                 .        .        .        .       29.5828  .      
## Hodgsonius_phaenicuroides        .        .        .        .       29.5828  .      
## Irania_gutturalis                .        .        .        .       29.5828  .      
## Cinclidium_diana                 .        .        .        .       29.5828  .      
## Enicurus_schistaceus             .        .        .        .       29.5828  .      
## Myophonus_borneensis             .        .        .        .       29.5828  .      
## Ficedula_albicollis              .        .        .        .       29.5828  .      
## Muscicapella_hodgsoni            .        .        .        .       29.5828  .      
## Xenocopsychus_ansorgei           .        .        .        .       29.5828  .      
## Tarsiger_cyanurus                .        .        .        .       29.5828  .      
## Monticola_saxatilis              .        .        .        .       29.5828  .      
## Myrmecocichla_tholloni           .        .        .        .       29.5828  .      
## Oenanthe_bifasciata              .        .        .        .       29.5828  .      
## Cercomela_sinuata                .        .        .        .       29.5828  .      
## Saxicola_leucurus                .        .        .        .       29.5828  .      
## Rhyacornis_fuliginosa            .        .        .        .       29.5828  .      
## Chaimarrornis_leucocephalus      .        .        .        .       29.5828  .      
## Phoenicurus_erythronotus         .        .        .        .       29.5828  .      
## Myiomela_major                   .        .        .        .       29.5828  .      
## Niltava_grandis                  .        .        .        .       29.5828  .      
## Rhinomyias_umbratilis            .        .        .        .       29.5828  .      
## Eumyias_thalassinus              .        .        .        .       29.5828  .      
## Dioptrornis_chocolatinus         .        .        .        .       29.5828  .      
## Cyanoptila_cyanomelana           .        .        .        .       29.5828  .      
## Erythropygia_quadrivirgata       .        .        .        .       29.5828  .      
## Cercotrichas_podobe              .        .        .        .       29.5828  .      
## Copsychus_albospecularis         .        .        .        .       29.5828  .      
## Pinarornis_plumosus              .        .        .        .       29.5828  .      
## Saxicoloides_fulicatus           .        .        .        .       29.5828  .      
## Cyornis_tickelliae               .        .        .        .       29.5828  .      
## Humblotia_flavirostris           .        .        .        .       29.5828  .      
## Trichixos_pyrropygus             .        .        .        .       29.5828  .      
## Muscicapa_striata                .        .        .        .       29.5828  .      
## Bradornis_pallidus               .        .        .        .       29.5828  .      
## Namibornis_herero                .        .        .        .       29.5828  .      
## Fraseria_ocreata                 .        .        .        .       29.5828  .      
## Myioparus_griseigularis          .        .        .        .       29.5828  .      
## Empidornis_semipartitus          .        .        .        .       29.5828  .      
## Sigelus_silens                   .        .        .        .       29.5828  .      
## Melaenornis_edolioides           .        .        .        .       29.5828  .      
## Regulus_regulus                  .        .        .        .       29.5828  .      
## Anthreptes_longuemarei           .        .        .        .       29.5828  .      
## Nectarinia_johannae              .        .        .        .       29.5828  .      
## Aethopyga_mystacalis             .        .        .        .       29.5828  .      
## Hypogramma_hypogrammicum         .        .        .        .       29.5828  .      
## Arachnothera_robusta             .        .        .        .       29.5828  .      
## Dicaeum_pygmaeum                 .        .        .        .       29.5828  .      
## Prionochilus_olivaceus           .        .        .        .       29.5828  .      
## Chloropsis_cyanopogon            .        .        .        .       29.5828  .      
## Irena_puella                     .        .        .        .       29.5828  .      
## Amblyospiza_albifrons            .        .        .        .       29.5828  .      
## Malimbus_coronatus               .        .        .        .       29.5828  .      
## Ploceus_insignis                 .        .        .        .       29.5828  .      
## Quelea_erythrops                 .        .        .        .       29.5828  .      
## Foudia_madagascariensis          .        .        .        .       29.5828  .      
## Euplectes_afer                   .        .        .        .       29.5828  .      
## Bubalornis_albirostris           .        .        .        .       29.5828  .      
## Plocepasser_mahali               .        .        .        .       29.5828  .      
## Histurgops_ruficaudus            .        .        .        .       29.5828  .      
## Pseudonigrita_cabanisi           .        .        .        .       29.5828  .      
## Philetairus_socius               .        .        .        .       29.5828  .      
## Dinemellia_dinemelli             .        .        .        .       29.5828  .      
## Brachycope_anomala               .        .        .        .       29.5828  .      
## Anaplectes_rubriceps             .        .        .        .       29.5828  .      
## Sporopipes_frontalis             .        .        .        .       29.5828  .      
## Ortygospiza_gabonensis           .        .        .        .       29.5828  .      
## Erythrura_gouldiae               .        .        .        .       29.5828  .      
## Stagonopleura_bella              .        .        .        .       29.5828  .      
## Taeniopygia_guttata              .        .        .        .       29.5828  .      
## Poephila_personata               .        .        .        .       29.5828  .      
## Neochmia_temporalis              .        .        .        .       29.5828  .      
## Emblema_pictum                   .        .        .        .       29.5828  .      
## Oreostruthus_fuliginosus         .        .        .        .       29.5828  .      
## Lonchura_pallida                 .        .        .        .       29.5828  .      
## Padda_oryzivora                  .        .        .        .       29.5828  .      
## Heteromunia_pectoralis           .        .        .        .       29.5828  .      
## Pytilia_melba                    .        .        .        .       29.5828  .      
## Euschistospiza_dybowskii         .        .        .        .       29.5828  .      
## Hypargos_niveoguttatus           .        .        .        .       29.5828  .      
## Amadina_fasciata                 .        .        .        .       29.5828  .      
## Lagonosticta_senegala            .        .        .        .       29.5828  .      
## Clytospiza_monteiri              .        .        .        .       29.5828  .      
## Uraeginthus_bengalus             .        .        .        .       29.5828  .      
## Pyrenestes_sanguineus            .        .        .        .       29.5828  .      
## Spermophaga_poliogenys           .        .        .        .       29.5828  .      
## Nesocharis_shelleyi              .        .        .        .       29.5828  .      
## Estrilda_quartinia               .        .        .        .       29.5828  .      
## Mandingoa_nitidula               .        .        .        .       29.5828  .      
## Cryptospiza_shelleyi             .        .        .        .       29.5828  .      
## Nigrita_bicolor                  .        .        .        .       29.5828  .      
## Parmoptila_woodhousei            .        .        .        .       29.5828  .      
## Amandava_amandava                .        .        .        .       29.5828  .      
## Anomalospiza_imberbis            .        .        .        .       29.5828  .      
## Vidua_chalybeata                 .        .        .        .       29.5828  .      
## Prunella_himalayana              .        .        .        .       29.5828  .      
## Peucedramus_taeniatus            .        .        .        .       29.5828  .      
## Passer_domesticus                .        .        .        .       29.5828  .      
## Montifringilla_nivalis           .        .        .        .       29.5828  .      
## Petronia_petronia                .        .        .        .       29.5828  .      
## Euphonia_gouldi                  .        .        .        .       29.5828  .      
## Eophona_personata                .        .        .        .       29.5828  .      
## Mycerobas_melanozanthos          .        .        .        .       29.5828  .      
## Coccothraustes_vespertinus       .        .        .        .       29.5828  .      
## Eremopsaltria_mongolicus         .        .        .        .       29.5828  .      
## Bucanetes_githagineus            .        .        .        .       29.5828  .      
## Paroreomyza_maculata             .        .        .        .       29.5828  .      
## Oreomystis_mana                  .        .        .        .       29.5828  .      
## Loxioides_bailleui               .        .        .        .       29.5828  .      
## Telespiza_cantans                .        .        .        .       29.5828  .      
## Pseudonestor_xanthophrys         .        .        .        .       29.5828  .      
## Loxops_caeruleirostris           .        .        .        .       29.5828  .      
## Hemignathus_parvus               .        .        .        .       29.5828  .      
## Vestiaria_coccinea               .        .        .        .       29.5828  .      
## Himatione_sanguinea              .        .        .        .       29.5828  .      
## Palmeria_dolei                   .        .        .        .       29.5828  .      
## Uragus_sibiricus                 .        .        .        .       29.5828  .      
## Neospiza_concolor                .        .        .        .       29.5828  .      
## Haematospiza_sipahi              .        .        .        .       29.5828  .      
## Callacanthis_burtoni             .        .        .        .       29.5828  .      
## Psittirostra_psittacea           .        .        .        .       29.5828  .      
## Carpodacus_erythrinus            .        .        .        .       29.5828  .      
## Leucosticte_australis            .        .        .        .       29.5828  .      
## Pyrrhula_murina                  .        .        .        .       29.5828  .      
## Pyrrhoplectes_epauletta          .        .        .        .       29.5828  .      
## Pinicola_enucleator              .        .        .        .       29.5828  .      
## Loxia_pytyopsittacus             .        .        .        .       29.5828  .      
## Serinus_scotops                  .        .        .        .       29.5828  .      
## Carduelis_psaltria               .        .        .        .       29.5828  .      
## Rhynchostruthus_percivali        .        .        .        .       29.5828  .      
## Linurgus_olivaceus               .        .        .        .       29.5828  .      
## Rhodopechys_sanguineus           .        .        .        .       29.5828  .      
## Fringilla_montifringilla         .        .        .        .       29.5828  .      
## Lophospingus_pusillus            .        .        .        .       29.5828  .      
## Diuca_speculifera                .        .        .        .       29.5828  .      
## Cissopis_leverianus              .        .        .        .       29.5828  .      
## Schistochlamys_ruficapillus      .        .        .        .       29.5828  .      
## Urothraupis_stolzmanni           .        .        .        .       29.5828  .      
## Gubernatrix_cristata             .        .        .        .       29.5828  .      
## Cyanicterus_cyanicterus          .        .        .        .       29.5828  .      
## Neothraupis_fasciata             .        .        .        .       29.5828  .      
## Stephanophorus_diadematus        .        .        .        .       29.5828  .      
## Paroaria_coronata                .        .        .        .       29.5828  .      
## Chlorochrysa_nitidissima         .        .        .        .       29.5828  .      
## Tangara_xanthocephala            .        .        .        .       29.5828  .      
## Coereba_flaveola                 .        .        .        .       29.5828  .      
## Loxigilla_violacea               .        .        .        .       29.5828  .      
## Melopyrrha_nigra                 .        .        .        .       29.5828  .      
## Euneornis_campestris             .        .        .        .       29.5828  .      
## Platyspiza_crassirostris         .        .        .        .       29.5828  .      
## Geospiza_conirostris             .        .        .        .       29.5828  .      
## Camarhynchus_parvulus            .        .        .        .       29.5828  .      
## Pinaroloxias_inornata            .        .        .        .       29.5828  .      
## Certhidea_olivacea               .        .        .        .       29.5828  .      
## Loxipasser_anoxanthus            .        .        .        .       29.5828  .      
## Melanospiza_richardsoni          .        .        .        .       29.5828  .      
## Tiaris_obscurus                  .        .        .        .       29.5828  .      
## Bangsia_arcaei                   .        .        .        .       29.5828  .      
## Pipraeidea_melanonota            .        .        .        .       29.5828  .      
## Iridosornis_analis               .        .        .        .       29.5828  .      
## Calochaetes_coccineus            .        .        .        .       29.5828  .      
## Orthogonys_chloricterus          .        .        .        .       29.5828  .      
## Thraupis_palmarum                .        .        .        .       29.5828  .      
## Compsothraupis_loricata          .        .        .        .       29.5828  .      
## Buthraupis_eximia                .        .        .        .       29.5828  .      
## Chlorornis_riefferii             .        .        .        .       29.5828  .      
## Delothraupis_castaneoventris     .        .        .        .       29.5828  .      
## Dubusia_taeniata                 .        .        .        .       29.5828  .      
## Anisognathus_lacrymosus          .        .        .        .       29.5828  .      
## Parkerthraustes_humeralis        .        .        .        .       29.5828  .      
## Lamprospiza_melanoleuca          .        .        .        .       29.5828  .      
## Rhodinocichla_rosea              .        .        .        .       29.5828  .      
## Chlorophonia_pyrrhophrys         .        .        .        .       29.5828  .      
## Mitrospingus_oleagineus          .        .        .        .       29.5828  .      
## Phaenicophilus_poliocephalus     .        .        .        .       29.5828  .      
## Oreothraupis_arremonops          .        .        .        .       29.5828  .      
## Orchesticus_abeillei             .        .        .        .       29.5828  .      
## Rowettia_goughensis              .        .        .        .       29.5828  .      
## Nesospiza_wilkinsi               .        .        .        .       29.5828  .      
## Calyptophilus_frugivorus         .        .        .        .       29.5828  .      
## Saltatricula_multicolor          .        .        .        .       29.5828  .      
## Saltator_coerulescens            .        .        .        .       29.5828  .      
## Sericossypha_albocristata        .        .        .        .       29.5828  .      
## Nemosia_pileata                  .        .        .        .       29.5828  .      
## Chrysothlypis_salmoni            .        .        .        .       29.5828  .      
## Heterospingus_xanthopygius       .        .        .        .       29.5828  .      
## Hemithraupis_ruficapilla         .        .        .        .       29.5828  .      
## Iridophanes_pulcherrimus         .        .        .        .       29.5828  .      
## Chlorophanes_spiza               .        .        .        .       29.5828  .      
## Creurgops_verticalis             .        .        .        .       29.5828  .      
## Porphyrospiza_caerulescens       .        .        .        .       29.5828  .      
## Embernagra_platensis             .        .        .        .       29.5828  .      
## Emberizoides_herbicola           .        .        .        .       29.5828  .      
## Cnemoscopus_rubrirostris         .        .        .        .       29.5828  .      
## Incaspiza_pulchra                .        .        .        .       29.5828  .      
## Piezorhina_cinerea               .        .        .        .       29.5828  .      
## Poospiza_alticola                .        .        .        .       29.5828  .      
## Donacospiza_albifrons            .        .        .        .       29.5828  .      
## Cypsnagra_hirundinacea           .        .        .        .       29.5828  .      
## Hemispingus_goeringi             .        .        .        .       29.5828  .      
## Pyrrhocoma_ruficeps              .        .        .        .       29.5828  .      
## Thlypopsis_ruficeps              .        .        .        .       29.5828  .      
## Compsospiza_garleppi             .        .        .        .       29.5828  .      
## Cyanerpes_nitidus                .        .        .        .       29.5828  .      
## Dacnis_lineata                   .        .        .        .       29.5828  .      
## Xenospingus_concolor             .        .        .        .       29.5828  .      
## Tersina_viridis                  .        .        .        .       29.5828  .      
## Lanio_fulvus                     .        .        .        .       29.5828  .      
## Rhodospingus_cruentus            .        .        .        .       29.5828  .      
## Tachyphonus_surinamus            .        .        .        .       29.5828  .      
## Coryphaspiza_melanotis           .        .        .        .       29.5828  .      
## Charitospiza_eucosma             .        .        .        .       29.5828  .      
## Eucometis_penicillata            .        .        .        .       29.5828  .      
## Trichothraupis_melanops          .        .        .        .       29.5828  .      
## Coryphospingus_cucullatus        .        .        .        .       29.5828  .      
## Ramphocelus_costaricensis        .        .        .        .       29.5828  .      
## Volatinia_jacarina               .        .        .        .       29.5828  .      
## Conothraupis_speculigera         .        .        .        .       29.5828  .      
## Oryzoborus_nuttingi              .        .        .        .       29.5828  .      
## Sporophila_luctuosa              .        .        .        .       29.5828  .      
## Conirostrum_albifrons            .        .        .        .       29.5828  .      
## Oreomanes_fraseri                .        .        .        .       29.5828  .      
## Diglossa_lafresnayii             .        .        .        .       29.5828  .      
## Catamenia_analis                 .        .        .        .       29.5828  .      
## Acanthidops_bairdii              .        .        .        .       29.5828  .      
## Haplospiza_rustica               .        .        .        .       29.5828  .      
## Idiopsar_brachyurus              .        .        .        .       29.5828  .      
## Xenodacnis_parina                .        .        .        .       29.5828  .      
## Sicalis_citrina                  .        .        .        .       29.5828  .      
## Phrygilus_gayi                   .        .        .        .       29.5828  .      
## Melanodera_xanthogramma          .        .        .        .       29.5828  .      
## Catamblyrhynchus_diadema         .        .        .        .       29.5828  .      
## Habia_cristata                   .        .        .        .       29.5828  .      
## Chlorothraupis_olivacea          .        .        .        .       29.5828  .      
## Piranga_rubra                    .        .        .        .       29.5828  .      
## Cardinalis_sinuatus              .        .        .        .       29.5828  .      
## Caryothraustes_canadensis        .        .        .        .       29.5828  .      
## Periporphyrus_erythromelas       .        .        .        .       29.5828  .      
## Rhodothraupis_celaeno            .        .        .        .       29.5828  .      
## Pheucticus_chrysogaster          .        .        .        .       29.5828  .      
## Passerina_amoena                 .        .        .        .       29.5828  .      
## Amaurospiza_concolor             .        .        .        .       29.5828  .      
## Cyanocompsa_cyanoides            .        .        .        .       29.5828  .      
## Cyanoloxia_glaucocaerulea        .        .        .        .       29.5828  .      
## Spiza_americana                  .        .        .        .       29.5828  .      
## Granatellus_pelzelni             .        .        .        .       29.5828  .      
## Ocyalus_latirostris              .        .        .        .       29.5828  .      
## Clypicterus_oseryi               .        .        .        .       29.5828  .      
## Cacicus_cela                     .        .        .        .       29.5828  .      
## Psarocolius_decumanus            .        .        .        .       29.5828  .      
## Icterus_graceannae               .        .        .        .       29.5828  .      
## Amblycercus_holosericeus         .        .        .        .       29.5828  .      
## Nesopsar_nigerrimus              .        .        .        .       29.5828  .      
## Gnorimopsar_chopi                .        .        .        .       29.5828  .      
## Oreopsar_bolivianus              .        .        .        .       29.5828  .      
## Agelaioides_badius               .        .        .        .       29.5828  .      
## Agelasticus_thilius              .        .        .        .       29.5828  .      
## Chrysomus_icterocephalus         .        .        .        .       29.5828  .      
## Pseudoleistes_guirahuro          .        .        .        .       29.5828  .      
## Xanthopsar_flavus                .        .        .        .       29.5828  .      
## Amblyramphus_holosericeus        .        .        .        .       29.5828  .      
## Curaeus_curaeus                  .        .        .        .       29.5828  .      
## Hypopyrrhus_pyrohypogaster       .        .        .        .       29.5828  .      
## Lampropsar_tanagrinus            .        .        .        .       29.5828  .      
## Gymnomystax_mexicanus            .        .        .        .       29.5828  .      
## Macroagelaius_imthurni           .        .        .        .       29.5828  .      
## Dives_dives                      .        .        .        .       29.5828  .      
## Molothrus_oryzivorus             .        .        .        .       29.5828  .      
## Agelaius_phoeniceus              .        .        .        .       29.5828  .      
## Euphagus_carolinus               .        .        .        .       29.5828  .      
## Quiscalus_quiscula               .        .        .        .       29.5828  .      
## Sturnella_loyca                  .        .        .        .       29.5828  .      
## Dolichonyx_oryzivorus            .        .        .        .       29.5828  .      
## Xanthocephalus_xanthocephalus    .        .        .        .       29.5828  .      
## Zeledonia_coronata               .        .        .        .       29.5828  .      
## Spindalis_zena                   .        .        .        .       29.5828  .      
## Microligea_palustris             .        .        .        .       29.5828  .      
## Xenoligea_montana                .        .        .        .       29.5828  .      
## Seiurus_aurocapilla              .        .        .        .       29.5828  .      
## Parula_americana                 .        .        .        .       29.5828  .      
## Dendroica_petechia               .        .        .        .       29.5828  .      
## Wilsonia_citrina                 .        .        .        .       29.5828  .      
## Catharopeza_bishopi              .        .        .        .       29.5828  .      
## Phaeothlypis_rivularis           .        .        .        .       29.5828  .      
## Basileuterus_flaveolus           .        .        .        .       29.5828  .      
## Ergaticus_ruber                  .        .        .        .       29.5828  .      
## Myioborus_pictus                 .        .        .        .       29.5828  .      
## Euthlypis_lachrymosa             .        .        .        .       29.5828  .      
## Protonotaria_citrea              .        .        .        .       29.5828  .      
## Limnothlypis_swainsonii          .        .        .        .       29.5828  .      
## Leucopeza_semperi                .        .        .        .       29.5828  .      
## Mniotilta_varia                  .        .        .        .       29.5828  .      
## Vermivora_chrysoptera            .        .        .        .       29.5828  .      
## Helmitheros_vermivorum           .        .        .        .       29.5828  .      
## Teretistris_fernandinae          .        .        .        .       29.5828  .      
## Icteria_virens                   .        .        .        .       29.5828  .      
## Miliaria_calandra                .        .        .        .       29.5828  .      
## Emberiza_buchanani               .        .        .        .       29.5828  .      
## Melophus_lathami                 .        .        .        .       29.5828  .      
## Torreornis_inexpectata           .        .        .        .       29.5828  .      
## Latoucheornis_siemsseni          .        .        .        .       29.5828  .      
##                                                         
## Nothocercus_bonapartei           .       .        ......
## Tinamus_guttatus                 .       .        ......
## Crypturellus_variegatus          .       .        ......
## Eudromia_elegans                 .       .        ......
## Tinamotis_pentlandii             .       .        ......
## Taoniscus_nanus                  .       .        ......
## Nothura_darwinii                 .       .        ......
## Rhynchotus_maculicollis          .       .        ......
## Nothoprocta_perdicaria           .       .        ......
## Rhea_americana                   .       .        ......
## Apteryx_haastii                  .       .        ......
## Casuarius_casuarius              .       .        ......
## Dromaius_novaehollandiae         .       .        ......
## Struthio_camelus                 .       .        ......
## Chauna_chavaria                  .       7.181661 ......
## Anhima_cornuta                   .       7.181661 ......
## Anseranas_semipalmata            .       7.181661 ......
## Dendrocygna_arborea              .       7.181661 ......
## Thalassornis_leuconotus          .       7.181661 ......
## Cygnus_melancoryphus             .       7.181661 ......
## Anser_fabalis                    .       7.181661 ......
## Chen_caerulescens                .       7.181661 ......
## Branta_bernicla                  .       7.181661 ......
## Coscoroba_coscoroba              .       7.181661 ......
## Cereopsis_novaehollandiae        .       7.181661 ......
## Malacorhynchus_membranaceus      .       7.181661 ......
## Netta_rufina                     .       7.181661 ......
## Aythya_ferina                    .       7.181661 ......
## Marmaronetta_angustirostris      .       7.181661 ......
## Salvadorina_waigiuensis          .       7.181661 ......
## Pteronetta_hartlaubii            .       7.181661 ......
## Cyanochen_cyanoptera             .       7.181661 ......
## Tadorna_ferruginea               .       7.181661 ......
## Alopochen_aegyptiaca             .       7.181661 ......
## Chloephaga_melanoptera           .       7.181661 ......
## Neochen_jubata                   .       7.181661 ......
## Cairina_moschata                 .       7.181661 ......
## Aix_sponsa                       .       7.181661 ......
## Callonetta_leucophrys            .       7.181661 ......
## Merganetta_armata                .       7.181661 ......
## Melanitta_nigra                  .       7.181661 ......
## Mergellus_albellus               .       7.181661 ......
## Mergus_serrator                  .       7.181661 ......
## Lophodytes_cucullatus            .       7.181661 ......
## Bucephala_clangula               .       7.181661 ......
## Histrionicus_histrionicus        .       7.181661 ......
## Clangula_hyemalis                .       7.181661 ......
## Polysticta_stelleri              .       7.181661 ......
## Somateria_mollissima             .       7.181661 ......
## Chenonetta_jubata                .       7.181661 ......
## Hymenolaimus_malacorhynchos      .       7.181661 ......
## Sarkidiornis_melanotos           .       7.181661 ......
## Anas_platyrhynchos               .       7.181661 ......
## Tachyeres_pteneres               .       7.181661 ......
## Lophonetta_specularioides        .       7.181661 ......
## Speculanas_specularis            .       7.181661 ......
## Amazonetta_brasiliensis          .       7.181661 ......
## Nettapus_pulchellus              .       7.181661 ......
## Biziura_lobata                   .       7.181661 ......
## Nomonyx_dominicus                .       7.181661 ......
## Oxyura_jamaicensis               .       7.181661 ......
## Plectropterus_gambensis          .       7.181661 ......
## Heteronetta_atricapilla          .       7.181661 ......
## Stictonetta_naevosa              .       7.181661 ......
## Aepypodius_arfakianus           18.81143 .        ......
## Alectura_lathami                18.81143 .        ......
## Talegalla_cuvieri               18.81143 .        ......
## Leipoa_ocellata                 18.81143 .        ......
## Eulipoa_wallacei                18.81143 .        ......
## Megapodius_freycinet            18.81143 .        ......
## Macrocephalon_maleo             18.81143 .        ......
## Mitu_tomentosum                 18.81143 .        ......
## Nothocrax_urumutum              18.81143 .        ......
## Crax_rubra                      18.81143 .        ......
## Ortalis_vetula                  18.81143 .        ......
## Oreophasis_derbianus            18.81143 .        ......
## Penelopina_nigra                18.81143 .        ......
## Aburria_aburri                  18.81143 .        ......
## Pipile_cumanensis               18.81143 .        ......
## Penelope_argyrotis              18.81143 .        ......
## Chamaepetes_unicolor            18.81143 .        ......
## Acryllium_vulturinum            18.81143 .        ......
## Guttera_plumifera               18.81143 .        ......
## Agelastes_niger                 18.81143 .        ......
## Numida_meleagris                18.81143 .        ......
## Dendrortyx_macroura             18.81143 .        ......
## Philortyx_fasciatus             18.81143 .        ......
## Odontophorus_capueira           18.81143 .        ......
## Dactylortyx_thoracicus          18.81143 .        ......
## Rhynchortyx_cinctus             18.81143 .        ......
## Cyrtonyx_montezumae             18.81143 .        ......
## Oreortyx_pictus                 18.81143 .        ......
## Colinus_cristatus               18.81143 .        ......
## Callipepla_squamata             18.81143 .        ......
## Ptilopachus_petrosus            18.81143 .        ......
## Arborophila_mandellii           18.81143 .        ......
## Caloperdix_oculeus              18.81143 .        ......
## Rollulus_rouloul                18.81143 .        ......
## Melanoperdix_niger              18.81143 .        ......
## Tetraogallus_caspius            18.81143 .        ......
## Perdicula_asiatica              18.81143 .        ......
## Ammoperdix_griseogularis        18.81143 .        ......
## Alectoris_chukar                18.81143 .        ......
## Francolinus_jacksoni            18.81143 .        ......
## Anurophasis_monorthonyx         18.81143 .        ......
## Coturnix_coturnix               18.81143 .        ......
## Margaroperdix_madagascariensis  18.81143 .        ......
## Afropavo_congensis              18.81143 .        ......
## Pavo_cristatus                  18.81143 .        ......
## Rheinardia_ocellata             18.81143 .        ......
## Argusianus_argus                18.81143 .        ......
## Polyplectron_napoleonis         18.81143 .        ......
## Galloperdix_spadicea            18.81143 .        ......
## Haematortyx_sanguiniceps        18.81143 .        ......
## Gallus_gallus                   18.81143 .        ......
## Bambusicola_fytchii             18.81143 .        ......
## Meleagris_gallopavo             18.81143 .        ......
## Bonasa_bonasia                  18.81143 .        ......
## Lagopus_lagopus                 18.81143 .        ......
## Lerwa_lerwa                     18.81143 .        ......
## Dendragapus_obscurus            18.81143 .        ......
## Tympanuchus_phasianellus        18.81143 .        ......
## Centrocercus_urophasianus       18.81143 .        ......
## Tetrao_tetrix                   18.81143 .        ......
## Pucrasia_macrolopha             18.81143 .        ......
## Rhizothera_longirostris         18.81143 .        ......
## Crossoptilon_harmani            18.81143 .        ......
## Catreus_wallichi                18.81143 .        ......
## Lophura_leucomelanos            18.81143 .        ......
## Chrysolophus_pictus             18.81143 .        ......
## Phasianus_colchicus             18.81143 .        ......
## Syrmaticus_humiae               18.81143 .        ......
## Perdix_perdix                   18.81143 .        ......
## Tetraophasis_szechenyii         18.81143 .        ......
## Lophophorus_impejanus           18.81143 .        ......
## Tragopan_melanocephalus         18.81143 .        ......
## Ithaginis_cruentus              18.81143 .        ......
## Pterocles_gutturalis             .       .        ......
## Syrrhaptes_tibetanus             .       .        ......
## Leptotila_verreauxi              .       .        ......
## Geotrygon_lawrencii              .       .        ......
## Starnoenas_cyanocephala          .       .        ......
## Zenaida_macroura                 .       .        ......
## Patagioenas_leucocephala         .       .        ......
## Turacoena_manadensis             .       .        ......
## Macropygia_unchall               .       .        ......
## Reinwardtoena_reinwardtsi        .       .        ......
## Streptopelia_semitorquata        .       .        ......
## Stigmatopelia_chinensis          .       .        ......
## Nesoenas_picturata               .       .        ......
## Aplopelia_larvata                .       .        ......
## Columba_bollii                   .       .        ......
## Geopelia_striata                 .       .        ......
## Geophaps_scripta                 .       .        ......
## Phaps_chalcoptera                .       .        ......
## Petrophassa_albipennis           .       .        ......
## Ocyphaps_lophotes                .       .        ......
## Leucosarcia_melanoleuca          .       .        ......
## Henicophaps_albifrons            .       .        ......
## Gallicolumba_erythroptera        .       .        ......
## Treron_calvus                    .       .        ......
## Ptilinopus_magnificus            .       .        ......
## Drepanoptila_holosericea         .       .        ......
## Alectroenas_madagascariensis     .       .        ......
## Lopholaimus_antarcticus          .       .        ......
## Gymnophaps_albertisii            .       .        ......
## Hemiphaga_novaeseelandiae        .       .        ......
## Ducula_aenea                     .       .        ......
## Phapitreron_leucotis             .       .        ......
## Turtur_abyssinicus               .       .        ......
## Oena_capensis                    .       .        ......
## Chalcophaps_indica               .       .        ......
## Didunculus_strigirostris         .       .        ......
## Goura_victoria                   .       .        ......
## Caloenas_nicobarica              .       .        ......
## Otidiphaps_nobilis               .       .        ......
## Trugon_terrestris                .       .        ......
## Uropelia_campestris              .       .        ......
## Columbina_squammata              .       .        ......
## Metriopelia_ceciliae             .       .        ......
## Claravis_pretiosa                .       .        ......
## Pelecanus_crispus                .       .        ......
## Balaeniceps_rex                  .       .        ......
## Scopus_umbretta                  .       .        ......
## Pygoscelis_antarcticus           .       .        ......
## Aptenodytes_forsteri             .       .        ......
## Spheniscus_demersus              .       .        ......
## Eudyptula_minor                  .       .        ......
## Megadyptes_antipodes             .       .        ......
## Eudyptes_robustus                .       .        ......
## Tigrisoma_lineatum               .       .        ......
## Zebrilus_undulatus               .       .        ......
## Botaurus_pinnatus                .       .        ......
## Ixobrychus_cinnamomeus           .       .        ......
## Pilherodius_pileatus             .       .        ......
## Agamia_agami                     .       .        ......
## Nycticorax_nycticorax            .       .        ......
## Ardeola_speciosa                 .       .        ......
## Nyctanassa_violacea              .       .        ......
## Gorsachius_leuconotus            .       .        ......
## Butorides_striata                .       .        ......
## Ardea_sumatrana                  .       .        ......
## Bubulcus_ibis                    .       .        ......
## Mesophoyx_intermedia             .       .        ......
## Casmerodius_albus                .       .        ......
## Egretta_garzetta                 .       .        ......
## Syrigma_sibilatrix               .       .        ......
## Cochlearius_cochlearius          .       .        ......
## Zonerodius_heliosylus            .       .        ......
## Tigriornis_leucolopha            .       .        ......
## Fregata_ariel                    .       .        ......
## Morus_serrator                   .       .        ......
## Papasula_abbotti                 .       .        ......
## Sula_nebouxii                    .       .        ......
## Anhinga_anhinga                  .       .        ......
## Phalacrocorax_carbo              .       .        ......
## Geronticus_calvus                .       .        ......
## Plegadis_falcinellus             .       .        ......
## Nipponia_nippon                  .       .        ......
## Pseudibis_papillosa              .       .        ......
## Bostrychia_hagedash              .       .        ......
## Threskiornis_aethiopicus         .       .        ......
## Lophotibis_cristata              .       .        ......
## Platalea_leucorodia              .       .        ......
## Mesembrinibis_cayennensis        .       .        ......
## Eudocimus_albus                  .       .        ......
## Theristicus_caerulescens         .       .        ......
## Cercibis_oxycerca                .       .        ......
## Phimosus_infuscatus              .       .        ......
## Thaumatibis_gigantea             .       .        ......
## Anastomus_oscitans               .       .        ......
## Mycteria_americana               .       .        ......
## Leptoptilos_javanicus            .       .        ......
## Ciconia_maguari                  .       .        ......
## Ephippiorhynchus_asiaticus       .       .        ......
## Jabiru_mycteria                  .       .        ......
## Gavia_stellata                   .       .        ......
## Oceanites_gracilis               .       .        ......
## Fregetta_grallaria               .       .        ......
## Pelagodroma_marina               .       .        ......
## Garrodia_nereis                  .       .        ......
## Nesofregetta_fuliginosa          .       .        ......
## Phoebetria_palpebrata            .       .        ......
## Diomedea_exulans                 .       .        ......
## Thalassarche_impavida            .       .        ......
## Phoebastria_irrorata             .       .        ......
## Pelecanoides_magellani           .       .        ......
## Lugensa_brevirostris             .       .        ......
## Halobaena_caerulea               .       .        ......
## Pachyptila_belcheri              .       .        ......
## Bulweria_fallax                  .       .        ......
## Calonectris_leucomelas           .       .        ......
## Puffinus_assimilis               .       .        ......
## Pseudobulweria_aterrima          .       .        ......
## Procellaria_cinerea              .       .        ......
## Pterodroma_longirostris          .       .        ......
## Fulmarus_glacialoides            .       .        ......
## Macronectes_giganteus            .       .        ......
## Pagodroma_nivea                  .       .        ......
## Thalassoica_antarctica           .       .        ......
## Daption_capense                  .       .        ......
## Halocyptena_microsoma            .       .        ......
## Hydrobates_pelagicus             .       .        ......
## Oceanodroma_furcata              .       .        ......
## Opisthocomus_hoazin              .       .        ......
## Phaethon_rubricauda              .       .        ......
## Musophaga_rossae                 .       .        ......
## Tauraco_erythrolophus            .       .        ......
## Ruwenzorornis_johnstoni          .       .        ......
## Corythaeola_cristata             .       .        ......
## Corythaixoides_leucogaster       .       .        ......
## Crinifer_piscator                .       .        ......
## Houbaropsis_bengalensis          .       .        ......
## Sypheotides_indicus              .       .        ......
## Eupodotis_savilei                .       .        ......
## Tetrax_tetrax                    .       .        ......
## Chlamydotis_undulata             .       .        ......
## Otis_tarda                       .       .        ......
## Ardeotis_kori                    .       .        ......
## Neotis_denhami                   .       .        ......
## Ibidorhyncha_struthersii         .       .        ......
## Haematopus_longirostris          .       .        ......
## Recurvirostra_avosetta           .       .        ......
## Himantopus_himantopus            .       .        ......
## Cladorhynchus_leucocephalus      .       .        ......
## Pluvialis_squatarola             .       .        ......
## Phegornis_mitchellii             .       .        ......
## Charadrius_vociferus             .       .        ......
## Thinornis_rubricollis            .       .        ......
## Elseyornis_melanops              .       .        ......
## Eudromias_morinellus             .       .        ......
## Vanellus_vanellus                .       .        ......
## Erythrogonys_cinctus             .       .        ......
## Anarhynchus_frontalis            .       .        ......
## Oreopholus_ruficollis            .       .        ......
## Pluvianus_aegyptius              .       .        ......
## Esacus_recurvirostris            .       .        ......
## Burhinus_superciliaris           .       .        ......
## Chionis_albus                    .       .        ......
## Pluvianellus_socialis            .       .        ......
## Thinocorus_rumicivorus           .       .        ......
## Attagis_gayi                     .       .        ......
## Pedionomus_torquatus             .       .        ......
## Rostratula_benghalensis          .       .        ......
## Jacana_spinosa                   .       .        ......
## Hydrophasianus_chirurgus         .       .        ......
## Actophilornis_albinucha          .       .        ......
## Metopidius_indicus               .       .        ......
## Microparra_capensis              .       .        ......
## Irediparra_gallinacea            .       .        ......
## Bartramia_longicauda             .       .        ......
## Numenius_arquata                 .       .        ......
## Lymnocryptes_minimus             .       .        ......
## Limosa_lapponica                 .       .        ......
## Phalaropus_fulicarius            .       .        ......
## Steganopus_tricolor              .       .        ......
## Xenus_cinereus                   .       .        ......
## Prosobonia_cancellata            .       .        ......
## Catoptrophorus_semipalmatus      .       .        ......
## Heteroscelus_brevipes            .       .        ......
## Tringa_ochropus                  .       .        ......
## Actitis_macularius               .       .        ......
## Coenocorypha_pusilla             .       .        ......
## Gallinago_gallinago              .       .        ......
## Scolopax_rusticola               .       .        ......
## Limnodromus_semipalmatus         .       .        ......
## Aphriza_virgata                  .       .        ......
## Calidris_tenuirostris            .       .        ......
## Limicola_falcinellus             .       .        ......
## Philomachus_pugnax               .       .        ......
## Tryngites_subruficollis          .       .        ......
## Eurynorhynchus_pygmeus           .       .        ......
## Arenaria_interpres               .       .        ......
## Turnix_sylvaticus                .       .        ......
## Ortyxelos_meiffrenii             .       .        ......
## Stercorarius_longicaudus         .       .        ......
## Catharacta_lonnbergi             .       .        ......
## Synthliboramphus_antiquus        .       .        ......
## Uria_aalge                       .       .        ......
## Alca_torda                       .       .        ......
## Alle_alle                        .       .        ......
## Brachyramphus_marmoratus         .       .        ......
## Cepphus_grylle                   .       .        ......
## Ptychoramphus_aleuticus          .       .        ......
## Aethia_psittacula                .       .        ......
## Cerorhinca_monocerata            .       .        ......
## Fratercula_corniculata           .       .        ......
## Rynchops_niger                   .       .        ......
## Pagophila_eburnea                .       .        ......
## Xema_sabini                      .       .        ......
## Rissa_tridactyla                 .       .        ......
## Larus_saundersi                  .       .        ......
## Leucophaeus_scoresbii            .       .        ......
## Rhodostethia_rosea               .       .        ......
## Creagrus_furcatus                .       .        ......
## Anous_stolidus                   .       .        ......
## Sterna_nilotica                  .       .        ......
## Chlidonias_hybrida               .       .        ......
## Larosterna_inca                  .       .        ......
## Phaetusa_simplex                 .       .        ......
## Gygis_alba                       .       .        ......
## Procelsterna_cerulea             .       .        ......
## Dromas_ardeola                   .       .        ......
## Rhinoptilus_africanus            .       .        ......
## Cursorius_cursor                 .       .        ......
## Glareola_pratincola              .       .        ......
## Stiltia_isabella                 .       .        ......
## Anurolimnas_castaneiceps         .       .        ......
## Podica_senegalensis              .       .        ......
## Heliopais_personatus             .       .        ......
## Heliornis_fulica                 .       .        ......
## Sarothrura_pulchra               .       .        ......
## Porphyrio_porphyrio              .       .        ......
## Gymnocrex_rosenbergii            .       .        ......
## Laterallus_melanophaius          .       .        ......
## Dryolimnas_cuvieri               .       .        ......
## Gallicrex_cinerea                .       .        ......
## Coturnicops_exquisitus           .       .        ......
## Rallina_fasciata                 .       .        ......
## Pardirallus_maculatus            .       .        ......
## Habroptila_wallacii              .       .        ......
## Aramides_cajanea                 .       .        ......
## Rougetius_rougetii               .       .        ......
## Canirallus_oculeus               .       .        ......
## Megacrex_inepta                  .       .        ......
## Gallirallus_torquatus            .       .        ......
## Crex_crex                        .       .        ......
## Rallus_longirostris              .       .        ......
## Eulabeornis_castaneoventris      .       .        ......
## Neocrex_colombiana               .       .        ......
## Amaurornis_olivacea              .       .        ......
## Himantornis_haematopus           .       .        ......
## Lewinia_pectoralis               .       .        ......
## Micropygia_schomburgkii          .       .        ......
## Gallinula_nesiotis               .       .        ......
## Fulica_armillata                 .       .        ......
## Crecopsis_egregia                .       .        ......
## Aenigmatolimnas_marginalis       .       .        ......
## Porzana_parva                    .       .        ......
## Amaurolimnas_concolor            .       .        ......
## Atlantisia_rogersi               .       .        ......
## Psophia_viridis                  .       .        ......
## Aramus_guarauna                  .       .        ......
## Grus_rubicunda                   .       .        ......
## Balearica_regulorum              .       .        ......
## Monias_benschi                   .       .        ......
## Mesitornis_unicolor              .       .        ......
## Phoenicopterus_ruber             .       .        ......
## Phoenicoparrus_andinus           .       .        ......
## Phoeniconaias_minor              .       .        ......
## Poliocephalus_poliocephalus      .       .        ......
## Podilymbus_podiceps              .       .        ......
## Tachybaptus_ruficollis           .       .        ......
## Aechmophorus_occidentalis        .       .        ......
## Podiceps_cristatus               .       .        ......
## Rollandia_rolland                .       .        ......
## Centropus_milo                   .       .        ......
## Carpococcyx_radiatus             .       .        ......
## Coua_serriana                    .       .        ......
## Phaenicophaeus_cumingi           .       .        ......
## Clamator_jacobinus               .       .        ......
## Coccyzus_merlini                 .       .        ......
## Piaya_cayana                     .       .        ......
## Coccycua_pumila                  .       .        ......
## Ceuthmochares_aereus             .       .        ......
## Pachycoccyx_audeberti            .       .        ......
## Scythrops_novaehollandiae        .       .        ......
## Cuculus_canorus                  .       .        ......
## Caliechthrus_leucolophus         .       .        ......
## Surniculus_lugubris              .       .        ......
## Cercococcyx_mechowi              .       .        ......
## Cacomantis_sonneratii            .       .        ......
## Chrysococcyx_minutillus          .       .        ......
## Rhamphomantis_megarhynchus       .       .        ......
## Microdynamis_parva               .       .        ......
## Eudynamys_scolopaceus            .       .        ......
## Guira_guira                      .       .        ......
## Crotophaga_major                 .       .        ......
## Geococcyx_californianus          .       .        ......
## Neomorphus_geoffroyi             .       .        ......
## Morococcyx_erythropygus          .       .        ......
## Dromococcyx_phasianellus         .       .        ......
## Tapera_naevia                    .       .        ......
## Eurypyga_helias                  .       .        ......
## Rhynochetos_jubatus              .       .        ......
## Chunga_burmeisteri               .       .        ......
## Cariama_cristata                 .       .        ......
## Spiziapteryx_circumcincta        .       .        ......
## Caracara_cheriway                .       .        ......
## Ibycter_americanus               .       .        ......
## Milvago_chimachima               .       .        ......
## Daptrius_ater                    .       .        ......
## Phalcoboenus_carunculatus        .       .        ......
## Falco_cherrug                    .       .        ......
## Polihierax_semitorquatus         .       .        ......
## Microhierax_caerulescens         .       .        ......
## Herpetotheres_cachinnans         .       .        ......
## Micrastur_ruficollis             .       .        ......
## Xenicus_gilviventris             .       .        ......
## Acanthisitta_chloris             .       .        ......
## Sapayoa_aenigma                  .       .        ......
## Neodrepanis_coruscans            .       .        ......
## Philepitta_schlegeli             .       .        ......
## Eurylaimus_steerii               .       .        ......
## Cymbirhynchus_macrorhynchos      .       .        ......
## Serilophus_lunatus               .       .        ......
## Corydon_sumatranus               .       .        ......
## Psarisomus_dalhousiae            .       .        ......
## Pseudocalyptomena_graueri        .       .        ......
## Calyptomena_viridis              .       .        ......
## Smithornis_capensis              .       .        ......
## Pitta_steerii                    .       .        ......
## Terenotriccus_erythrurus         .       .        ......
## Onychorhynchus_coronatus         .       .        ......
## Oxyruncus_cristatus              .       .        ......
## Cnipodectes_subbrunneus          .       .        ......
## Todirostrum_maculatum            .       .        ......
## Poecilotriccus_ruficeps          .       .        ......
## Oncostoma_cinereigulare          .       .        ......
## Lophotriccus_pileatus            .       .        ......
## Hemitriccus_minor                .       .        ......
## Atalotriccus_pilaris             .       .        ......
## Myiornis_auricularis             .       .        ......
## Rhynchocyclus_brevirostris       .       .        ......
## Tolmomyias_sulphurescens         .       .        ......
## Corythopis_torquatus             .       .        ......
## Pseudotriccus_pelzelni           .       .        ......
## Phylloscartes_eximius            .       .        ......
## Leptopogon_amaurocephalus        .       .        ......
## Mionectes_olivaceus              .       .        ......
## Tachuris_rubrigastra             .       .        ......
## Neopipo_cinnamomea               .       .        ......
## Platyrinchus_leucoryphus         .       .        ......
## Culicivora_caudacuta             .       .        ......
## Anairetes_agilis                 .       .        ......
## Pseudocolopteryx_flaviventris    .       .        ......
## Serpophaga_cinerea               .       .        ......
## Polystictus_pectoralis           .       .        ......
## Pseudelaenia_leucospodia         .       .        ......
## Stigmatura_napensis              .       .        ......
## Mecocerculus_leucophrys          .       .        ......
## Phaeomyias_murina                .       .        ......
## Capsiempis_flaveola              .       .        ......
## Suiriri_suiriri                  .       .        ......
## Tyrannulus_elatus                .       .        ......
## Myiopagis_gaimardii              .       .        ......
## Elaenia_martinica                .       .        ......
## Zimmerius_vilissimus             .       .        ......
## Nesotriccus_ridgwayi             .       .        ......
## Ornithion_inerme                 .       .        ......
## Camptostoma_imberbe              .       .        ......
## Phyllomyias_burmeisteri          .       .        ......
## Inezia_inornata                  .       .        ......
## Euscarthmus_meloryphus           .       .        ......
## Muscigralla_brevicauda           .       .        ......
## Conopias_parvus                  .       .        ......
## Colorhamphus_parvirostris        .       .        ......
## Colonia_colonus                  .       .        ......
## Mitrephanes_phaeocercus          .       .        ......
## Empidonax_affinis                .       .        ......
## Contopus_cooperi                 .       .        ......
## Sayornis_phoebe                  .       .        ......
## Lathrotriccus_euleri             .       .        ......
## Ochthornis_littoralis            .       .        ......
## Cnemotriccus_fuscatus            .       .        ......
## Aphanotriccus_capitalis          .       .        ......
## Muscisaxicola_maculirostris      .       .        ......
## Satrapa_icterophrys              .       .        ......
## Muscipipra_vetula                .       .        ......
## Knipolegus_striaticeps           .       .        ......
## Hymenops_perspicillatus          .       .        ......
## Lessonia_oreas                   .       .        ......
## Myiotheretes_striaticollis       .       .        ......
## Agriornis_montanus               .       .        ......
## Neoxolmis_rufiventris            .       .        ......
## Xolmis_pyrope                    .       .        ......
## Cnemarchus_erythropygius         .       .        ......
## Polioxolmis_rufipennis           .       .        ......
## Arundinicola_leucocephala        .       .        ......
## Alectrurus_tricolor              .       .        ......
## Gubernetes_yetapa                .       .        ......
## Pyrocephalus_rubinus             .       .        ......
## Fluvicola_pica                   .       .        ......
## Sublegatus_modestus              .       .        ......
## Tumbezia_salvini                 .       .        ......
## Ochthoeca_frontalis              .       .        ......
## Myiophobus_flavicans             .       .        ......
## Legatus_leucophaius              .       .        ......
## Pitangus_lictor                  .       .        ......
## Machetornis_rixosa               .       .        ......
## Myiozetetes_cayanensis           .       .        ......
## Empidonomus_varius               .       .        ......
## Tyrannus_melancholicus           .       .        ......
## Megarynchus_pitangua             .       .        ......
## Tyrannopsis_sulphurea            .       .        ......
## Myiodynastes_hemichrysus         .       .        ......
## Sirystes_sibilator               .       .        ......
## Myiarchus_semirufus              .       .        ......
## Rhytipterna_simplex              .       .        ......
## Casiornis_rufus                  .       .        ......
## Phelpsia_inornatus               .       .        ......
## Attila_spadiceus                 .       .        ......
## Ramphotrigon_ruficauda           .       .        ......
## Deltarhynchus_flammulatus        .       .        ......
## Pyrrhomyias_cinnamomeus          .       .        ......
## Hirundinea_ferruginea            .       .        ......
## Myiotriccus_ornatus              .       .        ......
## Piprites_pileata                 .       .        ......
## Iodopleura_fusca                 .       .        ......
## Tityra_semifasciata              .       .        ......
## Pachyramphus_viridis             .       .        ......
## Schiffornis_major                .       .        ......
## Laniisoma_elegans                .       .        ......
## Laniocera_rufescens              .       .        ......
## Corapipo_gutturalis              .       .        ......
## Masius_chrysopterus              .       .        ......
## Ilicura_militaris                .       .        ......
## Antilophia_galeata               .       .        ......
## Chiroxiphia_linearis             .       .        ......
## Xenopipo_atronitens              .       .        ......
## Lepidothrix_coronata             .       .        ......
## Machaeropterus_pyrocephalus      .       .        ......
## Pipra_chloromeros                .       .        ......
## Manacus_vitellinus               .       .        ......
## Heterocercus_flavivertex         .       .        ......
## Tyranneutes_stolzmanni           .       .        ......
## Neopelma_chrysocephalum          .       .        ......
## Doliornis_sclateri               .       .        ......
## Ampelion_rubrocristatus          .       .        ......
## Phytotoma_raimondii              .       .        ......
## Carpornis_cucullata              .       .        ......
## Snowornis_subalaris              .       .        ......
## Querula_purpurata                .       .        ......
## Pyroderus_scutatus               .       .        ......
## Cephalopterus_penduliger         .       .        ......
## Perissocephalus_tricolor         .       .        ......
## Haematoderus_militaris           .       .        ......
## Procnias_tricarunculatus         .       .        ......
## Carpodectes_nitidus              .       .        ......
## Xipholena_punicea                .       .        ......
## Gymnoderus_foetidus              .       .        ......
## Porphyrolaema_porphyrolaema      .       .        ......
## Phibalura_flavirostris           .       .        ......
## Lipaugus_fuscocinereus           .       .        ......
## Tijuca_atra                      .       .        ......
## Cotinga_amabilis                 .       .        ......
## Calyptura_cristata               .       .        ......
## Rupicola_rupicola                .       .        ......
## Phoenicircus_nigricollis         .       .        ......
## Ampelioides_tschudii             .       .        ......
## Pipreola_whitelyi                .       .        ......
## Thamnistes_anabatinus            .       .        ......
## Pygiptila_stellaris              .       .        ......
## Myrmornis_torquata               .       .        ......
## Neoctantes_niger                 .       .        ......
## Epinecrophylla_fulviventris      .       .        ......
## Myrmorchilus_strigilatus         .       .        ......
## Microrhopias_quixensis           .       .        ......
## Clytoctantes_alixii              .       .        ......
## Formicivora_grisea               .       .        ......
## Myrmotherula_brachyura           .       .        ......
## Cercomacra_cinerascens           .       .        ......
## Hypocnemis_cantator              .       .        ......
## Drymophila_ferruginea            .       .        ......
## Willisornis_poecilinotus         .       .        ......
## Rhegmatorhina_gymnops            .       .        ......
## Gymnopithys_rufigula             .       .        ......
## Phlegopsis_nigromaculata         .       .        ......
## Phaenostictus_mcleannani         .       .        ......
## Pithys_albifrons                 .       .        ......
## Rhopornis_ardesiacus             .       .        ......
## Myrmoborus_leucophrys            .       .        ......
## Percnostola_rufifrons            .       .        ......
## Pyriglena_atra                   .       .        ......
## Gymnocichla_nudiceps             .       .        ......
## Myrmeciza_ruficauda              .       .        ......
## Hylophylax_naevioides            .       .        ......
## Hypocnemoides_maculicauda        .       .        ......
## Schistocichla_leucostigma        .       .        ......
## Sclateria_naevia                 .       .        ......
## Thamnomanes_saturninus           .       .        ......
## Megastictus_margaritatus         .       .        ......
## Biatas_nigropectus               .       .        ......
## Herpsilochmus_rufimarginatus     .       .        ......
## Dysithamnus_stictothorax         .       .        ......
## Sakesphorus_canadensis           .       .        ......
## Thamnophilus_doliatus            .       .        ......
## Mackenziaena_severa              .       .        ......
## Frederickena_viridis             .       .        ......
## Hypoedaleus_guttatus             .       .        ......
## Batara_cinerea                   .       .        ......
## Taraba_major                     .       .        ......
## Cymbilaimus_lineatus             .       .        ......
## Dichrozona_cincta                .       .        ......
## Terenura_maculata                .       .        ......
## Pittasoma_michleri               .       .        ......
## Conopophaga_melanops             .       .        ......
## Melanopareia_torquata            .       .        ......
## Dendrocincla_tyrannina           .       .        ......
## Deconychura_longicauda           .       .        ......
## Sittasomus_griseicapillus        .       .        ......
## Dendroplex_picus                 .       .        ......
## Xiphorhynchus_obsoletus          .       .        ......
## Drymornis_bridgesii              .       .        ......
## Campylorhamphus_pucherani        .       .        ......
## Lepidocolaptes_souleyetii        .       .        ......
## Hylexetastes_perrotii            .       .        ......
## Xiphocolaptes_promeropirhynchus  .       .        ......
## Dendrocolaptes_picumnus          .       .        ......
## Nasica_longirostris              .       .        ......
## Dendrexetastes_rufigula          .       .        ......
## Glyphorynchus_spirurus           .       .        ......
## Xenops_rutilans                  .       .        ......
## Margarornis_rubiginosus          .       .        ......
## Premnoplex_brunnescens           .       .        ......
## Anabazenops_fuscus               .       .        ......
## Syndactyla_guttulata             .       .        ......
## Anabacerthia_variegaticeps       .       .        ......
## Cichlocolaptes_leucophrus        .       .        ......
## Heliobletus_contaminatus         .       .        ......
## Philydor_ruficaudatum            .       .        ......
## Ancistrops_strigilatus           .       .        ......
## Hylocryptus_rectirostris         .       .        ......
## Automolus_infuscatus             .       .        ......
## Hyloctistes_subulatus            .       .        ......
## Thripadectes_melanorhynchus      .       .        ......
## Berlepschia_rikeri               .       .        ......
## Premnornis_guttuligera           .       .        ......
## Tarphonomus_certhioides          .       .        ......
## Pseudocolaptes_lawrencii         .       .        ......
## Cinclodes_fuscus                 .       .        ......
## Upucerthia_serrana               .       .        ......
## Furnarius_rufus                  .       .        ......
## Phleocryptes_melanops            .       .        ......
## Limnornis_curvirostris           .       .        ......
## Lochmias_nematura                .       .        ......
## Leptasthenura_platensis          .       .        ......
## Sylviorthorhynchus_desmursii     .       .        ......
## Schizoeaca_coryi                 .       .        ......
## Pseudoseisura_cristata           .       .        ......
## Cranioleuca_vulpecula            .       .        ......
## Limnoctites_rectirostris         .       .        ......
## Siptornis_striaticollis          .       .        ......
## Thripophaga_macroura             .       .        ......
## Roraimia_adusta                  .       .        ......
## Metopothrix_aurantiaca           .       .        ......
## Synallaxis_brachyura             .       .        ......
## Asthenes_steinbachi              .       .        ......
## Siptornopsis_hypochondriaca      .       .        ......
## Schoeniophylax_phryganophilus    .       .        ......
## Certhiaxis_cinnamomeus           .       .        ......
## Spartonoica_maluroides           .       .        ......
## Anumbius_annumbi                 .       .        ......
## Coryphistera_alaudina            .       .        ......
## Hellmayrea_gularis               .       .        ......
## Phacellodomus_rufifrons          .       .        ......
## Aphrastura_spinicauda            .       .        ......
## Pygarrhichas_albogularis         .       .        ......
## Ochetorhynchus_andaecola         .       .        ......
## Sclerurus_rufigularis            .       .        ......
## Geositta_tenuirostris            .       .        ......
## Chamaeza_campanisona             .       .        ......
## Formicarius_colma                .       .        ......
## Eugralla_paradoxa                .       .        ......
## Scytalopus_meridanus             .       .        ......
## Myornis_senilis                  .       .        ......
## Eleoscytalopus_indigoticus       .       .        ......
## Merulaxis_ater                   .       .        ......
## Scelorchilus_rubecula            .       .        ......
## Pteroptochos_tarnii              .       .        ......
## Teledromas_fuscus                .       .        ......
## Rhinocrypta_lanceolata           .       .        ......
## Acropternis_orthonyx             .       .        ......
## Psilorhamphus_guttatus           .       .        ......
## Liosceles_thoracicus             .       .        ......
## Grallaria_ruficapilla            .       .        ......
## Myrmothera_campanisona           .       .        ......
## Hylopezus_perspicillatus         .       .        ......
## Grallaricula_flavirostris        .       .        ......
## Menura_novaehollandiae           .       .        ......
## Atrichornis_rufescens            .       .        ......
## Scenopoeetes_dentirostris        .       .        ......
## Prionodura_newtoniana            .       .        ......
## Archboldia_papuensis             .       .        ......
## Amblyornis_macgregoriae          .       .        ......
## Ailuroedus_crassirostris         .       .        ......
## Sericulus_chrysocephalus         .       .        ......
## Chlamydera_cerviniventris        .       .        ......
## Ptilonorhynchus_violaceus        .       .        ......
## Cormobates_leucophaea            .       .        ......
## Climacteris_affinis              .       .        ......
## Amytornis_barbatus               .       .        ......
## Stipiturus_malachurus            .       .        ......
## Sipodotus_wallacii               .       .        ......
## Malurus_cyaneus                  .       .        ......
## Dasyornis_longirostris           .       .        ......
## Melitograis_gilolensis           .       .        ......
## Glycichaera_fallax               .       .        ......
## Ptiloprora_guisei                .       .        ......
## Anthornis_melanura               .       .        ......
## Apalopteron_familiare            .       .        ......
## Lichenostomus_subfrenatus        .       .        ......
## Acanthorhynchus_superciliosus    .       .        ......
## Certhionyx_variegatus            .       .        ......
## Prosthemadera_novaeseelandiae    .       .        ......
## Pycnopygius_ixoides              .       .        ......
## Xanthomyza_phrygia               .       .        ......
## Anthochaera_chrysoptera          .       .        ......
## Acanthagenys_rufogularis         .       .        ......
## Stresemannia_bougainvillei       .       .        ......
## Manorina_melanocephala           .       .        ......
## Melidectes_torquatus             .       .        ......
## Guadalcanaria_inexpectata        .       .        ......
## Timeliopsis_fulvigula            .       .        ......
## Melilestes_megarhynchus          .       .        ......
## Melipotes_gymnops                .       .        ......
## Macgregoria_pulchra              .       .        ......
## Ashbyia_lovensis                 .       .        ......
## Epthianura_tricolor              .       .        ......
## Conopophila_albogularis          .       .        ......
## Ramsayornis_modestus             .       .        ......
## Myzomela_eichhorni               .       .        ......
## Gymnomyza_aubryana               .       .        ......
## Foulehaio_carunculatus           .       .        ......
## Entomyzon_cyanotis               .       .        ......
## Melithreptus_lunatus             .       .        ......
## Myza_sarasinorum                 .       .        ......
## Phylidonyris_pyrrhopterus        .       .        ......
## Trichodere_cockerelli            .       .        ......
## Lichmera_flavicans               .       .        ......
## Grantiella_picta                 .       .        ......
## Plectorhyncha_lanceolata         .       .        ......
## Xanthotis_provocator             .       .        ......
## Philemon_novaeguineae            .       .        ......
## Pardalotus_quadragintus          .       .        ......
## Aphelocephala_leucopsis          .       .        ......
## Acanthornis_magna                .       .        ......
## Acanthiza_murina                 .       .        ......
## Smicrornis_brevirostris          .       .        ......
## Origma_solitaria                 .       .        ......
## Crateroscelis_murina             .       .        ......
## Sericornis_citreogularis         .       .        ......
## Pycnoptilus_floccosus            .       .        ......
## Chthonicola_sagittatus           .       .        ......
## Pyrrholaemus_brunneus            .       .        ......
## Hylacola_pyrrhopygia             .       .        ......
## Calamanthus_fuliginosus          .       .        ......
## Gerygone_cinerea                 .       .        ......
## Oreoscopus_gutturalis            .       .        ......
## Pomatostomus_ruficeps            .       .        ......
## Orthonyx_temminckii              .       .        ......
## Notiomystis_cincta               .       .        ......
## Melanocharis_striativentris      .       .        ......
## Oedistoma_pygmaeum               .       .        ......
## Toxorhamphus_novaeguineae        .       .        ......
## Loboparadisea_sericea            .       .        ......
## Cnemophilus_macgregorii          .       .        ......
## Callaeas_cinereus                .       .        ......
## Philesturnus_carunculatus        .       .        ......
## Daphoenositta_chrysoptera        .       .        ......
## Oreocharis_arfaki                .       .        ......
## Paramythia_montium               .       .        ......
## Pitohui_dichrous                 .       .        ......
## Sphecotheres_hypoleucus          .       .        ......
## Oriolus_sagittatus               .       .        ......
## Lamprolia_victoriae              .       .        ......
## Rhipidura_teysmanni              .       .        ......
## Struthidea_cinerea               .       .        ......
## Corcorax_melanorhamphos          .       .        ......
## Hypothymis_azurea                .       .        ......
## Terpsiphone_rufiventer           .       .        ......
## Trochocercus_nitens              .       .        ......
## Grallina_cyanoleuca              .       .        ......
## Myiagra_alecto                   .       .        ......
## Monarcha_axillaris               .       .        ......
## Metabolus_rugensis               .       .        ......
## Clytorhynchus_hamlini            .       .        ......
## Mayrornis_lessoni                .       .        ......
## Neolalage_banksiana              .       .        ......
## Pomarea_whitneyi                 .       .        ......
## Chasiempis_sandwichensis         .       .        ......
## Arses_kaupi                      .       .        ......
## Melampitta_lugubris              .       .        ......
## Lycocorax_pyrrhopterus           .       .        ......
## Manucodia_comrii                 .       .        ......
## Parotia_carolae                  .       .        ......
## Pteridophora_alberti             .       .        ......
## Cicinnurus_regius                .       .        ......
## Paradisaea_raggiana              .       .        ......
## Paradigalla_brevicauda           .       .        ......
## Astrapia_splendidissima          .       .        ......
## Epimachus_bruijnii               .       .        ......
## Seleucidis_melanoleucus          .       .        ......
## Semioptera_wallacii              .       .        ......
## Ptiloris_intercedens             .       .        ......
## Lophorina_superba                .       .        ......
## Ifrita_kowaldi                   .       .        ......
## Eurocephalus_anguitimens         .       .        ......
## Lanius_minor                     .       .        ......
## Urolestes_melanoleucus           .       .        ......
## Corvinella_corvina               .       .        ......
## Platylophus_galericulatus        .       .        ......
## Cyanopica_cyanus                 .       .        ......
## Perisoreus_canadensis            .       .        ......
## Ptilostomus_afer                 .       .        ......
## Podoces_hendersoni               .       .        ......
## Pica_hudsonia                    .       .        ......
## Nucifraga_caryocatactes          .       .        ......
## Corvus_corone                    .       .        ......
## Garrulus_lidthi                  .       .        ......
## Zavattariornis_stresemanni       .       .        ......
## Calocitta_colliei                .       .        ......
## Cyanocorax_yncas                 .       .        ......
## Aphelocoma_insularis             .       .        ......
## Gymnorhinus_cyanocephalus        .       .        ......
## Cyanocitta_cristata              .       .        ......
## Cyanolyca_cucullata              .       .        ......
## Urocissa_caerulea                .       .        ......
## Cissa_hypoleuca                  .       .        ......
## Dendrocitta_leucogastra          .       .        ......
## Platysmurus_leucopterus          .       .        ......
## Temnurus_temnurus                .       .        ......
## Crypsirina_cucullata             .       .        ......
## Pyrrhocorax_pyrrhocorax          .       .        ......
## Dicrurus_caerulescens            .       .        ......
## Vireolanius_leucotis             .       .        ......
## Hylophilus_poicilotis            .       .        ......
## Vireo_brevipennis                .       .        ......
## Erpornis_zantholeuca             .       .        ......
## Cyclarhis_gujanensis             .       .        ......
## Pteruthius_rufiventer            .       .        ......
## Pachycephala_albiventris         .       .        ......
## Colluricincla_harmonica          .       .        ......
## Pachycare_flavogriseum           .       .        ......
## Aleadryas_rufinucha              .       .        ......
## Oreoica_gutturalis               .       .        ......
## Rhagologus_leucostigma           .       .        ......
## Machaerirhynchus_nigripectus     .       .        ......
## Artamus_fuscus                   .       .        ......
## Peltops_blainvillii              .       .        ......
## Strepera_graculina               .       .        ......
## Gymnorhina_tibicen               .       .        ......
## Cracticus_mentalis               .       .        ......
## Aegithina_viridissima            .       .        ......
## Malaconotus_alius                .       .        ......
## Tchagra_minutus                  .       .        ......
## Dryoscopus_angolensis            .       .        ......
## Telophorus_zeylonus              .       .        ......
## Rhodophoneus_cruentus            .       .        ......
## Laniarius_poensis                .       .        ......
## Nilaus_afer                      .       .        ......
## Euryceros_prevostii              .       .        ......
## Vanga_curvirostris               .       .        ......
## Xenopirostris_xenopirostris      .       .        ......
## Hypositta_corallirostris         .       .        ......
## Schetba_rufa                     .       .        ......
## Pseudobias_wardi                 .       .        ......
## Oriolia_bernieri                 .       .        ......
## Falculea_palliata                .       .        ......
## Newtonia_brunneicauda            .       .        ......
## Leptopterus_chabert              .       .        ......
## Cyanolanius_madagascarinus       .       .        ......
## Calicalicus_madagascariensis     .       .        ......
## Tylas_eduardi                    .       .        ......
## Artamella_viridis                .       .        ......
## Mystacornis_crossleyi            .       .        ......
## Philentoma_pyrhoptera            .       .        ......
## Megabyas_flammulatus             .       .        ......
## Bias_musicus                     .       .        ......
## Prionops_caniceps                .       .        ......
## Hemipus_picatus                  .       .        ......
## Tephrodornis_pondicerianus       .       .        ......
## Lanioturdus_torquatus            .       .        ......
## Batis_minor                      .       .        ......
## Platysteira_castanea             .       .        ......
## Pityriasis_gymnocephala          .       .        ......
## Lalage_melanoleuca               .       .        ......
## Coracina_typica                  .       .        ......
## Campochaera_sloetii              .       .        ......
## Campephaga_petiti                .       .        ......
## Pericrocotus_flammeus            .       .        ......
## Eulacestoma_nigropectus          .       .        ......
## Falcunculus_frontatus            .       .        ......
## Psophodes_olivaceus              .       .        ......
## Cinclosoma_castaneothorax        .       .        ......
## Ptilorrhoa_leucosticta           .       .        ......
## Mohoua_ochrocephala              .       .        ......
## Chaetops_aurantius               .       .        ......
## Eupetes_macrocerus               .       .        ......
## Picathartes_oreas                .       .        ......
## Microeca_fascinans               .       .        ......
## Monachella_muelleriana           .       .        ......
## Drymodes_superciliaris           .       .        ......
## Peneothello_sigillatus           .       .        ......
## Melanodryas_cucullata            .       .        ......
## Tregellasia_capito               .       .        ......
## Eopsaltria_griseogularis         .       .        ......
## Heteromyias_albispecularis       .       .        ......
## Poecilodryas_hypoleuca           .       .        ......
## Pachycephalopsis_poliosoma       .       .        ......
## Petroica_multicolor              .       .        ......
## Amalocichla_incerta              .       .        ......
## Auriparus_flaviceps              .       .        ......
## Remiz_pendulinus                 .       .        ......
## Anthoscopus_punctifrons          .       .        ......
## Sylviparus_modestus              .       .        ......
## Pseudopodoces_humilis            .       .        ......
## Parus_major                      .       .        ......
## Baeolophus_bicolor               .       .        ......
## Melanochlora_sultanea            .       .        ......
## Cephalopyrus_flammiceps          .       .        ......
## Elminia_longicauda               .       .        ......
## Culicicapa_ceylonensis           .       .        ......
## Stenostira_scita                 .       .        ......
## Chelidorhynx_hypoxantha          .       .        ......
## Nicator_chloris                  .       .        ......
## Panurus_biarmicus                .       .        ......
## Pinarocorys_erythropygia         .       .        ......
## Alaemon_alaudipes                .       .        ......
## Heteromirafra_ruddi              .       .        ......
## Chersomanes_albofasciata         .       .        ......
## Eremopterix_nigriceps            .       .        ......
## Certhilauda_curvirostris         .       .        ......
## Ammomanes_grayi                  .       .        ......
## Chersophilus_duponti             .       .        ......
## Rhamphocoris_clotbey             .       .        ......
## Eremophila_bilopha               .       .        ......
## Calandrella_cinerea              .       .        ......
## Melanocorypha_calandra           .       .        ......
## Eremalauda_starki                .       .        ......
## Spizocorys_conirostris           .       .        ......
## Lullula_arborea                  .       .        ......
## Galerida_magnirostris            .       .        ......
## Alauda_arvensis                  .       .        ......
## Mirafra_passerina                .       .        ......
## Pseudalaemon_fremantlii          .       .        ......
## Hyliota_australis                .       .        ......
## Amaurocichla_bocagei             .       .        ......
## Megalurulus_mariei               .       .        ......
## Scotocerca_inquieta              .       .        ......
## Nesillas_lantzii                 .       .        ......
## Hippolais_olivetorum             .       .        ......
## Acrocephalus_concinens           .       .        ......
## Chloropeta_natalensis            .       .        ......
## Locustella_luscinioides          .       .        ......
## Bradypterus_thoracicus           .       .        ......
## Schoenicola_brevirostris         .       .        ......
## Dromaeocercus_brunneus           .       .        ......
## Megalurus_gramineus              .       .        ......
## Eremiornis_carteri               .       .        ......
## Chaetornis_striata               .       .        ......
## Cincloramphus_cruralis           .       .        ......
## Randia_pseudozosterops           .       .        ......
## Crossleyia_xanthophrys           .       .        ......
## Bowdleria_punctata               .       .        ......
## Thamnornis_chloropetoides        .       .        ......
## Amphilais_seebohmi               .       .        ......
## Oxylabes_madagascariensis        .       .        ......
## Buettikoferella_bivittata        .       .        ......
## Hemitesia_neumanni               .       .        ......
## Neomixis_flavoviridis            .       .        ......
## Donacobius_atricapilla           .       .        ......
## Neolestes_torquatus              .       .        ......
## Pyrrhurus_scandens               .       .        ......
## Phyllastrephus_cabanisi          .       .        ......
## Criniger_barbatus                .       .        ......
## Bleda_notatus                    .       .        ......
## Baeopogon_indicator              .       .        ......
## Chlorocichla_simplex             .       .        ......
## Thescelocichla_leucopleura       .       .        ......
## Ixonotus_guttatus                .       .        ......
## Andropadus_montanus              .       .        ......
## Calyptocichla_serina             .       .        ......
## Tricholestes_criniger            .       .        ......
## Hemixos_flavala                  .       .        ......
## Hypsipetes_mcclellandii          .       .        ......
## Iole_olivacea                    .       .        ......
## Ixos_palawanensis                .       .        ......
## Setornis_criniger                .       .        ......
## Alophoixus_finschii              .       .        ......
## Spizixos_semitorques             .       .        ......
## Pycnonotus_sinensis              .       .        ......
## Bernieria_zosterops              .       .        ......
## Drymocichla_incana               .       .        ......
## Phragmacia_substriata            .       .        ......
## Malcorus_pectoralis              .       .        ......
## Heliolais_erythropterus          .       .        ......
## Graueria_vittata                 .       .        ......
## Incana_incana                    .       .        ......
## Hypergerus_atriceps              .       .        ......
## Eminia_lepida                    .       .        ......
## Euryptila_subcinnamomea          .       .        ......
## Bathmocercus_rufus               .       .        ......
## Cisticola_lateralis              .       .        ......
## Oreolais_pulchra                 .       .        ......
## Artisornis_moreaui               .       .        ......
## Urolais_epichlorus               .       .        ......
## Phyllolais_pulchella             .       .        ......
## Poliolais_lopezi                 .       .        ......
## Prinia_burnesii                  .       .        ......
## Camaroptera_chloronota           .       .        ......
## Spiloptila_clamans               .       .        ......
## Apalis_thoracica                 .       .        ......
## Eremomela_pusilla                .       .        ......
## Pnoepyga_albiventer              .       .        ......
## Kakamega_poliothorax             .       .        ......
## Hypocryptadius_cinnamomeus       .       .        ......
## Turdinus_macrodactylus           .       .        ......
## Graminicola_bengalensis          .       .        ......
## Malacopteron_magnum              .       .        ......
## Gypsophila_crispifrons           .       .        ......
## Robsonius_rabori                 .       .        ......
## Gampsorhynchus_rufulus           .       .        ......
## Napothera_brevicaudata           .       .        ......
## Rimator_pasquieri                .       .        ......
## Jabouilleia_danjoui              .       .        ......
## Malacocincla_abbotti             .       .        ......
## Illadopsis_cleaveri              .       .        ......
## Ptyrticus_turdinus               .       .        ......
## Pellorneum_albiventre            .       .        ......
## Trichastoma_rostratum            .       .        ......
## Kenopia_striata                  .       .        ......
## Kupeornis_gilberti               .       .        ......
## Phyllanthus_atripennis           .       .        ......
## Turdoides_hindei                 .       .        ......
## Babax_waddelli                   .       .        ......
## Garrulax_monileger               .       .        ......
## Cutia_nipalensis                 .       .        ......
## Liocichla_steerii                .       .        ......
## Heterophasia_picaoides           .       .        ......
## Leiothrix_argentauris            .       .        ......
## Strophocincla_cachinnans         .       .        ......
## Minla_cyanouroptera              .       .        ......
## Actinodura_egertoni              .       .        ......
## Spelaeornis_troglodytoides       .       .        ......
## Ptilocichla_leucogrammica        .       .        ......
## Xiphirhynchus_superciliaris      .       .        ......
## Pomatorhinus_montanus            .       .        ......
## Macronous_gularis                .       .        ......
## Timalia_pileata                  .       .        ......
## Dumetia_hyperythra               .       .        ......
## Sphenocichla_humei               .       .        ......
## Stachyris_ambigua                .       .        ......
## Rhopocichla_atriceps             .       .        ......
## Yuhina_castaniceps               .       .        ......
## Crocias_albonotatus              .       .        ......
## Cleptornis_marchei               .       .        ......
## Woodfordia_superciliosa          .       .        ......
## Tephrozosterops_stalkeri         .       .        ......
## Zosterops_erythropleurus         .       .        ......
## Chlorocharis_emiliae             .       .        ......
## Speirops_leucophoeus             .       .        ......
## Megazosterops_palauensis         .       .        ......
## Oculocincta_squamifrons          .       .        ......
## Lophozosterops_dohertyi          .       .        ......
## Heleia_crassirostris             .       .        ......
## Dasycrotapha_speciosa            .       .        ......
## Rukia_ruki                       .       .        ......
## Malia_grata                      .       .        ......
## Myzornis_pyrrhoura               .       .        ......
## Lioptilus_nigricapillus          .       .        ......
## Parophasma_galinieri             .       .        ......
## Paradoxornis_heudei              .       .        ......
## Chamaea_fasciata                 .       .        ......
## Chrysomma_sinense                .       .        ......
## Rhopophilus_pekinensis           .       .        ......
## Alcippe_ruficapilla              .       .        ......
## Conostoma_oemodium               .       .        ......
## Sylvia_atricapilla               .       .        ......
## Horizorhinus_dohrni              .       .        ......
## Pseudoalcippe_abyssinica         .       .        ......
## Tachycineta_bicolor              .       .        ......
## Pygochelidon_cyanoleuca          .       .        ......
## Atticora_melanoleuca             .       .        ......
## Haplochelidon_andecola           .       .        ......
## Notiochelidon_murina             .       .        ......
## Alopochelidon_fucata             .       .        ......
## Neochelidon_tibialis             .       .        ......
## Stelgidopteryx_serripennis       .       .        ......
## Progne_subis                     .       .        ......
## Phedina_borbonica                .       .        ......
## Riparia_cincta                   .       .        ......
## Delichon_urbicum                 .       .        ......
## Hirundo_rupestris                .       .        ......
## Petrochelidon_pyrrhonota         .       .        ......
## Psalidoprocne_nitens             .       .        ......
## Pseudhirundo_griseopyga          .       .        ......
## Cheramoeca_leucosterna           .       .        ......
## Eurochelidon_sirintarae          .       .        ......
## Pseudochelidon_eurystomina       .       .        ......
## Pholidornis_rushiae              .       .        ......
## Hylia_prasina                    .       .        ......
## Erythrocercus_holochlorus        .       .        ......
## Abroscopus_schisticeps           .       .        ......
## Tesia_cyaniventer                .       .        ......
## Urosphena_squameiceps            .       .        ......
## Cettia_diphone                   .       .        ......
## Orthotomus_cuculatus             .       .        ......
## Tickellia_hodgsoni               .       .        ......
## Seicercus_montis                 .       .        ......
## Phylloscopus_canariensis         .       .        ......
## Leptopoecile_sophiae             .       .        ......
## Psaltria_exilis                  .       .        ......
## Psaltriparus_minimus             .       .        ......
## Aegithalos_concinnus             .       .        ......
## Macrosphenus_kretschmeri         .       .        ......
## Melocichla_mentalis              .       .        ......
## Achaetops_pycnopygius            .       .        ......
## Sphenoeacus_afer                 .       .        ......
## Sylvietta_rufescens              .       .        ......
## Dulus_dominicus                  .       .        ......
## Phainoptila_melanoxantha         .       .        ......
## Phainopepla_nitens               .       .        ......
## Ptilogonys_cinereus              .       .        ......
## Bombycilla_garrulus              .       .        ......
## Hylocitrea_bonensis              .       .        ......
## Hypocolius_ampelinus             .       .        ......
## Certhia_familiaris               .       .        ......
## Tichodroma_muraria               .       .        ......
## Salpornis_spilonotus             .       .        ......
## Thryomanes_bewickii              .       .        ......
## Henicorhina_leucosticta          .       .        ......
## Thryothorus_atrogularis          .       .        ......
## Ferminia_cerverai                .       .        ......
## Uropsila_leucogastra             .       .        ......
## Cyphorhinus_arada                .       .        ......
## Cinnycerthia_unirufa             .       .        ......
## Thryorchilus_browni              .       .        ......
## Cistothorus_platensis            .       .        ......
## Troglodytes_troglodytes          .       .        ......
## Campylorhynchus_brunneicapillus  .       .        ......
## Microcerculus_philomela          .       .        ......
## Hylorchilus_sumichrasti          .       .        ......
## Catherpes_mexicanus              .       .        ......
## Salpinctes_obsoletus             .       .        ......
## Microbates_cinereiventris        .       .        ......
## Polioptila_dumicola              .       .        ......
## Ramphocaenus_melanurus           .       .        ......
## Sitta_formosa                    .       .        ......
## Rhabdornis_mystacalis            .       .        ......
## Enodes_erythrophris              .       .        ......
## Scissirostrum_dubium             .       .        ......
## Aplonis_grandis                  .       .        ......
## Basilornis_mirandus              .       .        ......
## Sarcops_calvus                   .       .        ......
## Streptocitta_albicollis          .       .        ......
## Mino_dumontii                    .       .        ......
## Ampeliceps_coronatus             .       .        ......
## Gracula_religiosa                .       .        ......
## Lamprotornis_australis           .       .        ......
## Spreo_albicapillus               .       .        ......
## Cosmopsarus_regius               .       .        ......
## Coccycolius_iris                 .       .        ......
## Neocichla_gutturalis             .       .        ......
## Saroglossa_spiloptera            .       .        ......
## Speculipastor_bicolor            .       .        ......
## Grafisia_torquata                .       .        ......
## Cinnyricinclus_femoralis         .       .        ......
## Poeoptera_lugubris               .       .        ......
## Onychognathus_nabouroup          .       .        ......
## Creatophora_cinerea              .       .        ......
## Sturnus_erythropygius            .       .        ......
## Leucopsar_rothschildi            .       .        ......
## Acridotheres_tristis             .       .        ......
## Mimus_parvulus                   .       .        ......
## Oreoscoptes_montanus             .       .        ......
## Toxostoma_crissale               .       .        ......
## Melanotis_caerulescens           .       .        ......
## Melanoptila_glabrirostris        .       .        ......
## Ramphocinclus_brachyurus         .       .        ......
## Cinclocerthia_ruficauda          .       .        ......
## Margarops_fuscus                 .       .        ......
## Dumetella_carolinensis           .       .        ......
## Buphagus_erythrorhynchus         .       .        ......
## Cinclus_pallasii                 .       .        ......
## Psophocichla_litsitsirupa        .       .        ......
## Nesocichla_eremita               .       .        ......
## Turdus_pallidus                  .       .        ......
## Geomalia_heinrichi               .       .        ......
## Grandala_coelicolor              .       .        ......
## Hylocichla_mustelina             .       .        ......
## Catharus_guttatus                .       .        ......
## Cichlopsis_leucogenys            .       .        ......
## Entomodestes_coracinus           .       .        ......
## Zoothera_andromedae              .       .        ......
## Cochoa_purpurea                  .       .        ......
## Chlamydochaera_jefferyi          .       .        ......
## Sialia_mexicana                  .       .        ......
## Myadestes_occidentalis           .       .        ......
## Neocossyphus_poensis             .       .        ......
## Cataponera_turdoides             .       .        ......
## Stizorhina_finschi               .       .        ......
## Alethe_poliophrys                .       .        ......
## Stiphrornis_erythrothorax        .       .        ......
## Cichladusa_arquata               .       .        ......
## Swynnertonia_swynnertoni         .       .        ......
## Cossyphicula_roberti             .       .        ......
## Pogonocichla_stellata            .       .        ......
## Sheppardia_bocagei               .       .        ......
## Cossypha_isabellae               .       .        ......
## Brachypteryx_stellata            .       .        ......
## Erithacus_rubecula               .       .        ......
## Luscinia_svecica                 .       .        ......
## Hodgsonius_phaenicuroides        .       .        ......
## Irania_gutturalis                .       .        ......
## Cinclidium_diana                 .       .        ......
## Enicurus_schistaceus             .       .        ......
## Myophonus_borneensis             .       .        ......
## Ficedula_albicollis              .       .        ......
## Muscicapella_hodgsoni            .       .        ......
## Xenocopsychus_ansorgei           .       .        ......
## Tarsiger_cyanurus                .       .        ......
## Monticola_saxatilis              .       .        ......
## Myrmecocichla_tholloni           .       .        ......
## Oenanthe_bifasciata              .       .        ......
## Cercomela_sinuata                .       .        ......
## Saxicola_leucurus                .       .        ......
## Rhyacornis_fuliginosa            .       .        ......
## Chaimarrornis_leucocephalus      .       .        ......
## Phoenicurus_erythronotus         .       .        ......
## Myiomela_major                   .       .        ......
## Niltava_grandis                  .       .        ......
## Rhinomyias_umbratilis            .       .        ......
## Eumyias_thalassinus              .       .        ......
## Dioptrornis_chocolatinus         .       .        ......
## Cyanoptila_cyanomelana           .       .        ......
## Erythropygia_quadrivirgata       .       .        ......
## Cercotrichas_podobe              .       .        ......
## Copsychus_albospecularis         .       .        ......
## Pinarornis_plumosus              .       .        ......
## Saxicoloides_fulicatus           .       .        ......
## Cyornis_tickelliae               .       .        ......
## Humblotia_flavirostris           .       .        ......
## Trichixos_pyrropygus             .       .        ......
## Muscicapa_striata                .       .        ......
## Bradornis_pallidus               .       .        ......
## Namibornis_herero                .       .        ......
## Fraseria_ocreata                 .       .        ......
## Myioparus_griseigularis          .       .        ......
## Empidornis_semipartitus          .       .        ......
## Sigelus_silens                   .       .        ......
## Melaenornis_edolioides           .       .        ......
## Regulus_regulus                  .       .        ......
## Anthreptes_longuemarei           .       .        ......
## Nectarinia_johannae              .       .        ......
## Aethopyga_mystacalis             .       .        ......
## Hypogramma_hypogrammicum         .       .        ......
## Arachnothera_robusta             .       .        ......
## Dicaeum_pygmaeum                 .       .        ......
## Prionochilus_olivaceus           .       .        ......
## Chloropsis_cyanopogon            .       .        ......
## Irena_puella                     .       .        ......
## Amblyospiza_albifrons            .       .        ......
## Malimbus_coronatus               .       .        ......
## Ploceus_insignis                 .       .        ......
## Quelea_erythrops                 .       .        ......
## Foudia_madagascariensis          .       .        ......
## Euplectes_afer                   .       .        ......
## Bubalornis_albirostris           .       .        ......
## Plocepasser_mahali               .       .        ......
## Histurgops_ruficaudus            .       .        ......
## Pseudonigrita_cabanisi           .       .        ......
## Philetairus_socius               .       .        ......
## Dinemellia_dinemelli             .       .        ......
## Brachycope_anomala               .       .        ......
## Anaplectes_rubriceps             .       .        ......
## Sporopipes_frontalis             .       .        ......
## Ortygospiza_gabonensis           .       .        ......
## Erythrura_gouldiae               .       .        ......
## Stagonopleura_bella              .       .        ......
## Taeniopygia_guttata              .       .        ......
## Poephila_personata               .       .        ......
## Neochmia_temporalis              .       .        ......
## Emblema_pictum                   .       .        ......
## Oreostruthus_fuliginosus         .       .        ......
## Lonchura_pallida                 .       .        ......
## Padda_oryzivora                  .       .        ......
## Heteromunia_pectoralis           .       .        ......
## Pytilia_melba                    .       .        ......
## Euschistospiza_dybowskii         .       .        ......
## Hypargos_niveoguttatus           .       .        ......
## Amadina_fasciata                 .       .        ......
## Lagonosticta_senegala            .       .        ......
## Clytospiza_monteiri              .       .        ......
## Uraeginthus_bengalus             .       .        ......
## Pyrenestes_sanguineus            .       .        ......
## Spermophaga_poliogenys           .       .        ......
## Nesocharis_shelleyi              .       .        ......
## Estrilda_quartinia               .       .        ......
## Mandingoa_nitidula               .       .        ......
## Cryptospiza_shelleyi             .       .        ......
## Nigrita_bicolor                  .       .        ......
## Parmoptila_woodhousei            .       .        ......
## Amandava_amandava                .       .        ......
## Anomalospiza_imberbis            .       .        ......
## Vidua_chalybeata                 .       .        ......
## Prunella_himalayana              .       .        ......
## Peucedramus_taeniatus            .       .        ......
## Passer_domesticus                .       .        ......
## Montifringilla_nivalis           .       .        ......
## Petronia_petronia                .       .        ......
## Euphonia_gouldi                  .       .        ......
## Eophona_personata                .       .        ......
## Mycerobas_melanozanthos          .       .        ......
## Coccothraustes_vespertinus       .       .        ......
## Eremopsaltria_mongolicus         .       .        ......
## Bucanetes_githagineus            .       .        ......
## Paroreomyza_maculata             .       .        ......
## Oreomystis_mana                  .       .        ......
## Loxioides_bailleui               .       .        ......
## Telespiza_cantans                .       .        ......
## Pseudonestor_xanthophrys         .       .        ......
## Loxops_caeruleirostris           .       .        ......
## Hemignathus_parvus               .       .        ......
## Vestiaria_coccinea               .       .        ......
## Himatione_sanguinea              .       .        ......
## Palmeria_dolei                   .       .        ......
## Uragus_sibiricus                 .       .        ......
## Neospiza_concolor                .       .        ......
## Haematospiza_sipahi              .       .        ......
## Callacanthis_burtoni             .       .        ......
## Psittirostra_psittacea           .       .        ......
## Carpodacus_erythrinus            .       .        ......
## Leucosticte_australis            .       .        ......
## Pyrrhula_murina                  .       .        ......
## Pyrrhoplectes_epauletta          .       .        ......
## Pinicola_enucleator              .       .        ......
## Loxia_pytyopsittacus             .       .        ......
## Serinus_scotops                  .       .        ......
## Carduelis_psaltria               .       .        ......
## Rhynchostruthus_percivali        .       .        ......
## Linurgus_olivaceus               .       .        ......
## Rhodopechys_sanguineus           .       .        ......
## Fringilla_montifringilla         .       .        ......
## Lophospingus_pusillus            .       .        ......
## Diuca_speculifera                .       .        ......
## Cissopis_leverianus              .       .        ......
## Schistochlamys_ruficapillus      .       .        ......
## Urothraupis_stolzmanni           .       .        ......
## Gubernatrix_cristata             .       .        ......
## Cyanicterus_cyanicterus          .       .        ......
## Neothraupis_fasciata             .       .        ......
## Stephanophorus_diadematus        .       .        ......
## Paroaria_coronata                .       .        ......
## Chlorochrysa_nitidissima         .       .        ......
## Tangara_xanthocephala            .       .        ......
## Coereba_flaveola                 .       .        ......
## Loxigilla_violacea               .       .        ......
## Melopyrrha_nigra                 .       .        ......
## Euneornis_campestris             .       .        ......
## Platyspiza_crassirostris         .       .        ......
## Geospiza_conirostris             .       .        ......
## Camarhynchus_parvulus            .       .        ......
## Pinaroloxias_inornata            .       .        ......
## Certhidea_olivacea               .       .        ......
## Loxipasser_anoxanthus            .       .        ......
## Melanospiza_richardsoni          .       .        ......
## Tiaris_obscurus                  .       .        ......
## Bangsia_arcaei                   .       .        ......
## Pipraeidea_melanonota            .       .        ......
## Iridosornis_analis               .       .        ......
## Calochaetes_coccineus            .       .        ......
## Orthogonys_chloricterus          .       .        ......
## Thraupis_palmarum                .       .        ......
## Compsothraupis_loricata          .       .        ......
## Buthraupis_eximia                .       .        ......
## Chlorornis_riefferii             .       .        ......
## Delothraupis_castaneoventris     .       .        ......
## Dubusia_taeniata                 .       .        ......
## Anisognathus_lacrymosus          .       .        ......
## Parkerthraustes_humeralis        .       .        ......
## Lamprospiza_melanoleuca          .       .        ......
## Rhodinocichla_rosea              .       .        ......
## Chlorophonia_pyrrhophrys         .       .        ......
## Mitrospingus_oleagineus          .       .        ......
## Phaenicophilus_poliocephalus     .       .        ......
## Oreothraupis_arremonops          .       .        ......
## Orchesticus_abeillei             .       .        ......
## Rowettia_goughensis              .       .        ......
## Nesospiza_wilkinsi               .       .        ......
## Calyptophilus_frugivorus         .       .        ......
## Saltatricula_multicolor          .       .        ......
## Saltator_coerulescens            .       .        ......
## Sericossypha_albocristata        .       .        ......
## Nemosia_pileata                  .       .        ......
## Chrysothlypis_salmoni            .       .        ......
## Heterospingus_xanthopygius       .       .        ......
## Hemithraupis_ruficapilla         .       .        ......
## Iridophanes_pulcherrimus         .       .        ......
## Chlorophanes_spiza               .       .        ......
## Creurgops_verticalis             .       .        ......
## Porphyrospiza_caerulescens       .       .        ......
## Embernagra_platensis             .       .        ......
## Emberizoides_herbicola           .       .        ......
## Cnemoscopus_rubrirostris         .       .        ......
## Incaspiza_pulchra                .       .        ......
## Piezorhina_cinerea               .       .        ......
## Poospiza_alticola                .       .        ......
## Donacospiza_albifrons            .       .        ......
## Cypsnagra_hirundinacea           .       .        ......
## Hemispingus_goeringi             .       .        ......
## Pyrrhocoma_ruficeps              .       .        ......
## Thlypopsis_ruficeps              .       .        ......
## Compsospiza_garleppi             .       .        ......
## Cyanerpes_nitidus                .       .        ......
## Dacnis_lineata                   .       .        ......
## Xenospingus_concolor             .       .        ......
## Tersina_viridis                  .       .        ......
## Lanio_fulvus                     .       .        ......
## Rhodospingus_cruentus            .       .        ......
## Tachyphonus_surinamus            .       .        ......
## Coryphaspiza_melanotis           .       .        ......
## Charitospiza_eucosma             .       .        ......
## Eucometis_penicillata            .       .        ......
## Trichothraupis_melanops          .       .        ......
## Coryphospingus_cucullatus        .       .        ......
## Ramphocelus_costaricensis        .       .        ......
## Volatinia_jacarina               .       .        ......
## Conothraupis_speculigera         .       .        ......
## Oryzoborus_nuttingi              .       .        ......
## Sporophila_luctuosa              .       .        ......
## Conirostrum_albifrons            .       .        ......
## Oreomanes_fraseri                .       .        ......
## Diglossa_lafresnayii             .       .        ......
## Catamenia_analis                 .       .        ......
## Acanthidops_bairdii              .       .        ......
## Haplospiza_rustica               .       .        ......
## Idiopsar_brachyurus              .       .        ......
## Xenodacnis_parina                .       .        ......
## Sicalis_citrina                  .       .        ......
## Phrygilus_gayi                   .       .        ......
## Melanodera_xanthogramma          .       .        ......
## Catamblyrhynchus_diadema         .       .        ......
## Habia_cristata                   .       .        ......
## Chlorothraupis_olivacea          .       .        ......
## Piranga_rubra                    .       .        ......
## Cardinalis_sinuatus              .       .        ......
## Caryothraustes_canadensis        .       .        ......
## Periporphyrus_erythromelas       .       .        ......
## Rhodothraupis_celaeno            .       .        ......
## Pheucticus_chrysogaster          .       .        ......
## Passerina_amoena                 .       .        ......
## Amaurospiza_concolor             .       .        ......
## Cyanocompsa_cyanoides            .       .        ......
## Cyanoloxia_glaucocaerulea        .       .        ......
## Spiza_americana                  .       .        ......
## Granatellus_pelzelni             .       .        ......
## Ocyalus_latirostris              .       .        ......
## Clypicterus_oseryi               .       .        ......
## Cacicus_cela                     .       .        ......
## Psarocolius_decumanus            .       .        ......
## Icterus_graceannae               .       .        ......
## Amblycercus_holosericeus         .       .        ......
## Nesopsar_nigerrimus              .       .        ......
## Gnorimopsar_chopi                .       .        ......
## Oreopsar_bolivianus              .       .        ......
## Agelaioides_badius               .       .        ......
## Agelasticus_thilius              .       .        ......
## Chrysomus_icterocephalus         .       .        ......
## Pseudoleistes_guirahuro          .       .        ......
## Xanthopsar_flavus                .       .        ......
## Amblyramphus_holosericeus        .       .        ......
## Curaeus_curaeus                  .       .        ......
## Hypopyrrhus_pyrohypogaster       .       .        ......
## Lampropsar_tanagrinus            .       .        ......
## Gymnomystax_mexicanus            .       .        ......
## Macroagelaius_imthurni           .       .        ......
## Dives_dives                      .       .        ......
## Molothrus_oryzivorus             .       .        ......
## Agelaius_phoeniceus              .       .        ......
## Euphagus_carolinus               .       .        ......
## Quiscalus_quiscula               .       .        ......
## Sturnella_loyca                  .       .        ......
## Dolichonyx_oryzivorus            .       .        ......
## Xanthocephalus_xanthocephalus    .       .        ......
## Zeledonia_coronata               .       .        ......
## Spindalis_zena                   .       .        ......
## Microligea_palustris             .       .        ......
## Xenoligea_montana                .       .        ......
## Seiurus_aurocapilla              .       .        ......
## Parula_americana                 .       .        ......
## Dendroica_petechia               .       .        ......
## Wilsonia_citrina                 .       .        ......
## Catharopeza_bishopi              .       .        ......
## Phaeothlypis_rivularis           .       .        ......
## Basileuterus_flaveolus           .       .        ......
## Ergaticus_ruber                  .       .        ......
## Myioborus_pictus                 .       .        ......
## Euthlypis_lachrymosa             .       .        ......
## Protonotaria_citrea              .       .        ......
## Limnothlypis_swainsonii          .       .        ......
## Leucopeza_semperi                .       .        ......
## Mniotilta_varia                  .       .        ......
## Vermivora_chrysoptera            .       .        ......
## Helmitheros_vermivorum           .       .        ......
## Teretistris_fernandinae          .       .        ......
## Icteria_virens                   .       .        ......
## Miliaria_calandra                .       .        ......
## Emberiza_buchanani               .       .        ......
## Melophus_lathami                 .       .        ......
## Torreornis_inexpectata           .       .        ......
## Latoucheornis_siemsseni          .       .        ......
## 
##  ..............................
##  ........suppressing 4008 columns and 916 rows in show(); maybe adjust 'options(max.print= *, width = *)'
##  ..............................
##    [[ suppressing 32 column names 'Node15', 'Node2', 'Node11' ... ]]
##                                                                                      
## Node459  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node460  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node461  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node462  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node463  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node464  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node465  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node466  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node467  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node468  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node469  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node470  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node471  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node472  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node473  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node474  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node475  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node476  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node477  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node478  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node479  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node480  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node481  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node482  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node483  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node484  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node485  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node486  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node487  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node488  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node489  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node490  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node491  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node492  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node493  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node494  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node495  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node496  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node497  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node498  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node499  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node500  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node501  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node502  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node503  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node504  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node505  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node506  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node507  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node508  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node509  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node510  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node511  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node512  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node513  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node514  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node515  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node516  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node517  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node518  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node519  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node520  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node521  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node522  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node523  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node524  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node525  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node526  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node527  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node528  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node529  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node530  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node531  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node532  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node533  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node534  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node535  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node536  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node537  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node538  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node539  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node540  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node541  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node542  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node543  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node544  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node545  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node546  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node547  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node548  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node549  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node550  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node551  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node552  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node553  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node554  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node555  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node556  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node557  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node558  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node559  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node560  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node561  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node562  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node563  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node564  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node565  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node566  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node567  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node568  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node569  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node570  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node571  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node572  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node573  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node574  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node575  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node576  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node577  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node578  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node579  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node580  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node581  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node582  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node583  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node584  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node585  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node586  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node587  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node588  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node589  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node590  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node591  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node592  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node593  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node594  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node595  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node596  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node597  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node598  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node599  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node600  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node601  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node602  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node603  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node604  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node605  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node606  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node607  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node608  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node609  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node610  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node611  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node612  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node613  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node614  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node615  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node616  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node617  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node618  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node619  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node620  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node621  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node622  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node623  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node624  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node625  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node626  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node627  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node628  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node629  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node630  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node631  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node632  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node633  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node634  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node635  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node636  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node637  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node638  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node639  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node640  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node641  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node642  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node643  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node644  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node645  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node646  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node647  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node648  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node649  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node650  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node651  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node652  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node653  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node654  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node655  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node656  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node657  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node658  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node659  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node660  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node661  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node662  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node663  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node664  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node665  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node666  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node667  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node668  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node669  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node670  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node671  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node672  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node673  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node674  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node675  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node676  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node677  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node678  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node679  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node680  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node681  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node682  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node683  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node684  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node685  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node686  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node687  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node688  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node689  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node690  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node691  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node692  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node693  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node694  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node695  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node696  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node697  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node698  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node699  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node700  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node701  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node702  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node703  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node704  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node705  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node706  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node707  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node708  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node709  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node710  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node711  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node712  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node713  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node714  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node715  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node716  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node717  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node718  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node719  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node720  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node721  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node722  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node723  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node724  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node725  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node726  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node727  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node728  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node729  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node730  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node731  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node732  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node733  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node734  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node735  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node736  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node737  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node738  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node739  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node740  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node741  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node742  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node743  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node744  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node745  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node746  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node747  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node748  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node749  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node750  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node751  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node752  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node753  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node754  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node755  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node756  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node757  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node758  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node759  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node760  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node761  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node762  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node763  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node764  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node765  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node766  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node767  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node768  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node769  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node770  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node771  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node772  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node773  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node774  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node775  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node776  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node777  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node778  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node779  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node780  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node781  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node782  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node783  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node784  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node785  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node786  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node787  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node788  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node789  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node790  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node791  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node792  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node793  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node794  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node795  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node796  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node797  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node798  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node799  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node800  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node801  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node802  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node803  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node804  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node805  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node806  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node807  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node808  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node809  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node810  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node811  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node812  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node813  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node814  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node815  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node816  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node817  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node818  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node819  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node820  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node821  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node822  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node823  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node824  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node825  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node826  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node827  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node828  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node829  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node830  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node831  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node832  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node833  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node834  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node835  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node836  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node837  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node838  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node839  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node840  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node841  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node842  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node843  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node844  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node845  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node846  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node847  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node848  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node849  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node850  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node851  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node852  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node853  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node854  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node855  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node856  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node857  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node858  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node859  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node860  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node861  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node862  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node863  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node864  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node865  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node866  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node867  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node868  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node869  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node870  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node871  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node872  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node873  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node874  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node875  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node876  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node877  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node878  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node879  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node880  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node881  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node882  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node883  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node884  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node885  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node886  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node887  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node888  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node889  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node890  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node891  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node892  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node893  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node894  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node895  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node896  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node897  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node898  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node899  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node900  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node901  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node902  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node903  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node904  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node905  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node906  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node907  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node908  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node909  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node910  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node911  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node912  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node913  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node914  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node915  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node916  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node917  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node918  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node919  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node920  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node921  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node922  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node923  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node924  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node925  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node926  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node927  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node928  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node929  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node930  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node931  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node932  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node933  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node934  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node935  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node936  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node937  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node938  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node939  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node940  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node941  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node942  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node943  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node944  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node945  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node946  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node947  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node948  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node949  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node950  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node951  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node952  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node953  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node954  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node955  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node956  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node957  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node958  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node959  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node960  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node961  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node962  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node963  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node964  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node965  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node966  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node967  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node968  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node969  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node970  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node971  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node972  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node973  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node974  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node975  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node976  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node977  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node978  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node979  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node980  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node981  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node982  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node983  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node984  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node985  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node986  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node987  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node988  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node989  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node990  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node991  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node992  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node993  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node994  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node995  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node996  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node997  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node998  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node999  10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1000 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1001 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1002 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1003 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1004 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1005 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1006 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1007 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1008 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1009 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1010 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1011 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1012 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1013 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1014 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1015 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1016 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1017 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1018 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1019 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1020 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1021 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1022 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1023 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1024 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1025 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1026 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1027 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1028 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1029 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1030 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1031 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1032 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1033 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1034 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1035 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1036 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1037 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1038 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1039 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1040 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1041 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1042 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1043 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1044 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1045 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1046 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1047 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1048 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1049 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1050 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1051 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1052 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1053 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1054 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1055 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1056 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1057 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1058 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1059 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1060 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1061 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1062 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1063 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1064 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1065 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1066 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1067 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1068 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1069 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1070 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1071 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1072 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1073 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1074 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1075 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1076 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1077 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1078 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1079 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1080 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1081 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1082 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1083 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1084 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1085 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1086 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1087 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1088 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1089 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1090 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1091 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1092 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1093 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1094 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1095 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1096 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1097 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1098 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1099 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1100 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1101 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1102 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1103 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1104 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1105 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1106 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1107 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1108 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1109 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1110 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1111 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1112 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1113 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1114 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1115 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1116 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1117 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1118 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1119 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1120 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1121 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1122 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1123 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1124 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1125 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1126 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1127 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1128 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1129 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1130 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1131 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1132 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1133 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1134 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1135 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1136 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1137 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1138 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1139 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1140 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1141 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1142 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1143 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1144 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1145 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1146 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1147 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1148 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1149 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1150 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1151 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1152 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1153 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1154 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1155 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1156 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1157 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1158 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1159 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1160 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1161 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1162 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1163 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1164 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1165 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1166 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1167 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1168 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1169 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1170 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1171 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1172 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1173 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1174 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1175 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1176 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1177 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1178 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1179 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1180 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1181 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1182 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1183 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1184 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1185 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1186 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1187 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1188 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1189 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1190 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1191 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1192 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1193 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1194 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1195 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1196 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1197 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1198 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1199 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1200 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1201 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1202 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1203 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1204 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1205 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1206 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1207 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1208 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1209 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1210 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1211 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1212 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1213 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1214 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1215 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1216 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1217 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1218 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1219 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1220 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1221 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1222 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1223 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1224 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1225 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1226 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1227 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1228 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1229 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1230 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1231 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1232 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1233 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1234 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1235 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1236 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1237 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1238 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1239 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1240 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1241 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1242 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1243 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1244 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1245 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1246 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1247 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1248 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1249 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1250 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1251 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1252 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1253 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1254 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1255 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1256 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1257 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1258 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1259 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1260 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1261 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1262 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1263 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1264 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1265 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1266 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1267 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1268 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1269 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1270 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1271 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1272 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1273 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1274 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1275 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1276 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1277 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1278 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1279 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1280 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1281 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1282 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1283 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1284 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1285 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1286 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1287 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1288 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1289 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1290 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1291 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1292 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1293 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1294 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1295 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1296 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1297 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1298 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1299 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1300 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1301 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1302 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1303 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1304 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1305 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1306 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1307 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1308 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1309 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1310 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1311 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1312 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1313 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1314 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1315 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1316 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1317 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1318 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1319 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1320 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1321 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1322 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1323 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1324 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1325 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1326 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1327 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1328 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1329 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1330 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1331 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1332 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1333 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1334 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1335 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1336 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1337 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1338 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1339 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1340 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1341 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1342 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1343 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1344 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1345 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1346 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1347 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1348 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1349 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1350 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1351 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1352 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1353 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1354 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1355 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1356 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1357 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1358 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1359 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1360 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1361 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1362 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1363 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1364 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1365 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1366 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1367 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1368 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1369 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1370 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1371 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1372 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1373 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1374 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1375 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1376 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1377 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1378 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1379 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1380 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1381 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1382 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1383 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1384 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1385 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1386 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1387 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1388 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1389 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1390 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1391 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1392 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1393 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1394 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1395 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1396 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1397 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1398 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1399 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1400 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1401 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1402 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1403 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1404 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1405 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1406 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1407 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1408 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1409 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1410 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1411 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1412 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1413 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1414 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1415 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1416 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1417 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1418 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1419 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1420 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1421 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1422 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1423 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1424 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1425 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1426 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1427 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1428 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1429 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1430 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1431 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1432 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1433 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1434 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1435 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1436 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1437 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1438 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1439 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1440 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1441 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1442 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1443 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1444 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1445 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1446 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1447 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1448 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1449 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1450 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1451 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1452 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1453 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1454 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1455 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1456 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1457 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1458 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1459 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1460 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1461 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1462 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1463 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1464 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1465 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1466 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1467 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1468 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1469 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1470 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1471 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1472 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1473 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1474 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1475 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1476 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1477 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1478 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1479 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1480 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1481 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1482 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1483 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1484 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1485 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1486 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1487 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1488 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1489 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1490 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1491 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1492 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1493 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1494 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1495 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1496 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1497 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1498 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1499 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1500 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1501 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1502 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1503 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1504 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1505 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1506 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1507 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1508 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1509 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1510 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1511 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1512 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1513 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1514 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1515 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1516 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1517 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1518 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1519 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1520 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1521 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1522 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1523 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1524 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1525 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1526 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1527 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1528 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1529 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1530 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1531 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1532 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1533 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1534 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1535 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1536 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1537 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1538 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1539 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1540 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1541 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1542 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1543 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1544 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1545 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1546 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1547 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1548 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1549 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1550 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1551 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1552 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1553 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1554 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1555 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1556 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1557 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1558 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1559 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1560 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1561 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1562 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1563 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1564 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1565 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1566 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1567 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1568 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1569 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1570 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1571 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1572 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1573 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1574 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1575 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1576 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1577 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1578 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1579 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1580 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1581 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1582 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1583 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1584 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1585 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1586 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1587 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1588 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1589 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1590 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1591 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1592 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1593 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1594 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1595 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1596 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1597 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1598 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1599 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1600 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1601 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1602 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1603 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1604 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1605 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1606 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1607 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1608 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1609 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1610 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1611 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1612 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1613 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1614 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1615 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1616 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1617 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1618 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1619 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1620 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1621 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1622 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1623 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1624 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1625 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1626 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1627 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1628 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1629 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1630 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1631 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1632 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1633 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1634 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1635 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1636 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1637 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1638 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1639 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1640 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1641 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1642 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1643 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1644 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1645 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1646 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1647 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1648 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1649 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1650 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1651 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1652 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1653 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1654 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1655 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1656 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1657 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1658 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1659 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1660 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1661 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1662 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1663 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1664 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1665 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1666 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1667 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1668 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1669 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1670 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1671 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1672 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1673 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1674 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1675 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1676 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1677 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1678 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1679 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1680 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1681 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1682 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1683 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1684 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1685 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1686 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1687 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1688 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1689 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1690 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1691 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1692 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1693 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1694 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1695 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1696 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1697 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1698 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1699 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1700 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1701 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1702 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1703 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1704 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1705 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1706 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1707 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1708 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1709 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1710 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1711 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1712 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1713 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1714 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1715 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1716 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1717 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1718 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1719 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1720 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1721 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1722 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1723 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1724 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1725 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1726 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1727 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1728 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1729 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1730 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1731 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1732 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1733 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1734 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1735 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1736 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1737 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1738 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1739 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1740 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1741 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1742 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1743 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1744 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1745 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1746 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1747 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1748 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1749 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1750 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1751 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1752 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1753 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1754 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1755 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1756 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1757 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1758 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1759 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1760 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1761 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1762 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1763 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1764 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1765 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1766 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1767 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1768 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1769 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1770 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1771 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1772 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1773 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1774 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1775 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1776 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1777 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1778 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1779 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1780 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1781 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1782 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1783 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1784 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1785 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1786 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1787 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1788 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1789 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1790 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1791 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1792 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1793 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1794 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1795 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1796 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1797 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1798 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1799 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1800 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1801 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1802 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1803 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1804 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1805 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1806 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1807 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1808 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1809 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1810 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1811 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1812 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1813 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1814 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1815 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1816 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1817 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1818 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1819 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1820 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1821 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1822 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1823 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1824 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1825 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1826 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1827 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1828 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1829 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1830 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1831 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1832 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1833 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1834 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1835 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1836 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1837 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1838 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1839 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1840 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1841 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1842 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1843 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1844 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1845 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1846 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1847 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1848 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1849 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1850 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1851 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1852 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1853 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1854 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1855 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1856 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1857 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1858 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1859 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1860 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1861 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1862 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1863 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1864 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1865 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1866 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1867 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1868 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1869 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1870 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1871 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1872 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1873 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1874 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1875 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1876 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1877 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1878 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1879 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1880 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1881 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1882 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1883 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1884 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1885 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1886 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1887 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1888 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1889 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1890 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1891 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1892 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1893 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1894 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1895 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1896 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1897 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1898 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1899 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1900 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1901 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1902 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1903 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1904 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1905 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1906 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1907 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1908 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1909 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1910 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1911 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1912 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1913 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1914 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1915 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1916 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1917 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1918 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1919 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1920 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1921 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1922 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1923 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1924 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1925 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1926 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1927 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1928 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1929 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1930 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1931 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1932 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1933 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1934 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1935 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1936 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1937 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1938 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1939 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1940 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1941 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1942 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1943 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1944 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1945 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1946 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1947 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1948 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1949 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1950 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1951 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1952 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1953 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1954 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1955 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1956 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1957 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1958 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1959 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1960 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1961 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1962 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1963 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1964 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1965 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1966 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1967 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1968 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1969 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1970 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1971 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1972 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1973 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1974 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1975 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1976 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1977 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1978 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1979 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1980 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1981 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1982 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1983 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1984 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1985 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1986 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1987 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1988 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1989 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1990 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1991 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1992 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1993 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1994 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1995 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1996 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1997 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1998 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node1999 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2000 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2001 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2002 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2003 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2004 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2005 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2006 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2007 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2008 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2009 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2010 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2011 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2012 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2013 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2014 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2015 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2016 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2017 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2018 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2019 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
## Node2020 10.00638 . . . . . . . . . . . . . . . . . . . . . . . . . . . 29.5828 . . .
##                
## Node459  ......
## Node460  ......
## Node461  ......
## Node462  ......
## Node463  ......
## Node464  ......
## Node465  ......
## Node466  ......
## Node467  ......
## Node468  ......
## Node469  ......
## Node470  ......
## Node471  ......
## Node472  ......
## Node473  ......
## Node474  ......
## Node475  ......
## Node476  ......
## Node477  ......
## Node478  ......
## Node479  ......
## Node480  ......
## Node481  ......
## Node482  ......
## Node483  ......
## Node484  ......
## Node485  ......
## Node486  ......
## Node487  ......
## Node488  ......
## Node489  ......
## Node490  ......
## Node491  ......
## Node492  ......
## Node493  ......
## Node494  ......
## Node495  ......
## Node496  ......
## Node497  ......
## Node498  ......
## Node499  ......
## Node500  ......
## Node501  ......
## Node502  ......
## Node503  ......
## Node504  ......
## Node505  ......
## Node506  ......
## Node507  ......
## Node508  ......
## Node509  ......
## Node510  ......
## Node511  ......
## Node512  ......
## Node513  ......
## Node514  ......
## Node515  ......
## Node516  ......
## Node517  ......
## Node518  ......
## Node519  ......
## Node520  ......
## Node521  ......
## Node522  ......
## Node523  ......
## Node524  ......
## Node525  ......
## Node526  ......
## Node527  ......
## Node528  ......
## Node529  ......
## Node530  ......
## Node531  ......
## Node532  ......
## Node533  ......
## Node534  ......
## Node535  ......
## Node536  ......
## Node537  ......
## Node538  ......
## Node539  ......
## Node540  ......
## Node541  ......
## Node542  ......
## Node543  ......
## Node544  ......
## Node545  ......
## Node546  ......
## Node547  ......
## Node548  ......
## Node549  ......
## Node550  ......
## Node551  ......
## Node552  ......
## Node553  ......
## Node554  ......
## Node555  ......
## Node556  ......
## Node557  ......
## Node558  ......
## Node559  ......
## Node560  ......
## Node561  ......
## Node562  ......
## Node563  ......
## Node564  ......
## Node565  ......
## Node566  ......
## Node567  ......
## Node568  ......
## Node569  ......
## Node570  ......
## Node571  ......
## Node572  ......
## Node573  ......
## Node574  ......
## Node575  ......
## Node576  ......
## Node577  ......
## Node578  ......
## Node579  ......
## Node580  ......
## Node581  ......
## Node582  ......
## Node583  ......
## Node584  ......
## Node585  ......
## Node586  ......
## Node587  ......
## Node588  ......
## Node589  ......
## Node590  ......
## Node591  ......
## Node592  ......
## Node593  ......
## Node594  ......
## Node595  ......
## Node596  ......
## Node597  ......
## Node598  ......
## Node599  ......
## Node600  ......
## Node601  ......
## Node602  ......
## Node603  ......
## Node604  ......
## Node605  ......
## Node606  ......
## Node607  ......
## Node608  ......
## Node609  ......
## Node610  ......
## Node611  ......
## Node612  ......
## Node613  ......
## Node614  ......
## Node615  ......
## Node616  ......
## Node617  ......
## Node618  ......
## Node619  ......
## Node620  ......
## Node621  ......
## Node622  ......
## Node623  ......
## Node624  ......
## Node625  ......
## Node626  ......
## Node627  ......
## Node628  ......
## Node629  ......
## Node630  ......
## Node631  ......
## Node632  ......
## Node633  ......
## Node634  ......
## Node635  ......
## Node636  ......
## Node637  ......
## Node638  ......
## Node639  ......
## Node640  ......
## Node641  ......
## Node642  ......
## Node643  ......
## Node644  ......
## Node645  ......
## Node646  ......
## Node647  ......
## Node648  ......
## Node649  ......
## Node650  ......
## Node651  ......
## Node652  ......
## Node653  ......
## Node654  ......
## Node655  ......
## Node656  ......
## Node657  ......
## Node658  ......
## Node659  ......
## Node660  ......
## Node661  ......
## Node662  ......
## Node663  ......
## Node664  ......
## Node665  ......
## Node666  ......
## Node667  ......
## Node668  ......
## Node669  ......
## Node670  ......
## Node671  ......
## Node672  ......
## Node673  ......
## Node674  ......
## Node675  ......
## Node676  ......
## Node677  ......
## Node678  ......
## Node679  ......
## Node680  ......
## Node681  ......
## Node682  ......
## Node683  ......
## Node684  ......
## Node685  ......
## Node686  ......
## Node687  ......
## Node688  ......
## Node689  ......
## Node690  ......
## Node691  ......
## Node692  ......
## Node693  ......
## Node694  ......
## Node695  ......
## Node696  ......
## Node697  ......
## Node698  ......
## Node699  ......
## Node700  ......
## Node701  ......
## Node702  ......
## Node703  ......
## Node704  ......
## Node705  ......
## Node706  ......
## Node707  ......
## Node708  ......
## Node709  ......
## Node710  ......
## Node711  ......
## Node712  ......
## Node713  ......
## Node714  ......
## Node715  ......
## Node716  ......
## Node717  ......
## Node718  ......
## Node719  ......
## Node720  ......
## Node721  ......
## Node722  ......
## Node723  ......
## Node724  ......
## Node725  ......
## Node726  ......
## Node727  ......
## Node728  ......
## Node729  ......
## Node730  ......
## Node731  ......
## Node732  ......
## Node733  ......
## Node734  ......
## Node735  ......
## Node736  ......
## Node737  ......
## Node738  ......
## Node739  ......
## Node740  ......
## Node741  ......
## Node742  ......
## Node743  ......
## Node744  ......
## Node745  ......
## Node746  ......
## Node747  ......
## Node748  ......
## Node749  ......
## Node750  ......
## Node751  ......
## Node752  ......
## Node753  ......
## Node754  ......
## Node755  ......
## Node756  ......
## Node757  ......
## Node758  ......
## Node759  ......
## Node760  ......
## Node761  ......
## Node762  ......
## Node763  ......
## Node764  ......
## Node765  ......
## Node766  ......
## Node767  ......
## Node768  ......
## Node769  ......
## Node770  ......
## Node771  ......
## Node772  ......
## Node773  ......
## Node774  ......
## Node775  ......
## Node776  ......
## Node777  ......
## Node778  ......
## Node779  ......
## Node780  ......
## Node781  ......
## Node782  ......
## Node783  ......
## Node784  ......
## Node785  ......
## Node786  ......
## Node787  ......
## Node788  ......
## Node789  ......
## Node790  ......
## Node791  ......
## Node792  ......
## Node793  ......
## Node794  ......
## Node795  ......
## Node796  ......
## Node797  ......
## Node798  ......
## Node799  ......
## Node800  ......
## Node801  ......
## Node802  ......
## Node803  ......
## Node804  ......
## Node805  ......
## Node806  ......
## Node807  ......
## Node808  ......
## Node809  ......
## Node810  ......
## Node811  ......
## Node812  ......
## Node813  ......
## Node814  ......
## Node815  ......
## Node816  ......
## Node817  ......
## Node818  ......
## Node819  ......
## Node820  ......
## Node821  ......
## Node822  ......
## Node823  ......
## Node824  ......
## Node825  ......
## Node826  ......
## Node827  ......
## Node828  ......
## Node829  ......
## Node830  ......
## Node831  ......
## Node832  ......
## Node833  ......
## Node834  ......
## Node835  ......
## Node836  ......
## Node837  ......
## Node838  ......
## Node839  ......
## Node840  ......
## Node841  ......
## Node842  ......
## Node843  ......
## Node844  ......
## Node845  ......
## Node846  ......
## Node847  ......
## Node848  ......
## Node849  ......
## Node850  ......
## Node851  ......
## Node852  ......
## Node853  ......
## Node854  ......
## Node855  ......
## Node856  ......
## Node857  ......
## Node858  ......
## Node859  ......
## Node860  ......
## Node861  ......
## Node862  ......
## Node863  ......
## Node864  ......
## Node865  ......
## Node866  ......
## Node867  ......
## Node868  ......
## Node869  ......
## Node870  ......
## Node871  ......
## Node872  ......
## Node873  ......
## Node874  ......
## Node875  ......
## Node876  ......
## Node877  ......
## Node878  ......
## Node879  ......
## Node880  ......
## Node881  ......
## Node882  ......
## Node883  ......
## Node884  ......
## Node885  ......
## Node886  ......
## Node887  ......
## Node888  ......
## Node889  ......
## Node890  ......
## Node891  ......
## Node892  ......
## Node893  ......
## Node894  ......
## Node895  ......
## Node896  ......
## Node897  ......
## Node898  ......
## Node899  ......
## Node900  ......
## Node901  ......
## Node902  ......
## Node903  ......
## Node904  ......
## Node905  ......
## Node906  ......
## Node907  ......
## Node908  ......
## Node909  ......
## Node910  ......
## Node911  ......
## Node912  ......
## Node913  ......
## Node914  ......
## Node915  ......
## Node916  ......
## Node917  ......
## Node918  ......
## Node919  ......
## Node920  ......
## Node921  ......
## Node922  ......
## Node923  ......
## Node924  ......
## Node925  ......
## Node926  ......
## Node927  ......
## Node928  ......
## Node929  ......
## Node930  ......
## Node931  ......
## Node932  ......
## Node933  ......
## Node934  ......
## Node935  ......
## Node936  ......
## Node937  ......
## Node938  ......
## Node939  ......
## Node940  ......
## Node941  ......
## Node942  ......
## Node943  ......
## Node944  ......
## Node945  ......
## Node946  ......
## Node947  ......
## Node948  ......
## Node949  ......
## Node950  ......
## Node951  ......
## Node952  ......
## Node953  ......
## Node954  ......
## Node955  ......
## Node956  ......
## Node957  ......
## Node958  ......
## Node959  ......
## Node960  ......
## Node961  ......
## Node962  ......
## Node963  ......
## Node964  ......
## Node965  ......
## Node966  ......
## Node967  ......
## Node968  ......
## Node969  ......
## Node970  ......
## Node971  ......
## Node972  ......
## Node973  ......
## Node974  ......
## Node975  ......
## Node976  ......
## Node977  ......
## Node978  ......
## Node979  ......
## Node980  ......
## Node981  ......
## Node982  ......
## Node983  ......
## Node984  ......
## Node985  ......
## Node986  ......
## Node987  ......
## Node988  ......
## Node989  ......
## Node990  ......
## Node991  ......
## Node992  ......
## Node993  ......
## Node994  ......
## Node995  ......
## Node996  ......
## Node997  ......
## Node998  ......
## Node999  ......
## Node1000 ......
## Node1001 ......
## Node1002 ......
## Node1003 ......
## Node1004 ......
## Node1005 ......
## Node1006 ......
## Node1007 ......
## Node1008 ......
## Node1009 ......
## Node1010 ......
## Node1011 ......
## Node1012 ......
## Node1013 ......
## Node1014 ......
## Node1015 ......
## Node1016 ......
## Node1017 ......
## Node1018 ......
## Node1019 ......
## Node1020 ......
## Node1021 ......
## Node1022 ......
## Node1023 ......
## Node1024 ......
## Node1025 ......
## Node1026 ......
## Node1027 ......
## Node1028 ......
## Node1029 ......
## Node1030 ......
## Node1031 ......
## Node1032 ......
## Node1033 ......
## Node1034 ......
## Node1035 ......
## Node1036 ......
## Node1037 ......
## Node1038 ......
## Node1039 ......
## Node1040 ......
## Node1041 ......
## Node1042 ......
## Node1043 ......
## Node1044 ......
## Node1045 ......
## Node1046 ......
## Node1047 ......
## Node1048 ......
## Node1049 ......
## Node1050 ......
## Node1051 ......
## Node1052 ......
## Node1053 ......
## Node1054 ......
## Node1055 ......
## Node1056 ......
## Node1057 ......
## Node1058 ......
## Node1059 ......
## Node1060 ......
## Node1061 ......
## Node1062 ......
## Node1063 ......
## Node1064 ......
## Node1065 ......
## Node1066 ......
## Node1067 ......
## Node1068 ......
## Node1069 ......
## Node1070 ......
## Node1071 ......
## Node1072 ......
## Node1073 ......
## Node1074 ......
## Node1075 ......
## Node1076 ......
## Node1077 ......
## Node1078 ......
## Node1079 ......
## Node1080 ......
## Node1081 ......
## Node1082 ......
## Node1083 ......
## Node1084 ......
## Node1085 ......
## Node1086 ......
## Node1087 ......
## Node1088 ......
## Node1089 ......
## Node1090 ......
## Node1091 ......
## Node1092 ......
## Node1093 ......
## Node1094 ......
## Node1095 ......
## Node1096 ......
## Node1097 ......
## Node1098 ......
## Node1099 ......
## Node1100 ......
## Node1101 ......
## Node1102 ......
## Node1103 ......
## Node1104 ......
## Node1105 ......
## Node1106 ......
## Node1107 ......
## Node1108 ......
## Node1109 ......
## Node1110 ......
## Node1111 ......
## Node1112 ......
## Node1113 ......
## Node1114 ......
## Node1115 ......
## Node1116 ......
## Node1117 ......
## Node1118 ......
## Node1119 ......
## Node1120 ......
## Node1121 ......
## Node1122 ......
## Node1123 ......
## Node1124 ......
## Node1125 ......
## Node1126 ......
## Node1127 ......
## Node1128 ......
## Node1129 ......
## Node1130 ......
## Node1131 ......
## Node1132 ......
## Node1133 ......
## Node1134 ......
## Node1135 ......
## Node1136 ......
## Node1137 ......
## Node1138 ......
## Node1139 ......
## Node1140 ......
## Node1141 ......
## Node1142 ......
## Node1143 ......
## Node1144 ......
## Node1145 ......
## Node1146 ......
## Node1147 ......
## Node1148 ......
## Node1149 ......
## Node1150 ......
## Node1151 ......
## Node1152 ......
## Node1153 ......
## Node1154 ......
## Node1155 ......
## Node1156 ......
## Node1157 ......
## Node1158 ......
## Node1159 ......
## Node1160 ......
## Node1161 ......
## Node1162 ......
## Node1163 ......
## Node1164 ......
## Node1165 ......
## Node1166 ......
## Node1167 ......
## Node1168 ......
## Node1169 ......
## Node1170 ......
## Node1171 ......
## Node1172 ......
## Node1173 ......
## Node1174 ......
## Node1175 ......
## Node1176 ......
## Node1177 ......
## Node1178 ......
## Node1179 ......
## Node1180 ......
## Node1181 ......
## Node1182 ......
## Node1183 ......
## Node1184 ......
## Node1185 ......
## Node1186 ......
## Node1187 ......
## Node1188 ......
## Node1189 ......
## Node1190 ......
## Node1191 ......
## Node1192 ......
## Node1193 ......
## Node1194 ......
## Node1195 ......
## Node1196 ......
## Node1197 ......
## Node1198 ......
## Node1199 ......
## Node1200 ......
## Node1201 ......
## Node1202 ......
## Node1203 ......
## Node1204 ......
## Node1205 ......
## Node1206 ......
## Node1207 ......
## Node1208 ......
## Node1209 ......
## Node1210 ......
## Node1211 ......
## Node1212 ......
## Node1213 ......
## Node1214 ......
## Node1215 ......
## Node1216 ......
## Node1217 ......
## Node1218 ......
## Node1219 ......
## Node1220 ......
## Node1221 ......
## Node1222 ......
## Node1223 ......
## Node1224 ......
## Node1225 ......
## Node1226 ......
## Node1227 ......
## Node1228 ......
## Node1229 ......
## Node1230 ......
## Node1231 ......
## Node1232 ......
## Node1233 ......
## Node1234 ......
## Node1235 ......
## Node1236 ......
## Node1237 ......
## Node1238 ......
## Node1239 ......
## Node1240 ......
## Node1241 ......
## Node1242 ......
## Node1243 ......
## Node1244 ......
## Node1245 ......
## Node1246 ......
## Node1247 ......
## Node1248 ......
## Node1249 ......
## Node1250 ......
## Node1251 ......
## Node1252 ......
## Node1253 ......
## Node1254 ......
## Node1255 ......
## Node1256 ......
## Node1257 ......
## Node1258 ......
## Node1259 ......
## Node1260 ......
## Node1261 ......
## Node1262 ......
## Node1263 ......
## Node1264 ......
## Node1265 ......
## Node1266 ......
## Node1267 ......
## Node1268 ......
## Node1269 ......
## Node1270 ......
## Node1271 ......
## Node1272 ......
## Node1273 ......
## Node1274 ......
## Node1275 ......
## Node1276 ......
## Node1277 ......
## Node1278 ......
## Node1279 ......
## Node1280 ......
## Node1281 ......
## Node1282 ......
## Node1283 ......
## Node1284 ......
## Node1285 ......
## Node1286 ......
## Node1287 ......
## Node1288 ......
## Node1289 ......
## Node1290 ......
## Node1291 ......
## Node1292 ......
## Node1293 ......
## Node1294 ......
## Node1295 ......
## Node1296 ......
## Node1297 ......
## Node1298 ......
## Node1299 ......
## Node1300 ......
## Node1301 ......
## Node1302 ......
## Node1303 ......
## Node1304 ......
## Node1305 ......
## Node1306 ......
## Node1307 ......
## Node1308 ......
## Node1309 ......
## Node1310 ......
## Node1311 ......
## Node1312 ......
## Node1313 ......
## Node1314 ......
## Node1315 ......
## Node1316 ......
## Node1317 ......
## Node1318 ......
## Node1319 ......
## Node1320 ......
## Node1321 ......
## Node1322 ......
## Node1323 ......
## Node1324 ......
## Node1325 ......
## Node1326 ......
## Node1327 ......
## Node1328 ......
## Node1329 ......
## Node1330 ......
## Node1331 ......
## Node1332 ......
## Node1333 ......
## Node1334 ......
## Node1335 ......
## Node1336 ......
## Node1337 ......
## Node1338 ......
## Node1339 ......
## Node1340 ......
## Node1341 ......
## Node1342 ......
## Node1343 ......
## Node1344 ......
## Node1345 ......
## Node1346 ......
## Node1347 ......
## Node1348 ......
## Node1349 ......
## Node1350 ......
## Node1351 ......
## Node1352 ......
## Node1353 ......
## Node1354 ......
## Node1355 ......
## Node1356 ......
## Node1357 ......
## Node1358 ......
## Node1359 ......
## Node1360 ......
## Node1361 ......
## Node1362 ......
## Node1363 ......
## Node1364 ......
## Node1365 ......
## Node1366 ......
## Node1367 ......
## Node1368 ......
## Node1369 ......
## Node1370 ......
## Node1371 ......
## Node1372 ......
## Node1373 ......
## Node1374 ......
## Node1375 ......
## Node1376 ......
## Node1377 ......
## Node1378 ......
## Node1379 ......
## Node1380 ......
## Node1381 ......
## Node1382 ......
## Node1383 ......
## Node1384 ......
## Node1385 ......
## Node1386 ......
## Node1387 ......
## Node1388 ......
## Node1389 ......
## Node1390 ......
## Node1391 ......
## Node1392 ......
## Node1393 ......
## Node1394 ......
## Node1395 ......
## Node1396 ......
## Node1397 ......
## Node1398 ......
## Node1399 ......
## Node1400 ......
## Node1401 ......
## Node1402 ......
## Node1403 ......
## Node1404 ......
## Node1405 ......
## Node1406 ......
## Node1407 ......
## Node1408 ......
## Node1409 ......
## Node1410 ......
## Node1411 ......
## Node1412 ......
## Node1413 ......
## Node1414 ......
## Node1415 ......
## Node1416 ......
## Node1417 ......
## Node1418 ......
## Node1419 ......
## Node1420 ......
## Node1421 ......
## Node1422 ......
## Node1423 ......
## Node1424 ......
## Node1425 ......
## Node1426 ......
## Node1427 ......
## Node1428 ......
## Node1429 ......
## Node1430 ......
## Node1431 ......
## Node1432 ......
## Node1433 ......
## Node1434 ......
## Node1435 ......
## Node1436 ......
## Node1437 ......
## Node1438 ......
## Node1439 ......
## Node1440 ......
## Node1441 ......
## Node1442 ......
## Node1443 ......
## Node1444 ......
## Node1445 ......
## Node1446 ......
## Node1447 ......
## Node1448 ......
## Node1449 ......
## Node1450 ......
## Node1451 ......
## Node1452 ......
## Node1453 ......
## Node1454 ......
## Node1455 ......
## Node1456 ......
## Node1457 ......
## Node1458 ......
## Node1459 ......
## Node1460 ......
## Node1461 ......
## Node1462 ......
## Node1463 ......
## Node1464 ......
## Node1465 ......
## Node1466 ......
## Node1467 ......
## Node1468 ......
## Node1469 ......
## Node1470 ......
## Node1471 ......
## Node1472 ......
## Node1473 ......
## Node1474 ......
## Node1475 ......
## Node1476 ......
## Node1477 ......
## Node1478 ......
## Node1479 ......
## Node1480 ......
## Node1481 ......
## Node1482 ......
## Node1483 ......
## Node1484 ......
## Node1485 ......
## Node1486 ......
## Node1487 ......
## Node1488 ......
## Node1489 ......
## Node1490 ......
## Node1491 ......
## Node1492 ......
## Node1493 ......
## Node1494 ......
## Node1495 ......
## Node1496 ......
## Node1497 ......
## Node1498 ......
## Node1499 ......
## Node1500 ......
## Node1501 ......
## Node1502 ......
## Node1503 ......
## Node1504 ......
## Node1505 ......
## Node1506 ......
## Node1507 ......
## Node1508 ......
## Node1509 ......
## Node1510 ......
## Node1511 ......
## Node1512 ......
## Node1513 ......
## Node1514 ......
## Node1515 ......
## Node1516 ......
## Node1517 ......
## Node1518 ......
## Node1519 ......
## Node1520 ......
## Node1521 ......
## Node1522 ......
## Node1523 ......
## Node1524 ......
## Node1525 ......
## Node1526 ......
## Node1527 ......
## Node1528 ......
## Node1529 ......
## Node1530 ......
## Node1531 ......
## Node1532 ......
## Node1533 ......
## Node1534 ......
## Node1535 ......
## Node1536 ......
## Node1537 ......
## Node1538 ......
## Node1539 ......
## Node1540 ......
## Node1541 ......
## Node1542 ......
## Node1543 ......
## Node1544 ......
## Node1545 ......
## Node1546 ......
## Node1547 ......
## Node1548 ......
## Node1549 ......
## Node1550 ......
## Node1551 ......
## Node1552 ......
## Node1553 ......
## Node1554 ......
## Node1555 ......
## Node1556 ......
## Node1557 ......
## Node1558 ......
## Node1559 ......
## Node1560 ......
## Node1561 ......
## Node1562 ......
## Node1563 ......
## Node1564 ......
## Node1565 ......
## Node1566 ......
## Node1567 ......
## Node1568 ......
## Node1569 ......
## Node1570 ......
## Node1571 ......
## Node1572 ......
## Node1573 ......
## Node1574 ......
## Node1575 ......
## Node1576 ......
## Node1577 ......
## Node1578 ......
## Node1579 ......
## Node1580 ......
## Node1581 ......
## Node1582 ......
## Node1583 ......
## Node1584 ......
## Node1585 ......
## Node1586 ......
## Node1587 ......
## Node1588 ......
## Node1589 ......
## Node1590 ......
## Node1591 ......
## Node1592 ......
## Node1593 ......
## Node1594 ......
## Node1595 ......
## Node1596 ......
## Node1597 ......
## Node1598 ......
## Node1599 ......
## Node1600 ......
## Node1601 ......
## Node1602 ......
## Node1603 ......
## Node1604 ......
## Node1605 ......
## Node1606 ......
## Node1607 ......
## Node1608 ......
## Node1609 ......
## Node1610 ......
## Node1611 ......
## Node1612 ......
## Node1613 ......
## Node1614 ......
## Node1615 ......
## Node1616 ......
## Node1617 ......
## Node1618 ......
## Node1619 ......
## Node1620 ......
## Node1621 ......
## Node1622 ......
## Node1623 ......
## Node1624 ......
## Node1625 ......
## Node1626 ......
## Node1627 ......
## Node1628 ......
## Node1629 ......
## Node1630 ......
## Node1631 ......
## Node1632 ......
## Node1633 ......
## Node1634 ......
## Node1635 ......
## Node1636 ......
## Node1637 ......
## Node1638 ......
## Node1639 ......
## Node1640 ......
## Node1641 ......
## Node1642 ......
## Node1643 ......
## Node1644 ......
## Node1645 ......
## Node1646 ......
## Node1647 ......
## Node1648 ......
## Node1649 ......
## Node1650 ......
## Node1651 ......
## Node1652 ......
## Node1653 ......
## Node1654 ......
## Node1655 ......
## Node1656 ......
## Node1657 ......
## Node1658 ......
## Node1659 ......
## Node1660 ......
## Node1661 ......
## Node1662 ......
## Node1663 ......
## Node1664 ......
## Node1665 ......
## Node1666 ......
## Node1667 ......
## Node1668 ......
## Node1669 ......
## Node1670 ......
## Node1671 ......
## Node1672 ......
## Node1673 ......
## Node1674 ......
## Node1675 ......
## Node1676 ......
## Node1677 ......
## Node1678 ......
## Node1679 ......
## Node1680 ......
## Node1681 ......
## Node1682 ......
## Node1683 ......
## Node1684 ......
## Node1685 ......
## Node1686 ......
## Node1687 ......
## Node1688 ......
## Node1689 ......
## Node1690 ......
## Node1691 ......
## Node1692 ......
## Node1693 ......
## Node1694 ......
## Node1695 ......
## Node1696 ......
## Node1697 ......
## Node1698 ......
## Node1699 ......
## Node1700 ......
## Node1701 ......
## Node1702 ......
## Node1703 ......
## Node1704 ......
## Node1705 ......
## Node1706 ......
## Node1707 ......
## Node1708 ......
## Node1709 ......
## Node1710 ......
## Node1711 ......
## Node1712 ......
## Node1713 ......
## Node1714 ......
## Node1715 ......
## Node1716 ......
## Node1717 ......
## Node1718 ......
## Node1719 ......
## Node1720 ......
## Node1721 ......
## Node1722 ......
## Node1723 ......
## Node1724 ......
## Node1725 ......
## Node1726 ......
## Node1727 ......
## Node1728 ......
## Node1729 ......
## Node1730 ......
## Node1731 ......
## Node1732 ......
## Node1733 ......
## Node1734 ......
## Node1735 ......
## Node1736 ......
## Node1737 ......
## Node1738 ......
## Node1739 ......
## Node1740 ......
## Node1741 ......
## Node1742 ......
## Node1743 ......
## Node1744 ......
## Node1745 ......
## Node1746 ......
## Node1747 ......
## Node1748 ......
## Node1749 ......
## Node1750 ......
## Node1751 ......
## Node1752 ......
## Node1753 ......
## Node1754 ......
## Node1755 ......
## Node1756 ......
## Node1757 ......
## Node1758 ......
## Node1759 ......
## Node1760 ......
## Node1761 ......
## Node1762 ......
## Node1763 ......
## Node1764 ......
## Node1765 ......
## Node1766 ......
## Node1767 ......
## Node1768 ......
## Node1769 ......
## Node1770 ......
## Node1771 ......
## Node1772 ......
## Node1773 ......
## Node1774 ......
## Node1775 ......
## Node1776 ......
## Node1777 ......
## Node1778 ......
## Node1779 ......
## Node1780 ......
## Node1781 ......
## Node1782 ......
## Node1783 ......
## Node1784 ......
## Node1785 ......
## Node1786 ......
## Node1787 ......
## Node1788 ......
## Node1789 ......
## Node1790 ......
## Node1791 ......
## Node1792 ......
## Node1793 ......
## Node1794 ......
## Node1795 ......
## Node1796 ......
## Node1797 ......
## Node1798 ......
## Node1799 ......
## Node1800 ......
## Node1801 ......
## Node1802 ......
## Node1803 ......
## Node1804 ......
## Node1805 ......
## Node1806 ......
## Node1807 ......
## Node1808 ......
## Node1809 ......
## Node1810 ......
## Node1811 ......
## Node1812 ......
## Node1813 ......
## Node1814 ......
## Node1815 ......
## Node1816 ......
## Node1817 ......
## Node1818 ......
## Node1819 ......
## Node1820 ......
## Node1821 ......
## Node1822 ......
## Node1823 ......
## Node1824 ......
## Node1825 ......
## Node1826 ......
## Node1827 ......
## Node1828 ......
## Node1829 ......
## Node1830 ......
## Node1831 ......
## Node1832 ......
## Node1833 ......
## Node1834 ......
## Node1835 ......
## Node1836 ......
## Node1837 ......
## Node1838 ......
## Node1839 ......
## Node1840 ......
## Node1841 ......
## Node1842 ......
## Node1843 ......
## Node1844 ......
## Node1845 ......
## Node1846 ......
## Node1847 ......
## Node1848 ......
## Node1849 ......
## Node1850 ......
## Node1851 ......
## Node1852 ......
## Node1853 ......
## Node1854 ......
## Node1855 ......
## Node1856 ......
## Node1857 ......
## Node1858 ......
## Node1859 ......
## Node1860 ......
## Node1861 ......
## Node1862 ......
## Node1863 ......
## Node1864 ......
## Node1865 ......
## Node1866 ......
## Node1867 ......
## Node1868 ......
## Node1869 ......
## Node1870 ......
## Node1871 ......
## Node1872 ......
## Node1873 ......
## Node1874 ......
## Node1875 ......
## Node1876 ......
## Node1877 ......
## Node1878 ......
## Node1879 ......
## Node1880 ......
## Node1881 ......
## Node1882 ......
## Node1883 ......
## Node1884 ......
## Node1885 ......
## Node1886 ......
## Node1887 ......
## Node1888 ......
## Node1889 ......
## Node1890 ......
## Node1891 ......
## Node1892 ......
## Node1893 ......
## Node1894 ......
## Node1895 ......
## Node1896 ......
## Node1897 ......
## Node1898 ......
## Node1899 ......
## Node1900 ......
## Node1901 ......
## Node1902 ......
## Node1903 ......
## Node1904 ......
## Node1905 ......
## Node1906 ......
## Node1907 ......
## Node1908 ......
## Node1909 ......
## Node1910 ......
## Node1911 ......
## Node1912 ......
## Node1913 ......
## Node1914 ......
## Node1915 ......
## Node1916 ......
## Node1917 ......
## Node1918 ......
## Node1919 ......
## Node1920 ......
## Node1921 ......
## Node1922 ......
## Node1923 ......
## Node1924 ......
## Node1925 ......
## Node1926 ......
## Node1927 ......
## Node1928 ......
## Node1929 ......
## Node1930 ......
## Node1931 ......
## Node1932 ......
## Node1933 ......
## Node1934 ......
## Node1935 ......
## Node1936 ......
## Node1937 ......
## Node1938 ......
## Node1939 ......
## Node1940 ......
## Node1941 ......
## Node1942 ......
## Node1943 ......
## Node1944 ......
## Node1945 ......
## Node1946 ......
## Node1947 ......
## Node1948 ......
## Node1949 ......
## Node1950 ......
## Node1951 ......
## Node1952 ......
## Node1953 ......
## Node1954 ......
## Node1955 ......
## Node1956 ......
## Node1957 ......
## Node1958 ......
## Node1959 ......
## Node1960 ......
## Node1961 ......
## Node1962 ......
## Node1963 ......
## Node1964 ......
## Node1965 ......
## Node1966 ......
## Node1967 ......
## Node1968 ......
## Node1969 ......
## Node1970 ......
## Node1971 ......
## Node1972 ......
## Node1973 ......
## Node1974 ......
## Node1975 ......
## Node1976 ......
## Node1977 ......
## Node1978 ......
## Node1979 ......
## Node1980 ......
## Node1981 ......
## Node1982 ......
## Node1983 ......
## Node1984 ......
## Node1985 ......
## Node1986 ......
## Node1987 ......
## Node1988 ......
## Node1989 ......
## Node1990 ......
## Node1991 ......
## Node1992 ......
## Node1993 ......
## Node1994 ......
## Node1995 ......
## Node1996 ......
## Node1997 ......
## Node1998 ......
## Node1999 ......
## Node2000 ......
## Node2001 ......
## Node2002 ......
## Node2003 ......
## Node2004 ......
## Node2005 ......
## Node2006 ......
## Node2007 ......
## Node2008 ......
## Node2009 ......
## Node2010 ......
## Node2011 ......
## Node2012 ......
## Node2013 ......
## Node2014 ......
## Node2015 ......
## Node2016 ......
## Node2017 ......
## Node2018 ......
## Node2019 ......
## Node2020 ......

It is easy to convert a pf or pfc into a phylo object for ape. It is also simple to make a pf or pfc from a phylo object.

pf_as_phylo(bird_beak_codes)
## 
## Phylogenetic tree with 2021 tips and 2020 internal nodes.
## 
## Tip labels:
##   Nothocercus_bonapartei, Tinamus_guttatus, Crypturellus_variegatus, Eudromia_elegans, Tinamotis_pentlandii, Taoniscus_nanus, ...
## Node labels:
##   root, Node2, Node3, Node4, Node5, Node6, ...
## 
## Rooted; includes branch lengths.

It is easy to convert a pf or pfc into a phylo object for ape. It is also simple to make a pf or pfc from a phylo object.

pf_as_phylo(bird_beak_codes)
## 
## Phylogenetic tree with 2021 tips and 2020 internal nodes.
## 
## Tip labels:
##   Nothocercus_bonapartei, Tinamus_guttatus, Crypturellus_variegatus, Eudromia_elegans, Tinamotis_pentlandii, Taoniscus_nanus, ...
## Node labels:
##   root, Node2, Node3, Node4, Node5, Node6, ...
## 
## Rooted; includes branch lengths.
pf_as_pf(ape::rtree(100))
## # A tibble: 198 × 3
##    label is_tip phlo                                                            
##    <chr> <lgl>  <pfc>                                                           
##  1 t40   TRUE   ◎── 0.42──→ Node2 ── 0.98──→ No── 0.95──→ Node6 ── 0.11──→ t40 
##  2 t71   TRUE   ◎── 0.42──→ Node2 ── 0.98──→ No── 0.95──→ Node6 ── 0.67──→ t71 
##  3 t29   TRUE   ◎── 0.42──→ Node2 ── 0.98──→ No── 0.31──→ Node8 ── 0.47──→ t29 
##  4 t73   TRUE   ◎── 0.42──→ Node2 ── 0.98──→ No── 0.55──→ Node9 ── 0.91──→ t73 
##  5 t69   TRUE   ◎── 0.42──→ Node2 ── 0.98──→ No 0.22──→ Node10 ── 0.99──→ t69 
##  6 t44   TRUE   ◎── 0.42──→ Node2 ── 0.98──→ No 0.22──→ Node10 ── 0.51──→ t44 
##  7 t41   TRUE   ◎── 0.42──→ Node2 ── 0.98──→ No── 0.53──→ Node7 ── 0.94──→ t41 
##  8 t9    TRUE   ◎──0.417──→ Node2 ──0.976──→ No──0.268──→ Node11 ──0.075──→ t9 
##  9 t50   TRUE   ◎── 0.42──→ Node2 ── 0.98──→ No 0.27──→ Node11 ── 0.03──→ t50 
## 10 t89   TRUE   ◎── 0.42──→ Node2 ── 0.98──→ No 0.97──→ Node15 ── 0.62──→ t89 
## # … with 188 more rows

The data we are interested in for this example are ‘latent codes’ that were estimated previously in a deep learning model trained in PyTorch (using Python). The model has been ported over to R (using the torch package). Let’s have a look at them. One can use any tidyverse ‘verbs’ on a pf object.

codes <- bird_beak_codes %>%
  select(label, starts_with("latent"))
codes
## # A tibble: 4,040 × 65
##    label latent…¹ latent…² latent…³ latent…⁴ latent…⁵ latent…⁶ latent…⁷ latent…⁸
##    <chr>    <dbl>    <dbl>    <dbl>    <dbl>    <dbl>    <dbl>    <dbl>    <dbl>
##  1 Noth… -0.0161  -0.0136   1.24e-2  1.98e-2 -0.00688 -7.59e-3  0.0108  -1.32e-2
##  2 Tina… -0.0340   0.00552 -9.60e-3  1.22e-2  0.0103  -1.00e-3  0.00893 -1.42e-2
##  3 Cryp…  0.0331   0.00167  2.50e-2  6.08e-5  0.0282  -1.98e-2  0.0200  -2.61e-2
##  4 Eudr… -0.00106 -0.00979  4.76e-3  1.16e-2  0.00525 -1.86e-2  0.00342  2.71e-4
##  5 Tina… -0.00351  0.0102   2.10e-2  9.94e-3 -0.00417  6.78e-3  0.0193  -2.00e-2
##  6 Taon…  0.0172  -0.00950 -5.07e-4 -4.22e-3 -0.00667  9.04e-3  0.00534 -1.62e-2
##  7 Noth… -0.0151  -0.0192  -1.95e-2  9.56e-4 -0.00341 -3.01e-5  0.00630 -6.54e-3
##  8 Rhyn… -0.0114  -0.00769 -1.80e-2  9.75e-3  0.0102   6.55e-4  0.0200  -1.76e-2
##  9 Noth… -0.0102   0.0104  -1.64e-2  3.01e-4  0.0317   1.10e-2  0.0235  -1.78e-2
## 10 Rhea…  0.0259   0.00994  1.10e-3  3.09e-3 -0.00237 -1.65e-3 -0.00916  2.13e-2
## # … with 4,030 more rows, 56 more variables: latent_code_9 <dbl>,
## #   latent_code_10 <dbl>, latent_code_11 <dbl>, latent_code_12 <dbl>,
## #   latent_code_13 <dbl>, latent_code_14 <dbl>, latent_code_15 <dbl>,
## #   latent_code_16 <dbl>, latent_code_17 <dbl>, latent_code_18 <dbl>,
## #   latent_code_19 <dbl>, latent_code_20 <dbl>, latent_code_21 <dbl>,
## #   latent_code_22 <dbl>, latent_code_23 <dbl>, latent_code_24 <dbl>,
## #   latent_code_25 <dbl>, latent_code_26 <dbl>, latent_code_27 <dbl>, …

What do the first few look like?

plot(as_tibble(codes) %>% select(latent_code_1, latent_code_2))

Exercise 1

Look at the standard deviation of every latent trait. Do you see any pattern? How is this different from what you’d expect from, for example, PCA? Use the box below to try stuff out:

Plotting pf object is also simple. Just plot the tree by calling plot(). To plot a data column with the tree use the autoplot() method:

plot(bird_beak_codes, type = "fan")

autoplot(bird_beak_codes, latent_code_1)

Exercise 2

Plot the tow more latent codes on the phylogeny as separate plots (any ones). Add them together with +. patchwork does the rest.

Let’s Run A Model

Choose a Clad to Model

Even though fibre is pretty fast, we might not want to spend the time to fit a model to all 64 variables for all ~13,000 or so edges in the phylogeny (though this would take less than half an hour). So, the first thing we will do it filter our dataset to some clade of interest, and in the process learn how you can easily filter a pf to a subtree.

We will use the pf_filter_with_mrca() function. pf_filter_with_mrca() filters a pf with an index into the phylogenetic pfc. It doesn’t just filter on that index, but instead finds the most recent common ancestor (MRCA) of the nodes referenced in the index. It then filters to all elements of the pf that represent the descendants of that MRCA. This way you can just feed in a set of species that represent the clade, and the filter will return all species in the clade as well as the internal nodes. Here is an example that returns all of the tips and internal nodes in the Pelecaniformes, by indexing with just two species whose MRCA is the root node of the clade.

## use spoonbill and pelican
Pelecaniformes <- bird_beak_codes %>%
  pf_filter_with_mrca(label %in% c("Platalea_leucorodia", "Pelecanus_crispus"))
plot(Pelecaniformes)

We can use any filter() style syntax with this function. Here we use the "Order" column to get just “Tinamiformes”.

## use spoonbill and pelican
Tinamiformes <- bird_beak_codes %>%
  pf_filter_with_mrca(Order == "TINAMIFORMES")
plot(Tinamiformes)

Use the box below to filter bird_beak_codes to whatever subset of species you want. You will probably want at least a few hundred species to really show the capabilities of fibre

fibre accepts a matrix as the left hand side of the formula to save having to type out a large number of variables. For smaller numbers of traits, you could use the following syntax as well: trait_1 + trait_2 + trait_3 ~ bre_brownian(phlo). fibre currently only supports a formula interface, but will soon support specifying the model by passing x and y matrices or data.frames, and also will support tidymodels recipe objects. This is how you would run the model for Pelecaniformes:

codes <- Pelecaniformes %>%
  select(starts_with("latent_")) %>%
  as.matrix() %>%
  scale()

Pelecaniformes$codes <- codes
fit <- fibre(codes ~ bre_brownian(phlo, standardise = FALSE), data = Pelecaniformes, engine = "glmnet",
             family = "mgaussian", engine_options = list(trace.it = TRUE))
## 
  |                                                                            
  |                                                                      |   0%
  |                                                                            
  |                                                                      |   1%
  |                                                                            
  |=                                                                     |   1%
  |                                                                            
  |=                                                                     |   2%
  |                                                                            
  |==                                                                    |   2%
  |                                                                            
  |==                                                                    |   3%
  |                                                                            
  |==                                                                    |   4%
  |                                                                            
  |===                                                                   |   4%
  |                                                                            
  |===                                                                   |   5%
  |                                                                            
  |====                                                                  |   5%
  |                                                                            
  |====                                                                  |   6%
  |                                                                            
  |=====                                                                 |   6%
  |                                                                            
  |=====                                                                 |   7%
  |                                                                            
  |=====                                                                 |   8%
  |                                                                            
  |======                                                                |   8%
  |                                                                            
  |======                                                                |   9%
  |                                                                            
  |=======                                                               |   9%
  |                                                                            
  |=======                                                               |  10%
  |                                                                            
  |=======                                                               |  11%
  |                                                                            
  |========                                                              |  11%
  |                                                                            
  |========                                                              |  12%
  |                                                                            
  |=========                                                             |  12%
  |                                                                            
  |=========                                                             |  13%
  |                                                                            
  |=========                                                             |  14%
  |                                                                            
  |==========                                                            |  14%
  |                                                                            
  |==========                                                            |  15%
  |                                                                            
  |===========                                                           |  15%
  |                                                                            
  |===========                                                           |  16%
  |                                                                            
  |============                                                          |  16%
  |                                                                            
  |============                                                          |  17%
  |                                                                            
  |============                                                          |  18%
  |                                                                            
  |=============                                                         |  18%
  |                                                                            
  |=============                                                         |  19%
  |                                                                            
  |==============                                                        |  19%
  |                                                                            
  |==============                                                        |  20%
  |                                                                            
  |==============                                                        |  21%
  |                                                                            
  |===============                                                       |  21%
  |                                                                            
  |===============                                                       |  22%
  |                                                                            
  |================                                                      |  22%
  |                                                                            
  |================                                                      |  23%
  |                                                                            
  |================                                                      |  24%
  |                                                                            
  |=================                                                     |  24%
  |                                                                            
  |=================                                                     |  25%
  |                                                                            
  |==================                                                    |  25%
  |                                                                            
  |==================                                                    |  26%
  |                                                                            
  |===================                                                   |  26%
  |                                                                            
  |===================                                                   |  27%
  |                                                                            
  |===================                                                   |  28%
  |                                                                            
  |====================                                                  |  28%
  |                                                                            
  |====================                                                  |  29%
  |                                                                            
  |=====================                                                 |  29%
  |                                                                            
  |=====================                                                 |  30%
  |                                                                            
  |=====================                                                 |  31%
  |                                                                            
  |======================                                                |  31%
  |                                                                            
  |======================                                                |  32%
  |                                                                            
  |=======================                                               |  32%
  |                                                                            
  |=======================                                               |  33%
  |                                                                            
  |=======================                                               |  34%
  |                                                                            
  |========================                                              |  34%
  |                                                                            
  |========================                                              |  35%
  |                                                                            
  |=========================                                             |  35%
  |                                                                            
  |=========================                                             |  36%
  |                                                                            
  |==========================                                            |  36%
  |                                                                            
  |==========================                                            |  37%
  |                                                                            
  |==========================                                            |  38%
  |                                                                            
  |===========================                                           |  38%
  |                                                                            
  |===========================                                           |  39%
  |                                                                            
  |============================                                          |  39%
  |                                                                            
  |============================                                          |  40%
  |                                                                            
  |======================================================================| 100%
fit
## A <fibre> model with 1 phylogenetic random effect
## ── Fixed Effects ───────────────────────────────────────────────────────────────
## 
##      parameter                    y          coef         dotplot
## 1  (Intercept)  codes.latent_code_1  0.1416822478       |  ◉     
## 2  (Intercept)  codes.latent_code_2 -0.0818167419      ◉|        
## 3  (Intercept)  codes.latent_code_3  0.3848107647       |       ◉
## 4  (Intercept)  codes.latent_code_4 -0.0692845918      ◉|        
## 5  (Intercept)  codes.latent_code_5  0.0409859302       |◉       
## 6  (Intercept)  codes.latent_code_6 -0.1440203330     ◉ |        
## 7  (Intercept)  codes.latent_code_7 -0.2067716674   ◉   |        
## 8  (Intercept)  codes.latent_code_8  0.2340426696       |    ◉   
## 9  (Intercept)  codes.latent_code_9  0.0394939080       |◉       
## 10 (Intercept) codes.latent_code_10  0.1665669326       |   ◉    
## 11 (Intercept) codes.latent_code_11 -0.0593991383      ◉|        
## 12 (Intercept) codes.latent_code_12 -0.3316583460 ◉     |        
## 13 (Intercept) codes.latent_code_13 -0.0213140380       ◉        
## 14 (Intercept) codes.latent_code_14  0.1376078033       |  ◉     
## 15 (Intercept) codes.latent_code_15  0.3006026929       |      ◉ 
## 16 (Intercept) codes.latent_code_16  0.0566529501       | ◉      
## 17 (Intercept) codes.latent_code_17 -0.0166749314       ◉        
## 18 (Intercept) codes.latent_code_18  0.0703495033       | ◉      
## 19 (Intercept) codes.latent_code_19  0.2101697788       |    ◉   
## 20 (Intercept) codes.latent_code_20  0.1121428617       |  ◉     
## 21 (Intercept) codes.latent_code_21  0.2466298007       |    ◉   
## 22 (Intercept) codes.latent_code_22  0.1952151357       |   ◉    
## 23 (Intercept) codes.latent_code_23  0.0697703288       | ◉      
## 24 (Intercept) codes.latent_code_24 -0.2127517437   ◉   |        
## 25 (Intercept) codes.latent_code_25  0.0812837355       | ◉      
## 26 (Intercept) codes.latent_code_26 -0.0775307464      ◉|        
## 27 (Intercept) codes.latent_code_27 -0.1375710021     ◉ |        
## 28 (Intercept) codes.latent_code_28  0.0148413025       |◉       
## 29 (Intercept) codes.latent_code_29  0.1529119656       |   ◉    
## 30 (Intercept) codes.latent_code_30 -0.0424092814       ◉        
## 31 (Intercept) codes.latent_code_31 -0.1437979968     ◉ |        
## 32 (Intercept) codes.latent_code_32  0.0577858410       | ◉      
## 33 (Intercept) codes.latent_code_33  0.1618345115       |   ◉    
## 34 (Intercept) codes.latent_code_34  0.0358031067       |◉       
## 35 (Intercept) codes.latent_code_35  0.1160683701       |  ◉     
## 36 (Intercept) codes.latent_code_36  0.0613689517       | ◉      
## 37 (Intercept) codes.latent_code_37 -0.0006853361       ◉        
## 38 (Intercept) codes.latent_code_38  0.1197485304       |  ◉     
## 39 (Intercept) codes.latent_code_39  0.0774891949       | ◉      
## 40 (Intercept) codes.latent_code_40 -0.0953581976      ◉|        
## 41 (Intercept) codes.latent_code_41  0.1209296395       |  ◉     
## 42 (Intercept) codes.latent_code_42  0.1607485005       |   ◉    
## 43 (Intercept) codes.latent_code_43 -0.1392584689     ◉ |        
## 44 (Intercept) codes.latent_code_44  0.0699538535       | ◉      
## 45 (Intercept) codes.latent_code_45 -0.1079511924     ◉ |        
## 46 (Intercept) codes.latent_code_46  0.1755533123       |   ◉    
## 47 (Intercept) codes.latent_code_47 -0.0375922989       ◉        
## 48 (Intercept) codes.latent_code_48  0.1856970506       |   ◉    
## 49 (Intercept) codes.latent_code_49 -0.1861812247    ◉  |        
## 50 (Intercept) codes.latent_code_50 -0.1840058777    ◉  |        
## 51 (Intercept) codes.latent_code_51  0.1462697546       |  ◉     
## 52 (Intercept) codes.latent_code_52  0.0857799854       | ◉      
## 53 (Intercept) codes.latent_code_53  0.0384072244       |◉       
## 54 (Intercept) codes.latent_code_54  0.0113146508       |◉       
## 55 (Intercept) codes.latent_code_55 -0.0107732530       ◉        
## 56 (Intercept) codes.latent_code_56 -0.1793123349    ◉  |        
## 57 (Intercept) codes.latent_code_57 -0.0474412499      ◉|        
## 58 (Intercept) codes.latent_code_58  0.0788551701       | ◉      
## 59 (Intercept) codes.latent_code_59  0.1881756043       |   ◉    
## 60 (Intercept) codes.latent_code_60 -0.2322158481   ◉   |        
## 61 (Intercept) codes.latent_code_61  0.1621520253       |   ◉    
## 62 (Intercept) codes.latent_code_62  0.0019602287       ◉        
## 63 (Intercept) codes.latent_code_63 -0.0326707300       ◉        
## 64 (Intercept) codes.latent_code_64 -0.1253037986     ◉ |
## ── Random Effect Hyper-Parameters ──────────────────────────────────────────────
## 
##       parameter      value         dotplot
## 1         sigma 0.25245325 |             ◉
## 2        lambda 0.07756074 |   ◉          
## 3 rate estimate 0.01467344 |◉
## ── Random Effects ('Rates') for `phlo` ─────────────────────────────────────────
## A Random Effect with 7040 estimated rates.
## First 10 highest rates:
##              parameter                    y      coef         dotplot
## 1              Node189 codes.latent_code_33 0.6691831 |             ◉
## 2              Node189 codes.latent_code_28 0.5122052 |          ◉   
## 3              Node207 codes.latent_code_11 0.4796583 |         ◉    
## 4              Node209 codes.latent_code_44 0.4519877 |         ◉    
## 5              Node207 codes.latent_code_42 0.4441678 |        ◉     
## 6              Node189 codes.latent_code_25 0.4419997 |        ◉     
## 7              Node189 codes.latent_code_31 0.4162843 |        ◉     
## 8  Platalea_leucorodia codes.latent_code_15 0.4095130 |        ◉     
## 9              Node189 codes.latent_code_11 0.4001663 |       ◉      
## 10             Node207  codes.latent_code_1 0.3943057 |       ◉
## ... with 7030 more rates.
##  Use `print(n = ...)` to see more rates.

Predict

preds <- Pelecaniformes %>%
  bind_cols(predict(fit, Pelecaniformes))

Extract ancestral predictions

pred_anc <- preds %>%
  filter(!is_tip) %>%
  mutate(norm = sqrt(rowSums(across(starts_with(".pred_codes.latent"), ~.x^2)))) %>%
  arrange(desc(norm))

pred_anc %>% select(label, norm)
## # A tibble: 55 × 2
##    label    norm
##    <chr>   <dbl>
##  1 Node193  6.39
##  2 Node194  6.33
##  3 Node192  6.08
##  4 Node191  5.31
##  5 Node218  5.14
##  6 Node190  4.98
##  7 Node189  4.65
##  8 Node233  4.56
##  9 Node231  4.56
## 10 Node234  4.55
## # … with 45 more rows

The above lists the edges with the largest predicted change across the 64 latent codes (the highest euclidean norm for the rates in the 64 dimensions)