From 8291562dd9449a86472a2fa39fb370d7c447998b Mon Sep 17 00:00:00 2001 From: Georg Hammerschmid <8532340+lepitaxa@users.noreply.github.com> Date: Wed, 21 May 2025 00:24:25 +0200 Subject: [PATCH 1/7] Fixed lepitest not handling b and z data points correctly, missing out on several flawed data lines --- index.html | 18 +++++++++--------- lepitest.js | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/index.html b/index.html index 7156ebe..74b4ec8 100644 --- a/index.html +++ b/index.html @@ -1669,7 +1669,7 @@ e Queen Victoria's Birdwing d Königin-Viktoria-Vogelflügler b Papilio -n gray, 1856 +n Gray, 1856 z Aetheoptera n Rippon, 1890 s2 Troides @@ -4556,7 +4556,7 @@ e Swarthy Skipper d Graubrauner Dickkopffalter b Hesperia -n lherminier Latreille, 1824 +n Latreille, 1824 s neamathla k fusca k julia @@ -12583,7 +12583,7 @@ e Antillean White d Antillenweißling b Appias punctifera -n d'Almeida, 1939 +n D'Almeida, 1939 g Udaiana a cynis e Malayan Forest White @@ -14131,9 +14131,9 @@ b Globiceps n C. & R. Felder, 1869 z Globiceps -n Felder, 1869 +n C. & R. Felder, 1869 z Gonophlebia -n Felder, 1870 +n C. & R. Felder, 1870 z Pseudopontia n Plötz, 1870 k australis @@ -14772,7 +14772,7 @@ d Südamerikanisches Pfauenauge b Papilio n Cramer, 1779 -b Junonia +z Junonia n Hübner, 1819 s2 Precis s4 Precis genoveva @@ -66672,7 +66672,7 @@ d Breitgebänderter Staudenspanner d Laub-Kleinspanner d Mausohrspanner -b halaena +b Phalaena n Linnaeus, 1758 s2 Ptychopoda s2 Sterrha @@ -77266,7 +77266,7 @@ n Mey, 2016 a meyi b Afroarabiella -n meyi Yakovlev, 2008 +n Yakovlev, 2008 a naumanni b Meyoarabiella n Yakovlev, 2020 @@ -78114,7 +78114,7 @@ b Castnia n Walker, 1854 a phalaris -b apilio +b Papilio n Fabricius, 1793 s argus s mimon diff --git a/lepitest.js b/lepitest.js index fbc0cb4..f90096e 100644 --- a/lepitest.js +++ b/lepitest.js @@ -29,10 +29,10 @@ var sf = 'The suffix of this taxon type must be "'; // Special characters and capitalization -if (!f.matches('.xp') && /( |\t)$/.test(d) || /( |\.\.|--| † †| agg. agg.)/g.test(d) || f.matches('.bs,.zs,p:not(.b,.z,.l,.xp)') && /"/g.test(d) || f.matches('.n,.r2,.p2') && / ,/g.test(d)) {i++; log += '[#' + i + s1 + 'Check for excess spaces, tabs, special characters or suffixes.\n'}; -if (f.matches('[class^="x"]:not(.xp),.f,.y,.t,.j,.h,.g,.i,.bs,.zs,.sh') && /[^A-z]/g.test(d)) {i++; log += '[#' + i + s1 + 'Allowed characters are A-Z and a-z only. Check for invalid spaces, tabs, line-breaks and special characters.\n'}; +if (!f.matches('.xp') && /( |\t)$/.test(d) || /( |\.\.|--| † †| agg. agg.)/g.test(d) || f.matches('p:not(.b,.z,.l,.xp)') && /"/g.test(d) || f.matches('.n,.r2,.p2') && / ,/g.test(d)) {i++; log += '[#' + i + s1 + 'Check for excess spaces, tabs, special characters or suffixes.\n'}; +if (f.matches('[class^="x"]:not(.xp),.f,.y,.t,.j,.h,.g,.i,.sh') && /[^A-z]/g.test(d) || f.matches('.b') && /[^A-z -]/g.test(f.firstElementChild.innerHTML) || f.matches('.z') && /[^A-z]/g.test(f.firstElementChild.innerHTML)) {i++; log += '[#' + i + s1 + 'Allowed characters are A-Z and a-z only. Check for invalid spaces, tabs, line-breaks and special characters.\n'}; if (f.matches('.o,.a,.ae,.c,.k,.u,.ue,.w,.v,.v2,.s,.s2,.s3,.s4') && /[^A-z-.†× ]/g.test(d)) {i++; log += '[#' + i + s1 + 'Allowed characters are A-Z, a-z and single spaces or hyphens only. Check for invalid tabs, line-breaks and special characters.\n'}; -if (f.matches('.bs,.zs,.ns,p:not(.b,.z,.n,.l,.p,.xp)') && /[^A-ZÄČÖÕÜ]/.test(d.substring(0,1)) || f.matches('.xp') && /[^A-Z]/.test(d.substring(1,2)) || f.matches('.bs,.zs,p:not(.xp,.b,.z,.n,.r,.r2,.l,.p,.p2,.e,.e2,.d,.d2)') && /[^a-z -.†×;]/.test(d.substring(1,d.length)) || f.matches('.xp') && /[^a-z]/.test(d.substring(2,d.length-2))) {i++; log += '[#' + i + s1 + 'Check for correct placement of uppercase and lowercase letters.\n'}; +if (f.matches('p:not(.b,.z,.l,.p,.xp)') && /[^A-ZÄČÖÕÜ]/.test(d.substring(0,1)) || f.matches('.xp') && /[^A-Z]/.test(d.substring(1,2)) || f.matches('.b,.z') && /[^A-Z]/.test(f.firstElementChild.innerHTML.substring(0,1)) || f.matches('p:not(.xp,.b,.z,.n,.r,.r2,.l,.p,.p2,.e,.e2,.d,.d2)') && /[^a-z -.†×;]/.test(d.substring(1,d.length)) || f.matches('.xp') && /[^a-z]/.test(d.substring(2,d.length-2)) || f.matches('.b,.z') && /[^a-z -]/.test(f.firstElementChild.innerHTML.substring(1,f.firstElementChild.innerHTML.length))) {i++; log += '[#' + i + s1 + 'Check for correct placement of uppercase and lowercase letters.\n'}; if (f.matches('.d,.d2,.e,.e2') && (/ [a-z]/g.test(d) && !(/(and|of|du|und|von)/.test(d)) || /( And | Of | Du | Und | Von )/.test(d))) {i++; log += '[#' + i + s1 + 'Check for correct placement of uppercase and lowercase letters.\n'}; if (f.matches('.d,.d2,.e,.e2') && /\d/g.test(d)) {i++; log += '[#' + i + s1 + 'No numeric characters allowed in common names, use words instead.\n'}; @@ -126,8 +126,8 @@ while (sib) { $$('.a,.ae,.c,.w').forEach(f=>{ var sib = f.nextElementSibling; while (sib) { - if (sib.matches('.z') && sib.nextElementSibling.nextElementSibling.matches('.z') && sib.innerHTML.localeCompare(sib.nextElementSibling.nextElementSibling.innerHTML, 'en') == 0) {i++; log += '[#' + i + s5 + convert(f.classList) + ' ' + f.innerHTML + '". "TS ' + sib.innerHTML + '" is listed twice within this ' + convert(f.classList) + '.\n'}; - if (sib.matches('.z') && sib.nextElementSibling.nextElementSibling.matches('.z') && sib.innerHTML.localeCompare(sib.nextElementSibling.nextElementSibling.innerHTML, 'en') == 1) {i++; log += '[#' + i + s6 + convert(f.classList) + ' ' + f.innerHTML + '". Place "TS ' + sib.innerHTML + '" in its correct alphabetical order within this ' + convert(f.classList) + '.\n'}; + if (sib.matches('.z') && sib.nextElementSibling.nextElementSibling.matches('.z') && sib.firstElementChild.innerHTML.localeCompare(sib.nextElementSibling.nextElementSibling.firstElementChild.innerHTML, 'en') == 0) {i++; log += '[#' + i + s5 + convert(f.classList) + ' ' + f.innerHTML + '". "TS ' + sib.firstElementChild.innerHTML + '" is listed twice within this ' + convert(f.classList) + '.\n'}; + if (sib.matches('.z') && sib.nextElementSibling.nextElementSibling.matches('.z') && sib.firstElementChild.innerHTML.localeCompare(sib.nextElementSibling.nextElementSibling.firstElementChild.innerHTML, 'en') == 1) {i++; log += '[#' + i + s6 + convert(f.classList) + ' ' + f.innerHTML + '". Place "TS ' + sib.firstElementChild.innerHTML + '" in its correct alphabetical order within this ' + convert(f.classList) + '.\n'}; if (sib.nextElementSibling.matches('p:not(.e,.d,.b,.z,.n)')) break sib = sib.nextElementSibling}}); From 10bf764e0e02100b71dae824712f590fdd3aef3f Mon Sep 17 00:00:00 2001 From: Georg Hammerschmid <8532340+lepitaxa@users.noreply.github.com> Date: Sat, 24 May 2025 00:50:11 +0200 Subject: [PATCH 2/7] Overhauled the superfamily Urodoidea, including the addition of a relatively new family --- index.html | 138 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 138 insertions(+) diff --git a/index.html b/index.html index 74b4ec8..fa6f9d1 100644 --- a/index.html +++ b/index.html @@ -38522,6 +38522,22 @@ e Gold-banded Cydosia Moth e Straight-lined Cydosia Moth d Buntes Tageulchen +a curvinella +b Cydosia +n Guenée, 1879 +a hyva +a majuscula +b Cydosia +n Grote & Robinson, 1868 +z Penthetria +n Edwards, 1881 +a nobilitella +e Curve-lined Cydosia Moth +d Gewöhnliches Tageulchen +b Phalaena +n Cramer, 1779 +z Cydosia +n Duncan & Westwood, 1841 g Flammona g Metaponpneumata a rogenhoferi @@ -84747,6 +84763,7 @@ x Pterophoroidea d2 Federmottenartige sh Alucitoidea +sh Carposinoidea sh Copromorphoidea sh Epermenioidea xs Pterophoriformes @@ -85320,11 +85337,126 @@ f Urodidae e2 New World False Burnets d2 Trugwidderchen +sh Galacticinae +g Adixoana +a auripyga +b Adixoana +n Strand, 1913 +z Adixoana +n Strand, 1913 +g Anomalomeuta +a dondavisi +b Anomalomeuta +n Sohn, 2013 +z Anomalomeuta +n Sohn, 2013 +r2 Sohn, 2013 +l A New Genus and Species of Urodidae (Lepidoptera: Urodoidea) from Argentina with the First Report of Asymmetric Male Genitalia in the Superfamily +p2 0015-4040, 96(2) +g Geoesthia +a ceylonica +e Sri Lankan False Burnet +d Sri-lankisches Trugwidderchen +b Geoesthia +n Sohn, 2014 +z Geoesthia +n Sohn, 2014 +r2 Sohn, 2014 +l A new genus and species of Urodidae (Lepidoptera: Urodoidea) from Sri Lanka +p 10.1016/j.aspen.2014.03.008 +g Incawockia +r2 Sohn, 2014 +l Two New Species of Incawockia Heppner (Lepidoptera: Urodidae) from Costa Rica and Brazil +p 10.4289/0013-8797.116.1.126 +a castanensis +b Incawockia +n Heppner, 2010 +z Incawockia +n Heppner, 2010 +r2 Heppner, 2010 +l Incawockia, a new genus and species from Peru (Lepidoptera: Urodidae: Galacticinae) +p2 1941-1014, 3(3) +a rubiginosa +b Incawockia +n Sohn, 2014 +a samba +b Incawockia +n Sohn, 2014 +g Spiladarcha +a derelicta +b Spiladarcha +n Meyrick, 1913 +z Spiladarcha +n Meyrick, 1913 +a iodes +b Anchimacheta +n Walsingham, 1914 +z Anchimacheta +n Walsingham, 1914 +s4 Anchimacheta capnodes g Urodus +a cumulata +a fumosa +b Trichostibas +n Zeller, 1863 +z Trichostibas +n Zeller, 1863 +a hexacentris +a mirella +b Pexicnemidia +n Möschler, 1890 +z Pexicnemidia +n Möschler, 1890 +a monura +b Urodus +n Herrich-Schäffer, 1854 +z Urodus +n Herrich-Schäffer, 1854 a parvula e Bumelia Webworm Moth +b Penthetria +n Edwards, 1881 +a tineiformis +b Aperla +n Walker, 1856 +z Aperla +n Walker, 1856 g Wockia a asperipunctella +e Shaggy-spotted Wockia +d Pappel-Trugwidderchen +b Patula +n Bruand, 1851 +z Wockia +n Heinemann, 1870 +a chewbacca +b Wockia +n Adamski, Boege & Landry, 2009 +a magna +b Wockia +n Sohn, 2014 +a mexicana +b Wockia +n Adamski, Boege & Landry, 2009 +f Ustyurtiidae +r Kaila, 2020 +l Ustyurtiidae, a new family of Urodoidea with description of a new genus and two species from Kazakhstan, and discussion on possible affinity of Urodoidea to Schreckensteinioidea (Lepidoptera) +p 10.1163/1876312X-00002209 +g Karwandania +a chimabacchella +b Karwandania +n Amsel, 1959 +z Karwandania +n Amsel, 1959 +g Ustyurtia +a charynica +b Ustyurtia +n Kaila, Heikkilä & Nupponen, 2020 +a zygophyllivora +b Ustyurtia +n Kaila, Heikkilä & Nupponen, 2020 +z Ustyurtia +n Kaila, Heikkilä & Nupponen, 2020 f Schreckensteiniidae e2 Bristle-legged Moths g Amblyscopa @@ -87910,6 +88042,12 @@ p 10.1111/syen.12115 g Aenigmatinea a glatzella +e Enigma Moth +d Änigmamotte +b Aenigmatinea +n Kristensen & Edwards, 2015 +z Aenigmatinea +n Kristensen & Edwards, 2015 f Acanthopteroctetidae g Acanthopteroctetes g Catapterix From ddc6901c8e6dfa4623bbd5b3b68cf27fcffdfac9 Mon Sep 17 00:00:00 2001 From: Georg Hammerschmid <8532340+lepitaxa@users.noreply.github.com> Date: Wed, 28 May 2025 18:49:30 +0200 Subject: [PATCH 3/7] Some updates and additions, mostly to riodinid genus Emesis and archaic moth family Micropterigidae --- index.html | 246 +++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 220 insertions(+), 26 deletions(-) diff --git a/index.html b/index.html index fa6f9d1..681c5c0 100644 --- a/index.html +++ b/index.html @@ -9843,12 +9843,21 @@ e Carmelita Longtail d Carmelita-Kurzschwanz-Dickkopffalter s2 Murgaria -a coyote +c coyote e Coyote Cloudywing +e Dark-edged Cloudywing +d Dunkelbrauner Nichtschwanz-Dickkopffalter d Dunkelbrauner Pracht-Dickkopffalter s4 Achalarus toxeus s toxeus +s4 Murgaria nigrociliata s4 Murgaria toxeus +k coyote +k nigrociliata +k roeveri +r Zhang, 2025 +l Notable Hesperiidae collected by Kilian Roever in Arizona, USA +p 10.5281/zenodo.15122959 a dariensis b Cecropterus n Grishin, 2023 @@ -9862,10 +9871,6 @@ d Schwarzer Pracht-Dickkopffalter s2 Murgaria s2 Thessia -a nigrociliata -e Dark-edged Cloudywing -d Dunkelbrauner Nichtschwanz-Dickkopffalter -s2 Murgaria a phalaecus e Yellow-edged Flasher d Gelbrand-Pracht-Dickkopffalter @@ -26406,57 +26411,121 @@ d Wellflügel-Prachtfalter s2 Emesis g Emesis +r Zhang, 2024 +l Genomic analysis reveals hidden species diversity in Emesis Fabricius (Lepidoptera: Riodinidae) +p2 0749-6737, 1082 i Emesis -a cerea +c aerigera +e Tiny Emesis +d Zwerg-Prachtfalter +k aerigera +k bartica +c cerea e Spangled Golden Emesis d Goldoranger Prachtfalter +b Papilio +n Linnaeus, 1767 +z Emesis +n Fabricius, 1807 +z Nelone +n Boisduval, 1870 +z Polystichtis +n Hübner, 1819 s cereus -a fatimella +k cerea +k cronina +c fatimella e Bright Orange Emesis e Noble Emesis d Grelloranger Prachtfalter -a neemias +k fatimella +k fatimellina +k nobilata +k panamella +c neemias e Dark Brown Emesis d Dunkelbrauner Prachtfalter +k aerunda +k neemias +k orichalceus i Aphacitis +o Diogenia a diogenia +z Diogenia +n Grishin, 2024 a heteroclita +a tegula +e Tegula Emesis +d Tegula-Prachtfalter +a vulpina +e Pale Emesis +d Blassoranger Prachtfalter +o Lucinda c lucinda e White-patched Emesis e White-spotted Emesis e Slaty Tanmark d Schiefergrauer Prachtfalter +b Papilio +n Cramer, 1775 +z Aphacitis +n Hübner, 1819 +z Nimula +n Blanchard, 1840 +s dyndima +k andigna +k aurichica k aurimna +k auripana k castigata k condigna k eurydice k fastidiosa +k furvescens k glaucescens k liodes k lucinda +k luxata k opaca +k pallescens +k pruinapicalis k spreta -a vulpina -e Pale Emesis -d Blassoranger Prachtfalter -i Tenedia -o Poeas -a poeas +i Poeasia +c poeas e Thorn-scrub Emesis d Dornbusch-Prachtfalter -o Temesa +z Poeasia +n Grishin, 2019 +k poeas +k sonorensis +i Brimia a brimo +z Brimia +n Grishin, 2019 a progne -a temesa -o Tenedia +a satema +c temesa +k apagada +k boliviana +k temesa +i Tenedia a angularis e Angled Emesis d Spitzflügel-Prachtfalter -a cypria +s subangularis +u subangularis +c cypria e Orange-barred Emesis -a lupina +k alisada +k cypria +k flecta +k paphia +c lupina e Lupina Emesis d Lupina-Prachtfalter +k faria +k lupina +k tristis a ocypore e Dark Emesis d Düsterer Prachtfalter @@ -26466,21 +26535,35 @@ a saturata e Oaxacan Emesis d Oaxaca-Prachtfalter -a tegula -e Tegula Emesis -d Tegula-Prachtfalter -a tenedia +c tenedia e Falcate Emesis e Common Emesis d Kleiner Emesis-Prachtfalter +b Emesis +n C. & R. Felder, 1861 +z Tenedia +n Grishin, 2019 +k leona +k nimia +k tenedia i Mandamia a mandana e Great Emesis d Großer Emesis-Prachtfalter +b Papilio +n Cramer, 1780 +z Mandania +n Grishin, 2019 s furor +s mandora +s manduza s russula +s russula sudesta u furor +u mandora +u manduza u russula +u sudesta t Helicopini e2 Jewelmarks d2 Diamantenfalter @@ -87581,6 +87664,7 @@ y Lamproniinae e2 Rose Bud Moths d2 Rosen-Blattsackmotten +sh Lamproniidae g Lampronia a capitella e Currant Shoot Borer @@ -88087,18 +88171,40 @@ d2 Urmotten g Agrionympha a capensis +a pseliacma +b Agrionympha +n Meyrick, 1921 +z Agrionympha +n Meyrick, 1921 a vari g Aureopterix a sterops +b Sabatinca +n Turner, 1922 +z Aureopterix +n Gibbs, 2010 g Baltimartyria +r2 Mey, 2011 +l On the systematic position of Baltimartyria Skalski, 1995 and description of a new species from Baltic amber (Lepidoptera, Micropterigidae) +p 10.3897/zookeys.130.1480 ae proavitella -s2 Micropterix +b Micropterix +n Rebel, 1936 +z Baltimartyria +n Skalski, 1995 ae rasnitsyni +b Baltimartyria +n Mey, 2011 s2 Sabatinca g Electrocrania +r2 Kurz, 2015 +l On the systematic position of Electrocrania Kusnezov, 1941 with the description of a new species from Baltic amber (Lepidoptera: Micropterigidae) +p 10.11646/zootaxa.4044.3.7 ae immensipalpa b Electrocrania n Kuznetsov, 1941 +z Electrocrania +n Kuznetsov, 1941 s2 Micropterix ae michalskii b Electrocrania @@ -88106,25 +88212,47 @@ g Epimartyria a auricrinella e Goldcap Moss-Eater +b Epimartyria +n Walsingham, 1898 +a bimaculella +b Epimartyria +n Davis & Landry, 2012 +a pardella +b Micropteryx +n Walsingham, 1880 +z Epimartyria +n Walsingham, 1898 g Hypomartyria a micropteroides b Hypomartyria n Kristensen & Nielsen, 1982 +z Hypomartyria +n Kristensen & Nielsen, 1982 g Micropterix a aglaella a allionella d Bergwiesen-Urmotte +b Tinea +n Fabricius, 1794 a aruncella e White-barred Gold d Goldene Urmotte +b Phalaena +n Scopoli, 1763 +z Micropterix +n Hübner, 1825 a aureatella e Yellow-barred Gold d Goldstreifen-Urmotte +b Phalaena +n Scopoli, 1763 a calthella e Marsh Marigold Moth d Hahnenfuß-Urmotte b Phalaena n Linnaeus, 1761 +z Eriocephala +n Curtis, 1839 a herminiella a ibericella e Portuguese Gold @@ -88140,36 +88268,89 @@ a tunbergella e Red-barred Gold d Goldrote Urmotte +b Tinea +n Fabricius, 1787 g Nannopterix a choreutes b Nannopterix n Gibbs, 2010 +z Nannopterix +n Gibbs, 2010 g Neomicropteryx a matsumurana +b Neomicropteryx +n Issiki, 1931 a nipponensis +b Neomicropteryx +n Issiki, 1931 +z Neomicropteryx +n Issiki, 1931 g Palaeomicroides +a discopurpurella +b Palaeomicroides +n Issiki, 1931 +z Palaeomicroides +n Issiki, 1931 g Paramartyria +a cipingana +b Paramartyria +n Yang, 1980 a immaculatella +b Paramartyria +n Issiki, 1931 +z Paramartyria +n Issiki, 1931 a semifasciella g Parasabatinca ae aftimacrai +b Parasabatinca +n Whalley, 1978 +z Parasabatinca +n Whalley, 1978 ae caldasae +b Parasabatinca +n Martins-Neto & Vulcano, 1989 g Sabatinca a aurella +b Sabatinca +n Hudson, 1918 +z Micropardalis +n Meyrick, 1912 +s2 Micropardalis a chalcophanes a chrysargyra +b Palaeomicra +n Meyrick, 1885 +z Palaeomicra +n Meyrick, 1885 +a delobeli a doroxena +b Palaeomicra +n Meyrick, 1888 +s2 Micropardalis a ianthina a incongruella +b Sabatinca +n Walker, 1863 +z Sabatinca +n Walker, 1863 a lucilia -ae perveta +ae pervetus +s perveta +a porphyrodes a quadrijuga g Squamicornia a aequatoriella b Squamicornia n Kristensen & Nielsen, 1982 +z Squamicornia +n Kristensen & Nielsen, 1982 g Tasmantrix a calliplaca +b Palaeomicra +n Meyrick, 1902 +z Tasmantrix +n Gibbs, 2010 g Terncladus r Han, 2024 l Geometric morphometric analyses of Micropterigidae lineages (Lepidoptera) with two new species from mid-Cretaceous amber of northern Myanmar @@ -88177,16 +88358,29 @@ ae holonatus b Terncladus n Han, Zhang & Ren, 2024 -ae luntus +ae lunatus b Terncladus n Han, Zhang & Ren, 2024 +z Terncladus +n Han, Zhang & Ren, 2024 +s luntus g Vietomartyria a baishanzuna +b Paramartyria +n Yang, 1995 a expeditionis +b Paramartyria +n Mey, 1997 +z Vietomartyria +n Hashimoto & Mey, 2000 a jinggangana +b Paramartyria +n Yang, 1980 g Zealandopterix a zonodoxa d Neuseeländische Urmotte +z Zealandopterix +n Gibbs, 2010 From 02073cb029c6718ca2ea36cde7556dbddd234811 Mon Sep 17 00:00:00 2001 From: Georg Hammerschmid <8532340+lepitaxa@users.noreply.github.com> Date: Thu, 29 May 2025 11:29:54 +0200 Subject: [PATCH 4/7] Did a more thorough overhaul of Micropterigidae, incl. all phylogenetic hypotheses available right now MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Did a preliminary division of the family into two subfamilies with 5 tribes overall, representing the 5 currently known lineages of jaw moths. - Fossil taxa mostly placed according to Zhang et al., 2017. - Listed the still undescribed madagascan taxa using "Lemurix" as a placeholder name, as in Gibbs et al., 2004. - Unfortunately, lots of unconventionally or even unpublished data about this family, incl. a conference paper describing the first central american species (-> Wagner & Davis, 2014, "First report of the family Micropterigidae (Lepidoptera) from Central America with descriptions of two new genera and five new species", Conference: Entomological Society of America Annual Meeting 2014) and a book chapter by Gibbs & Lees, 2014 ("New Caledonia as an evolutionary cradle: a re-appraisal of the jaw-moth genus Sabatinca (Lepidoptera: Micropterigidae) and its significance for assessing the antiquity of the island’s fauna"). --- index.html | 367 ++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 277 insertions(+), 90 deletions(-) diff --git a/index.html b/index.html index 681c5c0..cedb9da 100644 --- a/index.html +++ b/index.html @@ -88168,72 +88168,25 @@ d2 Urmottenartige f Micropterigidae e2 Mandibulate Archaic Moths +e2 Jaw Moths d2 Urmotten -g Agrionympha -a capensis -a pseliacma -b Agrionympha -n Meyrick, 1921 -z Agrionympha -n Meyrick, 1921 -a vari -g Aureopterix -a sterops -b Sabatinca -n Turner, 1922 -z Aureopterix -n Gibbs, 2010 -g Baltimartyria -r2 Mey, 2011 -l On the systematic position of Baltimartyria Skalski, 1995 and description of a new species from Baltic amber (Lepidoptera, Micropterigidae) -p 10.3897/zookeys.130.1480 -ae proavitella -b Micropterix -n Rebel, 1936 -z Baltimartyria -n Skalski, 1995 -ae rasnitsyni -b Baltimartyria -n Mey, 2011 -s2 Sabatinca -g Electrocrania -r2 Kurz, 2015 -l On the systematic position of Electrocrania Kusnezov, 1941 with the description of a new species from Baltic amber (Lepidoptera: Micropterigidae) -p 10.11646/zootaxa.4044.3.7 -ae immensipalpa -b Electrocrania -n Kuznetsov, 1941 -z Electrocrania -n Kuznetsov, 1941 -s2 Micropterix -ae michalskii -b Electrocrania -n Kurz, 2015 -g Epimartyria -a auricrinella -e Goldcap Moss-Eater -b Epimartyria -n Walsingham, 1898 -a bimaculella -b Epimartyria -n Davis & Landry, 2012 -a pardella -b Micropteryx -n Walsingham, 1880 -z Epimartyria -n Walsingham, 1898 -g Hypomartyria -a micropteroides -b Hypomartyria -n Kristensen & Nielsen, 1982 -z Hypomartyria -n Kristensen & Nielsen, 1982 +sh Micropterygidae +r Gibbs, 2004 +l Molecular phylogeny of Micropterigidae {Lepidoptera) +p 10.13140/RG.2.2.24042.82888 +y Micropteriginae +e2 Laurasian Jaw Moths +d2 Laurasische Urmotten +t Micropterigini g Micropterix a aglaella a allionella d Bergwiesen-Urmotte b Tinea n Fabricius, 1794 +ae anglica +b Micropterix +n Jarzembowski, 1980 a aruncella e White-barred Gold d Goldene Urmotte @@ -88253,6 +88206,14 @@ n Linnaeus, 1761 z Eriocephala n Curtis, 1839 +c cornuella +b Micropterix +n Lees, Rougerie & Zeller, 2010 +k cornuella +k longicornuella +r Lees, 2010 +l DNA mini-barcodes in taxonomic assignment: a morphologically unique new homoneurous moth clade from the Indian Himalayas described in Micropterix (Lepidoptera, Micropterigidae) +p 10.1111/j.1463-6409.2010.00447.x a herminiella a ibericella e Portuguese Gold @@ -88260,6 +88221,8 @@ a mansuetella e Black-headed Gold d Riedgras-Urmotte +b Micropteryx +n Zeller, 1844 a rothenbachii a schaefferi a sicanella @@ -88270,37 +88233,160 @@ d Goldrote Urmotte b Tinea n Fabricius, 1787 -g Nannopterix -a choreutes -b Nannopterix -n Gibbs, 2010 -z Nannopterix -n Gibbs, 2010 +a wockei +b Micropteryx +n Staudinger, 1870 +t Epimartyriini +g Electrocrania +r2 Kurz, 2015 +l On the systematic position of Electrocrania Kusnezov, 1941 with the description of a new species from Baltic amber (Lepidoptera: Micropterigidae) +p 10.11646/zootaxa.4044.3.7 +ae immensipalpa +b Electrocrania +n Kuznetsov, 1941 +z Electrocrania +n Kuznetsov, 1941 +s2 Micropterix +ae michalskii +b Electrocrania +n Kurz, 2015 +g Epimartyria +i Epimartyria +a auricrinella +e Goldcap Moss-Eater +b Epimartyria +n Walsingham, 1898 +a bimaculella +b Epimartyria +n Davis & Landry, 2012 +a pardella +b Micropteryx +n Walsingham, 1880 +z Epimartyria +n Walsingham, 1898 +i Paramartyria +a cipingana +b Paramartyria +n Yang, 1980 +a immaculatella +b Paramartyria +n Issiki, 1931 +z Paramartyria +n Issiki, 1931 +a semifasciella +b Paramartyria +n Issiki, 1931 +i Vietomartyria +a baishanzuna +b Paramartyria +n Yang, 1995 +s2 Vietomartyria +a expeditionis +b Paramartyria +n Mey, 1997 +z Vietomartyria +n Hashimoto & Mey, 2000 +s2 Vietomartyria +a jinggangana +b Paramartyria +n Yang, 1980 +s2 Vietomartyria g Neomicropteryx -a matsumurana +i Neomicropteryx +a bifurca b Neomicropteryx -n Issiki, 1931 -a nipponensis +n Issiki, 1953 +a elongata +b Neomicropteryx +n Issiki, 1953 +c nipponensis b Neomicropteryx n Issiki, 1931 z Neomicropteryx n Issiki, 1931 -g Palaeomicroides +k cornuta +k kazusana +k matsumurana +k nipponensis +i Kurokopteryx +a dolichocerata +b Kurokopteryx +n Hashimoto, 2006 +z Kurokopteryx +n Hashimoto, 2006 +i Issikiomartyria +r2 Imada & Kato, 2018 +l Descriptions of new species of Issikiomartyria (Lepidoptera, Micropterigidae) and a new genus Melinopteryx gen. n. with two new species from Japan +p 10.3897/zse.94.13748 +o Coruscans +a bilobata +b Melinopteryx +n Imada & Kato, 2018 +a coruscans +b Melinopteryx +n Imada & Kato, 2018 +z Melinopteryx +n Imada & Kato, 2018 +o Nudata +a akemiae +b Issikiomartyria +n Hashimoto, 2006 +a bisegmentata +b Issikiomartyria +n Hashimoto, 2006 +a distincta +b Issikiomartyria +n Hashimoto, 2006 +a nudata +b Neomicropteryx +n Issiki, 1953 +z Issikiomartyria +n Hashimoto, 2006 +s2 Issikiomartyria +c hyperborea +b Issikiomartyria +n Imada & Kato, 2018 +k hyperborea +k leptobelos +a plicata +b Issikiomartyria +n Hashimoto, 2006 +c trochos +b Issikiomartyria +n Imada & Kato, 2018 +k catapasta +k trochos +i Palaeomicroides +a costipunctella +b Palaeomicroides +n Issiki, 1931 a discopurpurella b Palaeomicroides n Issiki, 1931 z Palaeomicroides n Issiki, 1931 -g Paramartyria -a cipingana -b Paramartyria -n Yang, 1980 -a immaculatella -b Paramartyria +a fasciatella +b Palaeomicroides n Issiki, 1931 -z Paramartyria +a marginella +b Palaeomicroides n Issiki, 1931 -a semifasciella +a obscurella +b Palaeomicroides +n Issiki, 1931 +y Sabatincinae +e2 Gondwanan Jaw Moths +d2 Gondwanische Urmotten +r2 Gibbs, 2010 +l Micropterigidae (Lepidoptera) of the Southwestern Pacific: a revision with the establishment of five new genera from Australia, New Caledonia and New Zealand +p 10.11646/zootaxa.2520.1.1 +t Sabatincini +g Palaeosabatinca +ae zherichini +b Palaeosabatinca +n Kozlov, 1988 +z Palaeosabatinca +n Kozlov, 1988 g Parasabatinca ae aftimacrai b Parasabatinca @@ -88311,46 +88397,156 @@ b Parasabatinca n Martins-Neto & Vulcano, 1989 g Sabatinca +r Zhang, 2017 +l Cretaceous moths (Lepidoptera: Micropterigidae) with preserved scales from Myanmar amber +p 10.1016/j.cretres.2017.06.016 a aurella b Sabatinca n Hudson, 1918 z Micropardalis n Meyrick, 1912 s2 Micropardalis +a calliarcha a chalcophanes +s2 Palaeomicra a chrysargyra b Palaeomicra n Meyrick, 1885 z Palaeomicra n Meyrick, 1885 +ae cretacea +b Sabatinca +n Zhang, Wang & Shih, 2017 a delobeli +a demissa a doroxena b Palaeomicra n Meyrick, 1888 s2 Micropardalis +a heighwayi a ianthina a incongruella b Sabatinca n Walker, 1863 z Sabatinca n Walker, 1863 +a kristenseni +b Sabatinca +n Minet, 1985 +ae limula +b Sabatinca +n Zhang, Wang & Shih, 2017 a lucilia ae pervetus s perveta -a porphyrodes a quadrijuga +a viettei +b Sabatinca +n Minet, 1985 +t Agrionymphini +e2 Relict Jaw Moths +d2 Relikt-Urmotten +g Agrionympha +a capensis +a pseliacma +b Agrionympha +n Meyrick, 1921 +z Agrionympha +n Meyrick, 1921 +a vari +g Austromartyria +a porphyrodes +z Austromartyria +n Gibbs, 2010 +s2 Sabatinca +g Baltimartyria +r2 Mey, 2011 +l On the systematic position of Baltimartyria Skalski, 1995 and description of a new species from Baltic amber (Lepidoptera, Micropterigidae) +p 10.3897/zookeys.130.1480 +ae proavitella +b Micropterix +n Rebel, 1936 +z Baltimartyria +n Skalski, 1995 +ae rasnitsyni +b Baltimartyria +n Mey, 2011 +s2 Sabatinca +g Hypomartyria +a micropteroides +b Hypomartyria +n Kristensen & Nielsen, 1982 +z Hypomartyria +n Kristensen & Nielsen, 1982 +g Lemurix +g Magnijuxta +a nishidai +b Magnijuxta +n Wagner & Davis, 2014 +a purpuravena +b Magnijuxta +n Wagner & Davis, 2014 +a watkinsi +b Magnijuxta +n Wagner & Davis, 2014 +g Sporaphaga +a costaricensis +b Sporaphaga +n Wagner & Davis, 2014 +z Sporaphaga +n Wagner & Davis, 2014 g Squamicornia a aequatoriella b Squamicornia n Kristensen & Nielsen, 1982 z Squamicornia n Kristensen & Nielsen, 1982 +a purpuraguttata +b Squamicornia +n Wagner & Davis, 2014 +t Aureopterygini +e2 Australian Jaw Moths +d2 Australische Urmotten +g Aureopterix +a micans +b Aureopterix +n Gibbs, 2010 +a sterops +b Sabatinca +n Turner, 1922 +z Aureopterix +n Gibbs, 2010 +g Nannopterix +a choreutes +b Nannopterix +n Gibbs, 2010 +z Nannopterix +n Gibbs, 2010 g Tasmantrix a calliplaca b Palaeomicra n Meyrick, 1902 z Tasmantrix n Gibbs, 2010 +s2 Sabatinca +a fragilis +b Tasmantrix +n Gibbs, 2010 +a lunaris +b Tasmantrix +n Gibbs, 2010 +a nigrocornis +b Tasmantrix +n Gibbs, 2010 +a phalaros +b Tasmantrix +n Gibbs, 2010 +a tasmaniensis +b Tasmantrix +n Gibbs, 2010 +a thula +b Tasmantrix +n Gibbs, 2010 g Terncladus r Han, 2024 l Geometric morphometric analyses of Micropterigidae lineages (Lepidoptera) with two new species from mid-Cretaceous amber of northern Myanmar @@ -88364,23 +88560,14 @@ z Terncladus n Han, Zhang & Ren, 2024 s luntus -g Vietomartyria -a baishanzuna -b Paramartyria -n Yang, 1995 -a expeditionis -b Paramartyria -n Mey, 1997 -z Vietomartyria -n Hashimoto & Mey, 2000 -a jinggangana -b Paramartyria -n Yang, 1980 g Zealandopterix a zonodoxa d Neuseeländische Urmotte +b Palaeomicra +n Meyrick, 1888 z Zealandopterix n Gibbs, 2010 +s2 Sabatinca From bf677fcb053f2a40f814cd357bc1b96f80e4b956 Mon Sep 17 00:00:00 2001 From: Georg Hammerschmid <8532340+lepitaxa@users.noreply.github.com> Date: Sat, 31 May 2025 22:51:51 +0200 Subject: [PATCH 5/7] It's alive! Most likely ... Live specimen of the magnificent, presumed extinct swallowtails Papilio lampscacus photographed in 2014: https://www.inaturalist.org/photos/347469605 Furthermore, recent fires within its likely last refuge around Mt. Gede didn't destroy its habitat completely (as presumed previously), but were reported to have been restricted to drier savannah zones, leafing the forests mostly intact ... meaning this species almost certlikely still exists in 2025. --- index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index cedb9da..0927b33 100644 --- a/index.html +++ b/index.html @@ -909,7 +909,9 @@ a jordani e Jordan's Swallowtail d Jordan's Schwalbenschwanz -ae lampsacus +a lampsacus +b Papilio +n Boisduval, 1836 a lowi e Great Yellow Mormon e Low's Mormon From afe0f57f61cc64beca497f8e65798ba2e4edbc95 Mon Sep 17 00:00:00 2001 From: Georg Hammerschmid <8532340+lepitaxa@users.noreply.github.com> Date: Mon, 2 Jun 2025 00:24:35 +0200 Subject: [PATCH 6/7] Added a bunch of "relatively" well-studied, primitive fossil taxa This includes the following three new and completely extinct families: - Ascololepidopterigidae: Placed close to Neopseustidae, within Glossata, as suggested by Wang et al., 2022. This completely contradicts previous studies claiming this family being VERY basal lepidopterans, but it's the best result we have right now. - Eolepidopterigidae: Forming a fourth suborder "Eolepidopterigina" on its own. I'll call them "Jurassic Moths" due to the majority of species known from the Middle Jurassic period. Probably went all extinct during the Cretaceous. - Mesokristenseniidae: Currently, not known if this archaic family is sister to Micropterigidae or if it should form a separate, even more basal suborder. Assuming a closer relationship to Micropterigidae for now (as suggested in the original description), until further studies become available. --- index.html | 306 +++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 295 insertions(+), 11 deletions(-) diff --git a/index.html b/index.html index 0927b33..b0ee052 100644 --- a/index.html +++ b/index.html @@ -72,7 +72,7 @@ .x {padding-left:7.1rem; font-weight:700; color:#000} .xs {padding:0.2rem 0 0.2rem 8.4rem; margin-top:0.4rem; font-size:1.19rem; font-style:italic} .xp {padding-left:0.3rem; font-style:italic} -.f {padding:0.31rem 0 0 0.31rem; font-size:2.3rem; font-weight:700} +.f {padding:0.31rem 0 0 0.31rem; font-size:2.25rem; font-weight:700} .y {padding:0.31rem 0 0.31rem 0.94rem; font-size:2rem} .t,.j,.h {padding:0.75rem 0 0 1.88rem; font-size:1.69rem} .j {padding-left:2.8rem; font-size:1.5rem} @@ -87389,6 +87389,12 @@