allores/init.lua

6169 lines
372 KiB
Lua

allores = {}
minetest.register_node("allores:allores3", {
description = "allores3",
tiles = {"allores3.png"},
light_source = 14,
groups = {cracky = 3},
on_use = minetest.item_eat(20)
})
minetest.register_node("allores:allores2", {
description = "allores2",
tiles = {"allores2.png"},
groups = {cracky = 3},
})
-- All melting results craft --
minetest.register_craft({
type = "cooking",
output = "default:diamond 1",
recipe = "allores:allores3",
cooktime = 1
})
minetest.register_craft({
type = "cooking",
output = "allores:allores3 1",
recipe = "allores:allores2",
cooktime = 1
})
-- True Minerals: 6131 Thanks to RRUFF for the mineral list--
-- path --
local default_path = minetest.get_modpath("allores")
dofile(default_path.."/101noob/101noob.lua")
dofile(default_path.."/allores/Abellaite/Abellaite.lua")
dofile(default_path.."/allores/Abelsonite/Abelsonite.lua")
dofile(default_path.."/allores/Abenakiite_Ce/Abenakiite_Ce.lua")
dofile(default_path.."/allores/Abernathyite/Abernathyite.lua")
dofile(default_path.."/allores/Abhurite/Abhurite.lua")
dofile(default_path.."/allores/Abramovite/Abramovite.lua")
dofile(default_path.."/allores/Abswurmbachite/Abswurmbachite.lua")
dofile(default_path.."/allores/Abuite/Abuite.lua")
dofile(default_path.."/allores/Acanthite/Acanthite.lua")
dofile(default_path.."/allores/Acetamide/Acetamide.lua")
dofile(default_path.."/allores/Achalaite/Achalaite.lua")
dofile(default_path.."/allores/Achavalite/Achavalite.lua")
dofile(default_path.."/allores/Achyrophanite/Achyrophanite.lua")
dofile(default_path.."/allores/Acmonidesite/Acmonidesite.lua")
dofile(default_path.."/allores/Actinolite/Actinolite.lua")
dofile(default_path.."/allores/Acuminite/Acuminite.lua")
dofile(default_path.."/allores/Adachiite/Adachiite.lua")
dofile(default_path.."/allores/Adamite/Adamite.lua")
dofile(default_path.."/allores/Adamsite_Y/Adamsite_Y.lua")
dofile(default_path.."/allores/Adanite/Adanite.lua")
dofile(default_path.."/allores/Addibischoffite/Addibischoffite.lua")
dofile(default_path.."/allores/Adelite/Adelite.lua")
dofile(default_path.."/allores/Admontite/Admontite.lua")
dofile(default_path.."/allores/Adolfpateraite/Adolfpateraite.lua")
dofile(default_path.."/allores/Adranosite/Adranosite.lua")
dofile(default_path.."/allores/Adranosite_Fe/Adranosite_Fe.lua")
dofile(default_path.."/allores/Adrianite/Adrianite.lua")
dofile(default_path.."/allores/Aegirine/Aegirine.lua")
dofile(default_path.."/allores/Aegirine_augite/Aegirine_augite.lua")
dofile(default_path.."/allores/Aenigmatite/Aenigmatite.lua")
dofile(default_path.."/allores/Aerinite/Aerinite.lua")
dofile(default_path.."/allores/Aerugite/Aerugite.lua")
dofile(default_path.."/allores/Aeschynite_Ce/Aeschynite_Ce.lua")
dofile(default_path.."/allores/Aeschynite_Nd/Aeschynite_Nd.lua")
dofile(default_path.."/allores/Aeschynite_Y/Aeschynite_Y.lua")
dofile(default_path.."/allores/Afghanite/Afghanite.lua")
dofile(default_path.."/allores/Afmite/Afmite.lua")
dofile(default_path.."/allores/Afwillite/Afwillite.lua")
dofile(default_path.."/allores/Agaite/Agaite.lua")
dofile(default_path.."/allores/Agakhanovite_Y/Agakhanovite_Y.lua")
dofile(default_path.."/allores/Agardite_Ce/Agardite_Ce.lua")
dofile(default_path.."/allores/Agardite_La/Agardite_La.lua")
dofile(default_path.."/allores/Agardite_Nd/Agardite_Nd.lua")
dofile(default_path.."/allores/Agardite_Y/Agardite_Y.lua")
dofile(default_path.."/allores/Agmantinite/Agmantinite.lua")
dofile(default_path.."/allores/Agrellite/Agrellite.lua")
dofile(default_path.."/allores/Agricolaite/Agricolaite.lua")
dofile(default_path.."/allores/Agrinierite/Agrinierite.lua")
dofile(default_path.."/allores/Aguilarite/Aguilarite.lua")
dofile(default_path.."/allores/Aheylite/Aheylite.lua")
dofile(default_path.."/allores/Ahlfeldite/Ahlfeldite.lua")
dofile(default_path.."/allores/Ahrensite/Ahrensite.lua")
dofile(default_path.."/allores/Aikinite/Aikinite.lua")
dofile(default_path.."/allores/Aiolosite/Aiolosite.lua")
dofile(default_path.."/allores/Airdite/Airdite.lua")
dofile(default_path.."/allores/Ajoite/Ajoite.lua")
dofile(default_path.."/allores/Akaganeite/Akaganeite.lua")
dofile(default_path.."/allores/Akaogiite/Akaogiite.lua")
dofile(default_path.."/allores/Akatoreite/Akatoreite.lua")
dofile(default_path.."/allores/Akdalaite/Akdalaite.lua")
dofile(default_path.."/allores/Akermanite/Akermanite.lua")
dofile(default_path.."/allores/Akhtenskite/Akhtenskite.lua")
dofile(default_path.."/allores/Akimotoite/Akimotoite.lua")
dofile(default_path.."/allores/Aklimaite/Aklimaite.lua")
dofile(default_path.."/allores/Akopovaite/Akopovaite.lua")
dofile(default_path.."/allores/Akrochordite/Akrochordite.lua")
dofile(default_path.."/allores/Aksaite/Aksaite.lua")
dofile(default_path.."/allores/Aktashite/Aktashite.lua")
dofile(default_path.."/allores/Alabandite/Alabandite.lua")
dofile(default_path.."/allores/Alacranite/Alacranite.lua")
dofile(default_path.."/allores/Alamosite/Alamosite.lua")
dofile(default_path.."/allores/Alarsite/Alarsite.lua")
dofile(default_path.."/allores/Albertiniite/Albertiniite.lua")
dofile(default_path.."/allores/Albite/Albite.lua")
dofile(default_path.."/allores/Albrechtschraufite/Albrechtschraufite.lua")
dofile(default_path.."/allores/Alburnite/Alburnite.lua")
dofile(default_path.."/allores/Alcantarillaite/Alcantarillaite.lua")
dofile(default_path.."/allores/Alcaparrosaite/Alcaparrosaite.lua")
dofile(default_path.."/allores/Aldermanite/Aldermanite.lua")
dofile(default_path.."/allores/Aldomarinoite/Aldomarinoite.lua")
dofile(default_path.."/allores/Aldridgeite/Aldridgeite.lua")
dofile(default_path.."/allores/Aleksandrovite/Aleksandrovite.lua")
dofile(default_path.."/allores/Aleksite/Aleksite.lua")
dofile(default_path.."/allores/Aleutite/Aleutite.lua")
dofile(default_path.."/allores/Alexkhomyakovite/Alexkhomyakovite.lua")
dofile(default_path.."/allores/Alexkuznetsovite_Ce/Alexkuznetsovite_Ce.lua")
dofile(default_path.."/allores/Alexkuznetsovite_La/Alexkuznetsovite_La.lua")
dofile(default_path.."/allores/Alflarsenite/Alflarsenite.lua")
dofile(default_path.."/allores/Alforsite/Alforsite.lua")
dofile(default_path.."/allores/Alfredopetrovite/Alfredopetrovite.lua")
dofile(default_path.."/allores/Alfredstelznerite/Alfredstelznerite.lua")
dofile(default_path.."/allores/Algodonite/Algodonite.lua")
dofile(default_path.."/allores/Alicewilsonite_YCe/Alicewilsonite_YCe.lua")
dofile(default_path.."/allores/Alicewilsonite_YLa/Alicewilsonite_YLa.lua")
dofile(default_path.."/allores/Aliettite/Aliettite.lua")
dofile(default_path.."/allores/Allabogdanite/Allabogdanite.lua")
dofile(default_path.."/allores/Allactite/Allactite.lua")
dofile(default_path.."/allores/Allanite_Ce/Allanite_Ce.lua")
dofile(default_path.."/allores/Allanite_La/Allanite_La.lua")
dofile(default_path.."/allores/Allanite_Nd/Allanite_Nd.lua")
dofile(default_path.."/allores/Allanite_Y/Allanite_Y.lua")
dofile(default_path.."/allores/Allanpringite/Allanpringite.lua")
dofile(default_path.."/allores/Allantoin/Allantoin.lua")
dofile(default_path.."/allores/Allargentum/Allargentum.lua")
dofile(default_path.."/allores/Alleghanyite/Alleghanyite.lua")
dofile(default_path.."/allores/Allendeite/Allendeite.lua")
dofile(default_path.."/allores/Allochalcoselite/Allochalcoselite.lua")
dofile(default_path.."/allores/Alloclasite/Alloclasite.lua")
dofile(default_path.."/allores/Allophane/Allophane.lua")
dofile(default_path.."/allores/Alloriite/Alloriite.lua")
dofile(default_path.."/allores/Alluaivite/Alluaivite.lua")
dofile(default_path.."/allores/Alluaudite/Alluaudite.lua")
dofile(default_path.."/allores/Almandine/Almandine.lua")
dofile(default_path.."/allores/Almarudite/Almarudite.lua")
dofile(default_path.."/allores/Almeidaite/Almeidaite.lua")
dofile(default_path.."/allores/Alnaperboeite_Ce/Alnaperboeite_Ce.lua")
dofile(default_path.."/allores/Alpeite/Alpeite.lua")
dofile(default_path.."/allores/Alpersite/Alpersite.lua")
dofile(default_path.."/allores/Alsakharovite_Zn/Alsakharovite_Zn.lua")
dofile(default_path.."/allores/Alstonite/Alstonite.lua")
dofile(default_path.."/allores/Altaite/Altaite.lua")
dofile(default_path.."/allores/Alterite/Alterite.lua")
dofile(default_path.."/allores/Althausite/Althausite.lua")
dofile(default_path.."/allores/Althupite/Althupite.lua")
dofile(default_path.."/allores/Altisite/Altisite.lua")
dofile(default_path.."/allores/Alum_K/Alum_K.lua")
dofile(default_path.."/allores/Alum_Na/Alum_Na.lua")
dofile(default_path.."/allores/Aluminite/Aluminite.lua")
dofile(default_path.."/allores/Aluminium/Aluminium.lua")
dofile(default_path.."/allores/Alumino_ferrobarroisite/Alumino_ferrobarroisite.lua")
dofile(default_path.."/allores/Alumino_ferrohornblende/Alumino_ferrohornblende.lua")
dofile(default_path.."/allores/Alumino_ferrotschermakite/Alumino_ferrotschermakite.lua")
dofile(default_path.."/allores/Alumino_ferrowinchite/Alumino_ferrowinchite.lua")
dofile(default_path.."/allores/Alumino_magnesiohornblende/Alumino_magnesiohornblende.lua")
dofile(default_path.."/allores/Alumino_magnesiotaramite/Alumino_magnesiotaramite.lua")
dofile(default_path.."/allores/Alumino_ottoliniite/Alumino_ottoliniite.lua")
dofile(default_path.."/allores/Alumino_oxy_rossmanite/Alumino_oxy_rossmanite.lua")
dofile(default_path.."/allores/Aluminobarroisite/Aluminobarroisite.lua")
dofile(default_path.."/allores/Aluminoceladonite/Aluminoceladonite.lua")
dofile(default_path.."/allores/Aluminocerite_Ce/Aluminocerite_Ce.lua")
dofile(default_path.."/allores/Aluminocopiapite/Aluminocopiapite.lua")
dofile(default_path.."/allores/Aluminocoquimbite/Aluminocoquimbite.lua")
dofile(default_path.."/allores/Aluminokatophorite/Aluminokatophorite.lua")
dofile(default_path.."/allores/Aluminomagnesiohulsite/Aluminomagnesiohulsite.lua")
dofile(default_path.."/allores/Aluminopyracmonite/Aluminopyracmonite.lua")
dofile(default_path.."/allores/Aluminosugilite/Aluminosugilite.lua")
dofile(default_path.."/allores/Aluminotschermakite/Aluminotschermakite.lua")
dofile(default_path.."/allores/Aluminowinchite/Aluminowinchite.lua")
dofile(default_path.."/allores/Alumoakermanite/Alumoakermanite.lua")
dofile(default_path.."/allores/Alumoedtollite/Alumoedtollite.lua")
dofile(default_path.."/allores/Alumohydrocalcite/Alumohydrocalcite.lua")
dofile(default_path.."/allores/Alumoklyuchevskite/Alumoklyuchevskite.lua")
dofile(default_path.."/allores/Alumolukrahnite/Alumolukrahnite.lua")
dofile(default_path.."/allores/Alumotantite/Alumotantite.lua")
dofile(default_path.."/allores/Alumotungstite/Alumotungstite.lua")
dofile(default_path.."/allores/Alumovesuvianite/Alumovesuvianite.lua")
dofile(default_path.."/allores/Alunite/Alunite.lua")
dofile(default_path.."/allores/Alunogen/Alunogen.lua")
dofile(default_path.."/allores/Alvanite/Alvanite.lua")
dofile(default_path.."/allores/Alwilkinsite_Y/Alwilkinsite_Y.lua")
dofile(default_path.."/allores/Amakinite/Amakinite.lua")
dofile(default_path.."/allores/Amamoorite/Amamoorite.lua")
dofile(default_path.."/allores/Amarantite/Amarantite.lua")
dofile(default_path.."/allores/Amarillite/Amarillite.lua")
dofile(default_path.."/allores/Amblygonite/Amblygonite.lua")
dofile(default_path.."/allores/Ambrinoite/Ambrinoite.lua")
dofile(default_path.."/allores/Ameghinite/Ameghinite.lua")
dofile(default_path.."/allores/Amesite/Amesite.lua")
dofile(default_path.."/allores/Amgaite/Amgaite.lua")
dofile(default_path.."/allores/Amicite/Amicite.lua")
dofile(default_path.."/allores/Aminoffite/Aminoffite.lua")
dofile(default_path.."/allores/Ammineite/Ammineite.lua")
dofile(default_path.."/allores/Ammonioalunite/Ammonioalunite.lua")
dofile(default_path.."/allores/Ammonioborite/Ammonioborite.lua")
dofile(default_path.."/allores/Ammoniojarosite/Ammoniojarosite.lua")
dofile(default_path.."/allores/Ammoniolasalite/Ammoniolasalite.lua")
dofile(default_path.."/allores/Ammonioleucite/Ammonioleucite.lua")
dofile(default_path.."/allores/Ammoniomagnesiovoltaite/Ammoniomagnesiovoltaite.lua")
dofile(default_path.."/allores/Ammoniomathesiusite/Ammoniomathesiusite.lua")
dofile(default_path.."/allores/Ammoniotinsleyite/Ammoniotinsleyite.lua")
dofile(default_path.."/allores/Ammoniovoltaite/Ammoniovoltaite.lua")
dofile(default_path.."/allores/Ammoniozippeite/Ammoniozippeite.lua")
dofile(default_path.."/allores/Amstallite/Amstallite.lua")
dofile(default_path.."/allores/Analcime/Analcime.lua")
dofile(default_path.."/allores/Anandite/Anandite.lua")
dofile(default_path.."/allores/Anapaite/Anapaite.lua")
dofile(default_path.."/allores/Anastasenkoite/Anastasenkoite.lua")
dofile(default_path.."/allores/Anatacamite/Anatacamite.lua")
dofile(default_path.."/allores/Anatase/Anatase.lua")
dofile(default_path.."/allores/Anatolyite/Anatolyite.lua")
dofile(default_path.."/allores/Ancylite_Ce/Ancylite_Ce.lua")
dofile(default_path.."/allores/Ancylite_La/Ancylite_La.lua")
dofile(default_path.."/allores/Andalusite/Andalusite.lua")
dofile(default_path.."/allores/Andersonite/Andersonite.lua")
dofile(default_path.."/allores/Andesine/Andesine.lua")
dofile(default_path.."/allores/Andradite/Andradite.lua")
dofile(default_path.."/allores/Andreadiniite/Andreadiniite.lua")
dofile(default_path.."/allores/Andremeyerite/Andremeyerite.lua")
dofile(default_path.."/allores/Andreyivanovite/Andreyivanovite.lua")
dofile(default_path.."/allores/Andrianovite/Andrianovite.lua")
dofile(default_path.."/allores/Anduoite/Anduoite.lua")
dofile(default_path.."/allores/Andychristyite/Andychristyite.lua")
dofile(default_path.."/allores/Andymcdonaldite/Andymcdonaldite.lua")
dofile(default_path.."/allores/Andyrobertsite/Andyrobertsite.lua")
dofile(default_path.."/allores/Angarfite/Angarfite.lua")
dofile(default_path.."/allores/Angastonite/Angastonite.lua")
dofile(default_path.."/allores/Angelaite/Angelaite.lua")
dofile(default_path.."/allores/Angelellite/Angelellite.lua")
dofile(default_path.."/allores/Anglesite/Anglesite.lua")
dofile(default_path.."/allores/Anhydrite/Anhydrite.lua")
dofile(default_path.."/allores/Anhydrokainite/Anhydrokainite.lua")
dofile(default_path.."/allores/Anilite/Anilite.lua")
dofile(default_path.."/allores/Aniyunwiyaite/Aniyunwiyaite.lua")
dofile(default_path.."/allores/Ankangite/Ankangite.lua")
dofile(default_path.."/allores/Ankerite/Ankerite.lua")
dofile(default_path.."/allores/Ankinovichite/Ankinovichite.lua")
dofile(default_path.."/allores/Annabergite/Annabergite.lua")
dofile(default_path.."/allores/Annite/Annite.lua")
dofile(default_path.."/allores/Annivite/Annivite.lua")
dofile(default_path.."/allores/Anorpiment/Anorpiment.lua")
dofile(default_path.."/allores/Anorthite/Anorthite.lua")
dofile(default_path.."/allores/Anorthoclase/Anorthoclase.lua")
dofile(default_path.."/allores/Anorthominasragrite/Anorthominasragrite.lua")
dofile(default_path.."/allores/Anorthoroselite/Anorthoroselite.lua")
dofile(default_path.."/allores/Ansermetite/Ansermetite.lua")
dofile(default_path.."/allores/Antarcticite/Antarcticite.lua")
dofile(default_path.."/allores/Anthoinite/Anthoinite.lua")
dofile(default_path.."/allores/Anthonyite/Anthonyite.lua")
dofile(default_path.."/allores/Anthophyllite/Anthophyllite.lua")
dofile(default_path.."/allores/Antigorite/Antigorite.lua")
dofile(default_path.."/allores/Antimonselite/Antimonselite.lua")
dofile(default_path.."/allores/Antimony/Antimony.lua")
dofile(default_path.."/allores/Antipinite/Antipinite.lua")
dofile(default_path.."/allores/Antipovite/Antipovite.lua")
dofile(default_path.."/allores/Antitaenite/Antitaenite.lua")
dofile(default_path.."/allores/Antlerite/Antlerite.lua")
dofile(default_path.."/allores/Antofagastaite/Antofagastaite.lua")
dofile(default_path.."/allores/Anyuiite/Anyuiite.lua")
dofile(default_path.."/allores/Anzaite_Ce/Anzaite_Ce.lua")
dofile(default_path.."/allores/Apachite/Apachite.lua")
dofile(default_path.."/allores/Apexite/Apexite.lua")
dofile(default_path.."/allores/Aphthitalite/Aphthitalite.lua")
dofile(default_path.."/allores/Apjohnite/Apjohnite.lua")
dofile(default_path.."/allores/Aplowite/Aplowite.lua")
dofile(default_path.."/allores/Apuanite/Apuanite.lua")
dofile(default_path.."/allores/Aqualite/Aqualite.lua")
dofile(default_path.."/allores/Aradite/Aradite.lua")
dofile(default_path.."/allores/Aragonite/Aragonite.lua")
dofile(default_path.."/allores/Arakiite/Arakiite.lua")
dofile(default_path.."/allores/Aramayoite/Aramayoite.lua")
dofile(default_path.."/allores/Arangasite/Arangasite.lua")
dofile(default_path.."/allores/Arapovite/Arapovite.lua")
dofile(default_path.."/allores/Aravaipaite/Aravaipaite.lua")
dofile(default_path.."/allores/Aravaite/Aravaite.lua")
dofile(default_path.."/allores/Arcanite/Arcanite.lua")
dofile(default_path.."/allores/Archerite/Archerite.lua")
dofile(default_path.."/allores/Arctite/Arctite.lua")
dofile(default_path.."/allores/Arcubisite/Arcubisite.lua")
dofile(default_path.."/allores/Ardaite/Ardaite.lua")
dofile(default_path.."/allores/Ardealite/Ardealite.lua")
dofile(default_path.."/allores/Ardennite_As/Ardennite_As.lua")
dofile(default_path.."/allores/Ardennite_V/Ardennite_V.lua")
dofile(default_path.."/allores/Arfvedsonite/Arfvedsonite.lua")
dofile(default_path.."/allores/Argandite/Argandite.lua")
dofile(default_path.."/allores/Argentobaumhauerite/Argentobaumhauerite.lua")
dofile(default_path.."/allores/Argentodufrenoysite/Argentodufrenoysite.lua")
dofile(default_path.."/allores/Argentojarosite/Argentojarosite.lua")
dofile(default_path.."/allores/Argentoliveingite/Argentoliveingite.lua")
dofile(default_path.."/allores/Argentopearceite/Argentopearceite.lua")
dofile(default_path.."/allores/Argentopentlandite/Argentopentlandite.lua")
dofile(default_path.."/allores/Argentopolybasite_T2ac/Argentopolybasite_T2ac.lua")
dofile(default_path.."/allores/Argentopyrite/Argentopyrite.lua")
dofile(default_path.."/allores/Argentotennantite_Zn/Argentotennantite_Zn.lua")
dofile(default_path.."/allores/Argentotetrahedrite_Cd/Argentotetrahedrite_Cd.lua")
dofile(default_path.."/allores/Argentotetrahedrite_Fe/Argentotetrahedrite_Fe.lua")
dofile(default_path.."/allores/Argentotetrahedrite_Hg/Argentotetrahedrite_Hg.lua")
dofile(default_path.."/allores/Argentotetrahedrite_Zn/Argentotetrahedrite_Zn.lua")
dofile(default_path.."/allores/Argesite/Argesite.lua")
dofile(default_path.."/allores/Argutite/Argutite.lua")
dofile(default_path.."/allores/Argyrodite/Argyrodite.lua")
dofile(default_path.."/allores/Arhbarite/Arhbarite.lua")
dofile(default_path.."/allores/Ariegilatite/Ariegilatite.lua")
dofile(default_path.."/allores/Arisite_Ce/Arisite_Ce.lua")
dofile(default_path.."/allores/Arisite_La/Arisite_La.lua")
dofile(default_path.."/allores/Aristarainite/Aristarainite.lua")
dofile(default_path.."/allores/Armalcolite/Armalcolite.lua")
dofile(default_path.."/allores/Armangite/Armangite.lua")
dofile(default_path.."/allores/Armbrusterite/Armbrusterite.lua")
dofile(default_path.."/allores/Armellinoite_Ce/Armellinoite_Ce.lua")
dofile(default_path.."/allores/Armenite/Armenite.lua")
dofile(default_path.."/allores/Armstrongite/Armstrongite.lua")
dofile(default_path.."/allores/Arnhemite/Arnhemite.lua")
dofile(default_path.."/allores/Arrheniusite_Ce/Arrheniusite_Ce.lua")
dofile(default_path.."/allores/Arrojadite_BaNa/Arrojadite_BaNa.lua")
dofile(default_path.."/allores/Arrojadite_KFe/Arrojadite_KFe.lua")
dofile(default_path.."/allores/Arrojadite_KNa/Arrojadite_KNa.lua")
dofile(default_path.."/allores/Arrojadite_NaFe/Arrojadite_NaFe.lua")
dofile(default_path.."/allores/Arrojadite_PbFe/Arrojadite_PbFe.lua")
dofile(default_path.."/allores/Arrojadite_SrFe/Arrojadite_SrFe.lua")
dofile(default_path.."/allores/Arsenatrotitanite/Arsenatrotitanite.lua")
dofile(default_path.."/allores/Arsenbrackebuschite/Arsenbrackebuschite.lua")
dofile(default_path.."/allores/Arsendescloizite/Arsendescloizite.lua")
dofile(default_path.."/allores/Arsenic/Arsenic.lua")
dofile(default_path.."/allores/Arseniopleite/Arseniopleite.lua")
dofile(default_path.."/allores/Arseniosiderite/Arseniosiderite.lua")
dofile(default_path.."/allores/Arsenmarcobaldiite/Arsenmarcobaldiite.lua")
dofile(default_path.."/allores/Arsenmedaite/Arsenmedaite.lua")
dofile(default_path.."/allores/Arsenoclasite/Arsenoclasite.lua")
dofile(default_path.."/allores/Arsenocrandallite/Arsenocrandallite.lua")
dofile(default_path.."/allores/Arsenoflorencite_Ce/Arsenoflorencite_Ce.lua")
dofile(default_path.."/allores/Arsenoflorencite_La/Arsenoflorencite_La.lua")
dofile(default_path.."/allores/Arsenoflorencite_Nd/Arsenoflorencite_Nd.lua")
dofile(default_path.."/allores/Arsenogoldfieldite/Arsenogoldfieldite.lua")
dofile(default_path.."/allores/Arsenogorceixite/Arsenogorceixite.lua")
dofile(default_path.."/allores/Arsenogoyazite/Arsenogoyazite.lua")
dofile(default_path.."/allores/Arsenohauchecornite/Arsenohauchecornite.lua")
dofile(default_path.."/allores/Arsenohopeite/Arsenohopeite.lua")
dofile(default_path.."/allores/Arsenolamprite/Arsenolamprite.lua")
dofile(default_path.."/allores/Arsenolite/Arsenolite.lua")
dofile(default_path.."/allores/Arsenopalladinite/Arsenopalladinite.lua")
dofile(default_path.."/allores/Arsenopyrite/Arsenopyrite.lua")
dofile(default_path.."/allores/Arsenotucekite/Arsenotucekite.lua")
dofile(default_path.."/allores/Arsenovanmeersscheite/Arsenovanmeersscheite.lua")
dofile(default_path.."/allores/Arsenoveszelyite/Arsenoveszelyite.lua")
dofile(default_path.."/allores/Arsenowagnerite/Arsenowagnerite.lua")
dofile(default_path.."/allores/Arsenowaylandite/Arsenowaylandite.lua")
dofile(default_path.."/allores/Arsenpolybasite/Arsenpolybasite.lua")
dofile(default_path.."/allores/Arsenquatrandorite/Arsenquatrandorite.lua")
dofile(default_path.."/allores/Arsentsumebite/Arsentsumebite.lua")
dofile(default_path.."/allores/Arsenudinaite/Arsenudinaite.lua")
dofile(default_path.."/allores/Arsenuranospathite/Arsenuranospathite.lua")
dofile(default_path.."/allores/Arsenuranylite/Arsenuranylite.lua")
dofile(default_path.."/allores/Arsiccioite/Arsiccioite.lua")
dofile(default_path.."/allores/Arsmirandite/Arsmirandite.lua")
dofile(default_path.."/allores/Arthurite/Arthurite.lua")
dofile(default_path.."/allores/Artinite/Artinite.lua")
dofile(default_path.."/allores/Artroeite/Artroeite.lua")
dofile(default_path.."/allores/Artsmithite/Artsmithite.lua")
dofile(default_path.."/allores/Arupite/Arupite.lua")
dofile(default_path.."/allores/Arzakite/Arzakite.lua")
dofile(default_path.."/allores/Arzrunite/Arzrunite.lua")
dofile(default_path.."/allores/Asagiite/Asagiite.lua")
dofile(default_path.."/allores/Asbecasite/Asbecasite.lua")
dofile(default_path.."/allores/Asbolane/Asbolane.lua")
dofile(default_path.."/allores/Aschamalmite/Aschamalmite.lua")
dofile(default_path.."/allores/Ashburtonite/Ashburtonite.lua")
dofile(default_path.."/allores/Ashcroftine_Y/Ashcroftine_Y.lua")
dofile(default_path.."/allores/Ashoverite/Ashoverite.lua")
dofile(default_path.."/allores/Asimowite/Asimowite.lua")
dofile(default_path.."/allores/Asisite/Asisite.lua")
dofile(default_path.."/allores/Askagenite_Nd/Askagenite_Nd.lua")
dofile(default_path.."/allores/Aspedamite/Aspedamite.lua")
dofile(default_path.."/allores/Aspidolite/Aspidolite.lua")
dofile(default_path.."/allores/Asselbornite/Asselbornite.lua")
dofile(default_path.."/allores/Astrocyanite_Ce/Astrocyanite_Ce.lua")
dofile(default_path.."/allores/Astrophyllite/Astrophyllite.lua")
dofile(default_path.."/allores/Atacamite/Atacamite.lua")
dofile(default_path.."/allores/Atelestite/Atelestite.lua")
dofile(default_path.."/allores/Atelisite_Y/Atelisite_Y.lua")
dofile(default_path.."/allores/Atencioite/Atencioite.lua")
dofile(default_path.."/allores/Athabascaite/Athabascaite.lua")
dofile(default_path.."/allores/Atheneite/Atheneite.lua")
dofile(default_path.."/allores/Atlasovite/Atlasovite.lua")
dofile(default_path.."/allores/Atokite/Atokite.lua")
dofile(default_path.."/allores/Attakolite/Attakolite.lua")
dofile(default_path.."/allores/Attikaite/Attikaite.lua")
dofile(default_path.."/allores/Aubertite/Aubertite.lua")
dofile(default_path.."/allores/Auerbakhite/Auerbakhite.lua")
dofile(default_path.."/allores/Augelite/Augelite.lua")
dofile(default_path.."/allores/Augite/Augite.lua")
dofile(default_path.."/allores/Auriacusite/Auriacusite.lua")
dofile(default_path.."/allores/Aurichalcite/Aurichalcite.lua")
dofile(default_path.."/allores/Auricupride/Auricupride.lua")
dofile(default_path.."/allores/Aurihydrargyrumite/Aurihydrargyrumite.lua")
dofile(default_path.."/allores/Aurivilliusite/Aurivilliusite.lua")
dofile(default_path.."/allores/Auroantimonate/Auroantimonate.lua")
dofile(default_path.."/allores/Aurorite/Aurorite.lua")
dofile(default_path.."/allores/Auroselenide/Auroselenide.lua")
dofile(default_path.."/allores/Aurostibite/Aurostibite.lua")
dofile(default_path.."/allores/Austinite/Austinite.lua")
dofile(default_path.."/allores/Autunite/Autunite.lua")
dofile(default_path.."/allores/Avdeevite/Avdeevite.lua")
dofile(default_path.."/allores/Avdoninite/Avdoninite.lua")
dofile(default_path.."/allores/Averievite/Averievite.lua")
dofile(default_path.."/allores/Avicennite/Avicennite.lua")
dofile(default_path.."/allores/Avogadrite/Avogadrite.lua")
dofile(default_path.."/allores/Awaruite/Awaruite.lua")
dofile(default_path.."/allores/Axelite/Axelite.lua")
dofile(default_path.."/allores/Axinite_Fe/Axinite_Fe.lua")
dofile(default_path.."/allores/Axinite_Mg/Axinite_Mg.lua")
dofile(default_path.."/allores/Axinite_Mn/Axinite_Mn.lua")
dofile(default_path.."/allores/Azoproite/Azoproite.lua")
dofile(default_path.."/allores/Azurite/Azurite.lua")
dofile(default_path.."/allores/Babanekite/Babanekite.lua")
dofile(default_path.."/allores/Babefphite/Babefphite.lua")
dofile(default_path.."/allores/Babingtonite/Babingtonite.lua")
dofile(default_path.."/allores/Babkinite/Babkinite.lua")
dofile(default_path.."/allores/Backite/Backite.lua")
dofile(default_path.."/allores/Badakhshanite_Y/Badakhshanite_Y.lua")
dofile(default_path.."/allores/Badalovite/Badalovite.lua")
dofile(default_path.."/allores/Baddeleyite/Baddeleyite.lua")
dofile(default_path.."/allores/Badengzhuite/Badengzhuite.lua")
dofile(default_path.."/allores/Bafertisite/Bafertisite.lua")
dofile(default_path.."/allores/Baghdadite/Baghdadite.lua")
dofile(default_path.."/allores/Bahariyaite/Bahariyaite.lua")
dofile(default_path.."/allores/Bahianite/Bahianite.lua")
dofile(default_path.."/allores/Baileychlore/Baileychlore.lua")
dofile(default_path.."/allores/Bainbridgeite_YCe/Bainbridgeite_YCe.lua")
dofile(default_path.."/allores/Bairdite/Bairdite.lua")
dofile(default_path.."/allores/Bakakinite/Bakakinite.lua")
dofile(default_path.."/allores/Bakerite/Bakerite.lua")
dofile(default_path.."/allores/Bakhchisaraitsevite/Bakhchisaraitsevite.lua")
dofile(default_path.."/allores/Baksanite/Baksanite.lua")
dofile(default_path.."/allores/Balangeroite/Balangeroite.lua")
dofile(default_path.."/allores/Balestraite/Balestraite.lua")
dofile(default_path.."/allores/Baliczunicite/Baliczunicite.lua")
dofile(default_path.."/allores/Balipholite/Balipholite.lua")
dofile(default_path.."/allores/Balkanite/Balkanite.lua")
dofile(default_path.."/allores/Balliranoite/Balliranoite.lua")
dofile(default_path.."/allores/Balyakinite/Balyakinite.lua")
dofile(default_path.."/allores/Bambollaite/Bambollaite.lua")
dofile(default_path.."/allores/Bamfordite/Bamfordite.lua")
dofile(default_path.."/allores/Banalsite/Banalsite.lua")
dofile(default_path.."/allores/Bandylite/Bandylite.lua")
dofile(default_path.."/allores/Bannermanite/Bannermanite.lua")
dofile(default_path.."/allores/Bannisterite/Bannisterite.lua")
dofile(default_path.."/allores/Baotite/Baotite.lua")
dofile(default_path.."/allores/Barahonaite_Al/Barahonaite_Al.lua")
dofile(default_path.."/allores/Barahonaite_Fe/Barahonaite_Fe.lua")
dofile(default_path.."/allores/Bararite/Bararite.lua")
dofile(default_path.."/allores/Baratovite/Baratovite.lua")
dofile(default_path.."/allores/Barberiite/Barberiite.lua")
dofile(default_path.."/allores/Barbertonite/Barbertonite.lua")
dofile(default_path.."/allores/Barbosalite/Barbosalite.lua")
dofile(default_path.."/allores/Barentsite/Barentsite.lua")
dofile(default_path.."/allores/Bariandite/Bariandite.lua")
dofile(default_path.."/allores/Baricite/Baricite.lua")
dofile(default_path.."/allores/Barikaite/Barikaite.lua")
dofile(default_path.."/allores/Bario_olgite/Bario_olgite.lua")
dofile(default_path.."/allores/Bario_orthojoaquinite/Bario_orthojoaquinite.lua")
dofile(default_path.."/allores/Barioferrite/Barioferrite.lua")
dofile(default_path.."/allores/Bariomicrolite/Bariomicrolite.lua")
dofile(default_path.."/allores/Barioperovskite/Barioperovskite.lua")
dofile(default_path.."/allores/Bariopharmacoalumite/Bariopharmacoalumite.lua")
dofile(default_path.."/allores/Bariopharmacosiderite/Bariopharmacosiderite.lua")
dofile(default_path.."/allores/Bariopyrochlore/Bariopyrochlore.lua")
dofile(default_path.."/allores/Bariosincosite/Bariosincosite.lua")
dofile(default_path.."/allores/Barium_zincalumopharmocosiderite/Barium_zincalumopharmocosiderite.lua")
dofile(default_path.."/allores/Barlowite/Barlowite.lua")
dofile(default_path.."/allores/Barnesite/Barnesite.lua")
dofile(default_path.."/allores/Barquillite/Barquillite.lua")
dofile(default_path.."/allores/Barrerite/Barrerite.lua")
dofile(default_path.."/allores/Barringerite/Barringerite.lua")
dofile(default_path.."/allores/Barringtonite/Barringtonite.lua")
dofile(default_path.."/allores/Barroisite/Barroisite.lua")
dofile(default_path.."/allores/Barrotite/Barrotite.lua")
dofile(default_path.."/allores/Barrydawsonite_Y/Barrydawsonite_Y.lua")
dofile(default_path.."/allores/Barstowite/Barstowite.lua")
dofile(default_path.."/allores/Bartelkeite/Bartelkeite.lua")
dofile(default_path.."/allores/Bartonite/Bartonite.lua")
dofile(default_path.."/allores/Barwoodite/Barwoodite.lua")
dofile(default_path.."/allores/Barylite/Barylite.lua")
dofile(default_path.."/allores/Barysilite/Barysilite.lua")
dofile(default_path.."/allores/Baryte/Baryte.lua")
dofile(default_path.."/allores/Barytocalcite/Barytocalcite.lua")
dofile(default_path.."/allores/Barytolamprophyllite/Barytolamprophyllite.lua")
dofile(default_path.."/allores/Bassanite/Bassanite.lua")
dofile(default_path.."/allores/Bassetite/Bassetite.lua")
dofile(default_path.."/allores/Bassoite/Bassoite.lua")
dofile(default_path.."/allores/Bastnasite_Ce/Bastnasite_Ce.lua")
dofile(default_path.."/allores/Bastnasite_La/Bastnasite_La.lua")
dofile(default_path.."/allores/Bastnasite_Nd/Bastnasite_Nd.lua")
dofile(default_path.."/allores/Bastnasite_Y/Bastnasite_Y.lua")
dofile(default_path.."/allores/Batagayite/Batagayite.lua")
dofile(default_path.."/allores/Batievaite_Y/Batievaite_Y.lua")
dofile(default_path.."/allores/Batiferrite/Batiferrite.lua")
dofile(default_path.."/allores/Batisite/Batisite.lua")
dofile(default_path.."/allores/Batisivite/Batisivite.lua")
dofile(default_path.."/allores/Baumhauerite/Baumhauerite.lua")
dofile(default_path.."/allores/BaumhaueriteII/BaumhaueriteII.lua")
dofile(default_path.."/allores/Baumoite/Baumoite.lua")
dofile(default_path.."/allores/Baumstarkite/Baumstarkite.lua")
dofile(default_path.."/allores/Bauranoite/Bauranoite.lua")
dofile(default_path.."/allores/Bavenite/Bavenite.lua")
dofile(default_path.."/allores/Bavsiite/Bavsiite.lua")
dofile(default_path.."/allores/Bayerite/Bayerite.lua")
dofile(default_path.."/allores/Bayldonite/Bayldonite.lua")
dofile(default_path.."/allores/Bayleyite/Bayleyite.lua")
dofile(default_path.."/allores/Baylissite/Baylissite.lua")
dofile(default_path.."/allores/Bazhenovite/Bazhenovite.lua")
dofile(default_path.."/allores/Bazirite/Bazirite.lua")
dofile(default_path.."/allores/Bazzite/Bazzite.lua")
dofile(default_path.."/allores/Bearsite/Bearsite.lua")
dofile(default_path.."/allores/Bearthite/Bearthite.lua")
dofile(default_path.."/allores/Beaverite_Cu/Beaverite_Cu.lua")
dofile(default_path.."/allores/Beaverite_Zn/Beaverite_Zn.lua")
dofile(default_path.."/allores/Bechererite/Bechererite.lua")
dofile(default_path.."/allores/Beckettite/Beckettite.lua")
dofile(default_path.."/allores/Becquerelite/Becquerelite.lua")
dofile(default_path.."/allores/Bederite/Bederite.lua")
dofile(default_path.."/allores/Beershevaite/Beershevaite.lua")
dofile(default_path.."/allores/Behierite/Behierite.lua")
dofile(default_path.."/allores/Behoite/Behoite.lua")
dofile(default_path.."/allores/Behounekite/Behounekite.lua")
dofile(default_path.."/allores/Beidellite/Beidellite.lua")
dofile(default_path.."/allores/Belakovskiite/Belakovskiite.lua")
dofile(default_path.."/allores/Belendorffite/Belendorffite.lua")
dofile(default_path.."/allores/Belkovite/Belkovite.lua")
dofile(default_path.."/allores/Bellbergite/Bellbergite.lua")
dofile(default_path.."/allores/Bellidoite/Bellidoite.lua")
dofile(default_path.."/allores/Bellingerite/Bellingerite.lua")
dofile(default_path.."/allores/Belloite/Belloite.lua")
dofile(default_path.."/allores/Belogubite/Belogubite.lua")
dofile(default_path.."/allores/Belomarinaite/Belomarinaite.lua")
dofile(default_path.."/allores/Belousovite/Belousovite.lua")
dofile(default_path.."/allores/Belovite_Ce/Belovite_Ce.lua")
dofile(default_path.."/allores/Belovite_La/Belovite_La.lua")
dofile(default_path.."/allores/Belyankinite/Belyankinite.lua")
dofile(default_path.."/allores/Bementite/Bementite.lua")
dofile(default_path.."/allores/Benauite/Benauite.lua")
dofile(default_path.."/allores/Benavidesite/Benavidesite.lua")
dofile(default_path.."/allores/Bendadaite/Bendadaite.lua")
dofile(default_path.."/allores/Benitoite/Benitoite.lua")
dofile(default_path.."/allores/Benjaminite/Benjaminite.lua")
dofile(default_path.."/allores/Benleonardite/Benleonardite.lua")
dofile(default_path.."/allores/Bennesherite/Bennesherite.lua")
dofile(default_path.."/allores/Benstonite/Benstonite.lua")
dofile(default_path.."/allores/Bentorite/Bentorite.lua")
dofile(default_path.."/allores/Benyacarite/Benyacarite.lua")
dofile(default_path.."/allores/Beraunite/Beraunite.lua")
dofile(default_path.."/allores/Berborite/Berborite.lua")
dofile(default_path.."/allores/Berdesinskiite/Berdesinskiite.lua")
dofile(default_path.."/allores/Berezanskite/Berezanskite.lua")
dofile(default_path.."/allores/Bergenite/Bergenite.lua")
dofile(default_path.."/allores/Bergslagite/Bergslagite.lua")
dofile(default_path.."/allores/Berlinite/Berlinite.lua")
dofile(default_path.."/allores/Bermanite/Bermanite.lua")
dofile(default_path.."/allores/Bernalite/Bernalite.lua")
dofile(default_path.."/allores/Bernardevansite/Bernardevansite.lua")
dofile(default_path.."/allores/Bernardite/Bernardite.lua")
dofile(default_path.."/allores/Bernarlottiite/Bernarlottiite.lua")
dofile(default_path.."/allores/Berndtite/Berndtite.lua")
dofile(default_path.."/allores/Berryite/Berryite.lua")
dofile(default_path.."/allores/Berthierine/Berthierine.lua")
dofile(default_path.."/allores/Berthierite/Berthierite.lua")
dofile(default_path.."/allores/Bertossaite/Bertossaite.lua")
dofile(default_path.."/allores/Bertrandite/Bertrandite.lua")
dofile(default_path.."/allores/Beryl/Beryl.lua")
dofile(default_path.."/allores/Beryllite/Beryllite.lua")
dofile(default_path.."/allores/Beryllonite/Beryllonite.lua")
dofile(default_path.."/allores/Berzelianite/Berzelianite.lua")
dofile(default_path.."/allores/Berzeliite/Berzeliite.lua")
dofile(default_path.."/allores/Beshtauite/Beshtauite.lua")
dofile(default_path.."/allores/Beta_iridisite/Beta_iridisite.lua")
dofile(default_path.."/allores/Betekhtinite/Betekhtinite.lua")
dofile(default_path.."/allores/Betpakdalite_CaCa/Betpakdalite_CaCa.lua")
dofile(default_path.."/allores/Betpakdalite_CaMg/Betpakdalite_CaMg.lua")
dofile(default_path.."/allores/Betpakdalite_FeFe/Betpakdalite_FeFe.lua")
dofile(default_path.."/allores/Betpakdalite_NaCa/Betpakdalite_NaCa.lua")
dofile(default_path.."/allores/Betpakdalite_NaNa/Betpakdalite_NaNa.lua")
dofile(default_path.."/allores/Bettertonite/Bettertonite.lua")
dofile(default_path.."/allores/Betzite/Betzite.lua")
dofile(default_path.."/allores/Beudantite/Beudantite.lua")
dofile(default_path.."/allores/Beusite/Beusite.lua")
dofile(default_path.."/allores/Beusite_Ca/Beusite_Ca.lua")
dofile(default_path.."/allores/Beyerite/Beyerite.lua")
dofile(default_path.."/allores/Bezsmertnovite/Bezsmertnovite.lua")
dofile(default_path.."/allores/Biachellaite/Biachellaite.lua")
dofile(default_path.."/allores/Biagioniite/Biagioniite.lua")
dofile(default_path.."/allores/Bianchiniite/Bianchiniite.lua")
dofile(default_path.."/allores/Bianchite/Bianchite.lua")
dofile(default_path.."/allores/Bicapite/Bicapite.lua")
dofile(default_path.."/allores/Bicchulite/Bicchulite.lua")
dofile(default_path.."/allores/Bideauxite/Bideauxite.lua")
dofile(default_path.."/allores/Bieberite/Bieberite.lua")
dofile(default_path.."/allores/Biehlite/Biehlite.lua")
dofile(default_path.."/allores/Bigcreekite/Bigcreekite.lua")
dofile(default_path.."/allores/Bijvoetite_Y/Bijvoetite_Y.lua")
dofile(default_path.."/allores/Bikitaite/Bikitaite.lua")
dofile(default_path.."/allores/Bilibinskite/Bilibinskite.lua")
dofile(default_path.."/allores/Bilinite/Bilinite.lua")
dofile(default_path.."/allores/Billietite/Billietite.lua")
dofile(default_path.."/allores/Billingsleyite/Billingsleyite.lua")
dofile(default_path.."/allores/Billwiseite/Billwiseite.lua")
dofile(default_path.."/allores/Bimbowrieite/Bimbowrieite.lua")
dofile(default_path.."/allores/Bindheimite/Bindheimite.lua")
dofile(default_path.."/allores/Biphosphammite/Biphosphammite.lua")
dofile(default_path.."/allores/Biraite_Ce/Biraite_Ce.lua")
dofile(default_path.."/allores/Biraite_La/Biraite_La.lua")
dofile(default_path.."/allores/Birchite/Birchite.lua")
dofile(default_path.."/allores/Biringuccite/Biringuccite.lua")
dofile(default_path.."/allores/Birnessite/Birnessite.lua")
dofile(default_path.."/allores/Birunite/Birunite.lua")
dofile(default_path.."/allores/Bischofite/Bischofite.lua")
dofile(default_path.."/allores/Bismite/Bismite.lua")
dofile(default_path.."/allores/Bismoclite/Bismoclite.lua")
dofile(default_path.."/allores/Bismuth/Bismuth.lua")
dofile(default_path.."/allores/Bismuthinite/Bismuthinite.lua")
dofile(default_path.."/allores/Bismutite/Bismutite.lua")
dofile(default_path.."/allores/Bismutocolumbite/Bismutocolumbite.lua")
dofile(default_path.."/allores/Bismutoferrite/Bismutoferrite.lua")
dofile(default_path.."/allores/Bismutohauchecornite/Bismutohauchecornite.lua")
dofile(default_path.."/allores/Bismutomicrolite/Bismutomicrolite.lua")
dofile(default_path.."/allores/Bismutopyrochlore/Bismutopyrochlore.lua")
dofile(default_path.."/allores/Bismutostibiconite/Bismutostibiconite.lua")
dofile(default_path.."/allores/Bismutotantalite/Bismutotantalite.lua")
dofile(default_path.."/allores/Bitikleite/Bitikleite.lua")
dofile(default_path.."/allores/Bityite/Bityite.lua")
dofile(default_path.."/allores/Bixbyite_Fe/Bixbyite_Fe.lua")
dofile(default_path.."/allores/Bixbyite_Mn/Bixbyite_Mn.lua")
dofile(default_path.."/allores/Bjarebyite/Bjarebyite.lua")
dofile(default_path.."/allores/Blakeite/Blakeite.lua")
dofile(default_path.."/allores/Blatonite/Blatonite.lua")
dofile(default_path.."/allores/Blatterite/Blatterite.lua")
dofile(default_path.."/allores/Bleasdaleite/Bleasdaleite.lua")
dofile(default_path.."/allores/Blixite/Blixite.lua")
dofile(default_path.."/allores/Blodite/Blodite.lua")
dofile(default_path.."/allores/Blossite/Blossite.lua")
dofile(default_path.."/allores/Bluebellite/Bluebellite.lua")
dofile(default_path.."/allores/Bluelizardite/Bluelizardite.lua")
dofile(default_path.."/allores/Bluestreakite/Bluestreakite.lua")
dofile(default_path.."/allores/Bobcookite/Bobcookite.lua")
dofile(default_path.."/allores/Bobdownsite/Bobdownsite.lua")
dofile(default_path.."/allores/Bobfergusonite/Bobfergusonite.lua")
dofile(default_path.."/allores/Bobfinchite/Bobfinchite.lua")
dofile(default_path.."/allores/Bobierrite/Bobierrite.lua")
dofile(default_path.."/allores/Bobjonesite/Bobjonesite.lua")
dofile(default_path.."/allores/Bobkingite/Bobkingite.lua")
dofile(default_path.."/allores/Bobmeyerite/Bobmeyerite.lua")
dofile(default_path.."/allores/Bobshannonite/Bobshannonite.lua")
dofile(default_path.."/allores/Bobtraillite/Bobtraillite.lua")
dofile(default_path.."/allores/Bodieite/Bodieite.lua")
dofile(default_path.."/allores/Bogdanovite/Bogdanovite.lua")
dofile(default_path.."/allores/Boggildite/Boggildite.lua")
dofile(default_path.."/allores/Boggsite/Boggsite.lua")
dofile(default_path.."/allores/Bogvadite/Bogvadite.lua")
dofile(default_path.."/allores/Bohdanowiczite/Bohdanowiczite.lua")
dofile(default_path.."/allores/Bohmite/Bohmite.lua")
dofile(default_path.."/allores/Bohseite/Bohseite.lua")
dofile(default_path.."/allores/Bohuslavite/Bohuslavite.lua")
dofile(default_path.."/allores/Bojarite/Bojarite.lua")
dofile(default_path.."/allores/Bokite/Bokite.lua")
dofile(default_path.."/allores/Boleite/Boleite.lua")
dofile(default_path.."/allores/Bolivarite/Bolivarite.lua")
dofile(default_path.."/allores/Bolotinaite/Bolotinaite.lua")
dofile(default_path.."/allores/Boltwoodite/Boltwoodite.lua")
dofile(default_path.."/allores/Bonaccordite/Bonaccordite.lua")
dofile(default_path.."/allores/Bonacinaite/Bonacinaite.lua")
dofile(default_path.."/allores/Bonattite/Bonattite.lua")
dofile(default_path.."/allores/Bonazziite/Bonazziite.lua")
dofile(default_path.."/allores/Bonshtedtite/Bonshtedtite.lua")
dofile(default_path.."/allores/Boojumite/Boojumite.lua")
dofile(default_path.."/allores/Boothite/Boothite.lua")
dofile(default_path.."/allores/Boracite/Boracite.lua")
dofile(default_path.."/allores/Boralsilite/Boralsilite.lua")
dofile(default_path.."/allores/Borax/Borax.lua")
dofile(default_path.."/allores/Borcarite/Borcarite.lua")
dofile(default_path.."/allores/Borisenkoite/Borisenkoite.lua")
dofile(default_path.."/allores/Borishanskiite/Borishanskiite.lua")
dofile(default_path.."/allores/Bornemanite/Bornemanite.lua")
dofile(default_path.."/allores/Bornhardtite/Bornhardtite.lua")
dofile(default_path.."/allores/Bornite/Bornite.lua")
dofile(default_path.."/allores/Borocookeite/Borocookeite.lua")
dofile(default_path.."/allores/Borodaevite/Borodaevite.lua")
dofile(default_path.."/allores/Boromullite/Boromullite.lua")
dofile(default_path.."/allores/Boromuscovite/Boromuscovite.lua")
dofile(default_path.."/allores/Borovskite/Borovskite.lua")
dofile(default_path.."/allores/Bortnikovite/Bortnikovite.lua")
dofile(default_path.."/allores/Bortolanite/Bortolanite.lua")
dofile(default_path.."/allores/Borzeckiite/Borzeckiite.lua")
dofile(default_path.."/allores/Boscardinite/Boscardinite.lua")
dofile(default_path.."/allores/Bosiite/Bosiite.lua")
dofile(default_path.."/allores/Bosoite/Bosoite.lua")
dofile(default_path.."/allores/Bostwickite/Bostwickite.lua")
dofile(default_path.."/allores/Botallackite/Botallackite.lua")
dofile(default_path.."/allores/Botryogen/Botryogen.lua")
dofile(default_path.."/allores/Bottinoite/Bottinoite.lua")
dofile(default_path.."/allores/Botuobinskite/Botuobinskite.lua")
dofile(default_path.."/allores/Bouazzerite/Bouazzerite.lua")
dofile(default_path.."/allores/Boulangerite/Boulangerite.lua")
dofile(default_path.."/allores/Bounahasite/Bounahasite.lua")
dofile(default_path.."/allores/Bournonite/Bournonite.lua")
dofile(default_path.."/allores/Bouskaite/Bouskaite.lua")
dofile(default_path.."/allores/Boussingaultite/Boussingaultite.lua")
dofile(default_path.."/allores/Bowieite/Bowieite.lua")
dofile(default_path.."/allores/Bowlesite/Bowlesite.lua")
dofile(default_path.."/allores/Boyleite/Boyleite.lua")
dofile(default_path.."/allores/Brabantite/Brabantite.lua")
dofile(default_path.."/allores/Braccoite/Braccoite.lua")
dofile(default_path.."/allores/Bracewellite/Bracewellite.lua")
dofile(default_path.."/allores/Brackebuschite/Brackebuschite.lua")
dofile(default_path.."/allores/Bradaczekite/Bradaczekite.lua")
dofile(default_path.."/allores/Bradleyite/Bradleyite.lua")
dofile(default_path.."/allores/Braggite/Braggite.lua")
dofile(default_path.."/allores/Braithwaiteite/Braithwaiteite.lua")
dofile(default_path.."/allores/Braitschite_Ce/Braitschite_Ce.lua")
dofile(default_path.."/allores/Branchite/Branchite.lua")
dofile(default_path.."/allores/Brandaoite/Brandaoite.lua")
dofile(default_path.."/allores/Brandholzite/Brandholzite.lua")
dofile(default_path.."/allores/Brandtite/Brandtite.lua")
dofile(default_path.."/allores/Brannerite/Brannerite.lua")
dofile(default_path.."/allores/Brannockite/Brannockite.lua")
dofile(default_path.."/allores/Brass/Brass.lua")
dofile(default_path.."/allores/Brassite/Brassite.lua")
dofile(default_path.."/allores/Brattforsite/Brattforsite.lua")
dofile(default_path.."/allores/Braunerite/Braunerite.lua")
dofile(default_path.."/allores/Braunite/Braunite.lua")
dofile(default_path.."/allores/Brazilianite/Brazilianite.lua")
dofile(default_path.."/allores/Brearleyite/Brearleyite.lua")
dofile(default_path.."/allores/Bredigite/Bredigite.lua")
dofile(default_path.."/allores/Breithauptite/Breithauptite.lua")
dofile(default_path.."/allores/Brendelite/Brendelite.lua")
dofile(default_path.."/allores/Brenkite/Brenkite.lua")
dofile(default_path.."/allores/Brewsterite_Ba/Brewsterite_Ba.lua")
dofile(default_path.."/allores/Brewsterite_Sr/Brewsterite_Sr.lua")
dofile(default_path.."/allores/Breyite/Breyite.lua")
dofile(default_path.."/allores/Brezinaite/Brezinaite.lua")
dofile(default_path.."/allores/Brianite/Brianite.lua")
dofile(default_path.."/allores/Brianroulstonite/Brianroulstonite.lua")
dofile(default_path.."/allores/Brianyoungite/Brianyoungite.lua")
dofile(default_path.."/allores/Briartite/Briartite.lua")
dofile(default_path.."/allores/Bridgesite_Ce/Bridgesite_Ce.lua")
dofile(default_path.."/allores/Bridgmanite/Bridgmanite.lua")
dofile(default_path.."/allores/Brindleyite/Brindleyite.lua")
dofile(default_path.."/allores/Brinrobertsite/Brinrobertsite.lua")
dofile(default_path.."/allores/Britholite_Ce/Britholite_Ce.lua")
dofile(default_path.."/allores/Britholite_Y/Britholite_Y.lua")
dofile(default_path.."/allores/Britvinite/Britvinite.lua")
dofile(default_path.."/allores/Brizziite/Brizziite.lua")
dofile(default_path.."/allores/Brochantite/Brochantite.lua")
dofile(default_path.."/allores/Brockite/Brockite.lua")
dofile(default_path.."/allores/Brodtkorbite/Brodtkorbite.lua")
dofile(default_path.."/allores/Brokenhillite/Brokenhillite.lua")
dofile(default_path.."/allores/Bromargyrite/Bromargyrite.lua")
dofile(default_path.."/allores/Bromellite/Bromellite.lua")
dofile(default_path.."/allores/Brontesite/Brontesite.lua")
dofile(default_path.."/allores/Brookite/Brookite.lua")
dofile(default_path.."/allores/Browneite/Browneite.lua")
dofile(default_path.."/allores/Brownleeite/Brownleeite.lua")
dofile(default_path.."/allores/Brownmillerite/Brownmillerite.lua")
dofile(default_path.."/allores/Brucite/Brucite.lua")
dofile(default_path.."/allores/Bruggenite/Bruggenite.lua")
dofile(default_path.."/allores/Brugnatellite/Brugnatellite.lua")
dofile(default_path.."/allores/Brumadoite/Brumadoite.lua")
dofile(default_path.."/allores/Brunogeierite/Brunogeierite.lua")
dofile(default_path.."/allores/Brushite/Brushite.lua")
dofile(default_path.."/allores/Bubnovaite/Bubnovaite.lua")
dofile(default_path.."/allores/Buchwaldite/Buchwaldite.lua")
dofile(default_path.."/allores/Buckhornite/Buckhornite.lua")
dofile(default_path.."/allores/Buddingtonite/Buddingtonite.lua")
dofile(default_path.."/allores/Bukovite/Bukovite.lua")
dofile(default_path.."/allores/Bukovskyite/Bukovskyite.lua")
dofile(default_path.."/allores/Bulachite/Bulachite.lua")
dofile(default_path.."/allores/Bulgakite/Bulgakite.lua")
dofile(default_path.."/allores/Bultfonteinite/Bultfonteinite.lua")
dofile(default_path.."/allores/Bunnoite/Bunnoite.lua")
dofile(default_path.."/allores/Bunsenite/Bunsenite.lua")
dofile(default_path.."/allores/Burangaite/Burangaite.lua")
dofile(default_path.."/allores/Burbankite/Burbankite.lua")
dofile(default_path.."/allores/Burckhardtite/Burckhardtite.lua")
dofile(default_path.."/allores/Burgessite/Burgessite.lua")
dofile(default_path.."/allores/Burkeite/Burkeite.lua")
dofile(default_path.."/allores/Burnettite/Burnettite.lua")
dofile(default_path.."/allores/Burnsite/Burnsite.lua")
dofile(default_path.."/allores/Burovaite_Ca/Burovaite_Ca.lua")
dofile(default_path.."/allores/Burpalite/Burpalite.lua")
dofile(default_path.."/allores/Burroite/Burroite.lua")
dofile(default_path.."/allores/Burtite/Burtite.lua")
dofile(default_path.."/allores/Buryatite/Buryatite.lua")
dofile(default_path.."/allores/Buseckite/Buseckite.lua")
dofile(default_path.."/allores/Buserite/Buserite.lua")
dofile(default_path.."/allores/Bushmakinite/Bushmakinite.lua")
dofile(default_path.."/allores/Bussenite/Bussenite.lua")
dofile(default_path.."/allores/Bussyite_Ce/Bussyite_Ce.lua")
dofile(default_path.."/allores/Bussyite_Y/Bussyite_Y.lua")
dofile(default_path.."/allores/Bustamite/Bustamite.lua")
dofile(default_path.."/allores/Butianite/Butianite.lua")
dofile(default_path.."/allores/Butlerite/Butlerite.lua")
dofile(default_path.."/allores/Butschliite/Butschliite.lua")
dofile(default_path.."/allores/Buttgenbachite/Buttgenbachite.lua")
dofile(default_path.."/allores/Byelorussite_Ce/Byelorussite_Ce.lua")
dofile(default_path.."/allores/Bykovaite/Bykovaite.lua")
dofile(default_path.."/allores/Byrudite/Byrudite.lua")
dofile(default_path.."/allores/Bystrite/Bystrite.lua")
dofile(default_path.."/allores/Bystromite/Bystromite.lua")
dofile(default_path.."/allores/Bytizite/Bytizite.lua")
dofile(default_path.."/allores/Bytownite/Bytownite.lua")
dofile(default_path.."/allores/Byzantievite/Byzantievite.lua")
dofile(default_path.."/allores/CO3_SO4_hydrotalcite_18_5A/CO3_SO4_hydrotalcite_18_5A.lua")
dofile(default_path.."/allores/Cabalzarite/Cabalzarite.lua")
dofile(default_path.."/allores/Cabriite/Cabriite.lua")
dofile(default_path.."/allores/Cabvinite/Cabvinite.lua")
dofile(default_path.."/allores/Cacoxenite/Cacoxenite.lua")
dofile(default_path.."/allores/Cadmium/Cadmium.lua")
dofile(default_path.."/allores/Cadmoindite/Cadmoindite.lua")
dofile(default_path.."/allores/Cadmoselite/Cadmoselite.lua")
dofile(default_path.."/allores/Cadmoxite/Cadmoxite.lua")
dofile(default_path.."/allores/Cadwaladerite/Cadwaladerite.lua")
dofile(default_path.."/allores/Caesiumpharmacosiderite/Caesiumpharmacosiderite.lua")
dofile(default_path.."/allores/Cafarsite/Cafarsite.lua")
dofile(default_path.."/allores/Cafetite/Cafetite.lua")
dofile(default_path.."/allores/Cahnite/Cahnite.lua")
dofile(default_path.."/allores/Caichengyunite/Caichengyunite.lua")
dofile(default_path.."/allores/Cairncrossite/Cairncrossite.lua")
dofile(default_path.."/allores/Calamaite/Calamaite.lua")
dofile(default_path.."/allores/Calaverite/Calaverite.lua")
dofile(default_path.."/allores/Calciborite/Calciborite.lua")
dofile(default_path.."/allores/Calcinaksite/Calcinaksite.lua")
dofile(default_path.."/allores/Calcio_olivine/Calcio_olivine.lua")
dofile(default_path.."/allores/Calcioancylite_Ce/Calcioancylite_Ce.lua")
dofile(default_path.."/allores/Calcioancylite_La/Calcioancylite_La.lua")
dofile(default_path.."/allores/Calcioancylite_Nd/Calcioancylite_Nd.lua")
dofile(default_path.."/allores/Calcioandyrobertsite/Calcioandyrobertsite.lua")
dofile(default_path.."/allores/Calcioaravaipaite/Calcioaravaipaite.lua")
dofile(default_path.."/allores/Calciobetafite/Calciobetafite.lua")
dofile(default_path.."/allores/Calcioburbankite/Calcioburbankite.lua")
dofile(default_path.."/allores/Calciocatapleiite/Calciocatapleiite.lua")
dofile(default_path.."/allores/Calciocopiapite/Calciocopiapite.lua")
dofile(default_path.."/allores/Calciodelrioite/Calciodelrioite.lua")
dofile(default_path.."/allores/Calcioferrite/Calcioferrite.lua")
dofile(default_path.."/allores/Calciohatertite/Calciohatertite.lua")
dofile(default_path.."/allores/Calciohilairite/Calciohilairite.lua")
dofile(default_path.."/allores/Calciojohillerite/Calciojohillerite.lua")
dofile(default_path.."/allores/Calciolangbeinite/Calciolangbeinite.lua")
dofile(default_path.."/allores/Calciomurmanite/Calciomurmanite.lua")
dofile(default_path.."/allores/Calciopetersite/Calciopetersite.lua")
dofile(default_path.."/allores/Calciosamarskite/Calciosamarskite.lua")
dofile(default_path.."/allores/Calciotantite/Calciotantite.lua")
dofile(default_path.."/allores/Calciouranoite/Calciouranoite.lua")
dofile(default_path.."/allores/Calcioursilite/Calcioursilite.lua")
dofile(default_path.."/allores/Calcioveatchite/Calcioveatchite.lua")
dofile(default_path.."/allores/Calcite/Calcite.lua")
dofile(default_path.."/allores/Calcjarlite/Calcjarlite.lua")
dofile(default_path.."/allores/Calclacite/Calclacite.lua")
dofile(default_path.."/allores/Calcurmolite/Calcurmolite.lua")
dofile(default_path.."/allores/Calcybeborosilite_Y/Calcybeborosilite_Y.lua")
dofile(default_path.."/allores/Calderite/Calderite.lua")
dofile(default_path.."/allores/Calderonite/Calderonite.lua")
dofile(default_path.."/allores/Caledonite/Caledonite.lua")
dofile(default_path.."/allores/Calkinsite_Ce/Calkinsite_Ce.lua")
dofile(default_path.."/allores/Callaghanite/Callaghanite.lua")
dofile(default_path.."/allores/Calomel/Calomel.lua")
dofile(default_path.."/allores/Calumetite/Calumetite.lua")
dofile(default_path.."/allores/Calvertite/Calvertite.lua")
dofile(default_path.."/allores/Calzirtite/Calzirtite.lua")
dofile(default_path.."/allores/Camanchacaite/Camanchacaite.lua")
dofile(default_path.."/allores/Camaraite/Camaraite.lua")
dofile(default_path.."/allores/Camaronesite/Camaronesite.lua")
dofile(default_path.."/allores/Camerolaite/Camerolaite.lua")
dofile(default_path.."/allores/Cameronite/Cameronite.lua")
dofile(default_path.."/allores/Camgasite/Camgasite.lua")
dofile(default_path.."/allores/Caminite/Caminite.lua")
dofile(default_path.."/allores/Campigliaite/Campigliaite.lua")
dofile(default_path.."/allores/Campostriniite/Campostriniite.lua")
dofile(default_path.."/allores/Canaphite/Canaphite.lua")
dofile(default_path.."/allores/Canasite/Canasite.lua")
dofile(default_path.."/allores/Canavesite/Canavesite.lua")
dofile(default_path.."/allores/Cancrinite/Cancrinite.lua")
dofile(default_path.."/allores/Cancrisilite/Cancrisilite.lua")
dofile(default_path.."/allores/Canfieldite/Canfieldite.lua")
dofile(default_path.."/allores/Cannilloite/Cannilloite.lua")
dofile(default_path.."/allores/Cannizzarite/Cannizzarite.lua")
dofile(default_path.."/allores/Cannonite/Cannonite.lua")
dofile(default_path.."/allores/Canosioite/Canosioite.lua")
dofile(default_path.."/allores/Canutite/Canutite.lua")
dofile(default_path.."/allores/Caoxite/Caoxite.lua")
dofile(default_path.."/allores/Capgaronnite/Capgaronnite.lua")
dofile(default_path.."/allores/Cappelenite_Y/Cappelenite_Y.lua")
dofile(default_path.."/allores/Capranicaite/Capranicaite.lua")
dofile(default_path.."/allores/Caracolite/Caracolite.lua")
dofile(default_path.."/allores/Carboborite/Carboborite.lua")
dofile(default_path.."/allores/Carbobystrite/Carbobystrite.lua")
dofile(default_path.."/allores/Carbocalumite/Carbocalumite.lua")
dofile(default_path.."/allores/Carbocernaite/Carbocernaite.lua")
dofile(default_path.."/allores/Carboirite/Carboirite.lua")
dofile(default_path.."/allores/Carbokentbrooksite/Carbokentbrooksite.lua")
dofile(default_path.."/allores/Carbonate_fluorapatite/Carbonate_fluorapatite.lua")
dofile(default_path.."/allores/Carbonate_hydroxylapatite/Carbonate_hydroxylapatite.lua")
dofile(default_path.."/allores/Carbonatecyanotrichite/Carbonatecyanotrichite.lua")
dofile(default_path.."/allores/Cardite/Cardite.lua")
dofile(default_path.."/allores/Carducciite/Carducciite.lua")
dofile(default_path.."/allores/Caresite/Caresite.lua")
dofile(default_path.."/allores/Carletonite/Carletonite.lua")
dofile(default_path.."/allores/Carletonmooreite/Carletonmooreite.lua")
dofile(default_path.."/allores/Carlfrancisite/Carlfrancisite.lua")
dofile(default_path.."/allores/Carlfriesite/Carlfriesite.lua")
dofile(default_path.."/allores/Carlgieseckeite_Nd/Carlgieseckeite_Nd.lua")
dofile(default_path.."/allores/Carlhintzeite/Carlhintzeite.lua")
dofile(default_path.."/allores/Carlinite/Carlinite.lua")
dofile(default_path.."/allores/Carlosbarbosaite/Carlosbarbosaite.lua")
dofile(default_path.."/allores/Carlosruizite/Carlosruizite.lua")
dofile(default_path.."/allores/Carlosturanite/Carlosturanite.lua")
dofile(default_path.."/allores/Carlsbergite/Carlsbergite.lua")
dofile(default_path.."/allores/Carlsonite/Carlsonite.lua")
dofile(default_path.."/allores/Carmeltazite/Carmeltazite.lua")
dofile(default_path.."/allores/Carmichaelite/Carmichaelite.lua")
dofile(default_path.."/allores/Carminite/Carminite.lua")
dofile(default_path.."/allores/Carnallite/Carnallite.lua")
dofile(default_path.."/allores/Carnotite/Carnotite.lua")
dofile(default_path.."/allores/Carobbiite/Carobbiite.lua")
dofile(default_path.."/allores/Carpathite/Carpathite.lua")
dofile(default_path.."/allores/Carpholite/Carpholite.lua")
dofile(default_path.."/allores/Carraraite/Carraraite.lua")
dofile(default_path.."/allores/Carrboydite/Carrboydite.lua")
dofile(default_path.."/allores/Carrollite/Carrollite.lua")
dofile(default_path.."/allores/Caryinite/Caryinite.lua")
dofile(default_path.."/allores/Caryochroite/Caryochroite.lua")
dofile(default_path.."/allores/Caryopilite/Caryopilite.lua")
dofile(default_path.."/allores/Cascandite/Cascandite.lua")
dofile(default_path.."/allores/Caseyite/Caseyite.lua")
dofile(default_path.."/allores/Cassagnaite/Cassagnaite.lua")
dofile(default_path.."/allores/Cassedanneite/Cassedanneite.lua")
dofile(default_path.."/allores/Cassidyite/Cassidyite.lua")
dofile(default_path.."/allores/Cassiterite/Cassiterite.lua")
dofile(default_path.."/allores/Castellaroite/Castellaroite.lua")
dofile(default_path.."/allores/Caswellsilverite/Caswellsilverite.lua")
dofile(default_path.."/allores/Catalanoite/Catalanoite.lua")
dofile(default_path.."/allores/Catamarcaite/Catamarcaite.lua")
dofile(default_path.."/allores/Catapleiite/Catapleiite.lua")
dofile(default_path.."/allores/Cattierite/Cattierite.lua")
dofile(default_path.."/allores/Cattiite/Cattiite.lua")
dofile(default_path.."/allores/Cavansite/Cavansite.lua")
dofile(default_path.."/allores/Cavoite/Cavoite.lua")
dofile(default_path.."/allores/Cayalsite_Y/Cayalsite_Y.lua")
dofile(default_path.."/allores/Caysichite_Y/Caysichite_Y.lua")
dofile(default_path.."/allores/Cebaite_Ce/Cebaite_Ce.lua")
dofile(default_path.."/allores/Cebaite_Nd/Cebaite_Nd.lua")
dofile(default_path.."/allores/Cebollite/Cebollite.lua")
dofile(default_path.."/allores/Cechite/Cechite.lua")
dofile(default_path.."/allores/Cejkaite/Cejkaite.lua")
dofile(default_path.."/allores/Celadonite/Celadonite.lua")
dofile(default_path.."/allores/Celestine/Celestine.lua")
dofile(default_path.."/allores/Celleriite/Celleriite.lua")
dofile(default_path.."/allores/Celsian/Celsian.lua")
dofile(default_path.."/allores/Centennialite/Centennialite.lua")
dofile(default_path.."/allores/Cerchiaraite_Al/Cerchiaraite_Al.lua")
dofile(default_path.."/allores/Cerchiaraite_Fe/Cerchiaraite_Fe.lua")
dofile(default_path.."/allores/Cerchiaraite_Mn/Cerchiaraite_Mn.lua")
dofile(default_path.."/allores/Cerianite_Ce/Cerianite_Ce.lua")
dofile(default_path.."/allores/Ceriopyrochlore_Ce/Ceriopyrochlore_Ce.lua")
dofile(default_path.."/allores/Cerite_Ce/Cerite_Ce.lua")
dofile(default_path.."/allores/Cerium/Cerium.lua")
dofile(default_path.."/allores/Cernyite/Cernyite.lua")
dofile(default_path.."/allores/Cerromojonite/Cerromojonite.lua")
dofile(default_path.."/allores/Ceruleite/Ceruleite.lua")
dofile(default_path.."/allores/Cerussite/Cerussite.lua")
dofile(default_path.."/allores/Cervandonite_Ce/Cervandonite_Ce.lua")
dofile(default_path.."/allores/Cervantite/Cervantite.lua")
dofile(default_path.."/allores/Cervelleite/Cervelleite.lua")
dofile(default_path.."/allores/Cesanite/Cesanite.lua")
dofile(default_path.."/allores/Cesarferreiraite/Cesarferreiraite.lua")
dofile(default_path.."/allores/Cesarolite/Cesarolite.lua")
dofile(default_path.."/allores/Cesbronite/Cesbronite.lua")
dofile(default_path.."/allores/Cesiodymite/Cesiodymite.lua")
dofile(default_path.."/allores/Cesiokenopyrochlore/Cesiokenopyrochlore.lua")
dofile(default_path.."/allores/Cesplumtantite/Cesplumtantite.lua")
dofile(default_path.."/allores/Cetineite/Cetineite.lua")
dofile(default_path.."/allores/Chabazite_Ca/Chabazite_Ca.lua")
dofile(default_path.."/allores/Chabazite_K/Chabazite_K.lua")
dofile(default_path.."/allores/Chabazite_Mg/Chabazite_Mg.lua")
dofile(default_path.."/allores/Chabazite_Na/Chabazite_Na.lua")
dofile(default_path.."/allores/Chabazite_Sr/Chabazite_Sr.lua")
dofile(default_path.."/allores/Chabourneite/Chabourneite.lua")
dofile(default_path.."/allores/Chadwickite/Chadwickite.lua")
dofile(default_path.."/allores/Chaidamuite/Chaidamuite.lua")
dofile(default_path.."/allores/Chalcanthite/Chalcanthite.lua")
dofile(default_path.."/allores/Chalcoalumite/Chalcoalumite.lua")
dofile(default_path.."/allores/Chalcocite/Chalcocite.lua")
dofile(default_path.."/allores/Chalcocyanite/Chalcocyanite.lua")
dofile(default_path.."/allores/Chalcomenite/Chalcomenite.lua")
dofile(default_path.."/allores/Chalconatronite/Chalconatronite.lua")
dofile(default_path.."/allores/Chalcophanite/Chalcophanite.lua")
dofile(default_path.."/allores/Chalcophyllite/Chalcophyllite.lua")
dofile(default_path.."/allores/Chalcopyrite/Chalcopyrite.lua")
dofile(default_path.."/allores/Chalcosiderite/Chalcosiderite.lua")
dofile(default_path.."/allores/Chalcostibite/Chalcostibite.lua")
dofile(default_path.."/allores/Chalcothallite/Chalcothallite.lua")
dofile(default_path.."/allores/Challacolloite/Challacolloite.lua")
dofile(default_path.."/allores/Chambersite/Chambersite.lua")
dofile(default_path.."/allores/Chameanite/Chameanite.lua")
dofile(default_path.."/allores/Chamosite/Chamosite.lua")
dofile(default_path.."/allores/Chanabayaite/Chanabayaite.lua")
dofile(default_path.."/allores/Changbaiite/Changbaiite.lua")
dofile(default_path.."/allores/Changchengite/Changchengite.lua")
dofile(default_path.."/allores/Changesite_Y/Changesite_Y.lua")
dofile(default_path.."/allores/Changoite/Changoite.lua")
dofile(default_path.."/allores/Chantalite/Chantalite.lua")
dofile(default_path.."/allores/Chaoite/Chaoite.lua")
dofile(default_path.."/allores/Chapmanite/Chapmanite.lua")
dofile(default_path.."/allores/Charleshatchettite/Charleshatchettite.lua")
dofile(default_path.."/allores/Charlesite/Charlesite.lua")
dofile(default_path.."/allores/Charmarite/Charmarite.lua")
dofile(default_path.."/allores/Charoite/Charoite.lua")
dofile(default_path.."/allores/Chatkalite/Chatkalite.lua")
dofile(default_path.."/allores/Chayesite/Chayesite.lua")
dofile(default_path.."/allores/Chegemite/Chegemite.lua")
dofile(default_path.."/allores/Chekhovichite/Chekhovichite.lua")
dofile(default_path.."/allores/Chelkarite/Chelkarite.lua")
dofile(default_path.."/allores/Chenevixite/Chenevixite.lua")
dofile(default_path.."/allores/Chengdeite/Chengdeite.lua")
dofile(default_path.."/allores/Chenguodaite/Chenguodaite.lua")
dofile(default_path.."/allores/Chenite/Chenite.lua")
dofile(default_path.."/allores/Chenmingite/Chenmingite.lua")
dofile(default_path.."/allores/Chenowethite/Chenowethite.lua")
dofile(default_path.."/allores/Chenxianite/Chenxianite.lua")
dofile(default_path.."/allores/Cheralite/Cheralite.lua")
dofile(default_path.."/allores/Cheremnykhite/Cheremnykhite.lua")
dofile(default_path.."/allores/Cherepanovite/Cherepanovite.lua")
dofile(default_path.."/allores/Chernikovite/Chernikovite.lua")
dofile(default_path.."/allores/Chernovite_Y/Chernovite_Y.lua")
dofile(default_path.."/allores/Chernykhite/Chernykhite.lua")
dofile(default_path.."/allores/Cherokeeite/Cherokeeite.lua")
dofile(default_path.."/allores/Chervetite/Chervetite.lua")
dofile(default_path.."/allores/Chesnokovite/Chesnokovite.lua")
dofile(default_path.."/allores/Chessexite/Chessexite.lua")
dofile(default_path.."/allores/Chesterite/Chesterite.lua")
dofile(default_path.."/allores/Chestermanite/Chestermanite.lua")
dofile(default_path.."/allores/Chevkinite_Ce/Chevkinite_Ce.lua")
dofile(default_path.."/allores/Chiappinoite_Y/Chiappinoite_Y.lua")
dofile(default_path.."/allores/Chiavennite/Chiavennite.lua")
dofile(default_path.."/allores/Chibaite/Chibaite.lua")
dofile(default_path.."/allores/Chihmingite/Chihmingite.lua")
dofile(default_path.."/allores/Chihuahuaite/Chihuahuaite.lua")
dofile(default_path.."/allores/Childrenite/Childrenite.lua")
dofile(default_path.."/allores/Chiluite/Chiluite.lua")
dofile(default_path.."/allores/Chinchorroite/Chinchorroite.lua")
dofile(default_path.."/allores/Chinleite_Nd/Chinleite_Nd.lua")
dofile(default_path.."/allores/Chinleite_Y/Chinleite_Y.lua")
dofile(default_path.."/allores/Chiolite/Chiolite.lua")
dofile(default_path.."/allores/Chirvinskyite/Chirvinskyite.lua")
dofile(default_path.."/allores/Chistyakovaite/Chistyakovaite.lua")
dofile(default_path.."/allores/Chivruaiite/Chivruaiite.lua")
dofile(default_path.."/allores/Chiyokoite/Chiyokoite.lua")
dofile(default_path.."/allores/Chkalovite/Chkalovite.lua")
dofile(default_path.."/allores/Chladniite/Chladniite.lua")
dofile(default_path.."/allores/Chloraluminite/Chloraluminite.lua")
dofile(default_path.."/allores/Chlorapatite/Chlorapatite.lua")
dofile(default_path.."/allores/Chlorargyrite/Chlorargyrite.lua")
dofile(default_path.."/allores/Chlorartinite/Chlorartinite.lua")
dofile(default_path.."/allores/Chlorbartonite/Chlorbartonite.lua")
dofile(default_path.."/allores/Chlorellestadite/Chlorellestadite.lua")
dofile(default_path.."/allores/Chloritoid/Chloritoid.lua")
dofile(default_path.."/allores/Chlorkyuygenite/Chlorkyuygenite.lua")
dofile(default_path.."/allores/Chlormagaluminite/Chlormagaluminite.lua")
dofile(default_path.."/allores/Chlormanganokalite/Chlormanganokalite.lua")
dofile(default_path.."/allores/Chlormayenite/Chlormayenite.lua")
dofile(default_path.."/allores/Chloro_potassic_ferro_edenite/Chloro_potassic_ferro_edenite.lua")
dofile(default_path.."/allores/Chlorocalcite/Chlorocalcite.lua")
dofile(default_path.."/allores/Chloromagnesite/Chloromagnesite.lua")
dofile(default_path.."/allores/Chloromenite/Chloromenite.lua")
dofile(default_path.."/allores/Chlorophoenicite/Chlorophoenicite.lua")
dofile(default_path.."/allores/Chlorothionite/Chlorothionite.lua")
dofile(default_path.."/allores/Chloroxiphite/Chloroxiphite.lua")
dofile(default_path.."/allores/Choloalite/Choloalite.lua")
dofile(default_path.."/allores/Chondrodite/Chondrodite.lua")
dofile(default_path.."/allores/Chongite/Chongite.lua")
dofile(default_path.."/allores/Chopinite/Chopinite.lua")
dofile(default_path.."/allores/Chovanite/Chovanite.lua")
dofile(default_path.."/allores/Chrisstanleyite/Chrisstanleyite.lua")
dofile(default_path.."/allores/Christelite/Christelite.lua")
dofile(default_path.."/allores/Christite/Christite.lua")
dofile(default_path.."/allores/Christofschaferite_Ce/Christofschaferite_Ce.lua")
dofile(default_path.."/allores/Chromatite/Chromatite.lua")
dofile(default_path.."/allores/Chrombismite/Chrombismite.lua")
dofile(default_path.."/allores/Chromceladonite/Chromceladonite.lua")
dofile(default_path.."/allores/Chromferide/Chromferide.lua")
dofile(default_path.."/allores/Chromio_pargasite/Chromio_pargasite.lua")
dofile(default_path.."/allores/Chromite/Chromite.lua")
dofile(default_path.."/allores/Chromium/Chromium.lua")
dofile(default_path.."/allores/Chromium_dravite/Chromium_dravite.lua")
dofile(default_path.."/allores/Chromo_alumino_povondraite/Chromo_alumino_povondraite.lua")
dofile(default_path.."/allores/Chromomphacite/Chromomphacite.lua")
dofile(default_path.."/allores/Chromphyllite/Chromphyllite.lua")
dofile(default_path.."/allores/Chromschieffelinite/Chromschieffelinite.lua")
dofile(default_path.."/allores/Chrysoberyl/Chrysoberyl.lua")
dofile(default_path.."/allores/Chrysocolla/Chrysocolla.lua")
dofile(default_path.."/allores/Chrysothallite/Chrysothallite.lua")
dofile(default_path.."/allores/Chrysotile/Chrysotile.lua")
dofile(default_path.."/allores/Chubarovite/Chubarovite.lua")
dofile(default_path.."/allores/Chudobaite/Chudobaite.lua")
dofile(default_path.."/allores/Chukanovite/Chukanovite.lua")
dofile(default_path.."/allores/Chukhrovite_Ca/Chukhrovite_Ca.lua")
dofile(default_path.."/allores/Chukhrovite_Ce/Chukhrovite_Ce.lua")
dofile(default_path.."/allores/Chukhrovite_Nd/Chukhrovite_Nd.lua")
dofile(default_path.."/allores/Chukhrovite_Y/Chukhrovite_Y.lua")
dofile(default_path.."/allores/Chukochenite/Chukochenite.lua")
dofile(default_path.."/allores/Chukotkaite/Chukotkaite.lua")
dofile(default_path.."/allores/Churchite_Nd/Churchite_Nd.lua")
dofile(default_path.."/allores/Churchite_Y/Churchite_Y.lua")
dofile(default_path.."/allores/Chursinite/Chursinite.lua")
dofile(default_path.."/allores/Chvaleticeite/Chvaleticeite.lua")
dofile(default_path.."/allores/Chvilevaite/Chvilevaite.lua")
dofile(default_path.."/allores/Cianciulliite/Cianciulliite.lua")
dofile(default_path.."/allores/Cinnabar/Cinnabar.lua")
dofile(default_path.."/allores/Ciprianiite/Ciprianiite.lua")
dofile(default_path.."/allores/Ciriottiite/Ciriottiite.lua")
dofile(default_path.."/allores/Cirrolite/Cirrolite.lua")
dofile(default_path.."/allores/Clairite/Clairite.lua")
dofile(default_path.."/allores/Claraite/Claraite.lua")
dofile(default_path.."/allores/Claringbullite/Claringbullite.lua")
dofile(default_path.."/allores/Clarkeite/Clarkeite.lua")
dofile(default_path.."/allores/Claudetite/Claudetite.lua")
dofile(default_path.."/allores/Clausthalite/Clausthalite.lua")
dofile(default_path.."/allores/Clearcreekite/Clearcreekite.lua")
dofile(default_path.."/allores/Clerite/Clerite.lua")
dofile(default_path.."/allores/Cleusonite/Cleusonite.lua")
dofile(default_path.."/allores/Cliffordite/Cliffordite.lua")
dofile(default_path.."/allores/Clino_ferri_holmquistite/Clino_ferri_holmquistite.lua")
dofile(default_path.."/allores/Clino_ferro_ferri_holmquistite/Clino_ferro_ferri_holmquistite.lua")
dofile(default_path.."/allores/Clino_oscarkempffite/Clino_oscarkempffite.lua")
dofile(default_path.."/allores/Clino_suenoite/Clino_suenoite.lua")
dofile(default_path.."/allores/Clinoatacamite/Clinoatacamite.lua")
dofile(default_path.."/allores/Clinobarylite/Clinobarylite.lua")
dofile(default_path.."/allores/Clinobehoite/Clinobehoite.lua")
dofile(default_path.."/allores/Clinobisvanite/Clinobisvanite.lua")
dofile(default_path.."/allores/Clinocervantite/Clinocervantite.lua")
dofile(default_path.."/allores/Clinochalcomenite/Clinochalcomenite.lua")
dofile(default_path.."/allores/Clinochlore/Clinochlore.lua")
dofile(default_path.."/allores/Clinoclase/Clinoclase.lua")
dofile(default_path.."/allores/Clinoenstatite/Clinoenstatite.lua")
dofile(default_path.."/allores/Clinofergusonite_Ce/Clinofergusonite_Ce.lua")
dofile(default_path.."/allores/Clinofergusonite_Nd/Clinofergusonite_Nd.lua")
dofile(default_path.."/allores/Clinofergusonite_Y/Clinofergusonite_Y.lua")
dofile(default_path.."/allores/Clinoferroholmquistite/Clinoferroholmquistite.lua")
dofile(default_path.."/allores/Clinoferrosilite/Clinoferrosilite.lua")
dofile(default_path.."/allores/Clinohedrite/Clinohedrite.lua")
dofile(default_path.."/allores/Clinohumite/Clinohumite.lua")
dofile(default_path.."/allores/Clinojimthompsonite/Clinojimthompsonite.lua")
dofile(default_path.."/allores/Clinokurchatovite/Clinokurchatovite.lua")
dofile(default_path.."/allores/Clinometaborite/Clinometaborite.lua")
dofile(default_path.."/allores/Clinophosinaite/Clinophosinaite.lua")
dofile(default_path.."/allores/Clinoptilolite_Ca/Clinoptilolite_Ca.lua")
dofile(default_path.."/allores/Clinoptilolite_K/Clinoptilolite_K.lua")
dofile(default_path.."/allores/Clinoptilolite_Na/Clinoptilolite_Na.lua")
dofile(default_path.."/allores/Clinosafflorite/Clinosafflorite.lua")
dofile(default_path.."/allores/Clinosulphur/Clinosulphur.lua")
dofile(default_path.."/allores/Clinotobermorite/Clinotobermorite.lua")
dofile(default_path.."/allores/Clinotyrolite/Clinotyrolite.lua")
dofile(default_path.."/allores/Clinoungemachite/Clinoungemachite.lua")
dofile(default_path.."/allores/Clinozoisite/Clinozoisite.lua")
dofile(default_path.."/allores/Clintonite/Clintonite.lua")
dofile(default_path.."/allores/Cloncurryite/Cloncurryite.lua")
dofile(default_path.."/allores/Coalingite/Coalingite.lua")
dofile(default_path.."/allores/Cobaltarthurite/Cobaltarthurite.lua")
dofile(default_path.."/allores/Cobaltaustinite/Cobaltaustinite.lua")
dofile(default_path.."/allores/Cobaltite/Cobaltite.lua")
dofile(default_path.."/allores/Cobaltkieserite/Cobaltkieserite.lua")
dofile(default_path.."/allores/Cobaltkoritnigite/Cobaltkoritnigite.lua")
dofile(default_path.."/allores/Cobaltlotharmeyerite/Cobaltlotharmeyerite.lua")
dofile(default_path.."/allores/Cobaltneustadtelite/Cobaltneustadtelite.lua")
dofile(default_path.."/allores/Cobaltoblodite/Cobaltoblodite.lua")
dofile(default_path.."/allores/Cobaltogordaite/Cobaltogordaite.lua")
dofile(default_path.."/allores/Cobaltomenite/Cobaltomenite.lua")
dofile(default_path.."/allores/Cobaltpentlandite/Cobaltpentlandite.lua")
dofile(default_path.."/allores/Cobalttsumcorite/Cobalttsumcorite.lua")
dofile(default_path.."/allores/Cobaltzippeite/Cobaltzippeite.lua")
dofile(default_path.."/allores/Coccinite/Coccinite.lua")
dofile(default_path.."/allores/Cochromite/Cochromite.lua")
dofile(default_path.."/allores/Coconinoite/Coconinoite.lua")
dofile(default_path.."/allores/Coesite/Coesite.lua")
dofile(default_path.."/allores/Coffinite/Coffinite.lua")
dofile(default_path.."/allores/Cohenite/Cohenite.lua")
dofile(default_path.."/allores/Coiraite/Coiraite.lua")
dofile(default_path.."/allores/Coldwellite/Coldwellite.lua")
dofile(default_path.."/allores/Colemanite/Colemanite.lua")
dofile(default_path.."/allores/Colimaite/Colimaite.lua")
dofile(default_path.."/allores/Colinowensite/Colinowensite.lua")
dofile(default_path.."/allores/Collinsite/Collinsite.lua")
dofile(default_path.."/allores/Colomeraite/Colomeraite.lua")
dofile(default_path.."/allores/Coloradoite/Coloradoite.lua")
dofile(default_path.."/allores/Colquiriite/Colquiriite.lua")
dofile(default_path.."/allores/Columbite_Fe/Columbite_Fe.lua")
dofile(default_path.."/allores/Columbite_Mg/Columbite_Mg.lua")
dofile(default_path.."/allores/Columbite_Mn/Columbite_Mn.lua")
dofile(default_path.."/allores/Colusite/Colusite.lua")
dofile(default_path.."/allores/Comancheite/Comancheite.lua")
dofile(default_path.."/allores/Combeite/Combeite.lua")
dofile(default_path.."/allores/Comblainite/Comblainite.lua")
dofile(default_path.."/allores/Compreignacite/Compreignacite.lua")
dofile(default_path.."/allores/Congolite/Congolite.lua")
dofile(default_path.."/allores/Conichalcite/Conichalcite.lua")
dofile(default_path.."/allores/Connellite/Connellite.lua")
dofile(default_path.."/allores/Cookeite/Cookeite.lua")
dofile(default_path.."/allores/Coombsite/Coombsite.lua")
dofile(default_path.."/allores/Cooperite/Cooperite.lua")
dofile(default_path.."/allores/Coparsite/Coparsite.lua")
dofile(default_path.."/allores/Copiapite/Copiapite.lua")
dofile(default_path.."/allores/Copper/Copper.lua")
dofile(default_path.."/allores/Coquandite/Coquandite.lua")
dofile(default_path.."/allores/Coquimbite/Coquimbite.lua")
dofile(default_path.."/allores/Coralloite/Coralloite.lua")
dofile(default_path.."/allores/Corderoite/Corderoite.lua")
dofile(default_path.."/allores/Cordierite/Cordierite.lua")
dofile(default_path.."/allores/Cordylite_Ce/Cordylite_Ce.lua")
dofile(default_path.."/allores/Cordylite_La/Cordylite_La.lua")
dofile(default_path.."/allores/Corkite/Corkite.lua")
dofile(default_path.."/allores/Cornetite/Cornetite.lua")
dofile(default_path.."/allores/Cornubite/Cornubite.lua")
dofile(default_path.."/allores/Cornwallite/Cornwallite.lua")
dofile(default_path.."/allores/Coronadite/Coronadite.lua")
dofile(default_path.."/allores/Correianevesite/Correianevesite.lua")
dofile(default_path.."/allores/Corrensite/Corrensite.lua")
dofile(default_path.."/allores/Cortesognoite/Cortesognoite.lua")
dofile(default_path.."/allores/Corundum/Corundum.lua")
dofile(default_path.."/allores/Corvusite/Corvusite.lua")
dofile(default_path.."/allores/Cosalite/Cosalite.lua")
dofile(default_path.."/allores/Coskrenite_Ce/Coskrenite_Ce.lua")
dofile(default_path.."/allores/Cossaite/Cossaite.lua")
dofile(default_path.."/allores/Costibite/Costibite.lua")
dofile(default_path.."/allores/Cotunnite/Cotunnite.lua")
dofile(default_path.."/allores/Coulsonite/Coulsonite.lua")
dofile(default_path.."/allores/Cousinite/Cousinite.lua")
dofile(default_path.."/allores/Coutinhoite/Coutinhoite.lua")
dofile(default_path.."/allores/Covellite/Covellite.lua")
dofile(default_path.."/allores/Cowlesite/Cowlesite.lua")
dofile(default_path.."/allores/Coyoteite/Coyoteite.lua")
dofile(default_path.."/allores/Crandallite/Crandallite.lua")
dofile(default_path.."/allores/Cranswickite/Cranswickite.lua")
dofile(default_path.."/allores/Crawfordite/Crawfordite.lua")
dofile(default_path.."/allores/Creaseyite/Creaseyite.lua")
dofile(default_path.."/allores/Crednerite/Crednerite.lua")
dofile(default_path.."/allores/Creedite/Creedite.lua")
dofile(default_path.."/allores/Crerarite/Crerarite.lua")
dofile(default_path.."/allores/Crichtonite/Crichtonite.lua")
dofile(default_path.."/allores/Criddleite/Criddleite.lua")
dofile(default_path.."/allores/Crimsonite/Crimsonite.lua")
dofile(default_path.."/allores/Cristobalite/Cristobalite.lua")
dofile(default_path.."/allores/Crocobelonite/Crocobelonite.lua")
dofile(default_path.."/allores/Crocoite/Crocoite.lua")
dofile(default_path.."/allores/Cronstedtite/Cronstedtite.lua")
dofile(default_path.."/allores/Cronusite/Cronusite.lua")
dofile(default_path.."/allores/Crookesite/Crookesite.lua")
dofile(default_path.."/allores/Crowningshieldite/Crowningshieldite.lua")
dofile(default_path.."/allores/Cryobostryxite/Cryobostryxite.lua")
dofile(default_path.."/allores/Cryolite/Cryolite.lua")
dofile(default_path.."/allores/Cryolithionite/Cryolithionite.lua")
dofile(default_path.."/allores/Cryptochalcite/Cryptochalcite.lua")
dofile(default_path.."/allores/Cryptohalite/Cryptohalite.lua")
dofile(default_path.."/allores/Cryptomelane/Cryptomelane.lua")
dofile(default_path.."/allores/Cryptophyllite/Cryptophyllite.lua")
dofile(default_path.."/allores/Cualstibite/Cualstibite.lua")
dofile(default_path.."/allores/Cuatrocapaite_K/Cuatrocapaite_K.lua")
dofile(default_path.."/allores/Cuatrocapaite_NH4/Cuatrocapaite_NH4.lua")
dofile(default_path.."/allores/Cubanite/Cubanite.lua")
dofile(default_path.."/allores/Cubo_ice/Cubo_ice.lua")
dofile(default_path.."/allores/Cuboargyrite/Cuboargyrite.lua")
dofile(default_path.."/allores/Cubothioplumbite/Cubothioplumbite.lua")
dofile(default_path.."/allores/Cumengeite/Cumengeite.lua")
dofile(default_path.."/allores/Cummingtonite/Cummingtonite.lua")
dofile(default_path.."/allores/Cupalite/Cupalite.lua")
dofile(default_path.."/allores/Cuprite/Cuprite.lua")
dofile(default_path.."/allores/Cuproauride/Cuproauride.lua")
dofile(default_path.."/allores/Cuprobismutite/Cuprobismutite.lua")
dofile(default_path.."/allores/Cuprocherokeeite/Cuprocherokeeite.lua")
dofile(default_path.."/allores/Cuprocopiapite/Cuprocopiapite.lua")
dofile(default_path.."/allores/Cuprodobrovolskyite/Cuprodobrovolskyite.lua")
dofile(default_path.."/allores/Cuprodongchuanite/Cuprodongchuanite.lua")
dofile(default_path.."/allores/Cuproiridsite/Cuproiridsite.lua")
dofile(default_path.."/allores/Cuprokalininite/Cuprokalininite.lua")
dofile(default_path.."/allores/Cupromakopavonite/Cupromakopavonite.lua")
dofile(default_path.."/allores/Cupromakovickyite/Cupromakovickyite.lua")
dofile(default_path.."/allores/Cupromolybdite/Cupromolybdite.lua")
dofile(default_path.."/allores/Cuproneyite/Cuproneyite.lua")
dofile(default_path.."/allores/Cupropavonite/Cupropavonite.lua")
dofile(default_path.."/allores/Cupropearceite/Cupropearceite.lua")
dofile(default_path.."/allores/Cupropolybasite/Cupropolybasite.lua")
dofile(default_path.."/allores/Cuprorhodsite/Cuprorhodsite.lua")
dofile(default_path.."/allores/Cuprorivaite/Cuprorivaite.lua")
dofile(default_path.."/allores/Cuprosklodowskite/Cuprosklodowskite.lua")
dofile(default_path.."/allores/Cuprospinel/Cuprospinel.lua")
dofile(default_path.."/allores/Cuprostibite/Cuprostibite.lua")
dofile(default_path.."/allores/Cuprotungstite/Cuprotungstite.lua")
dofile(default_path.."/allores/Cuprozheshengite/Cuprozheshengite.lua")
dofile(default_path.."/allores/Curetonite/Curetonite.lua")
dofile(default_path.."/allores/Curienite/Curienite.lua")
dofile(default_path.."/allores/Curite/Curite.lua")
dofile(default_path.."/allores/Currierite/Currierite.lua")
dofile(default_path.."/allores/Cuspidine/Cuspidine.lua")
dofile(default_path.."/allores/Cuyaite/Cuyaite.lua")
dofile(default_path.."/allores/Cuzticite/Cuzticite.lua")
dofile(default_path.."/allores/Cyanochroite/Cyanochroite.lua")
dofile(default_path.."/allores/Cyanophyllite/Cyanophyllite.lua")
dofile(default_path.."/allores/Cyanotrichite/Cyanotrichite.lua")
dofile(default_path.."/allores/Cylindrite/Cylindrite.lua")
dofile(default_path.."/allores/Cymrite/Cymrite.lua")
dofile(default_path.."/allores/Cyprine/Cyprine.lua")
dofile(default_path.."/allores/Cyrilovite/Cyrilovite.lua")
dofile(default_path.."/allores/Czochralskiite/Czochralskiite.lua")
dofile(default_path.."/allores/Dachiardite_Ca/Dachiardite_Ca.lua")
dofile(default_path.."/allores/Dachiardite_K/Dachiardite_K.lua")
dofile(default_path.."/allores/Dachiardite_Na/Dachiardite_Na.lua")
dofile(default_path.."/allores/Dadsonite/Dadsonite.lua")
dofile(default_path.."/allores/Dagenaisite/Dagenaisite.lua")
dofile(default_path.."/allores/Daliranite/Daliranite.lua")
dofile(default_path.."/allores/Dalnegorskite/Dalnegorskite.lua")
dofile(default_path.."/allores/Dalnegroite/Dalnegroite.lua")
dofile(default_path.."/allores/Dalyite/Dalyite.lua")
dofile(default_path.."/allores/Damaraite/Damaraite.lua")
dofile(default_path.."/allores/Damiaoite/Damiaoite.lua")
dofile(default_path.."/allores/Danalite/Danalite.lua")
dofile(default_path.."/allores/Danbaite/Danbaite.lua")
dofile(default_path.."/allores/Danburite/Danburite.lua")
dofile(default_path.."/allores/Danielsite/Danielsite.lua")
dofile(default_path.."/allores/Dansite/Dansite.lua")
dofile(default_path.."/allores/Dansite_Fe/Dansite_Fe.lua")
dofile(default_path.."/allores/Dansite_Mn/Dansite_Mn.lua")
dofile(default_path.."/allores/Dantopaite/Dantopaite.lua")
dofile(default_path.."/allores/Daomanite/Daomanite.lua")
dofile(default_path.."/allores/Daqingshanite_Ce/Daqingshanite_Ce.lua")
dofile(default_path.."/allores/Darapiosite/Darapiosite.lua")
dofile(default_path.."/allores/Darapskite/Darapskite.lua")
dofile(default_path.."/allores/Dargaite/Dargaite.lua")
dofile(default_path.."/allores/Darrellhenryite/Darrellhenryite.lua")
dofile(default_path.."/allores/Dashkovaite/Dashkovaite.lua")
dofile(default_path.."/allores/Datolite/Datolite.lua")
dofile(default_path.."/allores/Daubreeite/Daubreeite.lua")
dofile(default_path.."/allores/Daubreelite/Daubreelite.lua")
dofile(default_path.."/allores/Davanite/Davanite.lua")
dofile(default_path.."/allores/Davemaoite/Davemaoite.lua")
dofile(default_path.."/allores/Davidbrownite_NH4/Davidbrownite_NH4.lua")
dofile(default_path.."/allores/Davidite_Ce/Davidite_Ce.lua")
dofile(default_path.."/allores/Davidite_La/Davidite_La.lua")
dofile(default_path.."/allores/Davidite_Y/Davidite_Y.lua")
dofile(default_path.."/allores/Davidlloydite/Davidlloydite.lua")
dofile(default_path.."/allores/Davidsmithite/Davidsmithite.lua")
dofile(default_path.."/allores/Davinciite/Davinciite.lua")
dofile(default_path.."/allores/Davisite/Davisite.lua")
dofile(default_path.."/allores/Davreuxite/Davreuxite.lua")
dofile(default_path.."/allores/Davyne/Davyne.lua")
dofile(default_path.."/allores/Dawsonite/Dawsonite.lua")
dofile(default_path.."/allores/Deanesmithite/Deanesmithite.lua")
dofile(default_path.."/allores/Debattistiite/Debattistiite.lua")
dofile(default_path.."/allores/Decagonite/Decagonite.lua")
dofile(default_path.."/allores/Decrespignyite_Y/Decrespignyite_Y.lua")
dofile(default_path.."/allores/Deerite/Deerite.lua")
dofile(default_path.."/allores/Defernite/Defernite.lua")
dofile(default_path.."/allores/Dekatriasartorite/Dekatriasartorite.lua")
dofile(default_path.."/allores/Delafossite/Delafossite.lua")
dofile(default_path.."/allores/Delhayelite/Delhayelite.lua")
dofile(default_path.."/allores/Delhuyarite_Ce/Delhuyarite_Ce.lua")
dofile(default_path.."/allores/Deliensite/Deliensite.lua")
dofile(default_path.."/allores/Delindeite/Delindeite.lua")
dofile(default_path.."/allores/Dellagiustaite/Dellagiustaite.lua")
dofile(default_path.."/allores/Dellaite/Dellaite.lua")
dofile(default_path.."/allores/Deloneite/Deloneite.lua")
dofile(default_path.."/allores/Deloryite/Deloryite.lua")
dofile(default_path.."/allores/Delrioite/Delrioite.lua")
dofile(default_path.."/allores/Deltalumite/Deltalumite.lua")
dofile(default_path.."/allores/Deltanitrogen/Deltanitrogen.lua")
dofile(default_path.."/allores/Delvauxite/Delvauxite.lua")
dofile(default_path.."/allores/Demagistrisite/Demagistrisite.lua")
dofile(default_path.."/allores/Demartinite/Demartinite.lua")
dofile(default_path.."/allores/Demesmaekerite/Demesmaekerite.lua")
dofile(default_path.."/allores/Demicheleite_Br/Demicheleite_Br.lua")
dofile(default_path.."/allores/Demicheleite_Cl/Demicheleite_Cl.lua")
dofile(default_path.."/allores/Demicheleite_I/Demicheleite_I.lua")
dofile(default_path.."/allores/Dendoraite_NH4/Dendoraite_NH4.lua")
dofile(default_path.."/allores/Denisovite/Denisovite.lua")
dofile(default_path.."/allores/Denningite/Denningite.lua")
dofile(default_path.."/allores/Depmeierite/Depmeierite.lua")
dofile(default_path.."/allores/Derbylite/Derbylite.lua")
dofile(default_path.."/allores/Derriksite/Derriksite.lua")
dofile(default_path.."/allores/Dervillite/Dervillite.lua")
dofile(default_path.."/allores/Desautelsite/Desautelsite.lua")
dofile(default_path.."/allores/Descloizite/Descloizite.lua")
dofile(default_path.."/allores/Despujolsite/Despujolsite.lua")
dofile(default_path.."/allores/Dessauite_Y/Dessauite_Y.lua")
dofile(default_path.."/allores/Destinezite/Destinezite.lua")
dofile(default_path.."/allores/Deveroite_Ce/Deveroite_Ce.lua")
dofile(default_path.."/allores/Devilliersite/Devilliersite.lua")
dofile(default_path.."/allores/Devilline/Devilline.lua")
dofile(default_path.."/allores/Devitoite/Devitoite.lua")
dofile(default_path.."/allores/Deweylite/Deweylite.lua")
dofile(default_path.."/allores/Dewindtite/Dewindtite.lua")
dofile(default_path.."/allores/Dewitite/Dewitite.lua")
dofile(default_path.."/allores/Deynekoite/Deynekoite.lua")
dofile(default_path.."/allores/Diaboleite/Diaboleite.lua")
dofile(default_path.."/allores/Diadochite/Diadochite.lua")
dofile(default_path.."/allores/Diamond/Diamond.lua")
dofile(default_path.."/allores/Diaoyudaoite/Diaoyudaoite.lua")
dofile(default_path.."/allores/Diaphorite/Diaphorite.lua")
dofile(default_path.."/allores/Diaspore/Diaspore.lua")
dofile(default_path.."/allores/Dickinsonite_KMnNa/Dickinsonite_KMnNa.lua")
dofile(default_path.."/allores/Dickite/Dickite.lua")
dofile(default_path.."/allores/Dickthomssenite/Dickthomssenite.lua")
dofile(default_path.."/allores/Diegogattaite/Diegogattaite.lua")
dofile(default_path.."/allores/Dienerite/Dienerite.lua")
dofile(default_path.."/allores/Dietrichite/Dietrichite.lua")
dofile(default_path.."/allores/Dietzeite/Dietzeite.lua")
dofile(default_path.."/allores/Digenite/Digenite.lua")
dofile(default_path.."/allores/Dimorphite/Dimorphite.lua")
dofile(default_path.."/allores/Dingdaohengite_Ce/Dingdaohengite_Ce.lua")
dofile(default_path.."/allores/Dinite/Dinite.lua")
dofile(default_path.."/allores/Diomignite/Diomignite.lua")
dofile(default_path.."/allores/Diopside/Diopside.lua")
dofile(default_path.."/allores/Dioptase/Dioptase.lua")
dofile(default_path.."/allores/Dioskouriite/Dioskouriite.lua")
dofile(default_path.."/allores/Direnzoite/Direnzoite.lua")
dofile(default_path.."/allores/Dissakisite_Ce/Dissakisite_Ce.lua")
dofile(default_path.."/allores/Dissakisite_La/Dissakisite_La.lua")
dofile(default_path.."/allores/Disulfodadsonite/Disulfodadsonite.lua")
dofile(default_path.."/allores/Dittmarite/Dittmarite.lua")
dofile(default_path.."/allores/Diversilite_Ce/Diversilite_Ce.lua")
dofile(default_path.."/allores/Dixenite/Dixenite.lua")
dofile(default_path.."/allores/Djerfisherite/Djerfisherite.lua")
dofile(default_path.."/allores/Djurleite/Djurleite.lua")
dofile(default_path.."/allores/Dmisokolovite/Dmisokolovite.lua")
dofile(default_path.."/allores/Dmisteinbergite/Dmisteinbergite.lua")
dofile(default_path.."/allores/Dmitryivanovite/Dmitryivanovite.lua")
dofile(default_path.."/allores/Dobrovolskyite/Dobrovolskyite.lua")
dofile(default_path.."/allores/Dobsinaite/Dobsinaite.lua")
dofile(default_path.."/allores/Dokuchaevite/Dokuchaevite.lua")
dofile(default_path.."/allores/Dolerophanite/Dolerophanite.lua")
dofile(default_path.."/allores/Dollaseite_Ce/Dollaseite_Ce.lua")
dofile(default_path.."/allores/Dolomite/Dolomite.lua")
dofile(default_path.."/allores/Doloresite/Doloresite.lua")
dofile(default_path.."/allores/Domerockite/Domerockite.lua")
dofile(default_path.."/allores/Domeykite/Domeykite.lua")
dofile(default_path.."/allores/Donbassite/Donbassite.lua")
dofile(default_path.."/allores/Dondoellite/Dondoellite.lua")
dofile(default_path.."/allores/Dongchuanite/Dongchuanite.lua")
dofile(default_path.."/allores/Donharrisite/Donharrisite.lua")
dofile(default_path.."/allores/Donnayite_Y/Donnayite_Y.lua")
dofile(default_path.."/allores/Donowensite/Donowensite.lua")
dofile(default_path.."/allores/Donpeacorite/Donpeacorite.lua")
dofile(default_path.."/allores/Donwilhelmsite/Donwilhelmsite.lua")
dofile(default_path.."/allores/Dorallcharite/Dorallcharite.lua")
dofile(default_path.."/allores/Dorfmanite/Dorfmanite.lua")
dofile(default_path.."/allores/Dorrite/Dorrite.lua")
dofile(default_path.."/allores/Douglasite/Douglasite.lua")
dofile(default_path.."/allores/Dovyrenite/Dovyrenite.lua")
dofile(default_path.."/allores/Downeyite/Downeyite.lua")
dofile(default_path.."/allores/Downsite/Downsite.lua")
dofile(default_path.."/allores/Doyleite/Doyleite.lua")
dofile(default_path.."/allores/Dozyite/Dozyite.lua")
dofile(default_path.."/allores/Dravertite/Dravertite.lua")
dofile(default_path.."/allores/Dravite/Dravite.lua")
dofile(default_path.."/allores/Drechslerite/Drechslerite.lua")
dofile(default_path.."/allores/Dresserite/Dresserite.lua")
dofile(default_path.."/allores/Dreyerite/Dreyerite.lua")
dofile(default_path.."/allores/Driekopite/Driekopite.lua")
dofile(default_path.."/allores/Dritsite/Dritsite.lua")
dofile(default_path.."/allores/Drobecite/Drobecite.lua")
dofile(default_path.."/allores/Droninoite/Droninoite.lua")
dofile(default_path.."/allores/Drugmanite/Drugmanite.lua")
dofile(default_path.."/allores/Drysdallite/Drysdallite.lua")
dofile(default_path.."/allores/Dualite/Dualite.lua")
dofile(default_path.."/allores/Dufrenite/Dufrenite.lua")
dofile(default_path.."/allores/Dufrenoysite/Dufrenoysite.lua")
dofile(default_path.."/allores/Duftite/Duftite.lua")
dofile(default_path.."/allores/Dugganite/Dugganite.lua")
dofile(default_path.."/allores/Dukeite/Dukeite.lua")
dofile(default_path.."/allores/Dumontite/Dumontite.lua")
dofile(default_path.."/allores/Dumortierite/Dumortierite.lua")
dofile(default_path.."/allores/Dundasite/Dundasite.lua")
dofile(default_path.."/allores/Durangite/Durangite.lua")
dofile(default_path.."/allores/Duranusite/Duranusite.lua")
dofile(default_path.."/allores/Dusmatovite/Dusmatovite.lua")
dofile(default_path.."/allores/Dussertite/Dussertite.lua")
dofile(default_path.."/allores/Dutkevichite_Ce/Dutkevichite_Ce.lua")
dofile(default_path.."/allores/Dutrowite/Dutrowite.lua")
dofile(default_path.."/allores/Duttonite/Duttonite.lua")
dofile(default_path.."/allores/Dwornikite/Dwornikite.lua")
dofile(default_path.."/allores/Dymkovite/Dymkovite.lua")
dofile(default_path.."/allores/Dypingite/Dypingite.lua")
dofile(default_path.."/allores/Dyrnaesite_La/Dyrnaesite_La.lua")
dofile(default_path.."/allores/Dyscrasite/Dyscrasite.lua")
dofile(default_path.."/allores/Dzhalindite/Dzhalindite.lua")
dofile(default_path.."/allores/Dzharkenite/Dzharkenite.lua")
dofile(default_path.."/allores/Dzhuluite/Dzhuluite.lua")
dofile(default_path.."/allores/Dzierzanowskite/Dzierzanowskite.lua")
dofile(default_path.."/allores/Eakerite/Eakerite.lua")
dofile(default_path.."/allores/Earlandite/Earlandite.lua")
dofile(default_path.."/allores/Earlshannonite/Earlshannonite.lua")
dofile(default_path.."/allores/Eastonite/Eastonite.lua")
dofile(default_path.."/allores/Ecandrewsite/Ecandrewsite.lua")
dofile(default_path.."/allores/Ecdemite/Ecdemite.lua")
dofile(default_path.."/allores/Eckerite/Eckerite.lua")
dofile(default_path.."/allores/Eckermannite/Eckermannite.lua")
dofile(default_path.."/allores/Eckhardite/Eckhardite.lua")
dofile(default_path.."/allores/Eclarite/Eclarite.lua")
dofile(default_path.."/allores/Ecrinsite/Ecrinsite.lua")
dofile(default_path.."/allores/Eddavidite/Eddavidite.lua")
dofile(default_path.."/allores/Edenharterite/Edenharterite.lua")
dofile(default_path.."/allores/Edenite/Edenite.lua")
dofile(default_path.."/allores/Edgarbaileyite/Edgarbaileyite.lua")
dofile(default_path.."/allores/Edgarite/Edgarite.lua")
dofile(default_path.."/allores/Edgrewite/Edgrewite.lua")
dofile(default_path.."/allores/Edingtonite/Edingtonite.lua")
dofile(default_path.."/allores/Edoylerite/Edoylerite.lua")
dofile(default_path.."/allores/Edscottite/Edscottite.lua")
dofile(default_path.."/allores/Edtollite/Edtollite.lua")
dofile(default_path.."/allores/Edwardsite/Edwardsite.lua")
dofile(default_path.."/allores/Effenbergerite/Effenbergerite.lua")
dofile(default_path.."/allores/Efremovite/Efremovite.lua")
dofile(default_path.."/allores/Eggletonite/Eggletonite.lua")
dofile(default_path.."/allores/Eglestonite/Eglestonite.lua")
dofile(default_path.."/allores/Ehrleite/Ehrleite.lua")
dofile(default_path.."/allores/Eifelite/Eifelite.lua")
dofile(default_path.."/allores/Eirikite/Eirikite.lua")
dofile(default_path.."/allores/Eitelite/Eitelite.lua")
dofile(default_path.."/allores/Ekanite/Ekanite.lua")
dofile(default_path.."/allores/Ekaterinite/Ekaterinite.lua")
dofile(default_path.."/allores/Ekatite/Ekatite.lua")
dofile(default_path.."/allores/Ekebergite/Ekebergite.lua")
dofile(default_path.."/allores/Ekplexite/Ekplexite.lua")
dofile(default_path.."/allores/Elaliite/Elaliite.lua")
dofile(default_path.."/allores/Elasmochloite/Elasmochloite.lua")
dofile(default_path.."/allores/Elbaite/Elbaite.lua")
dofile(default_path.."/allores/Elbrusite/Elbrusite.lua")
dofile(default_path.."/allores/Eldfellite/Eldfellite.lua")
dofile(default_path.."/allores/Eldragonite/Eldragonite.lua")
dofile(default_path.."/allores/Electrum/Electrum.lua")
dofile(default_path.."/allores/Eleomelanite/Eleomelanite.lua")
dofile(default_path.."/allores/Eleonorite/Eleonorite.lua")
dofile(default_path.."/allores/Elgoresyite/Elgoresyite.lua")
dofile(default_path.."/allores/Eliopoulosite/Eliopoulosite.lua")
dofile(default_path.."/allores/Eliseevite/Eliseevite.lua")
dofile(default_path.."/allores/Elkinstantonite/Elkinstantonite.lua")
dofile(default_path.."/allores/Ellenbergerite/Ellenbergerite.lua")
dofile(default_path.."/allores/Ellestadite_Cl/Ellestadite_Cl.lua")
dofile(default_path.."/allores/Ellinaite/Ellinaite.lua")
dofile(default_path.."/allores/Ellingsenite/Ellingsenite.lua")
dofile(default_path.."/allores/Elliottite/Elliottite.lua")
dofile(default_path.."/allores/Ellisite/Ellisite.lua")
dofile(default_path.."/allores/Elpasolite/Elpasolite.lua")
dofile(default_path.."/allores/Elpidite/Elpidite.lua")
dofile(default_path.."/allores/Eltyubyuite/Eltyubyuite.lua")
dofile(default_path.."/allores/Elyite/Elyite.lua")
dofile(default_path.."/allores/Embreyite/Embreyite.lua")
dofile(default_path.."/allores/Emeleusite/Emeleusite.lua")
dofile(default_path.."/allores/Emilite/Emilite.lua")
dofile(default_path.."/allores/Emmerichite/Emmerichite.lua")
dofile(default_path.."/allores/Emmonsite/Emmonsite.lua")
dofile(default_path.."/allores/Emplectite/Emplectite.lua")
dofile(default_path.."/allores/Empressite/Empressite.lua")
dofile(default_path.."/allores/Enargite/Enargite.lua")
dofile(default_path.."/allores/Engelhauptite/Engelhauptite.lua")
dofile(default_path.."/allores/Englishite/Englishite.lua")
dofile(default_path.."/allores/Enneasartorite/Enneasartorite.lua")
dofile(default_path.."/allores/Enstatite/Enstatite.lua")
dofile(default_path.."/allores/Eosphorite/Eosphorite.lua")
dofile(default_path.."/allores/Ephesite/Ephesite.lua")
dofile(default_path.."/allores/Epididymite/Epididymite.lua")
dofile(default_path.."/allores/Epidote/Epidote.lua")
dofile(default_path.."/allores/Epidote_Sr/Epidote_Sr.lua")
dofile(default_path.."/allores/Epifanovite/Epifanovite.lua")
dofile(default_path.."/allores/Epistilbite/Epistilbite.lua")
dofile(default_path.."/allores/Epistolite/Epistolite.lua")
dofile(default_path.."/allores/Epsomite/Epsomite.lua")
dofile(default_path.."/allores/Erazoite/Erazoite.lua")
dofile(default_path.."/allores/Ercitite/Ercitite.lua")
dofile(default_path.."/allores/Erdite/Erdite.lua")
dofile(default_path.."/allores/Ericaite/Ericaite.lua")
dofile(default_path.."/allores/Ericlaxmanite/Ericlaxmanite.lua")
dofile(default_path.."/allores/Ericssonite/Ericssonite.lua")
dofile(default_path.."/allores/Erikapohlite/Erikapohlite.lua")
dofile(default_path.."/allores/Erikjonssonite/Erikjonssonite.lua")
dofile(default_path.."/allores/Eringaite/Eringaite.lua")
dofile(default_path.."/allores/Eriochalcite/Eriochalcite.lua")
dofile(default_path.."/allores/Erionite_Ca/Erionite_Ca.lua")
dofile(default_path.."/allores/Erionite_K/Erionite_K.lua")
dofile(default_path.."/allores/Erionite_Na/Erionite_Na.lua")
dofile(default_path.."/allores/Erlianite/Erlianite.lua")
dofile(default_path.."/allores/Erlichmanite/Erlichmanite.lua")
dofile(default_path.."/allores/Ermakovite/Ermakovite.lua")
dofile(default_path.."/allores/Ermeloite/Ermeloite.lua")
dofile(default_path.."/allores/Ernienickelite/Ernienickelite.lua")
dofile(default_path.."/allores/Erniggliite/Erniggliite.lua")
dofile(default_path.."/allores/Ernstburkeite/Ernstburkeite.lua")
dofile(default_path.."/allores/Ernstite/Ernstite.lua")
dofile(default_path.."/allores/Ershovite/Ershovite.lua")
dofile(default_path.."/allores/Erssonite/Erssonite.lua")
dofile(default_path.."/allores/Ertixiite/Ertixiite.lua")
dofile(default_path.."/allores/Erythrite/Erythrite.lua")
dofile(default_path.."/allores/Erythrosiderite/Erythrosiderite.lua")
dofile(default_path.."/allores/Erzwiesite/Erzwiesite.lua")
dofile(default_path.."/allores/Escheite/Escheite.lua")
dofile(default_path.."/allores/Esdanaite_Ce/Esdanaite_Ce.lua")
dofile(default_path.."/allores/Eskebornite/Eskebornite.lua")
dofile(default_path.."/allores/Eskimoite/Eskimoite.lua")
dofile(default_path.."/allores/Eskolaite/Eskolaite.lua")
dofile(default_path.."/allores/Espadaite/Espadaite.lua")
dofile(default_path.."/allores/Esperanzaite/Esperanzaite.lua")
dofile(default_path.."/allores/Esperite/Esperite.lua")
dofile(default_path.."/allores/Esquireite/Esquireite.lua")
dofile(default_path.."/allores/Esseneite/Esseneite.lua")
dofile(default_path.."/allores/Eta_bronze/Eta_bronze.lua")
dofile(default_path.."/allores/Ettringite/Ettringite.lua")
dofile(default_path.."/allores/Eucairite/Eucairite.lua")
dofile(default_path.."/allores/Euchlorine/Euchlorine.lua")
dofile(default_path.."/allores/Euchroite/Euchroite.lua")
dofile(default_path.."/allores/Euclase/Euclase.lua")
dofile(default_path.."/allores/Eucryptite/Eucryptite.lua")
dofile(default_path.."/allores/Eudialyte/Eudialyte.lua")
dofile(default_path.."/allores/Eudidymite/Eudidymite.lua")
dofile(default_path.."/allores/Eugenite/Eugenite.lua")
dofile(default_path.."/allores/Eugsterite/Eugsterite.lua")
dofile(default_path.."/allores/Eulytine/Eulytine.lua")
dofile(default_path.."/allores/Eurekadumpite/Eurekadumpite.lua")
dofile(default_path.."/allores/Euxenite_Y/Euxenite_Y.lua")
dofile(default_path.."/allores/Evanichite/Evanichite.lua")
dofile(default_path.."/allores/Evansite/Evansite.lua")
dofile(default_path.."/allores/Evdokimovite/Evdokimovite.lua")
dofile(default_path.."/allores/Eveite/Eveite.lua")
dofile(default_path.."/allores/Evenkite/Evenkite.lua")
dofile(default_path.."/allores/Eveslogite/Eveslogite.lua")
dofile(default_path.."/allores/Evseevite/Evseevite.lua")
dofile(default_path.."/allores/Ewaldite/Ewaldite.lua")
dofile(default_path.."/allores/Ewingite/Ewingite.lua")
dofile(default_path.."/allores/Eylettersite/Eylettersite.lua")
dofile(default_path.."/allores/Eyselite/Eyselite.lua")
dofile(default_path.."/allores/Ezcurrite/Ezcurrite.lua")
dofile(default_path.."/allores/Eztlite/Eztlite.lua")
dofile(default_path.."/allores/Fabianite/Fabianite.lua")
dofile(default_path.."/allores/Fabriesite/Fabriesite.lua")
dofile(default_path.."/allores/Faheyite/Faheyite.lua")
dofile(default_path.."/allores/Fahleite/Fahleite.lua")
dofile(default_path.."/allores/Fairbankite/Fairbankite.lua")
dofile(default_path.."/allores/Fairchildite/Fairchildite.lua")
dofile(default_path.."/allores/Fairfieldite/Fairfieldite.lua")
dofile(default_path.."/allores/Faizievite/Faizievite.lua")
dofile(default_path.."/allores/Falcondoite/Falcondoite.lua")
dofile(default_path.."/allores/Falgarite/Falgarite.lua")
dofile(default_path.."/allores/Falkmanite/Falkmanite.lua")
dofile(default_path.."/allores/Falottaite/Falottaite.lua")
dofile(default_path.."/allores/Falsterite/Falsterite.lua")
dofile(default_path.."/allores/Famatinite/Famatinite.lua")
dofile(default_path.."/allores/Fanfaniite/Fanfaniite.lua")
dofile(default_path.."/allores/Fangite/Fangite.lua")
dofile(default_path.."/allores/Fantappieite/Fantappieite.lua")
dofile(default_path.."/allores/Farneseite/Farneseite.lua")
dofile(default_path.."/allores/Farringtonite/Farringtonite.lua")
dofile(default_path.."/allores/Fassinaite/Fassinaite.lua")
dofile(default_path.."/allores/Faujasite_Ca/Faujasite_Ca.lua")
dofile(default_path.."/allores/Faujasite_Mg/Faujasite_Mg.lua")
dofile(default_path.."/allores/Faujasite_Na/Faujasite_Na.lua")
dofile(default_path.."/allores/Faustite/Faustite.lua")
dofile(default_path.."/allores/Favreauite/Favreauite.lua")
dofile(default_path.."/allores/Fayalite/Fayalite.lua")
dofile(default_path.."/allores/Fedorite/Fedorite.lua")
dofile(default_path.."/allores/Fedorovskite/Fedorovskite.lua")
dofile(default_path.."/allores/Fedotovite/Fedotovite.lua")
dofile(default_path.."/allores/Fehrite/Fehrite.lua")
dofile(default_path.."/allores/Feiite/Feiite.lua")
dofile(default_path.."/allores/Feinglosite/Feinglosite.lua")
dofile(default_path.."/allores/Feitknechtite/Feitknechtite.lua")
dofile(default_path.."/allores/Fejerite/Fejerite.lua")
dofile(default_path.."/allores/Feklichevite/Feklichevite.lua")
dofile(default_path.."/allores/Felbertalite/Felbertalite.lua")
dofile(default_path.."/allores/Felsobanyaite/Felsobanyaite.lua")
dofile(default_path.."/allores/Fenaksite/Fenaksite.lua")
dofile(default_path.."/allores/Fencooperite/Fencooperite.lua")
dofile(default_path.."/allores/Fengchengite/Fengchengite.lua")
dofile(default_path.."/allores/Feodosiyite/Feodosiyite.lua")
dofile(default_path.."/allores/Ferberite/Ferberite.lua")
dofile(default_path.."/allores/Ferchromide/Ferchromide.lua")
dofile(default_path.."/allores/Ferdisilicite/Ferdisilicite.lua")
dofile(default_path.."/allores/Ferdowsiite/Ferdowsiite.lua")
dofile(default_path.."/allores/Fergusonite_Ce/Fergusonite_Ce.lua")
dofile(default_path.."/allores/Fergusonite_Nd/Fergusonite_Nd.lua")
dofile(default_path.."/allores/Fergusonite_Y/Fergusonite_Y.lua")
dofile(default_path.."/allores/Ferhodsite/Ferhodsite.lua")
dofile(default_path.."/allores/Fermiite/Fermiite.lua")
dofile(default_path.."/allores/Fernandinite/Fernandinite.lua")
dofile(default_path.."/allores/Feroxyhyte/Feroxyhyte.lua")
dofile(default_path.."/allores/Ferraioloite/Ferraioloite.lua")
dofile(default_path.."/allores/Ferrarisite/Ferrarisite.lua")
dofile(default_path.."/allores/Ferri_barroisite/Ferri_barroisite.lua")
dofile(default_path.."/allores/Ferri_ferrobarroisite/Ferri_ferrobarroisite.lua")
dofile(default_path.."/allores/Ferri_ferrotschermakite/Ferri_ferrotschermakite.lua")
dofile(default_path.."/allores/Ferri_ferrowinchite/Ferri_ferrowinchite.lua")
dofile(default_path.."/allores/Ferri_fluoro_katophorite/Ferri_fluoro_katophorite.lua")
dofile(default_path.."/allores/Ferri_fluoro_leakeite/Ferri_fluoro_leakeite.lua")
dofile(default_path.."/allores/Ferri_ghoseite/Ferri_ghoseite.lua")
dofile(default_path.."/allores/Ferri_hellandite_Ce/Ferri_hellandite_Ce.lua")
dofile(default_path.."/allores/Ferri_kaersutite/Ferri_kaersutite.lua")
dofile(default_path.."/allores/Ferri_katophorite/Ferri_katophorite.lua")
dofile(default_path.."/allores/Ferri_leakeite/Ferri_leakeite.lua")
dofile(default_path.."/allores/Ferri_magnesiokatophorite/Ferri_magnesiokatophorite.lua")
dofile(default_path.."/allores/Ferri_magnesiotaramite/Ferri_magnesiotaramite.lua")
dofile(default_path.."/allores/Ferri_mottanaite_Ce/Ferri_mottanaite_Ce.lua")
dofile(default_path.."/allores/Ferri_obertiite/Ferri_obertiite.lua")
dofile(default_path.."/allores/Ferri_ottoliniite/Ferri_ottoliniite.lua")
dofile(default_path.."/allores/Ferri_pedrizite/Ferri_pedrizite.lua")
dofile(default_path.."/allores/Ferri_taramite/Ferri_taramite.lua")
dofile(default_path.."/allores/Ferri_tschermakite/Ferri_tschermakite.lua")
dofile(default_path.."/allores/Ferri_winchite/Ferri_winchite.lua")
dofile(default_path.."/allores/Ferriakasakaite_Ce/Ferriakasakaite_Ce.lua")
dofile(default_path.."/allores/Ferriakasakaite_La/Ferriakasakaite_La.lua")
dofile(default_path.."/allores/Ferriallanite_Ce/Ferriallanite_Ce.lua")
dofile(default_path.."/allores/Ferriallanite_La/Ferriallanite_La.lua")
dofile(default_path.."/allores/Ferriandrosite_La/Ferriandrosite_La.lua")
dofile(default_path.."/allores/Ferribushmakinite/Ferribushmakinite.lua")
dofile(default_path.."/allores/Ferric_nyboite/Ferric_nyboite.lua")
dofile(default_path.."/allores/Ferricerite_La/Ferricerite_La.lua")
dofile(default_path.."/allores/Ferricopiapite/Ferricopiapite.lua")
dofile(default_path.."/allores/Ferricoronadite/Ferricoronadite.lua")
dofile(default_path.."/allores/Ferrierite_K/Ferrierite_K.lua")
dofile(default_path.."/allores/Ferrierite_Mg/Ferrierite_Mg.lua")
dofile(default_path.."/allores/Ferrierite_NH4/Ferrierite_NH4.lua")
dofile(default_path.."/allores/Ferrierite_Na/Ferrierite_Na.lua")
dofile(default_path.."/allores/Ferrihollandite/Ferrihollandite.lua")
dofile(default_path.."/allores/Ferrihydrite/Ferrihydrite.lua")
dofile(default_path.."/allores/Ferrilotharmeyerite/Ferrilotharmeyerite.lua")
dofile(default_path.."/allores/Ferrimolybdite/Ferrimolybdite.lua")
dofile(default_path.."/allores/Ferrinatrite/Ferrinatrite.lua")
dofile(default_path.."/allores/Ferriperboeite_Ce/Ferriperboeite_Ce.lua")
dofile(default_path.."/allores/Ferriperboeite_La/Ferriperboeite_La.lua")
dofile(default_path.."/allores/Ferriprehnite/Ferriprehnite.lua")
dofile(default_path.."/allores/Ferripyrophyllite/Ferripyrophyllite.lua")
dofile(default_path.."/allores/Ferrirockbridgeite/Ferrirockbridgeite.lua")
dofile(default_path.."/allores/Ferrisanidine/Ferrisanidine.lua")
dofile(default_path.."/allores/Ferrisepiolite/Ferrisepiolite.lua")
dofile(default_path.."/allores/Ferrisicklerite/Ferrisicklerite.lua")
dofile(default_path.."/allores/Ferristrunzite/Ferristrunzite.lua")
dofile(default_path.."/allores/Ferrisurite/Ferrisurite.lua")
dofile(default_path.."/allores/Ferrisymplesite/Ferrisymplesite.lua")
dofile(default_path.."/allores/Ferritaramite/Ferritaramite.lua")
dofile(default_path.."/allores/Ferritungstite/Ferritungstite.lua")
dofile(default_path.."/allores/Ferrivauxite/Ferrivauxite.lua")
dofile(default_path.."/allores/Ferriwhittakerite/Ferriwhittakerite.lua")
dofile(default_path.."/allores/Ferro_actinolite/Ferro_actinolite.lua")
dofile(default_path.."/allores/Ferro_anthophyllite/Ferro_anthophyllite.lua")
dofile(default_path.."/allores/Ferro_bosiite/Ferro_bosiite.lua")
dofile(default_path.."/allores/Ferro_eckermannite/Ferro_eckermannite.lua")
dofile(default_path.."/allores/Ferro_edenite/Ferro_edenite.lua")
dofile(default_path.."/allores/Ferro_ferri_fluoro_leakeite/Ferro_ferri_fluoro_leakeite.lua")
dofile(default_path.."/allores/Ferro_ferri_holmquistite/Ferro_ferri_holmquistite.lua")
dofile(default_path.."/allores/Ferro_ferri_hornblende/Ferro_ferri_hornblende.lua")
dofile(default_path.."/allores/Ferro_ferri_katophorite/Ferro_ferri_katophorite.lua")
dofile(default_path.."/allores/Ferro_ferri_nyboite/Ferro_ferri_nyboite.lua")
dofile(default_path.."/allores/Ferro_ferri_obertiite/Ferro_ferri_obertiite.lua")
dofile(default_path.."/allores/Ferro_ferri_pedrizite/Ferro_ferri_pedrizite.lua")
dofile(default_path.."/allores/Ferro_fluoro_edenite/Ferro_fluoro_edenite.lua")
dofile(default_path.."/allores/Ferro_fluoro_pedrizite/Ferro_fluoro_pedrizite.lua")
dofile(default_path.."/allores/Ferro_gedrite/Ferro_gedrite.lua")
dofile(default_path.."/allores/Ferro_glaucophane/Ferro_glaucophane.lua")
dofile(default_path.."/allores/Ferro_holmquistite/Ferro_holmquistite.lua")
dofile(default_path.."/allores/Ferro_hornblende/Ferro_hornblende.lua")
dofile(default_path.."/allores/Ferro_katophorite/Ferro_katophorite.lua")
dofile(default_path.."/allores/Ferro_papikeite/Ferro_papikeite.lua")
dofile(default_path.."/allores/Ferro_pargasite/Ferro_pargasite.lua")
dofile(default_path.."/allores/Ferro_pedrizite/Ferro_pedrizite.lua")
dofile(default_path.."/allores/Ferro_richterite/Ferro_richterite.lua")
dofile(default_path.."/allores/Ferro_taramite/Ferro_taramite.lua")
dofile(default_path.."/allores/Ferro_tschermakite/Ferro_tschermakite.lua")
dofile(default_path.."/allores/Ferroalluaudite/Ferroalluaudite.lua")
dofile(default_path.."/allores/Ferroaluminoceladonite/Ferroaluminoceladonite.lua")
dofile(default_path.."/allores/Ferrobarroisite/Ferrobarroisite.lua")
dofile(default_path.."/allores/Ferroberaunite/Ferroberaunite.lua")
dofile(default_path.."/allores/Ferrobobfergusonite/Ferrobobfergusonite.lua")
dofile(default_path.."/allores/Ferrobustamite/Ferrobustamite.lua")
dofile(default_path.."/allores/Ferrocarpholite/Ferrocarpholite.lua")
dofile(default_path.."/allores/Ferroceladonite/Ferroceladonite.lua")
dofile(default_path.."/allores/Ferrochiavennite/Ferrochiavennite.lua")
dofile(default_path.."/allores/Ferroefremovite/Ferroefremovite.lua")
dofile(default_path.."/allores/Ferroericssonite/Ferroericssonite.lua")
dofile(default_path.."/allores/Ferrofettelite/Ferrofettelite.lua")
dofile(default_path.."/allores/Ferrohexahydrite/Ferrohexahydrite.lua")
dofile(default_path.."/allores/Ferrohogbomite_2N2S/Ferrohogbomite_2N2S.lua")
dofile(default_path.."/allores/Ferroindialite/Ferroindialite.lua")
dofile(default_path.."/allores/Ferrokaersutite/Ferrokaersutite.lua")
dofile(default_path.."/allores/Ferrokentbrooksite/Ferrokentbrooksite.lua")
dofile(default_path.."/allores/Ferrokesterite/Ferrokesterite.lua")
dofile(default_path.."/allores/Ferrokinoshitalite/Ferrokinoshitalite.lua")
dofile(default_path.."/allores/Ferrolaueite/Ferrolaueite.lua")
dofile(default_path.."/allores/Ferroleakeite/Ferroleakeite.lua")
dofile(default_path.."/allores/Ferromerrillite/Ferromerrillite.lua")
dofile(default_path.."/allores/Ferronickelplatinum/Ferronickelplatinum.lua")
dofile(default_path.."/allores/Ferronigerite_2N1S/Ferronigerite_2N1S.lua")
dofile(default_path.."/allores/Ferronigerite_6N6S/Ferronigerite_6N6S.lua")
dofile(default_path.."/allores/Ferronordite_Ce/Ferronordite_Ce.lua")
dofile(default_path.."/allores/Ferronordite_La/Ferronordite_La.lua")
dofile(default_path.."/allores/Ferronyboite/Ferronyboite.lua")
dofile(default_path.."/allores/Ferropedrizite/Ferropedrizite.lua")
dofile(default_path.."/allores/Ferroqingheiite/Ferroqingheiite.lua")
dofile(default_path.."/allores/Ferrorhodonite/Ferrorhodonite.lua")
dofile(default_path.."/allores/Ferrorhodsite/Ferrorhodsite.lua")
dofile(default_path.."/allores/Ferrorockbridgeite/Ferrorockbridgeite.lua")
dofile(default_path.."/allores/Ferrorosemaryite/Ferrorosemaryite.lua")
dofile(default_path.."/allores/Ferrosaponite/Ferrosaponite.lua")
dofile(default_path.."/allores/Ferroselite/Ferroselite.lua")
dofile(default_path.."/allores/Ferrosilite/Ferrosilite.lua")
dofile(default_path.."/allores/Ferroskutterudite/Ferroskutterudite.lua")
dofile(default_path.."/allores/Ferrostalderite/Ferrostalderite.lua")
dofile(default_path.."/allores/Ferrostrunzite/Ferrostrunzite.lua")
dofile(default_path.."/allores/Ferrotaaffeite_2N2S/Ferrotaaffeite_2N2S.lua")
dofile(default_path.."/allores/Ferrotaaffeite_6N3S/Ferrotaaffeite_6N3S.lua")
dofile(default_path.."/allores/Ferrotellurite/Ferrotellurite.lua")
dofile(default_path.."/allores/Ferrotitanowodginite/Ferrotitanowodginite.lua")
dofile(default_path.."/allores/Ferrotochilinite/Ferrotochilinite.lua")
dofile(default_path.."/allores/Ferrotorryweiserite/Ferrotorryweiserite.lua")
dofile(default_path.."/allores/Ferrotschermakite/Ferrotschermakite.lua")
dofile(default_path.."/allores/Ferrotychite/Ferrotychite.lua")
dofile(default_path.."/allores/Ferrovalleriite/Ferrovalleriite.lua")
dofile(default_path.."/allores/Ferrovorontsovite/Ferrovorontsovite.lua")
dofile(default_path.."/allores/Ferrowinchite/Ferrowinchite.lua")
dofile(default_path.."/allores/Ferrowodginite/Ferrowodginite.lua")
dofile(default_path.."/allores/Ferrowyllieite/Ferrowyllieite.lua")
dofile(default_path.."/allores/Ferruccite/Ferruccite.lua")
dofile(default_path.."/allores/Fersilicite/Fersilicite.lua")
dofile(default_path.."/allores/Fersmanite/Fersmanite.lua")
dofile(default_path.."/allores/Fersmite/Fersmite.lua")
dofile(default_path.."/allores/Feruvite/Feruvite.lua")
dofile(default_path.."/allores/Fervanite/Fervanite.lua")
dofile(default_path.."/allores/Fetiasite/Fetiasite.lua")
dofile(default_path.."/allores/Fettelite/Fettelite.lua")
dofile(default_path.."/allores/Feynmanite/Feynmanite.lua")
dofile(default_path.."/allores/Fianelite/Fianelite.lua")
dofile(default_path.."/allores/Fibroferrite/Fibroferrite.lua")
dofile(default_path.."/allores/Fichtelite/Fichtelite.lua")
dofile(default_path.."/allores/Fiedlerite/Fiedlerite.lua")
dofile(default_path.."/allores/Fiemmeite/Fiemmeite.lua")
dofile(default_path.."/allores/Filatovite/Filatovite.lua")
dofile(default_path.."/allores/Filipstadite/Filipstadite.lua")
dofile(default_path.."/allores/Fillowite/Fillowite.lua")
dofile(default_path.."/allores/Finchite/Finchite.lua")
dofile(default_path.."/allores/Finescreekite/Finescreekite.lua")
dofile(default_path.."/allores/Fingerite/Fingerite.lua")
dofile(default_path.."/allores/Finnemanite/Finnemanite.lua")
dofile(default_path.."/allores/Fischesserite/Fischesserite.lua")
dofile(default_path.."/allores/Fivegite/Fivegite.lua")
dofile(default_path.."/allores/Fizelyite/Fizelyite.lua")
dofile(default_path.."/allores/Flaggite/Flaggite.lua")
dofile(default_path.."/allores/Flagstaffite/Flagstaffite.lua")
dofile(default_path.."/allores/Flamite/Flamite.lua")
dofile(default_path.."/allores/Fleetite/Fleetite.lua")
dofile(default_path.."/allores/Fleischerite/Fleischerite.lua")
dofile(default_path.."/allores/Fleisstalite/Fleisstalite.lua")
dofile(default_path.."/allores/Fletcherite/Fletcherite.lua")
dofile(default_path.."/allores/Flinkite/Flinkite.lua")
dofile(default_path.."/allores/Flinteite/Flinteite.lua")
dofile(default_path.."/allores/Florencite_Ce/Florencite_Ce.lua")
dofile(default_path.."/allores/Florencite_La/Florencite_La.lua")
dofile(default_path.."/allores/Florencite_Nd/Florencite_Nd.lua")
dofile(default_path.."/allores/Florencite_Sm/Florencite_Sm.lua")
dofile(default_path.."/allores/Florenskyite/Florenskyite.lua")
dofile(default_path.."/allores/Florensovite/Florensovite.lua")
dofile(default_path.."/allores/Florkeite/Florkeite.lua")
dofile(default_path.."/allores/Fluckite/Fluckite.lua")
dofile(default_path.."/allores/Fluellite/Fluellite.lua")
dofile(default_path.."/allores/Fluoborite/Fluoborite.lua")
dofile(default_path.."/allores/Fluocerite_Ce/Fluocerite_Ce.lua")
dofile(default_path.."/allores/Fluocerite_La/Fluocerite_La.lua")
dofile(default_path.."/allores/Fluor_arfvedsonite/Fluor_arfvedsonite.lua")
dofile(default_path.."/allores/Fluor_buergerite/Fluor_buergerite.lua")
dofile(default_path.."/allores/Fluor_dravite/Fluor_dravite.lua")
dofile(default_path.."/allores/Fluor_elbaite/Fluor_elbaite.lua")
dofile(default_path.."/allores/Fluor_liddicoatite/Fluor_liddicoatite.lua")
dofile(default_path.."/allores/Fluor_schorl/Fluor_schorl.lua")
dofile(default_path.."/allores/Fluor_tsilaisite/Fluor_tsilaisite.lua")
dofile(default_path.."/allores/Fluor_uvite/Fluor_uvite.lua")
dofile(default_path.."/allores/Fluorannite/Fluorannite.lua")
dofile(default_path.."/allores/Fluorapatite/Fluorapatite.lua")
dofile(default_path.."/allores/Fluorapophyllite_Cs/Fluorapophyllite_Cs.lua")
dofile(default_path.."/allores/Fluorapophyllite_K/Fluorapophyllite_K.lua")
dofile(default_path.."/allores/Fluorapophyllite_NH4/Fluorapophyllite_NH4.lua")
dofile(default_path.."/allores/Fluorapophyllite_Na/Fluorapophyllite_Na.lua")
dofile(default_path.."/allores/Fluorarrojadite_BaFe/Fluorarrojadite_BaFe.lua")
dofile(default_path.."/allores/Fluorarrojadite_BaNa/Fluorarrojadite_BaNa.lua")
dofile(default_path.."/allores/Fluorbarytolamprophyllite/Fluorbarytolamprophyllite.lua")
dofile(default_path.."/allores/Fluorbritholite_Ce/Fluorbritholite_Ce.lua")
dofile(default_path.."/allores/Fluorbritholite_Y/Fluorbritholite_Y.lua")
dofile(default_path.."/allores/Fluorcalciobritholite/Fluorcalciobritholite.lua")
dofile(default_path.."/allores/Fluorcalciomicrolite/Fluorcalciomicrolite.lua")
dofile(default_path.."/allores/Fluorcalciopyrochlore/Fluorcalciopyrochlore.lua")
dofile(default_path.."/allores/Fluorcalcioromeite/Fluorcalcioromeite.lua")
dofile(default_path.."/allores/Fluorcanasite/Fluorcanasite.lua")
dofile(default_path.."/allores/Fluorcaphite/Fluorcaphite.lua")
dofile(default_path.."/allores/Fluorcarletonite/Fluorcarletonite.lua")
dofile(default_path.."/allores/Fluorcarmoite_BaNa/Fluorcarmoite_BaNa.lua")
dofile(default_path.."/allores/Fluorchegemite/Fluorchegemite.lua")
dofile(default_path.."/allores/Fluorellestadite/Fluorellestadite.lua")
dofile(default_path.."/allores/Fluorine/Fluorine.lua")
dofile(default_path.."/allores/Fluorite/Fluorite.lua")
dofile(default_path.."/allores/Fluorkyuygenite/Fluorkyuygenite.lua")
dofile(default_path.."/allores/Fluorlamprophyllite/Fluorlamprophyllite.lua")
dofile(default_path.."/allores/Fluorluanshiweiite/Fluorluanshiweiite.lua")
dofile(default_path.."/allores/Fluormayenite/Fluormayenite.lua")
dofile(default_path.."/allores/Fluornatrocoulsellite/Fluornatrocoulsellite.lua")
dofile(default_path.."/allores/Fluornatromicrolite/Fluornatromicrolite.lua")
dofile(default_path.."/allores/Fluornatropyrochlore/Fluornatropyrochlore.lua")
dofile(default_path.."/allores/Fluoro_cannilloite/Fluoro_cannilloite.lua")
dofile(default_path.."/allores/Fluoro_edenite/Fluoro_edenite.lua")
dofile(default_path.."/allores/Fluoro_ferri_magnesiokatophorite/Fluoro_ferri_magnesiokatophorite.lua")
dofile(default_path.."/allores/Fluoro_leakeite/Fluoro_leakeite.lua")
dofile(default_path.."/allores/Fluoro_magnesiokatophorite/Fluoro_magnesiokatophorite.lua")
dofile(default_path.."/allores/Fluoro_nyboite/Fluoro_nyboite.lua")
dofile(default_path.."/allores/Fluoro_oxy_ferri_magnesiokatophorite/Fluoro_oxy_ferri_magnesiokatophorite.lua")
dofile(default_path.."/allores/Fluoro_pargasite/Fluoro_pargasite.lua")
dofile(default_path.."/allores/Fluoro_pedrizite/Fluoro_pedrizite.lua")
dofile(default_path.."/allores/Fluoro_richterite/Fluoro_richterite.lua")
dofile(default_path.."/allores/Fluoro_riebeckite/Fluoro_riebeckite.lua")
dofile(default_path.."/allores/Fluoro_taramite/Fluoro_taramite.lua")
dofile(default_path.."/allores/Fluoro_tremolite/Fluoro_tremolite.lua")
dofile(default_path.."/allores/Fluorocronite/Fluorocronite.lua")
dofile(default_path.."/allores/Fluorokinoshitalite/Fluorokinoshitalite.lua")
dofile(default_path.."/allores/Fluorophlogopite/Fluorophlogopite.lua")
dofile(default_path.."/allores/Fluorotaramite/Fluorotaramite.lua")
dofile(default_path.."/allores/Fluorotetraferriphlogopite/Fluorotetraferriphlogopite.lua")
dofile(default_path.."/allores/Fluorotremolite/Fluorotremolite.lua")
dofile(default_path.."/allores/Fluorowardite/Fluorowardite.lua")
dofile(default_path.."/allores/Fluorphosphohedyphane/Fluorphosphohedyphane.lua")
dofile(default_path.."/allores/Fluorpyromorphite/Fluorpyromorphite.lua")
dofile(default_path.."/allores/Fluorsigaiite/Fluorsigaiite.lua")
dofile(default_path.."/allores/Fluorstrophite/Fluorstrophite.lua")
dofile(default_path.."/allores/Fluorthalenite_Y/Fluorthalenite_Y.lua")
dofile(default_path.."/allores/Fluorvesuvianite/Fluorvesuvianite.lua")
dofile(default_path.."/allores/Fluorwavellite/Fluorwavellite.lua")
dofile(default_path.."/allores/Flurlite/Flurlite.lua")
dofile(default_path.."/allores/Foggite/Foggite.lua")
dofile(default_path.."/allores/Fogoite_Y/Fogoite_Y.lua")
dofile(default_path.."/allores/Foitite/Foitite.lua")
dofile(default_path.."/allores/Folvikite/Folvikite.lua")
dofile(default_path.."/allores/Fontanite/Fontanite.lua")
dofile(default_path.."/allores/Fontarnauite/Fontarnauite.lua")
dofile(default_path.."/allores/Foordite/Foordite.lua")
dofile(default_path.."/allores/Footemineite/Footemineite.lua")
dofile(default_path.."/allores/Foretite/Foretite.lua")
dofile(default_path.."/allores/Formanite_Y/Formanite_Y.lua")
dofile(default_path.."/allores/Formicaite/Formicaite.lua")
dofile(default_path.."/allores/Fornacite/Fornacite.lua")
dofile(default_path.."/allores/Forsterite/Forsterite.lua")
dofile(default_path.."/allores/Foshagite/Foshagite.lua")
dofile(default_path.."/allores/Fougerite/Fougerite.lua")
dofile(default_path.."/allores/Fourmarierite/Fourmarierite.lua")
dofile(default_path.."/allores/Fowlerite/Fowlerite.lua")
dofile(default_path.."/allores/Fraipontite/Fraipontite.lua")
dofile(default_path.."/allores/Francevillite/Francevillite.lua")
dofile(default_path.."/allores/Franciscanite/Franciscanite.lua")
dofile(default_path.."/allores/Francisite/Francisite.lua")
dofile(default_path.."/allores/Franckeite/Franckeite.lua")
dofile(default_path.."/allores/Francoanellite/Francoanellite.lua")
dofile(default_path.."/allores/Francoisite_Ce/Francoisite_Ce.lua")
dofile(default_path.."/allores/Francoisite_Nd/Francoisite_Nd.lua")
dofile(default_path.."/allores/Franconite/Franconite.lua")
dofile(default_path.."/allores/Frankamenite/Frankamenite.lua")
dofile(default_path.."/allores/Frankdicksonite/Frankdicksonite.lua")
dofile(default_path.."/allores/Frankhawthorneite/Frankhawthorneite.lua")
dofile(default_path.."/allores/Franklinfurnaceite/Franklinfurnaceite.lua")
dofile(default_path.."/allores/Franklinite/Franklinite.lua")
dofile(default_path.."/allores/Franklinphilite/Franklinphilite.lua")
dofile(default_path.."/allores/Franksousaite/Franksousaite.lua")
dofile(default_path.."/allores/Fransoletite/Fransoletite.lua")
dofile(default_path.."/allores/Franzinite/Franzinite.lua")
dofile(default_path.."/allores/Freboldite/Freboldite.lua")
dofile(default_path.."/allores/Fredrikssonite/Fredrikssonite.lua")
dofile(default_path.."/allores/Freedite/Freedite.lua")
dofile(default_path.."/allores/Freibergite/Freibergite.lua")
dofile(default_path.."/allores/Freieslebenite/Freieslebenite.lua")
dofile(default_path.."/allores/Freitalite/Freitalite.lua")
dofile(default_path.."/allores/Fresnoite/Fresnoite.lua")
dofile(default_path.."/allores/Freudenbergite/Freudenbergite.lua")
dofile(default_path.."/allores/Friedelite/Friedelite.lua")
dofile(default_path.."/allores/Friedrichbeckeite/Friedrichbeckeite.lua")
dofile(default_path.."/allores/Friedrichite/Friedrichite.lua")
dofile(default_path.."/allores/Fritzscheite/Fritzscheite.lua")
dofile(default_path.."/allores/Frohbergite/Frohbergite.lua")
dofile(default_path.."/allores/Frolovite/Frolovite.lua")
dofile(default_path.."/allores/Frondelite/Frondelite.lua")
dofile(default_path.."/allores/Froodite/Froodite.lua")
dofile(default_path.."/allores/Fuenzalidaite/Fuenzalidaite.lua")
dofile(default_path.."/allores/Fuettererite/Fuettererite.lua")
dofile(default_path.."/allores/Fukalite/Fukalite.lua")
dofile(default_path.."/allores/Fukuchilite/Fukuchilite.lua")
dofile(default_path.."/allores/Fulbrightite/Fulbrightite.lua")
dofile(default_path.."/allores/Fullerite/Fullerite.lua")
dofile(default_path.."/allores/Fuloppite/Fuloppite.lua")
dofile(default_path.."/allores/Fupingqiuite/Fupingqiuite.lua")
dofile(default_path.."/allores/Furongite/Furongite.lua")
dofile(default_path.."/allores/Furutobeite/Furutobeite.lua")
dofile(default_path.."/allores/Gabrielite/Gabrielite.lua")
dofile(default_path.."/allores/Gabrielsonite/Gabrielsonite.lua")
dofile(default_path.."/allores/Gachingite/Gachingite.lua")
dofile(default_path.."/allores/Gadolinite_Ce/Gadolinite_Ce.lua")
dofile(default_path.."/allores/Gadolinite_Nd/Gadolinite_Nd.lua")
dofile(default_path.."/allores/Gadolinite_Y/Gadolinite_Y.lua")
dofile(default_path.."/allores/Gagarinite_Ce/Gagarinite_Ce.lua")
dofile(default_path.."/allores/Gagarinite_Y/Gagarinite_Y.lua")
dofile(default_path.."/allores/Gageite/Gageite.lua")
dofile(default_path.."/allores/Gahnite/Gahnite.lua")
dofile(default_path.."/allores/Gaidonnayite/Gaidonnayite.lua")
dofile(default_path.."/allores/Gaildunningite/Gaildunningite.lua")
dofile(default_path.."/allores/Gainesite/Gainesite.lua")
dofile(default_path.."/allores/Gaitite/Gaitite.lua")
dofile(default_path.."/allores/Gajardoite/Gajardoite.lua")
dofile(default_path.."/allores/Galaxite/Galaxite.lua")
dofile(default_path.."/allores/Galeaclolusite/Galeaclolusite.lua")
dofile(default_path.."/allores/Galeite/Galeite.lua")
dofile(default_path.."/allores/Galena/Galena.lua")
dofile(default_path.."/allores/Galenobismutite/Galenobismutite.lua")
dofile(default_path.."/allores/Galgenbergite_Ce/Galgenbergite_Ce.lua")
dofile(default_path.."/allores/Galileiite/Galileiite.lua")
dofile(default_path.."/allores/Galkhaite/Galkhaite.lua")
dofile(default_path.."/allores/Galliskiite/Galliskiite.lua")
dofile(default_path.."/allores/Gallite/Gallite.lua")
dofile(default_path.."/allores/Gallobeudantite/Gallobeudantite.lua")
dofile(default_path.."/allores/Galloplumbogummite/Galloplumbogummite.lua")
dofile(default_path.."/allores/Galuskinite/Galuskinite.lua")
dofile(default_path.."/allores/Gamagarite/Gamagarite.lua")
dofile(default_path.."/allores/Gananite/Gananite.lua")
dofile(default_path.."/allores/Ganomalite/Ganomalite.lua")
dofile(default_path.."/allores/Ganophyllite/Ganophyllite.lua")
dofile(default_path.."/allores/Ganterite/Ganterite.lua")
dofile(default_path.."/allores/Gaotaiite/Gaotaiite.lua")
dofile(default_path.."/allores/Garavellite/Garavellite.lua")
dofile(default_path.."/allores/Garmite/Garmite.lua")
dofile(default_path.."/allores/Garpenbergite/Garpenbergite.lua")
dofile(default_path.."/allores/Garrelsite/Garrelsite.lua")
dofile(default_path.."/allores/Garronite_Ca/Garronite_Ca.lua")
dofile(default_path.."/allores/Garronite_Na/Garronite_Na.lua")
dofile(default_path.."/allores/Gartrellite/Gartrellite.lua")
dofile(default_path.."/allores/Garutiite/Garutiite.lua")
dofile(default_path.."/allores/Garyansellite/Garyansellite.lua")
dofile(default_path.."/allores/Gasparite_Ce/Gasparite_Ce.lua")
dofile(default_path.."/allores/Gasparite_La/Gasparite_La.lua")
dofile(default_path.."/allores/Gaspeite/Gaspeite.lua")
dofile(default_path.."/allores/Gatedalite/Gatedalite.lua")
dofile(default_path.."/allores/Gatehouseite/Gatehouseite.lua")
dofile(default_path.."/allores/Gatelite_Ce/Gatelite_Ce.lua")
dofile(default_path.."/allores/Gatewayite/Gatewayite.lua")
dofile(default_path.."/allores/Gatumbaite/Gatumbaite.lua")
dofile(default_path.."/allores/Gaudefroyite/Gaudefroyite.lua")
dofile(default_path.."/allores/Gaultite/Gaultite.lua")
dofile(default_path.."/allores/Gauthierite/Gauthierite.lua")
dofile(default_path.."/allores/Gayite/Gayite.lua")
dofile(default_path.."/allores/Gaylussite/Gaylussite.lua")
dofile(default_path.."/allores/Gazeevite/Gazeevite.lua")
dofile(default_path.."/allores/Gearksutite/Gearksutite.lua")
dofile(default_path.."/allores/Gebhardite/Gebhardite.lua")
dofile(default_path.."/allores/Gedrite/Gedrite.lua")
dofile(default_path.."/allores/Geerite/Geerite.lua")
dofile(default_path.."/allores/Geffroyite/Geffroyite.lua")
dofile(default_path.."/allores/Gehlenite/Gehlenite.lua")
dofile(default_path.."/allores/Geigerite/Geigerite.lua")
dofile(default_path.."/allores/Geikielite/Geikielite.lua")
dofile(default_path.."/allores/Gelosaite/Gelosaite.lua")
dofile(default_path.."/allores/Geminite/Geminite.lua")
dofile(default_path.."/allores/Gengenbachite/Gengenbachite.lua")
dofile(default_path.."/allores/Genkinite/Genkinite.lua")
dofile(default_path.."/allores/Genplesite/Genplesite.lua")
dofile(default_path.."/allores/Genthelvite/Genthelvite.lua")
dofile(default_path.."/allores/Geocronite/Geocronite.lua")
dofile(default_path.."/allores/Georgbarsanovite/Georgbarsanovite.lua")
dofile(default_path.."/allores/Georgbokiite/Georgbokiite.lua")
dofile(default_path.."/allores/George_ericksenite/George_ericksenite.lua")
dofile(default_path.."/allores/Georgechaoite/Georgechaoite.lua")
dofile(default_path.."/allores/Georgeite/Georgeite.lua")
dofile(default_path.."/allores/Georgerobinsonite/Georgerobinsonite.lua")
dofile(default_path.."/allores/Georgiadesite/Georgiadesite.lua")
dofile(default_path.."/allores/Gerasimovskite/Gerasimovskite.lua")
dofile(default_path.."/allores/Gerdtremmelite/Gerdtremmelite.lua")
dofile(default_path.."/allores/Gerenite_Y/Gerenite_Y.lua")
dofile(default_path.."/allores/Gerhardtite/Gerhardtite.lua")
dofile(default_path.."/allores/Germanite/Germanite.lua")
dofile(default_path.."/allores/Germanocolusite/Germanocolusite.lua")
dofile(default_path.."/allores/Gersdorffite/Gersdorffite.lua")
dofile(default_path.."/allores/Gerstleyite/Gerstleyite.lua")
dofile(default_path.."/allores/Gerstmannite/Gerstmannite.lua")
dofile(default_path.."/allores/Geschieberite/Geschieberite.lua")
dofile(default_path.."/allores/Getchellite/Getchellite.lua")
dofile(default_path.."/allores/Geversite/Geversite.lua")
dofile(default_path.."/allores/Ghiaraite/Ghiaraite.lua")
dofile(default_path.."/allores/Giacovazzoite/Giacovazzoite.lua")
dofile(default_path.."/allores/Gianellaite/Gianellaite.lua")
dofile(default_path.."/allores/Gibbsite/Gibbsite.lua")
dofile(default_path.."/allores/Giessenite/Giessenite.lua")
dofile(default_path.."/allores/Giftgrubeite/Giftgrubeite.lua")
dofile(default_path.."/allores/Gilalite/Gilalite.lua")
dofile(default_path.."/allores/Gillardite/Gillardite.lua")
dofile(default_path.."/allores/Gillespite/Gillespite.lua")
dofile(default_path.."/allores/Gillulyite/Gillulyite.lua")
dofile(default_path.."/allores/Gilmarite/Gilmarite.lua")
dofile(default_path.."/allores/Giniite/Giniite.lua")
dofile(default_path.."/allores/Ginorite/Ginorite.lua")
dofile(default_path.."/allores/Giorgiosite/Giorgiosite.lua")
dofile(default_path.."/allores/Giraudite_Zn/Giraudite_Zn.lua")
dofile(default_path.."/allores/Girdite/Girdite.lua")
dofile(default_path.."/allores/Girvasite/Girvasite.lua")
dofile(default_path.."/allores/Gismondine_Ca/Gismondine_Ca.lua")
dofile(default_path.."/allores/Gismondine_Sr/Gismondine_Sr.lua")
dofile(default_path.."/allores/Gittinsite/Gittinsite.lua")
dofile(default_path.."/allores/Giuseppettite/Giuseppettite.lua")
dofile(default_path.."/allores/Gjerdingenite_Ca/Gjerdingenite_Ca.lua")
dofile(default_path.."/allores/Gjerdingenite_Fe/Gjerdingenite_Fe.lua")
dofile(default_path.."/allores/Gjerdingenite_Mn/Gjerdingenite_Mn.lua")
dofile(default_path.."/allores/Gjerdingenite_Na/Gjerdingenite_Na.lua")
dofile(default_path.."/allores/Gladite/Gladite.lua")
dofile(default_path.."/allores/Gladiusite/Gladiusite.lua")
dofile(default_path.."/allores/Gladkovskyite/Gladkovskyite.lua")
dofile(default_path.."/allores/Glagolevite/Glagolevite.lua")
dofile(default_path.."/allores/Glauberite/Glauberite.lua")
dofile(default_path.."/allores/Glaucocerinite/Glaucocerinite.lua")
dofile(default_path.."/allores/Glaucochroite/Glaucochroite.lua")
dofile(default_path.."/allores/Glaucodot/Glaucodot.lua")
dofile(default_path.."/allores/Glaucophane/Glaucophane.lua")
dofile(default_path.."/allores/Glaukosphaerite/Glaukosphaerite.lua")
dofile(default_path.."/allores/Glikinite/Glikinite.lua")
dofile(default_path.."/allores/Glucine/Glucine.lua")
dofile(default_path.."/allores/Glushinskite/Glushinskite.lua")
dofile(default_path.."/allores/Gmalimite/Gmalimite.lua")
dofile(default_path.."/allores/Gmelinite_Ca/Gmelinite_Ca.lua")
dofile(default_path.."/allores/Gmelinite_K/Gmelinite_K.lua")
dofile(default_path.."/allores/Gmelinite_Na/Gmelinite_Na.lua")
dofile(default_path.."/allores/Gobbinsite/Gobbinsite.lua")
dofile(default_path.."/allores/Gobelinite/Gobelinite.lua")
dofile(default_path.."/allores/Godlevskite/Godlevskite.lua")
dofile(default_path.."/allores/Godovikovite/Godovikovite.lua")
dofile(default_path.."/allores/Goedkenite/Goedkenite.lua")
dofile(default_path.."/allores/Goethite/Goethite.lua")
dofile(default_path.."/allores/Gold/Gold.lua")
dofile(default_path.."/allores/Goldamalgam/Goldamalgam.lua")
dofile(default_path.."/allores/Goldfieldite/Goldfieldite.lua")
dofile(default_path.."/allores/Goldhillite/Goldhillite.lua")
dofile(default_path.."/allores/Goldichite/Goldichite.lua")
dofile(default_path.."/allores/Goldmanite/Goldmanite.lua")
dofile(default_path.."/allores/Goldquarryite/Goldquarryite.lua")
dofile(default_path.."/allores/Goldschmidtite/Goldschmidtite.lua")
dofile(default_path.."/allores/Golyshevite/Golyshevite.lua")
dofile(default_path.."/allores/Gonnardite/Gonnardite.lua")
dofile(default_path.."/allores/Gonyerite/Gonyerite.lua")
dofile(default_path.."/allores/Goosecreekite/Goosecreekite.lua")
dofile(default_path.."/allores/Gorbunovite/Gorbunovite.lua")
dofile(default_path.."/allores/Gorceixite/Gorceixite.lua")
dofile(default_path.."/allores/Gordaite/Gordaite.lua")
dofile(default_path.."/allores/Gordonite/Gordonite.lua")
dofile(default_path.."/allores/Gorerite/Gorerite.lua")
dofile(default_path.."/allores/Gorgeyite/Gorgeyite.lua")
dofile(default_path.."/allores/Gormanite/Gormanite.lua")
dofile(default_path.."/allores/Gortdrumite/Gortdrumite.lua")
dofile(default_path.."/allores/Goryainovite/Goryainovite.lua")
dofile(default_path.."/allores/Goslarite/Goslarite.lua")
dofile(default_path.."/allores/Gottardiite/Gottardiite.lua")
dofile(default_path.."/allores/Gottlobite/Gottlobite.lua")
dofile(default_path.."/allores/Gotzenite/Gotzenite.lua")
dofile(default_path.."/allores/Goudeyite/Goudeyite.lua")
dofile(default_path.."/allores/Gowerite/Gowerite.lua")
dofile(default_path.."/allores/Goyazite/Goyazite.lua")
dofile(default_path.."/allores/Graemite/Graemite.lua")
dofile(default_path.."/allores/Graeserite/Graeserite.lua")
dofile(default_path.."/allores/Graftonite/Graftonite.lua")
dofile(default_path.."/allores/Graftonite_Ca/Graftonite_Ca.lua")
dofile(default_path.."/allores/Graftonite_Mn/Graftonite_Mn.lua")
dofile(default_path.."/allores/Gramaccioliite_Y/Gramaccioliite_Y.lua")
dofile(default_path.."/allores/Grammatikopoulosite/Grammatikopoulosite.lua")
dofile(default_path.."/allores/Grandaite/Grandaite.lua")
dofile(default_path.."/allores/Grandidierite/Grandidierite.lua")
dofile(default_path.."/allores/Grandreefite/Grandreefite.lua")
dofile(default_path.."/allores/Grandviewite/Grandviewite.lua")
dofile(default_path.."/allores/Grantsite/Grantsite.lua")
dofile(default_path.."/allores/Graphite/Graphite.lua")
dofile(default_path.."/allores/Gratianite/Gratianite.lua")
dofile(default_path.."/allores/Gratonite/Gratonite.lua")
dofile(default_path.."/allores/Grattarolaite/Grattarolaite.lua")
dofile(default_path.."/allores/Graulichite_Ce/Graulichite_Ce.lua")
dofile(default_path.."/allores/Graulichite_La/Graulichite_La.lua")
dofile(default_path.."/allores/Gravegliaite/Gravegliaite.lua")
dofile(default_path.."/allores/Grayite/Grayite.lua")
dofile(default_path.."/allores/Grechishchevite/Grechishchevite.lua")
dofile(default_path.."/allores/Greenalite/Greenalite.lua")
dofile(default_path.."/allores/Greenlizardite/Greenlizardite.lua")
dofile(default_path.."/allores/Greenockite/Greenockite.lua")
dofile(default_path.."/allores/Greenwoodite/Greenwoodite.lua")
dofile(default_path.."/allores/Gregoryite/Gregoryite.lua")
dofile(default_path.."/allores/Greifensteinite/Greifensteinite.lua")
dofile(default_path.."/allores/Greigite/Greigite.lua")
dofile(default_path.."/allores/Grenmarite/Grenmarite.lua")
dofile(default_path.."/allores/Grguricite/Grguricite.lua")
dofile(default_path.."/allores/Griceite/Griceite.lua")
dofile(default_path.."/allores/Griffinite/Griffinite.lua")
dofile(default_path.."/allores/Grigorievite/Grigorievite.lua")
dofile(default_path.."/allores/Grimaldiite/Grimaldiite.lua")
dofile(default_path.."/allores/Grimmite/Grimmite.lua")
dofile(default_path.."/allores/Grimselite/Grimselite.lua")
dofile(default_path.."/allores/Griphite/Griphite.lua")
dofile(default_path.."/allores/Grischunite/Grischunite.lua")
dofile(default_path.."/allores/Groatite/Groatite.lua")
dofile(default_path.."/allores/Grokhovskyite/Grokhovskyite.lua")
dofile(default_path.."/allores/Grootfonteinite/Grootfonteinite.lua")
dofile(default_path.."/allores/Grossite/Grossite.lua")
dofile(default_path.."/allores/Grossmanite/Grossmanite.lua")
dofile(default_path.."/allores/Grossular/Grossular.lua")
dofile(default_path.."/allores/Groutite/Groutite.lua")
dofile(default_path.."/allores/Grumantite/Grumantite.lua")
dofile(default_path.."/allores/Grumiplucite/Grumiplucite.lua")
dofile(default_path.."/allores/Grundmannite/Grundmannite.lua")
dofile(default_path.."/allores/Grunerite/Grunerite.lua")
dofile(default_path.."/allores/Gruzdevite/Gruzdevite.lua")
dofile(default_path.."/allores/Guanacoite/Guanacoite.lua")
dofile(default_path.."/allores/Guanajuatite/Guanajuatite.lua")
dofile(default_path.."/allores/Guanine/Guanine.lua")
dofile(default_path.."/allores/Guarinoite/Guarinoite.lua")
dofile(default_path.."/allores/Gudmundite/Gudmundite.lua")
dofile(default_path.."/allores/Guerinite/Guerinite.lua")
dofile(default_path.."/allores/Guettardite/Guettardite.lua")
dofile(default_path.."/allores/Gugiaite/Gugiaite.lua")
dofile(default_path.."/allores/Guidottiite/Guidottiite.lua")
dofile(default_path.."/allores/Guildite/Guildite.lua")
dofile(default_path.."/allores/Guilleminite/Guilleminite.lua")
dofile(default_path.."/allores/Guimaraesite/Guimaraesite.lua")
dofile(default_path.."/allores/Guite/Guite.lua")
dofile(default_path.."/allores/Gungerite/Gungerite.lua")
dofile(default_path.."/allores/Gunmaite/Gunmaite.lua")
dofile(default_path.."/allores/Gunningite/Gunningite.lua")
dofile(default_path.."/allores/Gunterblassite/Gunterblassite.lua")
dofile(default_path.."/allores/Gunterite/Gunterite.lua")
dofile(default_path.."/allores/Gupeiite/Gupeiite.lua")
dofile(default_path.."/allores/Gurimite/Gurimite.lua")
dofile(default_path.."/allores/Gurzhiite/Gurzhiite.lua")
dofile(default_path.."/allores/Gustavite/Gustavite.lua")
dofile(default_path.."/allores/Gutkovaite_Mn/Gutkovaite_Mn.lua")
dofile(default_path.."/allores/Guyanaite/Guyanaite.lua")
dofile(default_path.."/allores/Gwihabaite/Gwihabaite.lua")
dofile(default_path.."/allores/Gypsum/Gypsum.lua")
dofile(default_path.."/allores/Gyrolite/Gyrolite.lua")
dofile(default_path.."/allores/Gysinite_La/Gysinite_La.lua")
dofile(default_path.."/allores/Gysinite_Nd/Gysinite_Nd.lua")
dofile(default_path.."/allores/Haapalaite/Haapalaite.lua")
dofile(default_path.."/allores/Hafnon/Hafnon.lua")
dofile(default_path.."/allores/Hagendorfite/Hagendorfite.lua")
dofile(default_path.."/allores/Haggertyite/Haggertyite.lua")
dofile(default_path.."/allores/Haggite/Haggite.lua")
dofile(default_path.."/allores/Hagstromite/Hagstromite.lua")
dofile(default_path.."/allores/Haidingerite/Haidingerite.lua")
dofile(default_path.."/allores/Haigerachite/Haigerachite.lua")
dofile(default_path.."/allores/Haineaultite/Haineaultite.lua")
dofile(default_path.."/allores/Hainite_Y/Hainite_Y.lua")
dofile(default_path.."/allores/Haitaite_La/Haitaite_La.lua")
dofile(default_path.."/allores/Haiweeite/Haiweeite.lua")
dofile(default_path.."/allores/Hakite_Cd/Hakite_Cd.lua")
dofile(default_path.."/allores/Hakite_Fe/Hakite_Fe.lua")
dofile(default_path.."/allores/Hakite_Hg/Hakite_Hg.lua")
dofile(default_path.."/allores/Hakite_Zn/Hakite_Zn.lua")
dofile(default_path.."/allores/Halagurite/Halagurite.lua")
dofile(default_path.."/allores/Halamishite/Halamishite.lua")
dofile(default_path.."/allores/Haleniusite_Ce/Haleniusite_Ce.lua")
dofile(default_path.."/allores/Haleniusite_La/Haleniusite_La.lua")
dofile(default_path.."/allores/Halilsarpite/Halilsarpite.lua")
dofile(default_path.."/allores/Halite/Halite.lua")
dofile(default_path.."/allores/Hallimondite/Hallimondite.lua")
dofile(default_path.."/allores/Halloysite/Halloysite.lua")
dofile(default_path.."/allores/Halotrichite/Halotrichite.lua")
dofile(default_path.."/allores/Halurgite/Halurgite.lua")
dofile(default_path.."/allores/Hambergite/Hambergite.lua")
dofile(default_path.."/allores/Hammarite/Hammarite.lua")
dofile(default_path.."/allores/Hanahanite/Hanahanite.lua")
dofile(default_path.."/allores/Hanauerite/Hanauerite.lua")
dofile(default_path.."/allores/Hanawaltite/Hanawaltite.lua")
dofile(default_path.."/allores/Hancockite/Hancockite.lua")
dofile(default_path.."/allores/Hanjiangite/Hanjiangite.lua")
dofile(default_path.."/allores/Hanksite/Hanksite.lua")
dofile(default_path.."/allores/Hannayite/Hannayite.lua")
dofile(default_path.."/allores/Hannebachite/Hannebachite.lua")
dofile(default_path.."/allores/Hansblockite/Hansblockite.lua")
dofile(default_path.."/allores/Hansesmarkite/Hansesmarkite.lua")
dofile(default_path.."/allores/Hanswilkeite/Hanswilkeite.lua")
dofile(default_path.."/allores/Hapkeite/Hapkeite.lua")
dofile(default_path.."/allores/Haradaite/Haradaite.lua")
dofile(default_path.."/allores/Hardystonite/Hardystonite.lua")
dofile(default_path.."/allores/Harkerite/Harkerite.lua")
dofile(default_path.."/allores/Harmotome/Harmotome.lua")
dofile(default_path.."/allores/Harmunite/Harmunite.lua")
dofile(default_path.."/allores/Harrisonite/Harrisonite.lua")
dofile(default_path.."/allores/Harstigite/Harstigite.lua")
dofile(default_path.."/allores/Hasanovite/Hasanovite.lua")
dofile(default_path.."/allores/Hashemite/Hashemite.lua")
dofile(default_path.."/allores/Hastingsite/Hastingsite.lua")
dofile(default_path.."/allores/Hastite/Hastite.lua")
dofile(default_path.."/allores/Hatchite/Hatchite.lua")
dofile(default_path.."/allores/Hatertite/Hatertite.lua")
dofile(default_path.."/allores/Hatrurite/Hatrurite.lua")
dofile(default_path.."/allores/Hauchecornite/Hauchecornite.lua")
dofile(default_path.."/allores/Hauckite/Hauckite.lua")
dofile(default_path.."/allores/Hauerite/Hauerite.lua")
dofile(default_path.."/allores/Hausmannite/Hausmannite.lua")
dofile(default_path.."/allores/Hauyne/Hauyne.lua")
dofile(default_path.."/allores/Hawleyite/Hawleyite.lua")
dofile(default_path.."/allores/Hawthorneite/Hawthorneite.lua")
dofile(default_path.."/allores/Haxonite/Haxonite.lua")
dofile(default_path.."/allores/Haycockite/Haycockite.lua")
dofile(default_path.."/allores/Haydeeite/Haydeeite.lua")
dofile(default_path.."/allores/Hayelasdiite/Hayelasdiite.lua")
dofile(default_path.."/allores/Haynesite/Haynesite.lua")
dofile(default_path.."/allores/Haywoodite/Haywoodite.lua")
dofile(default_path.."/allores/Hazenite/Hazenite.lua")
dofile(default_path.."/allores/Heamanite_Ce/Heamanite_Ce.lua")
dofile(default_path.."/allores/Heazlewoodite/Heazlewoodite.lua")
dofile(default_path.."/allores/Hechtsbergite/Hechtsbergite.lua")
dofile(default_path.."/allores/Hectorfloresite/Hectorfloresite.lua")
dofile(default_path.."/allores/Hectorite/Hectorite.lua")
dofile(default_path.."/allores/Hedegaardite/Hedegaardite.lua")
dofile(default_path.."/allores/Hedenbergite/Hedenbergite.lua")
dofile(default_path.."/allores/Hedleyite/Hedleyite.lua")
dofile(default_path.."/allores/Hedyphane/Hedyphane.lua")
dofile(default_path.."/allores/Heftetjernite/Heftetjernite.lua")
dofile(default_path.."/allores/Heideite/Heideite.lua")
dofile(default_path.."/allores/Heidornite/Heidornite.lua")
dofile(default_path.."/allores/Heimite/Heimite.lua")
dofile(default_path.."/allores/Heinrichite/Heinrichite.lua")
dofile(default_path.."/allores/Heisenbergite/Heisenbergite.lua")
dofile(default_path.."/allores/Hejtmanite/Hejtmanite.lua")
dofile(default_path.."/allores/Heklaite/Heklaite.lua")
dofile(default_path.."/allores/Heliophyllite/Heliophyllite.lua")
dofile(default_path.."/allores/Hellandite_Ce/Hellandite_Ce.lua")
dofile(default_path.."/allores/Hellandite_Y/Hellandite_Y.lua")
dofile(default_path.."/allores/Hellyerite/Hellyerite.lua")
dofile(default_path.."/allores/Helmutwinklerite/Helmutwinklerite.lua")
dofile(default_path.."/allores/Helvine/Helvine.lua")
dofile(default_path.."/allores/Hematite/Hematite.lua")
dofile(default_path.."/allores/Hematolite/Hematolite.lua")
dofile(default_path.."/allores/Hematophanite/Hematophanite.lua")
dofile(default_path.."/allores/Hemihedrite/Hemihedrite.lua")
dofile(default_path.."/allores/Hemimorphite/Hemimorphite.lua")
dofile(default_path.."/allores/Hemleyite/Hemleyite.lua")
dofile(default_path.."/allores/Hemloite/Hemloite.lua")
dofile(default_path.."/allores/Hemusite/Hemusite.lua")
dofile(default_path.."/allores/Hendekasartorite/Hendekasartorite.lua")
dofile(default_path.."/allores/Hendersonite/Hendersonite.lua")
dofile(default_path.."/allores/Hendricksite/Hendricksite.lua")
dofile(default_path.."/allores/Heneuite/Heneuite.lua")
dofile(default_path.."/allores/Henmilite/Henmilite.lua")
dofile(default_path.."/allores/Hennomartinite/Hennomartinite.lua")
dofile(default_path.."/allores/Henritermierite/Henritermierite.lua")
dofile(default_path.."/allores/Henryite/Henryite.lua")
dofile(default_path.."/allores/Henrymeyerite/Henrymeyerite.lua")
dofile(default_path.."/allores/Hentschelite/Hentschelite.lua")
dofile(default_path.."/allores/Hephaistosite/Hephaistosite.lua")
dofile(default_path.."/allores/Heptasartorite/Heptasartorite.lua")
dofile(default_path.."/allores/Herbertsmithite/Herbertsmithite.lua")
dofile(default_path.."/allores/Hercynite/Hercynite.lua")
dofile(default_path.."/allores/Herderite/Herderite.lua")
dofile(default_path.."/allores/Hereroite/Hereroite.lua")
dofile(default_path.."/allores/Hermannjahnite/Hermannjahnite.lua")
dofile(default_path.."/allores/Hermannroseite/Hermannroseite.lua")
dofile(default_path.."/allores/Herzenbergite/Herzenbergite.lua")
dofile(default_path.."/allores/Hessite/Hessite.lua")
dofile(default_path.."/allores/Hetaerolite/Hetaerolite.lua")
dofile(default_path.."/allores/Heterogenite/Heterogenite.lua")
dofile(default_path.."/allores/Heteromorphite/Heteromorphite.lua")
dofile(default_path.."/allores/Heterosite/Heterosite.lua")
dofile(default_path.."/allores/Heulandite_Ba/Heulandite_Ba.lua")
dofile(default_path.."/allores/Heulandite_Ca/Heulandite_Ca.lua")
dofile(default_path.."/allores/Heulandite_K/Heulandite_K.lua")
dofile(default_path.."/allores/Heulandite_Na/Heulandite_Na.lua")
dofile(default_path.."/allores/Heulandite_Sr/Heulandite_Sr.lua")
dofile(default_path.."/allores/Hewettite/Hewettite.lua")
dofile(default_path.."/allores/Hexacelsian/Hexacelsian.lua")
dofile(default_path.."/allores/Hexaferrum/Hexaferrum.lua")
dofile(default_path.."/allores/Hexahydrite/Hexahydrite.lua")
dofile(default_path.."/allores/Hexahydroborite/Hexahydroborite.lua")
dofile(default_path.."/allores/Hexamolybdenum/Hexamolybdenum.lua")
dofile(default_path.."/allores/Hexatestibiopanickelite/Hexatestibiopanickelite.lua")
dofile(default_path.."/allores/Hexathioplumbite/Hexathioplumbite.lua")
dofile(default_path.."/allores/Heyerdahlite/Heyerdahlite.lua")
dofile(default_path.."/allores/Heyite/Heyite.lua")
dofile(default_path.."/allores/Heyrovskyite/Heyrovskyite.lua")
dofile(default_path.."/allores/Hezuolinite/Hezuolinite.lua")
dofile(default_path.."/allores/Hiarneite/Hiarneite.lua")
dofile(default_path.."/allores/Hibbingite/Hibbingite.lua")
dofile(default_path.."/allores/Hibonite/Hibonite.lua")
dofile(default_path.."/allores/Hibschite/Hibschite.lua")
dofile(default_path.."/allores/Hidalgoite/Hidalgoite.lua")
dofile(default_path.."/allores/Hielscherite/Hielscherite.lua")
dofile(default_path.."/allores/Hieratite/Hieratite.lua")
dofile(default_path.."/allores/Hilairite/Hilairite.lua")
dofile(default_path.."/allores/Hilarionite/Hilarionite.lua")
dofile(default_path.."/allores/Hilgardite/Hilgardite.lua")
dofile(default_path.."/allores/Hillebrandite/Hillebrandite.lua")
dofile(default_path.."/allores/Hillesheimite/Hillesheimite.lua")
dofile(default_path.."/allores/Hillite/Hillite.lua")
dofile(default_path.."/allores/Hingganite_Ce/Hingganite_Ce.lua")
dofile(default_path.."/allores/Hingganite_Nd/Hingganite_Nd.lua")
dofile(default_path.."/allores/Hingganite_Y/Hingganite_Y.lua")
dofile(default_path.."/allores/Hingganite_Yb/Hingganite_Yb.lua")
dofile(default_path.."/allores/Hinsdalite/Hinsdalite.lua")
dofile(default_path.."/allores/Hiortdahlite/Hiortdahlite.lua")
dofile(default_path.."/allores/Hiroseite/Hiroseite.lua")
dofile(default_path.."/allores/Hisingerite/Hisingerite.lua")
dofile(default_path.."/allores/Hitachiite/Hitachiite.lua")
dofile(default_path.."/allores/Hizenite_Y/Hizenite_Y.lua")
dofile(default_path.."/allores/Hjalmarite/Hjalmarite.lua")
dofile(default_path.."/allores/Hlousekite/Hlousekite.lua")
dofile(default_path.."/allores/Hocartite/Hocartite.lua")
dofile(default_path.."/allores/Hochelagaite/Hochelagaite.lua")
dofile(default_path.."/allores/Hodgesmithite/Hodgesmithite.lua")
dofile(default_path.."/allores/Hodgkinsonite/Hodgkinsonite.lua")
dofile(default_path.."/allores/Hodrusite/Hodrusite.lua")
dofile(default_path.."/allores/Hoelite/Hoelite.lua")
dofile(default_path.."/allores/Hoganite/Hoganite.lua")
dofile(default_path.."/allores/Hogarthite/Hogarthite.lua")
dofile(default_path.."/allores/Hogtuvaite/Hogtuvaite.lua")
dofile(default_path.."/allores/Hohmannite/Hohmannite.lua")
dofile(default_path.."/allores/Holdawayite/Holdawayite.lua")
dofile(default_path.."/allores/Holdenite/Holdenite.lua")
dofile(default_path.."/allores/Holfertite/Holfertite.lua")
dofile(default_path.."/allores/Hollandite/Hollandite.lua")
dofile(default_path.."/allores/Hollingworthite/Hollingworthite.lua")
dofile(default_path.."/allores/Hollisterite/Hollisterite.lua")
dofile(default_path.."/allores/Holmquistite/Holmquistite.lua")
dofile(default_path.."/allores/Holtedahlite/Holtedahlite.lua")
dofile(default_path.."/allores/Holtite/Holtite.lua")
dofile(default_path.."/allores/Holtstamite/Holtstamite.lua")
dofile(default_path.."/allores/Homilite/Homilite.lua")
dofile(default_path.."/allores/Honeaite/Honeaite.lua")
dofile(default_path.."/allores/Honessite/Honessite.lua")
dofile(default_path.."/allores/Hongheite/Hongheite.lua")
dofile(default_path.."/allores/Hongshiite/Hongshiite.lua")
dofile(default_path.."/allores/Honzaite/Honzaite.lua")
dofile(default_path.."/allores/Hopeite/Hopeite.lua")
dofile(default_path.."/allores/Horakite/Horakite.lua")
dofile(default_path.."/allores/Hornesite/Hornesite.lua")
dofile(default_path.."/allores/Horomanite/Horomanite.lua")
dofile(default_path.."/allores/Horvathite_Y/Horvathite_Y.lua")
dofile(default_path.."/allores/Hoslite/Hoslite.lua")
dofile(default_path.."/allores/Hotsonite/Hotsonite.lua")
dofile(default_path.."/allores/Housleyite/Housleyite.lua")
dofile(default_path.."/allores/Howardevansite/Howardevansite.lua")
dofile(default_path.."/allores/Howieite/Howieite.lua")
dofile(default_path.."/allores/Howlite/Howlite.lua")
dofile(default_path.."/allores/Hrabakite/Hrabakite.lua")
dofile(default_path.."/allores/Hsianghualite/Hsianghualite.lua")
dofile(default_path.."/allores/Huanghoite_Ce/Huanghoite_Ce.lua")
dofile(default_path.."/allores/Huangite/Huangite.lua")
dofile(default_path.."/allores/Huanzalaite/Huanzalaite.lua")
dofile(default_path.."/allores/Hubeite/Hubeite.lua")
dofile(default_path.."/allores/Hubnerite/Hubnerite.lua")
dofile(default_path.."/allores/Huemulite/Huemulite.lua")
dofile(default_path.."/allores/Huenite/Huenite.lua")
dofile(default_path.."/allores/Hugelite/Hugelite.lua")
dofile(default_path.."/allores/Hughesite/Hughesite.lua")
dofile(default_path.."/allores/Huizingite_Al/Huizingite_Al.lua")
dofile(default_path.."/allores/Hulsite/Hulsite.lua")
dofile(default_path.."/allores/Humberstonite/Humberstonite.lua")
dofile(default_path.."/allores/Humboldtine/Humboldtine.lua")
dofile(default_path.."/allores/Humite/Humite.lua")
dofile(default_path.."/allores/Hummerite/Hummerite.lua")
dofile(default_path.."/allores/Hunchunite/Hunchunite.lua")
dofile(default_path.."/allores/Hundholmenite_Y/Hundholmenite_Y.lua")
dofile(default_path.."/allores/Hungchaoite/Hungchaoite.lua")
dofile(default_path.."/allores/Huntite/Huntite.lua")
dofile(default_path.."/allores/Hureaulite/Hureaulite.lua")
dofile(default_path.."/allores/Hurlbutite/Hurlbutite.lua")
dofile(default_path.."/allores/Hutcheonite/Hutcheonite.lua")
dofile(default_path.."/allores/Hutchinsonite/Hutchinsonite.lua")
dofile(default_path.."/allores/Huttonite/Huttonite.lua")
dofile(default_path.."/allores/Hyalophane/Hyalophane.lua")
dofile(default_path.."/allores/Hyalotekite/Hyalotekite.lua")
dofile(default_path.."/allores/Hydroandradite/Hydroandradite.lua")
dofile(default_path.."/allores/Hydroastrophyllite/Hydroastrophyllite.lua")
dofile(default_path.."/allores/Hydrobasaluminite/Hydrobasaluminite.lua")
dofile(default_path.."/allores/Hydrobiotite/Hydrobiotite.lua")
dofile(default_path.."/allores/Hydroboracite/Hydroboracite.lua")
dofile(default_path.."/allores/Hydrocalumite/Hydrocalumite.lua")
dofile(default_path.."/allores/Hydrocerussite/Hydrocerussite.lua")
dofile(default_path.."/allores/Hydrochlorborite/Hydrochlorborite.lua")
dofile(default_path.."/allores/Hydrodelhayelite/Hydrodelhayelite.lua")
dofile(default_path.."/allores/Hydrodresserite/Hydrodresserite.lua")
dofile(default_path.."/allores/Hydroglauberite/Hydroglauberite.lua")
dofile(default_path.."/allores/Hydrohalite/Hydrohalite.lua")
dofile(default_path.."/allores/Hydrohalloysite/Hydrohalloysite.lua")
dofile(default_path.."/allores/Hydrohetaerolite/Hydrohetaerolite.lua")
dofile(default_path.."/allores/Hydrohonessite/Hydrohonessite.lua")
dofile(default_path.."/allores/Hydrokenoelsmoreite/Hydrokenoelsmoreite.lua")
dofile(default_path.."/allores/Hydrokenomicrolite/Hydrokenomicrolite.lua")
dofile(default_path.."/allores/Hydrokenopyrochlore/Hydrokenopyrochlore.lua")
dofile(default_path.."/allores/Hydrokenoralstonite/Hydrokenoralstonite.lua")
dofile(default_path.."/allores/Hydromagnesite/Hydromagnesite.lua")
dofile(default_path.."/allores/Hydrombobomkulite/Hydrombobomkulite.lua")
dofile(default_path.."/allores/Hydroniumjarosite/Hydroniumjarosite.lua")
dofile(default_path.."/allores/Hydroniumpharmacoalumite/Hydroniumpharmacoalumite.lua")
dofile(default_path.."/allores/Hydroniumpharmacosiderite/Hydroniumpharmacosiderite.lua")
dofile(default_path.."/allores/Hydronovacekite/Hydronovacekite.lua")
dofile(default_path.."/allores/Hydropascoite/Hydropascoite.lua")
dofile(default_path.."/allores/Hydroplumboelsmoreite/Hydroplumboelsmoreite.lua")
dofile(default_path.."/allores/Hydropyrochlore/Hydropyrochlore.lua")
dofile(default_path.."/allores/Hydroredmondite/Hydroredmondite.lua")
dofile(default_path.."/allores/Hydroromarchite/Hydroromarchite.lua")
dofile(default_path.."/allores/Hydroromeite/Hydroromeite.lua")
dofile(default_path.."/allores/Hydroscarbroite/Hydroscarbroite.lua")
dofile(default_path.."/allores/Hydrotalcite/Hydrotalcite.lua")
dofile(default_path.."/allores/Hydroterskite/Hydroterskite.lua")
dofile(default_path.."/allores/Hydrotungstite/Hydrotungstite.lua")
dofile(default_path.."/allores/Hydrowoodwardite/Hydrowoodwardite.lua")
dofile(default_path.."/allores/Hydroxyapophyllite_K/Hydroxyapophyllite_K.lua")
dofile(default_path.."/allores/Hydroxycalciomicrolite/Hydroxycalciomicrolite.lua")
dofile(default_path.."/allores/Hydroxycalciopyrochlore/Hydroxycalciopyrochlore.lua")
dofile(default_path.."/allores/Hydroxycalcioromeite/Hydroxycalcioromeite.lua")
dofile(default_path.."/allores/Hydroxycancrinite/Hydroxycancrinite.lua")
dofile(default_path.."/allores/Hydroxyferroromeite/Hydroxyferroromeite.lua")
dofile(default_path.."/allores/Hydroxykenoelsmoreite/Hydroxykenoelsmoreite.lua")
dofile(default_path.."/allores/Hydroxykenomicrolite/Hydroxykenomicrolite.lua")
dofile(default_path.."/allores/Hydroxykenopyrochlore/Hydroxykenopyrochlore.lua")
dofile(default_path.."/allores/Hydroxylapatite/Hydroxylapatite.lua")
dofile(default_path.."/allores/Hydroxylapatite_M/Hydroxylapatite_M.lua")
dofile(default_path.."/allores/Hydroxylbastnasite_Ce/Hydroxylbastnasite_Ce.lua")
dofile(default_path.."/allores/Hydroxylbastnasite_La/Hydroxylbastnasite_La.lua")
dofile(default_path.."/allores/Hydroxylbastnasite_Nd/Hydroxylbastnasite_Nd.lua")
dofile(default_path.."/allores/Hydroxylborite/Hydroxylborite.lua")
dofile(default_path.."/allores/Hydroxylchondrodite/Hydroxylchondrodite.lua")
dofile(default_path.."/allores/Hydroxylclinohumite/Hydroxylclinohumite.lua")
dofile(default_path.."/allores/Hydroxyledgrewite/Hydroxyledgrewite.lua")
dofile(default_path.."/allores/Hydroxylellestadite/Hydroxylellestadite.lua")
dofile(default_path.."/allores/Hydroxylgugiaite/Hydroxylgugiaite.lua")
dofile(default_path.."/allores/Hydroxylhedyphane/Hydroxylhedyphane.lua")
dofile(default_path.."/allores/Hydroxylherderite/Hydroxylherderite.lua")
dofile(default_path.."/allores/Hydroxylmattheddleite/Hydroxylmattheddleite.lua")
dofile(default_path.."/allores/Hydroxylphosphohedyphane/Hydroxylphosphohedyphane.lua")
dofile(default_path.."/allores/Hydroxylpyromorphite/Hydroxylpyromorphite.lua")
dofile(default_path.."/allores/Hydroxylwagnerite/Hydroxylwagnerite.lua")
dofile(default_path.."/allores/Hydroxymanganopyrochlore/Hydroxymanganopyrochlore.lua")
dofile(default_path.."/allores/Hydroxymcglassonite_K/Hydroxymcglassonite_K.lua")
dofile(default_path.."/allores/Hydroxynatropyrochlore/Hydroxynatropyrochlore.lua")
dofile(default_path.."/allores/Hydroxyplumbopyrochlore/Hydroxyplumbopyrochlore.lua")
dofile(default_path.."/allores/Hydrozincite/Hydrozincite.lua")
dofile(default_path.."/allores/Hylbrownite/Hylbrownite.lua")
dofile(default_path.."/allores/Hypercinnabar/Hypercinnabar.lua")
dofile(default_path.."/allores/Hyrslite/Hyrslite.lua")
dofile(default_path.."/allores/Hyttsjoite/Hyttsjoite.lua")
dofile(default_path.."/allores/IMA2009_079/IMA2009_079.lua")
dofile(default_path.."/allores/Ianbruceite/Ianbruceite.lua")
dofile(default_path.."/allores/Iangreyite/Iangreyite.lua")
dofile(default_path.."/allores/Ianthinite/Ianthinite.lua")
dofile(default_path.."/allores/Ice/Ice.lua")
dofile(default_path.."/allores/Ichnusaite/Ichnusaite.lua")
dofile(default_path.."/allores/Icosahedrite/Icosahedrite.lua")
dofile(default_path.."/allores/Idaite/Idaite.lua")
dofile(default_path.."/allores/Idrialite/Idrialite.lua")
dofile(default_path.."/allores/Igelstromite/Igelstromite.lua")
dofile(default_path.."/allores/Iimoriite_Y/Iimoriite_Y.lua")
dofile(default_path.."/allores/Ikaite/Ikaite.lua")
dofile(default_path.."/allores/Ikorskyite/Ikorskyite.lua")
dofile(default_path.."/allores/Ikranite/Ikranite.lua")
dofile(default_path.."/allores/Ikunolite/Ikunolite.lua")
dofile(default_path.."/allores/Ilesite/Ilesite.lua")
dofile(default_path.."/allores/Ilimaussite_Ce/Ilimaussite_Ce.lua")
dofile(default_path.."/allores/Ilinskite/Ilinskite.lua")
dofile(default_path.."/allores/Ilirneyite/Ilirneyite.lua")
dofile(default_path.."/allores/Illoqite_Ce/Illoqite_Ce.lua")
dofile(default_path.."/allores/Ilmajokite_Ce/Ilmajokite_Ce.lua")
dofile(default_path.."/allores/Ilmenite/Ilmenite.lua")
dofile(default_path.."/allores/Ilsemannite/Ilsemannite.lua")
dofile(default_path.."/allores/Iltisite/Iltisite.lua")
dofile(default_path.."/allores/Ilvaite/Ilvaite.lua")
dofile(default_path.."/allores/Ilyukhinite/Ilyukhinite.lua")
dofile(default_path.."/allores/Imandrite/Imandrite.lua")
dofile(default_path.."/allores/Imayoshiite/Imayoshiite.lua")
dofile(default_path.."/allores/Imhofite/Imhofite.lua")
dofile(default_path.."/allores/Imiterite/Imiterite.lua")
dofile(default_path.."/allores/Imogolite/Imogolite.lua")
dofile(default_path.."/allores/Inaglyite/Inaglyite.lua")
dofile(default_path.."/allores/Incaite/Incaite.lua")
dofile(default_path.."/allores/Incomsartorite/Incomsartorite.lua")
dofile(default_path.."/allores/Inderborite/Inderborite.lua")
dofile(default_path.."/allores/Inderite/Inderite.lua")
dofile(default_path.."/allores/Indialite/Indialite.lua")
dofile(default_path.."/allores/Indigirite/Indigirite.lua")
dofile(default_path.."/allores/Indite/Indite.lua")
dofile(default_path.."/allores/Indium/Indium.lua")
dofile(default_path.."/allores/Inesite/Inesite.lua")
dofile(default_path.."/allores/Ingersonite/Ingersonite.lua")
dofile(default_path.."/allores/Ingodite/Ingodite.lua")
dofile(default_path.."/allores/Innelite/Innelite.lua")
dofile(default_path.."/allores/Innsbruckite/Innsbruckite.lua")
dofile(default_path.."/allores/Insizwaite/Insizwaite.lua")
dofile(default_path.."/allores/Intersilite/Intersilite.lua")
dofile(default_path.."/allores/Inyoite/Inyoite.lua")
dofile(default_path.."/allores/Iodargyrite/Iodargyrite.lua")
dofile(default_path.."/allores/Iodine/Iodine.lua")
dofile(default_path.."/allores/Iowaite/Iowaite.lua")
dofile(default_path.."/allores/Iquiqueite/Iquiqueite.lua")
dofile(default_path.."/allores/Iranite/Iranite.lua")
dofile(default_path.."/allores/Iraqite_La/Iraqite_La.lua")
dofile(default_path.."/allores/Irarsite/Irarsite.lua")
dofile(default_path.."/allores/Irhtemite/Irhtemite.lua")
dofile(default_path.."/allores/Iridarsenite/Iridarsenite.lua")
dofile(default_path.."/allores/Iridium/Iridium.lua")
dofile(default_path.."/allores/Iriginite/Iriginite.lua")
dofile(default_path.."/allores/Irinarassite/Irinarassite.lua")
dofile(default_path.."/allores/Iron/Iron.lua")
dofile(default_path.."/allores/Irtyshite/Irtyshite.lua")
dofile(default_path.."/allores/Iseite/Iseite.lua")
dofile(default_path.."/allores/Ishiharaite/Ishiharaite.lua")
dofile(default_path.."/allores/Ishikawaite/Ishikawaite.lua")
dofile(default_path.."/allores/Iskandarovite/Iskandarovite.lua")
dofile(default_path.."/allores/Isoclasite/Isoclasite.lua")
dofile(default_path.."/allores/Isocubanite/Isocubanite.lua")
dofile(default_path.."/allores/Isoferroplatinum/Isoferroplatinum.lua")
dofile(default_path.."/allores/Isokite/Isokite.lua")
dofile(default_path.."/allores/Isolueshite/Isolueshite.lua")
dofile(default_path.."/allores/Isomertieite/Isomertieite.lua")
dofile(default_path.."/allores/Isovite/Isovite.lua")
dofile(default_path.."/allores/Isselite/Isselite.lua")
dofile(default_path.."/allores/Itelmenite/Itelmenite.lua")
dofile(default_path.."/allores/Itoigawaite/Itoigawaite.lua")
dofile(default_path.."/allores/Itoite/Itoite.lua")
dofile(default_path.."/allores/Itsiite/Itsiite.lua")
dofile(default_path.."/allores/Ivanyukite_Cu/Ivanyukite_Cu.lua")
dofile(default_path.."/allores/Ivanyukite_K/Ivanyukite_K.lua")
dofile(default_path.."/allores/Ivanyukite_Na/Ivanyukite_Na.lua")
dofile(default_path.."/allores/Ivanyukite_Na_T/Ivanyukite_Na_T.lua")
dofile(default_path.."/allores/Ivsite/Ivsite.lua")
dofile(default_path.."/allores/Iwakiite/Iwakiite.lua")
dofile(default_path.."/allores/Iwashiroite_Y/Iwashiroite_Y.lua")
dofile(default_path.."/allores/Iwateite/Iwateite.lua")
dofile(default_path.."/allores/Ixiolite_Fe2/Ixiolite_Fe2.lua")
dofile(default_path.."/allores/Ixiolite_Mn2/Ixiolite_Mn2.lua")
dofile(default_path.."/allores/Iyoite/Iyoite.lua")
dofile(default_path.."/allores/Izoklakeite/Izoklakeite.lua")
dofile(default_path.."/allores/Jachymovite/Jachymovite.lua")
dofile(default_path.."/allores/Jacobsite/Jacobsite.lua")
dofile(default_path.."/allores/Jacquesdietrichite/Jacquesdietrichite.lua")
dofile(default_path.."/allores/Jacutingaite/Jacutingaite.lua")
dofile(default_path.."/allores/Jadarite/Jadarite.lua")
dofile(default_path.."/allores/Jadeite/Jadeite.lua")
dofile(default_path.."/allores/Jaffeite/Jaffeite.lua")
dofile(default_path.."/allores/Jagoite/Jagoite.lua")
dofile(default_path.."/allores/Jagowerite/Jagowerite.lua")
dofile(default_path.."/allores/Jagueite/Jagueite.lua")
dofile(default_path.."/allores/Jahnsite_CaFeFe/Jahnsite_CaFeFe.lua")
dofile(default_path.."/allores/Jahnsite_CaFeMg/Jahnsite_CaFeMg.lua")
dofile(default_path.."/allores/Jahnsite_CaMnFe/Jahnsite_CaMnFe.lua")
dofile(default_path.."/allores/Jahnsite_CaMnMg/Jahnsite_CaMnMg.lua")
dofile(default_path.."/allores/Jahnsite_CaMnMn/Jahnsite_CaMnMn.lua")
dofile(default_path.."/allores/Jahnsite_CaMnZn/Jahnsite_CaMnZn.lua")
dofile(default_path.."/allores/Jahnsite_MnMnFe/Jahnsite_MnMnFe.lua")
dofile(default_path.."/allores/Jahnsite_MnMnMg/Jahnsite_MnMnMg.lua")
dofile(default_path.."/allores/Jahnsite_MnMnMn/Jahnsite_MnMnMn.lua")
dofile(default_path.."/allores/Jahnsite_MnMnZn/Jahnsite_MnMnZn.lua")
dofile(default_path.."/allores/Jahnsite_NaFeMg/Jahnsite_NaFeMg.lua")
dofile(default_path.."/allores/Jahnsite_NaMnMg/Jahnsite_NaMnMg.lua")
dofile(default_path.."/allores/Jahnsite_NaMnMn/Jahnsite_NaMnMn.lua")
dofile(default_path.."/allores/Jaipurite/Jaipurite.lua")
dofile(default_path.."/allores/Jakobssonite/Jakobssonite.lua")
dofile(default_path.."/allores/Jalpaite/Jalpaite.lua")
dofile(default_path.."/allores/Jamborite/Jamborite.lua")
dofile(default_path.."/allores/Jamesite/Jamesite.lua")
dofile(default_path.."/allores/Jamesonite/Jamesonite.lua")
dofile(default_path.."/allores/Janchevite/Janchevite.lua")
dofile(default_path.."/allores/Janggunite/Janggunite.lua")
dofile(default_path.."/allores/Janhaugite/Janhaugite.lua")
dofile(default_path.."/allores/Jankovicite/Jankovicite.lua")
dofile(default_path.."/allores/Jarandolite/Jarandolite.lua")
dofile(default_path.."/allores/Jarlite/Jarlite.lua")
dofile(default_path.."/allores/Jarosewichite/Jarosewichite.lua")
dofile(default_path.."/allores/Jarosite/Jarosite.lua")
dofile(default_path.."/allores/Jaskolskiite/Jaskolskiite.lua")
dofile(default_path.."/allores/Jasmundite/Jasmundite.lua")
dofile(default_path.."/allores/Jasonsmithite/Jasonsmithite.lua")
dofile(default_path.."/allores/Jasrouxite/Jasrouxite.lua")
dofile(default_path.."/allores/Jaszczakite/Jaszczakite.lua")
dofile(default_path.."/allores/Javorieite/Javorieite.lua")
dofile(default_path.."/allores/Jeanbandyite/Jeanbandyite.lua")
dofile(default_path.."/allores/Jeankempite/Jeankempite.lua")
dofile(default_path.."/allores/Jedwabite/Jedwabite.lua")
dofile(default_path.."/allores/Jeffbenite/Jeffbenite.lua")
dofile(default_path.."/allores/Jeffreyite/Jeffreyite.lua")
dofile(default_path.."/allores/Jennite/Jennite.lua")
dofile(default_path.."/allores/Jensenite/Jensenite.lua")
dofile(default_path.."/allores/Jentschite/Jentschite.lua")
dofile(default_path.."/allores/Jeppeite/Jeppeite.lua")
dofile(default_path.."/allores/Jeremejevite/Jeremejevite.lua")
dofile(default_path.."/allores/Jerrygibbsite/Jerrygibbsite.lua")
dofile(default_path.."/allores/Jervisite/Jervisite.lua")
dofile(default_path.."/allores/Jezekite/Jezekite.lua")
dofile(default_path.."/allores/Jianshuiite/Jianshuiite.lua")
dofile(default_path.."/allores/Jimboite/Jimboite.lua")
dofile(default_path.."/allores/Jimthompsonite/Jimthompsonite.lua")
dofile(default_path.."/allores/Jingsuiite/Jingsuiite.lua")
dofile(default_path.."/allores/Jingwenite_Y/Jingwenite_Y.lua")
dofile(default_path.."/allores/Jinshajiangite/Jinshajiangite.lua")
dofile(default_path.."/allores/Joanneumite/Joanneumite.lua")
dofile(default_path.."/allores/Joaquinite_Ce/Joaquinite_Ce.lua")
dofile(default_path.."/allores/Joegoldsteinite/Joegoldsteinite.lua")
dofile(default_path.."/allores/Joelbruggerite/Joelbruggerite.lua")
dofile(default_path.."/allores/Joesmithite/Joesmithite.lua")
dofile(default_path.."/allores/Johachidolite/Johachidolite.lua")
dofile(default_path.."/allores/Johanngeorgenstadtite/Johanngeorgenstadtite.lua")
dofile(default_path.."/allores/Johannite/Johannite.lua")
dofile(default_path.."/allores/Johannsenite/Johannsenite.lua")
dofile(default_path.."/allores/Johillerite/Johillerite.lua")
dofile(default_path.."/allores/Johnbaumite/Johnbaumite.lua")
dofile(default_path.."/allores/Johnbaumite_M/Johnbaumite_M.lua")
dofile(default_path.."/allores/Johninnesite/Johninnesite.lua")
dofile(default_path.."/allores/Johnkoivulaite/Johnkoivulaite.lua")
dofile(default_path.."/allores/Johnsenite_Ce/Johnsenite_Ce.lua")
dofile(default_path.."/allores/Johnsomervilleite/Johnsomervilleite.lua")
dofile(default_path.."/allores/Johntomaite/Johntomaite.lua")
dofile(default_path.."/allores/Johnwalkite/Johnwalkite.lua")
dofile(default_path.."/allores/Jokokuite/Jokokuite.lua")
dofile(default_path.."/allores/Joliotite/Joliotite.lua")
dofile(default_path.."/allores/Jolliffeite/Jolliffeite.lua")
dofile(default_path.."/allores/Jonassonite/Jonassonite.lua")
dofile(default_path.."/allores/Jonesite/Jonesite.lua")
dofile(default_path.."/allores/Joosteite/Joosteite.lua")
dofile(default_path.."/allores/Jordanite/Jordanite.lua")
dofile(default_path.."/allores/Jordisite/Jordisite.lua")
dofile(default_path.."/allores/Jorgensenite/Jorgensenite.lua")
dofile(default_path.."/allores/Jorgkellerite/Jorgkellerite.lua")
dofile(default_path.."/allores/Joseite_A/Joseite_A.lua")
dofile(default_path.."/allores/Joseite_B/Joseite_B.lua")
dofile(default_path.."/allores/Joseite_C/Joseite_C.lua")
dofile(default_path.."/allores/Joteite/Joteite.lua")
dofile(default_path.."/allores/Jouravskite/Jouravskite.lua")
dofile(default_path.."/allores/Juabite/Juabite.lua")
dofile(default_path.."/allores/Juangodoyite/Juangodoyite.lua")
dofile(default_path.."/allores/Juanitaite/Juanitaite.lua")
dofile(default_path.."/allores/Juanite/Juanite.lua")
dofile(default_path.."/allores/Juansilvaite/Juansilvaite.lua")
dofile(default_path.."/allores/Julgoldite_Fe2/Julgoldite_Fe2.lua")
dofile(default_path.."/allores/Julgoldite_Fe3/Julgoldite_Fe3.lua")
dofile(default_path.."/allores/Julgoldite_Mg/Julgoldite_Mg.lua")
dofile(default_path.."/allores/Julienite/Julienite.lua")
dofile(default_path.."/allores/Jungite/Jungite.lua")
dofile(default_path.."/allores/Junitoite/Junitoite.lua")
dofile(default_path.."/allores/Junoite/Junoite.lua")
dofile(default_path.."/allores/Juonniite/Juonniite.lua")
dofile(default_path.."/allores/Jurbanite/Jurbanite.lua")
dofile(default_path.."/allores/Jusite/Jusite.lua")
dofile(default_path.."/allores/Kaatialaite/Kaatialaite.lua")
dofile(default_path.."/allores/Kabalovite/Kabalovite.lua")
dofile(default_path.."/allores/Kadyrelite/Kadyrelite.lua")
dofile(default_path.."/allores/Kaersutite/Kaersutite.lua")
dofile(default_path.."/allores/Kafehydrocyanite/Kafehydrocyanite.lua")
dofile(default_path.."/allores/Kahlenbergite/Kahlenbergite.lua")
dofile(default_path.."/allores/Kahlerite/Kahlerite.lua")
dofile(default_path.."/allores/Kainite/Kainite.lua")
dofile(default_path.."/allores/Kainosite_Y/Kainosite_Y.lua")
dofile(default_path.."/allores/Kainotropite/Kainotropite.lua")
dofile(default_path.."/allores/Kaitianite/Kaitianite.lua")
dofile(default_path.."/allores/Kalborsite/Kalborsite.lua")
dofile(default_path.."/allores/Kalgoorlieite/Kalgoorlieite.lua")
dofile(default_path.."/allores/Kaliborite/Kaliborite.lua")
dofile(default_path.."/allores/Kalicinite/Kalicinite.lua")
dofile(default_path.."/allores/Kalifersite/Kalifersite.lua")
dofile(default_path.."/allores/Kalininite/Kalininite.lua")
dofile(default_path.."/allores/Kalinite/Kalinite.lua")
dofile(default_path.."/allores/Kaliochalcite/Kaliochalcite.lua")
dofile(default_path.."/allores/Kaliophilite/Kaliophilite.lua")
dofile(default_path.."/allores/Kalistrontite/Kalistrontite.lua")
dofile(default_path.."/allores/Kalithallite/Kalithallite.lua")
dofile(default_path.."/allores/Kalsilite/Kalsilite.lua")
dofile(default_path.."/allores/Kaluginite/Kaluginite.lua")
dofile(default_path.."/allores/Kalungaite/Kalungaite.lua")
dofile(default_path.."/allores/Kamaishilite/Kamaishilite.lua")
dofile(default_path.."/allores/Kamarizaite/Kamarizaite.lua")
dofile(default_path.."/allores/Kambaldaite/Kambaldaite.lua")
dofile(default_path.."/allores/Kamchatkite/Kamchatkite.lua")
dofile(default_path.."/allores/Kamenevite/Kamenevite.lua")
dofile(default_path.."/allores/Kamiokite/Kamiokite.lua")
dofile(default_path.."/allores/Kamitugaite/Kamitugaite.lua")
dofile(default_path.."/allores/Kamotoite_Y/Kamotoite_Y.lua")
dofile(default_path.."/allores/Kampelite/Kampelite.lua")
dofile(default_path.."/allores/Kampfite/Kampfite.lua")
dofile(default_path.."/allores/Kamphaugite_Y/Kamphaugite_Y.lua")
dofile(default_path.."/allores/Kanemite/Kanemite.lua")
dofile(default_path.."/allores/Kangite/Kangite.lua")
dofile(default_path.."/allores/Kangjinlaite/Kangjinlaite.lua")
dofile(default_path.."/allores/Kankite/Kankite.lua")
dofile(default_path.."/allores/Kannanite/Kannanite.lua")
dofile(default_path.."/allores/Kanoite/Kanoite.lua")
dofile(default_path.."/allores/Kanonaite/Kanonaite.lua")
dofile(default_path.."/allores/Kanonerovite/Kanonerovite.lua")
dofile(default_path.."/allores/Kaolinite/Kaolinite.lua")
dofile(default_path.."/allores/Kapellasite/Kapellasite.lua")
dofile(default_path.."/allores/Kapitsaite_Y/Kapitsaite_Y.lua")
dofile(default_path.."/allores/Kapundaite/Kapundaite.lua")
dofile(default_path.."/allores/Kapustinite/Kapustinite.lua")
dofile(default_path.."/allores/Karasugite/Karasugite.lua")
dofile(default_path.."/allores/Karchevskyite/Karchevskyite.lua")
dofile(default_path.."/allores/Karelianite/Karelianite.lua")
dofile(default_path.."/allores/Karenwebberite/Karenwebberite.lua")
dofile(default_path.."/allores/Karibibite/Karibibite.lua")
dofile(default_path.."/allores/Karlditmarite/Karlditmarite.lua")
dofile(default_path.."/allores/Karlite/Karlite.lua")
dofile(default_path.."/allores/Karnasurtite_Ce/Karnasurtite_Ce.lua")
dofile(default_path.."/allores/Karpenkoite/Karpenkoite.lua")
dofile(default_path.."/allores/Karpinskite/Karpinskite.lua")
dofile(default_path.."/allores/Karpovite/Karpovite.lua")
dofile(default_path.."/allores/Karupmollerite_Ca/Karupmollerite_Ca.lua")
dofile(default_path.."/allores/Kasatkinite/Kasatkinite.lua")
dofile(default_path.."/allores/Kashinite/Kashinite.lua")
dofile(default_path.."/allores/Kaskasite/Kaskasite.lua")
dofile(default_path.."/allores/Kasolite/Kasolite.lua")
dofile(default_path.."/allores/Kassite/Kassite.lua")
dofile(default_path.."/allores/Kastningite/Kastningite.lua")
dofile(default_path.."/allores/Katayamalite/Katayamalite.lua")
dofile(default_path.."/allores/Katerinopoulosite/Katerinopoulosite.lua")
dofile(default_path.."/allores/Katiarsite/Katiarsite.lua")
dofile(default_path.."/allores/Katoite/Katoite.lua")
dofile(default_path.."/allores/Katophorite/Katophorite.lua")
dofile(default_path.."/allores/Katoptrite/Katoptrite.lua")
dofile(default_path.."/allores/Katsarosite/Katsarosite.lua")
dofile(default_path.."/allores/Kawazulite/Kawazulite.lua")
dofile(default_path.."/allores/Kayrobertsonite/Kayrobertsonite.lua")
dofile(default_path.."/allores/Kayupovaite/Kayupovaite.lua")
dofile(default_path.."/allores/Kazakhstanite/Kazakhstanite.lua")
dofile(default_path.."/allores/Kazakovite/Kazakovite.lua")
dofile(default_path.."/allores/Kazanskyite/Kazanskyite.lua")
dofile(default_path.."/allores/Kaznakhtite/Kaznakhtite.lua")
dofile(default_path.."/allores/Keckite/Keckite.lua")
dofile(default_path.."/allores/Kegelite/Kegelite.lua")
dofile(default_path.."/allores/Kegginite/Kegginite.lua")
dofile(default_path.."/allores/Keilite/Keilite.lua")
dofile(default_path.."/allores/Keithconnite/Keithconnite.lua")
dofile(default_path.."/allores/Keiviite_Y/Keiviite_Y.lua")
dofile(default_path.."/allores/Keiviite_Yb/Keiviite_Yb.lua")
dofile(default_path.."/allores/Keldyshite/Keldyshite.lua")
dofile(default_path.."/allores/Kellyite/Kellyite.lua")
dofile(default_path.."/allores/Kelyanite/Kelyanite.lua")
dofile(default_path.."/allores/Kemmlitzite/Kemmlitzite.lua")
dofile(default_path.."/allores/Kempite/Kempite.lua")
dofile(default_path.."/allores/Kenhsuite/Kenhsuite.lua")
dofile(default_path.."/allores/Kenngottite/Kenngottite.lua")
dofile(default_path.."/allores/Kennygayite/Kennygayite.lua")
dofile(default_path.."/allores/Kenoargentotennantite_Fe/Kenoargentotennantite_Fe.lua")
dofile(default_path.."/allores/Kenoargentotetrahedrite_Fe/Kenoargentotetrahedrite_Fe.lua")
dofile(default_path.."/allores/Kenoargentotetrahedrite_Zn/Kenoargentotetrahedrite_Zn.lua")
dofile(default_path.."/allores/Kenoplumbomicrolite/Kenoplumbomicrolite.lua")
dofile(default_path.."/allores/Kenorozhdestvenskayaite_Fe/Kenorozhdestvenskayaite_Fe.lua")
dofile(default_path.."/allores/Kenotobermorite/Kenotobermorite.lua")
dofile(default_path.."/allores/Kentbrooksite/Kentbrooksite.lua")
dofile(default_path.."/allores/Kentrolite/Kentrolite.lua")
dofile(default_path.."/allores/Kenyaite/Kenyaite.lua")
dofile(default_path.."/allores/Keplerite/Keplerite.lua")
dofile(default_path.."/allores/Kerimasite/Kerimasite.lua")
dofile(default_path.."/allores/Kermesite/Kermesite.lua")
dofile(default_path.."/allores/Kernite/Kernite.lua")
dofile(default_path.."/allores/Kernowite/Kernowite.lua")
dofile(default_path.."/allores/Kesebolite_Ce/Kesebolite_Ce.lua")
dofile(default_path.."/allores/Kesterite/Kesterite.lua")
dofile(default_path.."/allores/Kettnerite/Kettnerite.lua")
dofile(default_path.."/allores/Keutschite/Keutschite.lua")
dofile(default_path.."/allores/Keyite/Keyite.lua")
dofile(default_path.."/allores/Keystoneite/Keystoneite.lua")
dofile(default_path.."/allores/Khademite/Khademite.lua")
dofile(default_path.."/allores/Khaidarkanite/Khaidarkanite.lua")
dofile(default_path.."/allores/Khamrabaevite/Khamrabaevite.lua")
dofile(default_path.."/allores/Khanneshite/Khanneshite.lua")
dofile(default_path.."/allores/Kharaelakhite/Kharaelakhite.lua")
dofile(default_path.."/allores/Khatyrkite/Khatyrkite.lua")
dofile(default_path.."/allores/Khesinite/Khesinite.lua")
dofile(default_path.."/allores/Khibinskite/Khibinskite.lua")
dofile(default_path.."/allores/Khinite/Khinite.lua")
dofile(default_path.."/allores/Khmaralite/Khmaralite.lua")
dofile(default_path.."/allores/Khomyakovite/Khomyakovite.lua")
dofile(default_path.."/allores/Khorixasite/Khorixasite.lua")
dofile(default_path.."/allores/Khrenovite/Khrenovite.lua")
dofile(default_path.."/allores/Khristovite_Ce/Khristovite_Ce.lua")
dofile(default_path.."/allores/Khurayyimite/Khurayyimite.lua")
dofile(default_path.."/allores/Khvorovite/Khvorovite.lua")
dofile(default_path.."/allores/Kiddcreekite/Kiddcreekite.lua")
dofile(default_path.."/allores/Kidwellite/Kidwellite.lua")
dofile(default_path.."/allores/Kieftite/Kieftite.lua")
dofile(default_path.."/allores/Kieserite/Kieserite.lua")
dofile(default_path.."/allores/Kihlmanite_Ce/Kihlmanite_Ce.lua")
dofile(default_path.."/allores/Kilchoanite/Kilchoanite.lua")
dofile(default_path.."/allores/Killalaite/Killalaite.lua")
dofile(default_path.."/allores/Kimrobinsonite/Kimrobinsonite.lua")
dofile(default_path.."/allores/Kimuraite_Y/Kimuraite_Y.lua")
dofile(default_path.."/allores/Kimzeyite/Kimzeyite.lua")
dofile(default_path.."/allores/Kingite/Kingite.lua")
dofile(default_path.."/allores/Kingsgateite/Kingsgateite.lua")
dofile(default_path.."/allores/Kingsmountite/Kingsmountite.lua")
dofile(default_path.."/allores/Kingstonite/Kingstonite.lua")
dofile(default_path.."/allores/Kinichilite/Kinichilite.lua")
dofile(default_path.."/allores/Kinoite/Kinoite.lua")
dofile(default_path.."/allores/Kinoshitalite/Kinoshitalite.lua")
dofile(default_path.."/allores/Kintoreite/Kintoreite.lua")
dofile(default_path.."/allores/Kipushite/Kipushite.lua")
dofile(default_path.."/allores/Kircherite/Kircherite.lua")
dofile(default_path.."/allores/Kirchhoffite/Kirchhoffite.lua")
dofile(default_path.."/allores/Kirkiite/Kirkiite.lua")
dofile(default_path.."/allores/Kirschsteinite/Kirschsteinite.lua")
dofile(default_path.."/allores/Kiryuite/Kiryuite.lua")
dofile(default_path.."/allores/Kishonite/Kishonite.lua")
dofile(default_path.."/allores/Kitagohaite/Kitagohaite.lua")
dofile(default_path.."/allores/Kitkaite/Kitkaite.lua")
dofile(default_path.."/allores/Kittatinnyite/Kittatinnyite.lua")
dofile(default_path.."/allores/Kladnoite/Kladnoite.lua")
dofile(default_path.."/allores/Klajite/Klajite.lua")
dofile(default_path.."/allores/Klaprothite/Klaprothite.lua")
dofile(default_path.."/allores/Klebelsbergite/Klebelsbergite.lua")
dofile(default_path.."/allores/Kleberite/Kleberite.lua")
dofile(default_path.."/allores/Kleemanite/Kleemanite.lua")
dofile(default_path.."/allores/Kleinite/Kleinite.lua")
dofile(default_path.."/allores/Klochite/Klochite.lua")
dofile(default_path.."/allores/Klockmannite/Klockmannite.lua")
dofile(default_path.."/allores/Klyuchevskite/Klyuchevskite.lua")
dofile(default_path.."/allores/Knasibfite/Knasibfite.lua")
dofile(default_path.."/allores/Knorringite/Knorringite.lua")
dofile(default_path.."/allores/Koashvite/Koashvite.lua")
dofile(default_path.."/allores/Kobeite_Y/Kobeite_Y.lua")
dofile(default_path.."/allores/Kobellite/Kobellite.lua")
dofile(default_path.."/allores/Kobokoboite/Kobokoboite.lua")
dofile(default_path.."/allores/Kobyashevite/Kobyashevite.lua")
dofile(default_path.."/allores/Kochite/Kochite.lua")
dofile(default_path.."/allores/Kochkarite/Kochkarite.lua")
dofile(default_path.."/allores/Kochsandorite/Kochsandorite.lua")
dofile(default_path.."/allores/Kodamaite/Kodamaite.lua")
dofile(default_path.."/allores/Koechlinite/Koechlinite.lua")
dofile(default_path.."/allores/Koenenite/Koenenite.lua")
dofile(default_path.."/allores/Kogarkoite/Kogarkoite.lua")
dofile(default_path.."/allores/Kojonenite/Kojonenite.lua")
dofile(default_path.."/allores/Kokchetavite/Kokchetavite.lua")
dofile(default_path.."/allores/Kokinosite/Kokinosite.lua")
dofile(default_path.."/allores/Koksharovite/Koksharovite.lua")
dofile(default_path.."/allores/Koktaite/Koktaite.lua")
dofile(default_path.."/allores/Kolarite/Kolarite.lua")
dofile(default_path.."/allores/Kolbeckite/Kolbeckite.lua")
dofile(default_path.."/allores/Kolfanite/Kolfanite.lua")
dofile(default_path.."/allores/Kolicite/Kolicite.lua")
dofile(default_path.."/allores/Kolitschite/Kolitschite.lua")
dofile(default_path.."/allores/Kollerite/Kollerite.lua")
dofile(default_path.."/allores/Kolovratite/Kolovratite.lua")
dofile(default_path.."/allores/Kolskyite/Kolskyite.lua")
dofile(default_path.."/allores/Kolwezite/Kolwezite.lua")
dofile(default_path.."/allores/Kolymite/Kolymite.lua")
dofile(default_path.."/allores/Komarovite/Komarovite.lua")
dofile(default_path.."/allores/Kombatite/Kombatite.lua")
dofile(default_path.."/allores/Komkovite/Komkovite.lua")
dofile(default_path.."/allores/Konderite/Konderite.lua")
dofile(default_path.."/allores/Koninckite/Koninckite.lua")
dofile(default_path.."/allores/Kononovite/Kononovite.lua")
dofile(default_path.."/allores/Konyaite/Konyaite.lua")
dofile(default_path.."/allores/Koragoite/Koragoite.lua")
dofile(default_path.."/allores/Koritnigite/Koritnigite.lua")
dofile(default_path.."/allores/Kornelite/Kornelite.lua")
dofile(default_path.."/allores/Kornerupine/Kornerupine.lua")
dofile(default_path.."/allores/Korobitsynite/Korobitsynite.lua")
dofile(default_path.."/allores/Korshunovskite/Korshunovskite.lua")
dofile(default_path.."/allores/Koryakite/Koryakite.lua")
dofile(default_path.."/allores/Korzhinskite/Korzhinskite.lua")
dofile(default_path.."/allores/Kosmochlor/Kosmochlor.lua")
dofile(default_path.."/allores/Kosnarite/Kosnarite.lua")
dofile(default_path.."/allores/Kostovite/Kostovite.lua")
dofile(default_path.."/allores/Kostylevite/Kostylevite.lua")
dofile(default_path.."/allores/Kotoite/Kotoite.lua")
dofile(default_path.."/allores/Kottenheimite/Kottenheimite.lua")
dofile(default_path.."/allores/Kottigite/Kottigite.lua")
dofile(default_path.."/allores/Kotulskite/Kotulskite.lua")
dofile(default_path.."/allores/Koutekite/Koutekite.lua")
dofile(default_path.."/allores/Kovdorskite/Kovdorskite.lua")
dofile(default_path.."/allores/Kozlowskiite/Kozlowskiite.lua")
dofile(default_path.."/allores/Kozoite_La/Kozoite_La.lua")
dofile(default_path.."/allores/Kozoite_Nd/Kozoite_Nd.lua")
dofile(default_path.."/allores/Kozyrevskite/Kozyrevskite.lua")
dofile(default_path.."/allores/Kraisslite/Kraisslite.lua")
dofile(default_path.."/allores/Krasheninnikovite/Krasheninnikovite.lua")
dofile(default_path.."/allores/Krasnoite/Krasnoite.lua")
dofile(default_path.."/allores/Krasnoshteinite/Krasnoshteinite.lua")
dofile(default_path.."/allores/Krasnovite/Krasnovite.lua")
dofile(default_path.."/allores/Kratochvilite/Kratochvilite.lua")
dofile(default_path.."/allores/Krausite/Krausite.lua")
dofile(default_path.."/allores/Krauskopfite/Krauskopfite.lua")
dofile(default_path.."/allores/Krautite/Krautite.lua")
dofile(default_path.."/allores/Kravtsovite/Kravtsovite.lua")
dofile(default_path.."/allores/Kreiterite/Kreiterite.lua")
dofile(default_path.."/allores/Kremersite/Kremersite.lua")
dofile(default_path.."/allores/Krennerite/Krennerite.lua")
dofile(default_path.."/allores/Krettnichite/Krettnichite.lua")
dofile(default_path.."/allores/Kribergite/Kribergite.lua")
dofile(default_path.."/allores/Krieselite/Krieselite.lua")
dofile(default_path.."/allores/Krinovite/Krinovite.lua")
dofile(default_path.."/allores/Kristiansenite/Kristiansenite.lua")
dofile(default_path.."/allores/Krivovichevite/Krivovichevite.lua")
dofile(default_path.."/allores/Krohnkite/Krohnkite.lua")
dofile(default_path.."/allores/Krotite/Krotite.lua")
dofile(default_path.."/allores/Kroupaite/Kroupaite.lua")
dofile(default_path.."/allores/Kruijenite/Kruijenite.lua")
dofile(default_path.."/allores/Krupickaite/Krupickaite.lua")
dofile(default_path.."/allores/Krupkaite/Krupkaite.lua")
dofile(default_path.."/allores/Krutaite/Krutaite.lua")
dofile(default_path.."/allores/Krutovite/Krutovite.lua")
dofile(default_path.."/allores/Kryachkoite/Kryachkoite.lua")
dofile(default_path.."/allores/Kryzhanovskite/Kryzhanovskite.lua")
dofile(default_path.."/allores/Ktenasite/Ktenasite.lua")
dofile(default_path.."/allores/Kuannersuite_Ce/Kuannersuite_Ce.lua")
dofile(default_path.."/allores/Kudriavite/Kudriavite.lua")
dofile(default_path.."/allores/Kudryavtsevaite/Kudryavtsevaite.lua")
dofile(default_path.."/allores/Kufahrite/Kufahrite.lua")
dofile(default_path.."/allores/Kukharenkoite_Ce/Kukharenkoite_Ce.lua")
dofile(default_path.."/allores/Kukharenkoite_La/Kukharenkoite_La.lua")
dofile(default_path.."/allores/Kukisvumite/Kukisvumite.lua")
dofile(default_path.."/allores/Kuksite/Kuksite.lua")
dofile(default_path.."/allores/Kulanite/Kulanite.lua")
dofile(default_path.."/allores/Kuliginite/Kuliginite.lua")
dofile(default_path.."/allores/Kuliokite_Y/Kuliokite_Y.lua")
dofile(default_path.."/allores/Kulkeite/Kulkeite.lua")
dofile(default_path.."/allores/Kullerudite/Kullerudite.lua")
dofile(default_path.."/allores/Kumdykolite/Kumdykolite.lua")
dofile(default_path.."/allores/Kummerite/Kummerite.lua")
dofile(default_path.."/allores/Kumtyubeite/Kumtyubeite.lua")
dofile(default_path.."/allores/Kunatite/Kunatite.lua")
dofile(default_path.."/allores/Kupcikite/Kupcikite.lua")
dofile(default_path.."/allores/Kupletskite/Kupletskite.lua")
dofile(default_path.."/allores/Kupletskite_Cs/Kupletskite_Cs.lua")
dofile(default_path.."/allores/Kuramite/Kuramite.lua")
dofile(default_path.."/allores/Kuranakhite/Kuranakhite.lua")
dofile(default_path.."/allores/Kuratite/Kuratite.lua")
dofile(default_path.."/allores/Kurchatovite/Kurchatovite.lua")
dofile(default_path.."/allores/Kurgantaite/Kurgantaite.lua")
dofile(default_path.."/allores/Kurilite/Kurilite.lua")
dofile(default_path.."/allores/Kurnakovite/Kurnakovite.lua")
dofile(default_path.."/allores/Kurumsakite/Kurumsakite.lua")
dofile(default_path.."/allores/Kusachiite/Kusachiite.lua")
dofile(default_path.."/allores/Kushiroite/Kushiroite.lua")
dofile(default_path.."/allores/Kutinaite/Kutinaite.lua")
dofile(default_path.."/allores/Kutnohorite/Kutnohorite.lua")
dofile(default_path.."/allores/Kuvaevite/Kuvaevite.lua")
dofile(default_path.."/allores/Kuzelite/Kuzelite.lua")
dofile(default_path.."/allores/Kuzmenkoite_Mn/Kuzmenkoite_Mn.lua")
dofile(default_path.."/allores/Kuzmenkoite_Zn/Kuzmenkoite_Zn.lua")
dofile(default_path.."/allores/Kuzminite/Kuzminite.lua")
dofile(default_path.."/allores/Kuznetsovite/Kuznetsovite.lua")
dofile(default_path.."/allores/Kvanefjeldite/Kvanefjeldite.lua")
dofile(default_path.."/allores/Kyanite/Kyanite.lua")
dofile(default_path.."/allores/Kyanoxalite/Kyanoxalite.lua")
dofile(default_path.."/allores/Kyawthuite/Kyawthuite.lua")
dofile(default_path.."/allores/Kyrgyzstanite/Kyrgyzstanite.lua")
dofile(default_path.."/allores/Kyzylkumite/Kyzylkumite.lua")
dofile(default_path.."/allores/Laachite/Laachite.lua")
dofile(default_path.."/allores/Labradorite/Labradorite.lua")
dofile(default_path.."/allores/Labuntsovite_Fe/Labuntsovite_Fe.lua")
dofile(default_path.."/allores/Labuntsovite_Mg/Labuntsovite_Mg.lua")
dofile(default_path.."/allores/Labuntsovite_Mn/Labuntsovite_Mn.lua")
dofile(default_path.."/allores/Labyrinthite/Labyrinthite.lua")
dofile(default_path.."/allores/Lacroixite/Lacroixite.lua")
dofile(default_path.."/allores/Laffittite/Laffittite.lua")
dofile(default_path.."/allores/Laflammeite/Laflammeite.lua")
dofile(default_path.."/allores/Laforetite/Laforetite.lua")
dofile(default_path.."/allores/Lafossaite/Lafossaite.lua")
dofile(default_path.."/allores/Lagalyite/Lagalyite.lua")
dofile(default_path.."/allores/Lahnsteinite/Lahnsteinite.lua")
dofile(default_path.."/allores/Laihunite/Laihunite.lua")
dofile(default_path.."/allores/Laitakarite/Laitakarite.lua")
dofile(default_path.."/allores/Lakargiite/Lakargiite.lua")
dofile(default_path.."/allores/Lakebogaite/Lakebogaite.lua")
dofile(default_path.."/allores/Lalondeite/Lalondeite.lua")
dofile(default_path.."/allores/Lammerite/Lammerite.lua")
dofile(default_path.."/allores/Lamprophyllite/Lamprophyllite.lua")
dofile(default_path.."/allores/Lanarkite/Lanarkite.lua")
dofile(default_path.."/allores/Landauite/Landauite.lua")
dofile(default_path.."/allores/Landesite/Landesite.lua")
dofile(default_path.."/allores/Langbanite/Langbanite.lua")
dofile(default_path.."/allores/Langbanshyttanite/Langbanshyttanite.lua")
dofile(default_path.."/allores/Langbeinite/Langbeinite.lua")
dofile(default_path.."/allores/Langhofite/Langhofite.lua")
dofile(default_path.."/allores/Langisite/Langisite.lua")
dofile(default_path.."/allores/Langite/Langite.lua")
dofile(default_path.."/allores/Lanmuchangite/Lanmuchangite.lua")
dofile(default_path.."/allores/Lannonite/Lannonite.lua")
dofile(default_path.."/allores/Lansfordite/Lansfordite.lua")
dofile(default_path.."/allores/Lanthanite_Ce/Lanthanite_Ce.lua")
dofile(default_path.."/allores/Lanthanite_La/Lanthanite_La.lua")
dofile(default_path.."/allores/Lanthanite_Nd/Lanthanite_Nd.lua")
dofile(default_path.."/allores/Lapeyreite/Lapeyreite.lua")
dofile(default_path.."/allores/Laphamite/Laphamite.lua")
dofile(default_path.."/allores/Lapieite/Lapieite.lua")
dofile(default_path.."/allores/Laplandite_Ce/Laplandite_Ce.lua")
dofile(default_path.."/allores/Laptevite_Ce/Laptevite_Ce.lua")
dofile(default_path.."/allores/Larderellite/Larderellite.lua")
dofile(default_path.."/allores/Larisaite/Larisaite.lua")
dofile(default_path.."/allores/Larnite/Larnite.lua")
dofile(default_path.."/allores/Larosite/Larosite.lua")
dofile(default_path.."/allores/Larsenite/Larsenite.lua")
dofile(default_path.."/allores/Lasalite/Lasalite.lua")
dofile(default_path.."/allores/Lasnierite/Lasnierite.lua")
dofile(default_path.."/allores/Latiumite/Latiumite.lua")
dofile(default_path.."/allores/Latrappite/Latrappite.lua")
dofile(default_path.."/allores/Laueite/Laueite.lua")
dofile(default_path.."/allores/Laumontite/Laumontite.lua")
dofile(default_path.."/allores/Launayite/Launayite.lua")
dofile(default_path.."/allores/Lauraniite/Lauraniite.lua")
dofile(default_path.."/allores/Laurelite/Laurelite.lua")
dofile(default_path.."/allores/Laurentianite/Laurentianite.lua")
dofile(default_path.."/allores/Laurentthomasite/Laurentthomasite.lua")
dofile(default_path.."/allores/Laurionite/Laurionite.lua")
dofile(default_path.."/allores/Laurite/Laurite.lua")
dofile(default_path.."/allores/Lausenite/Lausenite.lua")
dofile(default_path.."/allores/Lautarite/Lautarite.lua")
dofile(default_path.."/allores/Lautenthalite/Lautenthalite.lua")
dofile(default_path.."/allores/Lautite/Lautite.lua")
dofile(default_path.."/allores/Lavendulan/Lavendulan.lua")
dofile(default_path.."/allores/Lavenite/Lavenite.lua")
dofile(default_path.."/allores/Laverovite/Laverovite.lua")
dofile(default_path.."/allores/Lavinskyite/Lavinskyite.lua")
dofile(default_path.."/allores/Lavoisierite/Lavoisierite.lua")
dofile(default_path.."/allores/Lavrentievite/Lavrentievite.lua")
dofile(default_path.."/allores/Lawrencite/Lawrencite.lua")
dofile(default_path.."/allores/Lawsonbauerite/Lawsonbauerite.lua")
dofile(default_path.."/allores/Lawsonite/Lawsonite.lua")
dofile(default_path.."/allores/Lazaraskeite/Lazaraskeite.lua")
dofile(default_path.."/allores/Lazarenkoite/Lazarenkoite.lua")
dofile(default_path.."/allores/Lazaridisite/Lazaridisite.lua")
dofile(default_path.."/allores/Lazulite/Lazulite.lua")
dofile(default_path.."/allores/Lazurite/Lazurite.lua")
dofile(default_path.."/allores/Lead/Lead.lua")
dofile(default_path.."/allores/Leadamalgam/Leadamalgam.lua")
dofile(default_path.."/allores/Leadhillite/Leadhillite.lua")
dofile(default_path.."/allores/Lechatelierite/Lechatelierite.lua")
dofile(default_path.."/allores/Lecontite/Lecontite.lua")
dofile(default_path.."/allores/Lecoqite_Y/Lecoqite_Y.lua")
dofile(default_path.."/allores/Leesite/Leesite.lua")
dofile(default_path.."/allores/Lefontite/Lefontite.lua")
dofile(default_path.."/allores/Legrandite/Legrandite.lua")
dofile(default_path.."/allores/Leguernite/Leguernite.lua")
dofile(default_path.."/allores/Lehmannite/Lehmannite.lua")
dofile(default_path.."/allores/Lehnerite/Lehnerite.lua")
dofile(default_path.."/allores/Leifite/Leifite.lua")
dofile(default_path.."/allores/Leightonite/Leightonite.lua")
dofile(default_path.."/allores/Leisingite/Leisingite.lua")
dofile(default_path.."/allores/Leiteite/Leiteite.lua")
dofile(default_path.."/allores/Lemanskiite/Lemanskiite.lua")
dofile(default_path.."/allores/Lemmleinite_Ba/Lemmleinite_Ba.lua")
dofile(default_path.."/allores/Lemmleinite_K/Lemmleinite_K.lua")
dofile(default_path.."/allores/Lemoynite/Lemoynite.lua")
dofile(default_path.."/allores/Lenaite/Lenaite.lua")
dofile(default_path.."/allores/Lengenbachite/Lengenbachite.lua")
dofile(default_path.."/allores/Leningradite/Leningradite.lua")
dofile(default_path.."/allores/Lennilenapeite/Lennilenapeite.lua")
dofile(default_path.."/allores/Lenoblite/Lenoblite.lua")
dofile(default_path.."/allores/Leogangite/Leogangite.lua")
dofile(default_path.."/allores/Leonardsenite/Leonardsenite.lua")
dofile(default_path.."/allores/Leonite/Leonite.lua")
dofile(default_path.."/allores/Leoszilardite/Leoszilardite.lua")
dofile(default_path.."/allores/Lepageite/Lepageite.lua")
dofile(default_path.."/allores/Lepersonnite_Gd/Lepersonnite_Gd.lua")
dofile(default_path.."/allores/Lepersonnite_Nd/Lepersonnite_Nd.lua")
dofile(default_path.."/allores/Lepidocrocite/Lepidocrocite.lua")
dofile(default_path.."/allores/Lepkhenelmite_Zn/Lepkhenelmite_Zn.lua")
dofile(default_path.."/allores/Lermontovite/Lermontovite.lua")
dofile(default_path.."/allores/Lesukite/Lesukite.lua")
dofile(default_path.."/allores/Letovicite/Letovicite.lua")
dofile(default_path.."/allores/Leucite/Leucite.lua")
dofile(default_path.."/allores/Leucophanite/Leucophanite.lua")
dofile(default_path.."/allores/Leucophoenicite/Leucophoenicite.lua")
dofile(default_path.."/allores/Leucophosphite/Leucophosphite.lua")
dofile(default_path.."/allores/Leucosphenite/Leucosphenite.lua")
dofile(default_path.."/allores/Leucostaurite/Leucostaurite.lua")
dofile(default_path.."/allores/Levantite/Levantite.lua")
dofile(default_path.."/allores/Leverettite/Leverettite.lua")
dofile(default_path.."/allores/Levinsonite_Y/Levinsonite_Y.lua")
dofile(default_path.."/allores/Levyclaudite/Levyclaudite.lua")
dofile(default_path.."/allores/Levyne_Ca/Levyne_Ca.lua")
dofile(default_path.."/allores/Levyne_Na/Levyne_Na.lua")
dofile(default_path.."/allores/Leydetite/Leydetite.lua")
dofile(default_path.."/allores/Liandratite/Liandratite.lua")
dofile(default_path.."/allores/Liangjunite/Liangjunite.lua")
dofile(default_path.."/allores/Libbyite/Libbyite.lua")
dofile(default_path.."/allores/Liberite/Liberite.lua")
dofile(default_path.."/allores/Libethenite/Libethenite.lua")
dofile(default_path.."/allores/Liebauite/Liebauite.lua")
dofile(default_path.."/allores/Liebenbergite/Liebenbergite.lua")
dofile(default_path.."/allores/Liebermannite/Liebermannite.lua")
dofile(default_path.."/allores/Liebigite/Liebigite.lua")
dofile(default_path.."/allores/Liguowuite/Liguowuite.lua")
dofile(default_path.."/allores/Liguriaite/Liguriaite.lua")
dofile(default_path.."/allores/Likasite/Likasite.lua")
dofile(default_path.."/allores/Lileyite/Lileyite.lua")
dofile(default_path.."/allores/Lillianite/Lillianite.lua")
dofile(default_path.."/allores/Lime/Lime.lua")
dofile(default_path.."/allores/Limousinite/Limousinite.lua")
dofile(default_path.."/allores/Linarite/Linarite.lua")
dofile(default_path.."/allores/Lindackerite/Lindackerite.lua")
dofile(default_path.."/allores/Lindbergite/Lindbergite.lua")
dofile(default_path.."/allores/Lindgrenite/Lindgrenite.lua")
dofile(default_path.."/allores/Lindqvistite/Lindqvistite.lua")
dofile(default_path.."/allores/Lindsleyite/Lindsleyite.lua")
dofile(default_path.."/allores/Lindstromite/Lindstromite.lua")
dofile(default_path.."/allores/Linekite/Linekite.lua")
dofile(default_path.."/allores/Lingbaoite/Lingbaoite.lua")
dofile(default_path.."/allores/Lingunite/Lingunite.lua")
dofile(default_path.."/allores/Linnaeite/Linnaeite.lua")
dofile(default_path.."/allores/Lintisite/Lintisite.lua")
dofile(default_path.."/allores/Linzhiite/Linzhiite.lua")
dofile(default_path.."/allores/Liottite/Liottite.lua")
dofile(default_path.."/allores/Lipscombite/Lipscombite.lua")
dofile(default_path.."/allores/Lipuite/Lipuite.lua")
dofile(default_path.."/allores/Liraite/Liraite.lua")
dofile(default_path.."/allores/Liroconite/Liroconite.lua")
dofile(default_path.."/allores/Lisanite/Lisanite.lua")
dofile(default_path.."/allores/Lisetite/Lisetite.lua")
dofile(default_path.."/allores/Lishizhenite/Lishizhenite.lua")
dofile(default_path.."/allores/Lisiguangite/Lisiguangite.lua")
dofile(default_path.."/allores/Lisitsynite/Lisitsynite.lua")
dofile(default_path.."/allores/Liskeardite/Liskeardite.lua")
dofile(default_path.."/allores/Lislkirchnerite/Lislkirchnerite.lua")
dofile(default_path.."/allores/Litharge/Litharge.lua")
dofile(default_path.."/allores/Lithiomarsturite/Lithiomarsturite.lua")
dofile(default_path.."/allores/Lithiophilite/Lithiophilite.lua")
dofile(default_path.."/allores/Lithiophorite/Lithiophorite.lua")
dofile(default_path.."/allores/Lithiophosphate/Lithiophosphate.lua")
dofile(default_path.."/allores/Lithiotantite/Lithiotantite.lua")
dofile(default_path.."/allores/Lithiowodginite/Lithiowodginite.lua")
dofile(default_path.."/allores/Lithosite/Lithosite.lua")
dofile(default_path.."/allores/Litidionite/Litidionite.lua")
dofile(default_path.."/allores/Litochlebite/Litochlebite.lua")
dofile(default_path.."/allores/Litvinskite/Litvinskite.lua")
dofile(default_path.."/allores/Liudongshengite/Liudongshengite.lua")
dofile(default_path.."/allores/Liuite/Liuite.lua")
dofile(default_path.."/allores/Liveingite/Liveingite.lua")
dofile(default_path.."/allores/Liversidgeite/Liversidgeite.lua")
dofile(default_path.."/allores/Livingstonite/Livingstonite.lua")
dofile(default_path.."/allores/Lizardite/Lizardite.lua")
dofile(default_path.."/allores/Llantenesite/Llantenesite.lua")
dofile(default_path.."/allores/Lobanovite/Lobanovite.lua")
dofile(default_path.."/allores/Lokkaite_Y/Lokkaite_Y.lua")
dofile(default_path.."/allores/Lollingite/Lollingite.lua")
dofile(default_path.."/allores/Lombardoite/Lombardoite.lua")
dofile(default_path.."/allores/Lomonosovite/Lomonosovite.lua")
dofile(default_path.."/allores/Londonite/Londonite.lua")
dofile(default_path.."/allores/Lonecreekite/Lonecreekite.lua")
dofile(default_path.."/allores/Lonsdaleite/Lonsdaleite.lua")
dofile(default_path.."/allores/Loomisite/Loomisite.lua")
dofile(default_path.."/allores/Loparite_Ce/Loparite_Ce.lua")
dofile(default_path.."/allores/Lopatkaite/Lopatkaite.lua")
dofile(default_path.."/allores/Lopezite/Lopezite.lua")
dofile(default_path.."/allores/Lorandite/Lorandite.lua")
dofile(default_path.."/allores/Loranskite_Y/Loranskite_Y.lua")
dofile(default_path.."/allores/Lorenzenite/Lorenzenite.lua")
dofile(default_path.."/allores/Loseyite/Loseyite.lua")
dofile(default_path.."/allores/Lotharmeyerite/Lotharmeyerite.lua")
dofile(default_path.."/allores/Loudounite/Loudounite.lua")
dofile(default_path.."/allores/Loughlinite/Loughlinite.lua")
dofile(default_path.."/allores/Louisfuchsite/Louisfuchsite.lua")
dofile(default_path.."/allores/Lourenswalsite/Lourenswalsite.lua")
dofile(default_path.."/allores/Lovdarite/Lovdarite.lua")
dofile(default_path.."/allores/Loveringite/Loveringite.lua")
dofile(default_path.."/allores/Lovozerite/Lovozerite.lua")
dofile(default_path.."/allores/Loweite/Loweite.lua")
dofile(default_path.."/allores/Luanheite/Luanheite.lua")
dofile(default_path.."/allores/Luanshiweiite/Luanshiweiite.lua")
dofile(default_path.."/allores/Luberoite/Luberoite.lua")
dofile(default_path.."/allores/Luborzakite/Luborzakite.lua")
dofile(default_path.."/allores/Lucabindiite/Lucabindiite.lua")
dofile(default_path.."/allores/Lucasite_Ce/Lucasite_Ce.lua")
dofile(default_path.."/allores/Lucchesiite/Lucchesiite.lua")
dofile(default_path.."/allores/Luddenite/Luddenite.lua")
dofile(default_path.."/allores/Ludjibaite/Ludjibaite.lua")
dofile(default_path.."/allores/Ludlamite/Ludlamite.lua")
dofile(default_path.."/allores/Ludlockite/Ludlockite.lua")
dofile(default_path.."/allores/Ludwigite/Ludwigite.lua")
dofile(default_path.."/allores/Lueshite/Lueshite.lua")
dofile(default_path.."/allores/Luetheite/Luetheite.lua")
dofile(default_path.."/allores/Luinaite_OH/Luinaite_OH.lua")
dofile(default_path.."/allores/Lukechangite_Ce/Lukechangite_Ce.lua")
dofile(default_path.."/allores/Lukkulaisvaaraite/Lukkulaisvaaraite.lua")
dofile(default_path.."/allores/Lukrahnite/Lukrahnite.lua")
dofile(default_path.."/allores/Lulzacite/Lulzacite.lua")
dofile(default_path.."/allores/Lumsdenite/Lumsdenite.lua")
dofile(default_path.."/allores/Luneburgite/Luneburgite.lua")
dofile(default_path.."/allores/Lunijianlaite/Lunijianlaite.lua")
dofile(default_path.."/allores/Lunokite/Lunokite.lua")
dofile(default_path.."/allores/Luobusaite/Luobusaite.lua")
dofile(default_path.."/allores/Luogufengite/Luogufengite.lua")
dofile(default_path.."/allores/Lusernaite_Y/Lusernaite_Y.lua")
dofile(default_path.."/allores/Lussierite/Lussierite.lua")
dofile(default_path.."/allores/Luxembourgite/Luxembourgite.lua")
dofile(default_path.."/allores/Luzonite/Luzonite.lua")
dofile(default_path.."/allores/Lyonsite/Lyonsite.lua")
dofile(default_path.."/allores/Macaulayite/Macaulayite.lua")
dofile(default_path.."/allores/Macdonaldite/Macdonaldite.lua")
dofile(default_path.."/allores/Macedonite/Macedonite.lua")
dofile(default_path.."/allores/Macfallite/Macfallite.lua")
dofile(default_path.."/allores/Machatschkiite/Machatschkiite.lua")
dofile(default_path.."/allores/Machiite/Machiite.lua")
dofile(default_path.."/allores/Mackayite/Mackayite.lua")
dofile(default_path.."/allores/Mackinawite/Mackinawite.lua")
dofile(default_path.."/allores/Macphersonite/Macphersonite.lua")
dofile(default_path.."/allores/Macquartite/Macquartite.lua")
dofile(default_path.."/allores/Madeiraite/Madeiraite.lua")
dofile(default_path.."/allores/Madocite/Madocite.lua")
dofile(default_path.."/allores/Magadiite/Magadiite.lua")
dofile(default_path.."/allores/Magbasite/Magbasite.lua")
dofile(default_path.."/allores/Magganasite/Magganasite.lua")
dofile(default_path.."/allores/Maghagendorfite/Maghagendorfite.lua")
dofile(default_path.."/allores/Maghemite/Maghemite.lua")
dofile(default_path.."/allores/Maghrebite/Maghrebite.lua")
dofile(default_path.."/allores/Magnanelliite/Magnanelliite.lua")
dofile(default_path.."/allores/Magneliite/Magneliite.lua")
dofile(default_path.."/allores/Magnesio_arfvedsonite/Magnesio_arfvedsonite.lua")
dofile(default_path.."/allores/Magnesio_ferri_fluoro_hornblende/Magnesio_ferri_fluoro_hornblende.lua")
dofile(default_path.."/allores/Magnesio_ferri_hornblende/Magnesio_ferri_hornblende.lua")
dofile(default_path.."/allores/Magnesio_fluoro_arfvedsonite/Magnesio_fluoro_arfvedsonite.lua")
dofile(default_path.."/allores/Magnesio_fluoro_hastingsite/Magnesio_fluoro_hastingsite.lua")
dofile(default_path.."/allores/Magnesio_foitite/Magnesio_foitite.lua")
dofile(default_path.."/allores/Magnesio_hastingsite/Magnesio_hastingsite.lua")
dofile(default_path.."/allores/Magnesio_hornblende/Magnesio_hornblende.lua")
dofile(default_path.."/allores/Magnesio_lucchesiite/Magnesio_lucchesiite.lua")
dofile(default_path.."/allores/Magnesio_riebeckite/Magnesio_riebeckite.lua")
dofile(default_path.."/allores/Magnesioalterite/Magnesioalterite.lua")
dofile(default_path.."/allores/Magnesioaubertite/Magnesioaubertite.lua")
dofile(default_path.."/allores/Magnesiobeltrandoite_2N3S/Magnesiobeltrandoite_2N3S.lua")
dofile(default_path.."/allores/Magnesiobermanite/Magnesiobermanite.lua")
dofile(default_path.."/allores/Magnesiocanutite/Magnesiocanutite.lua")
dofile(default_path.."/allores/Magnesiocarpholite/Magnesiocarpholite.lua")
dofile(default_path.."/allores/Magnesiochloritoid/Magnesiochloritoid.lua")
dofile(default_path.."/allores/Magnesiochlorophoenicite/Magnesiochlorophoenicite.lua")
dofile(default_path.."/allores/Magnesiochromite/Magnesiochromite.lua")
dofile(default_path.."/allores/Magnesiocopiapite/Magnesiocopiapite.lua")
dofile(default_path.."/allores/Magnesiocoulsonite/Magnesiocoulsonite.lua")
dofile(default_path.."/allores/Magnesiodumortierite/Magnesiodumortierite.lua")
dofile(default_path.."/allores/Magnesioferrite/Magnesioferrite.lua")
dofile(default_path.."/allores/Magnesiofluckite/Magnesiofluckite.lua")
dofile(default_path.."/allores/Magnesiohatertite/Magnesiohatertite.lua")
dofile(default_path.."/allores/Magnesiohogbomite_2N2S/Magnesiohogbomite_2N2S.lua")
dofile(default_path.."/allores/Magnesiohogbomite_2N3S/Magnesiohogbomite_2N3S.lua")
dofile(default_path.."/allores/Magnesiohogbomite_2N4S/Magnesiohogbomite_2N4S.lua")
dofile(default_path.."/allores/Magnesiohogbomite_6N12S/Magnesiohogbomite_6N12S.lua")
dofile(default_path.."/allores/Magnesiohogbomite_6N6S/Magnesiohogbomite_6N6S.lua")
dofile(default_path.."/allores/Magnesiohulsite/Magnesiohulsite.lua")
dofile(default_path.."/allores/Magnesiokoritnigite/Magnesiokoritnigite.lua")
dofile(default_path.."/allores/Magnesioleydetite/Magnesioleydetite.lua")
dofile(default_path.."/allores/Magnesioneptunite/Magnesioneptunite.lua")
dofile(default_path.."/allores/Magnesionigerite_2N1S/Magnesionigerite_2N1S.lua")
dofile(default_path.."/allores/Magnesionigerite_6N6S/Magnesionigerite_6N6S.lua")
dofile(default_path.."/allores/Magnesiopascoite/Magnesiopascoite.lua")
dofile(default_path.."/allores/Magnesiorowlandite_Y/Magnesiorowlandite_Y.lua")
dofile(default_path.."/allores/Magnesiosadanagaite/Magnesiosadanagaite.lua")
dofile(default_path.."/allores/Magnesiostaurolite/Magnesiostaurolite.lua")
dofile(default_path.."/allores/Magnesiotaaffeite_2N2S/Magnesiotaaffeite_2N2S.lua")
dofile(default_path.."/allores/Magnesiotaaffeite_6N3S/Magnesiotaaffeite_6N3S.lua")
dofile(default_path.."/allores/Magnesiotaramite/Magnesiotaramite.lua")
dofile(default_path.."/allores/Magnesiovesuvianite/Magnesiovesuvianite.lua")
dofile(default_path.."/allores/Magnesiovoltaite/Magnesiovoltaite.lua")
dofile(default_path.."/allores/Magnesiozippeite/Magnesiozippeite.lua")
dofile(default_path.."/allores/Magnesite/Magnesite.lua")
dofile(default_path.."/allores/Magnetite/Magnetite.lua")
dofile(default_path.."/allores/Magnetoplumbite/Magnetoplumbite.lua")
dofile(default_path.."/allores/Magnioursilite/Magnioursilite.lua")
dofile(default_path.."/allores/Magnolite/Magnolite.lua")
dofile(default_path.."/allores/Magnussonite/Magnussonite.lua")
dofile(default_path.."/allores/Mahnertite/Mahnertite.lua")
dofile(default_path.."/allores/Maikainite/Maikainite.lua")
dofile(default_path.."/allores/Majakite/Majakite.lua")
dofile(default_path.."/allores/Majindeite/Majindeite.lua")
dofile(default_path.."/allores/Majorite/Majorite.lua")
dofile(default_path.."/allores/Majzlanite/Majzlanite.lua")
dofile(default_path.."/allores/Makarochkinite/Makarochkinite.lua")
dofile(default_path.."/allores/Makatite/Makatite.lua")
dofile(default_path.."/allores/Makinenite/Makinenite.lua")
dofile(default_path.."/allores/Makotoite/Makotoite.lua")
dofile(default_path.."/allores/Makovickyite/Makovickyite.lua")
dofile(default_path.."/allores/Malachite/Malachite.lua")
dofile(default_path.."/allores/Malanite/Malanite.lua")
dofile(default_path.."/allores/Malayaite/Malayaite.lua")
dofile(default_path.."/allores/Maldonite/Maldonite.lua")
dofile(default_path.."/allores/Maleevite/Maleevite.lua")
dofile(default_path.."/allores/Maletoyvayamite/Maletoyvayamite.lua")
dofile(default_path.."/allores/Malhmoodite/Malhmoodite.lua")
dofile(default_path.."/allores/Malinkoite/Malinkoite.lua")
dofile(default_path.."/allores/Malladrite/Malladrite.lua")
dofile(default_path.."/allores/Mallardite/Mallardite.lua")
dofile(default_path.."/allores/Mallestigite/Mallestigite.lua")
dofile(default_path.."/allores/Malyshevite/Malyshevite.lua")
dofile(default_path.."/allores/Mambertiite/Mambertiite.lua")
dofile(default_path.."/allores/Mammothite/Mammothite.lua")
dofile(default_path.."/allores/Manaevite_Ce/Manaevite_Ce.lua")
dofile(default_path.."/allores/Manaksite/Manaksite.lua")
dofile(default_path.."/allores/Manandonite/Manandonite.lua")
dofile(default_path.."/allores/Manasseite/Manasseite.lua")
dofile(default_path.."/allores/Mandarinoite/Mandarinoite.lua")
dofile(default_path.."/allores/Maneckiite/Maneckiite.lua")
dofile(default_path.."/allores/Manganarsite/Manganarsite.lua")
dofile(default_path.."/allores/Manganbabingtonite/Manganbabingtonite.lua")
dofile(default_path.."/allores/Manganbelyankinite/Manganbelyankinite.lua")
dofile(default_path.."/allores/Manganberzeliite/Manganberzeliite.lua")
dofile(default_path.."/allores/Manganese/Manganese.lua")
dofile(default_path.."/allores/Manganflurlite/Manganflurlite.lua")
dofile(default_path.."/allores/Mangangordonite/Mangangordonite.lua")
dofile(default_path.."/allores/Manganhumite/Manganhumite.lua")
dofile(default_path.."/allores/Mangani_dellaventuraite/Mangani_dellaventuraite.lua")
dofile(default_path.."/allores/Mangani_obertiite/Mangani_obertiite.lua")
dofile(default_path.."/allores/Mangani_pargasite/Mangani_pargasite.lua")
dofile(default_path.."/allores/Manganiakasakaite_La/Manganiakasakaite_La.lua")
dofile(default_path.."/allores/Manganiandrosite_Ce/Manganiandrosite_Ce.lua")
dofile(default_path.."/allores/Manganiandrosite_La/Manganiandrosite_La.lua")
dofile(default_path.."/allores/Manganiceladonite/Manganiceladonite.lua")
dofile(default_path.."/allores/Manganilvaite/Manganilvaite.lua")
dofile(default_path.."/allores/Manganite/Manganite.lua")
dofile(default_path.."/allores/Manganlotharmeyerite/Manganlotharmeyerite.lua")
dofile(default_path.."/allores/Mangano_ferri_eckermannite/Mangano_ferri_eckermannite.lua")
dofile(default_path.."/allores/Mangano_mangani_ungarettiite/Mangano_mangani_ungarettiite.lua")
dofile(default_path.."/allores/Manganoarrojadite_KNa/Manganoarrojadite_KNa.lua")
dofile(default_path.."/allores/Manganobadalovite/Manganobadalovite.lua")
dofile(default_path.."/allores/Manganoblodite/Manganoblodite.lua")
dofile(default_path.."/allores/Manganochromite/Manganochromite.lua")
dofile(default_path.."/allores/Manganocummingtonite/Manganocummingtonite.lua")
dofile(default_path.."/allores/Manganoeudialyte/Manganoeudialyte.lua")
dofile(default_path.."/allores/Manganogrunerite/Manganogrunerite.lua")
dofile(default_path.."/allores/Manganohornesite/Manganohornesite.lua")
dofile(default_path.."/allores/Manganokaskasite/Manganokaskasite.lua")
dofile(default_path.."/allores/Manganokhomyakovite/Manganokhomyakovite.lua")
dofile(default_path.."/allores/Manganokukisvumite/Manganokukisvumite.lua")
dofile(default_path.."/allores/Manganolangbeinite/Manganolangbeinite.lua")
dofile(default_path.."/allores/Manganonaujakasite/Manganonaujakasite.lua")
dofile(default_path.."/allores/Manganoneptunite/Manganoneptunite.lua")
dofile(default_path.."/allores/Manganonordite_Ce/Manganonordite_Ce.lua")
dofile(default_path.."/allores/Manganoquadratite/Manganoquadratite.lua")
dofile(default_path.."/allores/Manganosegelerite/Manganosegelerite.lua")
dofile(default_path.."/allores/Manganoshadlunite/Manganoshadlunite.lua")
dofile(default_path.."/allores/Manganosite/Manganosite.lua")
dofile(default_path.."/allores/Manganostibite/Manganostibite.lua")
dofile(default_path.."/allores/Manganotychite/Manganotychite.lua")
dofile(default_path.."/allores/Manganvesuvianite/Manganvesuvianite.lua")
dofile(default_path.."/allores/Mangazeite/Mangazeite.lua")
dofile(default_path.."/allores/Manitobaite/Manitobaite.lua")
dofile(default_path.."/allores/Manjiroite/Manjiroite.lua")
dofile(default_path.."/allores/Mannardite/Mannardite.lua")
dofile(default_path.."/allores/Mansfieldite/Mansfieldite.lua")
dofile(default_path.."/allores/Mantienneite/Mantienneite.lua")
dofile(default_path.."/allores/Maohokite/Maohokite.lua")
dofile(default_path.."/allores/Maoniupingite_Ce/Maoniupingite_Ce.lua")
dofile(default_path.."/allores/Mapimite/Mapimite.lua")
dofile(default_path.."/allores/Mapiquiroite/Mapiquiroite.lua")
dofile(default_path.."/allores/Marathonite/Marathonite.lua")
dofile(default_path.."/allores/Marcasite/Marcasite.lua")
dofile(default_path.."/allores/Marchettiite/Marchettiite.lua")
dofile(default_path.."/allores/Marcobaldiite/Marcobaldiite.lua")
dofile(default_path.."/allores/Marecottite/Marecottite.lua")
dofile(default_path.."/allores/Margaritasite/Margaritasite.lua")
dofile(default_path.."/allores/Margarite/Margarite.lua")
dofile(default_path.."/allores/Margarosanite/Margarosanite.lua")
dofile(default_path.."/allores/Mariakrite/Mariakrite.lua")
dofile(default_path.."/allores/Marialite/Marialite.lua")
dofile(default_path.."/allores/Marianoite/Marianoite.lua")
dofile(default_path.."/allores/Maricite/Maricite.lua")
dofile(default_path.."/allores/Maricopaite/Maricopaite.lua")
dofile(default_path.."/allores/Mariinskite/Mariinskite.lua")
dofile(default_path.."/allores/Marinaite/Marinaite.lua")
dofile(default_path.."/allores/Marinellite/Marinellite.lua")
dofile(default_path.."/allores/Markascherite/Markascherite.lua")
dofile(default_path.."/allores/Markcooperite/Markcooperite.lua")
dofile(default_path.."/allores/Markeyite/Markeyite.lua")
dofile(default_path.."/allores/Markhininite/Markhininite.lua")
dofile(default_path.."/allores/Marklite/Marklite.lua")
dofile(default_path.."/allores/Marokite/Marokite.lua")
dofile(default_path.."/allores/Marrite/Marrite.lua")
dofile(default_path.."/allores/Marrucciite/Marrucciite.lua")
dofile(default_path.."/allores/Marshite/Marshite.lua")
dofile(default_path.."/allores/Marsturite/Marsturite.lua")
dofile(default_path.."/allores/Marthozite/Marthozite.lua")
dofile(default_path.."/allores/Martinandresite/Martinandresite.lua")
dofile(default_path.."/allores/Martinite/Martinite.lua")
dofile(default_path.."/allores/Martyite/Martyite.lua")
dofile(default_path.."/allores/Marumoite/Marumoite.lua")
dofile(default_path.."/allores/Maruyamaite/Maruyamaite.lua")
dofile(default_path.."/allores/Mascagnite/Mascagnite.lua")
dofile(default_path.."/allores/Maslovite/Maslovite.lua")
dofile(default_path.."/allores/Massicot/Massicot.lua")
dofile(default_path.."/allores/Masutomilite/Masutomilite.lua")
dofile(default_path.."/allores/Masuyite/Masuyite.lua")
dofile(default_path.."/allores/Mathesiusite/Mathesiusite.lua")
dofile(default_path.."/allores/Mathewrogersite/Mathewrogersite.lua")
dofile(default_path.."/allores/Mathiasite/Mathiasite.lua")
dofile(default_path.."/allores/Matildite/Matildite.lua")
dofile(default_path.."/allores/Matioliite/Matioliite.lua")
dofile(default_path.."/allores/Matlockite/Matlockite.lua")
dofile(default_path.."/allores/Matsubaraite/Matsubaraite.lua")
dofile(default_path.."/allores/Mattagamite/Mattagamite.lua")
dofile(default_path.."/allores/Matteuccite/Matteuccite.lua")
dofile(default_path.."/allores/Mattheddleite/Mattheddleite.lua")
dofile(default_path.."/allores/Matthiasweilite/Matthiasweilite.lua")
dofile(default_path.."/allores/Matulaite/Matulaite.lua")
dofile(default_path.."/allores/Matyhite/Matyhite.lua")
dofile(default_path.."/allores/Maucherite/Maucherite.lua")
dofile(default_path.."/allores/Mauriziodiniite/Mauriziodiniite.lua")
dofile(default_path.."/allores/Mavlyanovite/Mavlyanovite.lua")
dofile(default_path.."/allores/Mawbyite/Mawbyite.lua")
dofile(default_path.."/allores/Mawsonite/Mawsonite.lua")
dofile(default_path.."/allores/Maxwellite/Maxwellite.lua")
dofile(default_path.."/allores/Mayingite/Mayingite.lua")
dofile(default_path.."/allores/Mazorite/Mazorite.lua")
dofile(default_path.."/allores/Mazzettiite/Mazzettiite.lua")
dofile(default_path.."/allores/Mazzite_Mg/Mazzite_Mg.lua")
dofile(default_path.."/allores/Mazzite_Na/Mazzite_Na.lua")
dofile(default_path.."/allores/Mbobomkulite/Mbobomkulite.lua")
dofile(default_path.."/allores/Mcallisterite/Mcallisterite.lua")
dofile(default_path.."/allores/Mcalpineite/Mcalpineite.lua")
dofile(default_path.."/allores/Mcauslanite/Mcauslanite.lua")
dofile(default_path.."/allores/Mcbirneyite/Mcbirneyite.lua")
dofile(default_path.."/allores/Mcconnellite/Mcconnellite.lua")
dofile(default_path.."/allores/Mccrillisite/Mccrillisite.lua")
dofile(default_path.."/allores/Mcgillite/Mcgillite.lua")
dofile(default_path.."/allores/Mcgovernite/Mcgovernite.lua")
dofile(default_path.."/allores/Mcguinnessite/Mcguinnessite.lua")
dofile(default_path.."/allores/Mckelveyite_Nd/Mckelveyite_Nd.lua")
dofile(default_path.."/allores/Mckelveyite_Y/Mckelveyite_Y.lua")
dofile(default_path.."/allores/Mckinstryite/Mckinstryite.lua")
dofile(default_path.."/allores/Mcnearite/Mcnearite.lua")
dofile(default_path.."/allores/Medaite/Medaite.lua")
dofile(default_path.."/allores/Medenbachite/Medenbachite.lua")
dofile(default_path.."/allores/Medvedevite/Medvedevite.lua")
dofile(default_path.."/allores/Meerschautite/Meerschautite.lua")
dofile(default_path.."/allores/Megacyclite/Megacyclite.lua")
dofile(default_path.."/allores/Megakalsilite/Megakalsilite.lua")
dofile(default_path.."/allores/Megawite/Megawite.lua")
dofile(default_path.."/allores/Meieranite/Meieranite.lua")
dofile(default_path.."/allores/Meierite/Meierite.lua")
dofile(default_path.."/allores/Meifuite/Meifuite.lua")
dofile(default_path.."/allores/Meionite/Meionite.lua")
dofile(default_path.."/allores/Meisserite/Meisserite.lua")
dofile(default_path.."/allores/Meitnerite/Meitnerite.lua")
dofile(default_path.."/allores/Meixnerite/Meixnerite.lua")
dofile(default_path.."/allores/Mejillonesite/Mejillonesite.lua")
dofile(default_path.."/allores/Melanarsite/Melanarsite.lua")
dofile(default_path.."/allores/Melanocerite_Ce/Melanocerite_Ce.lua")
dofile(default_path.."/allores/Melanophlogite/Melanophlogite.lua")
dofile(default_path.."/allores/Melanostibite/Melanostibite.lua")
dofile(default_path.."/allores/Melanotekite/Melanotekite.lua")
dofile(default_path.."/allores/Melanothallite/Melanothallite.lua")
dofile(default_path.."/allores/Melanovanadite/Melanovanadite.lua")
dofile(default_path.."/allores/Melansonite/Melansonite.lua")
dofile(default_path.."/allores/Melanterite/Melanterite.lua")
dofile(default_path.."/allores/Melcherite/Melcherite.lua")
dofile(default_path.."/allores/Meliphanite/Meliphanite.lua")
dofile(default_path.."/allores/Melkovite/Melkovite.lua")
dofile(default_path.."/allores/Melliniite/Melliniite.lua")
dofile(default_path.."/allores/Mellite/Mellite.lua")
dofile(default_path.."/allores/Mellizinkalite/Mellizinkalite.lua")
dofile(default_path.."/allores/Melonite/Melonite.lua")
dofile(default_path.."/allores/Melonjosephite/Melonjosephite.lua")
dofile(default_path.."/allores/Menchettiite/Menchettiite.lua")
dofile(default_path.."/allores/Mendeleevite_Ce/Mendeleevite_Ce.lua")
dofile(default_path.."/allores/Mendeleevite_Nd/Mendeleevite_Nd.lua")
dofile(default_path.."/allores/Mendigite/Mendigite.lua")
dofile(default_path.."/allores/Mendipite/Mendipite.lua")
dofile(default_path.."/allores/Mendozavilite_KCa/Mendozavilite_KCa.lua")
dofile(default_path.."/allores/Mendozavilite_NaCu/Mendozavilite_NaCu.lua")
dofile(default_path.."/allores/Mendozavilite_NaFe/Mendozavilite_NaFe.lua")
dofile(default_path.."/allores/Mendozite/Mendozite.lua")
dofile(default_path.."/allores/Meneghinite/Meneghinite.lua")
dofile(default_path.."/allores/Menezesite/Menezesite.lua")
dofile(default_path.."/allores/Mengeite/Mengeite.lua")
dofile(default_path.."/allores/Mengxianminite/Mengxianminite.lua")
dofile(default_path.."/allores/Meniaylovite/Meniaylovite.lua")
dofile(default_path.."/allores/Menshikovite/Menshikovite.lua")
dofile(default_path.."/allores/Menzerite_Y/Menzerite_Y.lua")
dofile(default_path.."/allores/Mercallite/Mercallite.lua")
dofile(default_path.."/allores/Mercury/Mercury.lua")
dofile(default_path.."/allores/Mereheadite/Mereheadite.lua")
dofile(default_path.."/allores/Mereiterite/Mereiterite.lua")
dofile(default_path.."/allores/Merelaniite/Merelaniite.lua")
dofile(default_path.."/allores/Merenskyite/Merenskyite.lua")
dofile(default_path.."/allores/Meridianiite/Meridianiite.lua")
dofile(default_path.."/allores/Merlinoite/Merlinoite.lua")
dofile(default_path.."/allores/Merrihueite/Merrihueite.lua")
dofile(default_path.."/allores/Merrillite/Merrillite.lua")
dofile(default_path.."/allores/Mertieite/Mertieite.lua")
dofile(default_path.."/allores/Merwinite/Merwinite.lua")
dofile(default_path.."/allores/Mesaite/Mesaite.lua")
dofile(default_path.."/allores/Mesolite/Mesolite.lua")
dofile(default_path.."/allores/Messelite/Messelite.lua")
dofile(default_path.."/allores/Meta_aluminite/Meta_aluminite.lua")
dofile(default_path.."/allores/Meta_alunogen/Meta_alunogen.lua")
dofile(default_path.."/allores/Meta_ankoleite/Meta_ankoleite.lua")
dofile(default_path.."/allores/Meta_autunite/Meta_autunite.lua")
dofile(default_path.."/allores/Metaborite/Metaborite.lua")
dofile(default_path.."/allores/Metacalciouranoite/Metacalciouranoite.lua")
dofile(default_path.."/allores/Metacinnabar/Metacinnabar.lua")
dofile(default_path.."/allores/Metadelrioite/Metadelrioite.lua")
dofile(default_path.."/allores/Metahaiweeite/Metahaiweeite.lua")
dofile(default_path.."/allores/Metaheinrichite/Metaheinrichite.lua")
dofile(default_path.."/allores/Metahewettite/Metahewettite.lua")
dofile(default_path.."/allores/Metahohmannite/Metahohmannite.lua")
dofile(default_path.."/allores/Metakahlerite/Metakahlerite.lua")
dofile(default_path.."/allores/Metakirchheimerite/Metakirchheimerite.lua")
dofile(default_path.."/allores/Metakottigite/Metakottigite.lua")
dofile(default_path.."/allores/Metalodevite/Metalodevite.lua")
dofile(default_path.."/allores/Metamunirite/Metamunirite.lua")
dofile(default_path.."/allores/Metanatroautunite/Metanatroautunite.lua")
dofile(default_path.."/allores/Metanovacekite/Metanovacekite.lua")
dofile(default_path.."/allores/Metarauchite/Metarauchite.lua")
dofile(default_path.."/allores/Metarossite/Metarossite.lua")
dofile(default_path.."/allores/Metasaleeite/Metasaleeite.lua")
dofile(default_path.."/allores/Metaschoderite/Metaschoderite.lua")
dofile(default_path.."/allores/Metaschoepite/Metaschoepite.lua")
dofile(default_path.."/allores/Metasideronatrite/Metasideronatrite.lua")
dofile(default_path.."/allores/Metastibnite/Metastibnite.lua")
dofile(default_path.."/allores/Metastudtite/Metastudtite.lua")
dofile(default_path.."/allores/Metaswitzerite/Metaswitzerite.lua")
dofile(default_path.."/allores/Metatamboite/Metatamboite.lua")
dofile(default_path.."/allores/Metathenardite/Metathenardite.lua")
dofile(default_path.."/allores/Metatorbernite/Metatorbernite.lua")
dofile(default_path.."/allores/Metatyuyamunite/Metatyuyamunite.lua")
dofile(default_path.."/allores/Metauramphite/Metauramphite.lua")
dofile(default_path.."/allores/Metauranocircite/Metauranocircite.lua")
dofile(default_path.."/allores/MetauranocirciteII/MetauranocirciteII.lua")
dofile(default_path.."/allores/Metauranopilite/Metauranopilite.lua")
dofile(default_path.."/allores/Metauranospinite/Metauranospinite.lua")
dofile(default_path.."/allores/Metauroxite/Metauroxite.lua")
dofile(default_path.."/allores/Metavandendriesscheite/Metavandendriesscheite.lua")
dofile(default_path.."/allores/Metavanmeersscheite/Metavanmeersscheite.lua")
dofile(default_path.."/allores/Metavanuralite/Metavanuralite.lua")
dofile(default_path.."/allores/Metavariscite/Metavariscite.lua")
dofile(default_path.."/allores/Metavauxite/Metavauxite.lua")
dofile(default_path.."/allores/Metavivianite/Metavivianite.lua")
dofile(default_path.."/allores/Metavoltine/Metavoltine.lua")
dofile(default_path.."/allores/Metazellerite/Metazellerite.lua")
dofile(default_path.."/allores/Metazeunerite/Metazeunerite.lua")
dofile(default_path.."/allores/Meurigite_K/Meurigite_K.lua")
dofile(default_path.."/allores/Meurigite_Na/Meurigite_Na.lua")
dofile(default_path.."/allores/Meyerhofferite/Meyerhofferite.lua")
dofile(default_path.."/allores/Meymacite/Meymacite.lua")
dofile(default_path.."/allores/Meyrowitzite/Meyrowitzite.lua")
dofile(default_path.."/allores/Mgriite/Mgriite.lua")
dofile(default_path.."/allores/Mianningite/Mianningite.lua")
dofile(default_path.."/allores/Miargyrite/Miargyrite.lua")
dofile(default_path.."/allores/Miassite/Miassite.lua")
dofile(default_path.."/allores/Michalskiite/Michalskiite.lua")
dofile(default_path.."/allores/Micheelsenite/Micheelsenite.lua")
dofile(default_path.."/allores/Michenerite/Michenerite.lua")
dofile(default_path.."/allores/Michitoshiite_Cu/Michitoshiite_Cu.lua")
dofile(default_path.."/allores/Microcline/Microcline.lua")
dofile(default_path.."/allores/Microlite/Microlite.lua")
dofile(default_path.."/allores/Microsommite/Microsommite.lua")
dofile(default_path.."/allores/Middendorfite/Middendorfite.lua")
dofile(default_path.."/allores/Middlebackite/Middlebackite.lua")
dofile(default_path.."/allores/Mieite_Y/Mieite_Y.lua")
dofile(default_path.."/allores/Miersite/Miersite.lua")
dofile(default_path.."/allores/Miessiite/Miessiite.lua")
dofile(default_path.."/allores/Miguelromeroite/Miguelromeroite.lua")
dofile(default_path.."/allores/Miharaite/Miharaite.lua")
dofile(default_path.."/allores/Mikasaite/Mikasaite.lua")
dofile(default_path.."/allores/Mikecoxite/Mikecoxite.lua")
dofile(default_path.."/allores/Mikehowardite/Mikehowardite.lua")
dofile(default_path.."/allores/Mikenewite/Mikenewite.lua")
dofile(default_path.."/allores/Milanriederite/Milanriederite.lua")
dofile(default_path.."/allores/Milarite/Milarite.lua")
dofile(default_path.."/allores/Milkovoite/Milkovoite.lua")
dofile(default_path.."/allores/Millerite/Millerite.lua")
dofile(default_path.."/allores/Millisite/Millisite.lua")
dofile(default_path.."/allores/Millosevichite/Millosevichite.lua")
dofile(default_path.."/allores/Millsite/Millsite.lua")
dofile(default_path.."/allores/Milotaite/Milotaite.lua")
dofile(default_path.."/allores/Mimetite/Mimetite.lua")
dofile(default_path.."/allores/Mimetite_M/Mimetite_M.lua")
dofile(default_path.."/allores/Minakawaite/Minakawaite.lua")
dofile(default_path.."/allores/Minasgeraisite_Y/Minasgeraisite_Y.lua")
dofile(default_path.."/allores/Minasragrite/Minasragrite.lua")
dofile(default_path.."/allores/Mineevite_Y/Mineevite_Y.lua")
dofile(default_path.."/allores/Minehillite/Minehillite.lua")
dofile(default_path.."/allores/Minguzzite/Minguzzite.lua")
dofile(default_path.."/allores/Minium/Minium.lua")
dofile(default_path.."/allores/Minjiangite/Minjiangite.lua")
dofile(default_path.."/allores/Minnesotaite/Minnesotaite.lua")
dofile(default_path.."/allores/Minohlite/Minohlite.lua")
dofile(default_path.."/allores/Minrecordite/Minrecordite.lua")
dofile(default_path.."/allores/Minyulite/Minyulite.lua")
dofile(default_path.."/allores/Mirabilite/Mirabilite.lua")
dofile(default_path.."/allores/Mirnyite/Mirnyite.lua")
dofile(default_path.."/allores/Misakiite/Misakiite.lua")
dofile(default_path.."/allores/Misenite/Misenite.lua")
dofile(default_path.."/allores/Miserite/Miserite.lua")
dofile(default_path.."/allores/Mitridatite/Mitridatite.lua")
dofile(default_path.."/allores/Mitrofanovite/Mitrofanovite.lua")
dofile(default_path.."/allores/Mitryaevaite/Mitryaevaite.lua")
dofile(default_path.."/allores/Mitscherlichite/Mitscherlichite.lua")
dofile(default_path.."/allores/Mixite/Mixite.lua")
dofile(default_path.."/allores/Miyahisaite/Miyahisaite.lua")
dofile(default_path.."/allores/Mizraite_Ce/Mizraite_Ce.lua")
dofile(default_path.."/allores/Moabite/Moabite.lua")
dofile(default_path.."/allores/Moctezumite/Moctezumite.lua")
dofile(default_path.."/allores/Modderite/Modderite.lua")
dofile(default_path.."/allores/Moeloite/Moeloite.lua")
dofile(default_path.."/allores/Moganite/Moganite.lua")
dofile(default_path.."/allores/Mogovidite/Mogovidite.lua")
dofile(default_path.."/allores/Mohite/Mohite.lua")
dofile(default_path.."/allores/Mohnite/Mohnite.lua")
dofile(default_path.."/allores/Mohrite/Mohrite.lua")
dofile(default_path.."/allores/Moissanite/Moissanite.lua")
dofile(default_path.."/allores/Mojaveite/Mojaveite.lua")
dofile(default_path.."/allores/Molinelloite/Molinelloite.lua")
dofile(default_path.."/allores/Moluranite/Moluranite.lua")
dofile(default_path.."/allores/Molybdenite/Molybdenite.lua")
dofile(default_path.."/allores/Molybdenum/Molybdenum.lua")
dofile(default_path.."/allores/Molybdite/Molybdite.lua")
dofile(default_path.."/allores/Molybdofornacite/Molybdofornacite.lua")
dofile(default_path.."/allores/Molybdomenite/Molybdomenite.lua")
dofile(default_path.."/allores/Molybdophyllite/Molybdophyllite.lua")
dofile(default_path.."/allores/Molysite/Molysite.lua")
dofile(default_path.."/allores/Momoiite/Momoiite.lua")
dofile(default_path.."/allores/Monalbite/Monalbite.lua")
dofile(default_path.."/allores/Monazite_Ce/Monazite_Ce.lua")
dofile(default_path.."/allores/Monazite_Gd/Monazite_Gd.lua")
dofile(default_path.."/allores/Monazite_La/Monazite_La.lua")
dofile(default_path.."/allores/Monazite_Nd/Monazite_Nd.lua")
dofile(default_path.."/allores/Monazite_Sm/Monazite_Sm.lua")
dofile(default_path.."/allores/Moncheite/Moncheite.lua")
dofile(default_path.."/allores/Monchetundraite/Monchetundraite.lua")
dofile(default_path.."/allores/Monetite/Monetite.lua")
dofile(default_path.."/allores/Mongolite/Mongolite.lua")
dofile(default_path.."/allores/Mongshanite/Mongshanite.lua")
dofile(default_path.."/allores/Monimolite/Monimolite.lua")
dofile(default_path.."/allores/Monipite/Monipite.lua")
dofile(default_path.."/allores/Monohydrocalcite/Monohydrocalcite.lua")
dofile(default_path.."/allores/Montanite/Montanite.lua")
dofile(default_path.."/allores/Montbrayite/Montbrayite.lua")
dofile(default_path.."/allores/Montdorite/Montdorite.lua")
dofile(default_path.."/allores/Montebrasite/Montebrasite.lua")
dofile(default_path.."/allores/Monteneroite/Monteneroite.lua")
dofile(default_path.."/allores/Monteneveite/Monteneveite.lua")
dofile(default_path.."/allores/Monteponite/Monteponite.lua")
dofile(default_path.."/allores/Monteregianite_Y/Monteregianite_Y.lua")
dofile(default_path.."/allores/Montesommaite/Montesommaite.lua")
dofile(default_path.."/allores/Montetrisaite/Montetrisaite.lua")
dofile(default_path.."/allores/Montgomeryite/Montgomeryite.lua")
dofile(default_path.."/allores/Monticellite/Monticellite.lua")
dofile(default_path.."/allores/Montmorillonite/Montmorillonite.lua")
dofile(default_path.."/allores/Montroseite/Montroseite.lua")
dofile(default_path.."/allores/Montroyalite/Montroyalite.lua")
dofile(default_path.."/allores/Montroydite/Montroydite.lua")
dofile(default_path.."/allores/Mooihoekite/Mooihoekite.lua")
dofile(default_path.."/allores/Moolooite/Moolooite.lua")
dofile(default_path.."/allores/Mooreite/Mooreite.lua")
dofile(default_path.."/allores/Moorhouseite/Moorhouseite.lua")
dofile(default_path.."/allores/Mopungite/Mopungite.lua")
dofile(default_path.."/allores/Moraesite/Moraesite.lua")
dofile(default_path.."/allores/Moraskoite/Moraskoite.lua")
dofile(default_path.."/allores/Mordenite/Mordenite.lua")
dofile(default_path.."/allores/Moreauite/Moreauite.lua")
dofile(default_path.."/allores/Morelandite/Morelandite.lua")
dofile(default_path.."/allores/Morenosite/Morenosite.lua")
dofile(default_path.."/allores/Morimotoite/Morimotoite.lua")
dofile(default_path.."/allores/Morinite/Morinite.lua")
dofile(default_path.."/allores/Morozeviczite/Morozeviczite.lua")
dofile(default_path.."/allores/Morrisonite/Morrisonite.lua")
dofile(default_path.."/allores/Mosandrite_Ce/Mosandrite_Ce.lua")
dofile(default_path.."/allores/Moschelite/Moschelite.lua")
dofile(default_path.."/allores/Moschellandsbergite/Moschellandsbergite.lua")
dofile(default_path.."/allores/Mosesite/Mosesite.lua")
dofile(default_path.."/allores/Moskvinite_Y/Moskvinite_Y.lua")
dofile(default_path.."/allores/Mossbauerite/Mossbauerite.lua")
dofile(default_path.."/allores/Mottanaite_Ce/Mottanaite_Ce.lua")
dofile(default_path.."/allores/Mottramite/Mottramite.lua")
dofile(default_path.."/allores/Motukoreaite/Motukoreaite.lua")
dofile(default_path.."/allores/Mounanaite/Mounanaite.lua")
dofile(default_path.."/allores/Mountainite/Mountainite.lua")
dofile(default_path.."/allores/Mountkeithite/Mountkeithite.lua")
dofile(default_path.."/allores/Mourite/Mourite.lua")
dofile(default_path.."/allores/Moxuanxueite/Moxuanxueite.lua")
dofile(default_path.."/allores/Moydite_Y/Moydite_Y.lua")
dofile(default_path.."/allores/Mozartite/Mozartite.lua")
dofile(default_path.."/allores/Mozgovaite/Mozgovaite.lua")
dofile(default_path.."/allores/Mpororoite/Mpororoite.lua")
dofile(default_path.."/allores/Mrazekite/Mrazekite.lua")
dofile(default_path.."/allores/Mroseite/Mroseite.lua")
dofile(default_path.."/allores/Muckeite/Muckeite.lua")
dofile(default_path.."/allores/Muirite/Muirite.lua")
dofile(default_path.."/allores/Mukhinite/Mukhinite.lua")
dofile(default_path.."/allores/Mullerite/Mullerite.lua")
dofile(default_path.."/allores/Mullite/Mullite.lua")
dofile(default_path.."/allores/Mummeite/Mummeite.lua")
dofile(default_path.."/allores/Munakataite/Munakataite.lua")
dofile(default_path.."/allores/Mundite/Mundite.lua")
dofile(default_path.."/allores/Mundrabillaite/Mundrabillaite.lua")
dofile(default_path.."/allores/Munirite/Munirite.lua")
dofile(default_path.."/allores/Muonionalustaite/Muonionalustaite.lua")
dofile(default_path.."/allores/Murakamiite/Murakamiite.lua")
dofile(default_path.."/allores/Murashkoite/Murashkoite.lua")
dofile(default_path.."/allores/Murataite_Y/Murataite_Y.lua")
dofile(default_path.."/allores/Murchisite/Murchisite.lua")
dofile(default_path.."/allores/Murdochite/Murdochite.lua")
dofile(default_path.."/allores/Murmanite/Murmanite.lua")
dofile(default_path.."/allores/Murphyite/Murphyite.lua")
dofile(default_path.."/allores/Murunskite/Murunskite.lua")
dofile(default_path.."/allores/Muscovite/Muscovite.lua")
dofile(default_path.."/allores/Museumite/Museumite.lua")
dofile(default_path.."/allores/Mushistonite/Mushistonite.lua")
dofile(default_path.."/allores/Muskoxite/Muskoxite.lua")
dofile(default_path.."/allores/Muthmannite/Muthmannite.lua")
dofile(default_path.."/allores/Mutinaite/Mutinaite.lua")
dofile(default_path.."/allores/Mutnovskite/Mutnovskite.lua")
dofile(default_path.."/allores/Nabalamprophyllite/Nabalamprophyllite.lua")
dofile(default_path.."/allores/Nabaphite/Nabaphite.lua")
dofile(default_path.."/allores/Nabateaite/Nabateaite.lua")
dofile(default_path.."/allores/Nabesite/Nabesite.lua")
dofile(default_path.."/allores/Nabiasite/Nabiasite.lua")
dofile(default_path.."/allores/Nabimusaite/Nabimusaite.lua")
dofile(default_path.."/allores/Nabokoite/Nabokoite.lua")
dofile(default_path.."/allores/Nacaphite/Nacaphite.lua")
dofile(default_path.."/allores/Nacareniobsite_Ce/Nacareniobsite_Ce.lua")
dofile(default_path.."/allores/Nacrite/Nacrite.lua")
dofile(default_path.."/allores/Nadorite/Nadorite.lua")
dofile(default_path.."/allores/Nafeasite/Nafeasite.lua")
dofile(default_path.."/allores/Nafertisite/Nafertisite.lua")
dofile(default_path.."/allores/Nagashimalite/Nagashimalite.lua")
dofile(default_path.."/allores/Nagelschmidtite/Nagelschmidtite.lua")
dofile(default_path.."/allores/Nagyagite/Nagyagite.lua")
dofile(default_path.."/allores/Nahcolite/Nahcolite.lua")
dofile(default_path.."/allores/Nahpoite/Nahpoite.lua")
dofile(default_path.."/allores/Nakauriite/Nakauriite.lua")
dofile(default_path.."/allores/Nakkaalaaqite/Nakkaalaaqite.lua")
dofile(default_path.."/allores/Naldrettite/Naldrettite.lua")
dofile(default_path.."/allores/Nalipoite/Nalipoite.lua")
dofile(default_path.."/allores/Nalivkinite/Nalivkinite.lua")
dofile(default_path.."/allores/Namansilite/Namansilite.lua")
dofile(default_path.."/allores/Nambulite/Nambulite.lua")
dofile(default_path.."/allores/Namibite/Namibite.lua")
dofile(default_path.."/allores/Namuwite/Namuwite.lua")
dofile(default_path.."/allores/Nanlingite/Nanlingite.lua")
dofile(default_path.."/allores/Nanpingite/Nanpingite.lua")
dofile(default_path.."/allores/Nantokite/Nantokite.lua")
dofile(default_path.."/allores/Napoliite/Napoliite.lua")
dofile(default_path.."/allores/Naquite/Naquite.lua")
dofile(default_path.."/allores/Narsarsukite/Narsarsukite.lua")
dofile(default_path.."/allores/Nashite/Nashite.lua")
dofile(default_path.."/allores/Nasinite/Nasinite.lua")
dofile(default_path.."/allores/Nasledovite/Nasledovite.lua")
dofile(default_path.."/allores/Nasonite/Nasonite.lua")
dofile(default_path.."/allores/Nastrophite/Nastrophite.lua")
dofile(default_path.."/allores/Nataliakulikite/Nataliakulikite.lua")
dofile(default_path.."/allores/Nataliyamalikite/Nataliyamalikite.lua")
dofile(default_path.."/allores/Natalyite/Natalyite.lua")
dofile(default_path.."/allores/Natanite/Natanite.lua")
dofile(default_path.."/allores/Natisite/Natisite.lua")
dofile(default_path.."/allores/Natrite/Natrite.lua")
dofile(default_path.."/allores/Natroalunite/Natroalunite.lua")
dofile(default_path.."/allores/Natroaphthitalite/Natroaphthitalite.lua")
dofile(default_path.."/allores/Natrobistantite/Natrobistantite.lua")
dofile(default_path.."/allores/Natroboltwoodite/Natroboltwoodite.lua")
dofile(default_path.."/allores/Natrochalcite/Natrochalcite.lua")
dofile(default_path.."/allores/Natrodufrenite/Natrodufrenite.lua")
dofile(default_path.."/allores/Natroglaucocerinite/Natroglaucocerinite.lua")
dofile(default_path.."/allores/Natrojarosite/Natrojarosite.lua")
dofile(default_path.."/allores/Natrokomarovite/Natrokomarovite.lua")
dofile(default_path.."/allores/Natrolemoynite/Natrolemoynite.lua")
dofile(default_path.."/allores/Natrolite/Natrolite.lua")
dofile(default_path.."/allores/Natromarkeyite/Natromarkeyite.lua")
dofile(default_path.."/allores/Natromontebrasite/Natromontebrasite.lua")
dofile(default_path.."/allores/Natron/Natron.lua")
dofile(default_path.."/allores/Natronambulite/Natronambulite.lua")
dofile(default_path.."/allores/Natroniobite/Natroniobite.lua")
dofile(default_path.."/allores/Natropalermoite/Natropalermoite.lua")
dofile(default_path.."/allores/Natropharmacoalumite/Natropharmacoalumite.lua")
dofile(default_path.."/allores/Natropharmacosiderite/Natropharmacosiderite.lua")
dofile(default_path.."/allores/Natrophilite/Natrophilite.lua")
dofile(default_path.."/allores/Natrophosphate/Natrophosphate.lua")
dofile(default_path.."/allores/Natrosilite/Natrosilite.lua")
dofile(default_path.."/allores/Natrosulfatourea/Natrosulfatourea.lua")
dofile(default_path.."/allores/Natrotantite/Natrotantite.lua")
dofile(default_path.."/allores/Natrotitanite/Natrotitanite.lua")
dofile(default_path.."/allores/Natrouranospinite/Natrouranospinite.lua")
dofile(default_path.."/allores/Natrowalentaite/Natrowalentaite.lua")
dofile(default_path.."/allores/Natroxalate/Natroxalate.lua")
dofile(default_path.."/allores/Natrozippeite/Natrozippeite.lua")
dofile(default_path.."/allores/Naujakasite/Naujakasite.lua")
dofile(default_path.."/allores/Naumannite/Naumannite.lua")
dofile(default_path.."/allores/Navajoite/Navajoite.lua")
dofile(default_path.."/allores/Navrotskyite/Navrotskyite.lua")
dofile(default_path.."/allores/Nazarchukite/Nazarchukite.lua")
dofile(default_path.."/allores/Nazarovite/Nazarovite.lua")
dofile(default_path.."/allores/Nchwaningite/Nchwaningite.lua")
dofile(default_path.."/allores/Nealite/Nealite.lua")
dofile(default_path.."/allores/Nechelyustovite/Nechelyustovite.lua")
dofile(default_path.."/allores/Nefedovite/Nefedovite.lua")
dofile(default_path.."/allores/Negevite/Negevite.lua")
dofile(default_path.."/allores/Neighborite/Neighborite.lua")
dofile(default_path.."/allores/Nekoite/Nekoite.lua")
dofile(default_path.."/allores/Nekrasovite/Nekrasovite.lua")
dofile(default_path.."/allores/Nelenite/Nelenite.lua")
dofile(default_path.."/allores/Neltnerite/Neltnerite.lua")
dofile(default_path.."/allores/Nenadkevichite/Nenadkevichite.lua")
dofile(default_path.."/allores/Neotocite/Neotocite.lua")
dofile(default_path.."/allores/Nepheline/Nepheline.lua")
dofile(default_path.."/allores/Nepouite/Nepouite.lua")
dofile(default_path.."/allores/Nepskoeite/Nepskoeite.lua")
dofile(default_path.."/allores/Neptunite/Neptunite.lua")
dofile(default_path.."/allores/Neskevaaraite_Fe/Neskevaaraite_Fe.lua")
dofile(default_path.."/allores/Nesquehonite/Nesquehonite.lua")
dofile(default_path.."/allores/Nestolaite/Nestolaite.lua")
dofile(default_path.."/allores/Neustadtelite/Neustadtelite.lua")
dofile(default_path.."/allores/Nevadaite/Nevadaite.lua")
dofile(default_path.."/allores/Nevskite/Nevskite.lua")
dofile(default_path.."/allores/Newberyite/Newberyite.lua")
dofile(default_path.."/allores/Neyite/Neyite.lua")
dofile(default_path.."/allores/Nezilovite/Nezilovite.lua")
dofile(default_path.."/allores/Niahite/Niahite.lua")
dofile(default_path.."/allores/Niasite/Niasite.lua")
dofile(default_path.."/allores/Nichromite/Nichromite.lua")
dofile(default_path.."/allores/Nickel/Nickel.lua")
dofile(default_path.."/allores/Nickelalumite/Nickelalumite.lua")
dofile(default_path.."/allores/Nickelaustinite/Nickelaustinite.lua")
dofile(default_path.."/allores/Nickelbischofite/Nickelbischofite.lua")
dofile(default_path.."/allores/Nickelblodite/Nickelblodite.lua")
dofile(default_path.."/allores/Nickelboussingaultite/Nickelboussingaultite.lua")
dofile(default_path.."/allores/Nickelhexahydrite/Nickelhexahydrite.lua")
dofile(default_path.."/allores/Nickeline/Nickeline.lua")
dofile(default_path.."/allores/Nickellotharmeyerite/Nickellotharmeyerite.lua")
dofile(default_path.."/allores/Nickelphosphide/Nickelphosphide.lua")
dofile(default_path.."/allores/Nickelpicromerite/Nickelpicromerite.lua")
dofile(default_path.."/allores/Nickelschneebergite/Nickelschneebergite.lua")
dofile(default_path.."/allores/Nickelskutterudite/Nickelskutterudite.lua")
dofile(default_path.."/allores/Nickeltalmessite/Nickeltalmessite.lua")
dofile(default_path.."/allores/Nickeltsumcorite/Nickeltsumcorite.lua")
dofile(default_path.."/allores/Nickeltyrrellite/Nickeltyrrellite.lua")
dofile(default_path.."/allores/Nickelzippeite/Nickelzippeite.lua")
dofile(default_path.."/allores/Nickenichite/Nickenichite.lua")
dofile(default_path.."/allores/Nickolayite/Nickolayite.lua")
dofile(default_path.."/allores/Nicksobolevite/Nicksobolevite.lua")
dofile(default_path.."/allores/Niedermayrite/Niedermayrite.lua")
dofile(default_path.."/allores/Nielsbohrite/Nielsbohrite.lua")
dofile(default_path.."/allores/Nielsenite/Nielsenite.lua")
dofile(default_path.."/allores/Nierite/Nierite.lua")
dofile(default_path.."/allores/Nifontovite/Nifontovite.lua")
dofile(default_path.."/allores/Niggliite/Niggliite.lua")
dofile(default_path.."/allores/Niigataite/Niigataite.lua")
dofile(default_path.."/allores/Nikischerite/Nikischerite.lua")
dofile(default_path.."/allores/Nikmelnikovite/Nikmelnikovite.lua")
dofile(default_path.."/allores/Niksergievite/Niksergievite.lua")
dofile(default_path.."/allores/Nimite/Nimite.lua")
dofile(default_path.."/allores/Ningyoite/Ningyoite.lua")
dofile(default_path.."/allores/Niningerite/Niningerite.lua")
dofile(default_path.."/allores/Nioboaeschynite_Ce/Nioboaeschynite_Ce.lua")
dofile(default_path.."/allores/Nioboaeschynite_Nd/Nioboaeschynite_Nd.lua")
dofile(default_path.."/allores/Nioboaeschynite_Y/Nioboaeschynite_Y.lua")
dofile(default_path.."/allores/Niobocarbide/Niobocarbide.lua")
dofile(default_path.."/allores/Nioboheftetjernite/Nioboheftetjernite.lua")
dofile(default_path.."/allores/Nioboholtite/Nioboholtite.lua")
dofile(default_path.."/allores/Nioboixiolite_Mn2/Nioboixiolite_Mn2.lua")
dofile(default_path.."/allores/Niobokupletskite/Niobokupletskite.lua")
dofile(default_path.."/allores/Niobophyllite/Niobophyllite.lua")
dofile(default_path.."/allores/Niocalite/Niocalite.lua")
dofile(default_path.."/allores/Nipalarsite/Nipalarsite.lua")
dofile(default_path.."/allores/Nisbite/Nisbite.lua")
dofile(default_path.."/allores/Nishanbaevite/Nishanbaevite.lua")
dofile(default_path.."/allores/Nisnite/Nisnite.lua")
dofile(default_path.."/allores/Nissonite/Nissonite.lua")
dofile(default_path.."/allores/Niter/Niter.lua")
dofile(default_path.."/allores/Nitratine/Nitratine.lua")
dofile(default_path.."/allores/Nitrobarite/Nitrobarite.lua")
dofile(default_path.."/allores/Nitrocalcite/Nitrocalcite.lua")
dofile(default_path.."/allores/Nitromagnesite/Nitromagnesite.lua")
dofile(default_path.."/allores/Nitroplumbite/Nitroplumbite.lua")
dofile(default_path.."/allores/Nitscheite/Nitscheite.lua")
dofile(default_path.."/allores/Niveolanite/Niveolanite.lua")
dofile(default_path.."/allores/Nixonite/Nixonite.lua")
dofile(default_path.."/allores/Nizamoffite/Nizamoffite.lua")
dofile(default_path.."/allores/Nobleite/Nobleite.lua")
dofile(default_path.."/allores/Noelbensonite/Noelbensonite.lua")
dofile(default_path.."/allores/Noggerathite_Ce/Noggerathite_Ce.lua")
dofile(default_path.."/allores/Nolanite/Nolanite.lua")
dofile(default_path.."/allores/Nollmotzite/Nollmotzite.lua")
dofile(default_path.."/allores/Nolzeite/Nolzeite.lua")
dofile(default_path.."/allores/Nontronite/Nontronite.lua")
dofile(default_path.."/allores/Noonkanbahite/Noonkanbahite.lua")
dofile(default_path.."/allores/Norbergite/Norbergite.lua")
dofile(default_path.."/allores/Nordenskioldine/Nordenskioldine.lua")
dofile(default_path.."/allores/Nordgauite/Nordgauite.lua")
dofile(default_path.."/allores/Nordite_Ce/Nordite_Ce.lua")
dofile(default_path.."/allores/Nordite_La/Nordite_La.lua")
dofile(default_path.."/allores/Nordstrandite/Nordstrandite.lua")
dofile(default_path.."/allores/Nordstromite/Nordstromite.lua")
dofile(default_path.."/allores/Norilskite/Norilskite.lua")
dofile(default_path.."/allores/Normandite/Normandite.lua")
dofile(default_path.."/allores/Norrishite/Norrishite.lua")
dofile(default_path.."/allores/Norsethite/Norsethite.lua")
dofile(default_path.."/allores/Northstarite/Northstarite.lua")
dofile(default_path.."/allores/Northupite/Northupite.lua")
dofile(default_path.."/allores/Nosean/Nosean.lua")
dofile(default_path.."/allores/Novacekite/Novacekite.lua")
dofile(default_path.."/allores/Novakite/Novakite.lua")
dofile(default_path.."/allores/Novgorodovaite/Novgorodovaite.lua")
dofile(default_path.."/allores/Novikovite/Novikovite.lua")
dofile(default_path.."/allores/Novodneprite/Novodneprite.lua")
dofile(default_path.."/allores/Novograblenovite/Novograblenovite.lua")
dofile(default_path.."/allores/Nowackiite/Nowackiite.lua")
dofile(default_path.."/allores/Nsutite/Nsutite.lua")
dofile(default_path.."/allores/Nuffieldite/Nuffieldite.lua")
dofile(default_path.."/allores/Nukundamite/Nukundamite.lua")
dofile(default_path.."/allores/Nullaginite/Nullaginite.lua")
dofile(default_path.."/allores/Numanoite/Numanoite.lua")
dofile(default_path.."/allores/Nuragheite/Nuragheite.lua")
dofile(default_path.."/allores/Nuwaite/Nuwaite.lua")
dofile(default_path.."/allores/Nyboite/Nyboite.lua")
dofile(default_path.."/allores/Nyerereite/Nyerereite.lua")
dofile(default_path.."/allores/Nyholmite/Nyholmite.lua")
dofile(default_path.."/allores/Oberthurite/Oberthurite.lua")
dofile(default_path.."/allores/Oberwolfachite/Oberwolfachite.lua")
dofile(default_path.."/allores/Oboyerite/Oboyerite.lua")
dofile(default_path.."/allores/Obradovicite_KCu/Obradovicite_KCu.lua")
dofile(default_path.."/allores/Obradovicite_NaCu/Obradovicite_NaCu.lua")
dofile(default_path.."/allores/Obradovicite_NaNa/Obradovicite_NaNa.lua")
dofile(default_path.."/allores/Odanielite/Odanielite.lua")
dofile(default_path.."/allores/Odigitriaite/Odigitriaite.lua")
dofile(default_path.."/allores/Odikhinchaite/Odikhinchaite.lua")
dofile(default_path.."/allores/Odinite/Odinite.lua")
dofile(default_path.."/allores/Odintsovite/Odintsovite.lua")
dofile(default_path.."/allores/Oenite/Oenite.lua")
dofile(default_path.."/allores/Offretite/Offretite.lua")
dofile(default_path.."/allores/Oftedalite/Oftedalite.lua")
dofile(default_path.."/allores/Ogdensburgite/Ogdensburgite.lua")
dofile(default_path.."/allores/Ognitite/Ognitite.lua")
dofile(default_path.."/allores/Ohmilite/Ohmilite.lua")
dofile(default_path.."/allores/Ojuelaite/Ojuelaite.lua")
dofile(default_path.."/allores/Okanoganite_Y/Okanoganite_Y.lua")
dofile(default_path.."/allores/Okayamalite/Okayamalite.lua")
dofile(default_path.."/allores/Okenite/Okenite.lua")
dofile(default_path.."/allores/Okhotskite/Okhotskite.lua")
dofile(default_path.."/allores/Okieite/Okieite.lua")
dofile(default_path.."/allores/Okruschite/Okruschite.lua")
dofile(default_path.."/allores/Oldhamite/Oldhamite.lua")
dofile(default_path.."/allores/Oldsite/Oldsite.lua")
dofile(default_path.."/allores/Olekminskite/Olekminskite.lua")
dofile(default_path.."/allores/Olenite/Olenite.lua")
dofile(default_path.."/allores/Olgite/Olgite.lua")
dofile(default_path.."/allores/Oligoclase/Oligoclase.lua")
dofile(default_path.."/allores/Olivenite/Olivenite.lua")
dofile(default_path.."/allores/Olkhonskite/Olkhonskite.lua")
dofile(default_path.."/allores/Olmiite/Olmiite.lua")
dofile(default_path.."/allores/Olmsteadite/Olmsteadite.lua")
dofile(default_path.."/allores/Olsacherite/Olsacherite.lua")
dofile(default_path.."/allores/Olshanskyite/Olshanskyite.lua")
dofile(default_path.."/allores/Olympite/Olympite.lua")
dofile(default_path.."/allores/Omariniite/Omariniite.lua")
dofile(default_path.."/allores/Omeiite/Omeiite.lua")
dofile(default_path.."/allores/Ominelite/Ominelite.lua")
dofile(default_path.."/allores/Omongwaite/Omongwaite.lua")
dofile(default_path.."/allores/Omphacite/Omphacite.lua")
dofile(default_path.."/allores/Omsite/Omsite.lua")
dofile(default_path.."/allores/Ondrusite/Ondrusite.lua")
dofile(default_path.."/allores/Oneillite/Oneillite.lua")
dofile(default_path.."/allores/Onoratoite/Onoratoite.lua")
dofile(default_path.."/allores/Oosterboschite/Oosterboschite.lua")
dofile(default_path.."/allores/Opal/Opal.lua")
dofile(default_path.."/allores/Ophirite/Ophirite.lua")
dofile(default_path.."/allores/Oppenheimerite/Oppenheimerite.lua")
dofile(default_path.."/allores/Orcelite/Orcelite.lua")
dofile(default_path.."/allores/Ordonezite/Ordonezite.lua")
dofile(default_path.."/allores/Orebroite/Orebroite.lua")
dofile(default_path.."/allores/Oregonite/Oregonite.lua")
dofile(default_path.."/allores/Oreillyite/Oreillyite.lua")
dofile(default_path.."/allores/Organovaite_Mn/Organovaite_Mn.lua")
dofile(default_path.."/allores/Organovaite_Zn/Organovaite_Zn.lua")
dofile(default_path.."/allores/Orickite/Orickite.lua")
dofile(default_path.."/allores/Orientite/Orientite.lua")
dofile(default_path.."/allores/Orishchinite/Orishchinite.lua")
dofile(default_path.."/allores/Orlandiite/Orlandiite.lua")
dofile(default_path.."/allores/Orlovite/Orlovite.lua")
dofile(default_path.."/allores/Orlymanite/Orlymanite.lua")
dofile(default_path.."/allores/Orpiment/Orpiment.lua")
dofile(default_path.."/allores/Orschallite/Orschallite.lua")
dofile(default_path.."/allores/Orthobrannerite/Orthobrannerite.lua")
dofile(default_path.."/allores/Orthochamosite/Orthochamosite.lua")
dofile(default_path.."/allores/Orthoclase/Orthoclase.lua")
dofile(default_path.."/allores/Orthocuproplatinum/Orthocuproplatinum.lua")
dofile(default_path.."/allores/Orthoericssonite/Orthoericssonite.lua")
dofile(default_path.."/allores/Orthogersdorffite/Orthogersdorffite.lua")
dofile(default_path.."/allores/Orthojoaquinite_Ce/Orthojoaquinite_Ce.lua")
dofile(default_path.."/allores/Orthojoaquinite_La/Orthojoaquinite_La.lua")
dofile(default_path.."/allores/Orthominasragrite/Orthominasragrite.lua")
dofile(default_path.."/allores/Orthopinakiolite/Orthopinakiolite.lua")
dofile(default_path.."/allores/Orthoserpierite/Orthoserpierite.lua")
dofile(default_path.."/allores/Orthowalpurgite/Orthowalpurgite.lua")
dofile(default_path.."/allores/Osakaite/Osakaite.lua")
dofile(default_path.."/allores/Osarizawaite/Osarizawaite.lua")
dofile(default_path.."/allores/Osarsite/Osarsite.lua")
dofile(default_path.."/allores/Osbornite/Osbornite.lua")
dofile(default_path.."/allores/Oscarkempffite/Oscarkempffite.lua")
dofile(default_path.."/allores/Oskarssonite/Oskarssonite.lua")
dofile(default_path.."/allores/Osmium/Osmium.lua")
dofile(default_path.."/allores/Osumilite/Osumilite.lua")
dofile(default_path.."/allores/Osumilite_Mg/Osumilite_Mg.lua")
dofile(default_path.."/allores/Oswaldpeetersite/Oswaldpeetersite.lua")
dofile(default_path.."/allores/Otavite/Otavite.lua")
dofile(default_path.."/allores/Otjisumeite/Otjisumeite.lua")
dofile(default_path.."/allores/Ottemannite/Ottemannite.lua")
dofile(default_path.."/allores/Ottensite/Ottensite.lua")
dofile(default_path.."/allores/Ottohahnite/Ottohahnite.lua")
dofile(default_path.."/allores/Ottoite/Ottoite.lua")
dofile(default_path.."/allores/Ottoliniite/Ottoliniite.lua")
dofile(default_path.."/allores/Ottrelite/Ottrelite.lua")
dofile(default_path.."/allores/Otwayite/Otwayite.lua")
dofile(default_path.."/allores/Oulankaite/Oulankaite.lua")
dofile(default_path.."/allores/Ourayite/Ourayite.lua")
dofile(default_path.."/allores/Oursinite/Oursinite.lua")
dofile(default_path.."/allores/Ovamboite/Ovamboite.lua")
dofile(default_path.."/allores/Overite/Overite.lua")
dofile(default_path.."/allores/Owensite/Owensite.lua")
dofile(default_path.."/allores/Owyheeite/Owyheeite.lua")
dofile(default_path.."/allores/Oxammite/Oxammite.lua")
dofile(default_path.."/allores/Oxo_magnesio_hastingsite/Oxo_magnesio_hastingsite.lua")
dofile(default_path.."/allores/Oxo_mangani_leakeite/Oxo_mangani_leakeite.lua")
dofile(default_path.."/allores/Oxy_chromium_dravite/Oxy_chromium_dravite.lua")
dofile(default_path.."/allores/Oxy_dravite/Oxy_dravite.lua")
dofile(default_path.."/allores/Oxy_foitite/Oxy_foitite.lua")
dofile(default_path.."/allores/Oxy_schorl/Oxy_schorl.lua")
dofile(default_path.."/allores/Oxy_vanadium_dravite/Oxy_vanadium_dravite.lua")
dofile(default_path.."/allores/Oxybismutomicrolite/Oxybismutomicrolite.lua")
dofile(default_path.."/allores/Oxycalciobetafite/Oxycalciobetafite.lua")
dofile(default_path.."/allores/Oxycalciomicrolite/Oxycalciomicrolite.lua")
dofile(default_path.."/allores/Oxycalciopyrochlore/Oxycalciopyrochlore.lua")
dofile(default_path.."/allores/Oxycalcioromeite/Oxycalcioromeite.lua")
dofile(default_path.."/allores/Oxykinoshitalite/Oxykinoshitalite.lua")
dofile(default_path.."/allores/Oxynatromicrolite/Oxynatromicrolite.lua")
dofile(default_path.."/allores/Oxyphlogopite/Oxyphlogopite.lua")
dofile(default_path.."/allores/Oxyplumboromeite/Oxyplumboromeite.lua")
dofile(default_path.."/allores/Oxystannomicrolite/Oxystannomicrolite.lua")
dofile(default_path.."/allores/Oxystibiomicrolite/Oxystibiomicrolite.lua")
dofile(default_path.."/allores/Oxyuranobetafite/Oxyuranobetafite.lua")
dofile(default_path.."/allores/Oxyvanite/Oxyvanite.lua")
dofile(default_path.."/allores/Oxyyttrobetafite_Y/Oxyyttrobetafite_Y.lua")
dofile(default_path.."/allores/Oyelite/Oyelite.lua")
dofile(default_path.."/allores/Oyonite/Oyonite.lua")
dofile(default_path.."/allores/Ozernovskite/Ozernovskite.lua")
dofile(default_path.."/allores/Ozerovaite/Ozerovaite.lua")
dofile(default_path.."/allores/Paakkonenite/Paakkonenite.lua")
dofile(default_path.."/allores/Paarite/Paarite.lua")
dofile(default_path.."/allores/Pabstite/Pabstite.lua")
dofile(default_path.."/allores/Paceite/Paceite.lua")
dofile(default_path.."/allores/Pachnolite/Pachnolite.lua")
dofile(default_path.."/allores/Packratite/Packratite.lua")
dofile(default_path.."/allores/Paddlewheelite/Paddlewheelite.lua")
dofile(default_path.."/allores/Paderaite/Paderaite.lua")
dofile(default_path.."/allores/Padmaite/Padmaite.lua")
dofile(default_path.."/allores/Paganoite/Paganoite.lua")
dofile(default_path.."/allores/Pahasapaite/Pahasapaite.lua")
dofile(default_path.."/allores/Painite/Painite.lua")
dofile(default_path.."/allores/Pakhomovskyite/Pakhomovskyite.lua")
dofile(default_path.."/allores/Palarstanide/Palarstanide.lua")
dofile(default_path.."/allores/Palenzonaite/Palenzonaite.lua")
dofile(default_path.."/allores/Palermoite/Palermoite.lua")
dofile(default_path.."/allores/Palladinite/Palladinite.lua")
dofile(default_path.."/allores/Palladium/Palladium.lua")
dofile(default_path.."/allores/Palladoarsenide/Palladoarsenide.lua")
dofile(default_path.."/allores/Palladobismutharsenide/Palladobismutharsenide.lua")
dofile(default_path.."/allores/Palladodymite/Palladodymite.lua")
dofile(default_path.."/allores/Palladogermanide/Palladogermanide.lua")
dofile(default_path.."/allores/Palladosilicide/Palladosilicide.lua")
dofile(default_path.."/allores/Palladothallite/Palladothallite.lua")
dofile(default_path.."/allores/Palladseite/Palladseite.lua")
dofile(default_path.."/allores/Palmierite/Palmierite.lua")
dofile(default_path.."/allores/Palygorskite/Palygorskite.lua")
dofile(default_path.."/allores/Pampaloite/Pampaloite.lua")
dofile(default_path.."/allores/Panasqueiraite/Panasqueiraite.lua")
dofile(default_path.."/allores/Pandoraite_Ba/Pandoraite_Ba.lua")
dofile(default_path.."/allores/Pandoraite_Ca/Pandoraite_Ca.lua")
dofile(default_path.."/allores/Panethite/Panethite.lua")
dofile(default_path.."/allores/Panguite/Panguite.lua")
dofile(default_path.."/allores/Panichiite/Panichiite.lua")
dofile(default_path.."/allores/Panskyite/Panskyite.lua")
dofile(default_path.."/allores/Pansnerite/Pansnerite.lua")
dofile(default_path.."/allores/Panunzite/Panunzite.lua")
dofile(default_path.."/allores/Paolovite/Paolovite.lua")
dofile(default_path.."/allores/Papagoite/Papagoite.lua")
dofile(default_path.."/allores/Paqueite/Paqueite.lua")
dofile(default_path.."/allores/Para_alumohydrocalcite/Para_alumohydrocalcite.lua")
dofile(default_path.."/allores/Parabariomicrolite/Parabariomicrolite.lua")
dofile(default_path.."/allores/Paraberzeliite/Paraberzeliite.lua")
dofile(default_path.."/allores/Parabrandtite/Parabrandtite.lua")
dofile(default_path.."/allores/Parabutlerite/Parabutlerite.lua")
dofile(default_path.."/allores/Paracelsian/Paracelsian.lua")
dofile(default_path.."/allores/Paracoquimbite/Paracoquimbite.lua")
dofile(default_path.."/allores/Paracostibite/Paracostibite.lua")
dofile(default_path.."/allores/Paradamite/Paradamite.lua")
dofile(default_path.."/allores/Paradimorphite/Paradimorphite.lua")
dofile(default_path.."/allores/Paradocrasite/Paradocrasite.lua")
dofile(default_path.."/allores/Paradsasvarite/Paradsasvarite.lua")
dofile(default_path.."/allores/Paraershovite/Paraershovite.lua")
dofile(default_path.."/allores/Parafiniukite/Parafiniukite.lua")
dofile(default_path.."/allores/Parafransoletite/Parafransoletite.lua")
dofile(default_path.."/allores/Parageorgbokiite/Parageorgbokiite.lua")
dofile(default_path.."/allores/Paragersdorffite/Paragersdorffite.lua")
dofile(default_path.."/allores/Paragonite/Paragonite.lua")
dofile(default_path.."/allores/Paraguanajuatite/Paraguanajuatite.lua")
dofile(default_path.."/allores/Parahibbingite/Parahibbingite.lua")
dofile(default_path.."/allores/Parahopeite/Parahopeite.lua")
dofile(default_path.."/allores/Parakeldyshite/Parakeldyshite.lua")
dofile(default_path.."/allores/Parakuzmenkoite_Fe/Parakuzmenkoite_Fe.lua")
dofile(default_path.."/allores/Paralabuntsovite_Mg/Paralabuntsovite_Mg.lua")
dofile(default_path.."/allores/Paralammerite/Paralammerite.lua")
dofile(default_path.."/allores/Paralaurionite/Paralaurionite.lua")
dofile(default_path.."/allores/Paralomonosovite/Paralomonosovite.lua")
dofile(default_path.."/allores/Paralstonite/Paralstonite.lua")
dofile(default_path.."/allores/Paramarkeyite/Paramarkeyite.lua")
dofile(default_path.."/allores/Paramelaconite/Paramelaconite.lua")
dofile(default_path.."/allores/Paramendozavilite/Paramendozavilite.lua")
dofile(default_path.."/allores/Paramontroseite/Paramontroseite.lua")
dofile(default_path.."/allores/Paranatisite/Paranatisite.lua")
dofile(default_path.."/allores/Paranatrolite/Paranatrolite.lua")
dofile(default_path.."/allores/Paraniite_Y/Paraniite_Y.lua")
dofile(default_path.."/allores/Paraotwayite/Paraotwayite.lua")
dofile(default_path.."/allores/Parapierrotite/Parapierrotite.lua")
dofile(default_path.."/allores/Pararaisaite/Pararaisaite.lua")
dofile(default_path.."/allores/Pararammelsbergite/Pararammelsbergite.lua")
dofile(default_path.."/allores/Pararealgar/Pararealgar.lua")
dofile(default_path.."/allores/Pararobertsite/Pararobertsite.lua")
dofile(default_path.."/allores/Pararsenolamprite/Pararsenolamprite.lua")
dofile(default_path.."/allores/Parascandolaite/Parascandolaite.lua")
dofile(default_path.."/allores/Paraschachnerite/Paraschachnerite.lua")
dofile(default_path.."/allores/Paraschoepite/Paraschoepite.lua")
dofile(default_path.."/allores/Parascholzite/Parascholzite.lua")
dofile(default_path.."/allores/Parascorodite/Parascorodite.lua")
dofile(default_path.."/allores/Parasibirskite/Parasibirskite.lua")
dofile(default_path.."/allores/Paraspurrite/Paraspurrite.lua")
dofile(default_path.."/allores/Parasterryite/Parasterryite.lua")
dofile(default_path.."/allores/Parasymplesite/Parasymplesite.lua")
dofile(default_path.."/allores/Paratacamite/Paratacamite.lua")
dofile(default_path.."/allores/Paratacamite_Mg/Paratacamite_Mg.lua")
dofile(default_path.."/allores/Paratacamite_Ni/Paratacamite_Ni.lua")
dofile(default_path.."/allores/Paratellurite/Paratellurite.lua")
dofile(default_path.."/allores/Paratimroseite/Paratimroseite.lua")
dofile(default_path.."/allores/Paratobermorite/Paratobermorite.lua")
dofile(default_path.."/allores/Paratooite_La/Paratooite_La.lua")
dofile(default_path.."/allores/Paratsepinite_Ba/Paratsepinite_Ba.lua")
dofile(default_path.."/allores/Paratsepinite_Na/Paratsepinite_Na.lua")
dofile(default_path.."/allores/Paraumbite/Paraumbite.lua")
dofile(default_path.."/allores/Parauranophane/Parauranophane.lua")
dofile(default_path.."/allores/Paravauxite/Paravauxite.lua")
dofile(default_path.."/allores/Paravinogradovite/Paravinogradovite.lua")
dofile(default_path.."/allores/Parawulffite/Parawulffite.lua")
dofile(default_path.."/allores/Pargasite/Pargasite.lua")
dofile(default_path.."/allores/Parisite_Ce/Parisite_Ce.lua")
dofile(default_path.."/allores/Parisite_La/Parisite_La.lua")
dofile(default_path.."/allores/Parisite_Nd/Parisite_Nd.lua")
dofile(default_path.."/allores/Parkerite/Parkerite.lua")
dofile(default_path.."/allores/Parkinsonite/Parkinsonite.lua")
dofile(default_path.."/allores/Parnauite/Parnauite.lua")
dofile(default_path.."/allores/Parsettensite/Parsettensite.lua")
dofile(default_path.."/allores/Parsonsite/Parsonsite.lua")
dofile(default_path.."/allores/Partheite/Partheite.lua")
dofile(default_path.."/allores/Partzite/Partzite.lua")
dofile(default_path.."/allores/Parvo_mangano_edenite/Parvo_mangano_edenite.lua")
dofile(default_path.."/allores/Parvo_manganotremolite/Parvo_manganotremolite.lua")
dofile(default_path.."/allores/Parwanite/Parwanite.lua")
dofile(default_path.."/allores/Parwelite/Parwelite.lua")
dofile(default_path.."/allores/Pasavaite/Pasavaite.lua")
dofile(default_path.."/allores/Pascoite/Pascoite.lua")
dofile(default_path.."/allores/Paseroite/Paseroite.lua")
dofile(default_path.."/allores/Patronite/Patronite.lua")
dofile(default_path.."/allores/Pattersonite/Pattersonite.lua")
dofile(default_path.."/allores/Patynite/Patynite.lua")
dofile(default_path.."/allores/Pauflerite/Pauflerite.lua")
dofile(default_path.."/allores/Pauladamsite/Pauladamsite.lua")
dofile(default_path.."/allores/Paulgrothite/Paulgrothite.lua")
dofile(default_path.."/allores/Paulingite_Ca/Paulingite_Ca.lua")
dofile(default_path.."/allores/Paulingite_K/Paulingite_K.lua")
dofile(default_path.."/allores/Paulkellerite/Paulkellerite.lua")
dofile(default_path.."/allores/Paulkerrite/Paulkerrite.lua")
dofile(default_path.."/allores/Paulmooreite/Paulmooreite.lua")
dofile(default_path.."/allores/Pauloabibite/Pauloabibite.lua")
dofile(default_path.."/allores/Paulscherrerite/Paulscherrerite.lua")
dofile(default_path.."/allores/Pautovite/Pautovite.lua")
dofile(default_path.."/allores/Pavlovskyite/Pavlovskyite.lua")
dofile(default_path.."/allores/Pavonite/Pavonite.lua")
dofile(default_path.."/allores/Paxite/Paxite.lua")
dofile(default_path.."/allores/Pearceite/Pearceite.lua")
dofile(default_path.."/allores/Peatite_Y/Peatite_Y.lua")
dofile(default_path.."/allores/Pecoraite/Pecoraite.lua")
dofile(default_path.."/allores/Pectolite/Pectolite.lua")
dofile(default_path.."/allores/Pectolite_M2abc/Pectolite_M2abc.lua")
dofile(default_path.."/allores/Pedrizite/Pedrizite.lua")
dofile(default_path.."/allores/Peisleyite/Peisleyite.lua")
dofile(default_path.."/allores/Pekoite/Pekoite.lua")
dofile(default_path.."/allores/Pekovite/Pekovite.lua")
dofile(default_path.."/allores/Peligotite/Peligotite.lua")
dofile(default_path.."/allores/Pellouxite/Pellouxite.lua")
dofile(default_path.."/allores/Pellyite/Pellyite.lua")
dofile(default_path.."/allores/Penberthycroftite/Penberthycroftite.lua")
dofile(default_path.."/allores/Pendevilleite_Y/Pendevilleite_Y.lua")
dofile(default_path.."/allores/Penfieldite/Penfieldite.lua")
dofile(default_path.."/allores/Pengite/Pengite.lua")
dofile(default_path.."/allores/Penikisite/Penikisite.lua")
dofile(default_path.."/allores/Penkvilksite/Penkvilksite.lua")
dofile(default_path.."/allores/Pennantite/Pennantite.lua")
dofile(default_path.."/allores/Penobsquisite/Penobsquisite.lua")
dofile(default_path.."/allores/Penriceite/Penriceite.lua")
dofile(default_path.."/allores/Penroseite/Penroseite.lua")
dofile(default_path.."/allores/Pentagonite/Pentagonite.lua")
dofile(default_path.."/allores/Pentahydrite/Pentahydrite.lua")
dofile(default_path.."/allores/Pentahydroborite/Pentahydroborite.lua")
dofile(default_path.."/allores/Pentlandite/Pentlandite.lua")
dofile(default_path.."/allores/Penzhinite/Penzhinite.lua")
dofile(default_path.."/allores/Peprossiite_Ce/Peprossiite_Ce.lua")
dofile(default_path.."/allores/Perboeite_Ce/Perboeite_Ce.lua")
dofile(default_path.."/allores/Perboeite_La/Perboeite_La.lua")
dofile(default_path.."/allores/Percleveite_Ce/Percleveite_Ce.lua")
dofile(default_path.."/allores/Percleveite_La/Percleveite_La.lua")
dofile(default_path.."/allores/Peretaite/Peretaite.lua")
dofile(default_path.."/allores/Perettiite_Y/Perettiite_Y.lua")
dofile(default_path.."/allores/Perhamite/Perhamite.lua")
dofile(default_path.."/allores/Periclase/Periclase.lua")
dofile(default_path.."/allores/Perite/Perite.lua")
dofile(default_path.."/allores/Perkovaite/Perkovaite.lua")
dofile(default_path.."/allores/Perlialite/Perlialite.lua")
dofile(default_path.."/allores/Perloffite/Perloffite.lua")
dofile(default_path.."/allores/Permanganogrunerite/Permanganogrunerite.lua")
dofile(default_path.."/allores/Permingeatite/Permingeatite.lua")
dofile(default_path.."/allores/Perovskite/Perovskite.lua")
dofile(default_path.."/allores/Perraultite/Perraultite.lua")
dofile(default_path.."/allores/Perrierite_Ce/Perrierite_Ce.lua")
dofile(default_path.."/allores/Perrierite_La/Perrierite_La.lua")
dofile(default_path.."/allores/Perroudite/Perroudite.lua")
dofile(default_path.."/allores/Perryite/Perryite.lua")
dofile(default_path.."/allores/Pertlikite/Pertlikite.lua")
dofile(default_path.."/allores/Pertoldite/Pertoldite.lua")
dofile(default_path.."/allores/Pertsevite_F/Pertsevite_F.lua")
dofile(default_path.."/allores/Pertsevite_OH/Pertsevite_OH.lua")
dofile(default_path.."/allores/Petalite/Petalite.lua")
dofile(default_path.."/allores/Petarasite/Petarasite.lua")
dofile(default_path.."/allores/Petedunnite/Petedunnite.lua")
dofile(default_path.."/allores/Peterandresenite/Peterandresenite.lua")
dofile(default_path.."/allores/Peterbaylissite/Peterbaylissite.lua")
dofile(default_path.."/allores/Petermegawite/Petermegawite.lua")
dofile(default_path.."/allores/Petersenite_Ce/Petersenite_Ce.lua")
dofile(default_path.."/allores/Petersite_Ce/Petersite_Ce.lua")
dofile(default_path.."/allores/Petersite_La/Petersite_La.lua")
dofile(default_path.."/allores/Petersite_Y/Petersite_Y.lua")
dofile(default_path.."/allores/Petewilliamsite/Petewilliamsite.lua")
dofile(default_path.."/allores/Petitjeanite/Petitjeanite.lua")
dofile(default_path.."/allores/Petricekite/Petricekite.lua")
dofile(default_path.."/allores/Petrovicite/Petrovicite.lua")
dofile(default_path.."/allores/Petrovite/Petrovite.lua")
dofile(default_path.."/allores/Petrovskaite/Petrovskaite.lua")
dofile(default_path.."/allores/Petrukite/Petrukite.lua")
dofile(default_path.."/allores/Petscheckite/Petscheckite.lua")
dofile(default_path.."/allores/Petterdite/Petterdite.lua")
dofile(default_path.."/allores/Petzite/Petzite.lua")
dofile(default_path.."/allores/Pezzottaite/Pezzottaite.lua")
dofile(default_path.."/allores/Pharmacoalumite/Pharmacoalumite.lua")
dofile(default_path.."/allores/Pharmacolite/Pharmacolite.lua")
dofile(default_path.."/allores/Pharmacosiderite/Pharmacosiderite.lua")
dofile(default_path.."/allores/Pharmazincite/Pharmazincite.lua")
dofile(default_path.."/allores/Phaunouxite/Phaunouxite.lua")
dofile(default_path.."/allores/Phenakite/Phenakite.lua")
dofile(default_path.."/allores/Philipsbornite/Philipsbornite.lua")
dofile(default_path.."/allores/Philipsburgite/Philipsburgite.lua")
dofile(default_path.."/allores/Phillipsite_Ca/Phillipsite_Ca.lua")
dofile(default_path.."/allores/Phillipsite_K/Phillipsite_K.lua")
dofile(default_path.."/allores/Phillipsite_Na/Phillipsite_Na.lua")
dofile(default_path.."/allores/Philolithite/Philolithite.lua")
dofile(default_path.."/allores/Philoxenite/Philoxenite.lua")
dofile(default_path.."/allores/Philrothite/Philrothite.lua")
dofile(default_path.."/allores/Phlogopite/Phlogopite.lua")
dofile(default_path.."/allores/Phoenicochroite/Phoenicochroite.lua")
dofile(default_path.."/allores/Phosgenite/Phosgenite.lua")
dofile(default_path.."/allores/Phosinaite_Ce/Phosinaite_Ce.lua")
dofile(default_path.."/allores/Phosphammite/Phosphammite.lua")
dofile(default_path.."/allores/Phosphocyclite_Fe/Phosphocyclite_Fe.lua")
dofile(default_path.."/allores/Phosphocyclite_Ni/Phosphocyclite_Ni.lua")
dofile(default_path.."/allores/Phosphoellenbergerite/Phosphoellenbergerite.lua")
dofile(default_path.."/allores/Phosphoferrite/Phosphoferrite.lua")
dofile(default_path.."/allores/Phosphofibrite/Phosphofibrite.lua")
dofile(default_path.."/allores/Phosphogartrellite/Phosphogartrellite.lua")
dofile(default_path.."/allores/Phosphohedyphane/Phosphohedyphane.lua")
dofile(default_path.."/allores/Phosphoinnelite/Phosphoinnelite.lua")
dofile(default_path.."/allores/Phosphophyllite/Phosphophyllite.lua")
dofile(default_path.."/allores/Phosphorrosslerite/Phosphorrosslerite.lua")
dofile(default_path.."/allores/Phosphosiderite/Phosphosiderite.lua")
dofile(default_path.."/allores/Phosphovanadylite_Ba/Phosphovanadylite_Ba.lua")
dofile(default_path.."/allores/Phosphovanadylite_Ca/Phosphovanadylite_Ca.lua")
dofile(default_path.."/allores/Phosphowalpurgite/Phosphowalpurgite.lua")
dofile(default_path.."/allores/Phosphuranylite/Phosphuranylite.lua")
dofile(default_path.."/allores/Phoxite/Phoxite.lua")
dofile(default_path.."/allores/Phuralumite/Phuralumite.lua")
dofile(default_path.."/allores/Phurcalite/Phurcalite.lua")
dofile(default_path.."/allores/Phylloretine/Phylloretine.lua")
dofile(default_path.."/allores/Phyllotungstite/Phyllotungstite.lua")
dofile(default_path.."/allores/Picaite/Picaite.lua")
dofile(default_path.."/allores/Piccoliite/Piccoliite.lua")
dofile(default_path.."/allores/Pickeringite/Pickeringite.lua")
dofile(default_path.."/allores/Picotpaulite/Picotpaulite.lua")
dofile(default_path.."/allores/Picromerite/Picromerite.lua")
dofile(default_path.."/allores/Picropharmacolite/Picropharmacolite.lua")
dofile(default_path.."/allores/Pieczkaite/Pieczkaite.lua")
dofile(default_path.."/allores/Piemontite/Piemontite.lua")
dofile(default_path.."/allores/Piemontite_Pb/Piemontite_Pb.lua")
dofile(default_path.."/allores/Piemontite_Sr/Piemontite_Sr.lua")
dofile(default_path.."/allores/Piergorite_Ce/Piergorite_Ce.lua")
dofile(default_path.."/allores/Pierrotite/Pierrotite.lua")
dofile(default_path.."/allores/Pigeonite/Pigeonite.lua")
dofile(default_path.."/allores/Pigotite/Pigotite.lua")
dofile(default_path.."/allores/Pilawite_Y/Pilawite_Y.lua")
dofile(default_path.."/allores/Pilipenkoite/Pilipenkoite.lua")
dofile(default_path.."/allores/Pillaite/Pillaite.lua")
dofile(default_path.."/allores/Pilsenite/Pilsenite.lua")
dofile(default_path.."/allores/Pinakiolite/Pinakiolite.lua")
dofile(default_path.."/allores/Pinalite/Pinalite.lua")
dofile(default_path.."/allores/Pinchite/Pinchite.lua")
dofile(default_path.."/allores/Pingguite/Pingguite.lua")
dofile(default_path.."/allores/Pinnoite/Pinnoite.lua")
dofile(default_path.."/allores/Pintadoite/Pintadoite.lua")
dofile(default_path.."/allores/Piretite/Piretite.lua")
dofile(default_path.."/allores/Pirquitasite/Pirquitasite.lua")
dofile(default_path.."/allores/Pirssonite/Pirssonite.lua")
dofile(default_path.."/allores/Pisekite_Y/Pisekite_Y.lua")
dofile(default_path.."/allores/Pitiglianoite/Pitiglianoite.lua")
dofile(default_path.."/allores/Pitticite/Pitticite.lua")
dofile(default_path.."/allores/Pittongite/Pittongite.lua")
dofile(default_path.."/allores/Piypite/Piypite.lua")
dofile(default_path.."/allores/Pizgrischite/Pizgrischite.lua")
dofile(default_path.."/allores/Plagionite/Plagionite.lua")
dofile(default_path.."/allores/Plancheite/Plancheite.lua")
dofile(default_path.."/allores/Planerite/Planerite.lua")
dofile(default_path.."/allores/Plasilite/Plasilite.lua")
dofile(default_path.."/allores/Platarsite/Platarsite.lua")
dofile(default_path.."/allores/Platinum/Platinum.lua")
dofile(default_path.."/allores/Plattnerite/Plattnerite.lua")
dofile(default_path.."/allores/Plavnoite/Plavnoite.lua")
dofile(default_path.."/allores/Playfairite/Playfairite.lua")
dofile(default_path.."/allores/Pleysteinite/Pleysteinite.lua")
dofile(default_path.."/allores/Plimerite/Plimerite.lua")
dofile(default_path.."/allores/Pliniusite/Pliniusite.lua")
dofile(default_path.."/allores/Plombierite/Plombierite.lua")
dofile(default_path.."/allores/Plumboagardite/Plumboagardite.lua")
dofile(default_path.."/allores/Plumbobetafite/Plumbobetafite.lua")
dofile(default_path.."/allores/Plumboferrite/Plumboferrite.lua")
dofile(default_path.."/allores/Plumbogummite/Plumbogummite.lua")
dofile(default_path.."/allores/Plumbojarosite/Plumbojarosite.lua")
dofile(default_path.."/allores/Plumbomicrolite/Plumbomicrolite.lua")
dofile(default_path.."/allores/Plumbonacrite/Plumbonacrite.lua")
dofile(default_path.."/allores/Plumbopalladinite/Plumbopalladinite.lua")
dofile(default_path.."/allores/Plumboperloffite/Plumboperloffite.lua")
dofile(default_path.."/allores/Plumbopharmacosiderite/Plumbopharmacosiderite.lua")
dofile(default_path.."/allores/Plumbophyllite/Plumbophyllite.lua")
dofile(default_path.."/allores/Plumbopyrochlore/Plumbopyrochlore.lua")
dofile(default_path.."/allores/Plumboselite/Plumboselite.lua")
dofile(default_path.."/allores/Plumbotellurite/Plumbotellurite.lua")
dofile(default_path.."/allores/Plumbotsumite/Plumbotsumite.lua")
dofile(default_path.."/allores/Plumosite/Plumosite.lua")
dofile(default_path.."/allores/Podlesnoite/Podlesnoite.lua")
dofile(default_path.."/allores/Poellmannite/Poellmannite.lua")
dofile(default_path.."/allores/Pohlite/Pohlite.lua")
dofile(default_path.."/allores/Poirierite/Poirierite.lua")
dofile(default_path.."/allores/Poitevinite/Poitevinite.lua")
dofile(default_path.."/allores/Pokhodyashinite/Pokhodyashinite.lua")
dofile(default_path.."/allores/Pokrovskite/Pokrovskite.lua")
dofile(default_path.."/allores/Polarite/Polarite.lua")
dofile(default_path.."/allores/Poldervaartite/Poldervaartite.lua")
dofile(default_path.."/allores/Polekhovskyite/Polekhovskyite.lua")
dofile(default_path.."/allores/Polezhaevaite_Ce/Polezhaevaite_Ce.lua")
dofile(default_path.."/allores/Polhemusite/Polhemusite.lua")
dofile(default_path.."/allores/Polkanovite/Polkanovite.lua")
dofile(default_path.."/allores/Polkovicite/Polkovicite.lua")
dofile(default_path.."/allores/Polloneite/Polloneite.lua")
dofile(default_path.."/allores/Pollucite/Pollucite.lua")
dofile(default_path.."/allores/Polyakovite_Ce/Polyakovite_Ce.lua")
dofile(default_path.."/allores/Polyarsite/Polyarsite.lua")
dofile(default_path.."/allores/Polybasite/Polybasite.lua")
dofile(default_path.."/allores/Polycrase_Y/Polycrase_Y.lua")
dofile(default_path.."/allores/Polydymite/Polydymite.lua")
dofile(default_path.."/allores/Polyhalite/Polyhalite.lua")
dofile(default_path.."/allores/Polylithionite/Polylithionite.lua")
dofile(default_path.."/allores/Polyphite/Polyphite.lua")
dofile(default_path.."/allores/Pomite/Pomite.lua")
dofile(default_path.."/allores/Ponomarevite/Ponomarevite.lua")
dofile(default_path.."/allores/Popovite/Popovite.lua")
dofile(default_path.."/allores/Poppiite/Poppiite.lua")
dofile(default_path.."/allores/Popugaevaite/Popugaevaite.lua")
dofile(default_path.."/allores/Portlandite/Portlandite.lua")
dofile(default_path.."/allores/Posepnyite/Posepnyite.lua")
dofile(default_path.."/allores/Posnjakite/Posnjakite.lua")
dofile(default_path.."/allores/Postite/Postite.lua")
dofile(default_path.."/allores/Potarite/Potarite.lua")
dofile(default_path.."/allores/Potassic_arfvedsonite/Potassic_arfvedsonite.lua")
dofile(default_path.."/allores/Potassic_chloro_hastingsite/Potassic_chloro_hastingsite.lua")
dofile(default_path.."/allores/Potassic_chloro_pargasite/Potassic_chloro_pargasite.lua")
dofile(default_path.."/allores/Potassic_ferri_leakeite/Potassic_ferri_leakeite.lua")
dofile(default_path.."/allores/Potassic_ferro_ferri_sadanagaite/Potassic_ferro_ferri_sadanagaite.lua")
dofile(default_path.."/allores/Potassic_ferro_ferri_taramite/Potassic_ferro_ferri_taramite.lua")
dofile(default_path.."/allores/Potassic_ferro_pargasite/Potassic_ferro_pargasite.lua")
dofile(default_path.."/allores/Potassic_ferro_sadanagaite/Potassic_ferro_sadanagaite.lua")
dofile(default_path.."/allores/Potassic_ferro_taramite/Potassic_ferro_taramite.lua")
dofile(default_path.."/allores/Potassic_fluoro_hastingsite/Potassic_fluoro_hastingsite.lua")
dofile(default_path.."/allores/Potassic_fluoro_pargasite/Potassic_fluoro_pargasite.lua")
dofile(default_path.."/allores/Potassic_fluoro_richterite/Potassic_fluoro_richterite.lua")
dofile(default_path.."/allores/Potassic_hastingsite/Potassic_hastingsite.lua")
dofile(default_path.."/allores/Potassic_jeanlouisite/Potassic_jeanlouisite.lua")
dofile(default_path.."/allores/Potassic_magnesio_arfvedsonite/Potassic_magnesio_arfvedsonite.lua")
dofile(default_path.."/allores/Potassic_magnesio_fluoro_arfvedsonite/Potassic_magnesio_fluoro_arfvedsonite.lua")
dofile(default_path.."/allores/Potassic_magnesio_hastingsite/Potassic_magnesio_hastingsite.lua")
dofile(default_path.."/allores/Potassic_mangani_leakeite/Potassic_mangani_leakeite.lua")
dofile(default_path.."/allores/Potassic_pargasite/Potassic_pargasite.lua")
dofile(default_path.."/allores/Potassic_richterite/Potassic_richterite.lua")
dofile(default_path.."/allores/Potassic_sadanagaite/Potassic_sadanagaite.lua")
dofile(default_path.."/allores/Potassiccarpholite/Potassiccarpholite.lua")
dofile(default_path.."/allores/Potassichastingsite/Potassichastingsite.lua")
dofile(default_path.."/allores/Potassicmagnesio_arfvedsonite/Potassicmagnesio_arfvedsonite.lua")
dofile(default_path.."/allores/Potassicrichterite/Potassicrichterite.lua")
dofile(default_path.."/allores/Potosiite/Potosiite.lua")
dofile(default_path.."/allores/Pottsite/Pottsite.lua")
dofile(default_path.."/allores/Poubaite/Poubaite.lua")
dofile(default_path.."/allores/Poudretteite/Poudretteite.lua")
dofile(default_path.."/allores/Poughite/Poughite.lua")
dofile(default_path.."/allores/Povondraite/Povondraite.lua")
dofile(default_path.."/allores/Powellite/Powellite.lua")
dofile(default_path.."/allores/Poyarkovite/Poyarkovite.lua")
dofile(default_path.."/allores/Pracharite/Pracharite.lua")
dofile(default_path.."/allores/Pradetite/Pradetite.lua")
dofile(default_path.."/allores/Prehnite/Prehnite.lua")
dofile(default_path.."/allores/Preisingerite/Preisingerite.lua")
dofile(default_path.."/allores/Preiswerkite/Preiswerkite.lua")
dofile(default_path.."/allores/Preobrazhenskite/Preobrazhenskite.lua")
dofile(default_path.."/allores/Pretulite/Pretulite.lua")
dofile(default_path.."/allores/Prewittite/Prewittite.lua")
dofile(default_path.."/allores/Pribramite/Pribramite.lua")
dofile(default_path.."/allores/Priceite/Priceite.lua")
dofile(default_path.."/allores/Priderite/Priderite.lua")
dofile(default_path.."/allores/Princivalleite/Princivalleite.lua")
dofile(default_path.."/allores/Pringleite/Pringleite.lua")
dofile(default_path.."/allores/Priscillagrewite_Y/Priscillagrewite_Y.lua")
dofile(default_path.."/allores/Prismatine/Prismatine.lua")
dofile(default_path.."/allores/Probertite/Probertite.lua")
dofile(default_path.."/allores/Proshchenkoite_Y/Proshchenkoite_Y.lua")
dofile(default_path.."/allores/Prosopite/Prosopite.lua")
dofile(default_path.."/allores/Prosperite/Prosperite.lua")
dofile(default_path.."/allores/Protasite/Protasite.lua")
dofile(default_path.."/allores/Proto_anthophyllite/Proto_anthophyllite.lua")
dofile(default_path.."/allores/Proto_ferro_anthophyllite/Proto_ferro_anthophyllite.lua")
dofile(default_path.."/allores/Proto_ferro_suenoite/Proto_ferro_suenoite.lua")
dofile(default_path.."/allores/Protocaseyite/Protocaseyite.lua")
dofile(default_path.."/allores/Protochabourneite/Protochabourneite.lua")
dofile(default_path.."/allores/Protoenstatite/Protoenstatite.lua")
dofile(default_path.."/allores/Protojoseite/Protojoseite.lua")
dofile(default_path.."/allores/Proudite/Proudite.lua")
dofile(default_path.."/allores/Proustite/Proustite.lua")
dofile(default_path.."/allores/Proxidecagonite/Proxidecagonite.lua")
dofile(default_path.."/allores/Przhevalskite/Przhevalskite.lua")
dofile(default_path.."/allores/Pseudoboleite/Pseudoboleite.lua")
dofile(default_path.."/allores/Pseudobrookite/Pseudobrookite.lua")
dofile(default_path.."/allores/Pseudocotunnite/Pseudocotunnite.lua")
dofile(default_path.."/allores/Pseudodickthomssenite/Pseudodickthomssenite.lua")
dofile(default_path.."/allores/Pseudograndreefite/Pseudograndreefite.lua")
dofile(default_path.."/allores/Pseudojohannite/Pseudojohannite.lua")
dofile(default_path.."/allores/Pseudolaueite/Pseudolaueite.lua")
dofile(default_path.."/allores/Pseudolyonsite/Pseudolyonsite.lua")
dofile(default_path.."/allores/Pseudomalachite/Pseudomalachite.lua")
dofile(default_path.."/allores/Pseudomarkeyite/Pseudomarkeyite.lua")
dofile(default_path.."/allores/Pseudomeisserite_NH4/Pseudomeisserite_NH4.lua")
dofile(default_path.."/allores/Pseudomertieite/Pseudomertieite.lua")
dofile(default_path.."/allores/Pseudopomite/Pseudopomite.lua")
dofile(default_path.."/allores/Pseudorutile/Pseudorutile.lua")
dofile(default_path.."/allores/Pseudosinhalite/Pseudosinhalite.lua")
dofile(default_path.."/allores/Pseudowollastonite/Pseudowollastonite.lua")
dofile(default_path.."/allores/Pucherite/Pucherite.lua")
dofile(default_path.."/allores/Pumpellyite_Al/Pumpellyite_Al.lua")
dofile(default_path.."/allores/Pumpellyite_Fe2/Pumpellyite_Fe2.lua")
dofile(default_path.."/allores/Pumpellyite_Fe3/Pumpellyite_Fe3.lua")
dofile(default_path.."/allores/Pumpellyite_Mg/Pumpellyite_Mg.lua")
dofile(default_path.."/allores/Pumpellyite_Mn2/Pumpellyite_Mn2.lua")
dofile(default_path.."/allores/Puninite/Puninite.lua")
dofile(default_path.."/allores/Punkaruaivite/Punkaruaivite.lua")
dofile(default_path.."/allores/Purpurite/Purpurite.lua")
dofile(default_path.."/allores/Pushcharovskite/Pushcharovskite.lua")
dofile(default_path.."/allores/Putnisite/Putnisite.lua")
dofile(default_path.."/allores/Putoranite/Putoranite.lua")
dofile(default_path.."/allores/Puttapaite/Puttapaite.lua")
dofile(default_path.."/allores/Putzite/Putzite.lua")
dofile(default_path.."/allores/Pyatenkoite_Y/Pyatenkoite_Y.lua")
dofile(default_path.."/allores/Pyracmonite/Pyracmonite.lua")
dofile(default_path.."/allores/Pyradoketosite/Pyradoketosite.lua")
dofile(default_path.."/allores/Pyrargyrite/Pyrargyrite.lua")
dofile(default_path.."/allores/Pyrite/Pyrite.lua")
dofile(default_path.."/allores/Pyroaurite/Pyroaurite.lua")
dofile(default_path.."/allores/Pyrobelonite/Pyrobelonite.lua")
dofile(default_path.."/allores/Pyrochlore/Pyrochlore.lua")
dofile(default_path.."/allores/Pyrochroite/Pyrochroite.lua")
dofile(default_path.."/allores/Pyrocoproite/Pyrocoproite.lua")
dofile(default_path.."/allores/Pyrolusite/Pyrolusite.lua")
dofile(default_path.."/allores/Pyromorphite/Pyromorphite.lua")
dofile(default_path.."/allores/Pyrope/Pyrope.lua")
dofile(default_path.."/allores/Pyrophanite/Pyrophanite.lua")
dofile(default_path.."/allores/Pyrophosphite/Pyrophosphite.lua")
dofile(default_path.."/allores/Pyrophyllite/Pyrophyllite.lua")
dofile(default_path.."/allores/Pyrosmalite_Fe/Pyrosmalite_Fe.lua")
dofile(default_path.."/allores/Pyrosmalite_Mn/Pyrosmalite_Mn.lua")
dofile(default_path.."/allores/Pyrostilpnite/Pyrostilpnite.lua")
dofile(default_path.."/allores/Pyroxferroite/Pyroxferroite.lua")
dofile(default_path.."/allores/Pyroxmangite/Pyroxmangite.lua")
dofile(default_path.."/allores/Pyrrhotite/Pyrrhotite.lua")
dofile(default_path.."/allores/Qandilite/Qandilite.lua")
dofile(default_path.."/allores/Qaqarssukite_Ce/Qaqarssukite_Ce.lua")
dofile(default_path.."/allores/Qatranaite/Qatranaite.lua")
dofile(default_path.."/allores/Qeltite/Qeltite.lua")
dofile(default_path.."/allores/Qilianshanite/Qilianshanite.lua")
dofile(default_path.."/allores/Qingheiite/Qingheiite.lua")
dofile(default_path.."/allores/Qingsongite/Qingsongite.lua")
dofile(default_path.."/allores/Qitianlingite/Qitianlingite.lua")
dofile(default_path.."/allores/Quadratite/Quadratite.lua")
dofile(default_path.."/allores/Quadridavyne/Quadridavyne.lua")
dofile(default_path.."/allores/Quadruphite/Quadruphite.lua")
dofile(default_path.."/allores/Quartz/Quartz.lua")
dofile(default_path.."/allores/Quatrandorite/Quatrandorite.lua")
dofile(default_path.."/allores/Queitite/Queitite.lua")
dofile(default_path.."/allores/Quenselite/Quenselite.lua")
dofile(default_path.."/allores/Quenstedtite/Quenstedtite.lua")
dofile(default_path.."/allores/Quetzalcoatlite/Quetzalcoatlite.lua")
dofile(default_path.."/allores/Quijarroite/Quijarroite.lua")
dofile(default_path.."/allores/Quintinite/Quintinite.lua")
dofile(default_path.."/allores/Quintinite_3T/Quintinite_3T.lua")
dofile(default_path.."/allores/Qusongite/Qusongite.lua")
dofile(default_path.."/allores/Raadeite/Raadeite.lua")
dofile(default_path.."/allores/Rabbittite/Rabbittite.lua")
dofile(default_path.."/allores/Rabejacite/Rabejacite.lua")
dofile(default_path.."/allores/Raberite/Raberite.lua")
dofile(default_path.."/allores/Radekskodaite_Ce/Radekskodaite_Ce.lua")
dofile(default_path.."/allores/Radekskodaite_La/Radekskodaite_La.lua")
dofile(default_path.."/allores/Radhakrishnaite/Radhakrishnaite.lua")
dofile(default_path.."/allores/Radovanite/Radovanite.lua")
dofile(default_path.."/allores/Radtkeite/Radtkeite.lua")
dofile(default_path.."/allores/Radvaniceite/Radvaniceite.lua")
dofile(default_path.."/allores/Raguinite/Raguinite.lua")
dofile(default_path.."/allores/Raisaite/Raisaite.lua")
dofile(default_path.."/allores/Raite/Raite.lua")
dofile(default_path.."/allores/Rajite/Rajite.lua")
dofile(default_path.."/allores/Rakovanite/Rakovanite.lua")
dofile(default_path.."/allores/Ralphcannonite/Ralphcannonite.lua")
dofile(default_path.."/allores/Ramaccioniite/Ramaccioniite.lua")
dofile(default_path.."/allores/Ramanite_Cs/Ramanite_Cs.lua")
dofile(default_path.."/allores/Ramanite_Rb/Ramanite_Rb.lua")
dofile(default_path.."/allores/Ramazzoite/Ramazzoite.lua")
dofile(default_path.."/allores/Rambergite/Rambergite.lua")
dofile(default_path.."/allores/Ramdohrite/Ramdohrite.lua")
dofile(default_path.."/allores/Rameauite/Rameauite.lua")
dofile(default_path.."/allores/Ramikite_Y/Ramikite_Y.lua")
dofile(default_path.."/allores/Rammelsbergite/Rammelsbergite.lua")
dofile(default_path.."/allores/Ramosite/Ramosite.lua")
dofile(default_path.."/allores/Ramsbeckite/Ramsbeckite.lua")
dofile(default_path.."/allores/Ramsdellite/Ramsdellite.lua")
dofile(default_path.."/allores/Rancieite/Rancieite.lua")
dofile(default_path.."/allores/Rankachite/Rankachite.lua")
dofile(default_path.."/allores/Rankamaite/Rankamaite.lua")
dofile(default_path.."/allores/Rankinite/Rankinite.lua")
dofile(default_path.."/allores/Ransomite/Ransomite.lua")
dofile(default_path.."/allores/Ranunculite/Ranunculite.lua")
dofile(default_path.."/allores/Rapidcreekite/Rapidcreekite.lua")
dofile(default_path.."/allores/Rappoldite/Rappoldite.lua")
dofile(default_path.."/allores/Raslakite/Raslakite.lua")
dofile(default_path.."/allores/Raspite/Raspite.lua")
dofile(default_path.."/allores/Rastsvetaevite/Rastsvetaevite.lua")
dofile(default_path.."/allores/Rasvumite/Rasvumite.lua")
dofile(default_path.."/allores/Rathite/Rathite.lua")
dofile(default_path.."/allores/Rathite_IV/Rathite_IV.lua")
dofile(default_path.."/allores/Rauchite/Rauchite.lua")
dofile(default_path.."/allores/Rauenthalite/Rauenthalite.lua")
dofile(default_path.."/allores/Rauvite/Rauvite.lua")
dofile(default_path.."/allores/Ravatite/Ravatite.lua")
dofile(default_path.."/allores/Raydemarkite/Raydemarkite.lua")
dofile(default_path.."/allores/Raygrantite/Raygrantite.lua")
dofile(default_path.."/allores/Rayite/Rayite.lua")
dofile(default_path.."/allores/Realgar/Realgar.lua")
dofile(default_path.."/allores/Reaphookhillite/Reaphookhillite.lua")
dofile(default_path.."/allores/Rebulite/Rebulite.lua")
dofile(default_path.."/allores/Rectorite/Rectorite.lua")
dofile(default_path.."/allores/Redcanyonite/Redcanyonite.lua")
dofile(default_path.."/allores/Reddingite/Reddingite.lua")
dofile(default_path.."/allores/Redgillite/Redgillite.lua")
dofile(default_path.."/allores/Redingtonite/Redingtonite.lua")
dofile(default_path.."/allores/Redledgeite/Redledgeite.lua")
dofile(default_path.."/allores/Redmondite/Redmondite.lua")
dofile(default_path.."/allores/Redondite/Redondite.lua")
dofile(default_path.."/allores/Reederite_Y/Reederite_Y.lua")
dofile(default_path.."/allores/Reedmergnerite/Reedmergnerite.lua")
dofile(default_path.."/allores/Reevesite/Reevesite.lua")
dofile(default_path.."/allores/Refikite/Refikite.lua")
dofile(default_path.."/allores/Reichenbachite/Reichenbachite.lua")
dofile(default_path.."/allores/Reidite/Reidite.lua")
dofile(default_path.."/allores/Reinerite/Reinerite.lua")
dofile(default_path.."/allores/Reinhardbraunsite/Reinhardbraunsite.lua")
dofile(default_path.."/allores/Relianceite_K/Relianceite_K.lua")
dofile(default_path.."/allores/Remondite_Ce/Remondite_Ce.lua")
dofile(default_path.."/allores/Remondite_La/Remondite_La.lua")
dofile(default_path.."/allores/Renardite/Renardite.lua")
dofile(default_path.."/allores/Rengeite/Rengeite.lua")
dofile(default_path.."/allores/Renierite/Renierite.lua")
dofile(default_path.."/allores/Reppiaite/Reppiaite.lua")
dofile(default_path.."/allores/Retgersite/Retgersite.lua")
dofile(default_path.."/allores/Retzian_Ce/Retzian_Ce.lua")
dofile(default_path.."/allores/Retzian_La/Retzian_La.lua")
dofile(default_path.."/allores/Retzian_Nd/Retzian_Nd.lua")
dofile(default_path.."/allores/Revdite/Revdite.lua")
dofile(default_path.."/allores/Reyerite/Reyerite.lua")
dofile(default_path.."/allores/Reynoldsite/Reynoldsite.lua")
dofile(default_path.."/allores/Reznitskyite/Reznitskyite.lua")
dofile(default_path.."/allores/Rhabdoborite_Mo/Rhabdoborite_Mo.lua")
dofile(default_path.."/allores/Rhabdoborite_V/Rhabdoborite_V.lua")
dofile(default_path.."/allores/Rhabdoborite_W/Rhabdoborite_W.lua")
dofile(default_path.."/allores/Rhabdophane_Ce/Rhabdophane_Ce.lua")
dofile(default_path.."/allores/Rhabdophane_La/Rhabdophane_La.lua")
dofile(default_path.."/allores/Rhabdophane_Nd/Rhabdophane_Nd.lua")
dofile(default_path.."/allores/Rhabdophane_Y/Rhabdophane_Y.lua")
dofile(default_path.."/allores/Rheniite/Rheniite.lua")
dofile(default_path.."/allores/Rhodarsenide/Rhodarsenide.lua")
dofile(default_path.."/allores/Rhodesite/Rhodesite.lua")
dofile(default_path.."/allores/Rhodium/Rhodium.lua")
dofile(default_path.."/allores/Rhodizite/Rhodizite.lua")
dofile(default_path.."/allores/Rhodochrosite/Rhodochrosite.lua")
dofile(default_path.."/allores/Rhodonite/Rhodonite.lua")
dofile(default_path.."/allores/Rhodostannite/Rhodostannite.lua")
dofile(default_path.."/allores/Rhodplumsite/Rhodplumsite.lua")
dofile(default_path.."/allores/Rhomboclase/Rhomboclase.lua")
dofile(default_path.."/allores/Rhonite/Rhonite.lua")
dofile(default_path.."/allores/Ribbeite/Ribbeite.lua")
dofile(default_path.."/allores/Richardsite/Richardsite.lua")
dofile(default_path.."/allores/Richardsollyite/Richardsollyite.lua")
dofile(default_path.."/allores/Richellite/Richellite.lua")
dofile(default_path.."/allores/Richelsdorfite/Richelsdorfite.lua")
dofile(default_path.."/allores/Richetite/Richetite.lua")
dofile(default_path.."/allores/Richterite/Richterite.lua")
dofile(default_path.."/allores/Rickardite/Rickardite.lua")
dofile(default_path.."/allores/Rickturnerite/Rickturnerite.lua")
dofile(default_path.."/allores/Riebeckite/Riebeckite.lua")
dofile(default_path.."/allores/Riesite/Riesite.lua")
dofile(default_path.."/allores/Rietveldite/Rietveldite.lua")
dofile(default_path.."/allores/Rilandite/Rilandite.lua")
dofile(default_path.."/allores/Rimkorolgite/Rimkorolgite.lua")
dofile(default_path.."/allores/Ringwoodite/Ringwoodite.lua")
dofile(default_path.."/allores/Rinkite_Ce/Rinkite_Ce.lua")
dofile(default_path.."/allores/Rinkite_Y/Rinkite_Y.lua")
dofile(default_path.."/allores/Rinmanite/Rinmanite.lua")
dofile(default_path.."/allores/Rinneite/Rinneite.lua")
dofile(default_path.."/allores/Riomarinaite/Riomarinaite.lua")
dofile(default_path.."/allores/Riosecoite/Riosecoite.lua")
dofile(default_path.."/allores/Riotintoite/Riotintoite.lua")
dofile(default_path.."/allores/Rippite/Rippite.lua")
dofile(default_path.."/allores/Rittmannite/Rittmannite.lua")
dofile(default_path.."/allores/Rivadavite/Rivadavite.lua")
dofile(default_path.."/allores/Riversideite/Riversideite.lua")
dofile(default_path.."/allores/Roaldite/Roaldite.lua")
dofile(default_path.."/allores/Robertsite/Robertsite.lua")
dofile(default_path.."/allores/Robinsonite/Robinsonite.lua")
dofile(default_path.."/allores/Rockbridgeite/Rockbridgeite.lua")
dofile(default_path.."/allores/Rodalquilarite/Rodalquilarite.lua")
dofile(default_path.."/allores/Rodolicoite/Rodolicoite.lua")
dofile(default_path.."/allores/Roeblingite/Roeblingite.lua")
dofile(default_path.."/allores/Roedderite/Roedderite.lua")
dofile(default_path.."/allores/Rogermitchellite/Rogermitchellite.lua")
dofile(default_path.."/allores/Roggianite/Roggianite.lua")
dofile(default_path.."/allores/Rohaite/Rohaite.lua")
dofile(default_path.."/allores/Rokuhnite/Rokuhnite.lua")
dofile(default_path.."/allores/Rollandite/Rollandite.lua")
dofile(default_path.."/allores/Romanechite/Romanechite.lua")
dofile(default_path.."/allores/Romanite/Romanite.lua")
dofile(default_path.."/allores/Romanorlovite/Romanorlovite.lua")
dofile(default_path.."/allores/Romarchite/Romarchite.lua")
dofile(default_path.."/allores/Romeite/Romeite.lua")
dofile(default_path.."/allores/Romerite/Romerite.lua")
dofile(default_path.."/allores/Rondorfite/Rondorfite.lua")
dofile(default_path.."/allores/Rongibbsite/Rongibbsite.lua")
dofile(default_path.."/allores/Ronneburgite/Ronneburgite.lua")
dofile(default_path.."/allores/Rontgenite_Ce/Rontgenite_Ce.lua")
dofile(default_path.."/allores/Rooseveltite/Rooseveltite.lua")
dofile(default_path.."/allores/Roquesite/Roquesite.lua")
dofile(default_path.."/allores/Rorisite/Rorisite.lua")
dofile(default_path.."/allores/Rosasite/Rosasite.lua")
dofile(default_path.."/allores/Roscherite/Roscherite.lua")
dofile(default_path.."/allores/Roscoelite/Roscoelite.lua")
dofile(default_path.."/allores/Roselite/Roselite.lua")
dofile(default_path.."/allores/Rosemaryite/Rosemaryite.lua")
dofile(default_path.."/allores/Rosenbergite/Rosenbergite.lua")
dofile(default_path.."/allores/Rosenbuschite/Rosenbuschite.lua")
dofile(default_path.."/allores/Rosenhahnite/Rosenhahnite.lua")
dofile(default_path.."/allores/Roshchinite/Roshchinite.lua")
dofile(default_path.."/allores/Rosiaite/Rosiaite.lua")
dofile(default_path.."/allores/Rosickyite/Rosickyite.lua")
dofile(default_path.."/allores/Rosieresite/Rosieresite.lua")
dofile(default_path.."/allores/Rossiantonite/Rossiantonite.lua")
dofile(default_path.."/allores/Rossite/Rossite.lua")
dofile(default_path.."/allores/Rosslerite/Rosslerite.lua")
dofile(default_path.."/allores/Rossmanite/Rossmanite.lua")
dofile(default_path.."/allores/Rossovskyite/Rossovskyite.lua")
dofile(default_path.."/allores/Rostite/Rostite.lua")
dofile(default_path.."/allores/Roterbarite/Roterbarite.lua")
dofile(default_path.."/allores/Rouaite/Rouaite.lua")
dofile(default_path.."/allores/Roubaultite/Roubaultite.lua")
dofile(default_path.."/allores/Roumaite/Roumaite.lua")
dofile(default_path.."/allores/Rouseite/Rouseite.lua")
dofile(default_path.."/allores/Routhierite/Routhierite.lua")
dofile(default_path.."/allores/Rouvilleite/Rouvilleite.lua")
dofile(default_path.."/allores/Rouxelite/Rouxelite.lua")
dofile(default_path.."/allores/Roweite/Roweite.lua")
dofile(default_path.."/allores/Rowlandite_Y/Rowlandite_Y.lua")
dofile(default_path.."/allores/Rowleyite/Rowleyite.lua")
dofile(default_path.."/allores/Roxbyite/Roxbyite.lua")
dofile(default_path.."/allores/Roymillerite/Roymillerite.lua")
dofile(default_path.."/allores/Rozenite/Rozenite.lua")
dofile(default_path.."/allores/Rozhdestvenskayaite_Zn/Rozhdestvenskayaite_Zn.lua")
dofile(default_path.."/allores/Rruffite/Rruffite.lua")
dofile(default_path.."/allores/Ruarsite/Ruarsite.lua")
dofile(default_path.."/allores/Rubicline/Rubicline.lua")
dofile(default_path.."/allores/Rubinite/Rubinite.lua")
dofile(default_path.."/allores/Rucklidgeite/Rucklidgeite.lua")
dofile(default_path.."/allores/Rudabanyaite/Rudabanyaite.lua")
dofile(default_path.."/allores/Rudashevskyite/Rudashevskyite.lua")
dofile(default_path.."/allores/Rudenkoite/Rudenkoite.lua")
dofile(default_path.."/allores/Rudlingerite/Rudlingerite.lua")
dofile(default_path.."/allores/Rudolfhermannite/Rudolfhermannite.lua")
dofile(default_path.."/allores/Ruifrancoite/Ruifrancoite.lua")
dofile(default_path.."/allores/Ruitenbergite/Ruitenbergite.lua")
dofile(default_path.."/allores/Ruizhongite/Ruizhongite.lua")
dofile(default_path.."/allores/Ruizite/Ruizite.lua")
dofile(default_path.."/allores/Rumoiite/Rumoiite.lua")
dofile(default_path.."/allores/Rumseyite/Rumseyite.lua")
dofile(default_path.."/allores/Rusakovite/Rusakovite.lua")
dofile(default_path.."/allores/Rusinovite/Rusinovite.lua")
dofile(default_path.."/allores/Russellite/Russellite.lua")
dofile(default_path.."/allores/Russoite/Russoite.lua")
dofile(default_path.."/allores/Rustenburgite/Rustenburgite.lua")
dofile(default_path.."/allores/Rustumite/Rustumite.lua")
dofile(default_path.."/allores/Ruthenarsenite/Ruthenarsenite.lua")
dofile(default_path.."/allores/Rutheniridosmine/Rutheniridosmine.lua")
dofile(default_path.."/allores/Ruthenium/Ruthenium.lua")
dofile(default_path.."/allores/Rutherfordine/Rutherfordine.lua")
dofile(default_path.."/allores/Rutile/Rutile.lua")
dofile(default_path.."/allores/Ryabchikovite/Ryabchikovite.lua")
dofile(default_path.."/allores/Rynersonite/Rynersonite.lua")
dofile(default_path.."/allores/SO4_hydrotalcite_11A/SO4_hydrotalcite_11A.lua")
dofile(default_path.."/allores/SO4_hydrotalcite_8_8A/SO4_hydrotalcite_8_8A.lua")
dofile(default_path.."/allores/Saamite/Saamite.lua")
dofile(default_path.."/allores/Sabatierite/Sabatierite.lua")
dofile(default_path.."/allores/Sabelliite/Sabelliite.lua")
dofile(default_path.."/allores/Sabieite/Sabieite.lua")
dofile(default_path.."/allores/Sabinaite/Sabinaite.lua")
dofile(default_path.."/allores/Sabugalite/Sabugalite.lua")
dofile(default_path.."/allores/Saccoite/Saccoite.lua")
dofile(default_path.."/allores/Sacrofanite/Sacrofanite.lua")
dofile(default_path.."/allores/Sadanagaite/Sadanagaite.lua")
dofile(default_path.."/allores/Saddlebackite/Saddlebackite.lua")
dofile(default_path.."/allores/Safflorite/Safflorite.lua")
dofile(default_path.."/allores/Sahamalite_Ce/Sahamalite_Ce.lua")
dofile(default_path.."/allores/Sahlinite/Sahlinite.lua")
dofile(default_path.."/allores/Sailaufite/Sailaufite.lua")
dofile(default_path.."/allores/Sainfeldite/Sainfeldite.lua")
dofile(default_path.."/allores/Sakhaite/Sakhaite.lua")
dofile(default_path.."/allores/Sakuraiite/Sakuraiite.lua")
dofile(default_path.."/allores/Salammoniac/Salammoniac.lua")
dofile(default_path.."/allores/Saleeite/Saleeite.lua")
dofile(default_path.."/allores/Salesite/Salesite.lua")
dofile(default_path.."/allores/Saliotite/Saliotite.lua")
dofile(default_path.."/allores/Saltonseaite/Saltonseaite.lua")
dofile(default_path.."/allores/Salzburgite/Salzburgite.lua")
dofile(default_path.."/allores/Samaniite/Samaniite.lua")
dofile(default_path.."/allores/Samarskite_Y/Samarskite_Y.lua")
dofile(default_path.."/allores/Samarskite_Yb/Samarskite_Yb.lua")
dofile(default_path.."/allores/Samfowlerite/Samfowlerite.lua")
dofile(default_path.."/allores/Sampleite/Sampleite.lua")
dofile(default_path.."/allores/Samraite/Samraite.lua")
dofile(default_path.."/allores/Samsonite/Samsonite.lua")
dofile(default_path.."/allores/Samuelsonite/Samuelsonite.lua")
dofile(default_path.."/allores/Sanbornite/Sanbornite.lua")
dofile(default_path.."/allores/Sanderite/Sanderite.lua")
dofile(default_path.."/allores/Saneroite/Saneroite.lua")
dofile(default_path.."/allores/Sangenaroite/Sangenaroite.lua")
dofile(default_path.."/allores/Sanguite/Sanguite.lua")
dofile(default_path.."/allores/Sanidine/Sanidine.lua")
dofile(default_path.."/allores/Sanjuanite/Sanjuanite.lua")
dofile(default_path.."/allores/Sanmartinite/Sanmartinite.lua")
dofile(default_path.."/allores/Sanromanite/Sanromanite.lua")
dofile(default_path.."/allores/Santabarbaraite/Santabarbaraite.lua")
dofile(default_path.."/allores/Santaclaraite/Santaclaraite.lua")
dofile(default_path.."/allores/Santafeite/Santafeite.lua")
dofile(default_path.."/allores/Santanaite/Santanaite.lua")
dofile(default_path.."/allores/Santarosaite/Santarosaite.lua")
dofile(default_path.."/allores/Santite/Santite.lua")
dofile(default_path.."/allores/Saponite/Saponite.lua")
dofile(default_path.."/allores/Sapozhnikovite/Sapozhnikovite.lua")
dofile(default_path.."/allores/Sapphirine/Sapphirine.lua")
dofile(default_path.."/allores/Sarabauite/Sarabauite.lua")
dofile(default_path.."/allores/Saranchinaite/Saranchinaite.lua")
dofile(default_path.."/allores/Saranovskite/Saranovskite.lua")
dofile(default_path.."/allores/Sarcolite/Sarcolite.lua")
dofile(default_path.."/allores/Sarcopside/Sarcopside.lua")
dofile(default_path.."/allores/Sardignaite/Sardignaite.lua")
dofile(default_path.."/allores/Sarkinite/Sarkinite.lua")
dofile(default_path.."/allores/Sarmientite/Sarmientite.lua")
dofile(default_path.."/allores/Sarrabusite/Sarrabusite.lua")
dofile(default_path.."/allores/Sarrochite/Sarrochite.lua")
dofile(default_path.."/allores/Sartorite/Sartorite.lua")
dofile(default_path.."/allores/Saryarkite_Y/Saryarkite_Y.lua")
dofile(default_path.."/allores/Sasaite/Sasaite.lua")
dofile(default_path.."/allores/Sassite/Sassite.lua")
dofile(default_path.."/allores/Sassolite/Sassolite.lua")
dofile(default_path.."/allores/Satimolite/Satimolite.lua")
dofile(default_path.."/allores/Satpaevite/Satpaevite.lua")
dofile(default_path.."/allores/Satterlyite/Satterlyite.lua")
dofile(default_path.."/allores/Sauconite/Sauconite.lua")
dofile(default_path.."/allores/Savelievaite/Savelievaite.lua")
dofile(default_path.."/allores/Sayrite/Sayrite.lua")
dofile(default_path.."/allores/Sazhinite_Ce/Sazhinite_Ce.lua")
dofile(default_path.."/allores/Sazhinite_La/Sazhinite_La.lua")
dofile(default_path.."/allores/Sazykinaite_Y/Sazykinaite_Y.lua")
dofile(default_path.."/allores/Sbacchiite/Sbacchiite.lua")
dofile(default_path.."/allores/Sborgite/Sborgite.lua")
dofile(default_path.."/allores/Scacchite/Scacchite.lua")
dofile(default_path.."/allores/Scainiite/Scainiite.lua")
dofile(default_path.."/allores/Scandio_winchite/Scandio_winchite.lua")
dofile(default_path.."/allores/Scandiobabingtonite/Scandiobabingtonite.lua")
dofile(default_path.."/allores/Scarbroite/Scarbroite.lua")
dofile(default_path.."/allores/Scawtite/Scawtite.lua")
dofile(default_path.."/allores/Scenicite/Scenicite.lua")
dofile(default_path.."/allores/Schachnerite/Schachnerite.lua")
dofile(default_path.."/allores/Schafarzikite/Schafarzikite.lua")
dofile(default_path.."/allores/Schaferite/Schaferite.lua")
dofile(default_path.."/allores/Schairerite/Schairerite.lua")
dofile(default_path.."/allores/Schallerite/Schallerite.lua")
dofile(default_path.."/allores/Schapbachite/Schapbachite.lua")
dofile(default_path.."/allores/Schaurteite/Schaurteite.lua")
dofile(default_path.."/allores/Scheelite/Scheelite.lua")
dofile(default_path.."/allores/Schertelite/Schertelite.lua")
dofile(default_path.."/allores/Scheuchzerite/Scheuchzerite.lua")
dofile(default_path.."/allores/Schiavinatoite/Schiavinatoite.lua")
dofile(default_path.."/allores/Schieffelinite/Schieffelinite.lua")
dofile(default_path.."/allores/Schindlerite/Schindlerite.lua")
dofile(default_path.."/allores/Schirmerite/Schirmerite.lua")
dofile(default_path.."/allores/Schizolite/Schizolite.lua")
dofile(default_path.."/allores/Schlegelite/Schlegelite.lua")
dofile(default_path.."/allores/Schlemaite/Schlemaite.lua")
dofile(default_path.."/allores/Schlossmacherite/Schlossmacherite.lua")
dofile(default_path.."/allores/Schluterite_Y/Schluterite_Y.lua")
dofile(default_path.."/allores/Schmidite/Schmidite.lua")
dofile(default_path.."/allores/Schmiederite/Schmiederite.lua")
dofile(default_path.."/allores/Schmitterite/Schmitterite.lua")
dofile(default_path.."/allores/Schneebergite/Schneebergite.lua")
dofile(default_path.."/allores/Schneiderhohnite/Schneiderhohnite.lua")
dofile(default_path.."/allores/Schoderite/Schoderite.lua")
dofile(default_path.."/allores/Schoenfliesite/Schoenfliesite.lua")
dofile(default_path.."/allores/Schoepite/Schoepite.lua")
dofile(default_path.."/allores/Schollhornite/Schollhornite.lua")
dofile(default_path.."/allores/Scholzite/Scholzite.lua")
dofile(default_path.."/allores/Schoonerite/Schoonerite.lua")
dofile(default_path.."/allores/Schorl/Schorl.lua")
dofile(default_path.."/allores/Schorlomite/Schorlomite.lua")
dofile(default_path.."/allores/Schreibersite/Schreibersite.lua")
dofile(default_path.."/allores/Schreyerite/Schreyerite.lua")
dofile(default_path.."/allores/Schrockingerite/Schrockingerite.lua")
dofile(default_path.."/allores/Schubnelite/Schubnelite.lua")
dofile(default_path.."/allores/Schuetteite/Schuetteite.lua")
dofile(default_path.."/allores/Schuilingite_Nd/Schuilingite_Nd.lua")
dofile(default_path.."/allores/Schulenbergite/Schulenbergite.lua")
dofile(default_path.."/allores/Schullerite/Schullerite.lua")
dofile(default_path.."/allores/Schultenite/Schultenite.lua")
dofile(default_path.."/allores/Schumacherite/Schumacherite.lua")
dofile(default_path.."/allores/Schwartzembergite/Schwartzembergite.lua")
dofile(default_path.."/allores/Schwertmannite/Schwertmannite.lua")
dofile(default_path.."/allores/Sclarite/Sclarite.lua")
dofile(default_path.."/allores/Scolecite/Scolecite.lua")
dofile(default_path.."/allores/Scordariite/Scordariite.lua")
dofile(default_path.."/allores/Scorodite/Scorodite.lua")
dofile(default_path.."/allores/Scorticoite/Scorticoite.lua")
dofile(default_path.."/allores/Scorzalite/Scorzalite.lua")
dofile(default_path.."/allores/Scotlandite/Scotlandite.lua")
dofile(default_path.."/allores/Scottyite/Scottyite.lua")
dofile(default_path.."/allores/Scrutinyite/Scrutinyite.lua")
dofile(default_path.."/allores/Seaborgite/Seaborgite.lua")
dofile(default_path.."/allores/Seamanite/Seamanite.lua")
dofile(default_path.."/allores/Searlesite/Searlesite.lua")
dofile(default_path.."/allores/Sederholmite/Sederholmite.lua")
dofile(default_path.."/allores/Sedovite/Sedovite.lua")
dofile(default_path.."/allores/Seeligerite/Seeligerite.lua")
dofile(default_path.."/allores/Seelite/Seelite.lua")
dofile(default_path.."/allores/Segelerite/Segelerite.lua")
dofile(default_path.."/allores/Segerstromite/Segerstromite.lua")
dofile(default_path.."/allores/Segnitite/Segnitite.lua")
dofile(default_path.."/allores/Seidite_Ce/Seidite_Ce.lua")
dofile(default_path.."/allores/Seidozerite/Seidozerite.lua")
dofile(default_path.."/allores/Seifertite/Seifertite.lua")
dofile(default_path.."/allores/Seinajokite/Seinajokite.lua")
dofile(default_path.."/allores/Sejkoraite_Y/Sejkoraite_Y.lua")
dofile(default_path.."/allores/Sekaninaite/Sekaninaite.lua")
dofile(default_path.."/allores/Selenium/Selenium.lua")
dofile(default_path.."/allores/Selenojalpaite/Selenojalpaite.lua")
dofile(default_path.."/allores/Selenolaurite/Selenolaurite.lua")
dofile(default_path.."/allores/Selenopolybasite/Selenopolybasite.lua")
dofile(default_path.."/allores/Selenostephanite/Selenostephanite.lua")
dofile(default_path.."/allores/Seligmannite/Seligmannite.lua")
dofile(default_path.."/allores/Selivanovaite/Selivanovaite.lua")
dofile(default_path.."/allores/Sellaite/Sellaite.lua")
dofile(default_path.."/allores/Selsurtite/Selsurtite.lua")
dofile(default_path.."/allores/Selwynite/Selwynite.lua")
dofile(default_path.."/allores/Semenovite_Ce/Semenovite_Ce.lua")
dofile(default_path.."/allores/Semseyite/Semseyite.lua")
dofile(default_path.."/allores/Senaite/Senaite.lua")
dofile(default_path.."/allores/Senandorite/Senandorite.lua")
dofile(default_path.."/allores/Senarmontite/Senarmontite.lua")
dofile(default_path.."/allores/Senegalite/Senegalite.lua")
dofile(default_path.."/allores/Sengierite/Sengierite.lua")
dofile(default_path.."/allores/Senkevichite/Senkevichite.lua")
dofile(default_path.."/allores/Sepiolite/Sepiolite.lua")
dofile(default_path.."/allores/Serandite/Serandite.lua")
dofile(default_path.."/allores/Serendibite/Serendibite.lua")
dofile(default_path.."/allores/Sergeevite/Sergeevite.lua")
dofile(default_path.."/allores/Sergevanite/Sergevanite.lua")
dofile(default_path.."/allores/Sergeysmirnovite/Sergeysmirnovite.lua")
dofile(default_path.."/allores/Serpierite/Serpierite.lua")
dofile(default_path.."/allores/Serrabrancaite/Serrabrancaite.lua")
dofile(default_path.."/allores/Sewardite/Sewardite.lua")
dofile(default_path.."/allores/Shabaite_Nd/Shabaite_Nd.lua")
dofile(default_path.."/allores/Shabynite/Shabynite.lua")
dofile(default_path.."/allores/Shadlunite/Shadlunite.lua")
dofile(default_path.."/allores/Shafranovskite/Shafranovskite.lua")
dofile(default_path.."/allores/Shagamite/Shagamite.lua")
dofile(default_path.."/allores/Shakhdaraite_Y/Shakhdaraite_Y.lua")
dofile(default_path.."/allores/Shakhovite/Shakhovite.lua")
dofile(default_path.."/allores/Shandite/Shandite.lua")
dofile(default_path.."/allores/Shannonite/Shannonite.lua")
dofile(default_path.."/allores/Sharpite/Sharpite.lua")
dofile(default_path.."/allores/Sharyginite/Sharyginite.lua")
dofile(default_path.."/allores/Shasuite/Shasuite.lua")
dofile(default_path.."/allores/Shattuckite/Shattuckite.lua")
dofile(default_path.."/allores/Shcherbakovite/Shcherbakovite.lua")
dofile(default_path.."/allores/Shcherbinaite/Shcherbinaite.lua")
dofile(default_path.."/allores/Shchurovskyite/Shchurovskyite.lua")
dofile(default_path.."/allores/Sheldrickite/Sheldrickite.lua")
dofile(default_path.."/allores/Shenzhuangite/Shenzhuangite.lua")
dofile(default_path.."/allores/Sherwoodite/Sherwoodite.lua")
dofile(default_path.."/allores/Shibkovite/Shibkovite.lua")
dofile(default_path.."/allores/Shigaite/Shigaite.lua")
dofile(default_path.."/allores/Shijiangshanite/Shijiangshanite.lua")
dofile(default_path.."/allores/Shilovite/Shilovite.lua")
dofile(default_path.."/allores/Shimazakiite/Shimazakiite.lua")
dofile(default_path.."/allores/Shimenite/Shimenite.lua")
dofile(default_path.."/allores/Shinarumpite/Shinarumpite.lua")
dofile(default_path.."/allores/Shinkolobweite/Shinkolobweite.lua")
dofile(default_path.."/allores/Shirokshinite/Shirokshinite.lua")
dofile(default_path.."/allores/Shirozulite/Shirozulite.lua")
dofile(default_path.."/allores/Shkatulkalite/Shkatulkalite.lua")
dofile(default_path.."/allores/Shlykovite/Shlykovite.lua")
dofile(default_path.."/allores/Shomiokite_Y/Shomiokite_Y.lua")
dofile(default_path.."/allores/Shortite/Shortite.lua")
dofile(default_path.."/allores/Shosanbetsuite/Shosanbetsuite.lua")
dofile(default_path.."/allores/Shuangfengite/Shuangfengite.lua")
dofile(default_path.."/allores/Shubnikovite/Shubnikovite.lua")
dofile(default_path.."/allores/Shuiskite_Cr/Shuiskite_Cr.lua")
dofile(default_path.."/allores/Shuiskite_Mg/Shuiskite_Mg.lua")
dofile(default_path.."/allores/Shulamitite/Shulamitite.lua")
dofile(default_path.."/allores/Shumwayite/Shumwayite.lua")
dofile(default_path.."/allores/Shuvalovite/Shuvalovite.lua")
dofile(default_path.."/allores/Sibirskite/Sibirskite.lua")
dofile(default_path.."/allores/Sicherite/Sicherite.lua")
dofile(default_path.."/allores/Sicklerite/Sicklerite.lua")
dofile(default_path.."/allores/Siderazot/Siderazot.lua")
dofile(default_path.."/allores/Siderite/Siderite.lua")
dofile(default_path.."/allores/Sideronatrite/Sideronatrite.lua")
dofile(default_path.."/allores/Siderophyllite/Siderophyllite.lua")
dofile(default_path.."/allores/Siderotil/Siderotil.lua")
dofile(default_path.."/allores/Sidorenkite/Sidorenkite.lua")
dofile(default_path.."/allores/Sidorovite/Sidorovite.lua")
dofile(default_path.."/allores/Sidpietersite/Sidpietersite.lua")
dofile(default_path.."/allores/Sidwillite/Sidwillite.lua")
dofile(default_path.."/allores/Siegenite/Siegenite.lua")
dofile(default_path.."/allores/Sieleckiite/Sieleckiite.lua")
dofile(default_path.."/allores/Sigismundite/Sigismundite.lua")
dofile(default_path.."/allores/Sigloite/Sigloite.lua")
dofile(default_path.."/allores/Siidraite/Siidraite.lua")
dofile(default_path.."/allores/Silesiaite/Silesiaite.lua")
dofile(default_path.."/allores/Silhydrite/Silhydrite.lua")
dofile(default_path.."/allores/Silicocarnotite/Silicocarnotite.lua")
dofile(default_path.."/allores/Silicon/Silicon.lua")
dofile(default_path.."/allores/Silinaite/Silinaite.lua")
dofile(default_path.."/allores/Sillenite/Sillenite.lua")
dofile(default_path.."/allores/Sillimanite/Sillimanite.lua")
dofile(default_path.."/allores/Silver/Silver.lua")
dofile(default_path.."/allores/Silvialite/Silvialite.lua")
dofile(default_path.."/allores/Simferite/Simferite.lua")
dofile(default_path.."/allores/Simmonsite/Simmonsite.lua")
dofile(default_path.."/allores/Simonellite/Simonellite.lua")
dofile(default_path.."/allores/Simonite/Simonite.lua")
dofile(default_path.."/allores/Simonkolleite/Simonkolleite.lua")
dofile(default_path.."/allores/Simplotite/Simplotite.lua")
dofile(default_path.."/allores/Simpsonite/Simpsonite.lua")
dofile(default_path.."/allores/Sincosite/Sincosite.lua")
dofile(default_path.."/allores/Sinhalite/Sinhalite.lua")
dofile(default_path.."/allores/Sinjarite/Sinjarite.lua")
dofile(default_path.."/allores/Sinkankasite/Sinkankasite.lua")
dofile(default_path.."/allores/Sinnerite/Sinnerite.lua")
dofile(default_path.."/allores/Sinoite/Sinoite.lua")
dofile(default_path.."/allores/Sitinakite/Sitinakite.lua")
dofile(default_path.."/allores/Siudaite/Siudaite.lua")
dofile(default_path.."/allores/Siwaqaite/Siwaqaite.lua")
dofile(default_path.."/allores/Sjogrenite/Sjogrenite.lua")
dofile(default_path.."/allores/Skaergaardite/Skaergaardite.lua")
dofile(default_path.."/allores/Skinnerite/Skinnerite.lua")
dofile(default_path.."/allores/Skippenite/Skippenite.lua")
dofile(default_path.."/allores/Sklodowskite/Sklodowskite.lua")
dofile(default_path.."/allores/Skorpionite/Skorpionite.lua")
dofile(default_path.."/allores/Skutterudite/Skutterudite.lua")
dofile(default_path.."/allores/Slavikite/Slavikite.lua")
dofile(default_path.."/allores/Slavkovite/Slavkovite.lua")
dofile(default_path.."/allores/Slawsonite/Slawsonite.lua")
dofile(default_path.."/allores/Slikite/Slikite.lua")
dofile(default_path.."/allores/Sluzhenikinite/Sluzhenikinite.lua")
dofile(default_path.."/allores/Slyudyankaite/Slyudyankaite.lua")
dofile(default_path.."/allores/Smamite/Smamite.lua")
dofile(default_path.."/allores/Smirnite/Smirnite.lua")
dofile(default_path.."/allores/Smirnovskite/Smirnovskite.lua")
dofile(default_path.."/allores/Smithite/Smithite.lua")
dofile(default_path.."/allores/Smithsonite/Smithsonite.lua")
dofile(default_path.."/allores/Smolyaninovite/Smolyaninovite.lua")
dofile(default_path.."/allores/Smrkovecite/Smrkovecite.lua")
dofile(default_path.."/allores/Smythite/Smythite.lua")
dofile(default_path.."/allores/Sobolevite/Sobolevite.lua")
dofile(default_path.."/allores/Sobolevskite/Sobolevskite.lua")
dofile(default_path.."/allores/Sodalite/Sodalite.lua")
dofile(default_path.."/allores/Soddyite/Soddyite.lua")
dofile(default_path.."/allores/Sodic_ferri_clinoferroholmquistite/Sodic_ferri_clinoferroholmquistite.lua")
dofile(default_path.."/allores/Sodic_ferripedrizite/Sodic_ferripedrizite.lua")
dofile(default_path.."/allores/Sodic_ferro_anthophyllite/Sodic_ferro_anthophyllite.lua")
dofile(default_path.."/allores/Sodic_ferrogedrite/Sodic_ferrogedrite.lua")
dofile(default_path.."/allores/Sodic_ferropedrizite/Sodic_ferropedrizite.lua")
dofile(default_path.."/allores/Sodicanthophyllite/Sodicanthophyllite.lua")
dofile(default_path.."/allores/Sodicgedrite/Sodicgedrite.lua")
dofile(default_path.."/allores/Sodicpedrizite/Sodicpedrizite.lua")
dofile(default_path.."/allores/Sofiite/Sofiite.lua")
dofile(default_path.."/allores/Sogdianite/Sogdianite.lua")
dofile(default_path.."/allores/Sohngeite/Sohngeite.lua")
dofile(default_path.."/allores/Sokolovaite/Sokolovaite.lua")
dofile(default_path.."/allores/Solongoite/Solongoite.lua")
dofile(default_path.."/allores/Somersetite/Somersetite.lua")
dofile(default_path.."/allores/Sonolite/Sonolite.lua")
dofile(default_path.."/allores/Sonoraite/Sonoraite.lua")
dofile(default_path.."/allores/Sopcheite/Sopcheite.lua")
dofile(default_path.."/allores/Sorbyite/Sorbyite.lua")
dofile(default_path.."/allores/Sorensenite/Sorensenite.lua")
dofile(default_path.."/allores/Sorosite/Sorosite.lua")
dofile(default_path.."/allores/Sosedkoite/Sosedkoite.lua")
dofile(default_path.."/allores/Soucekite/Soucekite.lua")
dofile(default_path.."/allores/Souzalite/Souzalite.lua")
dofile(default_path.."/allores/Spadaite/Spadaite.lua")
dofile(default_path.."/allores/Spaltiite/Spaltiite.lua")
dofile(default_path.."/allores/Spangolite/Spangolite.lua")
dofile(default_path.."/allores/Spencerite/Spencerite.lua")
dofile(default_path.."/allores/Sperrylite/Sperrylite.lua")
dofile(default_path.."/allores/Spertiniite/Spertiniite.lua")
dofile(default_path.."/allores/Spessartine/Spessartine.lua")
dofile(default_path.."/allores/Sphaerobertrandite/Sphaerobertrandite.lua")
dofile(default_path.."/allores/Sphaerobismoite/Sphaerobismoite.lua")
dofile(default_path.."/allores/Sphalerite/Sphalerite.lua")
dofile(default_path.."/allores/Spheniscidite/Spheniscidite.lua")
dofile(default_path.."/allores/Spherocobaltite/Spherocobaltite.lua")
dofile(default_path.."/allores/Spinel/Spinel.lua")
dofile(default_path.."/allores/Spionkopite/Spionkopite.lua")
dofile(default_path.."/allores/Spiridonovite/Spiridonovite.lua")
dofile(default_path.."/allores/Spiroffite/Spiroffite.lua")
dofile(default_path.."/allores/Spodumene/Spodumene.lua")
dofile(default_path.."/allores/Spriggite/Spriggite.lua")
dofile(default_path.."/allores/Springcreekite/Springcreekite.lua")
dofile(default_path.."/allores/Spryite/Spryite.lua")
dofile(default_path.."/allores/Spurrite/Spurrite.lua")
dofile(default_path.."/allores/Srebrodolskite/Srebrodolskite.lua")
dofile(default_path.."/allores/Sreinite/Sreinite.lua")
dofile(default_path.."/allores/Srilankite/Srilankite.lua")
dofile(default_path.."/allores/Stalderite/Stalderite.lua")
dofile(default_path.."/allores/Stanekite/Stanekite.lua")
dofile(default_path.."/allores/Stanevansite/Stanevansite.lua")
dofile(default_path.."/allores/Stanfieldite/Stanfieldite.lua")
dofile(default_path.."/allores/Stangersite/Stangersite.lua")
dofile(default_path.."/allores/Stanleyite/Stanleyite.lua")
dofile(default_path.."/allores/Stannite/Stannite.lua")
dofile(default_path.."/allores/Stannoidite/Stannoidite.lua")
dofile(default_path.."/allores/Stannopalladinite/Stannopalladinite.lua")
dofile(default_path.."/allores/Starkeyite/Starkeyite.lua")
dofile(default_path.."/allores/Staroceskeite/Staroceskeite.lua")
dofile(default_path.."/allores/Starovaite/Starovaite.lua")
dofile(default_path.."/allores/Staurolite/Staurolite.lua")
dofile(default_path.."/allores/Stavelotite_La/Stavelotite_La.lua")
dofile(default_path.."/allores/Steacyite/Steacyite.lua")
dofile(default_path.."/allores/Steedeite/Steedeite.lua")
dofile(default_path.."/allores/Steenstrupine_Ce/Steenstrupine_Ce.lua")
dofile(default_path.."/allores/Stefanweissite/Stefanweissite.lua")
dofile(default_path.."/allores/Steigerite/Steigerite.lua")
dofile(default_path.."/allores/Steinhardtite/Steinhardtite.lua")
dofile(default_path.."/allores/Steinmetzite/Steinmetzite.lua")
dofile(default_path.."/allores/Steklite/Steklite.lua")
dofile(default_path.."/allores/Stellerite/Stellerite.lua")
dofile(default_path.."/allores/Stenhuggarite/Stenhuggarite.lua")
dofile(default_path.."/allores/Stenonite/Stenonite.lua")
dofile(default_path.."/allores/Stepanovite/Stepanovite.lua")
dofile(default_path.."/allores/Stephanite/Stephanite.lua")
dofile(default_path.."/allores/Stepite/Stepite.lua")
dofile(default_path.."/allores/Stercorite/Stercorite.lua")
dofile(default_path.."/allores/Stergiouite/Stergiouite.lua")
dofile(default_path.."/allores/Sterlinghillite/Sterlinghillite.lua")
dofile(default_path.."/allores/Sternbergite/Sternbergite.lua")
dofile(default_path.."/allores/Steropesite/Steropesite.lua")
dofile(default_path.."/allores/Sterryite/Sterryite.lua")
dofile(default_path.."/allores/Stetefeldtite/Stetefeldtite.lua")
dofile(default_path.."/allores/Stetindite_Ce/Stetindite_Ce.lua")
dofile(default_path.."/allores/Steudelite/Steudelite.lua")
dofile(default_path.."/allores/Stevensite/Stevensite.lua")
dofile(default_path.."/allores/Steverustite/Steverustite.lua")
dofile(default_path.."/allores/Stewartite/Stewartite.lua")
dofile(default_path.."/allores/Stibarsen/Stibarsen.lua")
dofile(default_path.."/allores/Stibiconite/Stibiconite.lua")
dofile(default_path.."/allores/Stibioclaudetite/Stibioclaudetite.lua")
dofile(default_path.."/allores/Stibiocolumbite/Stibiocolumbite.lua")
dofile(default_path.."/allores/Stibiocolusite/Stibiocolusite.lua")
dofile(default_path.."/allores/Stibiogoldfieldite/Stibiogoldfieldite.lua")
dofile(default_path.."/allores/Stibiopalladinite/Stibiopalladinite.lua")
dofile(default_path.."/allores/Stibiotantalite/Stibiotantalite.lua")
dofile(default_path.."/allores/Stibioustalecite/Stibioustalecite.lua")
dofile(default_path.."/allores/Stibivanite/Stibivanite.lua")
dofile(default_path.."/allores/Stibnite/Stibnite.lua")
dofile(default_path.."/allores/Stichtite/Stichtite.lua")
dofile(default_path.."/allores/Stilbite_Ca/Stilbite_Ca.lua")
dofile(default_path.."/allores/Stilbite_Na/Stilbite_Na.lua")
dofile(default_path.."/allores/Stilleite/Stilleite.lua")
dofile(default_path.."/allores/Stillwaterite/Stillwaterite.lua")
dofile(default_path.."/allores/Stillwellite_Ce/Stillwellite_Ce.lua")
dofile(default_path.."/allores/Stilpnomelane/Stilpnomelane.lua")
dofile(default_path.."/allores/Stishovite/Stishovite.lua")
dofile(default_path.."/allores/Stistaite/Stistaite.lua")
dofile(default_path.."/allores/Stofflerite/Stofflerite.lua")
dofile(default_path.."/allores/Stoiberite/Stoiberite.lua")
dofile(default_path.."/allores/Stokesite/Stokesite.lua")
dofile(default_path.."/allores/Stolperite/Stolperite.lua")
dofile(default_path.."/allores/Stolzite/Stolzite.lua")
dofile(default_path.."/allores/Stoppaniite/Stoppaniite.lua")
dofile(default_path.."/allores/Stornesite_Y/Stornesite_Y.lua")
dofile(default_path.."/allores/Stottite/Stottite.lua")
dofile(default_path.."/allores/Stracherite/Stracherite.lua")
dofile(default_path.."/allores/Straczekite/Straczekite.lua")
dofile(default_path.."/allores/Strakhovite/Strakhovite.lua")
dofile(default_path.."/allores/Stranskiite/Stranskiite.lua")
dofile(default_path.."/allores/Strashimirite/Strashimirite.lua")
dofile(default_path.."/allores/Strassmannite/Strassmannite.lua")
dofile(default_path.."/allores/Stratlingite/Stratlingite.lua")
dofile(default_path.."/allores/Strelkinite/Strelkinite.lua")
dofile(default_path.."/allores/Strengite/Strengite.lua")
dofile(default_path.."/allores/Stringhamite/Stringhamite.lua")
dofile(default_path.."/allores/Stromeyerite/Stromeyerite.lua")
dofile(default_path.."/allores/Stronadelphite/Stronadelphite.lua")
dofile(default_path.."/allores/Stronalsite/Stronalsite.lua")
dofile(default_path.."/allores/Strontianite/Strontianite.lua")
dofile(default_path.."/allores/Strontio_orthojoaquinite/Strontio_orthojoaquinite.lua")
dofile(default_path.."/allores/Strontioborite/Strontioborite.lua")
dofile(default_path.."/allores/Strontiochevkinite/Strontiochevkinite.lua")
dofile(default_path.."/allores/Strontiodresserite/Strontiodresserite.lua")
dofile(default_path.."/allores/Strontiofluorite/Strontiofluorite.lua")
dofile(default_path.."/allores/Strontioginorite/Strontioginorite.lua")
dofile(default_path.."/allores/Strontiohurlbutite/Strontiohurlbutite.lua")
dofile(default_path.."/allores/Strontiojoaquinite/Strontiojoaquinite.lua")
dofile(default_path.."/allores/Strontiomelane/Strontiomelane.lua")
dofile(default_path.."/allores/Strontioperloffite/Strontioperloffite.lua")
dofile(default_path.."/allores/Strontiopharmacosiderite/Strontiopharmacosiderite.lua")
dofile(default_path.."/allores/Strontiopyrochlore/Strontiopyrochlore.lua")
dofile(default_path.."/allores/Strontioruizite/Strontioruizite.lua")
dofile(default_path.."/allores/Strontiowhitlockite/Strontiowhitlockite.lua")
dofile(default_path.."/allores/Strunzite/Strunzite.lua")
dofile(default_path.."/allores/Struvite/Struvite.lua")
dofile(default_path.."/allores/Struvite_K/Struvite_K.lua")
dofile(default_path.."/allores/Studenitsite/Studenitsite.lua")
dofile(default_path.."/allores/Studtite/Studtite.lua")
dofile(default_path.."/allores/Stumpflite/Stumpflite.lua")
dofile(default_path.."/allores/Sturmanite/Sturmanite.lua")
dofile(default_path.."/allores/Stutzite/Stutzite.lua")
dofile(default_path.."/allores/Suanite/Suanite.lua")
dofile(default_path.."/allores/Sudburyite/Sudburyite.lua")
dofile(default_path.."/allores/Sudoite/Sudoite.lua")
dofile(default_path.."/allores/Sudovikovite/Sudovikovite.lua")
dofile(default_path.."/allores/Suenoite/Suenoite.lua")
dofile(default_path.."/allores/Suessite/Suessite.lua")
dofile(default_path.."/allores/Sugakiite/Sugakiite.lua")
dofile(default_path.."/allores/Sugilite/Sugilite.lua")
dofile(default_path.."/allores/Suhailite/Suhailite.lua")
dofile(default_path.."/allores/Sulfatoredmondite/Sulfatoredmondite.lua")
dofile(default_path.."/allores/Sulfhydrylbystrite/Sulfhydrylbystrite.lua")
dofile(default_path.."/allores/Sulfoborite/Sulfoborite.lua")
dofile(default_path.."/allores/Sulphohalite/Sulphohalite.lua")
dofile(default_path.."/allores/Sulphotsumoite/Sulphotsumoite.lua")
dofile(default_path.."/allores/Sulphur/Sulphur.lua")
dofile(default_path.."/allores/Sulvanite/Sulvanite.lua")
dofile(default_path.."/allores/Sundiusite/Sundiusite.lua")
dofile(default_path.."/allores/Suolunite/Suolunite.lua")
dofile(default_path.."/allores/Suredaite/Suredaite.lua")
dofile(default_path.."/allores/Surinamite/Surinamite.lua")
dofile(default_path.."/allores/Surite/Surite.lua")
dofile(default_path.."/allores/Surkhobite/Surkhobite.lua")
dofile(default_path.."/allores/Sursassite/Sursassite.lua")
dofile(default_path.."/allores/Susannite/Susannite.lua")
dofile(default_path.."/allores/Suseinargiuite/Suseinargiuite.lua")
dofile(default_path.."/allores/Sussexite/Sussexite.lua")
dofile(default_path.."/allores/Suzukiite/Suzukiite.lua")
dofile(default_path.."/allores/Svabite/Svabite.lua")
dofile(default_path.."/allores/Svanbergite/Svanbergite.lua")
dofile(default_path.."/allores/Sveinbergeite/Sveinbergeite.lua")
dofile(default_path.."/allores/Sveite/Sveite.lua")
dofile(default_path.."/allores/Svenekite/Svenekite.lua")
dofile(default_path.."/allores/Sverigeite/Sverigeite.lua")
dofile(default_path.."/allores/Svetlanaite/Svetlanaite.lua")
dofile(default_path.."/allores/Svornostite/Svornostite.lua")
dofile(default_path.."/allores/Svyatoslavite/Svyatoslavite.lua")
dofile(default_path.."/allores/Svyazhinite/Svyazhinite.lua")
dofile(default_path.."/allores/Swaknoite/Swaknoite.lua")
dofile(default_path.."/allores/Swamboite_Nd/Swamboite_Nd.lua")
dofile(default_path.."/allores/Swartzite/Swartzite.lua")
dofile(default_path.."/allores/Swedenborgite/Swedenborgite.lua")
dofile(default_path.."/allores/Sweetite/Sweetite.lua")
dofile(default_path.."/allores/Swinefordite/Swinefordite.lua")
dofile(default_path.."/allores/Switzerite/Switzerite.lua")
dofile(default_path.."/allores/Sylvanite/Sylvanite.lua")
dofile(default_path.."/allores/Sylvite/Sylvite.lua")
dofile(default_path.."/allores/Symesite/Symesite.lua")
dofile(default_path.."/allores/Symplesite/Symplesite.lua")
dofile(default_path.."/allores/Synadelphite/Synadelphite.lua")
dofile(default_path.."/allores/Synchysite_Ce/Synchysite_Ce.lua")
dofile(default_path.."/allores/Synchysite_Nd/Synchysite_Nd.lua")
dofile(default_path.."/allores/Synchysite_Y/Synchysite_Y.lua")
dofile(default_path.."/allores/Syngenite/Syngenite.lua")
dofile(default_path.."/allores/Szaibelyite/Szaibelyite.lua")
dofile(default_path.."/allores/Szenicsite/Szenicsite.lua")
dofile(default_path.."/allores/Szklaryite/Szklaryite.lua")
dofile(default_path.."/allores/Szmikite/Szmikite.lua")
dofile(default_path.."/allores/Szomolnokite/Szomolnokite.lua")
dofile(default_path.."/allores/Sztrokayite/Sztrokayite.lua")
dofile(default_path.."/allores/Szymanskiite/Szymanskiite.lua")
dofile(default_path.."/allores/Tacharanite/Tacharanite.lua")
dofile(default_path.."/allores/Tachyhydrite/Tachyhydrite.lua")
dofile(default_path.."/allores/Tadzhikite_Ce/Tadzhikite_Ce.lua")
dofile(default_path.."/allores/Tadzhikite_Y/Tadzhikite_Y.lua")
dofile(default_path.."/allores/Taenite/Taenite.lua")
dofile(default_path.."/allores/Taikanite/Taikanite.lua")
dofile(default_path.."/allores/Taimyrite/Taimyrite.lua")
dofile(default_path.."/allores/TaimyriteII/TaimyriteII.lua")
dofile(default_path.."/allores/Tainiolite/Tainiolite.lua")
dofile(default_path.."/allores/Taipingite_Ce/Taipingite_Ce.lua")
dofile(default_path.."/allores/Takanawaite_Y/Takanawaite_Y.lua")
dofile(default_path.."/allores/Takanelite/Takanelite.lua")
dofile(default_path.."/allores/Takedaite/Takedaite.lua")
dofile(default_path.."/allores/Takeuchiite/Takeuchiite.lua")
dofile(default_path.."/allores/Takovite/Takovite.lua")
dofile(default_path.."/allores/Talc/Talc.lua")
dofile(default_path.."/allores/Talmessite/Talmessite.lua")
dofile(default_path.."/allores/Talnakhite/Talnakhite.lua")
dofile(default_path.."/allores/Tamaite/Tamaite.lua")
dofile(default_path.."/allores/Tamarugite/Tamarugite.lua")
dofile(default_path.."/allores/Tamboite/Tamboite.lua")
dofile(default_path.."/allores/Tamuraite/Tamuraite.lua")
dofile(default_path.."/allores/Tancaite_Ce/Tancaite_Ce.lua")
dofile(default_path.."/allores/Tancoite/Tancoite.lua")
dofile(default_path.."/allores/Taneyamalite/Taneyamalite.lua")
dofile(default_path.."/allores/Tangdanite/Tangdanite.lua")
dofile(default_path.."/allores/Tangeite/Tangeite.lua")
dofile(default_path.."/allores/Taniajacoite/Taniajacoite.lua")
dofile(default_path.."/allores/Tanohataite/Tanohataite.lua")
dofile(default_path.."/allores/Tantalaeschynite_Y/Tantalaeschynite_Y.lua")
dofile(default_path.."/allores/Tantalcarbide/Tantalcarbide.lua")
dofile(default_path.."/allores/Tantalite_Fe/Tantalite_Fe.lua")
dofile(default_path.."/allores/Tantalite_Mg/Tantalite_Mg.lua")
dofile(default_path.."/allores/Tantalite_Mn/Tantalite_Mn.lua")
dofile(default_path.."/allores/Tantalowodginite/Tantalowodginite.lua")
dofile(default_path.."/allores/Tanteuxenite_Y/Tanteuxenite_Y.lua")
dofile(default_path.."/allores/Tantite/Tantite.lua")
dofile(default_path.."/allores/Tapiaite/Tapiaite.lua")
dofile(default_path.."/allores/Tapiolite_Fe/Tapiolite_Fe.lua")
dofile(default_path.."/allores/Tapiolite_Mn/Tapiolite_Mn.lua")
dofile(default_path.."/allores/Taramellite/Taramellite.lua")
dofile(default_path.."/allores/Taramite/Taramite.lua")
dofile(default_path.."/allores/Taranakite/Taranakite.lua")
dofile(default_path.."/allores/Tarapacaite/Tarapacaite.lua")
dofile(default_path.."/allores/Tarbagataite/Tarbagataite.lua")
dofile(default_path.."/allores/Tarbuttite/Tarbuttite.lua")
dofile(default_path.."/allores/Tarkianite/Tarkianite.lua")
dofile(default_path.."/allores/Taseqite/Taseqite.lua")
dofile(default_path.."/allores/Tashelgite/Tashelgite.lua")
dofile(default_path.."/allores/Tassieite/Tassieite.lua")
dofile(default_path.."/allores/Tatarinovite/Tatarinovite.lua")
dofile(default_path.."/allores/Tatarskite/Tatarskite.lua")
dofile(default_path.."/allores/Tatyanaite/Tatyanaite.lua")
dofile(default_path.."/allores/Tausonite/Tausonite.lua")
dofile(default_path.."/allores/Tavagnascoite/Tavagnascoite.lua")
dofile(default_path.."/allores/Tavorite/Tavorite.lua")
dofile(default_path.."/allores/Tazheranite/Tazheranite.lua")
dofile(default_path.."/allores/Tazieffite/Tazieffite.lua")
dofile(default_path.."/allores/Tazzoliite/Tazzoliite.lua")
dofile(default_path.."/allores/Teallite/Teallite.lua")
dofile(default_path.."/allores/Tedhadleyite/Tedhadleyite.lua")
dofile(default_path.."/allores/Teepleite/Teepleite.lua")
dofile(default_path.."/allores/Tegengrenite/Tegengrenite.lua")
dofile(default_path.."/allores/Teineite/Teineite.lua")
dofile(default_path.."/allores/Telargpalite/Telargpalite.lua")
dofile(default_path.."/allores/Tellurantimony/Tellurantimony.lua")
dofile(default_path.."/allores/Tellurite/Tellurite.lua")
dofile(default_path.."/allores/Tellurium/Tellurium.lua")
dofile(default_path.."/allores/Tellurobismuthite/Tellurobismuthite.lua")
dofile(default_path.."/allores/Tellurocanfieldite/Tellurocanfieldite.lua")
dofile(default_path.."/allores/Tellurohauchecornite/Tellurohauchecornite.lua")
dofile(default_path.."/allores/Telluromandarinoite/Telluromandarinoite.lua")
dofile(default_path.."/allores/Telluronevskite/Telluronevskite.lua")
dofile(default_path.."/allores/Telluropalladinite/Telluropalladinite.lua")
dofile(default_path.."/allores/Telluroperite/Telluroperite.lua")
dofile(default_path.."/allores/Telyushenkoite/Telyushenkoite.lua")
dofile(default_path.."/allores/Temagamite/Temagamite.lua")
dofile(default_path.."/allores/Tengchongite/Tengchongite.lua")
dofile(default_path.."/allores/Tengerite_Y/Tengerite_Y.lua")
dofile(default_path.."/allores/Tennantite_Cd/Tennantite_Cd.lua")
dofile(default_path.."/allores/Tennantite_Cu/Tennantite_Cu.lua")
dofile(default_path.."/allores/Tennantite_Fe/Tennantite_Fe.lua")
dofile(default_path.."/allores/Tennantite_Hg/Tennantite_Hg.lua")
dofile(default_path.."/allores/Tennantite_Mn/Tennantite_Mn.lua")
dofile(default_path.."/allores/Tennantite_Ni/Tennantite_Ni.lua")
dofile(default_path.."/allores/Tennantite_Zn/Tennantite_Zn.lua")
dofile(default_path.."/allores/Tenorite/Tenorite.lua")
dofile(default_path.."/allores/Tephroite/Tephroite.lua")
dofile(default_path.."/allores/Terlinguacreekite/Terlinguacreekite.lua")
dofile(default_path.."/allores/Terlinguaite/Terlinguaite.lua")
dofile(default_path.."/allores/Ternesite/Ternesite.lua")
dofile(default_path.."/allores/Ternovite/Ternovite.lua")
dofile(default_path.."/allores/Terranovaite/Terranovaite.lua")
dofile(default_path.."/allores/Terrywallaceite/Terrywallaceite.lua")
dofile(default_path.."/allores/Terskite/Terskite.lua")
dofile(default_path.."/allores/Tertschite/Tertschite.lua")
dofile(default_path.."/allores/Teruggite/Teruggite.lua")
dofile(default_path.."/allores/Teschemacherite/Teschemacherite.lua")
dofile(default_path.."/allores/Testibiopalladite/Testibiopalladite.lua")
dofile(default_path.."/allores/Tetra_auricupride/Tetra_auricupride.lua")
dofile(default_path.."/allores/Tetradymite/Tetradymite.lua")
dofile(default_path.."/allores/Tetraferriannite/Tetraferriannite.lua")
dofile(default_path.."/allores/Tetraferriphlogopite/Tetraferriphlogopite.lua")
dofile(default_path.."/allores/Tetraferroplatinum/Tetraferroplatinum.lua")
dofile(default_path.."/allores/Tetrahedrite_Cu/Tetrahedrite_Cu.lua")
dofile(default_path.."/allores/Tetrahedrite_Fe/Tetrahedrite_Fe.lua")
dofile(default_path.."/allores/Tetrahedrite_Hg/Tetrahedrite_Hg.lua")
dofile(default_path.."/allores/Tetrahedrite_Mn/Tetrahedrite_Mn.lua")
dofile(default_path.."/allores/Tetrahedrite_Ni/Tetrahedrite_Ni.lua")
dofile(default_path.."/allores/Tetrahedrite_Zn/Tetrahedrite_Zn.lua")
dofile(default_path.."/allores/Tetrarooseveltite/Tetrarooseveltite.lua")
dofile(default_path.."/allores/Tetrataenite/Tetrataenite.lua")
dofile(default_path.."/allores/Tetrawickmanite/Tetrawickmanite.lua")
dofile(default_path.."/allores/Tewite/Tewite.lua")
dofile(default_path.."/allores/Thadeuite/Thadeuite.lua")
dofile(default_path.."/allores/Thalcusite/Thalcusite.lua")
dofile(default_path.."/allores/Thalenite_Y/Thalenite_Y.lua")
dofile(default_path.."/allores/Thalfenisite/Thalfenisite.lua")
dofile(default_path.."/allores/Thalhammerite/Thalhammerite.lua")
dofile(default_path.."/allores/Thalliomelane/Thalliomelane.lua")
dofile(default_path.."/allores/Thalliumpharmacosiderite/Thalliumpharmacosiderite.lua")
dofile(default_path.."/allores/Thaumasite/Thaumasite.lua")
dofile(default_path.."/allores/Thebaite_NH4/Thebaite_NH4.lua")
dofile(default_path.."/allores/Theisite/Theisite.lua")
dofile(default_path.."/allores/Thenardite/Thenardite.lua")
dofile(default_path.."/allores/Theoparacelsite/Theoparacelsite.lua")
dofile(default_path.."/allores/Theophrastite/Theophrastite.lua")
dofile(default_path.."/allores/Therasiaite/Therasiaite.lua")
dofile(default_path.."/allores/Theresemagnanite/Theresemagnanite.lua")
dofile(default_path.."/allores/Thermaerogenite/Thermaerogenite.lua")
dofile(default_path.."/allores/Thermessaite/Thermessaite.lua")
dofile(default_path.."/allores/Thermessaite_NH4/Thermessaite_NH4.lua")
dofile(default_path.."/allores/Thermonatrite/Thermonatrite.lua")
dofile(default_path.."/allores/Thomasclarkite_Y/Thomasclarkite_Y.lua")
dofile(default_path.."/allores/Thometzekite/Thometzekite.lua")
dofile(default_path.."/allores/Thomsenolite/Thomsenolite.lua")
dofile(default_path.."/allores/Thomsonite_Ca/Thomsonite_Ca.lua")
dofile(default_path.."/allores/Thomsonite_Sr/Thomsonite_Sr.lua")
dofile(default_path.."/allores/Thorasphite/Thorasphite.lua")
dofile(default_path.."/allores/Thorbastnasite/Thorbastnasite.lua")
dofile(default_path.."/allores/Thoreaulite/Thoreaulite.lua")
dofile(default_path.."/allores/Thorianite/Thorianite.lua")
dofile(default_path.."/allores/Thorikosite/Thorikosite.lua")
dofile(default_path.."/allores/Thoriopyrochlore/Thoriopyrochlore.lua")
dofile(default_path.."/allores/Thorite/Thorite.lua")
dofile(default_path.."/allores/Thornasite/Thornasite.lua")
dofile(default_path.."/allores/Thorneite/Thorneite.lua")
dofile(default_path.."/allores/Thorogummite/Thorogummite.lua")
dofile(default_path.."/allores/Thorosteenstrupine/Thorosteenstrupine.lua")
dofile(default_path.."/allores/Thorsite/Thorsite.lua")
dofile(default_path.."/allores/Thortveitite/Thortveitite.lua")
dofile(default_path.."/allores/Thorutite/Thorutite.lua")
dofile(default_path.."/allores/Threadgoldite/Threadgoldite.lua")
dofile(default_path.."/allores/Thunderbayite/Thunderbayite.lua")
dofile(default_path.."/allores/Tianhongqiite/Tianhongqiite.lua")
dofile(default_path.."/allores/Tianhuixinite/Tianhuixinite.lua")
dofile(default_path.."/allores/Tiberiobardiite/Tiberiobardiite.lua")
dofile(default_path.."/allores/Tibiscumite/Tibiscumite.lua")
dofile(default_path.."/allores/Tiemannite/Tiemannite.lua")
dofile(default_path.."/allores/Tienshanite/Tienshanite.lua")
dofile(default_path.."/allores/Tietaiyangite/Tietaiyangite.lua")
dofile(default_path.."/allores/Tiettaite/Tiettaite.lua")
dofile(default_path.."/allores/Tikhonenkovite/Tikhonenkovite.lua")
dofile(default_path.."/allores/Tilasite/Tilasite.lua")
dofile(default_path.."/allores/Tilkerodeite/Tilkerodeite.lua")
dofile(default_path.."/allores/Tilleyite/Tilleyite.lua")
dofile(default_path.."/allores/Tillmannsite/Tillmannsite.lua")
dofile(default_path.."/allores/Timroseite/Timroseite.lua")
dofile(default_path.."/allores/Tin/Tin.lua")
dofile(default_path.."/allores/Tinaksite/Tinaksite.lua")
dofile(default_path.."/allores/Tincalconite/Tincalconite.lua")
dofile(default_path.."/allores/Tinnunculite/Tinnunculite.lua")
dofile(default_path.."/allores/Tinsleyite/Tinsleyite.lua")
dofile(default_path.."/allores/Tinticite/Tinticite.lua")
dofile(default_path.."/allores/Tintinaite/Tintinaite.lua")
dofile(default_path.."/allores/Tinzenite/Tinzenite.lua")
dofile(default_path.."/allores/Tiptopite/Tiptopite.lua")
dofile(default_path.."/allores/Tiragalloite/Tiragalloite.lua")
dofile(default_path.."/allores/Tischendorfite/Tischendorfite.lua")
dofile(default_path.."/allores/Tisinalite/Tisinalite.lua")
dofile(default_path.."/allores/Tissintite/Tissintite.lua")
dofile(default_path.."/allores/Tistarite/Tistarite.lua")
dofile(default_path.."/allores/Titanite/Titanite.lua")
dofile(default_path.."/allores/Titanium/Titanium.lua")
dofile(default_path.."/allores/Titanoholtite/Titanoholtite.lua")
dofile(default_path.."/allores/Titanomaghemite/Titanomaghemite.lua")
dofile(default_path.."/allores/Titanowodginite/Titanowodginite.lua")
dofile(default_path.."/allores/Titantaramellite/Titantaramellite.lua")
dofile(default_path.."/allores/Tivanite/Tivanite.lua")
dofile(default_path.."/allores/Tlalocite/Tlalocite.lua")
dofile(default_path.."/allores/Tlapallite/Tlapallite.lua")
dofile(default_path.."/allores/Tobelite/Tobelite.lua")
dofile(default_path.."/allores/Tobermorite/Tobermorite.lua")
dofile(default_path.."/allores/Tochilinite/Tochilinite.lua")
dofile(default_path.."/allores/Tocornalite/Tocornalite.lua")
dofile(default_path.."/allores/Todorokite/Todorokite.lua")
dofile(default_path.."/allores/Tokkoite/Tokkoite.lua")
dofile(default_path.."/allores/Tokyoite/Tokyoite.lua")
dofile(default_path.."/allores/Tolbachite/Tolbachite.lua")
dofile(default_path.."/allores/Toledoite/Toledoite.lua")
dofile(default_path.."/allores/Tolovkite/Tolovkite.lua")
dofile(default_path.."/allores/Tolstykhite/Tolstykhite.lua")
dofile(default_path.."/allores/Tomamaeite/Tomamaeite.lua")
dofile(default_path.."/allores/Tombarthite_Y/Tombarthite_Y.lua")
dofile(default_path.."/allores/Tombstoneite/Tombstoneite.lua")
dofile(default_path.."/allores/Tomichite/Tomichite.lua")
dofile(default_path.."/allores/Tomiolloite/Tomiolloite.lua")
dofile(default_path.."/allores/Tomsquarryite/Tomsquarryite.lua")
dofile(default_path.."/allores/Tondiite/Tondiite.lua")
dofile(default_path.."/allores/Tongbaite/Tongbaite.lua")
dofile(default_path.."/allores/Tongxinite/Tongxinite.lua")
dofile(default_path.."/allores/Tooeleite/Tooeleite.lua")
dofile(default_path.."/allores/Topaz/Topaz.lua")
dofile(default_path.."/allores/Topsoeite/Topsoeite.lua")
dofile(default_path.."/allores/Torbernite/Torbernite.lua")
dofile(default_path.."/allores/Tornebohmite_Ce/Tornebohmite_Ce.lua")
dofile(default_path.."/allores/Tornebohmite_La/Tornebohmite_La.lua")
dofile(default_path.."/allores/Tornroosite/Tornroosite.lua")
dofile(default_path.."/allores/Torrecillasite/Torrecillasite.lua")
dofile(default_path.."/allores/Torreyite/Torreyite.lua")
dofile(default_path.."/allores/Torryweiserite/Torryweiserite.lua")
dofile(default_path.."/allores/Tosudite/Tosudite.lua")
dofile(default_path.."/allores/Toturite/Toturite.lua")
dofile(default_path.."/allores/Tounkite/Tounkite.lua")
dofile(default_path.."/allores/Townendite/Townendite.lua")
dofile(default_path.."/allores/Toyohaite/Toyohaite.lua")
dofile(default_path.."/allores/Trabzonite/Trabzonite.lua")
dofile(default_path.."/allores/Tranquillityite/Tranquillityite.lua")
dofile(default_path.."/allores/Transjordanite/Transjordanite.lua")
dofile(default_path.."/allores/Traskite/Traskite.lua")
dofile(default_path.."/allores/Trattnerite/Trattnerite.lua")
dofile(default_path.."/allores/Treasurite/Treasurite.lua")
dofile(default_path.."/allores/Trebeurdenite/Trebeurdenite.lua")
dofile(default_path.."/allores/Trebiskyite/Trebiskyite.lua")
dofile(default_path.."/allores/Trechmannite/Trechmannite.lua")
dofile(default_path.."/allores/Tredouxite/Tredouxite.lua")
dofile(default_path.."/allores/Trembathite/Trembathite.lua")
dofile(default_path.."/allores/Tremolite/Tremolite.lua")
dofile(default_path.."/allores/Trevorite/Trevorite.lua")
dofile(default_path.."/allores/Triangulite/Triangulite.lua")
dofile(default_path.."/allores/Triazolite/Triazolite.lua")
dofile(default_path.."/allores/Tridymite/Tridymite.lua")
dofile(default_path.."/allores/Trigodomeykite/Trigodomeykite.lua")
dofile(default_path.."/allores/Trigonite/Trigonite.lua")
dofile(default_path.."/allores/Trikalsilite/Trikalsilite.lua")
dofile(default_path.."/allores/Trilithionite/Trilithionite.lua")
dofile(default_path.."/allores/Trimerite/Trimerite.lua")
dofile(default_path.."/allores/Trimounsite_Y/Trimounsite_Y.lua")
dofile(default_path.."/allores/Trinepheline/Trinepheline.lua")
dofile(default_path.."/allores/Triphylite/Triphylite.lua")
dofile(default_path.."/allores/Triplite/Triplite.lua")
dofile(default_path.."/allores/Triploidite/Triploidite.lua")
dofile(default_path.."/allores/Trippkeite/Trippkeite.lua")
dofile(default_path.."/allores/Tripuhyite/Tripuhyite.lua")
dofile(default_path.."/allores/Tristramite/Tristramite.lua")
dofile(default_path.."/allores/Tritomite_Ce/Tritomite_Ce.lua")
dofile(default_path.."/allores/Tritomite_Y/Tritomite_Y.lua")
dofile(default_path.."/allores/Trogerite/Trogerite.lua")
dofile(default_path.."/allores/Trogtalite/Trogtalite.lua")
dofile(default_path.."/allores/Troilite/Troilite.lua")
dofile(default_path.."/allores/Trolleite/Trolleite.lua")
dofile(default_path.."/allores/Trona/Trona.lua")
dofile(default_path.."/allores/Truscottite/Truscottite.lua")
dofile(default_path.."/allores/Trustedtite/Trustedtite.lua")
dofile(default_path.."/allores/Tsangpoite/Tsangpoite.lua")
dofile(default_path.."/allores/Tsaregorodtsevite/Tsaregorodtsevite.lua")
dofile(default_path.."/allores/Tschaunerite/Tschaunerite.lua")
dofile(default_path.."/allores/Tschermakite/Tschermakite.lua")
dofile(default_path.."/allores/Tschermigite/Tschermigite.lua")
dofile(default_path.."/allores/Tschernichite/Tschernichite.lua")
dofile(default_path.."/allores/Tschortnerite/Tschortnerite.lua")
dofile(default_path.."/allores/Tsepinite_Ca/Tsepinite_Ca.lua")
dofile(default_path.."/allores/Tsepinite_K/Tsepinite_K.lua")
dofile(default_path.."/allores/Tsepinite_Na/Tsepinite_Na.lua")
dofile(default_path.."/allores/Tsepinite_Sr/Tsepinite_Sr.lua")
dofile(default_path.."/allores/Tsikourasite/Tsikourasite.lua")
dofile(default_path.."/allores/Tsilaisite/Tsilaisite.lua")
dofile(default_path.."/allores/Tsnigriite/Tsnigriite.lua")
dofile(default_path.."/allores/Tsugaruite/Tsugaruite.lua")
dofile(default_path.."/allores/Tsumcorite/Tsumcorite.lua")
dofile(default_path.."/allores/Tsumebite/Tsumebite.lua")
dofile(default_path.."/allores/Tsumgallite/Tsumgallite.lua")
dofile(default_path.."/allores/Tsumoite/Tsumoite.lua")
dofile(default_path.."/allores/Tsygankoite/Tsygankoite.lua")
dofile(default_path.."/allores/Tubulite/Tubulite.lua")
dofile(default_path.."/allores/Tucekite/Tucekite.lua")
dofile(default_path.."/allores/Tugarinovite/Tugarinovite.lua")
dofile(default_path.."/allores/Tugtupite/Tugtupite.lua")
dofile(default_path.."/allores/Tuhualite/Tuhualite.lua")
dofile(default_path.."/allores/Tuite/Tuite.lua")
dofile(default_path.."/allores/Tulameenite/Tulameenite.lua")
dofile(default_path.."/allores/Tuliokite/Tuliokite.lua")
dofile(default_path.."/allores/Tululite/Tululite.lua")
dofile(default_path.."/allores/Tumchaite/Tumchaite.lua")
dofile(default_path.."/allores/Tundrite_Ce/Tundrite_Ce.lua")
dofile(default_path.."/allores/Tundrite_Nd/Tundrite_Nd.lua")
dofile(default_path.."/allores/Tunellite/Tunellite.lua")
dofile(default_path.."/allores/Tungsten/Tungsten.lua")
dofile(default_path.."/allores/Tungstenite/Tungstenite.lua")
dofile(default_path.."/allores/Tungstibite/Tungstibite.lua")
dofile(default_path.."/allores/Tungstite/Tungstite.lua")
dofile(default_path.."/allores/Tungusite/Tungusite.lua")
dofile(default_path.."/allores/Tunisite/Tunisite.lua")
dofile(default_path.."/allores/Tuperssuatsiaite/Tuperssuatsiaite.lua")
dofile(default_path.."/allores/Turanite/Turanite.lua")
dofile(default_path.."/allores/Turkestanite/Turkestanite.lua")
dofile(default_path.."/allores/Turneaureite/Turneaureite.lua")
dofile(default_path.."/allores/Turquoise/Turquoise.lua")
dofile(default_path.."/allores/Turtmannite/Turtmannite.lua")
dofile(default_path.."/allores/Tuscanite/Tuscanite.lua")
dofile(default_path.."/allores/Tusionite/Tusionite.lua")
dofile(default_path.."/allores/Tuzlaite/Tuzlaite.lua")
dofile(default_path.."/allores/Tvalchrelidzeite/Tvalchrelidzeite.lua")
dofile(default_path.."/allores/Tvedalite/Tvedalite.lua")
dofile(default_path.."/allores/Tveitite_Y/Tveitite_Y.lua")
dofile(default_path.."/allores/Tvrdyite/Tvrdyite.lua")
dofile(default_path.."/allores/Tweddillite/Tweddillite.lua")
dofile(default_path.."/allores/Twinnite/Twinnite.lua")
dofile(default_path.."/allores/Tychite/Tychite.lua")
dofile(default_path.."/allores/Tyretskite/Tyretskite.lua")
dofile(default_path.."/allores/Tyrolite/Tyrolite.lua")
dofile(default_path.."/allores/Tyrrellite/Tyrrellite.lua")
dofile(default_path.."/allores/Tyuyamunite/Tyuyamunite.lua")
dofile(default_path.."/allores/Uakitite/Uakitite.lua")
dofile(default_path.."/allores/Uchucchacuaite/Uchucchacuaite.lua")
dofile(default_path.."/allores/Udinaite/Udinaite.lua")
dofile(default_path.."/allores/Uduminelite/Uduminelite.lua")
dofile(default_path.."/allores/Uedaite_Ce/Uedaite_Ce.lua")
dofile(default_path.."/allores/Uklonskovite/Uklonskovite.lua")
dofile(default_path.."/allores/Ulexite/Ulexite.lua")
dofile(default_path.."/allores/Ulfanderssonite_Ce/Ulfanderssonite_Ce.lua")
dofile(default_path.."/allores/Ullmannite/Ullmannite.lua")
dofile(default_path.."/allores/Ulrichite/Ulrichite.lua")
dofile(default_path.."/allores/Ulvospinel/Ulvospinel.lua")
dofile(default_path.."/allores/Umangite/Umangite.lua")
dofile(default_path.."/allores/Umbite/Umbite.lua")
dofile(default_path.."/allores/Umbozerite/Umbozerite.lua")
dofile(default_path.."/allores/Umbrianite/Umbrianite.lua")
dofile(default_path.."/allores/Umohoite/Umohoite.lua")
dofile(default_path.."/allores/Ungavaite/Ungavaite.lua")
dofile(default_path.."/allores/Ungemachite/Ungemachite.lua")
dofile(default_path.."/allores/Upalite/Upalite.lua")
dofile(default_path.."/allores/Uralborite/Uralborite.lua")
dofile(default_path.."/allores/Uralolite/Uralolite.lua")
dofile(default_path.."/allores/Uramarsite/Uramarsite.lua")
dofile(default_path.."/allores/Uramphite/Uramphite.lua")
dofile(default_path.."/allores/Urancalcarite/Urancalcarite.lua")
dofile(default_path.."/allores/Uraninite/Uraninite.lua")
dofile(default_path.."/allores/Uranmicrolite/Uranmicrolite.lua")
dofile(default_path.."/allores/Uranocircite/Uranocircite.lua")
dofile(default_path.."/allores/UranocirciteI/UranocirciteI.lua")
dofile(default_path.."/allores/Uranoclite/Uranoclite.lua")
dofile(default_path.."/allores/Uranophane/Uranophane.lua")
dofile(default_path.."/allores/Uranopilite/Uranopilite.lua")
dofile(default_path.."/allores/Uranopolycrase/Uranopolycrase.lua")
dofile(default_path.."/allores/Uranosilite/Uranosilite.lua")
dofile(default_path.."/allores/Uranospathite/Uranospathite.lua")
dofile(default_path.."/allores/Uranosphaerite/Uranosphaerite.lua")
dofile(default_path.."/allores/Uranospinite/Uranospinite.lua")
dofile(default_path.."/allores/Uranotungstite/Uranotungstite.lua")
dofile(default_path.."/allores/Uranpyrochlore/Uranpyrochlore.lua")
dofile(default_path.."/allores/Urea/Urea.lua")
dofile(default_path.."/allores/Uricite/Uricite.lua")
dofile(default_path.."/allores/Uroxite/Uroxite.lua")
dofile(default_path.."/allores/Urphoite/Urphoite.lua")
dofile(default_path.."/allores/Ursilite/Ursilite.lua")
dofile(default_path.."/allores/Urusovite/Urusovite.lua")
dofile(default_path.."/allores/Urvantsevite/Urvantsevite.lua")
dofile(default_path.."/allores/Ushkovite/Ushkovite.lua")
dofile(default_path.."/allores/Usovite/Usovite.lua")
dofile(default_path.."/allores/Ussingite/Ussingite.lua")
dofile(default_path.."/allores/Ustarasite/Ustarasite.lua")
dofile(default_path.."/allores/Usturite/Usturite.lua")
dofile(default_path.."/allores/Utahite/Utahite.lua")
dofile(default_path.."/allores/Uvanite/Uvanite.lua")
dofile(default_path.."/allores/Uvarovite/Uvarovite.lua")
dofile(default_path.."/allores/Uvite/Uvite.lua")
dofile(default_path.."/allores/Uytenbogaardtite/Uytenbogaardtite.lua")
dofile(default_path.."/allores/Uzonite/Uzonite.lua")
dofile(default_path.."/allores/Vaesite/Vaesite.lua")
dofile(default_path.."/allores/Vajdakite/Vajdakite.lua")
dofile(default_path.."/allores/Valentinite/Valentinite.lua")
dofile(default_path.."/allores/Valleriite/Valleriite.lua")
dofile(default_path.."/allores/Valleyite/Valleyite.lua")
dofile(default_path.."/allores/Vanackerite/Vanackerite.lua")
dofile(default_path.."/allores/Vanadinite/Vanadinite.lua")
dofile(default_path.."/allores/Vanadio_oxy_chromium_dravite/Vanadio_oxy_chromium_dravite.lua")
dofile(default_path.."/allores/Vanadio_oxy_dravite/Vanadio_oxy_dravite.lua")
dofile(default_path.."/allores/Vanadio_pargasite/Vanadio_pargasite.lua")
dofile(default_path.."/allores/Vanadiocarpholite/Vanadiocarpholite.lua")
dofile(default_path.."/allores/Vanadium/Vanadium.lua")
dofile(default_path.."/allores/Vanadoallanite_La/Vanadoallanite_La.lua")
dofile(default_path.."/allores/Vanadoandrosite_Ce/Vanadoandrosite_Ce.lua")
dofile(default_path.."/allores/Vanadomalayaite/Vanadomalayaite.lua")
dofile(default_path.."/allores/Vanalite/Vanalite.lua")
dofile(default_path.."/allores/Vanarsite/Vanarsite.lua")
dofile(default_path.."/allores/Vandenbrandeite/Vandenbrandeite.lua")
dofile(default_path.."/allores/Vandendriesscheite/Vandendriesscheite.lua")
dofile(default_path.."/allores/Vanderheydenite/Vanderheydenite.lua")
dofile(default_path.."/allores/Vandermeerscheite/Vandermeerscheite.lua")
dofile(default_path.."/allores/Vaniniite/Vaniniite.lua")
dofile(default_path.."/allores/Vanmeersscheite/Vanmeersscheite.lua")
dofile(default_path.."/allores/Vanoxite/Vanoxite.lua")
dofile(default_path.."/allores/Vantasselite/Vantasselite.lua")
dofile(default_path.."/allores/Vanthoffite/Vanthoffite.lua")
dofile(default_path.."/allores/Vanuralite/Vanuralite.lua")
dofile(default_path.."/allores/Vapnikite/Vapnikite.lua")
dofile(default_path.."/allores/Varennesite/Varennesite.lua")
dofile(default_path.."/allores/Vargite/Vargite.lua")
dofile(default_path.."/allores/Variscite/Variscite.lua")
dofile(default_path.."/allores/Varlamoffite/Varlamoffite.lua")
dofile(default_path.."/allores/Varulite/Varulite.lua")
dofile(default_path.."/allores/Vashegyite/Vashegyite.lua")
dofile(default_path.."/allores/Vasilite/Vasilite.lua")
dofile(default_path.."/allores/Vasilseverginite/Vasilseverginite.lua")
dofile(default_path.."/allores/Vasilyevite/Vasilyevite.lua")
dofile(default_path.."/allores/Vastmanlandite_Ce/Vastmanlandite_Ce.lua")
dofile(default_path.."/allores/Vaterite/Vaterite.lua")
dofile(default_path.."/allores/Vaughanite/Vaughanite.lua")
dofile(default_path.."/allores/Vauquelinite/Vauquelinite.lua")
dofile(default_path.."/allores/Vauxite/Vauxite.lua")
dofile(default_path.."/allores/Vavrinite/Vavrinite.lua")
dofile(default_path.."/allores/Vayrynenite/Vayrynenite.lua")
dofile(default_path.."/allores/Veatchite/Veatchite.lua")
dofile(default_path.."/allores/Veatchite_p/Veatchite_p.lua")
dofile(default_path.."/allores/Veblenite/Veblenite.lua")
dofile(default_path.."/allores/Veenite/Veenite.lua")
dofile(default_path.."/allores/Velikite/Velikite.lua")
dofile(default_path.."/allores/Vendidaite/Vendidaite.lua")
dofile(default_path.."/allores/Verbeekite/Verbeekite.lua")
dofile(default_path.."/allores/Verbierite/Verbierite.lua")
dofile(default_path.."/allores/Vergasovaite/Vergasovaite.lua")
dofile(default_path.."/allores/Vermiculite/Vermiculite.lua")
dofile(default_path.."/allores/Vernadite/Vernadite.lua")
dofile(default_path.."/allores/Verneite/Verneite.lua")
dofile(default_path.."/allores/Verplanckite/Verplanckite.lua")
dofile(default_path.."/allores/Versiliaite/Versiliaite.lua")
dofile(default_path.."/allores/Vertumnite/Vertumnite.lua")
dofile(default_path.."/allores/Veselovskyite/Veselovskyite.lua")
dofile(default_path.."/allores/Vesignieite/Vesignieite.lua")
dofile(default_path.."/allores/Vestaite/Vestaite.lua")
dofile(default_path.."/allores/Vesuvianite/Vesuvianite.lua")
dofile(default_path.."/allores/Veszelyite/Veszelyite.lua")
dofile(default_path.."/allores/Viaeneite/Viaeneite.lua")
dofile(default_path.."/allores/Vicanite_Ce/Vicanite_Ce.lua")
dofile(default_path.."/allores/Vigezzite/Vigezzite.lua")
dofile(default_path.."/allores/Vigrishinite/Vigrishinite.lua")
dofile(default_path.."/allores/Vihorlatite/Vihorlatite.lua")
dofile(default_path.."/allores/Viitaniemiite/Viitaniemiite.lua")
dofile(default_path.."/allores/Vikingite/Vikingite.lua")
dofile(default_path.."/allores/Villamaninite/Villamaninite.lua")
dofile(default_path.."/allores/Villiaumite/Villiaumite.lua")
dofile(default_path.."/allores/Villyaellenite/Villyaellenite.lua")
dofile(default_path.."/allores/Vimsite/Vimsite.lua")
dofile(default_path.."/allores/Vincentite/Vincentite.lua")
dofile(default_path.."/allores/Vinciennite/Vinciennite.lua")
dofile(default_path.."/allores/Vinogradovite/Vinogradovite.lua")
dofile(default_path.."/allores/Violarite/Violarite.lua")
dofile(default_path.."/allores/Virgilite/Virgilite.lua")
dofile(default_path.."/allores/Vishnevite/Vishnevite.lua")
dofile(default_path.."/allores/Vismirnovite/Vismirnovite.lua")
dofile(default_path.."/allores/Vistepite/Vistepite.lua")
dofile(default_path.."/allores/Viteite/Viteite.lua")
dofile(default_path.."/allores/Vitimite/Vitimite.lua")
dofile(default_path.."/allores/Vittinkiite/Vittinkiite.lua")
dofile(default_path.."/allores/Vitusite_Ce/Vitusite_Ce.lua")
dofile(default_path.."/allores/Vivianite/Vivianite.lua")
dofile(default_path.."/allores/Vladimirite/Vladimirite.lua")
dofile(default_path.."/allores/Vladimirivanovite/Vladimirivanovite.lua")
dofile(default_path.."/allores/Vladkrivovichevite/Vladkrivovichevite.lua")
dofile(default_path.."/allores/Vladykinite/Vladykinite.lua")
dofile(default_path.."/allores/Vlasovite/Vlasovite.lua")
dofile(default_path.."/allores/Vlodavetsite/Vlodavetsite.lua")
dofile(default_path.."/allores/Vochtenite/Vochtenite.lua")
dofile(default_path.."/allores/Voggite/Voggite.lua")
dofile(default_path.."/allores/Voglite/Voglite.lua")
dofile(default_path.."/allores/Volaschioite/Volaschioite.lua")
dofile(default_path.."/allores/Volborthite/Volborthite.lua")
dofile(default_path.."/allores/Volkonskoite/Volkonskoite.lua")
dofile(default_path.."/allores/Volkovskite/Volkovskite.lua")
dofile(default_path.."/allores/Voloshinite/Voloshinite.lua")
dofile(default_path.."/allores/Voltaite/Voltaite.lua")
dofile(default_path.."/allores/Volynskite/Volynskite.lua")
dofile(default_path.."/allores/Vonbezingite/Vonbezingite.lua")
dofile(default_path.."/allores/Vondechenite/Vondechenite.lua")
dofile(default_path.."/allores/Vonsenite/Vonsenite.lua")
dofile(default_path.."/allores/Vorlanite/Vorlanite.lua")
dofile(default_path.."/allores/Voronkovite/Voronkovite.lua")
dofile(default_path.."/allores/Vorontsovite/Vorontsovite.lua")
dofile(default_path.."/allores/Voudourisite/Voudourisite.lua")
dofile(default_path.."/allores/Vozhminite/Vozhminite.lua")
dofile(default_path.."/allores/Vranaite/Vranaite.lua")
dofile(default_path.."/allores/Vrbaite/Vrbaite.lua")
dofile(default_path.."/allores/Vuagnatite/Vuagnatite.lua")
dofile(default_path.."/allores/Vulcanite/Vulcanite.lua")
dofile(default_path.."/allores/Vuonnemite/Vuonnemite.lua")
dofile(default_path.."/allores/Vuorelainenite/Vuorelainenite.lua")
dofile(default_path.."/allores/Vuoriyarvite_K/Vuoriyarvite_K.lua")
dofile(default_path.."/allores/Vurroite/Vurroite.lua")
dofile(default_path.."/allores/Vyacheslavite/Vyacheslavite.lua")
dofile(default_path.."/allores/Vyalsovite/Vyalsovite.lua")
dofile(default_path.."/allores/Vymazalovaite/Vymazalovaite.lua")
dofile(default_path.."/allores/Vysokyite/Vysokyite.lua")
dofile(default_path.."/allores/Vysotskite/Vysotskite.lua")
dofile(default_path.."/allores/Vyuntspakhkite_Y/Vyuntspakhkite_Y.lua")
dofile(default_path.."/allores/Wadalite/Wadalite.lua")
dofile(default_path.."/allores/Wadeite/Wadeite.lua")
dofile(default_path.."/allores/Wadsleyite/Wadsleyite.lua")
dofile(default_path.."/allores/Wagnerite/Wagnerite.lua")
dofile(default_path.."/allores/Waimirite_Y/Waimirite_Y.lua")
dofile(default_path.."/allores/Waipouaite/Waipouaite.lua")
dofile(default_path.."/allores/Wairakite/Wairakite.lua")
dofile(default_path.."/allores/Wairauite/Wairauite.lua")
dofile(default_path.."/allores/Wakabayashilite/Wakabayashilite.lua")
dofile(default_path.."/allores/Wakefieldite_Ce/Wakefieldite_Ce.lua")
dofile(default_path.."/allores/Wakefieldite_La/Wakefieldite_La.lua")
dofile(default_path.."/allores/Wakefieldite_Nd/Wakefieldite_Nd.lua")
dofile(default_path.."/allores/Wakefieldite_Y/Wakefieldite_Y.lua")
dofile(default_path.."/allores/Walentaite/Walentaite.lua")
dofile(default_path.."/allores/Walfordite/Walfordite.lua")
dofile(default_path.."/allores/Walkerite/Walkerite.lua")
dofile(default_path.."/allores/Wallisite/Wallisite.lua")
dofile(default_path.."/allores/Wallkilldellite/Wallkilldellite.lua")
dofile(default_path.."/allores/Wallkilldellite_Fe/Wallkilldellite_Fe.lua")
dofile(default_path.."/allores/Walpurgite/Walpurgite.lua")
dofile(default_path.."/allores/Walstromite/Walstromite.lua")
dofile(default_path.."/allores/Walthierite/Walthierite.lua")
dofile(default_path.."/allores/Wampenite/Wampenite.lua")
dofile(default_path.."/allores/Wangdaodeite/Wangdaodeite.lua")
dofile(default_path.."/allores/Wardite/Wardite.lua")
dofile(default_path.."/allores/Wardsmithite/Wardsmithite.lua")
dofile(default_path.."/allores/Warikahnite/Warikahnite.lua")
dofile(default_path.."/allores/Warkite/Warkite.lua")
dofile(default_path.."/allores/Warwickite/Warwickite.lua")
dofile(default_path.."/allores/Wassonite/Wassonite.lua")
dofile(default_path.."/allores/Watanabeite/Watanabeite.lua")
dofile(default_path.."/allores/Watatsumiite/Watatsumiite.lua")
dofile(default_path.."/allores/Waterhouseite/Waterhouseite.lua")
dofile(default_path.."/allores/Watkinsonite/Watkinsonite.lua")
dofile(default_path.."/allores/Wattersite/Wattersite.lua")
dofile(default_path.."/allores/Wattevilleite/Wattevilleite.lua")
dofile(default_path.."/allores/Wavellite/Wavellite.lua")
dofile(default_path.."/allores/Wawayandaite/Wawayandaite.lua")
dofile(default_path.."/allores/Waylandite/Waylandite.lua")
dofile(default_path.."/allores/Wayneburnhamite/Wayneburnhamite.lua")
dofile(default_path.."/allores/Weberite/Weberite.lua")
dofile(default_path.."/allores/Weddellite/Weddellite.lua")
dofile(default_path.."/allores/Weeksite/Weeksite.lua")
dofile(default_path.."/allores/Wegscheiderite/Wegscheiderite.lua")
dofile(default_path.."/allores/Weibullite/Weibullite.lua")
dofile(default_path.."/allores/Weilerite/Weilerite.lua")
dofile(default_path.."/allores/Weilite/Weilite.lua")
dofile(default_path.."/allores/Weinebeneite/Weinebeneite.lua")
dofile(default_path.."/allores/Weishanite/Weishanite.lua")
dofile(default_path.."/allores/Weissbergite/Weissbergite.lua")
dofile(default_path.."/allores/Weissite/Weissite.lua")
dofile(default_path.."/allores/Welinite/Welinite.lua")
dofile(default_path.."/allores/Weloganite/Weloganite.lua")
dofile(default_path.."/allores/Welshite/Welshite.lua")
dofile(default_path.."/allores/Wendwilsonite/Wendwilsonite.lua")
dofile(default_path.."/allores/Wenjiite/Wenjiite.lua")
dofile(default_path.."/allores/Wenkite/Wenkite.lua")
dofile(default_path.."/allores/Werdingite/Werdingite.lua")
dofile(default_path.."/allores/Wermlandite/Wermlandite.lua")
dofile(default_path.."/allores/Wernerbaurite/Wernerbaurite.lua")
dofile(default_path.."/allores/Wernerkrauseite/Wernerkrauseite.lua")
dofile(default_path.."/allores/Wesselsite/Wesselsite.lua")
dofile(default_path.."/allores/Westerveldite/Westerveldite.lua")
dofile(default_path.."/allores/Wetherillite/Wetherillite.lua")
dofile(default_path.."/allores/Wheatleyite/Wheatleyite.lua")
dofile(default_path.."/allores/Whelanite/Whelanite.lua")
dofile(default_path.."/allores/Wherryite/Wherryite.lua")
dofile(default_path.."/allores/Whewellite/Whewellite.lua")
dofile(default_path.."/allores/Whitecapsite/Whitecapsite.lua")
dofile(default_path.."/allores/Whiteite_CaFeMg/Whiteite_CaFeMg.lua")
dofile(default_path.."/allores/Whiteite_CaMgMg/Whiteite_CaMgMg.lua")
dofile(default_path.."/allores/Whiteite_CaMnFe/Whiteite_CaMnFe.lua")
dofile(default_path.."/allores/Whiteite_CaMnMg/Whiteite_CaMnMg.lua")
dofile(default_path.."/allores/Whiteite_CaMnMn/Whiteite_CaMnMn.lua")
dofile(default_path.."/allores/Whiteite_MnFeMg/Whiteite_MnFeMg.lua")
dofile(default_path.."/allores/Whiteite_MnMnMg/Whiteite_MnMnMg.lua")
dofile(default_path.."/allores/Whiteite_MnMnMn/Whiteite_MnMnMn.lua")
dofile(default_path.."/allores/Whiterockite/Whiterockite.lua")
dofile(default_path.."/allores/Whitlockite/Whitlockite.lua")
dofile(default_path.."/allores/Whitmoreite/Whitmoreite.lua")
dofile(default_path.."/allores/Wickenburgite/Wickenburgite.lua")
dofile(default_path.."/allores/Wickmanite/Wickmanite.lua")
dofile(default_path.."/allores/Wicksite/Wicksite.lua")
dofile(default_path.."/allores/Widenmannite/Widenmannite.lua")
dofile(default_path.."/allores/Widgiemoolthalite/Widgiemoolthalite.lua")
dofile(default_path.."/allores/Wightmanite/Wightmanite.lua")
dofile(default_path.."/allores/Wiklundite/Wiklundite.lua")
dofile(default_path.."/allores/Wilancookite/Wilancookite.lua")
dofile(default_path.."/allores/Wilcoxite/Wilcoxite.lua")
dofile(default_path.."/allores/Wildcatite/Wildcatite.lua")
dofile(default_path.."/allores/Wildenauerite/Wildenauerite.lua")
dofile(default_path.."/allores/Wilhelmgumbelite/Wilhelmgumbelite.lua")
dofile(default_path.."/allores/Wilhelmkleinite/Wilhelmkleinite.lua")
dofile(default_path.."/allores/Wilhelmramsayite/Wilhelmramsayite.lua")
dofile(default_path.."/allores/Wilhelmvierlingite/Wilhelmvierlingite.lua")
dofile(default_path.."/allores/Wilkinsonite/Wilkinsonite.lua")
dofile(default_path.."/allores/Wilkmanite/Wilkmanite.lua")
dofile(default_path.."/allores/Willemite/Willemite.lua")
dofile(default_path.."/allores/Willemseite/Willemseite.lua")
dofile(default_path.."/allores/Willhendersonite/Willhendersonite.lua")
dofile(default_path.."/allores/Willyamite/Willyamite.lua")
dofile(default_path.."/allores/Wiluite/Wiluite.lua")
dofile(default_path.."/allores/Winchite/Winchite.lua")
dofile(default_path.."/allores/Windhoekite/Windhoekite.lua")
dofile(default_path.."/allores/Windmountainite/Windmountainite.lua")
dofile(default_path.."/allores/Winstanleyite/Winstanleyite.lua")
dofile(default_path.."/allores/Wiserite/Wiserite.lua")
dofile(default_path.."/allores/Witherite/Witherite.lua")
dofile(default_path.."/allores/Wittichenite/Wittichenite.lua")
dofile(default_path.."/allores/Wittite/Wittite.lua")
dofile(default_path.."/allores/WittiteB/WittiteB.lua")
dofile(default_path.."/allores/Witzkeite/Witzkeite.lua")
dofile(default_path.."/allores/Wodegongjieite/Wodegongjieite.lua")
dofile(default_path.."/allores/Wodginite/Wodginite.lua")
dofile(default_path.."/allores/Wohlerite/Wohlerite.lua")
dofile(default_path.."/allores/Wolfeite/Wolfeite.lua")
dofile(default_path.."/allores/Wollastonite/Wollastonite.lua")
dofile(default_path.."/allores/Wollastonite_2M/Wollastonite_2M.lua")
dofile(default_path.."/allores/Wolsendorfite/Wolsendorfite.lua")
dofile(default_path.."/allores/Wonesite/Wonesite.lua")
dofile(default_path.."/allores/Woodallite/Woodallite.lua")
dofile(default_path.."/allores/Woodhouseite/Woodhouseite.lua")
dofile(default_path.."/allores/Woodruffite/Woodruffite.lua")
dofile(default_path.."/allores/Woodwardite/Woodwardite.lua")
dofile(default_path.."/allores/Wooldridgeite/Wooldridgeite.lua")
dofile(default_path.."/allores/Wopmayite/Wopmayite.lua")
dofile(default_path.."/allores/Wrightite/Wrightite.lua")
dofile(default_path.."/allores/Wroewolfeite/Wroewolfeite.lua")
dofile(default_path.."/allores/Wulfenite/Wulfenite.lua")
dofile(default_path.."/allores/Wulffite/Wulffite.lua")
dofile(default_path.."/allores/Wulfingite/Wulfingite.lua")
dofile(default_path.."/allores/Wumuite/Wumuite.lua")
dofile(default_path.."/allores/Wupatkiite/Wupatkiite.lua")
dofile(default_path.."/allores/Wurtzite/Wurtzite.lua")
dofile(default_path.."/allores/Wustite/Wustite.lua")
dofile(default_path.."/allores/Wuyanzhiite/Wuyanzhiite.lua")
dofile(default_path.."/allores/Wyartite/Wyartite.lua")
dofile(default_path.."/allores/WyartiteII/WyartiteII.lua")
dofile(default_path.."/allores/Wycheproofite/Wycheproofite.lua")
dofile(default_path.."/allores/Wyllieite/Wyllieite.lua")
dofile(default_path.."/allores/Xanthiosite/Xanthiosite.lua")
dofile(default_path.."/allores/Xanthoconite/Xanthoconite.lua")
dofile(default_path.."/allores/Xanthoxenite/Xanthoxenite.lua")
dofile(default_path.."/allores/Xenophyllite/Xenophyllite.lua")
dofile(default_path.."/allores/Xenotime_Y/Xenotime_Y.lua")
dofile(default_path.."/allores/Xenotime_Yb/Xenotime_Yb.lua")
dofile(default_path.."/allores/Xiangjiangite/Xiangjiangite.lua")
dofile(default_path.."/allores/Xieite/Xieite.lua")
dofile(default_path.."/allores/Xifengite/Xifengite.lua")
dofile(default_path.."/allores/Xilingolite/Xilingolite.lua")
dofile(default_path.."/allores/Ximengite/Ximengite.lua")
dofile(default_path.."/allores/Xingzhongite/Xingzhongite.lua")
dofile(default_path.."/allores/Xitieshanite/Xitieshanite.lua")
dofile(default_path.."/allores/Xocolatlite/Xocolatlite.lua")
dofile(default_path.."/allores/Xocomecatlite/Xocomecatlite.lua")
dofile(default_path.."/allores/Xonotlite/Xonotlite.lua")
dofile(default_path.."/allores/Xuite/Xuite.lua")
dofile(default_path.."/allores/Xuwenyuanite/Xuwenyuanite.lua")
dofile(default_path.."/allores/Yafsoanite/Yafsoanite.lua")
dofile(default_path.."/allores/Yagiite/Yagiite.lua")
dofile(default_path.."/allores/Yakhontovite/Yakhontovite.lua")
dofile(default_path.."/allores/Yakovenchukite_Y/Yakovenchukite_Y.lua")
dofile(default_path.."/allores/Yakubovichite/Yakubovichite.lua")
dofile(default_path.."/allores/Yancowinnaite/Yancowinnaite.lua")
dofile(default_path.."/allores/Yangite/Yangite.lua")
dofile(default_path.."/allores/Yangzhumingite/Yangzhumingite.lua")
dofile(default_path.."/allores/Yanomamite/Yanomamite.lua")
dofile(default_path.."/allores/Yarlongite/Yarlongite.lua")
dofile(default_path.."/allores/Yaroshevskite/Yaroshevskite.lua")
dofile(default_path.."/allores/Yaroslavite/Yaroslavite.lua")
dofile(default_path.."/allores/Yarrowite/Yarrowite.lua")
dofile(default_path.."/allores/Yarzhemskiite/Yarzhemskiite.lua")
dofile(default_path.."/allores/Yavapaiite/Yavapaiite.lua")
dofile(default_path.."/allores/Yazganite/Yazganite.lua")
dofile(default_path.."/allores/Yeatmanite/Yeatmanite.lua")
dofile(default_path.."/allores/Yecoraite/Yecoraite.lua")
dofile(default_path.."/allores/Yedlinite/Yedlinite.lua")
dofile(default_path.."/allores/Yeelimite/Yeelimite.lua")
dofile(default_path.."/allores/Yegorovite/Yegorovite.lua")
dofile(default_path.."/allores/Yeite/Yeite.lua")
dofile(default_path.."/allores/Yeomanite/Yeomanite.lua")
dofile(default_path.."/allores/Yimengite/Yimengite.lua")
dofile(default_path.."/allores/Yingjiangite/Yingjiangite.lua")
dofile(default_path.."/allores/Yixunite/Yixunite.lua")
dofile(default_path.."/allores/Yoderite/Yoderite.lua")
dofile(default_path.."/allores/Yofortierite/Yofortierite.lua")
dofile(default_path.."/allores/Yoshimuraite/Yoshimuraite.lua")
dofile(default_path.."/allores/Yoshiokaite/Yoshiokaite.lua")
dofile(default_path.."/allores/Yttriaite_Y/Yttriaite_Y.lua")
dofile(default_path.."/allores/Yttrialite_Y/Yttrialite_Y.lua")
dofile(default_path.."/allores/Yttrobetafite_Y/Yttrobetafite_Y.lua")
dofile(default_path.."/allores/Yttrocolumbite_Y/Yttrocolumbite_Y.lua")
dofile(default_path.."/allores/Yttrocrasite_Y/Yttrocrasite_Y.lua")
dofile(default_path.."/allores/Yttropyrochlore_Y/Yttropyrochlore_Y.lua")
dofile(default_path.."/allores/Yttrotantalite_Y/Yttrotantalite_Y.lua")
dofile(default_path.."/allores/Yttrotungstite_Ce/Yttrotungstite_Ce.lua")
dofile(default_path.."/allores/Yttrotungstite_Y/Yttrotungstite_Y.lua")
dofile(default_path.."/allores/Yuanfuliite/Yuanfuliite.lua")
dofile(default_path.."/allores/Yuanjiangite/Yuanjiangite.lua")
dofile(default_path.."/allores/Yugawaralite/Yugawaralite.lua")
dofile(default_path.."/allores/Yukonite/Yukonite.lua")
dofile(default_path.."/allores/Yuksporite/Yuksporite.lua")
dofile(default_path.."/allores/Yurgensonite/Yurgensonite.lua")
dofile(default_path.."/allores/Yurmarinite/Yurmarinite.lua")
dofile(default_path.."/allores/Yushkinite/Yushkinite.lua")
dofile(default_path.."/allores/Yusupovite/Yusupovite.lua")
dofile(default_path.."/allores/Yuzuxiangite/Yuzuxiangite.lua")
dofile(default_path.."/allores/Yvonite/Yvonite.lua")
dofile(default_path.."/allores/Zabinskiite/Zabinskiite.lua")
dofile(default_path.."/allores/Zabuyelite/Zabuyelite.lua")
dofile(default_path.."/allores/Zaccagnaite/Zaccagnaite.lua")
dofile(default_path.."/allores/Zaccariniite/Zaccariniite.lua")
dofile(default_path.."/allores/Zadovite/Zadovite.lua")
dofile(default_path.."/allores/Zagamiite/Zagamiite.lua")
dofile(default_path.."/allores/Zaherite/Zaherite.lua")
dofile(default_path.."/allores/Zairite/Zairite.lua")
dofile(default_path.."/allores/Zakharovite/Zakharovite.lua")
dofile(default_path.."/allores/Zalesiite/Zalesiite.lua")
dofile(default_path.."/allores/Zanazziite/Zanazziite.lua")
dofile(default_path.."/allores/Zangboite/Zangboite.lua")
dofile(default_path.."/allores/Zapatalite/Zapatalite.lua")
dofile(default_path.."/allores/Zaratite/Zaratite.lua")
dofile(default_path.."/allores/Zavaliaite/Zavaliaite.lua")
dofile(default_path.."/allores/Zavaritskite/Zavaritskite.lua")
dofile(default_path.."/allores/Zaykovite/Zaykovite.lua")
dofile(default_path.."/allores/Zdenekite/Zdenekite.lua")
dofile(default_path.."/allores/Zektzerite/Zektzerite.lua")
dofile(default_path.."/allores/Zellerite/Zellerite.lua")
dofile(default_path.."/allores/Zemannite/Zemannite.lua")
dofile(default_path.."/allores/Zemkorite/Zemkorite.lua")
dofile(default_path.."/allores/Zenzenite/Zenzenite.lua")
dofile(default_path.."/allores/Zeophyllite/Zeophyllite.lua")
dofile(default_path.."/allores/Zeravshanite/Zeravshanite.lua")
dofile(default_path.."/allores/Zeunerite/Zeunerite.lua")
dofile(default_path.."/allores/Zhanghengite/Zhanghengite.lua")
dofile(default_path.."/allores/Zhanghuifenite/Zhanghuifenite.lua")
dofile(default_path.."/allores/Zhangpeishanite/Zhangpeishanite.lua")
dofile(default_path.."/allores/Zharchikhite/Zharchikhite.lua")
dofile(default_path.."/allores/Zhemchuzhnikovite/Zhemchuzhnikovite.lua")
dofile(default_path.."/allores/Zhengminghuaite/Zhengminghuaite.lua")
dofile(default_path.."/allores/Zhenruite/Zhenruite.lua")
dofile(default_path.."/allores/Zheshengite/Zheshengite.lua")
dofile(default_path.."/allores/Zhiqinite/Zhiqinite.lua")
dofile(default_path.."/allores/Zhonghuacerite_Ce/Zhonghuacerite_Ce.lua")
dofile(default_path.."/allores/Ziesite/Ziesite.lua")
dofile(default_path.."/allores/Zigrasite/Zigrasite.lua")
dofile(default_path.."/allores/Zimbabweite/Zimbabweite.lua")
dofile(default_path.."/allores/Ziminaite/Ziminaite.lua")
dofile(default_path.."/allores/Zinc/Zinc.lua")
dofile(default_path.."/allores/Zincalstibite/Zincalstibite.lua")
dofile(default_path.."/allores/Zincaluminite/Zincaluminite.lua")
dofile(default_path.."/allores/Zinccopperite/Zinccopperite.lua")
dofile(default_path.."/allores/Zincgartrellite/Zincgartrellite.lua")
dofile(default_path.."/allores/Zincite/Zincite.lua")
dofile(default_path.."/allores/Zinclipscombite/Zinclipscombite.lua")
dofile(default_path.."/allores/Zincmelanterite/Zincmelanterite.lua")
dofile(default_path.."/allores/Zincoberaunite/Zincoberaunite.lua")
dofile(default_path.."/allores/Zincobotryogen/Zincobotryogen.lua")
dofile(default_path.."/allores/Zincobradaczekite/Zincobradaczekite.lua")
dofile(default_path.."/allores/Zincobriartite/Zincobriartite.lua")
dofile(default_path.."/allores/Zincochenite/Zincochenite.lua")
dofile(default_path.."/allores/Zincochromite/Zincochromite.lua")
dofile(default_path.."/allores/Zincocopiapite/Zincocopiapite.lua")
dofile(default_path.."/allores/Zincohogbomite_2N2S/Zincohogbomite_2N2S.lua")
dofile(default_path.."/allores/Zincohogbomite_2N6S/Zincohogbomite_2N6S.lua")
dofile(default_path.."/allores/Zincolibethenite/Zincolibethenite.lua")
dofile(default_path.."/allores/Zincolivenite/Zincolivenite.lua")
dofile(default_path.."/allores/Zincomenite/Zincomenite.lua")
dofile(default_path.."/allores/Zinconigerite_2N1S/Zinconigerite_2N1S.lua")
dofile(default_path.."/allores/Zinconigerite_6N6S/Zinconigerite_6N6S.lua")
dofile(default_path.."/allores/Zincorietveldite/Zincorietveldite.lua")
dofile(default_path.."/allores/Zincospiroffite/Zincospiroffite.lua")
dofile(default_path.."/allores/Zincostaurolite/Zincostaurolite.lua")
dofile(default_path.."/allores/Zincostrunzite/Zincostrunzite.lua")
dofile(default_path.."/allores/Zincovelesite_6N6S/Zincovelesite_6N6S.lua")
dofile(default_path.."/allores/Zincovoltaite/Zincovoltaite.lua")
dofile(default_path.."/allores/Zincowoodwardite/Zincowoodwardite.lua")
dofile(default_path.."/allores/Zincrosasite/Zincrosasite.lua")
dofile(default_path.."/allores/Zincroselite/Zincroselite.lua")
dofile(default_path.."/allores/Zincsilite/Zincsilite.lua")
dofile(default_path.."/allores/Zinczippeite/Zinczippeite.lua")
dofile(default_path.."/allores/Zinkenite/Zinkenite.lua")
dofile(default_path.."/allores/Zinkgruvanite/Zinkgruvanite.lua")
dofile(default_path.."/allores/Zinkosite/Zinkosite.lua")
dofile(default_path.."/allores/Zippeite/Zippeite.lua")
dofile(default_path.."/allores/Zipserite/Zipserite.lua")
dofile(default_path.."/allores/Zircon/Zircon.lua")
dofile(default_path.."/allores/Zirconolite/Zirconolite.lua")
dofile(default_path.."/allores/Zirconolite_3O/Zirconolite_3O.lua")
dofile(default_path.."/allores/Zirconolite_3T/Zirconolite_3T.lua")
dofile(default_path.."/allores/Zircophyllite/Zircophyllite.lua")
dofile(default_path.."/allores/Zircosulfate/Zircosulfate.lua")
dofile(default_path.."/allores/Zirkelite/Zirkelite.lua")
dofile(default_path.."/allores/Zirklerite/Zirklerite.lua")
dofile(default_path.."/allores/Ziroite/Ziroite.lua")
dofile(default_path.."/allores/Zirsilite_Ce/Zirsilite_Ce.lua")
dofile(default_path.."/allores/Zirsinalite/Zirsinalite.lua")
dofile(default_path.."/allores/Zlatogorite/Zlatogorite.lua")
dofile(default_path.."/allores/Znamenskyite/Znamenskyite.lua")
dofile(default_path.."/allores/Znucalite/Znucalite.lua")
dofile(default_path.."/allores/Zodacite/Zodacite.lua")
dofile(default_path.."/allores/Zoharite/Zoharite.lua")
dofile(default_path.."/allores/Zoisite/Zoisite.lua")
dofile(default_path.."/allores/Zoisite_Pb/Zoisite_Pb.lua")
dofile(default_path.."/allores/Zolenskyite/Zolenskyite.lua")
dofile(default_path.."/allores/Zolotarevite/Zolotarevite.lua")
dofile(default_path.."/allores/Zoltaiite/Zoltaiite.lua")
dofile(default_path.."/allores/Zorite/Zorite.lua")
dofile(default_path.."/allores/Zoubekite/Zoubekite.lua")
dofile(default_path.."/allores/Zubkovaite/Zubkovaite.lua")
dofile(default_path.."/allores/Zugshunstite_Ce/Zugshunstite_Ce.lua")
dofile(default_path.."/allores/Zuktamrurite/Zuktamrurite.lua")
dofile(default_path.."/allores/Zunyite/Zunyite.lua")
dofile(default_path.."/allores/Zussmanite/Zussmanite.lua")
dofile(default_path.."/allores/Zvestovite_Fe/Zvestovite_Fe.lua")
dofile(default_path.."/allores/Zvestovite_Zn/Zvestovite_Zn.lua")
dofile(default_path.."/allores/Zvyaginite/Zvyaginite.lua")
dofile(default_path.."/allores/Zvyagintsevite/Zvyagintsevite.lua")
dofile(default_path.."/allores/Zwieselite/Zwieselite.lua")
dofile(default_path.."/allores/Zykaite/Zykaite.lua")