diff --git a/ascl-ads-comparison/README.md b/ascl-ads-comparison/README.md new file mode 100644 index 0000000..3a2c4d2 --- /dev/null +++ b/ascl-ads-comparison/README.md @@ -0,0 +1,24 @@ +much of this is ad-hoc, so there are a couple of manual steps required to reproduce +the intended result + +1. include a .ads\_key file with the text of your api key in the folder above this one + +2. the file ascl\_codes must be obtained through a wget or lynx download, with +some manipulation to list every code line by line + +this is what I did: +* edit /etc/lynx/lynx.cfg to have persistent cookies +* log in to ascl.net/adm with lynx +* lynx -width=999 -dump -nolist -nomargins http://ascl.net/code/utility/ascl2 | awk -F: '{if (NF==2) { print "#",$0} else {print $0} }' > ascl2a.txt +* sed -i s/\#//g ascl2a.txt +* awk -F: '{print $2}' ascl2a.txt | awk '{printf("ascl.%s %s\n",$2,$3)}' > ascl2b.txt +* awk '{print $1}' ascl2b.txt > ascl\_codes + + + +3. the file ads\_codes is obtained by running ads\_checker.py + +4. code\_comparison looks at ads\_codes and checks if each of the lines appears +in ascl\_codes + + diff --git a/ascl-ads-comparison/ads_checker.py b/ascl-ads-comparison/ads_checker.py new file mode 100644 index 0000000..559e733 --- /dev/null +++ b/ascl-ads-comparison/ads_checker.py @@ -0,0 +1,73 @@ +import sys +import os +import json +import requests + +''' +REQUIRES 1 FILE IN YOUR DIRECTORY: + - .ads_key : text of your ads api key +''' + + +f = open(os.path.join(sys.path[0], "../.ads_key"), "r") +key = f.read() +#print("your key is: " + key + "\n") + +key = key.strip() + +#os.system("cat .ads_key") + + +headers = { + "Authorization": "Bearer:" + key, +} + +def check_pages(num): + return_list = [] + curr_result = 0 + for k in range(num): + #print("starting at resutlt " + str(curr_result)) + + params = ( + ('q', 'bibstem:ascl.soft'), + ('fl', 'bibcode'), + ('rows', "3000"), + ('start', str(curr_result)) + ) + + response = requests.get('https://api.adsabs.harvard.edu/v1/search/query', headers=headers, params=params) + #print(response) + data = response.json(); + num_results = data["response"]["numFound"] + + curr_result = curr_result + 2000 + + #print(str(num_results) + " total found on page " + str(k)) + + for i in data["response"]["docs"]: + bc = i["bibcode"] + return_list.append(bc) + + ''' + new_rel = [] + for i in data["response"]["docs"]: + bc = i['bibcode'] + if "ascl.soft" in bc: + new_rel.append(bc) + + print(str(len(new_rel)) + " relevant found on page " + str(k)) + + return_list.extend(new_rel) + ''' + return_list.sort() + return return_list + + + +lst = check_pages(3) + +f = open(os.path.join(sys.path[0], "ads_codes"), "w+") + +for i in lst: + f.write(i + "\n") + diff --git a/ascl-ads-comparison/ads_codes b/ascl-ads-comparison/ads_codes new file mode 100644 index 0000000..556fc2e --- /dev/null +++ b/ascl-ads-comparison/ads_codes @@ -0,0 +1,2070 @@ +1999ascl.soft03001N +1999ascl.soft04001B +1999ascl.soft05001N +1999ascl.soft05002T +1999ascl.soft06001F +1999ascl.soft06002H +1999ascl.soft09001K +1999ascl.soft09002H +1999ascl.soft09003A +1999ascl.soft09004S +1999ascl.soft09005S +1999ascl.soft10001F +1999ascl.soft10002G +1999ascl.soft10003B +1999ascl.soft10004B +1999ascl.soft10005A +1999ascl.soft10006N +1999ascl.soft10007P +1999ascl.soft10008K +1999ascl.soft10009K +1999ascl.soft11001I +1999ascl.soft11002N +1999ascl.soft11003A +1999ascl.soft11004D +1999ascl.soft12001O +1999ascl.soft12002B +1999ascl.soft12003K +2000ascl.soft03001S +2000ascl.soft03002S +2000ascl.soft08001D +2000ascl.soft08002H +2000ascl.soft11001D +2001ascl.soft01001N +2001ascl.soft04001K +2001ascl.soft04002M +2002ascl.soft02001S +2010ascl.soft04001S +2010ascl.soft07001D +2010ascl.soft07002B +2010ascl.soft07003S +2010ascl.soft07004D +2010ascl.soft07005L +2010ascl.soft07006K +2010ascl.soft10001P +2010ascl.soft10002S +2010ascl.soft10003M +2010ascl.soft10004P +2010ascl.soft10005D +2010ascl.soft10006V +2010ascl.soft10007Z +2010ascl.soft10008K +2010ascl.soft10009M +2010ascl.soft10010D +2010ascl.soft10011E +2010ascl.soft10012O +2010ascl.soft10013N +2010ascl.soft10014S +2010ascl.soft10015S +2010ascl.soft10016A +2010ascl.soft10017O +2010ascl.soft10018S +2010ascl.soft10019C +2010ascl.soft10020R +2010ascl.soft10021S +2010ascl.soft10022O +2010ascl.soft10023N +2010ascl.soft10024Z +2010ascl.soft10025S +2010ascl.soft10026H +2010ascl.soft10027K +2010ascl.soft10028S +2010ascl.soft10029B +2010ascl.soft10030L +2010ascl.soft10031V +2010ascl.soft10032B +2010ascl.soft10033K +2010ascl.soft10034R +2010ascl.soft10035H +2010ascl.soft10036J +2010ascl.soft10037P +2010ascl.soft10038A +2010ascl.soft10039C +2010ascl.soft10040C +2010ascl.soft10041P +2010ascl.soft10042L +2010ascl.soft10043C +2010ascl.soft10044N +2010ascl.soft10045M +2010ascl.soft10046C +2010ascl.soft10047H +2010ascl.soft10048G +2010ascl.soft10049H +2010ascl.soft10050C +2010ascl.soft10051B +2010ascl.soft10052B +2010ascl.soft10053K +2010ascl.soft10054B +2010ascl.soft10055P +2010ascl.soft10056B +2010ascl.soft10057K +2010ascl.soft10058W +2010ascl.soft10059M +2010ascl.soft10060B +2010ascl.soft10061B +2010ascl.soft10062M +2010ascl.soft10063B +2010ascl.soft10064B +2010ascl.soft10065C +2010ascl.soft10066B +2010ascl.soft10067B +2010ascl.soft10068B +2010ascl.soft10069M +2010ascl.soft10070C +2010ascl.soft10071S +2010ascl.soft10072O +2010ascl.soft10073L +2010ascl.soft10074F +2010ascl.soft10075V +2010ascl.soft10076H +2010ascl.soft10077S +2010ascl.soft10078B +2010ascl.soft10079G +2010ascl.soft10080S +2010ascl.soft10081W +2010ascl.soft10082F +2010ascl.soft10083P +2010ascl.soft10084B +2010ascl.soft10085S +2010ascl.soft11001B +2010ascl.soft11002S +2010ascl.soft11003L +2010ascl.soft11004M +2010ascl.soft11005C +2010ascl.soft11006B +2010ascl.soft11007T +2010ascl.soft11008H +2010ascl.soft11009T +2010ascl.soft11010D +2010ascl.soft11011K +2010ascl.soft11012F +2010ascl.soft11013G +2010ascl.soft11014F +2010ascl.soft11015D +2010ascl.soft11016H +2010ascl.soft11017A +2010ascl.soft11018S +2010ascl.soft11019B +2010ascl.soft11020B +2010ascl.soft11021L +2010ascl.soft11022T +2010ascl.soft11023A +2011ascl.soft01001C +2011ascl.soft01002P +2011ascl.soft01003L +2011ascl.soft01004B +2011ascl.soft01005P +2011ascl.soft01006Z +2011ascl.soft01007S +2011ascl.soft01008V +2011ascl.soft01009B +2011ascl.soft01010T +2011ascl.soft02001L +2011ascl.soft02002D +2011ascl.soft02003K +2011ascl.soft02004K +2011ascl.soft02005S +2011ascl.soft02006A +2011ascl.soft02007S +2011ascl.soft02008M +2011ascl.soft02009K +2011ascl.soft02010H +2011ascl.soft02011B +2011ascl.soft02012R +2011ascl.soft02013C +2011ascl.soft02014C +2011ascl.soft02015M +2011ascl.soft02016A +2011ascl.soft02017M +2011ascl.soft02018G +2011ascl.soft02019E +2011ascl.soft02020N +2011ascl.soft02021P +2011ascl.soft02022P +2011ascl.soft02023M +2011ascl.soft02024D +2011ascl.soft02025L +2011ascl.soft02026L +2011ascl.soft02027B +2011ascl.soft02028H +2011ascl.soft03001S +2011ascl.soft03002P +2011ascl.soft03003B +2011ascl.soft03004P +2011ascl.soft03005D +2011ascl.soft03006D +2011ascl.soft03007D +2011ascl.soft03008S +2011ascl.soft03009A +2011ascl.soft03010C +2011ascl.soft03011C +2011ascl.soft03012H +2011ascl.soft03014N +2011ascl.soft03015M +2011ascl.soft04001B +2011ascl.soft04002C +2011ascl.soft04003L +2011ascl.soft04004P +2011ascl.soft04005B +2011ascl.soft04006V +2011ascl.soft04007K +2011ascl.soft04008C +2011ascl.soft04009C +2011ascl.soft04010P +2011ascl.soft04011S +2011ascl.soft04012G +2011ascl.soft04013M +2011ascl.soft04014P +2011ascl.soft05001T +2011ascl.soft05002R +2011ascl.soft05003C +2011ascl.soft05004C +2011ascl.soft05005N +2011ascl.soft05006H +2011ascl.soft05007K +2011ascl.soft05008S +2011ascl.soft05009B +2011ascl.soft05010A +2011ascl.soft05011S +2011ascl.soft05012G +2011ascl.soft05013C +2011ascl.soft05014V +2011ascl.soft06001A +2011ascl.soft06002P +2011ascl.soft06003M +2011ascl.soft06004S +2011ascl.soft06005S +2011ascl.soft06006D +2011ascl.soft06007S +2011ascl.soft06008B +2011ascl.soft06009M +2011ascl.soft06010D +2011ascl.soft06011M +2011ascl.soft06012D +2011ascl.soft06013H +2011ascl.soft06014G +2011ascl.soft06015O +2011ascl.soft06016W +2011ascl.soft06017C +2011ascl.soft06018P +2011ascl.soft06019L +2011ascl.soft06020B +2011ascl.soft06021F +2011ascl.soft06022A +2011ascl.soft06023P +2011ascl.soft06024K +2011ascl.soft06025L +2011ascl.soft06026S +2011ascl.soft07001B +2011ascl.soft07002B +2011ascl.soft07003C +2011ascl.soft07004L +2011ascl.soft07005F +2011ascl.soft07006C +2011ascl.soft07007P +2011ascl.soft07008E +2011ascl.soft07009L +2011ascl.soft07010R +2011ascl.soft07011S +2011ascl.soft07012B +2011ascl.soft07013I +2011ascl.soft07014W +2011ascl.soft07015K +2011ascl.soft07016L +2011ascl.soft07017R +2011ascl.soft07018G +2011ascl.soft07019L +2011ascl.soft08001K +2011ascl.soft08002M +2011ascl.soft08003C +2011ascl.soft08004B +2011ascl.soft08005F +2011ascl.soft08006C +2011ascl.soft08007F +2011ascl.soft08008L +2011ascl.soft08009A +2011ascl.soft08010B +2011ascl.soft08011B +2011ascl.soft08012L +2011ascl.soft08013B +2011ascl.soft08014D +2011ascl.soft08015D +2011ascl.soft08016D +2011ascl.soft08017B +2011ascl.soft08018O +2011ascl.soft08019C +2011ascl.soft09001G +2011ascl.soft09002C +2011ascl.soft09003B +2011ascl.soft09004A +2011ascl.soft09005C +2011ascl.soft09006F +2011ascl.soft09007R +2011ascl.soft09008C +2011ascl.soft09009P +2011ascl.soft09010T +2011ascl.soft09011K +2011ascl.soft09012S +2011ascl.soft09013T +2011ascl.soft09014W +2011ascl.soft09015M +2011ascl.soft09016S +2011ascl.soft09017S +2011ascl.soft09018A +2011ascl.soft09019E +2011ascl.soft09020H +2011ascl.soft09021H +2011ascl.soft09022H +2011ascl.soft09023G +2011ascl.soft09024M +2011ascl.soft10001D +2011ascl.soft10002G +2011ascl.soft10003R +2011ascl.soft10004W +2011ascl.soft10005F +2011ascl.soft10006B +2011ascl.soft10007K +2011ascl.soft10008L +2011ascl.soft10009S +2011ascl.soft10010E +2011ascl.soft10011D +2011ascl.soft10012V +2011ascl.soft10013S +2011ascl.soft10014G +2011ascl.soft10015K +2011ascl.soft10016R +2011ascl.soft10017C +2011ascl.soft10018C +2011ascl.soft10019P +2011ascl.soft10020C +2011ascl.soft10021M +2011ascl.soft10022C +2011ascl.soft10023C +2011ascl.soft10024C +2011ascl.soft10025P +2011ascl.soft11001H +2011ascl.soft11002M +2011ascl.soft11003M +2011ascl.soft11004N +2011ascl.soft11005D +2011ascl.soft11006N +2011ascl.soft11007S +2011ascl.soft11008M +2011ascl.soft11009B +2011ascl.soft11010R +2011ascl.soft11011L +2011ascl.soft11012C +2011ascl.soft11013I +2011ascl.soft11014P +2011ascl.soft11015N +2011ascl.soft12001D +2011ascl.soft12002M +2011ascl.soft12003C +2011ascl.soft12004B +2011ascl.soft12005F +2011ascl.soft12006R +2011ascl.soft12007P +2011ascl.soft12008S +2011ascl.soft12009P +2011ascl.soft12010L +2011ascl.soft12011P +2011ascl.soft12012N +2011ascl.soft12013D +2011ascl.soft12014R +2011ascl.soft12015D +2011ascl.soft12016M +2011ascl.soft12017E +2011ascl.soft12018L +2011ascl.soft12019C +2012ascl.soft01001H +2012ascl.soft01002P +2012ascl.soft01003P +2012ascl.soft01004D +2012ascl.soft01005C +2012ascl.soft01006U +2012ascl.soft01007B +2012ascl.soft01008C +2012ascl.soft01009B +2012ascl.soft01010R +2012ascl.soft01011W +2012ascl.soft01012C +2012ascl.soft01013S +2012ascl.soft01014J +2012ascl.soft01015F +2012ascl.soft01016C +2012ascl.soft01017F +2012ascl.soft02001W +2012ascl.soft02002K +2012ascl.soft02003K +2012ascl.soft02004K +2012ascl.soft02005S +2012ascl.soft02006H +2012ascl.soft02007D +2012ascl.soft02008A +2012ascl.soft02009S +2012ascl.soft02010S +2012ascl.soft02011L +2012ascl.soft02012D +2012ascl.soft02013V +2012ascl.soft02014B +2012ascl.soft02015D +2012ascl.soft03001B +2012ascl.soft03002B +2012ascl.soft03003C +2012ascl.soft03004B +2012ascl.soft03005V +2012ascl.soft03006A +2012ascl.soft03007K +2012ascl.soft03008T +2012ascl.soft03009K +2012ascl.soft03010M +2012ascl.soft03011G +2012ascl.soft03012R +2012ascl.soft03013S +2012ascl.soft04001P +2012ascl.soft04002S +2012ascl.soft04003D +2012ascl.soft04004I +2012ascl.soft04005W +2012ascl.soft04006S +2012ascl.soft04007H +2012ascl.soft04008H +2012ascl.soft04009G +2012ascl.soft04010K +2012ascl.soft04011A +2012ascl.soft04012C +2012ascl.soft04013T +2012ascl.soft04014M +2012ascl.soft04015R +2012ascl.soft04016P +2012ascl.soft04017M +2012ascl.soft05001S +2012ascl.soft05002S +2012ascl.soft05003K +2012ascl.soft05004P +2012ascl.soft05005P +2012ascl.soft05006G +2012ascl.soft05007U +2012ascl.soft05008R +2012ascl.soft05009S +2012ascl.soft05010L +2012ascl.soft05011E +2012ascl.soft06001B +2012ascl.soft06002L +2012ascl.soft06003S +2012ascl.soft06004H +2012ascl.soft06005L +2012ascl.soft06006M +2012ascl.soft06007S +2012ascl.soft06008P +2012ascl.soft06009P +2012ascl.soft06010M +2012ascl.soft06011C +2012ascl.soft06012E +2012ascl.soft06013R +2012ascl.soft06014K +2012ascl.soft07001E +2012ascl.soft07002S +2012ascl.soft07003T +2012ascl.soft07004R +2012ascl.soft07005V +2012ascl.soft07006P +2012ascl.soft07007T +2012ascl.soft07008C +2012ascl.soft07009B +2012ascl.soft07010C +2012ascl.soft07011S +2012ascl.soft07012H +2012ascl.soft07013S +2012ascl.soft07014N +2012ascl.soft08001L +2012ascl.soft08002L +2012ascl.soft08003L +2012ascl.soft08004S +2012ascl.soft08005A +2012ascl.soft08006B +2012ascl.soft08007K +2012ascl.soft08008J +2012ascl.soft08009H +2012ascl.soft08010S +2012ascl.soft08011F +2012ascl.soft08012D +2012ascl.soft08013F +2012ascl.soft08014V +2012ascl.soft08015A +2012ascl.soft08016H +2012ascl.soft08017R +2012ascl.soft08018H +2012ascl.soft08019M +2012ascl.soft08020K +2012ascl.soft08021M +2012ascl.soft09001S +2012ascl.soft09002P +2012ascl.soft09003J +2012ascl.soft09004M +2012ascl.soft09005G +2012ascl.soft09006K +2012ascl.soft09007S +2012ascl.soft09008T +2012ascl.soft09009L +2012ascl.soft09010N +2012ascl.soft09011K +2012ascl.soft09012R +2012ascl.soft09013S +2012ascl.soft09014Z +2012ascl.soft09015F +2012ascl.soft10001C +2012ascl.soft10002C +2012ascl.soft10003F +2012ascl.soft10004F +2012ascl.soft10005P +2012ascl.soft10006D +2012ascl.soft10007F +2012ascl.soft10008B +2012ascl.soft10009S +2012ascl.soft10010B +2012ascl.soft10011B +2012ascl.soft10012B +2012ascl.soft10013D +2012ascl.soft10014L +2012ascl.soft10015H +2012ascl.soft10016S +2012ascl.soft10017H +2012ascl.soft10018M +2012ascl.soft10019O +2012ascl.soft10020E +2012ascl.soft10021I +2012ascl.soft10022G +2012ascl.soft10023G +2012ascl.soft10024J +2012ascl.soft10025G +2012ascl.soft10026N +2012ascl.soft10027H +2012ascl.soft10028M +2012ascl.soft10029G +2012ascl.soft10030W +2012ascl.soft10031W +2012ascl.soft11001L +2012ascl.soft11002I +2012ascl.soft11003D +2012ascl.soft11004S +2012ascl.soft11005K +2012ascl.soft11006C +2012ascl.soft12001B +2012ascl.soft12002G +2012ascl.soft12003G +2012ascl.soft12004U +2012ascl.soft12005S +2012ascl.soft12006K +2012ascl.soft12007S +2012ascl.soft12008R +2012ascl.soft12009H +2012ascl.soft12010K +2012ascl.soft12011S +2012ascl.soft12012H +2012ascl.soft12013L +2012ascl.soft12014B +2012ascl.soft12015W +2013ascl.soft01001B +2013ascl.soft02001W +2013ascl.soft02002H +2013ascl.soft02003C +2013ascl.soft02004R +2013ascl.soft02005E +2013ascl.soft02006S +2013ascl.soft02007G +2013ascl.soft02008B +2013ascl.soft02009B +2013ascl.soft02010M +2013ascl.soft02011M +2013ascl.soft02012F +2013ascl.soft02013S +2013ascl.soft02014B +2013ascl.soft02015S +2013ascl.soft02016B +2013ascl.soft02017E +2013ascl.soft03001L +2013ascl.soft03002F +2013ascl.soft03003A +2013ascl.soft03004V +2013ascl.soft03005Y +2013ascl.soft03006V +2013ascl.soft03007B +2013ascl.soft03008A +2013ascl.soft03009M +2013ascl.soft03010K +2013ascl.soft03011Z +2013ascl.soft03012H +2013ascl.soft03013K +2013ascl.soft03014H +2013ascl.soft03015H +2013ascl.soft03016Y +2013ascl.soft03017F +2013ascl.soft03018P +2013ascl.soft03019M +2013ascl.soft03020J +2013ascl.soft03021B +2013ascl.soft03022S +2013ascl.soft03023S +2013ascl.soft03024K +2013ascl.soft03025O +2013ascl.soft03026B +2013ascl.soft03027S +2013ascl.soft03028O +2013ascl.soft03029F +2013ascl.soft03030J +2013ascl.soft04001M +2013ascl.soft04002G +2013ascl.soft04003H +2013ascl.soft04004T +2013ascl.soft04005N +2013ascl.soft04006N +2013ascl.soft04007K +2013ascl.soft04008T +2013ascl.soft04009N +2013ascl.soft04011C +2013ascl.soft04012F +2013ascl.soft04013R +2013ascl.soft04014P +2013ascl.soft04015P +2013ascl.soft04016B +2013ascl.soft04017C +2013ascl.soft04018C +2013ascl.soft04019G +2013ascl.soft04020M +2013ascl.soft04021L +2013ascl.soft04022C +2013ascl.soft05001R +2013ascl.soft05002P +2013ascl.soft05003B +2013ascl.soft05004C +2013ascl.soft05005S +2013ascl.soft05006H +2013ascl.soft05007M +2013ascl.soft05008Y +2013ascl.soft05009J +2013ascl.soft05010G +2013ascl.soft05011W +2013ascl.soft05012B +2013ascl.soft05013B +2013ascl.soft05014H +2013ascl.soft05015P +2013ascl.soft06001G +2013ascl.soft06002D +2013ascl.soft06003L +2013ascl.soft06004G +2013ascl.soft06005C +2013ascl.soft06006P +2013ascl.soft06007J +2013ascl.soft06008S +2013ascl.soft06009E +2013ascl.soft06010H +2013ascl.soft06011F +2013ascl.soft06012R +2013ascl.soft06013L +2013ascl.soft06014S +2013ascl.soft06015M +2013ascl.soft06016A +2013ascl.soft07001C +2013ascl.soft07002A +2013ascl.soft07003S +2013ascl.soft07004R +2013ascl.soft07005W +2013ascl.soft07006B +2013ascl.soft07007G +2013ascl.soft07008C +2013ascl.soft07009K +2013ascl.soft07010R +2013ascl.soft07011P +2013ascl.soft07012G +2013ascl.soft07013S +2013ascl.soft07014M +2013ascl.soft07015M +2013ascl.soft07016B +2013ascl.soft07017S +2013ascl.soft07018B +2013ascl.soft07019C +2013ascl.soft07020C +2013ascl.soft08001V +2013ascl.soft08002V +2013ascl.soft08003G +2013ascl.soft08004M +2013ascl.soft08005G +2013ascl.soft08006V +2013ascl.soft08007T +2013ascl.soft08008T +2013ascl.soft08009C +2013ascl.soft08010T +2013ascl.soft08011K +2013ascl.soft08012P +2013ascl.soft08013S +2013ascl.soft08014K +2013ascl.soft08014M +2013ascl.soft08015Y +2013ascl.soft08016M +2013ascl.soft08017D +2013ascl.soft08018D +2013ascl.soft09001C +2013ascl.soft09002D +2013ascl.soft09003S +2013ascl.soft09004B +2013ascl.soft09005J +2013ascl.soft09006K +2013ascl.soft09007U +2013ascl.soft09008V +2013ascl.soft10001J +2013ascl.soft10002G +2013ascl.soft10003H +2013ascl.soft10004C +2013ascl.soft10005B +2013ascl.soft10006B +2013ascl.soft10007J +2013ascl.soft10008P +2013ascl.soft11001S +2013ascl.soft11002S +2013ascl.soft11003K +2013ascl.soft11004B +2013ascl.soft11005M +2013ascl.soft11006C +2013ascl.soft11007B +2013ascl.soft11008S +2013ascl.soft11009C +2013ascl.soft11010L +2013ascl.soft11011H +2013ascl.soft11012H +2013ascl.soft12001P +2013ascl.soft12002S +2013ascl.soft12003R +2013ascl.soft12004W +2013ascl.soft12005X +2013ascl.soft12006D +2013ascl.soft12007G +2013ascl.soft12008G +2013ascl.soft12009D +2013ascl.soft12010B +2013ascl.soft12011N +2013ascl.soft12012H +2013ascl.soft12013W +2013ascl.soft12014H +2014ascl.soft01001B +2014ascl.soft01002M +2014ascl.soft01003M +2014ascl.soft01004E +2014ascl.soft01005H +2014ascl.soft01006A +2014ascl.soft01007M +2014ascl.soft01008H +2014ascl.soft01009F +2014ascl.soft01010S +2014ascl.soft02001K +2014ascl.soft02002B +2014ascl.soft02003U +2014ascl.soft02004G +2014ascl.soft02005B +2014ascl.soft02006H +2014ascl.soft02007D +2014ascl.soft02008C +2014ascl.soft02009R +2014ascl.soft02010E +2014ascl.soft02011G +2014ascl.soft02012N +2014ascl.soft02013C +2014ascl.soft02014J +2014ascl.soft02015W +2014ascl.soft02016M +2014ascl.soft02017M +2014ascl.soft02018K +2014ascl.soft02019I +2014ascl.soft02020B +2014ascl.soft02021M +2014ascl.soft02022M +2014ascl.soft02023L +2014ascl.soft02024K +2014ascl.soft02025L +2014ascl.soft02026K +2014ascl.soft02027M +2014ascl.soft02028B +2014ascl.soft02029M +2014ascl.soft02030Z +2014ascl.soft02031D +2014ascl.soft02032P +2014ascl.soft02033R +2014ascl.soft02034C +2014ascl.soft02035Z +2014ascl.soft03001T +2014ascl.soft03002B +2014ascl.soft03003C +2014ascl.soft03004B +2014ascl.soft03005C +2014ascl.soft03006M +2014ascl.soft03007C +2014ascl.soft03008J +2014ascl.soft03009A +2014ascl.soft03010K +2014ascl.soft03011B +2014ascl.soft03012Y +2014ascl.soft03013L +2014ascl.soft03014M +2014ascl.soft03015L +2014ascl.soft03016L +2014ascl.soft03017C +2014ascl.soft03018C +2014ascl.soft03019K +2014ascl.soft03020K +2014ascl.soft03021W +2014ascl.soft03022C +2014ascl.soft03023P +2014ascl.soft03024D +2014ascl.soft03025W +2014ascl.soft03026I +2014ascl.soft04001C +2014ascl.soft04002A +2014ascl.soft04004S +2014ascl.soft04005L +2014ascl.soft04006H +2014ascl.soft04007L +2014ascl.soft04008S +2014ascl.soft04009K +2014ascl.soft04010V +2014ascl.soft04011C +2014ascl.soft04012T +2014ascl.soft04013B +2014ascl.soft04014M +2014ascl.soft04015D +2014ascl.soft04016B +2014ascl.soft04017C +2014ascl.soft05001C +2014ascl.soft05002G +2014ascl.soft05003C +2014ascl.soft05004R +2014ascl.soft05005T +2014ascl.soft05006K +2014ascl.soft05007G +2014ascl.soft05008G +2014ascl.soft05009B +2014ascl.soft05010J +2014ascl.soft05011A +2014ascl.soft05012D +2014ascl.soft05013E +2014ascl.soft05014B +2014ascl.soft05015D +2014ascl.soft05016H +2014ascl.soft05017P +2014ascl.soft05018M +2014ascl.soft06001F +2014ascl.soft06002M +2014ascl.soft06003H +2014ascl.soft06004C +2014ascl.soft06005D +2014ascl.soft06006A +2014ascl.soft06007W +2014ascl.soft06008W +2014ascl.soft06009K +2014ascl.soft06010R +2014ascl.soft06011B +2014ascl.soft06012H +2014ascl.soft06013D +2014ascl.soft06014B +2014ascl.soft06015A +2014ascl.soft06016G +2014ascl.soft06017W +2014ascl.soft06018S +2014ascl.soft06019L +2014ascl.soft06020P +2014ascl.soft07001K +2014ascl.soft07002W +2014ascl.soft07003M +2014ascl.soft07004D +2014ascl.soft07005O +2014ascl.soft07006A +2014ascl.soft07007S +2014ascl.soft07008F +2014ascl.soft07009L +2014ascl.soft07010J +2014ascl.soft07011B +2014ascl.soft07012R +2014ascl.soft07013V +2014ascl.soft07014S +2014ascl.soft07015P +2014ascl.soft07016B +2014ascl.soft07017A +2014ascl.soft07018V +2014ascl.soft07019G +2014ascl.soft07020Z +2014ascl.soft08001E +2014ascl.soft08002I +2014ascl.soft08003G +2014ascl.soft08004N +2014ascl.soft08005P +2014ascl.soft08006I +2014ascl.soft08007N +2014ascl.soft08008Y +2014ascl.soft08009P +2014ascl.soft08010B +2014ascl.soft08011H +2014ascl.soft08012F +2014ascl.soft08013D +2014ascl.soft08014H +2014ascl.soft08015C +2014ascl.soft08016L +2014ascl.soft08017C +2014ascl.soft08018D +2014ascl.soft08019S +2014ascl.soft08020S +2014ascl.soft08021D +2014ascl.soft08022B +2014ascl.soft08023O +2014ascl.soft09001V +2014ascl.soft09002T +2014ascl.soft09003Y +2014ascl.soft09004R +2014ascl.soft09005R +2014ascl.soft09006B +2014ascl.soft09007M +2014ascl.soft09008S +2014ascl.soft09009W +2014ascl.soft09010F +2014ascl.soft09011G +2014ascl.soft09012Z +2014ascl.soft09013Z +2014ascl.soft10001C +2014ascl.soft10002G +2014ascl.soft10003H +2014ascl.soft10004K +2014ascl.soft10005Y +2014ascl.soft11001T +2014ascl.soft11002S +2014ascl.soft11003S +2014ascl.soft11004T +2014ascl.soft11005A +2014ascl.soft11006L +2014ascl.soft11007B +2014ascl.soft11008B +2014ascl.soft11009L +2014ascl.soft11010V +2014ascl.soft11011M +2014ascl.soft11012M +2014ascl.soft11013W +2014ascl.soft11014D +2014ascl.soft11015B +2014ascl.soft11016K +2014ascl.soft11017K +2014ascl.soft11018G +2014ascl.soft11019A +2014ascl.soft11020H +2014ascl.soft11021R +2014ascl.soft11022S +2014ascl.soft11023W +2014ascl.soft11024B +2014ascl.soft11025F +2014ascl.soft11026F +2014ascl.soft11027V +2014ascl.soft12001S +2014ascl.soft12002W +2014ascl.soft12003D +2014ascl.soft12004K +2014ascl.soft12005T +2014ascl.soft12006M +2014ascl.soft12007C +2014ascl.soft12008M +2014ascl.soft12009A +2014ascl.soft12010L +2014ascl.soft12011T +2014ascl.soft12012K +2014ascl.soft12013A +2014ascl.soft12014R +2015ascl.soft01001A +2015ascl.soft01002R +2015ascl.soft01003Z +2015ascl.soft01004Z +2015ascl.soft01005M +2015ascl.soft01006B +2015ascl.soft01007C +2015ascl.soft01008S +2015ascl.soft01009M +2015ascl.soft01010J +2015ascl.soft01011W +2015ascl.soft01012K +2015ascl.soft01013S +2015ascl.soft01014B +2015ascl.soft01015B +2015ascl.soft01016D +2015ascl.soft02001P +2015ascl.soft02002G +2015ascl.soft02003S +2015ascl.soft02004V +2015ascl.soft02005B +2015ascl.soft02006P +2015ascl.soft02007M +2015ascl.soft02008D +2015ascl.soft02009P +2015ascl.soft02010R +2015ascl.soft02011H +2015ascl.soft02012T +2015ascl.soft02013A +2015ascl.soft02014H +2015ascl.soft02015L +2015ascl.soft02016G +2015ascl.soft02017S +2015ascl.soft02018F +2015ascl.soft02019C +2015ascl.soft02020F +2015ascl.soft02021B +2015ascl.soft02022B +2015ascl.soft02023W +2015ascl.soft03001B +2015ascl.soft03002M +2015ascl.soft03003K +2015ascl.soft03004G +2015ascl.soft03005C +2015ascl.soft03006D +2015ascl.soft03007M +2015ascl.soft03008G +2015ascl.soft03009T +2015ascl.soft03010M +2015ascl.soft03011M +2015ascl.soft04001K +2015ascl.soft04002R +2015ascl.soft04003E +2015ascl.soft04004B +2015ascl.soft04005S +2015ascl.soft04006S +2015ascl.soft04007P +2015ascl.soft04008C +2015ascl.soft04009K +2015ascl.soft04010W +2015ascl.soft04011K +2015ascl.soft04012T +2015ascl.soft04013A +2015ascl.soft04014A +2015ascl.soft04015H +2015ascl.soft04016W +2015ascl.soft04017F +2015ascl.soft04018S +2015ascl.soft04019F +2015ascl.soft04020M +2015ascl.soft04021D +2015ascl.soft05001G +2015ascl.soft05002P +2015ascl.soft05003K +2015ascl.soft05004M +2015ascl.soft05005E +2015ascl.soft05006H +2015ascl.soft05007C +2015ascl.soft05008D +2015ascl.soft05009D +2015ascl.soft05010N +2015ascl.soft05011S +2015ascl.soft05012A +2015ascl.soft05013I +2015ascl.soft05014K +2015ascl.soft05015A +2015ascl.soft05016A +2015ascl.soft05017A +2015ascl.soft05018P +2015ascl.soft05019L +2015ascl.soft05020I +2015ascl.soft05021D +2015ascl.soft05022L +2015ascl.soft05023B +2015ascl.soft05024P +2015ascl.soft05025B +2015ascl.soft05026T +2015ascl.soft05027O +2015ascl.soft05028J +2015ascl.soft05029P +2015ascl.soft05030G +2015ascl.soft05031B +2015ascl.soft05032P +2015ascl.soft05032R +2015ascl.soft05033M +2015ascl.soft05034B +2015ascl.soft06001W +2015ascl.soft06002G +2015ascl.soft06003M +2015ascl.soft06004V +2015ascl.soft06005F +2015ascl.soft06006B +2015ascl.soft06007K +2015ascl.soft06008N +2015ascl.soft06009C +2015ascl.soft06010H +2015ascl.soft07001D +2015ascl.soft07002F +2015ascl.soft07003M +2015ascl.soft07004H +2015ascl.soft07005T +2015ascl.soft07006M +2015ascl.soft07007B +2015ascl.soft07008B +2015ascl.soft07009T +2015ascl.soft07010M +2015ascl.soft07011K +2015ascl.soft07012B +2015ascl.soft07013P +2015ascl.soft07014M +2015ascl.soft07015S +2015ascl.soft07016L +2015ascl.soft07017K +2015ascl.soft07018Z +2015ascl.soft07019V +2015ascl.soft07020C +2015ascl.soft08001M +2015ascl.soft08002S +2015ascl.soft08003C +2015ascl.soft08004T +2015ascl.soft08005C +2015ascl.soft08006C +2015ascl.soft08007J +2015ascl.soft08008S +2015ascl.soft08009C +2015ascl.soft08010E +2015ascl.soft09001S +2015ascl.soft09002M +2015ascl.soft09002N +2015ascl.soft09003F +2015ascl.soft09004V +2015ascl.soft09005S +2015ascl.soft09006B +2015ascl.soft09007T +2015ascl.soft09008M +2015ascl.soft09009U +2015ascl.soft09010T +2015ascl.soft10001H +2015ascl.soft10002K +2015ascl.soft10003P +2015ascl.soft10004D +2015ascl.soft10005C +2015ascl.soft10006D +2015ascl.soft10007C +2015ascl.soft11001P +2015ascl.soft11002W +2015ascl.soft11003M +2015ascl.soft11004N +2015ascl.soft11005C +2015ascl.soft11006W +2015ascl.soft11007G +2015ascl.soft11008N +2015ascl.soft11009C +2015ascl.soft11010W +2015ascl.soft11011C +2015ascl.soft11012K +2015ascl.soft11013L +2015ascl.soft11014M +2015ascl.soft11015F +2015ascl.soft11016S +2015ascl.soft11017M +2015ascl.soft11018K +2015ascl.soft11019M +2015ascl.soft11020B +2015ascl.soft11021T +2015ascl.soft11022G +2015ascl.soft11023R +2015ascl.soft12001E +2015ascl.soft12002W +2015ascl.soft12003W +2015ascl.soft12004B +2015ascl.soft12005W +2015ascl.soft12006M +2015ascl.soft12007N +2015ascl.soft12008T +2015ascl.soft12009A +2015ascl.soft12010C +2015ascl.soft12011V +2015ascl.soft12012M +2015ascl.soft12013D +2015ascl.soft12014B +2015ascl.soft12015S +2015ascl.soft12016W +2015ascl.soft12017H +2015ascl.soft12018H +2015ascl.soft12019K +2015ascl.soft12020S +2016ascl.soft01001B +2016ascl.soft01002R +2016ascl.soft01003H +2016ascl.soft01004P +2016ascl.soft01005K +2016ascl.soft01006C +2016ascl.soft01007C +2016ascl.soft01007V +2016ascl.soft01008L +2016ascl.soft01009M +2016ascl.soft01010G +2016ascl.soft01011R +2016ascl.soft01012M +2016ascl.soft01013P +2016ascl.soft01014S +2016ascl.soft01015M +2016ascl.soft01016C +2016ascl.soft01017J +2016ascl.soft01018M +2016ascl.soft01019S +2016ascl.soft01020H +2016ascl.soft01020P +2016ascl.soft01021D +2016ascl.soft02001W +2016ascl.soft02002B +2016ascl.soft02003S +2016ascl.soft02004L +2016ascl.soft02005M +2016ascl.soft02006S +2016ascl.soft02007P +2016ascl.soft02008W +2016ascl.soft02009P +2016ascl.soft02010H +2016ascl.soft02011R +2016ascl.soft02012C +2016ascl.soft02013G +2016ascl.soft02014V +2016ascl.soft02015H +2016ascl.soft02016I +2016ascl.soft02017P +2016ascl.soft02018P +2016ascl.soft02019D +2016ascl.soft02020C +2016ascl.soft02021T +2016ascl.soft03001V +2016ascl.soft03002B +2016ascl.soft03003G +2016ascl.soft03004M +2016ascl.soft03005H +2016ascl.soft03006M +2016ascl.soft03007S +2016ascl.soft03008O +2016ascl.soft03009S +2016ascl.soft03010K +2016ascl.soft03011C +2016ascl.soft03012L +2016ascl.soft03013D +2016ascl.soft03013P +2016ascl.soft03014G +2016ascl.soft03015B +2016ascl.soft03016M +2016ascl.soft03017S +2016ascl.soft03018E +2016ascl.soft04001Z +2016ascl.soft04002T +2016ascl.soft04003W +2016ascl.soft04004R +2016ascl.soft04005H +2016ascl.soft04006U +2016ascl.soft04007B +2016ascl.soft04008L +2016ascl.soft04009E +2016ascl.soft04011I +2016ascl.soft04012A +2016ascl.soft05001H +2016ascl.soft05002F +2016ascl.soft05003V +2016ascl.soft05004M +2016ascl.soft05005B +2016ascl.soft05006G +2016ascl.soft05007N +2016ascl.soft05008K +2016ascl.soft05009K +2016ascl.soft05010F +2016ascl.soft05011D +2016ascl.soft05012A +2016ascl.soft05013D +2016ascl.soft05014Y +2016ascl.soft05015Z +2016ascl.soft05016E +2016ascl.soft05017S +2016ascl.soft06001R +2016ascl.soft06002J +2016ascl.soft06003W +2016ascl.soft06004Z +2016ascl.soft06005B +2016ascl.soft06006B +2016ascl.soft06007M +2016ascl.soft06008M +2016ascl.soft06009G +2016ascl.soft06010S +2016ascl.soft06011T +2016ascl.soft06012H +2016ascl.soft06013P +2016ascl.soft06014N +2016ascl.soft06015X +2016ascl.soft07001C +2016ascl.soft07002P +2016ascl.soft07003G +2016ascl.soft07004G +2016ascl.soft07005G +2016ascl.soft07006S +2016ascl.soft07007M +2016ascl.soft07008K +2016ascl.soft07009B +2016ascl.soft07010P +2016ascl.soft07011E +2016ascl.soft07012B +2016ascl.soft07013K +2016ascl.soft07014S +2016ascl.soft07015D +2016ascl.soft07016H +2016ascl.soft07017C +2016ascl.soft07018H +2016ascl.soft07019A +2016ascl.soft07020A +2016ascl.soft08001H +2016ascl.soft08002Z +2016ascl.soft08003D +2016ascl.soft08004C +2016ascl.soft08005F +2016ascl.soft08006G +2016ascl.soft08007R +2016ascl.soft08008H +2016ascl.soft08009K +2016ascl.soft08010G +2016ascl.soft08011E +2016ascl.soft08012F +2016ascl.soft08013D +2016ascl.soft08014A +2016ascl.soft08015D +2016ascl.soft08016W +2016ascl.soft08017G +2016ascl.soft08018G +2016ascl.soft08019S +2016ascl.soft08020J +2016ascl.soft09001M +2016ascl.soft09002S +2016ascl.soft09003H +2016ascl.soft09004A +2016ascl.soft09005A +2016ascl.soft09006C +2016ascl.soft09007B +2016ascl.soft09008G +2016ascl.soft09009P +2016ascl.soft09010S +2016ascl.soft09011B +2016ascl.soft09012P +2016ascl.soft09013P +2016ascl.soft09014M +2016ascl.soft09015S +2016ascl.soft09016P +2016ascl.soft09017R +2016ascl.soft09018A +2016ascl.soft09019L +2016ascl.soft09020H +2016ascl.soft09021C +2016ascl.soft09022B +2016ascl.soft09023S +2016ascl.soft09024S +2016ascl.soft09025L +2016ascl.soft10001V +2016ascl.soft10002B +2016ascl.soft10003S +2016ascl.soft10004W +2016ascl.soft10005G +2016ascl.soft10006R +2016ascl.soft10007V +2016ascl.soft10008K +2016ascl.soft10009C +2016ascl.soft10010C +2016ascl.soft10011B +2016ascl.soft10012K +2016ascl.soft10013C +2016ascl.soft10014M +2016ascl.soft10015R +2016ascl.soft10016S +2016ascl.soft11001B +2016ascl.soft11002A +2016ascl.soft11003B +2016ascl.soft11004G +2016ascl.soft11005K +2016ascl.soft11006M +2016ascl.soft11007J +2016ascl.soft11008K +2016ascl.soft11009N +2016ascl.soft11010T +2016ascl.soft11011T +2016ascl.soft11012K +2016ascl.soft11013M +2016ascl.soft11014R +2016ascl.soft11015S +2016ascl.soft11016S +2016ascl.soft11017B +2016ascl.soft11018B +2016ascl.soft11019S +2016ascl.soft11020C +2016ascl.soft11021P +2016ascl.soft12001S +2016ascl.soft12002H +2016ascl.soft12003R +2016ascl.soft12004R +2016ascl.soft12005R +2016ascl.soft12006A +2016ascl.soft12007T +2016ascl.soft12008M +2016ascl.soft12009D +2016ascl.soft12010T +2016ascl.soft12011C +2016ascl.soft12012L +2016ascl.soft12013R +2016ascl.soft12014B +2016ascl.soft12015F +2016ascl.soft12016S +2016ascl.soft12017S +2016ascl.soft12018T +2016ascl.soft12019H +2016ascl.soft12020S +2016ascl.soft12021C +2016ascl.soft12022Z +2017ascl.soft01001P +2017ascl.soft01002Y +2017ascl.soft01003G +2017ascl.soft01004M +2017ascl.soft01005B +2017ascl.soft01006B +2017ascl.soft01007C +2017ascl.soft01008S +2017ascl.soft01009S +2017ascl.soft01010B +2017ascl.soft01011B +2017ascl.soft01012P +2017ascl.soft02001G +2017ascl.soft02002F +2017ascl.soft02003K +2017ascl.soft02004C +2017ascl.soft02005K +2017ascl.soft02006S +2017ascl.soft02007W +2017ascl.soft02008T +2017ascl.soft02009B +2017ascl.soft02010B +2017ascl.soft02011R +2017ascl.soft02012C +2017ascl.soft03001N +2017ascl.soft03002A +2017ascl.soft03003S +2017ascl.soft03004M +2017ascl.soft03005S +2017ascl.soft03006L +2017ascl.soft03007K +2017ascl.soft03008Z +2017ascl.soft03009H +2017ascl.soft03010A +2017ascl.soft03011K +2017ascl.soft03012D +2017ascl.soft03013T +2017ascl.soft03014E +2017ascl.soft03015P +2017ascl.soft04001W +2017ascl.soft04002S +2017ascl.soft04003V +2017ascl.soft04004S +2017ascl.soft04005S +2017ascl.soft04006S +2017ascl.soft04007T +2017ascl.soft04008C +2017ascl.soft04009B +2017ascl.soft04010A +2017ascl.soft04011T +2017ascl.soft04012H +2017ascl.soft04013R +2017ascl.soft04014C +2017ascl.soft05001O +2017ascl.soft05002M +2017ascl.soft05003T +2017ascl.soft05004D +2017ascl.soft05005H +2017ascl.soft05006M +2017ascl.soft05007M +2017ascl.soft05008S +2017ascl.soft05009C +2017ascl.soft05010C +2017ascl.soft05011I +2017ascl.soft05012I +2017ascl.soft05013C +2017ascl.soft05014S +2017ascl.soft05015B +2017ascl.soft05016J +2017ascl.soft05017C +2017ascl.soft06001B +2017ascl.soft06002L +2017ascl.soft06003E +2017ascl.soft06004S +2017ascl.soft06005M +2017ascl.soft06006B +2017ascl.soft06007V +2017ascl.soft06008M +2017ascl.soft06009C +2017ascl.soft06010S +2017ascl.soft06011L +2017ascl.soft06012G +2017ascl.soft07001W +2017ascl.soft07002R +2017ascl.soft07003B +2017ascl.soft07004M +2017ascl.soft07005B +2017ascl.soft07006P +2017ascl.soft07007C +2017ascl.soft08001B +2017ascl.soft08002D +2017ascl.soft08003D +2017ascl.soft08004G +2017ascl.soft08005A +2017ascl.soft08006S +2017ascl.soft08007G +2017ascl.soft08008S +2017ascl.soft08009S +2017ascl.soft08010M +2017ascl.soft08011H +2017ascl.soft08012S +2017ascl.soft08013M +2017ascl.soft08014L +2017ascl.soft08015B +2017ascl.soft08016C +2017ascl.soft08017V +2017ascl.soft08018M +2017ascl.soft08019E +2017ascl.soft08020M +2017ascl.soft08021C +2017ascl.soft08022Z +2017ascl.soft08023M +2017ascl.soft08024C +2017ascl.soft08025F +2017ascl.soft08026H +2017ascl.soft08027H +2017ascl.soft08028D +2017ascl.soft08029M +2017ascl.soft08030G +2017ascl.soft08030T +2017ascl.soft09001C +2017ascl.soft09002P +2017ascl.soft09003C +2017ascl.soft09004C +2017ascl.soft09005B +2017ascl.soft09006D +2017ascl.soft09007R +2017ascl.soft09008F +2017ascl.soft09009S +2017ascl.soft09010W +2017ascl.soft09011L +2017ascl.soft10001P +2017ascl.soft10002L +2017ascl.soft10003E +2017ascl.soft10004M +2017ascl.soft10005L +2017ascl.soft10006G +2017ascl.soft10007L +2017ascl.soft10008T +2017ascl.soft10009S +2017ascl.soft10010M +2017ascl.soft10011D +2017ascl.soft10012B +2017ascl.soft10013K +2017ascl.soft10014B +2017ascl.soft10015B +2017ascl.soft10016B +2017ascl.soft10017K +2017ascl.soft10018S +2017ascl.soft10019N +2017ascl.soft10020M +2017ascl.soft10021L +2017ascl.soft10022T +2017ascl.soft10023G +2017ascl.soft10024E +2017ascl.soft11001M +2017ascl.soft11002R +2017ascl.soft11003W +2017ascl.soft11004L +2017ascl.soft11005R +2017ascl.soft11006M +2017ascl.soft11007R +2017ascl.soft11008R +2017ascl.soft11009E +2017ascl.soft11010M +2017ascl.soft11011P +2017ascl.soft11012M +2017ascl.soft11013W +2017ascl.soft11014D +2017ascl.soft11015D +2017ascl.soft11016M +2017ascl.soft11017N +2017ascl.soft11018R +2017ascl.soft11019L +2017ascl.soft11020G +2017ascl.soft11021B +2017ascl.soft11022H +2017ascl.soft11023H +2017ascl.soft11024M +2017ascl.soft12001W +2017ascl.soft12002D +2017ascl.soft12003B +2017ascl.soft12004M +2017ascl.soft12005S +2017ascl.soft12006A +2017ascl.soft12007F +2017ascl.soft12008C +2017ascl.soft12009M +2017ascl.soft12010K +2017ascl.soft12011J +2017ascl.soft12012B +2017ascl.soft12013C +2017ascl.soft12014C +2017ascl.soft12015S +2017ascl.soft12016S +2018ascl.soft01001G +2018ascl.soft01002Z +2018ascl.soft01003S +2018ascl.soft01004F +2018ascl.soft01005S +2018ascl.soft01006S +2018ascl.soft01007S +2018ascl.soft01008V +2018ascl.soft01009A +2018ascl.soft01010S +2018ascl.soft01011G +2018ascl.soft01012F +2018ascl.soft02001G +2018ascl.soft02002C +2018ascl.soft02003V +2018ascl.soft02004S +2018ascl.soft02005K +2018ascl.soft02006L +2018ascl.soft02007G +2018ascl.soft02008K +2018ascl.soft02009M +2018ascl.soft02010L +2018ascl.soft02011D +2018ascl.soft02012H +2018ascl.soft02013Z +2018ascl.soft02014M +2018ascl.soft02015M +2018ascl.soft02016C +2018ascl.soft03001E +2018ascl.soft03002H +2018ascl.soft03003M +2018ascl.soft03004D +2018ascl.soft03005B +2018ascl.soft03006P +2018ascl.soft03007S +2018ascl.soft03008K +2018ascl.soft03009H +2018ascl.soft03010B +2018ascl.soft03011H +2018ascl.soft03012U +2018ascl.soft03013K +2018ascl.soft03014Y +2018ascl.soft03015B +2018ascl.soft04001Y +2018ascl.soft04002M +2018ascl.soft04003V +2018ascl.soft04004G +2018ascl.soft04005D +2018ascl.soft04006R +2018ascl.soft04007M +2018ascl.soft04008S +2018ascl.soft04009M +2018ascl.soft04010C +2018ascl.soft04011M +2018ascl.soft04012B +2018ascl.soft04013L +2018ascl.soft04014C +2018ascl.soft04015Y +2018ascl.soft04016G +2018ascl.soft04017S +2018ascl.soft04018G +2018ascl.soft04019R +2018ascl.soft04020F +2018ascl.soft04021W +2018ascl.soft04022M +2018ascl.soft04023P +2018ascl.soft04024P +2018ascl.soft04025K +2018ascl.soft04026S +2018ascl.soft05001M +2018ascl.soft05002O +2018ascl.soft05003S +2018ascl.soft05004H +2018ascl.soft05005M +2018ascl.soft05006R +2018ascl.soft05007F +2018ascl.soft05008V +2018ascl.soft05009K +2018ascl.soft05010G +2018ascl.soft05011F +2018ascl.soft05012P +2018ascl.soft05014P +2018ascl.soft05015K +2018ascl.soft05016S +2018ascl.soft05017P +2018ascl.soft05018Y +2018ascl.soft05019B +2018ascl.soft05020S +2018ascl.soft05021K +2018ascl.soft05022C +2018ascl.soft05023G +2018ascl.soft05024C +2018ascl.soft05025C +2018ascl.soft05026S +2018ascl.soft05027B +2018ascl.soft05028B +2018ascl.soft05029S +2018ascl.soft05030T +2018ascl.soft05031K +2018ascl.soft05032S +2018ascl.soft06001C +2018ascl.soft06002K +2018ascl.soft06003V +2018ascl.soft06004C +2018ascl.soft06005C +2018ascl.soft06006G +2018ascl.soft06007L +2018ascl.soft06008O +2018ascl.soft06009C +2018ascl.soft06010K +2018ascl.soft06011S +2018ascl.soft06012B +2018ascl.soft06013M +2018ascl.soft06014H +2018ascl.soft06015B +2018ascl.soft06016B +2018ascl.soft06017Z +2018ascl.soft06018C +2018ascl.soft06019R +2018ascl.soft06020K +2018ascl.soft06021A +2018ascl.soft06022C +2018ascl.soft06023O +2018ascl.soft06024M +2018ascl.soft06025H +2018ascl.soft06026V +2018ascl.soft06027V +2018ascl.soft06028P +2018ascl.soft06029E +2018ascl.soft06030H +2018ascl.soft06031M +2018ascl.soft06032P +2018ascl.soft07001R +2018ascl.soft07002R +2018ascl.soft07003N +2018ascl.soft07004E +2018ascl.soft07005S +2018ascl.soft07006D +2018ascl.soft07007P +2018ascl.soft07008P +2018ascl.soft07009M +2018ascl.soft07010M +2018ascl.soft07011H +2018ascl.soft07012C +2018ascl.soft07013D +2018ascl.soft07014P +2018ascl.soft07015R +2018ascl.soft07016M +2018ascl.soft07017W +2018ascl.soft07018T +2018ascl.soft07019Z +2018ascl.soft07020K +2018ascl.soft07021J +2018ascl.soft07022L +2018ascl.soft07023B +2018ascl.soft07024H +2018ascl.soft07025E +2018ascl.soft07026R +2018ascl.soft07027F +2018ascl.soft07028B +2018ascl.soft07029L +2018ascl.soft07030I +2018ascl.soft07031I +2018ascl.soft07032J +2018ascl.soft07033J +2018ascl.soft08001K +2018ascl.soft08002G +2018ascl.soft08003C +2018ascl.soft08004G +2018ascl.soft08005C +2018ascl.soft08006K +2018ascl.soft08007M +2018ascl.soft08008R +2018ascl.soft08009S +2018ascl.soft08010Z +2018ascl.soft08011H +2018ascl.soft09001T +2018ascl.soft09002P +2018ascl.soft09003K +2018ascl.soft09004B +2018ascl.soft09005H +2018ascl.soft09006G +2018ascl.soft09007V +2018ascl.soft09008G +2018ascl.soft09009B +2018ascl.soft09010V +2018ascl.soft09011M +2018ascl.soft09012H +2018ascl.soft09013S +2018ascl.soft09014C +2018ascl.soft09015D +2018ascl.soft09016T +2018ascl.soft10001J +2018ascl.soft10002B +2018ascl.soft10003S +2018ascl.soft10004B +2018ascl.soft10005L +2018ascl.soft10006S +2018ascl.soft10007S +2018ascl.soft10008W +2018ascl.soft10009E +2018ascl.soft10010N +2018ascl.soft10011O +2018ascl.soft10012E +2018ascl.soft10013S +2018ascl.soft10014D +2018ascl.soft10015S +2018ascl.soft10016M +2018ascl.soft10017B +2018ascl.soft10018H +2018ascl.soft10019W +2018ascl.soft10020W +2018ascl.soft10021G +2018ascl.soft11001S +2018ascl.soft11002A +2018ascl.soft11003V +2018ascl.soft11004B +2018ascl.soft11005L +2018ascl.soft11006L +2018ascl.soft11007B +2018ascl.soft11008V +2018ascl.soft11009S +2018ascl.soft11010W +2018ascl.soft11011B +2018ascl.soft11012R +2018ascl.soft11013W +2018ascl.soft11014R +2018ascl.soft11015N +2018ascl.soft11016K +2018ascl.soft11017B +2018ascl.soft11018R +2018ascl.soft11019I +2018ascl.soft11020K +2018ascl.soft12001W +2018ascl.soft12002J +2018ascl.soft12003B +2018ascl.soft12004M +2018ascl.soft12005L +2018ascl.soft12006W +2018ascl.soft12007Z +2018ascl.soft12008C +2018ascl.soft12009H +2018ascl.soft12010S +2018ascl.soft12011Y +2018ascl.soft12012B +2018ascl.soft12013L +2018ascl.soft12014G +2018ascl.soft12015G +2018ascl.soft12016E +2018ascl.soft12017P +2018ascl.soft12018W +2019ascl.soft01001N +2019ascl.soft01002G +2019ascl.soft01003C +2019ascl.soft01004M +2019ascl.soft01005R +2019ascl.soft01006M +2019ascl.soft01007T +2019ascl.soft01008T +2019ascl.soft01009T +2019ascl.soft01010T +2019ascl.soft01011A +2019ascl.soft01012B +2019ascl.soft02001P +2019ascl.soft02002T +2019ascl.soft02003E +2019ascl.soft02004M +2019ascl.soft02005L +2019ascl.soft02006N +2019ascl.soft02007L +2019ascl.soft02008O +2019ascl.soft02009L +2019ascl.soft02010H +2019ascl.soft02011S +2019ascl.soft02012A +2019ascl.soft03002S +2019ascl.soft03003G +2019ascl.soft03004V +2019ascl.soft03005R +2019ascl.soft03006H +2019ascl.soft03007K +2019ascl.soft03008A +2019ascl.soft03009R +2019ascl.soft03010Y +2019ascl.soft03011I +2019ascl.soft03012M +2019ascl.soft03013R +2019ascl.soft03014Z +2019ascl.soft03015N +2019ascl.soft03016A +2019ascl.soft03017S +2019ascl.soft04001S +2019ascl.soft04002S +2019ascl.soft04003T +2019ascl.soft04004C +2019ascl.soft04005A +2019ascl.soft04006N +2019ascl.soft04007F +2019ascl.soft04008C +2019ascl.soft04009A +2019ascl.soft04010S +2019ascl.soft04011R +2019ascl.soft04012P +2019ascl.soft04013S +2019ascl.soft04014C +2019ascl.soft04015M +2019ascl.soft04016A +2019ascl.soft04017T +2019ascl.soft04018T +2019ascl.soft04019C +2019ascl.soft04020S +2019ascl.soft04021K +2019ascl.soft04022F +2019ascl.soft04023K +2019ascl.soft04024P +2019ascl.soft04025S +2019ascl.soft04026H +2019ascl.soft04027H +2019ascl.soft04028L +2019ascl.soft04029J +2019ascl.soft04030E +2019ascl.soft05001B +2019ascl.soft05002S +2019ascl.soft05003H +2019ascl.soft05004K +2019ascl.soft05005C +2019ascl.soft05006C +2019ascl.soft05007B +2019ascl.soft05008K +2019ascl.soft05009J +2019ascl.soft05010F +2019ascl.soft05011F +2019ascl.soft05012H +2019ascl.soft05013S +2019ascl.soft05014S +2019ascl.soft05015J +2019ascl.soft05016D +2019ascl.soft05017S +2019ascl.soft05018A +2019ascl.soft05019B +2019ascl.soft05020A +2019ascl.soft05021H +2019ascl.soft05022A +2019ascl.soft05023V +2019ascl.soft05024A +2019ascl.soft05025J +2019ascl.soft05026J +2019ascl.soft05027B +2019ascl.soft06001B +2019ascl.soft06002B +2019ascl.soft06003B +2019ascl.soft06004T +2019ascl.soft06005G +2019ascl.soft06006E +2019ascl.soft06007E +2019ascl.soft06008B +2019ascl.soft06009K +2019ascl.soft06010C +2019ascl.soft06011Y +2019ascl.soft06012H +2019ascl.soft06013V +2019ascl.soft06014C +2019ascl.soft06015B +2019ascl.soft06016B +2019ascl.soft06017L +2019ascl.soft06018Z +2019ascl.soft06019P +2019ascl.soft06020C +2019ascl.soft06021R +2019ascl.soft06022B +2019ascl.soft07001P +2019ascl.soft07002L +2019ascl.soft07003H +2019ascl.soft07004B +2019ascl.soft07005O +2019ascl.soft07006G +2019ascl.soft07007N +2019ascl.soft07008S +2019ascl.soft07009M +2019ascl.soft07010Z +2019ascl.soft07011D +2019ascl.soft07012M +2019ascl.soft07013K +2019ascl.soft07014M +2019ascl.soft07015K +2019ascl.soft07016R +2019ascl.soft07017K +2019ascl.soft07018T +2019ascl.soft07019R +2019ascl.soft07020R +2019ascl.soft07021V +2019ascl.soft07022F +2019ascl.soft07023N +2019ascl.soft07024R +2019ascl.soft07025B +2019ascl.soft07026M +2019ascl.soft07027B +2019ascl.soft07028M +2019ascl.soft07029S +2019ascl.soft07030H +2019ascl.soft07031M +2019ascl.soft07032M +2019ascl.soft08001T +2019ascl.soft08002J +2019ascl.soft08003I +2019ascl.soft08004S +2019ascl.soft08005P +2019ascl.soft08006B +2019ascl.soft08007K +2019ascl.soft08008S +2019ascl.soft08009K +2019ascl.soft08010H +2019ascl.soft08011G +2019ascl.soft08012A +2019ascl.soft08013G +2019ascl.soft08014V +2019ascl.soft08015H +2019ascl.soft08016I +2019ascl.soft08017R +2019ascl.soft08018P +2019ascl.soft08019F +2019ascl.soft08020K +2019ascl.soft08021M +2019ascl.soft08022Y +2019ascl.soft08023A +2019ascl.soft08024S +2019ascl.soft08025M +2019ascl.soft09001K +2019ascl.soft09002C +2019ascl.soft09003H +2019ascl.soft09004H +2019ascl.soft09005P +2019ascl.soft09006R +2019ascl.soft09007R +2019ascl.soft09008P +2019ascl.soft09009K +2019ascl.soft09010S +2019ascl.soft09011A +2019ascl.soft09012H +2019ascl.soft09013M +2019ascl.soft09014H +2019ascl.soft10001P +2019ascl.soft10002C +2019ascl.soft10003L +2019ascl.soft10004S +2019ascl.soft10005F +2019ascl.soft10006M +2019ascl.soft10007H +2019ascl.soft10008D +2019ascl.soft10009B +2019ascl.soft10010F +2019ascl.soft10011F +2019ascl.soft10012S +2019ascl.soft10013B +2019ascl.soft10014S +2019ascl.soft10015S +2019ascl.soft10016N +2019ascl.soft10017H +2019ascl.soft10018L +2019ascl.soft10019T +2019ascl.soft10020J +2019ascl.soft10021T +2019ascl.soft10022S diff --git a/ascl-ads-comparison/ascl2a.txt b/ascl-ads-comparison/ascl2a.txt new file mode 100644 index 0000000..fc02d28 --- /dev/null +++ b/ascl-ads-comparison/ascl2a.txt @@ -0,0 +1,2068 @@ + ASCL ID Title + ascl:9903.001 LENSKY: Galactic Microlensing Probability + ascl:9904.001 BSGMODEL: The Bahcall-Soneira Galaxy Model + ascl:9905.001 CONSKY: A Sky CCD Integration Simulation + ascl:9905.002 ICOSAHEDRON: A package for pixelizing the sphere + ascl:9906.001 SLOPES: Least-squares linear regression lines for bivariate datasets + ascl:9906.002 EXTINCT: A computerized model of large-scale visual interstellar extinction + ascl:9909.001 PMCode: Particle-Mesh Code for Cosmological Simulations + ascl:9909.002 ANGSIZ: A general and practical method for calculating cosmological distances + ascl:9909.003 ISIS: A method for optimal image subtraction + ascl:9909.004 CMBFAST: A microwave anisotropy code + ascl:9909.005 BLOCK: A Bayesian block method to analyze structure in photon counting data + ascl:9910.001 Cloudy: Numerical simulation of plasmas and their spectra + ascl:9910.002 SPECTRUM: A stellar spectral synthesis program + ascl:9910.003 FASTELL: Fast calculation of a family of elliptical mass gravitational lens models + ascl:9910.004 COSMICS: Cosmological initial conditions and microwave anisotropy codes + ascl:9910.005 XSPEC: An X-ray spectral fitting package + ascl:9910.006 BHSKY: Visual distortions near a black hole + ascl:9910.007 WINGSPAN: A WINdows Gamma-ray SPectral Analysis program + ascl:9910.008 XSTAR: A program for calculating conditions and spectra of photoionized gases + ascl:9910.009 RADPACK: A RADical compression analysis PACKage for fitting to the CMB + ascl:9911.001 DUSTY: Radiation transport in a dusty environment + ascl:9911.002 IRAF: Image Reduction and Analysis Facility + ascl:9911.003 AIPS: Astronomical Image Processing System + ascl:9911.004 CHIANTI: A database for astrophysical emission line spectroscopy + ascl:9912.001 SPH_1D: Hierarchical gravity/SPH treecode for simulations of interacting galaxies + ascl:9912.002 FTOOLS: A general package of software to manipulate FITS files + ascl:9912.003 RVSAO 2.0: Digital Redshifts and Radial Velocities + ascl:0003.001 GADGET-2: A Code for Cosmological Simulations of Structure Formation + ascl:0003.002 SAOImage DS9: A utility for displaying astronomical images in the X11 window environment + ascl:0008.001 DDSCAT: The discrete dipole approximation for scattering and absorption of light by irregular particles + ascl:0008.002 RATRAN: Radiative Transfer and Molecular Excitation in One and Two Dimensions + ascl:0011.001 StarFinder: A code for stellar field analysis + ascl:0101.001 MILLISEARCH: A Search for Millilensing in BATSE GRB Data + ascl:0104.001 MLAPM: Simulating Structure Formation from Collisionless Matter + ascl:0104.002 CSENV: A code for the chemistry of CircumStellar ENVelopes + ascl:0202.001 PopRatio: A program to calculate atomic level populations in astrophysical plasmas + ascl:1004.001 GIM2D: Galaxy IMage 2D + ascl:1007.001 PINTofALE: Package for Interactive Analysis of Line Emission + ascl:1007.002 INFALL: A code for calculating the mean initial and final density profiles around a virialized dark matter halo + ascl:1007.003 GEMINI: A toolkit for analytical models of two-point correlations and inhomogeneous structure formation + ascl:1007.004 CMBEASY: An object-oriented code for the cosmic microwave background + ascl:1007.005 Arcetri Spectral Code for Thin Plasmas + ascl:1007.006 AMIGA: Adaptive Mesh Investigations of Galaxy Assembly + ascl:1010.001 CFITSIO: A FITS File Subroutine Library + ascl:1010.002 fpack: FITS Image Compression Program + ascl:1010.003 AMBER: Data Reduction Software + ascl:1010.004 Needatool: A Needlet Analysis Tool for Cosmological Data Processing + ascl:1010.005 Particle module of Piernik MHD code + ascl:1010.006 DSPSR: Digital Signal Processing Software for Pulsar Astronomy + ascl:1010.007 JAVELIN: Just Another Vehicle for Estimating Lags In Nuclei (formerly known as SPEAR) + ascl:1010.008 midIR_sensitivity: Mid-infrared astronomy with METIS + ascl:1010.009 ModeCode: Bayesian Parameter Estimation for Inflation + ascl:1010.010 Fast WMAP Likelihood Code and GSR PC Functions + ascl:1010.011 PSpectRe: A Pseudo-Spectral Code for (P)reheating + ascl:1010.012 glafic: Software Package for Analyzing Gravitational Lensing + ascl:1010.013 AstroGK: Astrophysical Gyrokinetics Code + ascl:1010.014 Athena: Grid-based code for astrophysical magnetohydrodynamics (MHD) + ascl:1010.015 Fyris Alpha: Computational Fluid Dynamics Code + ascl:1010.016 SpDust/SpDust.2: Code to Calculate Spinning Dust Spectra + ascl:1010.017 AOFlagger: RFI Software + ascl:1010.018 Emu CMB: Power spectrum emulator + ascl:1010.019 NBSymple: A Double Parallel, Symplectic N-body Code Running on Graphic Processing Units + ascl:1010.020 Libpsht: Algorithms for Efficient Spherical Harmonic Transforms + ascl:1010.021 velfit: A Code for Modeling Non-Circular Flows in Disk Galaxies + ascl:1010.022 GR1D: Open-Source Code for Spherically-Symmetric Stellar Collapse to Neutron Stars and Black Holes + ascl:1010.023 AstroSim: Collaborative Visualization of an Astrophysics Simulation in Second Life + ascl:1010.024 ADAPTSMOOTH: A Code for the Adaptive Smoothing of Astronomical Images + ascl:1010.025 SimFast21: Simulation of the Cosmological 21cm Signal + ascl:1010.026 SingLe: A F90-package devoted to Softened Gravity in gaseous discs + ascl:1010.027 SNANA: A Public Software Package for Supernova Analysis + ascl:1010.028 GALPROP: Code for Cosmic-ray Transport and Diffuse Emission Production + ascl:1010.029 DNEST: Diffusive Nested Sampling + ascl:1010.030 CosmicEmu: Cosmic Emulator for the Dark Matter Power Spectrum + ascl:1010.031 DimReduce: Nonlinear Dimensionality Reduction of Very Large Datasets with Locally Linear Embedding (LLE) and its Variants + ascl:1010.032 Extreme Deconvolution: Density Estimation using Gaussian Mixtures in the Presence of Noisy, Heterogeneous and Incomplete Data + ascl:1010.033 GALEV Evolutionary Synthesis Models + ascl:1010.034 iCosmo: An Interactive Cosmology Package + ascl:1010.035 SLR: Stellar Locus Regression + ascl:1010.036 Montage: An Astronomical Image Mosaicking Toolkit + ascl:1010.037 FastChi: A Fast Chi-squared Technique For Period Search of Irregularly Sampled Data + ascl:1010.038 Low Resolution Spectral Templates For AGNs and Galaxies From 0.03 -- 30 microns + ascl:1010.039 Parameter Estimation from Time-Series Data with Correlated Errors: A Wavelet-Based Method and its Application to Transit Light Curves + ascl:1010.040 Cosmic String Simulations + ascl:1010.041 FASTLens (FAst STatistics for weak Lensing): Fast Method for Weak Lensing Statistics and Map Making + ascl:1010.042 WeightMixer: Hybrid Cross-power Spectrum Estimation + ascl:1010.043 FSPS: Flexible Stellar Population Synthesis + ascl:1010.044 MAESTRO: An Adaptive Low Mach Number Hydrodynamics Algorithm for Stellar Flows + ascl:1010.045 PLUTO: A Code for Flows in Multiple Spatial Dimensions + ascl:1010.046 indexf: Line-strength Indices in Fully Calibrated FITS Spectra + ascl:1010.047 ISW and Weak Lensing Likelihood Code + ascl:1010.048 OCTGRAV: Sparse Octree Gravitational N-body Code on Graphics Processing Units + ascl:1010.049 Gas-momentum-kinetic SZ cross-correlations + ascl:1010.050 LensPerfect: Gravitational Lens Massmap Reconstructions Yielding Exact Reproduction of All Multiple Images + ascl:1010.051 NEMO: A Stellar Dynamics Toolbox + ascl:1010.052 EAZY: A Fast, Public Photometric Redshift Code + ascl:1010.053 Halofitting codes for DGP and Degravitation + ascl:1010.054 MagnetiCS.c: Cosmic String Loop Evolution and Magnetogenesis + ascl:1010.055 SYNOW: A Highly Parameterized Spectrum Synthesis Code for Direct Analysis of SN Spectra + ascl:1010.056 PHOENIX: A General-purpose State-of-the-art Stellar and Planetary Atmosphere Code + ascl:1010.057 Tiny Tim: Simulated Hubble Space Telescope PSFs + ascl:1010.058 VINE: A numerical code for simulating astrophysical systems using particles + ascl:1010.059 CESAM: A Free Code for Stellar Evolution Calculations + ascl:1010.060 Pencil: Finite-difference Code for Compressible Hydrodynamic Flows + ascl:1010.061 EyE: Enhance Your Extraction + ascl:1010.062 MissFITS: Basic Maintenance and Packaging Tasks on FITS Files + ascl:1010.063 SCAMP: Automatic Astrometric and Photometric Calibration + ascl:1010.064 SExtractor: Source Extractor + ascl:1010.065 Higher Post Newtonian Gravity Calculations + ascl:1010.066 SkyMaker: Astronomical Image Simulations Made Easy + ascl:1010.067 Stuff: Simulating “Perfect” Astronomical Catalogues + ascl:1010.068 SWarp: Resampling and Co-adding FITS Images Together + ascl:1010.069 WeightWatcher: Code to Produce Control Maps + ascl:1010.070 Fisher.py: Fisher Matrix Manipulation and Confidence Contour Plotting + ascl:1010.071 WSHAPE: Gravitational Softening and Adaptive Mass Resolution + ascl:1010.072 Enzo: AMR Cosmology Application + ascl:1010.073 partiview: Immersive 4D Interactive Visualization of Large-Scale Simulations + ascl:1010.074 StarCrash: 3-d Evolution of Self-gravitating Fluid Systems + ascl:1010.075 Radex: Fast Non-LTE Analysis of Interstellar Line Spectra + ascl:1010.076 Starlab: A Software Environment for Collisional Stellar Dynamics + ascl:1010.077 LAMDA: Leiden Atomic and Molecular Database + ascl:1010.078 AstroMD: A Multi Dimensional Visualization and Analysis Toolkit for Astrophysics + ascl:1010.079 Geant4: A Simulation Toolkit for the Passage of Particles through Matter + ascl:1010.080 GRACOS: Scalable and Load Balanced P3M Cosmological N-body Code + ascl:1010.081 MGGPOD: A Monte Carlo Suite for Gamma-Ray Astronomy + ascl:1010.082 FLASH: Adaptive Mesh Hydrodynamics Code for Modeling Astrophysical Thermonuclear Flashes + ascl:1010.083 MESA: Modules for Experiments in Stellar Astrophysics + ascl:1010.084 WhiskyMHD: Numerical Code for General Relativistic Magnetohydrodynamics + ascl:1010.085 Network Tools for Astronomical Data Retrieval + ascl:1011.001 Identikit 1: A Modeling Tool for Interacting Disk Galaxies + ascl:1011.002 DAOSPEC: An Automatic Code for Measuring Equivalent Widths in High-resolution Stellar Spectra + ascl:1011.003 ZPEG: An Extension of the Galaxy Evolution Model PEGASE.2 + ascl:1011.004 MARS: The MAGIC Analysis and Reconstruction Software + ascl:1011.005 Shape of Cosmic String Loops + ascl:1011.006 DAME: A Web Oriented Infrastructure for Scientific Data Mining & Exploration + ascl:1011.007 RAMSES: A new N-body and hydrodynamical code + ascl:1011.008 Binsim: Visualising Interacting Binaries in 3D + ascl:1011.009 DRAGON: Monte Carlo Generator of Particle Production from a Fragmented Fireball in Ultrarelativistic Nuclear Collisions + ascl:1011.010 Global Sky Model (GSM): A Model of Diffuse Galactic Radio Emission from 10 MHz to 100 GHz + ascl:1011.011 turboGL: Accurate Modeling of Weak Lensing + ascl:1011.012 DEFROST: A New Code for Simulating Preheating after Inflation + ascl:1011.013 EasyLTB: Code for Testing LTB Models against CosmologyConfronting Lemaitre-Tolman-Bondi Models with Observational Cosmology + ascl:1011.014 CO5BOLD: COnservative COde for the COmputation of COmpressible COnvection in a BOx of L Dimensions with l=2,3 + ascl:1011.015 Geokerr: Computing Photon Orbits in a Kerr Spacetime + ascl:1011.016 Non-LTE Models and Theoretical Spectra of Accretion Disks in Active Galactic Nuclei. III. Integrated Spectra for Hydrogen-Helium Disks + ascl:1011.017 Occultation and Microlensing + ascl:1011.018 Transit of a Spherical Planet of a Stellar Chromosphere which is Geometrically Thin + ascl:1011.019 FLY: MPI-2 High Resolution code for LSS Cosmological Simulations + ascl:1011.020 VisIVO: Integrated Tools and Services for Large-Scale Astrophysical Visualization + ascl:1011.021 GRALE: A genetic algorithm for the non-parametric inversion of strong lensing systems + ascl:1011.022 yt: A Multi-Code Analysis Toolkit for Astrophysical Simulation Data + ascl:1011.023 HyRec: A Fast and Highly Accurate Primordial Hydrogen and Helium Recombination Code + ascl:1101.001 Second-order Tight-coupling Code + ascl:1101.002 NDSPMHD Smoothed Particle Magnetohydrodynamics Code + ascl:1101.003 IGMtransfer: Intergalactic Radiative Transfer Code + ascl:1101.004 InterpMC: Caching and Interpolated Likelihoods -- Accelerating Cosmological Monte Carlo Markov Chains + ascl:1101.005 CMHOG: Code for Ideal Compressible Hydrodynamics + ascl:1101.006 NIRVANA: A Numerical Tool for Astrophysical Gas Dynamics + ascl:1101.007 Galaxia: A Code to Generate a Synthetic Survey of the Milky Way + ascl:1101.008 CRASH: A Block-Adaptive-Mesh Code for Radiative Shock Hydrodynamics + ascl:1101.009 MasQU: Finite Differences on Masked Irregular Stokes Q,U Grids + ascl:1101.010 TOPCAT: Tool for OPerations on Catalogues And Tables + ascl:1102.001 N-MODY: A Code for Collisionless N-body Simulations in Modified Newtonian Dynamics + ascl:1102.002 PBL: Particle-Based Lensing for Gravitational Lensing Mass Reconstructions of Galaxy Clusters + ascl:1102.003 GRAVLENS: Computational Methods for Gravitational Lensing + ascl:1102.004 LENSTOOL: A Gravitational Lensing Software for Modeling Mass Distribution of Galaxies and Clusters (strong and weak regime) + ascl:1102.005 MRLENS: Multi-Resolution methods for gravitational LENSing + ascl:1102.006 NBODY Codes: Numerical Simulations of Many-body (N-body) Gravitational Interactions + ascl:1102.007 PixeLens: A Portable Modeler of Lensed Quasars + ascl:1102.008 PMFAST: Towards Optimal Parallel PM N-body Codes + ascl:1102.009 AHF: Amiga's Halo Finder + ascl:1102.010 SEREN: A SPH code for star and planet formation simulations + ascl:1102.011 Identikit 2: An Algorithm for Reconstructing Galactic Collisions + ascl:1102.012 CPROPS: Bias-free Measurement of Giant Molecular Cloud Properties + ascl:1102.013 Cactus: HPC infrastructure and programming tools + ascl:1102.014 Einstein Toolkit for Relativistic Astrophysics + ascl:1102.015 PMFASTIC: Initial condition generator for PMFAST + ascl:1102.016 HERACLES: 3D Hydrodynamical Code to Simulate Astrophysical Fluid Flows + ascl:1102.017 FARGO: Fast Advection in Rotating Gaseous Objects + ascl:1102.018 Karma: Visualisation Test-Bed Toolkit + ascl:1102.019 HOP: A Group-finding Algorithm for N-body Simulations + ascl:1102.020 SKID: Finding Gravitationally Bound Groups in N-body Simulations + ascl:1102.021 DIRT: Dust InfraRed Toolbox + ascl:1102.022 PDRT: Photo Dissociation Region Toolbox + ascl:1102.023 21cmFAST: A Fast, Semi-Numerical Simulation of the High-Redshift 21-cm Signal + ascl:1102.024 DiFX2: A more flexible, efficient, robust and powerful software correlator + ascl:1102.025 LensPix: Fast MPI full sky transforms for HEALPix + ascl:1102.026 CAMB: Code for Anisotropies in the Microwave Background + ascl:1102.027 ZENO: N-body and SPH Simulation Codes + ascl:1102.028 ZEUS-MP/2: Computational Fluid Dynamics Code + ascl:1103.001 Difmap: Synthesis Imaging of Visibility Data + ascl:1103.002 PGPLOT: Device-independent Graphics Package for Simple Scientific Graphs + ascl:1103.003 S2PLOT: Three-dimensional (3D) Plotting Library + ascl:1103.004 SPLASH: Interactive Visualization Tool for Smoothed Particle Hydrodynamics Simulations + ascl:1103.005 Splotch: Ray Tracer to Visualize SPH Simulations + ascl:1103.006 GLESP 2.0: Gauss-Legendre Sky Pixelization for CMB Analysis + ascl:1103.007 VisIt: Interactive Parallel Visualization and Graphical Analysis Tool + ascl:1103.008 Parallel HOP: A Scalable Halo Finder for Massive Cosmological Data Sets + ascl:1103.009 SPHRAY: A Smoothed Particle Hydrodynamics Ray Tracer for Radiative Transfer + ascl:1103.010 Hydra: A Parallel Adaptive Grid Code + ascl:1103.011 AP3M: Adaptive Particle-particle, Particle-mesh Code + ascl:1103.012 Pyflation: Second Order Perturbations During Inflation Beyond Slow-roll + ascl:1103.014 ParaView: Data Analysis and Visualization Application + ascl:1103.015 Cloudy_3D: Quick Pseudo-3D Photoionization Code + ascl:1104.001 TomograPy: A Fast, Instrument-Independent, Solar Tomography Software + ascl:1104.002 AstroBEAR: Adaptive Mesh Refinement Code for Ideal Hydrodynamics & Magnetohydrodynamics + ascl:1104.003 Starburst99: Synthesis Models for Galaxies with Active Star Formation + ascl:1104.004 MASSCLEAN: MASSive CLuster Evolution and ANalysis Package + ascl:1104.005 GALAXEV: Evolutionary Stellar Population Synthesis Models + ascl:1104.006 LECTOR: Line-strengths in One-dimensional ASCII Spectra + ascl:1104.007 ULySS: A Full Spectrum Fitting Package + ascl:1104.008 Rmodel: Determining Stellar Population Parameters + ascl:1104.009 r-Java: An r-process Code and Graphical User Interface for Heavy-Element Nucleosynthesis + ascl:1104.010 GALFIT: Detailed Structural Decomposition of Galaxy Images + ascl:1104.011 DAOPHOT: Crowded-field Stellar Photometry Package + ascl:1104.012 CHIWEI: A Code of Goodness of Fit Tests for Weighted and Unweighed Histograms + ascl:1104.013 BEARCLAW: Boundary Embedded Adaptive Refinement Conservation LAW package + ascl:1104.014 A Correction to the Standard Galactic Reddening Map: Passive Galaxies as Standard Crayons + ascl:1105.001 STILTS: Starlink Tables Infrastructure Library Tool Set + ascl:1105.002 PACCE: Perl Algorithm to Compute Continuum and Equivalent Widths + ascl:1105.003 The DTFE public software: The Delaunay Tessellation Field Estimator code + ascl:1105.004 SLiM: A Code for the Simulation of Wave Propagation through an Inhomogeneous, Magnetised Solar Atmosphere + ascl:1105.005 ChaNGa: Charm N-body GrAvity solver + ascl:1105.006 SPARC: Seismic Propagation through Active Regions and Convection + ascl:1105.007 Sunspot Models + ascl:1105.008 Flux Tube Model + ascl:1105.009 Ray Tracing Codes: run_tau, run_raypath, and ray_kernel + ascl:1105.010 CASTRO: Multi-dimensional Eulerian AMR Radiation-hydrodynamics Code + ascl:1105.011 Ganalyzer: A tool for automatic galaxy image analysis + ascl:1105.012 Stagger: MHD Method for Modeling Star Formation + ascl:1105.013 CAMB Sources: Number Counts, Lensing & Dark-age 21cm Power Spectra + ascl:1105.014 PSRCHIVE: Development Library for the Analysis of Pulsar Astronomical Data + ascl:1106.001 AlterBBN: A program for calculating the BBN abundances of the elements in alternative cosmologies + ascl:1106.002 PHOEBE: PHysics Of Eclipsing BinariEs + ascl:1106.003 PLplot: Cross-platform Software Package for Scientific Plots + ascl:1106.004 E3D: The Euro3D Visualization Tool + ascl:1106.005 R3D: Reduction Package for Integral Field Spectroscopy + ascl:1106.006 MECI: A Method for Eclipsing Component Identification + ascl:1106.007 MIRIAD: Multi-channel Image Reconstruction, Image Analysis, and Display + ascl:1106.008 GRAFIC-2: Multiscale Gaussian Random Fields for Cosmological Simulations + ascl:1106.009 PARAMESH V4.1: Parallel Adaptive Mesh Refinement + ascl:1106.010 MAGPHYS: Multi-wavelength Analysis of Galaxy Physical Properties + ascl:1106.011 DRAGON: Galactic Cosmic Ray Diffusion Code + ascl:1106.012 SLUG: Stochastically Lighting Up Galaxies + ascl:1106.013 MGCAMB: Modification of Growth with CAMB + ascl:1106.014 Transit Analysis Package (TAP and autoKep): IDL Graphical User Interfaces for Extrasolar Planet Transit Photometry + ascl:1106.015 OrbFit: Software to Determine Orbits of Asteroids + ascl:1106.016 Nightfall: Animated Views of Eclipsing Binary Stars + ascl:1106.017 CAOS: Code for Adaptive Optics Systems + ascl:1106.018 CMB B-modes from Faraday Rotation + ascl:1106.019 Application of Compressive Sampling to Radio Astronomy I: Deconvolution + ascl:1106.020 CLASS: Cosmic Linear Anisotropy Solving System + ascl:1106.021 StringFast: Fast Code to Compute CMB Power Spectra induced by Cosmic Strings + ascl:1106.022 MPI-Defrost: Extension of Defrost to MPI-based Cluster Environment + ascl:1106.023 CMBACT: CMB from ACTive sources + ascl:1106.024 ELMAG: Simulation of Electromagnetic Cascades + ascl:1106.025 CosmoMC: Cosmological MonteCarlo + ascl:1106.026 RECFAST: Calculate the Recombination History of the Universe + ascl:1107.001 SNID: Supernova Identification + ascl:1107.002 GIBIS: Gaia Instrument and Basic Image Simulator + ascl:1107.003 FITSManager: Management of Personal Astronomical Data + ascl:1107.004 Flexible DM-NRG + ascl:1107.005 Sherpa: CIAO Modeling and Fitting Package + ascl:1107.006 AIRES: AIRshower Extended Simulations + ascl:1107.007 AMUSE: Astrophysical Multipurpose Software Environment + ascl:1107.008 STARS: A Stellar Evolution Code + ascl:1107.009 REAS3: Modeling Radio Emission from Cosmic Ray Air Showers + ascl:1107.010 XDSPRES: CL-based package for Reducing OSIRIS Cross-dispersed Spectra + ascl:1107.011 ARCHANGEL: Galaxy Photometry System + ascl:1107.012 LIME: Flexible, Non-LTE Line Excitation and Radiation Transfer Method for Millimeter and Far-infrared Wavelengths + ascl:1107.013 CASA: Common Astronomy Software Applications + ascl:1107.014 Clumpfind: Determining Structure in Molecular Clouds + ascl:1107.015 McLuster: A Tool to Make a Star Cluster + ascl:1107.016 SIGPROC: Pulsar Signal Processing Programs + ascl:1107.017 PRESTO: PulsaR Exploration and Search TOolkit + ascl:1107.018 HEALPix: Hierarchical Equal Area isoLatitude Pixelization of a sphere + ascl:1107.019 PSRPOP: Pulsar Population Modelling Programs + ascl:1108.001 IMCAT: Image and Catalogue Manipulation Software + ascl:1108.002 SHERA: SHEar Reconvolution Analysis + ascl:1108.003 WCSLIB and PGSBOX + ascl:1108.004 Galacticus: A Semi-Analytic Model of Galaxy Formation + ascl:1108.005 Gaepsi: Gadget Visualization Toolkit + ascl:1108.006 STARLIGHT: Spectral Synthesis Code + ascl:1108.007 PÉGASE: Metallicity-consistent Spectral Evolution Model of Galaxies + ascl:1108.008 PÉGASE-HR: Stellar Population Synthesis at High Resolution Spectra + ascl:1108.009 LePHARE: Photometric Analysis for Redshift Estimate + ascl:1108.010 Hyperz: Photometric Redshift Code + ascl:1108.011 BPZ: Bayesian Photometric Redshift Code + ascl:1108.012 TITAN: General-purpose Radiation Hydrodynamics Code + ascl:1108.013 STELLA: Multi-group Radiation Hydrodynamics Code + ascl:1108.014 RADICAL: Multi-purpose 2-D Radiative Transfer Code + ascl:1108.015 DISKSTRUCT: A Simple 1+1-D Disk Structure Code + ascl:1108.016 RADMC: A 2-D Continuum Radiative Transfer Tool + ascl:1108.017 SHELLSPEC: Simple Radiative Transfer along Line of Sight in Moving Media + ascl:1108.018 STECKMAP: STEllar Content and Kinematics via Maximum A Posteriori likelihood + ascl:1108.019 BOREAS: Mass Loss Rate of a Cool, Late-type Star + ascl:1109.001 PySpecKit: Python Spectroscopic Toolkit + ascl:1109.002 ADIPLS: Aarhus Adiabatic Oscillation Package (ADIPACK) + ascl:1109.003 SKIRT: Stellar Kinematics Including Radiative Transfer + ascl:1109.004 HAZEL: HAnle and ZEeman Light + ascl:1109.005 PolSpice: Spatially Inhomogeneous Correlation Estimator for Temperature and Polarisation + ascl:1109.006 MultiNest: Efficient and Robust Bayesian Inference + ascl:1109.007 SuperBayeS: Supersymmetry Parameters Extraction Routines for Bayesian Statistics + ascl:1109.008 Multipole Vectors: Decomposing Functions on a Sphere + ascl:1109.009 CMBquick: Spectrum and Bispectrum of Cosmic Microwave Background (CMB) + ascl:1109.010 PyModelFit: Model-fitting Framework and GUI Tool + ascl:1109.011 GalactICS: Galaxy Model Building Package + ascl:1109.012 EnBiD: Fast Multi-dimensional Density Estimation + ascl:1109.013 CULSP: Fast Calculation of the Lomb-Scargle Periodogram Using Graphics Processing Units + ascl:1109.014 Supernova Flux-averaging Likelihood Code + ascl:1109.015 WCSTools: Image Astrometry Toolkit + ascl:1109.016 aXe: Spectral Extraction and Visualization Software + ascl:1109.017 IRDR: InfraRed Data Reduction + ascl:1109.018 GIPSY: Groningen Image Processing System + ascl:1109.019 SkyCat: Visualization and Catalog and Data Access Tool + ascl:1109.020 CMFGEN: Probing the Universe through Spectroscopy + ascl:1109.021 TLUSTY: Stellar Atmospheres, Accretion Disks, and Spectroscopic Diagnostics + ascl:1109.022 Synspec: General Spectrum Synthesis Program + ascl:1109.023 MOKA: A New Tool for Strong Lensing Studies + ascl:1109.024 Jupiter: Multidimensional Astrophysical Hydrocode + ascl:1110.001 analytic_infall: A Molecular Line Infall Fitting Program + ascl:1110.002 DarkSUSY: Supersymmetric Dark Matter Calculations + ascl:1110.003 iGalFit: An Interactive Tool for GalFit + ascl:1110.004 SHTOOLS: Tools for Working with Spherical Harmonics + ascl:1110.005 ZEBRA: Zurich Extragalactic Bayesian Redshift Analyzer + ascl:1110.006 STIFF: Converting Scientific FITS Images to TIFF + ascl:1110.007 GammaLib: Toolbox for High-level Analysis of Astronomical Gamma-ray Data + ascl:1110.008 Glnemo2: Interactive Visualization 3D Program + ascl:1110.009 AAOGlimpse: Three-dimensional Data Viewer + ascl:1110.010 MOCASSIN: MOnte CArlo SimulationS of Ionized Nebulae + ascl:1110.011 Pacerman: Polarisation Angle CorrEcting Rotation Measure ANalysis + ascl:1110.012 Starlink: Multi-purpose Astronomy Software + ascl:1110.013 S2HAT: Scalable Spherical Harmonic Transform Library + ascl:1110.014 pureS2HAT: S 2HAT-based Pure E/B Harmonic Transforms + ascl:1110.015 atlant: Advanced Three Level Approximation for Numerical Treatment of Cosmological Recombination + ascl:1110.016 REBOUND: Multi-purpose N-body code for collisional dynamics + ascl:1110.017 POWMES: Measuring the Power Spectrum in an N-body Simulation + ascl:1110.018 MADmap: Fast Parallel Maximum Likelihood CMB Map Making Code + ascl:1110.019 CosmoNest: Cosmological Nested Sampling + ascl:1110.020 CROSS_CMBFAST: ISW-correlation Code + ascl:1110.021 Univiewer: Visualisation Program for HEALPix Maps + ascl:1110.022 simple_cosfitter: Supernova-centric Cosmological Fitter + ascl:1110.023 SiFTO: An Empirical Method for Fitting SN Ia Light Curves + ascl:1110.024 CosmoMC SNLS: CosmoMC Plug-in to Analyze SNLS3 SN Data + ascl:1110.025 MIS: A Miriad Interferometry Singledish Toolkit + ascl:1111.001 HIPE: Herschel Interactive Processing Environment + ascl:1111.002 CRBLASTER: A Parallel-Processing Computational Framework for Embarrassingly-Parallel Image-Analysis Algorithms + ascl:1111.003 Saada: A Generator of Astronomical Database + ascl:1111.004 CIGALE: Code Investigating GALaxy Emission + ascl:1111.005 SPECTCOL: Spectroscopic and Collisional Data Retrieval + ascl:1111.006 MOPEX: MOsaicker and Point source EXtractor + ascl:1111.007 CUBISM: CUbe Builder for IRS Spectra Maps + ascl:1111.008 SITools2: A Framework for Archival Systems + ascl:1111.009 MESS: Multi-purpose Exoplanet Simulation System + ascl:1111.010 Starbase Data Tables: An ASCII Relational Database for Unix + ascl:1111.011 3DEX: Fast Fourier-Bessel Decomposition of Spherical 3D Surveys + ascl:1111.012 VAPOR: Visualization and Analysis Platform for Ocean, Atmosphere, and Solar Researchers + ascl:1111.013 FIBRE-pac: FMOS Image-based Reduction Package + ascl:1111.014 FITSH: Software Package for Image Processing + ascl:1111.015 TIPSY: Code for Display and Analysis of N-body Simulations + ascl:1112.001 Eclipse: ESO C Library for an Image Processing Software Environment + ascl:1112.002 Funtools: FITS Users Need Tools + ascl:1112.003 THERMINATOR 2: THERMal heavy IoN generATOR 2 + ascl:1112.004 PHOX: X-ray Photon Simulator + ascl:1112.005 GIDGET: Gravitational Instability-Dominated Galaxy Evolution Tool + ascl:1112.006 PhAst: Display and Analysis of FITS Images + ascl:1112.007 FLAGCAL: FLAGging and CALlibration Pipeline for GMRT Data + ascl:1112.008 GGobi: A data visualization system + ascl:1112.009 LISACode: A scientific simulator of LISA + ascl:1112.010 MRS3D: 3D Spherical Wavelet Transform on the Sphere + ascl:1112.011 CMBview: A Mac OS X program for viewing HEALPix-format sky map data on a sphere + ascl:1112.012 CORA: Emission Line Fitting with Maximum Likelihood + ascl:1112.013 XEphem: Interactive Astronomical Ephemeris + ascl:1112.014 PyEphem: Astronomical Ephemeris for Python + ascl:1112.015 Dexter: Data Extractor for scanned graphs + ascl:1112.016 PREDICT: Satellite tracking and orbital prediction + ascl:1112.017 ASpec: Astronomical Spectrum Analysis Package + ascl:1112.018 SwiftVis: Data Analysis & Visualization For Planetary Science + ascl:1112.019 Aladin: Interactive Sky Atlas + ascl:1201.001 McScatter: Three-Body Scattering with Stellar Evolution + ascl:1201.002 Roche: Visualization and analysis tool for Roche-lobe geometry of evolving binaries + ascl:1201.003 SeBa: Stellar and binary evolution + ascl:1201.004 emGain: Determination of EM gain of CCD + ascl:1201.005 2LPTIC: 2nd-order Lagrangian Perturbation Theory Initial Conditions + ascl:1201.006 VIM: Visual Integration and Mining + ascl:1201.007 Fisher4Cast: Fisher Matrix Toolbox + ascl:1201.008 Mercury: A software package for orbital dynamics + ascl:1201.009 ExoFit: Orbital parameters of extra-solar planets from radial velocity + ascl:1201.010 HNBody: Hierarchical N-Body Symplectic Integration Package + ascl:1201.011 Duchamp: A 3D source finder for spectral-line data + ascl:1201.012 CLUMPY: A code for gamma-ray signals from dark matter structures + ascl:1201.013 SPS: SPIRE Photometer Simulator + ascl:1201.014 Hammurabi: Simulating polarized Galactic synchrotron emission + ascl:1201.015 FFTW: Fastest Fourier Transform in the West + ascl:1201.016 LumFunc: Luminosity Function Modeling + ascl:1201.017 Inflation: Monte-Carlo Code for Slow-Roll Inflation + ascl:1202.001 CISM_DX: Visualization and analysis tool + ascl:1202.002 ZODIPIC: Zodiacal Cloud Image Synthesis + ascl:1202.003 NOVAS: Naval Observatory Vector Astrometry Software + ascl:1202.004 TALYS: Nuclear Reaction Simulator + ascl:1202.005 Mangle: Angular Mask Software + ascl:1202.006 CORSIKA: An Air Shower Simulation Program + ascl:1202.007 CRUNCH3D: Three-dimensional compressible MHD code + ascl:1202.008 Chombo: Adaptive Solutions of Partial Differential Equations + ascl:1202.009 MOOG: LTE line analysis and spectrum synthesis + ascl:1202.010 SPECTRE: Manipulation of single-order spectra + ascl:1202.011 Lattimer-Swesty Equation of State Code + ascl:1202.012 CoCoNuT: General relativistic hydrodynamics code with dynamical space-time evolution + ascl:1202.013 SME: Spectroscopy Made Easy + ascl:1202.014 FISA: Fast Integrated Spectra Analyzer + ascl:1202.015 RADMC-3D: A multi-purpose radiative transfer tool + ascl:1203.001 AE: ACIS Extract + ascl:1203.002 GALAPAGOS: Galaxy Analysis over Large Areas: Parameter Assessment by GALFITting Objects from SExtractor + ascl:1203.003 spec2d: DEEP2 DEIMOS Spectral Pipeline + ascl:1203.004 FERENGI: Full and Efficient Redshifting of Ensembles of Nearby Galaxy Images + ascl:1203.005 Gyoto: General relativitY Orbit Tracer of Observatoire de Paris + ascl:1203.006 EMACSS: Evolve Me A Cluster of StarS + ascl:1203.007 EBTEL: Enthalpy-Based Thermal Evolution of Loops + ascl:1203.008 MegaLUT: Correcting ellipticity measurements of galaxies + ascl:1203.009 MYRIAD: N-body code for simulations of star clusters + ascl:1203.010 Youpi: YOUr processing PIpeline + ascl:1203.011 SALT2: Spectral Adaptive Lightcurve Template + ascl:1203.012 Astrometrica: Astrometric data reduction of CCD images + ascl:1203.013 Figaro: Data Reduction Software + ascl:1204.001 WM-basic: Modeling atmospheres of hot stars + ascl:1204.002 pyBLoCXS: Bayesian Low-Count X-ray Spectral analysis + ascl:1204.003 BUDDA: BUlge/Disk Decomposition Analysis + ascl:1204.004 Fosite: 2D advection problem solver + ascl:1204.005 MC3D: Monte-Carlo 3D Radiative Transfer Code + ascl:1204.006 GRASIL: Spectral evolution of stellar systems with dust + ascl:1204.007 VH-1: Multidimensional ideal compressible hydrodynamics code + ascl:1204.008 StarFISH: For Inferring Star-formation Histories + ascl:1204.009 STOKES: Modeling Radiative Transfer and Polarization + ascl:1204.010 Shape: A 3D Modeling Tool for Astrophysics + ascl:1204.011 EXCOP: EXtraction of COsmological Parameters + ascl:1204.012 VirGO: A Visual Browser for the ESO Science Archive Facility + ascl:1204.013 ORSA: Orbit Reconstruction, Simulation and Analysis + ascl:1204.014 WOMBAT: sWift Objects for Mhd BAsed on Tvd + ascl:1204.015 PROFIT: Emission-line PROfile FITting routine + ascl:1204.016 ASCfit: Automatic Stellar Coordinate Fitting Package + ascl:1204.017 epsnoise: Pixel noise in ellipticity and shear measurements + ascl:1205.001 Mechanic: Numerical MPI framework for dynamical astronomy + ascl:1205.002 p3d: General data-reduction tool for fiber-fed integral-field spectrographs + ascl:1205.003 MIA+EWS: MIDI data reduction tool + ascl:1205.004 Turbospectrum: Code for spectral synthesis + ascl:1205.005 Fv: Interactive FITS file editor + ascl:1205.006 Flexion: IDL code for calculating gravitational flexion + ascl:1205.007 Iris: The VAO SED Application + ascl:1205.008 Mayavi2: 3D Scientific Data Visualization and Plotting + ascl:1205.009 ARES: Automatic Routine for line Equivalent widths in stellar Spectra + ascl:1205.010 Meudon PDR: Atomic & molecular structure of interstellar clouds + ascl:1205.011 VOSpec: VO Spectral Analysis Tool + ascl:1206.001 RegiStax: Alignment, stacking and processing of images + ascl:1206.002 FITS Liberator: Image processing software + ascl:1206.003 STSDAS: IRAF Tools for Hubble Space Telescope data reduction + ascl:1206.004 MOLSCAT: MOLecular SCATtering + ascl:1206.005 bhint: High-precision integrator for stellar systems + ascl:1206.006 statpl: Goodness-of-fit for power-law distributed data + ascl:1206.007 Plumix: Generating mass segregated star clusters + ascl:1206.008 Catena: Ensemble of stars orbit integration + ascl:1206.009 Libimf + ascl:1206.010 mkj_libs: Helper routines for plane-fitting & analysis tools + ascl:1206.011 Double Eclipsing Binary Fitting + ascl:1206.012 Time Utilities + ascl:1206.013 ImageJ: Image processing and analysis in Java + ascl:1206.014 ImageHealth: Quality Assurance for Large FITS Images + ascl:1207.001 EXOFAST: Fast transit and/or RV fitter for single exoplanet + ascl:1207.002 HiGPUs: Hermite's N-body integrator running on Graphic Processing Units + ascl:1207.003 VAC: Versatile Advection Code + ascl:1207.004 Hyperion: Parallelized 3D Dust Continuum Radiative Transfer Code + ascl:1207.005 L.A.Cosmic: Laplacian Cosmic Ray Identification + ascl:1207.006 dcr: Cosmic Ray Removal + ascl:1207.007 Astropysics: Astrophysics utilities for python + ascl:1207.008 xSonify: Sonification software + ascl:1207.009 PyFITS: Python FITS Module + ascl:1207.010 PySALT: SALT science pipeline + ascl:1207.011 PyRAF: Python alternative for IRAF + ascl:1207.012 PCA: Principal Component Analysis for spectra modeling + ascl:1207.013 JKTEBOP: Analyzing light curves of detached eclipsing binaries + ascl:1207.014 wvrgcal: Correction of atmospheric phase fluctuations in ALMA observations + ascl:1208.001 Astrometry.net: Astrometric calibration of images + ascl:1208.002 BINSYN: Simulating Spectra and Light Curves of Binary Systems with or without Accretion Disks + ascl:1208.003 APT: Aperture Photometry Tool + ascl:1208.004 PyKE: Reduction and analysis of Kepler Simple Aperture Photometry data + ascl:1208.005 PSM: Planck Sky Model + ascl:1208.006 ccogs: Cosmological Calculations on the GPU + ascl:1208.007 Big MACS: Accurate photometric calibration + ascl:1208.008 TiRiFiC: Tilted Ring Fitting Code + ascl:1208.009 BLOBCAT: Software to Catalog Blobs + ascl:1208.010 BASE: Bayesian Astrometric and Spectroscopic Exoplanet Detection and Characterization Tool + ascl:1208.011 Fewbody: Numerical toolkit for simulating small-N gravitational dynamics + ascl:1208.012 Swarm-NG: Parallel n-body Integrations + ascl:1208.013 SolarSoft: Programming and data analysis environment for solar physics + ascl:1208.014 MPI-AMRVAC: MPI-Adaptive Mesh Refinement-Versatile Advection Code + ascl:1208.015 Lare3d: Lagrangian-Eulerian remap scheme for MHD + ascl:1208.016 VARTOOLS: Light Curve Analysis Program + ascl:1208.017 APLpy: Astronomical Plotting Library in Python + ascl:1208.018 CUBEP3M: High performance P3M N-body code + ascl:1208.019 MPFIT: Robust non-linear least squares curve fitting + ascl:1208.020 ParselTongue: AIPS Python Interface + ascl:1208.021 EzGal: A Flexible Interface for Stellar Population Synthesis Models + ascl:1209.001 Bayesian Blocks: Detecting and characterizing local variability in time series + ascl:1209.002 JAGS: Just Another Gibbs Sampler + ascl:1209.003 LSD: Large Survey Database framework + ascl:1209.004 CHORIZOS: CHi-square cOde for parameterRized modeling and characterIZation of phOtometry and Spectrophotmetry + ascl:1209.005 HARM: A Numerical Scheme for General Relativistic Magnetohydrodynamics + ascl:1209.006 macula: Rotational modulations in the photometry of spotted stars + ascl:1209.007 TMCalc: Fast estimation of stellar metallicity [Fe/H] + ascl:1209.008 Phantom-GRAPE: SIMD accelerated numerical library for N-body simulations + ascl:1209.009 ANNz: Artificial Neural Networks for estimating photometric redshifts + ascl:1209.010 MeqTrees: Software package for implementing Measurement Equations + ascl:1209.011 DiskFit: Modeling Asymmetries in Disk Galaxies + ascl:1209.012 Scanamorphos: Maps from scan observations made with bolometer arrays + ascl:1209.013 IRACproc: IRAC Post-BCD Processing + ascl:1209.014 FAMIAS: Frequency Analysis and Mode Identification for AsteroSeismology + ascl:1209.015 Aspects: Probabilistic/positional association of catalogs of sources + ascl:1210.001 GP2PCF: Brute-force computation of 2-point correlation functions + ascl:1210.002 pPXF: Penalized Pixel-Fitting stellar kinematics extraction + ascl:1210.003 GOSSIP: SED fitting code + ascl:1210.004 EZ: A Tool For Automatic Redshift Measurement + ascl:1210.005 SGNAPS: Software for Graphical Navigation, Analysis and Plotting of Spectra + ascl:1210.006 TA-DA: A Tool for Astrophysical Data Analysis + ascl:1210.007 FLUKA: Fully integrated particle physics Monte Carlo simulation package + ascl:1210.008 Rockstar: Phase-space halo finder + ascl:1210.009 PAHFIT: Properties of PAH Emission + ascl:1210.010 CALCLENS: Curved-sky grAvitational Lensing for Cosmological Light conE simulatioNS + ascl:1210.011 Consistent Trees: Gravitationally Consistent Halo Catalogs and Merger Trees for Precision Cosmology + ascl:1210.012 SearchCal: The JMMC Evolutive Search Calibrator Tool + ascl:1210.013 ConvPhot: A profile-matching algorithm for precision photometry + ascl:1210.014 TRIP: General computer algebra system for celestial mechanics + ascl:1210.015 Tempo2: Pulsar Timing Package + ascl:1210.016 Specview: 1-D spectral visualization and analysis of astronomical spectrograms + ascl:1210.017 McPHAC: McGill Planar Hydrogen Atmosphere Code + ascl:1210.018 Systemic Console: Advanced analysis of exoplanetary data + ascl:1210.019 QFitsView: FITS file viewer + ascl:1210.020 GASGANO: Data File Organizer + ascl:1210.021 SMART: Spectroscopic Modeling Analysis and Reduction Tool + ascl:1210.022 HAM2D: 2D Shearing Box Model + ascl:1210.023 inf_solv: Kerr inflow solver + ascl:1210.024 ORBADV: ORBital ADVection by interpolation + ascl:1210.025 TwoDSSM: Self-gravitating 2D shearing sheet + ascl:1210.026 PVS-GRMHD: Conservative GRMHD Primitive Variable Solvers + ascl:1210.027 PyCosmic: Detecting cosmics in CALIFA and other fiber-fed integral-field spectroscopy datasets + ascl:1210.028 QYMSYM: A GPU-accelerated hybrid symplectic integrator + ascl:1210.029 Sapporo: N-body simulation library for GPUs + ascl:1210.030 BOOTTRAN: Error Bars for Keplerian Orbital Parameters + ascl:1210.031 RVLIN: Fitting Keplerian curves to radial velocity data + ascl:1211.001 S2LET: Fast wavelet analysis on the sphere + ascl:1211.002 FreeEOS: Equation of State for stellar interiors calculations + ascl:1211.003 WVT Binning: Spatially adaptive 2-D binning + ascl:1211.004 CORRFIT: Cross-Correlation Routines + ascl:1211.005 C-m Emu: Concentration-mass relation emulator + ascl:1211.006 Voronoi binning method + ascl:1212.001 Bonsai: N-body GPU tree-code + ascl:1212.002 XPHOT: Estimation of properties of weak X-ray sources + ascl:1212.003 MPWide: Light-weight communication library for distributed computing + ascl:1212.004 MOLIERE-5: Forward and inversion model for sub-mm wavelengths + ascl:1212.005 General complex polynomial root solver + ascl:1212.006 CosmoPMC: Cosmology sampling with Population Monte Carlo + ascl:1212.007 WOLF: FITS file processor + ascl:1212.008 SIR: Stokes Inversion based on Response functions + ascl:1212.009 Aegean: Compact source finding in radio images + ascl:1212.010 Synth3: Non-magnetic spectrum synthesis code + ascl:1212.011 DrizzlePac: HST image software + ascl:1212.012 ddisk: Debris disk time-evolution + ascl:1212.013 EXSdetect: Extended X-ray Source Detection + ascl:1212.014 Thrust: Productivity-Oriented Library for CUDA + ascl:1212.015 TMAP: Tübingen NLTE Model-Atmosphere Package + ascl:1301.001 PSFEx: Point Spread Function Extractor + ascl:1302.001 MARX: Model of AXAF Response to X-rays + ascl:1302.002 ISIS: Interactive Spectral Interpretation System for High Resolution X-Ray Spectroscopy + ascl:1302.003 ACS: ALMA Common Software + ascl:1302.004 pNbody: A python parallelized N-body reduction toolbox + ascl:1302.005 EPICS: Experimental Physics and Industrial Control System + ascl:1302.006 Minerva: Cylindrical coordinate extension for Athena + ascl:1302.007 GRID-core: Gravitational Potential Identification of Cores + ascl:1302.008 FASTPHOT: A simple and quick IDL PSF-fitting routine + ascl:1302.009 IAS Stacking Library in IDL + ascl:1302.010 ICORE: Image Co-addition with Optional Resolution Enhancement + ascl:1302.011 GALA: Stellar atmospheric parameters and chemical abundances + ascl:1302.012 ME(SSY)**2: Monte Carlo Code for Star Cluster Simulations + ascl:1302.013 NIFTY: A versatile Python library for signal inference + ascl:1302.014 SYNMAG Photometry: Catalog-level Matched Colors of Extended Sources + ascl:1302.015 DisPerSE: Discrete Persistent Structures Extractor + ascl:1302.016 XDQSO: Photometic quasar probabilities and redshifts + ascl:1302.017 ESO-MIDAS: General tools for image processing and data reduction + ascl:1303.001 SWIFT: A solar system integration software package + ascl:1303.002 emcee: The MCMC Hammer + ascl:1303.003 CosmoHammer: Cosmological parameter estimation with the MCMC Hammer + ascl:1303.004 UCL_PDR: Time dependent photon-dissociation regions model + ascl:1303.005 SMMOL: Spherical Multi-level MOLecular line radiative transfer + ascl:1303.006 UCL_CHEM: time and depth dependent gas-grain chemical model + ascl:1303.007 micrOMEGAs: Calculation of dark matter properties + ascl:1303.008 TYCHO: Stellar evolution code + ascl:1303.009 MAGIX: Modeling and Analysis Generic Interface for eXternal numerical codes + ascl:1303.010 TAC-maker: Transit Analytical Curve maker + ascl:1303.011 MOPSIC: Extended Version of MOPSI + ascl:1303.012 TGCat: Chandra Transmission Grating Catalog and Archive + ascl:1303.013 idistort: CMB spectral distortions templates and code + ascl:1303.014 BSE: Binary Star Evolution + ascl:1303.015 SSE: Single Star Evolution + ascl:1303.016 2MASS Kit: 2MASS Catalog Server Kit + ascl:1303.017 CADRE: CArma Data REduction pipeline + ascl:1303.018 Galactus: Modeling and fitting of galaxies from neutral hydrogen (HI) cubes + ascl:1303.019 GBTIDL: Reduction and Analysis of GBT Spectral Line Data + ascl:1303.020 Ginga: Flexible FITS viewer + ascl:1303.021 Xmatch: GPU Enhanced Astronomic Catalog Cross-Matching + ascl:1303.022 ionFR: Ionospheric Faraday rotation + ascl:1303.023 pysynphot: Synthetic photometry software package + ascl:1303.024 ATLAS12: Opacity sampling model atmosphere program + ascl:1303.025 DPUSER: Interactive language for image analysis + ascl:1303.026 ACORNS-ADI: Algorithms for Calibration, Optimized Registration and Nulling the Star in Angular Differential Imaging + ascl:1303.027 GaPP: Gaussian Processes in Python + ascl:1303.028 Stellarics: Inverse Compton scattering from stellar heliospheres + ascl:1303.029 iSAP: Interactive Sparse Astronomical Data Analysis Packages + ascl:1303.030 Sunrise: Radiation transfer through interstellar dust + ascl:1304.001 PEC: Period Error Calculator + ascl:1304.002 Astropy: Community Python library for astronomy + ascl:1304.003 GALSVM: Automated Morphology Classification + ascl:1304.004 Wqed: Lightcurve Analysis Suite + ascl:1304.005 VOBOZ/ZOBOV: Halo-finding and Void-finding algorithms + ascl:1304.006 CosmicEmuLog: Cosmological Power Spectra Emulator + ascl:1304.007 DESPOTIC: Derive the Energetics and SPectra of Optically Thick Interstellar Clouds + ascl:1304.008 Diffusion.f: Diffusion of elements in stars + ascl:1304.009 Sérsic: Exact deprojection of Sérsic surface brightness profiles + ascl:1304.011 TPZ: Trees for Photo-Z + ascl:1304.012 ORIGAMI: Structure-finding routine in N-body simulation + ascl:1304.013 SFH: Star Formation History + ascl:1304.014 MPgrafic: A parallel MPI version of Grafic-1 + ascl:1304.015 TVD: Total Variation Diminishing code + ascl:1304.016 Qhull: Quickhull algorithm for computing the convex hull + ascl:1304.017 CosmoRec: Cosmological Recombination code + ascl:1304.018 SZpack: Computation of Sunyaev-Zeldovich (SZ) signals + ascl:1304.019 IFrIT: Ionization FRont Interactive Tool + ascl:1304.020 pyCloudy: Tools to manage astronomical Cloudy photoionization code + ascl:1304.021 PyNeb: Analysis of emission lines + ascl:1304.022 Copter: Cosmological perturbation theory + ascl:1305.001 ESTER: Evolution STEllaire en Rotation + ascl:1305.002 pynbody: N-Body/SPH analysis for python + ascl:1305.003 TPM: Tree-Particle-Mesh code + ascl:1305.004 AdaptaHOP: Subclump finder + ascl:1305.005 PkdGRAV2: Parallel fast-multipole cosmological code + ascl:1305.006 Pressure-Entropy SPH: Pressure-entropy smooth-particle hydrodynamics + ascl:1305.007 PINOCCHIO: PINpointing Orbit-Crossing Collapsed HIerarchical Objects + ascl:1305.008 YNOGK: Calculating null geodesics in the Kerr spacetime + ascl:1305.009 GaussFit: Solving least squares and robust estimation problems + ascl:1305.010 GILDAS: Grenoble Image and Line Data Analysis Software + ascl:1305.011 FITDisk: Cataclysmic Variable Accretion Disk Demonstration Tool + ascl:1305.012 MapCUMBA: Multi-grid map-making algorithm for CMB experiments + ascl:1305.013 Non-Gaussian Realisations + ascl:1305.014 TAU: 1D radiative transfer code for transmission spectroscopy of extrasolar planet atmospheres + ascl:1305.015 Merger Trees: Formation history of dark matter haloes + ascl:1306.001 SAC: Sheffield Advanced Code + ascl:1306.002 grmonty: Relativistic radiative transport Monte Carlo code + ascl:1306.003 Harmony: Synchrotron Emission Coefficients + ascl:1306.004 PROM4: 1D isothermal and isobaric modeler for solar prominences + ascl:1306.005 PROS: Multi-mission X-ray analysis software system + ascl:1306.006 BEHR: Bayesian Estimation of Hardness Ratios + ascl:1306.007 Tapir: A web interface for transit/eclipse observability + ascl:1306.008 MAPPINGS III: Modelling And Prediction in PhotoIonized Nebulae and Gasdynamical Shocks + ascl:1306.009 STF: Structure Finder + ascl:1306.010 MADCOW: Microwave Anisotropy Dataset Computational softWare + ascl:1306.011 Pico: Parameters for the Impatient Cosmologist + ascl:1306.012 LRG DR7 Likelihood Software + ascl:1306.013 Bessel: Fast Bessel Function Jn(z) Routine for Large n,z + ascl:1306.014 ZEUS-2D: Simulation of fluid dynamical flows + ascl:1306.015 VHD: Viscous pseudo-Newtonian accretion + ascl:1306.016 Yaxx: Yet another X-ray extractor + ascl:1307.001 DustEM: Dust extinction and emission modelling + ascl:1307.002 Monte Python: Monte Carlo code for CLASS in Python + ascl:1307.003 K3Match: Point matching in 3D space + ascl:1307.004 FieldInf: Field Inflation exact integration routines + ascl:1307.005 LENSVIEW: Resolved gravitational lens images modeling + ascl:1307.006 im2shape: Bayesian Galaxy Shape Estimation + ascl:1307.007 AstroTaverna: Tool for Scientific Workflows in Astronomy + ascl:1307.008 Obit: Radio Astronomy Data Handling + ascl:1307.009 MAH: Minimum Atmospheric Height + ascl:1307.010 cosmoxi2d: Two-point galaxy correlation function calculation + ascl:1307.011 PhoSim: Photon Simulator + ascl:1307.012 ITERA: IDL Tool for Emission-line Ratio Analysis + ascl:1307.013 SIMX: Event simulator + ascl:1307.014 Shapelets: Image Modelling + ascl:1307.015 CTI Correction Code + ascl:1307.016 orbfit: Orbit fitting software + ascl:1307.017 NEST: Noble Element Simulation Technique + ascl:1307.018 ETC++: Advanced Exposure-Time Calculations + ascl:1307.019 PURIFY: Tools for radio-interferometric imaging + ascl:1307.020 SOPT: Sparse OPTimisation + ascl:1308.001 SMILE: Orbital analysis and Schwarzschild modeling of triaxial stellar systems + ascl:1308.002 LOSSCONE: Capture rates of stars by a supermassive black hole + ascl:1308.003 MapCurvature: Map Projections + ascl:1308.004 LensEnt2: Maximum-entropy weak lens reconstruction + ascl:1308.005 APPSPACK: Asynchronous Parallel Pattern Search + ascl:1308.006 BASIN: Beowulf Analysis Symbolic INterface + ascl:1308.007 SYNAPPS: Forward-modeling of supernova spectroscopy data sets + ascl:1308.008 SYN++: Standalone SN spectrum synthesis + ascl:1308.009 CReSyPS: Stellar population synthesis code + ascl:1308.010 GYRE: Stellar oscillation code + ascl:1308.011 CRUSH: Comprehensive Reduction Utility for SHARC-2 (and more...) + ascl:1308.012 RADLite: Raytracer for infrared line spectra + ascl:1308.013 THELI GUI: Optical, near- & mid-infrared imaging data reduction + ascl:1308.014 SPEX: High-resolution cosmic X-ray spectra analysis + ascl:1308.015 Ceph_code: Cepheid light-curves fitting + ascl:1308.016 JHelioviewer: Visualization software for solar physics data + ascl:1308.017 ChiantiPy: Python package for the CHIANTI atomic database + ascl:1308.018 MoogStokes: Zeeman polarized radiative transfer + ascl:1309.001 AstroImageJ: ImageJ for Astronomy + ascl:1309.002 VAPHOT: Precision differential aperture photometry package + ascl:1309.003 LOSP: Liège Orbital Solution Package + ascl:1309.004 Spherical: Geometry operations and searches on spherical surfaces + ascl:1309.005 SATMC: SED Analysis Through Monte Carlo + ascl:1309.006 VOPlot: Toolkit for Scientific Discovery using VOTables + ascl:1309.007 VOMegaPlot: Plotting millions of points + ascl:1309.008 VOStat: Statistical analysis of astronomical data + ascl:1310.001 ORAC-DR: Astronomy data reduction pipeline + ascl:1310.002 PyMSES: Python modules for RAMSES + ascl:1310.003 AIDA: Adaptive Image Deconvolution Algorithm + ascl:1310.004 AIRY: Astronomical Image Restoration in interferometrY + ascl:1310.005 ASPRO 2: Astronomical Software to PRepare Observations + ascl:1310.006 AIPSLite: ParselTongue extension for distributed AIPS processing + ascl:1310.007 SMURF: SubMillimeter User Reduction Facility + ascl:1310.008 SPECX: Spectral Line Data Reduction Package + ascl:1311.001 SciDB: Open Source DMAS for Scientific Research + ascl:1311.002 PyCOOL: Cosmological Object-Oriented Lattice code + ascl:1311.003 AstroAsciiData: ASCII table Python module + ascl:1311.004 PlanetPack: Radial-velocity time-series analysis tool + ascl:1311.005 Spheroid: Electromagnetic Scattering by Spheroids + ascl:1311.006 CIAO: Chandra Interactive Analysis of Observations + ascl:1311.007 CUPID: Clump Identification and Analysis Package + ascl:1311.008 CUPID: Customizable User Pipeline for IRS Data + ascl:1311.009 CosmoTherm: Thermalization code + ascl:1311.010 ARPACK: Solving large scale eigenvalue problems + ascl:1311.011 MUSIC: MUlti-Scale Initial Conditions + ascl:1311.012 ETC: Exposure Time Calculator + ascl:1312.001 SERPent: Scripted E-merlin Rfi-mitigation PipelinE for iNTerferometry + ascl:1312.002 WND-CHARM: Multi-purpose image classifier + ascl:1312.003 IMCOM: IMage COMbination + ascl:1312.004 BIE: Bayesian Inference Engine + ascl:1312.005 XAssist: Automatic analysis of X-ray astrophysics data + ascl:1312.006 LTL: The Little Template Library + ascl:1312.007 SkyNet: Neural network training tool for machine learning in astronomy + ascl:1312.008 BAMBI: Blind Accelerated Multimodal Bayesian Inference + ascl:1312.009 YODA: Yet another Object Detection Application + ascl:1312.010 GalaxyCount: Galaxy counts and variance calculator + ascl:1312.011 A_phot: Photon Asymmetry + ascl:1312.012 BINGO: BI-spectra and Non-Gaussianity Operator + ascl:1312.013 CJAM: First and second velocity moments calculations + ascl:1312.014 SL1M: Synthesis through L1 Minimization + ascl:1401.001 Kirin: N-body simulation library for GPUs + ascl:1401.002 SpacePy: Python-Based Tools for the Space Science Community + ascl:1401.003 PyMidas: Interface from Python to Midas + ascl:1401.004 Reflex: Graphical workflow engine for data reduction + ascl:1401.005 PyDrizzle: Python version of Drizzle + ascl:1401.006 convolve_image.pro: Common-Resolution Convolution Kernels for Space- and Ground-Based Telescopes + ascl:1401.007 abundance: High Redshift Cluster Abundance + ascl:1401.008 massconvert: Halo Mass Conversion + ascl:1401.009 PPF module for CAMB + ascl:1401.010 SunPy: Python for Solar Physicists + ascl:1402.001 Vissage: ALMA VO Desktop Viewer + ascl:1402.002 Glue: Linked data visualizations across multiple files + ascl:1402.003 astroplotlib: Astronomical library of plots + ascl:1402.004 PyVO: Python access to the Virtual Observatory + ascl:1402.005 Aladin Lite: Lightweight sky atlas for browsers + ascl:1402.006 Munipack: General astronomical image processing software + ascl:1402.007 SPLAT: Spectral Analysis Tool + ascl:1402.008 SPLAT-VO: Spectral Analysis Tool for the Virtual Observatory + ascl:1402.009 GalSim: Modular galaxy image simulation toolkit + ascl:1402.010 CPL: Common Pipeline Library + ascl:1402.011 KROME: Chemistry package for astrophysical simulations + ascl:1402.012 QUICKCV: Cosmic variance calculator + ascl:1402.013 CASSIS: Interactive spectrum analysis + ascl:1402.014 ARTIST: Adaptable Radiative Transfer Innovations for Submillimeter Telescopes + ascl:1402.015 BF_dist: Busy Function fitting + ascl:1402.016 FAMA: Fast Automatic MOOG Analysis + ascl:1402.017 UVMULTIFIT: Fitting astronomical radio interferometric data + ascl:1402.018 TARDIS: Temperature And Radiative Diffusion In Supernovae + ascl:1402.019 ANAigm: Analytic model for attenuation by the intergalactic medium + ascl:1402.020 XNS: Axisymmetric equilibrium configuration of neutron stars + ascl:1402.021 PyGFit: Python Galaxy Fitter + ascl:1402.022 DexM: Semi-numerical simulations for very large scales + ascl:1402.023 HydraLens: Gravitational lens model generator + ascl:1402.024 QuickReduce: Data reduction pipeline for the WIYN One Degree Imager + ascl:1402.025 BAOlab: Baryon Acoustic Oscillations software + ascl:1402.026 athena: Tree code for second-order correlation functions + ascl:1402.027 Darth Fader: Galaxy catalog cleaning method for redshift estimation + ascl:1402.028 Commander 2: Bayesian CMB component separation and analysis + ascl:1402.029 wssa_utils: WSSA 12 micron dust map utilities + ascl:1402.030 P2SAD: Particle Phase Space Average Density + ascl:1402.031 gyrfalcON: N-body code + ascl:1402.032 HALOFIT: Nonlinear distribution of cosmological mass and galaxies + ascl:1402.033 libsharp: Library for spherical harmonic transforms + ascl:1402.034 PyWiFeS: Wide Field Spectrograph data reduction pipeline + ascl:1402.035 MGHalofit: Modified Gravity extension of Halofit + ascl:1403.001 GPU-D: Generating cosmological microlensing magnification maps + ascl:1403.002 pyExtinction: Atmospheric extinction + ascl:1403.003 MLZ: Machine Learning for photo-Z + ascl:1403.004 Lightcone: Light-cone generating script + ascl:1403.005 GRay: Massive parallel ODE integrator + ascl:1403.006 CHIMERA: Core-collapse supernovae simulation code + ascl:1403.007 Unified EOS for neutron stars + ascl:1403.008 SURF: Submm User Reduction Facility + ascl:1403.009 ISAP: ISO Spectral Analysis Package + ascl:1403.010 Inverse Beta: Inverse cumulative density function (CDF) of a Beta distribution + ascl:1403.011 RMHB: Hierarchical Reverberation Mapping + ascl:1403.012 YNOGKM: Time-like geodesics in the Kerr-Newmann Spacetime calculations + ascl:1403.013 BAOlab: Image processing program + ascl:1403.014 T(dust) as a function of sSFR + ascl:1403.015 computePk: Power spectrum computation + ascl:1403.016 Viewpoints: Fast interactive linked plotting of large multivariate data sets + ascl:1403.017 MGE_FIT_SECTORS: Multi-Gaussian Expansion fits to galaxy images + ascl:1403.018 JAM: Jeans Anisotropic MGE modeling method + ascl:1403.019 KINEMETRY: Analysis of 2D maps of kinematic moments of LOSVD + ascl:1403.020 disc2vel: Tangential and radial velocity components derivation + ascl:1403.021 CCDPACK: CCD Data Reduction Package + ascl:1403.022 KAPPA: Kernel Applications Package + ascl:1403.023 ASTERIX: X-ray Data Processing System + ascl:1403.024 GAIA: Graphical Astronomy and Image Analysis Tool + ascl:1403.025 SLALIB: A Positional Astronomy Library + ascl:1403.026 SOFA: Standards of Fundamental Astronomy + ascl:1404.001 LTS_LINEFIT & LTS_PLANEFIT: LTS fit of lines or planes + ascl:1404.002 ZDCF: Z-Transformed Discrete Correlation Function + ascl:1404.004 SAS: Science Analysis System for XMM-Newton observatory + ascl:1404.005 SER: Subpixel Event Repositioning Algorithms + ascl:1404.006 TORUS: Radiation transport and hydrodynamics code + ascl:1404.007 AMBIG: Automated Ambiguity-Resolution Code + ascl:1404.008 Comet: Multifunction VOEvent broker + ascl:1404.009 carma_pack: MCMC sampler for Bayesian inference + ascl:1404.010 VictoriaReginaModels: Stellar evolutionary tracks + ascl:1404.011 CAP_LOESS_1D & CAP_LOESS_2D: Recover mean trends from noisy data + ascl:1404.012 RegPT: Regularized cosmological power spectrum + ascl:1404.013 WFC3UV_GC: WFC3 UVIS geometric-distortion correction + ascl:1404.014 SpecPro: Astronomical spectra viewer and analyzer + ascl:1404.015 TTVFast: Transit timing inversion + ascl:1404.016 AST: World Coordinate Systems in Astronomy + ascl:1404.017 Spextool: Spectral EXtraction tool + ascl:1405.001 LBLRTM: Line-By-Line Radiative Transfer Model + ascl:1405.002 TelFit: Fitting the telluric absorption spectrum + ascl:1405.003 The Hammer: An IDL Spectral Typing Suite + ascl:1405.004 Defringeflat: Fringe pattern removal + ascl:1405.005 HIIPHOT: Automated Photometry of H II Regions + ascl:1405.006 PROPER: Optical propagation routines + ascl:1405.007 FORWARD: Forward modeling of coronal observables + ascl:1405.008 TRIPP: Time Resolved Imaging Photometry Package + ascl:1405.009 ATV: Image display tool + ascl:1405.010 FLUXES: Position and flux density of planets + ascl:1405.011 DATACUBE: A datacube manipulation package + ascl:1405.012 PISA: Position Intensity and Shape Analysis + ascl:1405.013 PHOTOM: Photometry of digitized images + ascl:1405.014 POLPACK: Imaging polarimetry reduction package + ascl:1405.015 CURSA: Catalog and Table Manipulation Applications + ascl:1405.016 DIPSO: Spectrum analysis code + ascl:1405.017 ESP: Extended Surface Photometry + ascl:1405.018 ECHOMOP: Echelle data reduction package + ascl:1406.001 ASURV: Astronomical SURVival Statistics + ascl:1406.002 PAMELA: Optimal extraction code for long-slit CCD spectroscopy + ascl:1406.003 CoREAS: CORSIKA-based Radio Emission from Air Showers simulator + ascl:1406.004 Autoastrom: Autoastrometry for Mosaics + ascl:1406.005 PERIOD: Time-series analysis package + ascl:1406.006 FROG: Time-series analysis + ascl:1406.007 RV: Radial Components of Observer's Velocity + ascl:1406.008 ASTROM: Basic astrometry program + ascl:1406.009 VADER: Viscous Accretion Disk Evolution Resource + ascl:1406.010 MATCH: A program for matching star lists + ascl:1406.011 TSP: Time-Series/Polarimetry Package + ascl:1406.012 POLMAP: Interactive data analysis package for linear spectropolarimetry + ascl:1406.013 CGS4DR: Automated reduction of data from CGS4 + ascl:1406.014 IRAS90: IRAS Data Processing + ascl:1406.015 IRCAMDR: IRCAM3 Data Reduction Software + ascl:1406.016 IUEDR: IUE Data Reduction package + ascl:1406.017 COCO: Conversion of Celestial Coordinates + ascl:1406.018 GAUSSCLUMPS: Gaussian-shaped clumping from a spectral map + ascl:1406.019 JCMTDR: Applications for reducing JCMT continuum data in GSD format + ascl:1406.020 STARMAN: Stellar photometry and image/table handling + ascl:1407.001 The Starfish Diagram: Statistical visualization tool + ascl:1407.002 TWODSPEC: Long-slit and optical fiber array spectra extensions for FIGARO + ascl:1407.003 SPECDRE: Spectroscopy Data Reduction + ascl:1407.004 MCMAC: Monte Carlo Merger Analysis Code + ascl:1407.005 MATLAB package for astronomy and astrophysics + ascl:1407.006 SAMI: Sydney-AAO Multi-object Integral field spectrograph pipeline + ascl:1407.007 ASTRORAY: General relativistic polarized radiative transfer code + ascl:1407.008 Exopop: Exoplanet population inference + ascl:1407.009 Period04: Statistical analysis of large astronomical time series + ascl:1407.010 CLE: Coronal line synthesis + ascl:1407.011 kungifu: Calibration and reduction of fiber-fed IFU astronomical spectroscopy + ascl:1407.012 PINGSoft2: Integral Field Spectroscopy Software + ascl:1407.013 VStar: Variable star data visualization and analysis tool + ascl:1407.014 VIDE: The Void IDentification and Examination toolkit + ascl:1407.015 BayesFlare: Bayesian method for detecting stellar flares + ascl:1407.016 Brut: Automatic bubble classifier + ascl:1407.017 e-MERLIN data reduction pipeline + ascl:1407.018 AstroML: Machine learning and data mining in astronomy + ascl:1407.019 EZ_Ages: Stellar population age calculator + ascl:1407.020 Halogen: Multimass spherical structure models for N-body simulations + ascl:1408.001 Imfit: A Fast, Flexible Program for Astronomical Image Fitting + ascl:1408.002 LIA: LWS Interactive Analysis + ascl:1408.003 PIA: ISOPHOT Interactive Analysis + ascl:1408.004 HEAsoft: Unified Release of FTOOLS and XANADU + ascl:1408.005 POET: Planetary Orbital Evolution due to Tides + ascl:1408.006 SPAM: Source Peeling and Atmospheric Modeling + ascl:1408.007 Skycorr: Sky emission subtraction for observations without plain sky information + ascl:1408.008 GALIC: Galaxy initial conditions construction + ascl:1408.009 IIPImage: Large-image visualization + ascl:1408.010 VisiOmatic: Celestial image viewer + ascl:1408.011 GALAPAGOS-C: Galaxy Analysis over Large Areas + ascl:1408.012 LightcurveMC: An extensible lightcurve simulation program + ascl:1408.013 NumCosmo: Numerical Cosmology + ascl:1408.014 pieflag: CASA task to efficiently flag bad data + ascl:1408.015 VPFIT: Voigt profile fitting program + ascl:1408.016 vpguess: Fitting multiple Voigt profiles to spectroscopic data + ascl:1408.017 RDGEN: Routines for data handling, display, and adjusting + ascl:1408.018 CosmoPhotoz: Photometric redshift estimation using generalized linear models + ascl:1408.019 O[2]scl: Object-oriented scientific computing library + ascl:1408.020 bamr: Bayesian analysis of mass and radius observations + ascl:1408.021 APS: Active Parameter Searching + ascl:1408.022 PhotoRApToR: PHOTOmetric Research APplication TO Redshifts + ascl:1408.023 WSClean: Widefield interferometric imager + ascl:1409.001 mixT: single-temperature fit for a multi-component thermal plasma + ascl:1409.002 Tsyganenko Geomagnetic Field Models + ascl:1409.003 LANL*: Radiation belt drift shell modeling + ascl:1409.004 IFSRED: Data Reduction for Integral Field Spectrographs + ascl:1409.005 IFSFIT: Spectral Fitting for Integral Field Spectrographs + ascl:1409.006 iSpec: Stellar atmospheric parameters and chemical abundances + ascl:1409.007 ORBS: A reduction software for SITELLE and SpiOMM data + ascl:1409.008 CHLOE: A tool for automatic detection of peculiar galaxies + ascl:1409.009 Nahoon: Time-dependent gas-phase chemical model + ascl:1409.010 Slim: Numerical data compression for scientific data sets + ascl:1409.011 rmfit: Forward-folding spectral analysis software + ascl:1409.012 CosmoSIS: Cosmological parameter estimation + ascl:1409.013 IM3SHAPE: Maximum likelihood galaxy shear measurement code for cosmic gravitational lensing + ascl:1410.001 DIAMONDS: high-DImensional And multi-MOdal NesteD Sampling + ascl:1410.002 MEPSA: Multiple Excess Peak Search Algorithm + ascl:1410.003 GIZMO: Multi-method magneto-hydrodynamics+gravity code + ascl:1410.004 UVOTPY: Swift UVOT grism data reduction + ascl:1410.005 RICH: Numerical simulation of compressible hydrodynamics on a moving Voronoi mesh + ascl:1411.001 pyGadgetReader: GADGET snapshot reader for python + ascl:1411.002 pysovo: A library for implementing alerts triggered by VOEvents + ascl:1411.003 voevent-parse: Parse, manipulate, and generate VOEvent XML packets + ascl:1411.004 OPERA: Open-source Pipeline for Espadons Reduction and Analysis + ascl:1411.005 HOPE: Just-in-time Python compiler for astrophysical computations + ascl:1411.006 RC3 mosaicking pipeline: Creating mosaics for the RC3 Catalogue + ascl:1411.007 segueSelect: SDSS/SEGUE selection function modelling + ascl:1411.008 galpy: Galactic dynamics package + ascl:1411.009 iDealCam: Interactive Data Reduction and Analysis for CanariCam + ascl:1411.010 Raga: Monte Carlo simulations of gravitational dynamics of non-spherical stellar systems + ascl:1411.011 PyMGC3: Finding stellar streams in the Galactic Halo using a family of Great Circle Cell counts methods + ascl:1411.012 util_2comp: Planck-based two-component dust model utilities + ascl:1411.013 NEAT: Nebular Empirical Analysis Tool + ascl:1411.014 NAFE: Noise Adaptive Fuzzy Equalization + ascl:1411.015 SPOTROD: Semi-analytic model for transits of spotted stars + ascl:1411.016 Flicker: Mean stellar densities from flicker + ascl:1411.017 ECCSAMPLES: Bayesian Priors for Orbital Eccentricity + ascl:1411.018 GPI Pipeline: Gemini Planet Imager Data Pipeline + ascl:1411.019 Anmap: Image and data analysis + ascl:1411.020 JCMT COADD: UKT14 continuum and photometry data reduction + ascl:1411.021 POSTMORTEM: Visibility data reduction and map making package + ascl:1411.022 Starlink Figaro: Starlink version of the Figaro data reduction software package + ascl:1411.023 NDF: Extensible N-dimensional Data Format Library + ascl:1411.024 CGS3DR: UKIRT CGS3 data reduction software + ascl:1411.025 SPT Lensing Likelihood: South Pole Telescope CMB lensing likelihood code + ascl:1411.026 sic: Sparse Inpainting Code + ascl:1411.027 BKGE: Fermi-LAT Background Estimator + ascl:1412.001 SoFiA: Source Finding Application + ascl:1412.002 Cheetah: Starspot modeling code + ascl:1412.003 UTM: Universal Transit Modeller + ascl:1412.004 DAMIT: Database of Asteroid Models from Inversion Techniques + ascl:1412.005 BRUCE/KYLIE: Pulsating star spectra synthesizer + ascl:1412.006 HMF: Halo Mass Function calculator + ascl:1412.007 PIAO: Python spherIcAl Overdensity code + ascl:1412.008 Hrothgar: MCMC model fitting toolkit + ascl:1412.009 URCHIN: Reverse ray tracer + ascl:1412.010 MMAS: Make Me A Star + ascl:1412.011 TraP: Transients discovery pipeline for image-plane surveys + ascl:1412.012 GeoTOA: Geocentric TOA tools + ascl:1412.013 CRPropa: Numerical tool for the propagation of UHE cosmic rays, gamma-rays and neutrinos + ascl:1412.014 SOPHIA: Simulations Of Photo Hadronic Interactions in Astrophysics + ascl:1501.001 PynPoint: Exoplanet image data analysis + ascl:1501.002 NIGO: Numerical Integrator of Galactic Orbits + ascl:1501.003 python-qucs: Python package for automating QUCS simulations + ascl:1501.004 dst: Polarimeter data destriper + ascl:1501.005 DECA: Decomposition of images of galaxies + ascl:1501.006 PsrPopPy: Pulsar Population Modelling Programs in Python + ascl:1501.007 LP-VIcode: La Plata Variational Indicators Code + ascl:1501.008 Enrico: Python package to simplify Fermi-LAT analysis + ascl:1501.009 BIANCHI: Bianchi VIIh Simulations + ascl:1501.010 PythonPhot: Simple DAOPHOT-type photometry in Python + ascl:1501.011 transfer: The Sloan Digital Sky Survey Data Transfer Infrastructure + ascl:1501.012 Exorings: Exoring modelling software + ascl:1501.013 Molecfit: Telluric absorption correction tool + ascl:1501.014 GalPaK 3D: Galaxy parameters and kinematics extraction from 3D data + ascl:1501.015 Exoplanet: Trans-dimensional MCMC method for exoplanet discovery + ascl:1501.016 Colossus: COsmology, haLO, and large-Scale StrUcture toolS + ascl:1502.001 RH 1.5D: Polarized multi-level radiative transfer with partial frequency distribution + ascl:1502.002 OpenOrb: Open-source asteroid orbit computation software + ascl:1502.003 N-GenIC: Cosmological structure initial conditions + ascl:1502.004 ADAM: All-Data Asteroid Modeling + ascl:1502.005 PARSEC: PARametrized Simulation Engine for Cosmic rays + ascl:1502.006 Montblanc: GPU accelerated Radio Interferometer Measurement Equations in support of Bayesian Inference for Radio Observations + ascl:1502.007 PyBDSF: Python Blob Detection and Source Finder + ascl:1502.008 KAPPA: Optically thin spectra synthesis for non-Maxwellian kappa-distributions + ascl:1502.009 HDS: Hierarchical Data System + ascl:1502.010 nbody6tt: Tidal tensors in N-body simulations + ascl:1502.011 PolyChord: Nested sampling for cosmology + ascl:1502.012 SPHGR: Smoothed-Particle Hydrodynamics Galaxy Reduction + ascl:1502.013 Rabacus: Analytic Cosmological Radiative Transfer Calculations + ascl:1502.014 Magnetron: Fitting bursts from magnetars + ascl:1502.015 Camelus: Counts of Amplified Mass Elevations from Lensing with Ultrafast Simulations + ascl:1502.016 libnova: Celestial mechanics, astrometry and astrodynamics library + ascl:1502.017 AMIsurvey: Calibration and imaging pipeline for radio data + ascl:1502.018 XFGLENSES: Gravitational lens visualizer + ascl:1502.019 XPCell: Convective plasma cells simulator + ascl:1502.020 ketu: Exoplanet candidate search code + ascl:1502.021 MaLTPyNT: Quick look timing analysis for NuSTAR data + ascl:1502.022 AstroLines: Astrophysical line list generator in the H-band + ascl:1502.023 ROBOSPECT: Width fitting program + ascl:1503.001 K2flix: Kepler pixel data visualizer + ascl:1503.002 Galax2d: 2D isothermal Euler equations solver + ascl:1503.003 TAME: Tool for Automatic Measurement of Equivalent-width + ascl:1503.004 HELIOS-K: Opacity Calculator for Radiative Transfer + ascl:1503.005 dust: Dust scattering and extinction in the X-ray + ascl:1503.006 AMADA: Analysis of Multidimensional Astronomical DAtasets + ascl:1503.007 UniPOPS: Unified data reduction suite + ascl:1503.008 pYSOVAR: Lightcurves analysis + ascl:1503.009 GSD: Global Section Datafile access library + ascl:1503.010 isochrones: Stellar model grid package + ascl:1503.011 VESPA: False positive probabilities calculator + ascl:1504.001 UPMASK: Unsupervised Photometric Membership Assignment in Stellar Clusters + ascl:1504.002 SPA: Solar Position Algorithm + ascl:1504.003 EsoRex: ESO Recipe Execution Tool + ascl:1504.004 HOTPANTS: High Order Transform of PSF ANd Template Subtraction + ascl:1504.005 chimenea: Multi-epoch radio-synthesis data imaging + ascl:1504.006 drive-casa: Python interface for CASA scripting + ascl:1504.007 WebbPSF: James Webb Space Telescope PSF Simulation Tool + ascl:1504.008 MCSpearman: Monte Carlo error analyses of Spearman's rank test + ascl:1504.009 Self-lensing binary code with Markov chain + ascl:1504.010 CosmoTransitions: Cosmological Phase Transitions + ascl:1504.011 samiDB: A Prototype Data Archive for Big Science Exploration + ascl:1504.012 DPI: Symplectic mapping for binary star systems for the Mercury software package + ascl:1504.013 kozai: Hierarchical triple systems evolution + ascl:1504.014 abcpmc: Approximate Bayesian Computation for Population Monte-Carlo code + ascl:1504.015 IGMtransmission: Transmission curve computation + ascl:1504.016 MRrelation: Posterior predictive mass distribution + ascl:1504.017 JWFront: Wavefronts and Light Cones for Kerr Spacetimes + ascl:1504.018 D3PO: Denoising, Deconvolving, and Decomposing Photon Observations + ascl:1504.019 LineProf: Line Profile Indicators + ascl:1504.020 BGLS: A Bayesian formalism for the generalised Lomb-Scargle periodogram + ascl:1504.021 SOAP 2.0: Spot Oscillation And Planet 2.0 + ascl:1505.001 CALCEPH: Planetary ephemeris files access code + ascl:1505.002 ASteCA: Automated Stellar Cluster Analysis + ascl:1505.003 caret: Classification and Regression Training + ascl:1505.004 KS Integration: Kelvin-Stokes integration + ascl:1505.005 ARoME: Analytical Rossiter-McLaughlin Effects + ascl:1505.006 Athena3D: Flux-conservative Godunov-type algorithm for compressible magnetohydrodynamics + ascl:1505.007 Starfish: Robust spectroscopic inference tools + ascl:1505.008 SCEPtER: Stellar CharactEristics Pisa Estimation gRid + ascl:1505.009 StellaR: Stellar evolution tracks and isochrones tools + ascl:1505.010 COBS: COnstrained B-Splines + ascl:1505.011 missForest: Nonparametric missing value imputation using random forest + ascl:1505.012 LSSGALPY: Visualization of the large-scale environment around galaxies on the 3D space + ascl:1505.013 cosmoabc: Likelihood-free inference for cosmology + ascl:1505.014 FCLC: Featureless Classification of Light Curves + ascl:1505.015 2dfdr: Data reduction software + ascl:1505.016 CUTE: Correlation Utilities and Two-point Estimation + ascl:1505.017 HALOGEN: Approximate synthetic halo catalog generator + ascl:1505.018 POKER: P Of K EstimatoR + ascl:1505.019 TFIT: Mixed-resolution data set photometry package + ascl:1505.020 rvfit: Radial velocity curves fitting for binary stars or exoplanets + ascl:1505.021 relline: Relativistic line profiles calculation + ascl:1505.022 Snoopy: General purpose spectral solver + ascl:1505.023 SNooPy: TypeIa supernovae analysis tools + ascl:1505.024 PyTransit: Transit light curve modeling + ascl:1505.025 pyMCZ: Oxygen abundances calculations and uncertainties from strong-line flux measurements + ascl:1505.026 Lensed: Forward parametric modelling of strong lenses + ascl:1505.027 BAYES-X: Bayesian inference tool for the analysis of X-ray observations of galaxy clusters + ascl:1505.028 RESOLVE: Bayesian algorithm for aperture synthesis imaging in radio astronomy + ascl:1505.029 fits2hdf: FITS to HDFITS conversion + ascl:1505.030 CANDID: Companion Analysis and Non-Detection in Interferometric Data + ascl:1505.031 TEA: Thermal Equilibrium Abundances + ascl:1505.032 Planck Level-S: Planck Simulation Package + ascl:1505.033 SNEC: SuperNova Explosion Code + ascl:1505.034 dStar: Neutron star thermal evolution code + ascl:1506.001 pyKLIP: PSF Subtraction for Exoplanets and Disks + ascl:1506.002 dmdd: Dark matter direct detection + ascl:1506.003 PLATO Simulator: Realistic simulations of expected observations + ascl:1506.004 multiband_LS: Multiband Lomb-Scargle Periodograms + ascl:1506.005 PyMC: Bayesian Stochastic Modelling in Python + ascl:1506.006 fsclean: Faraday Synthesis CLEAN imager + ascl:1506.007 REALMAF: Magnetic power spectra from Faraday rotation maps + ascl:1506.008 SPRITE: Sparsity-based super-resolution algorithm + ascl:1506.009 HEATCVB: Coronal heating rate approximations + ascl:1506.010 VAPID: Voigt Absorption-Profile [Interstellar] Dabbler + ascl:1507.001 3D-Barolo: 3D fitting tool for the kinematics of galaxies + ascl:1507.002 SUPERBOX: Particle-multi-mesh code to simulate galaxies + ascl:1507.003 Pelican: Pipeline for Extensible, Lightweight Imaging and CAlibratioN + ascl:1507.004 L-PICOLA: Fast dark matter simulation code + ascl:1507.005 slimplectic: Discrete non-conservative numerical integrator + ascl:1507.006 Toyz: Large datasets and astronomical images analysis framework + ascl:1507.007 abo-cross: Hydrogen broadening cross-section calculator + ascl:1507.008 HLINOP: Hydrogen LINe OPacity in stellar atmospheres + ascl:1507.009 PPInteractions: Secondary particle spectra from proton-proton interactions + ascl:1507.010 Astrochem: Abundances of chemical species in the interstellar medium + ascl:1507.011 FAT: Fully Automated TiRiFiC + ascl:1507.012 DRAMA: Instrumentation software environment + ascl:1507.013 K-Inpainting: Inpainting for Kepler + ascl:1507.014 getsources: Multi-scale, multi-wavelength source extraction + ascl:1507.015 DALI: Derivative Approximation for LIkelihoods + ascl:1507.016 Least Asymmetry: Centering Method + ascl:1507.017 REDSPEC: NIRSPEC data reduction + ascl:1507.018 pyro: Python-based tutorial for computational methods for hydrodynamics + ascl:1507.019 AstroStat: Statistical analysis tool + ascl:1507.020 IEHI: Ionization Equilibrium for Heavy Ions + ascl:1508.001 HMcode: Halo-model matter power spectrum computation + ascl:1508.002 NICOLE: NLTE Stokes Synthesis/Inversion Code + ascl:1508.003 REDUCEME: Long-slit spectroscopic data reduction and analysis + ascl:1508.004 FRELLED: FITS Realtime Explorer of Low Latency in Every Dimension + ascl:1508.005 ColorPro: PSF-corrected aperture-matched photometry + ascl:1508.006 SExSeg: SExtractor segmentation + ascl:1508.007 TreeCorr: Two-point correlation functions + ascl:1508.008 NGMIX: Gaussian mixture models for 2D images + ascl:1508.009 Trilogy: FITS image conversion software + ascl:1508.010 SHDOM: Spherical Harmonic Discrete Ordinate Method for atmospheric radiative transfer + ascl:1509.001 XSHPipelineManager: Wrapper for the VLT/X-shooter Data Reduction Pipeline + ascl:1509.002 Tempo: Pulsar timing data analysis + ascl:1509.003 AFR (ASPFitsReader): A pulsar FITS file reader and analysis package + ascl:1509.004 FalconIC: Initial conditions generator for cosmological N-body simulations in Newtonian, Relativistic and Modified theories + ascl:1509.005 TRUVOT: True Background Technique for the Swift UVOT Grisms + ascl:1509.006 FARGO3D: Hydrodynamics/magnetohydrodynamics code + ascl:1509.007 pycola: N-body COLA method code + ascl:1509.008 GFARGO: FARGO for GPU + ascl:1509.009 OPERA: Objective Prism Enhanced Reduction Algorithms + ascl:1509.010 PyCS : Python Curve Shifting + ascl:1510.001 GGADT: Generalized Geometry Anomalous Diffraction Theory + ascl:1510.002 batman: BAsic Transit Model cAlculatioN in Python + ascl:1510.003 PyLDTk: Python toolkit for calculating stellar limb darkening profiles and model-specific coefficients for arbitrary filters + ascl:1510.004 DEBiL: Detached Eclipsing Binary Light curve fitter + ascl:1510.005 GALFORM: Galactic modeling + ascl:1510.006 ASPIC: STARLINK image processing package + ascl:1510.007 ccdproc: CCD data reduction software + ascl:1511.001 SuperFreq: Numerical determination of fundamental frequencies of an orbit + ascl:1511.002 JSPAM: Interacting galaxies modeller + ascl:1511.003 SkyView Virtual Telescope + ascl:1511.004 Xgremlin: Interferograms and spectra from Fourier transform spectrometers analysis + ascl:1511.005 pyhrs: Spectroscopic data reduction package for SALT + ascl:1511.006 T-Matrix: Codes for Computing Electromagnetic Scattering by Nonspherical and Aggregated Particles + ascl:1511.007 MHF: MLAPM Halo Finder + ascl:1511.008 MCAL: M dwarf metallicity and temperature calculator + ascl:1511.009 Pangloss: Reconstructing lensing mass + ascl:1511.010 Galileon-Solver: N-body code + ascl:1511.011 SparsePZ: Sparse Representation of Photometric Redshift PDFs + ascl:1511.012 milkywayproject_triggering: Correlation functions for two catalog datasets + ascl:1511.013 CCDtoRGB: RGB image production from three-band astronomical images + ascl:1511.014 HumVI: Human Viewable Image creation + ascl:1511.015 George: Gaussian Process regression + ascl:1511.016 JKTLD: Limb darkening coefficients + ascl:1511.017 DES exposure checker: Dark Energy Survey image quality control crowdsourcer + ascl:1511.018 LDC3: Three-parameter limb darkening coefficient sampling + ascl:1511.019 CosmoBolognaLib: Open source C++ libraries for cosmological calculations + ascl:1511.020 Mercury-T: Tidally evolving multi-planet systems code + ascl:1511.021 EPIC: E-field Parallel Imaging Correlator + ascl:1511.022 ZInCo: Zoomed Initial Conditions + ascl:1511.023 PromptNuFlux: Prompt atmospheric neutrino flux calculator + ascl:1512.001 IRACpm: Distortion correction for IRAC astrometric data + ascl:1512.002 GetData: A filesystem-based, column-oriented database format for time-ordered binary data + ascl:1512.003 EDRS: Electronography Data Reduction System + ascl:1512.004 EDRSX: Extensions to the EDRS package + ascl:1512.005 ALFA: Automated Line Fitting Algorithm + ascl:1512.006 GPC: General Polygon Clipper library + ascl:1512.007 AstroBlend: Visualization package for use with Blender + ascl:1512.008 Bisous model: Detecting filamentary pattern in point processes + ascl:1512.009 DRACULA: Dimensionality Reduction And Clustering for Unsupervised Learning in Astronomy + ascl:1512.010 CubeIndexer: Indexer for regions of interest in data cubes + ascl:1512.011 ExoData: Open Exoplanet Catalogue exploration and analysis tool + ascl:1512.012 DiffuseModel: Modeling the diffuse ultraviolet background + ascl:1512.013 CounterPoint: Zeeman-split absorption lines + ascl:1512.014 TM: Torus Mapper + ascl:1512.015 Spirality: Spiral arm pitch angle measurement + ascl:1512.016 ZeldovichRecon: Halo correlation function using the Zeldovich approximation + ascl:1512.017 FFTLog: Fast Fourier or Hankel transform + ascl:1512.018 growl: Growth factor and growth rate of expanding universes + ascl:1512.019 UPSILoN: AUtomated Classification of Periodic Variable Stars using MachIne LearNing + ascl:1512.020 TACT: The Action Computation Tool + ascl:1601.001 TRADES: TRAnsits and Dynamics of Exoplanetary Systems + ascl:1601.002 Hyper-Fit: Fitting routines for multidimensional data with multivariate Gaussian uncertainties + ascl:1601.003 SCOUSE: Semi-automated multi-COmponent Universal Spectral-line fitting Engine + ascl:1601.004 Odyssey: Ray tracing and radiative transfer in Kerr spacetime + ascl:1601.005 ctools: Cherenkov Telescope Science Analysis Software + ascl:1601.006 SAGE: Semi-Analytic Galaxy Evolution + ascl:1601.007 LIRA: Low-counts Image Reconstruction and Analysis + ascl:1601.008 CosmicPy: Interactive cosmology computations + ascl:1601.009 K2fov: Field of view software for NASA's K2 mission + ascl:1601.010 PARAVT: Parallel Voronoi Tessellation + ascl:1601.011 LACEwING: LocAting Constituent mEmbers In Nearby Groups + ascl:1601.012 SavGolFilterCov: Savitzky Golay filter for data with error covariance + ascl:1601.013 ImpactModel: Black Hole Accretion Disk Impact Model + ascl:1601.014 Nulike: Neutrino telescope likelihood tools + ascl:1601.015 QDPHOT: Quick & Dirty PHOTometry + ascl:1601.016 Fit Kinematic PA: Fit the global kinematic position-angle of galaxies + ascl:1601.017 BASCS: Bayesian Separation of Close Sources + ascl:1601.018 MATPHOT: Stellar photometry and astrometry with discrete point spread functions + ascl:1601.019 WzBinned: Binned and uncorrelated estimates of dark energy EOS extractor + ascl:1601.020 ProC: Process Coordinator + ascl:1601.021 ISO: Isochrone construction + ascl:1602.001 Automark: Automatic marking of marked Poisson process in astronomical high-dimensional datasets + ascl:1602.002 pyraf-dbsp: Reduction pipeline for the Palomar Double Beam Spectrograph + ascl:1602.003 ZAP: Zurich Atmosphere Purge + ascl:1602.004 DUSTYWAVE: Linear waves in gas and dust + ascl:1602.005 LRGS: Linear Regression by Gibbs Sampling + ascl:1602.006 LIRA: LInear Regression in Astronomy + ascl:1602.007 FilTER: Filament Trait-Evaluated Reconstruction + ascl:1602.008 NuCraft: Oscillation probabilities for atmospheric neutrinos calculator + ascl:1602.009 LensTools: Weak Lensing computing tools + ascl:1602.010 The Cannon: Data-driven method for determining stellar parameters and abundances from stellar spectra + ascl:1602.011 Celestial: Common astronomical conversion routines and functions + ascl:1602.012 DELightcurveSimulation: Light curve simulation code + ascl:1602.013 TailZ: Redshift distributions estimator of photometric samples of galaxies + ascl:1602.014 k2photometry: Read, reduce and detrend K2 photometry + ascl:1602.015 GANDALF: Graphical Astrophysics code for N-body Dynamics And Lagrangian Fluids + ascl:1602.016 IRSFRINGE: Interactive tool for fringe removal from Spitzer IRS spectra + ascl:1602.017 CHIP: Caltech High-res IRS Pipeline + ascl:1602.018 POPPY: Physical Optics Propagation in PYthon + ascl:1602.019 CLOC: Cluster Luminosity Order-Statistic Code + ascl:1602.020 mbb_emcee: Modified Blackbody MCMC + ascl:1602.021 COLAcode: COmoving Lagrangian Acceleration code + ascl:1603.001 SILSS: SPHERE/IRDIS Long-Slit Spectroscopy pipeline + ascl:1603.002 CORBITS: Efficient Geometric Probabilities of Multi-Transiting Exoplanetary Systems + ascl:1603.003 VIP: Vortex Image Processing pipeline for high-contrast direct imaging of exoplanets + ascl:1603.004 gPhoton: Time-tagged GALEX photon events analysis tools + ascl:1603.005 EQUIB: Atomic level populations and line emissivities calculator + ascl:1603.006 FAST-PT: Convolution integrals in cosmological perturbation theory calculator + ascl:1603.007 SMARTIES: Spheroids Modelled Accurately with a Robust T-matrix Implementation for Electromagnetic Scattering + ascl:1603.008 ROBAST: ROOT-based ray-tracing library for cosmic-ray telescopes + ascl:1603.009 Asfgrid: Asteroseismic parameters for a star + ascl:1603.010 ExoPriors: Accounting for observational bias of transiting exoplanets + ascl:1603.011 DiskJockey: Protoplanetary disk modeling for dynamical mass derivation + ascl:1603.012 tpipe: Searching radio interferometry data for fast, dispersed transients + ascl:1603.013 PyGSM: Python interface to the Global Sky Model + ascl:1603.014 fibmeasure: Python/Cython module to find the center of back-illuminated optical fibers in metrology images + ascl:1603.015 Dedalus: Flexible framework for spectrally solving differential equations + ascl:1603.016 ellc: Light curve model for eclipsing binary stars and transiting exoplanets + ascl:1603.017 HIIexplorer: Detect and extract integrated spectra of HII regions + ascl:1603.018 PolRadTran: Polarized Radiative Transfer Model Distribution + ascl:1604.001 OpenMHD: Godunov-type code for ideal/resistive magnetohydrodynamics (MHD) + ascl:1604.002 libpolycomp: Compression/decompression library + ascl:1604.003 LAMBDAR: Lambda Adaptive Multi-Band Deblending Algorithm in R + ascl:1604.004 magicaxis: Pretty scientific plotting with minor-tick and log minor-tick support + ascl:1604.005 Halotools: Galaxy-Halo connection models + ascl:1604.006 2-DUST: Dust radiative transfer code + ascl:1604.007 DNest3: Diffusive Nested Sampling + ascl:1604.008 The Tractor: Probabilistic astronomical source detection and measurement + ascl:1604.009 CCSNMultivar: Core-Collapse Supernova Gravitational Waves + ascl:1604.010 BEAMS: Bayesian Estimation of Multiple Species + ascl:1604.011 FDPS: Framework for Developing Particle Simulators + ascl:1604.012 TTVFaster: First order eccentricity transit timing variations (TTVs) + ascl:1605.001 MARZ: Redshifting Program + ascl:1605.002 cluster-lensing: Tools for calculating properties and weak lensing profiles of galaxy clusters + ascl:1605.003 Shadowfax: Moving mesh hydrodynamical integration code + ascl:1605.004 BACCHUS: Brussels Automatic Code for Characterizing High accUracy Spectra + ascl:1605.005 TMBIDL: Single dish radio astronomy data reduction package + ascl:1605.006 CAMELOT: Cloud Archive for MEtadata, Library and Online Toolkit + ascl:1605.007 MUSCLE: MUltiscale Spherical-ColLapse Evolution + ascl:1605.008 PDT: Photometric DeTrending Algorithm Using Machine Learning + ascl:1605.009 ASTRiDE: Automated Streak Detection for Astronomical Images + ascl:1605.010 TRIPPy: Python-based Trailed Source Photometry + ascl:1605.011 DISCO: 3-D moving-mesh magnetohydrodynamics package + ascl:1605.012 K2SC: K2 Systematics Correction + ascl:1605.013 grtrans: Polarized general relativistic radiative transfer via ray tracing + ascl:1605.014 DUO: Spectra of diatomic molecules + ascl:1605.015 SAND: Automated VLBI imaging and analyzing pipeline + ascl:1605.016 zeldovich-PLT: Zel'dovich approximation initial conditions generator + ascl:1605.017 Surprise Calculator: Estimating relative entropy and Surprise between samples + ascl:1606.001 SWOC: Spectral Wavelength Optimization Code + ascl:1606.002 PAL: Positional Astronomy Library + ascl:1606.003 Cygrid: Cython-powered convolution-based gridding module for Python + ascl:1606.004 HIBAYES: Global 21-cm Bayesian Monte-Carlo Model Fitting + ascl:1606.005 PyMultiNest: Python interface for MultiNest + ascl:1606.006 uvmcmcfit: Parametric models to interferometric data fitter + ascl:1606.007 COMB: Compact embedded object simulations + ascl:1606.008 s2: Object oriented wrapper for functions on the sphere + ascl:1606.009 Companion-Finder: Planets and binary companions in time series spectra + ascl:1606.010 SimpLens: Interactive gravitational lensing simulator + ascl:1606.011 FDIPS: Finite Difference Iterative Potential-field Solver + ascl:1606.012 KMDWARFPARAM: Parameters estimator for K and M dwarf stars + ascl:1606.013 Pulse Portraiture: Pulsar timing + ascl:1606.014 Lmfit: Non-Linear Least-Square Minimization and Curve-Fitting for Python + ascl:1606.015 FLASK: Full-sky Lognormal Astro-fields Simulation Kit + ascl:1607.001 AGNfitter: SED-fitting code for AGN and galaxies from a MCMC approach + ascl:1607.002 DICE: Disk Initial Conditions Environment + ascl:1607.003 Atlas2bgeneral: Two-body resonance calculator + ascl:1607.004 Atlas3bgeneral: Three-body resonance calculator + ascl:1607.005 Planetary3br: Three massive body resonance calculator + ascl:1607.006 Cholla: 3D GPU-based hydrodynamics code for astrophysical simulation + ascl:1607.007 JUDE: An Utraviolet Imaging Telescope pipeline + ascl:1607.008 BLS: Box-fitting Least Squares + ascl:1607.009 PICsar: Particle in cell pulsar magnetosphere simulator + ascl:1607.010 K2PS: K2 Planet search + ascl:1607.011 HfS: Hyperfine Structure fitting tool + ascl:1607.012 ZASPE: Zonal Atmospheric Stellar Parameters Estimator + ascl:1607.013 Kālī: Time series data modeler + ascl:1607.014 SOPIE: Sequential Off-Pulse Interval Estimation + ascl:1607.015 RT1D: 1D code for Rayleigh-Taylor instability + ascl:1607.016 astLib: Tools for research astronomers + ascl:1607.017 BoxRemap: Volume and local structure preserving mapping of periodic boxes + ascl:1607.018 LZIFU: IDL emission line fitting pipeline for integral field spectroscopy data + ascl:1607.019 HIDE: HI Data Emulator + ascl:1607.020 SEEK: Signal Extraction and Emission Kartographer + ascl:1608.001 Stingray: Spectral-timing software + ascl:1608.002 pyXSIM: Synthetic X-ray observations generator + ascl:1608.003 appaloosa: Python-based flare finding code for Kepler light curves + ascl:1608.004 BART: Bayesian Atmospheric Radiative Transfer fitting code + ascl:1608.005 AstroVis: Visualizing astronomical data cubes + ascl:1608.006 Gemini IRAF: Data reduction software for the Gemini telescopes + ascl:1608.007 BASE-9: Bayesian Analysis for Stellar Evolution with nine variables + ascl:1608.008 Cuba: Multidimensional numerical integration library + ascl:1608.009 FilFinder: Filamentary structure in molecular clouds + ascl:1608.010 pvextractor: Position-Velocity Diagram Extractor + ascl:1608.011 PROFFIT: Analysis of X-ray surface-brightness profiles + ascl:1608.012 OBERON: OBliquity and Energy balance Run on N-body systems + ascl:1608.013 DOLPHOT: Stellar photometry + ascl:1608.014 gevolution: General Relativity Cosmological N-body code for evolution of large scale structures + ascl:1608.015 2DFFT: Measuring Galactic Spiral Arm Pitch Angle + ascl:1608.016 NICIL: Non-Ideal magnetohydrodynamics Coefficients and Ionisation Library + ascl:1608.017 21CMMC: Parallelized Monte Carlo Markov Chain analysis tool for the epoch of reionization (EoR) + ascl:1608.018 LORENE: Spectral methods differential equations solver + ascl:1608.019 NEBULAR: Spectrum synthesis for mixed hydrogen-helium gas in ionization equilibrium + ascl:1608.020 SPIDERz: SuPport vector classification for IDEntifying Redshifts + ascl:1609.001 T-PHOT: PSF-matched, prior-based, multiwavelength extragalactic deconfusion photometry + ascl:1609.002 StarPy: Quenched star formation history parameters of a galaxy using MCMC + ascl:1609.003 Kranc: Cactus modules from Mathematica equations + ascl:1609.004 FISHPACK: Efficient FORTRAN Subprograms for the Solution of Separable Elliptic Partial Differential Equations + ascl:1609.005 FISHPACK90: Efficient FORTRAN Subprograms for the Solution of Separable Elliptic Partial Differential Equations + ascl:1609.006 SCIMES: Spectral Clustering for Interstellar Molecular Emission Segmentation + ascl:1609.007 Weighted EMPCA: Weighted Expectation Maximization Principal Component Analysis + ascl:1609.008 GRASP: General-purpose Relativistic Atomic Structure Package + ascl:1609.009 NSCool: Neutron star cooling code + ascl:1609.010 CuBANz: Photometric redshift estimator + ascl:1609.011 Photutils: Photometry tools + ascl:1609.012 AIPY: Astronomical Interferometry in PYthon + ascl:1609.013 21cmSense: Calculating the sensitivity of 21cm experiments to the EoR power spectrum + ascl:1609.014 Sky3D: Time-dependent Hartree-Fock equation solver + ascl:1609.015 FIT3D: Fitting optical spectra + ascl:1609.016 PKDGRAV3: Parallel gravity code + ascl:1609.017 spectral-cube: Read and analyze astrophysical spectral data cubes + ascl:1609.018 SIP: Systematics-Insensitive Periodograms + ascl:1609.019 SuperBoL: Module for calculating the bolometric luminosities of supernovae + ascl:1609.020 Askaryan Module: Askaryan electric fields predictor + ascl:1609.021 TIDEV: Tidal Evolution package + ascl:1609.022 PyPHER: Python-based PSF Homogenization kERnels + ascl:1609.023 contbin: Contour binning and accumulative smoothing + ascl:1609.024 AdaptiveBin: Adaptive Binning + ascl:1609.025 PYESSENCE: Generalized Coupled Quintessence Linear Perturbation Python Code + ascl:1610.001 Piccard: Pulsar timing data analysis package + ascl:1610.002 CERES: Collection of Extraction Routines for Echelle Spectra + ascl:1610.003 DSDEPROJ: Direct Spectral Deprojection + ascl:1610.004 MUSE-DRP: MUSE Data Reduction Pipeline + ascl:1610.005 GSGS: In-Focus Phase Retrieval Using Non-Redundant Mask Data + ascl:1610.006 C^3: Command-line Catalogue Crossmatch for modern astronomical surveys + ascl:1610.007 gatspy: General tools for Astronomical Time Series in Python + ascl:1610.008 cluster-in-a-box: Statistical model of sub-millimeter emission from embedded protostellar clusters + ascl:1610.009 velbin: radial velocity corrected for binary orbital motions + ascl:1610.010 BurnMan: Lower mantle mineral physics toolkit + ascl:1610.011 BXA: Bayesian X-ray Analysis + ascl:1610.012 Fourierdimredn: Fourier dimensionality reduction model for interferometric imaging + ascl:1610.013 MC^3: Multi-core Markov-chain Monte Carlo code + ascl:1610.014 Freddi: Fast Rise Exponential Decay accretion Disk model Implementation + ascl:1610.015 NuPyCEE: NuGrid Python Chemical Evolution Environment + ascl:1610.016 PyMC3: Python probabilistic programming framework + ascl:1611.001 UltraNest: Pythonic Nested Sampling Development Framework and UltraNest + ascl:1611.002 tf_unet: Generic convolutional neural network U-Net implementation in Tensorflow + ascl:1611.003 MPDAF: MUSE Python Data Analysis Framework + ascl:1611.004 PRECESSION: Python toolbox for dynamics of spinning black-hole binaries + ascl:1611.005 Exo-Transmit: Radiative transfer code for calculating exoplanet transmission spectra + ascl:1611.006 GalPot: Galaxy potential code + ascl:1611.007 GRASP2K: Relativistic Atomic Structure Package + ascl:1611.008 Transit Clairvoyance: Predicting multiple-planet systems for TESS + ascl:1611.009 RHOCUBE: 3D density distributions modeling code + ascl:1611.010 Kapteyn Package: Tools for developing astronomical applications + ascl:1611.011 OXAF: Ionizing spectra of Seyfert galaxies for photoionization modeling + ascl:1611.012 EarthShadow: Calculator for dark matter particle velocity distribution after Earth-scattering + ascl:1611.013 pyGMMis: Mixtures-of-Gaussians density estimation method + ascl:1611.014 AIMS: Asteroseismic Inference on a Massive Scale + ascl:1611.015 Pippi: Parse and plot MCMC chains + ascl:1611.016 Carpet: Adaptive Mesh Refinement for the Cactus Framework + ascl:1611.017 SNCosmo: Python library for supernova cosmology + ascl:1611.018 Icarus: Stellar binary light curve synthesis tool + ascl:1611.019 phase_space_cosmo_fisher: Fisher matrix 2D contours + ascl:1611.020 CMCIRSED: Far-infrared spectral energy distribution fitting for galaxies near and far + ascl:1611.021 SlicerAstro: Astronomy (HI) extension for 3D Slicer + ascl:1611.022 proEQUIB: IDL/GDL library for atomic level populations and line emissivities in statistical equilibrium + ascl:1612.001 Python-CPL: Python interface for the ESO Common Pipeline Library + ascl:1612.002 LSDCat: Line Source Detection and Cataloguing Tool + ascl:1612.003 libprofit: Image creation from luminosity profiles + ascl:1612.004 ProFit: Bayesian galaxy fitting tool + ascl:1612.005 PyProfit: Wrapper for libprofit + ascl:1612.006 flexCE: Flexible one-zone chemical evolution code + ascl:1612.007 dacapo_calibration: Photometric calibration code + ascl:1612.008 PyORBIT: Exoplanet orbital parameters and stellar activity + ascl:1612.009 CRETE: Comet RadiativE Transfer and Excitation + ascl:1612.010 Earthshine simulator: Idealized images of the Moon + ascl:1612.011 QSFit: Quasar Spectral FITting + ascl:1612.012 Meso-NH: Non-hydrostatic mesoscale atmospheric model + ascl:1612.013 InversionKit: Linear inversions from frequency data + ascl:1612.014 AUTOSTRUCTURE: General program for calculation of atomic and ionic properties + ascl:1612.015 Superplot: Graphical interface for plotting and analyzing data + ascl:1612.016 CELib: Software library for simulations of chemical evolution + ascl:1612.017 GAMER: GPU-accelerated Adaptive MEsh Refinement code + ascl:1612.018 pylightcurve: Exoplanet lightcurve model + ascl:1612.019 Trident: Synthetic spectrum generator + ascl:1612.020 Grackle: Chemistry and radiative cooling library for astrophysical simulations + ascl:1612.021 BaTMAn: Bayesian Technique for Multi-image Analysis + ascl:1612.022 REPS: REscaled Power Spectra for initial conditions with massive neutrinos + ascl:1701.001 The Joker: A custom Monte Carlo sampler for binary-star and exoplanet radial velocity data + ascl:1701.002 Vizic: Jupyter-based interactive visualization tool for astronomical catalogs + ascl:1701.003 Spectra: Time series power spectrum calculator + ascl:1701.004 CosmoSlik: Cosmology sampler of likelihoods + ascl:1701.005 KAULAKYS: Inelastic collisions between hydrogen atoms and Rydberg atoms + ascl:1701.006 MSWAVEF: Momentum-Space Wavefunctions + ascl:1701.007 Forecaster: Mass and radii of planets predictor + ascl:1701.008 GrayStar: Web-based pedagogical stellar modeling + ascl:1701.009 GrayStarServer: Stellar atmospheric modeling and spectrum synthesis + ascl:1701.010 kcorrect: Calculate K-corrections between observed and desired bandpasses + ascl:1701.011 GWFrames: Manipulate gravitational waveforms + ascl:1701.012 SONG: Second Order Non-Gaussianity + ascl:1702.001 ORBE: Orbital integrator for educational purposes + ascl:1702.002 corner.py: Corner plots + ascl:1702.003 juwvid: Julia code for time-frequency analysis + ascl:1702.004 Validation: Codes to compare simulation data to various observations + ascl:1702.005 JetCurry: Modeling 3D geometry of AGN jets from 2D images + ascl:1702.006 GalaxyGAN: Generative Adversarial Networks for recovery of galaxy features + ascl:1702.007 KEPLER: General purpose 1D multizone hydrodynamics code + ascl:1702.008 HOURS: Simulation and analysis software for the KM3NeT + ascl:1702.009 stream-stream: Stellar and dark-matter streams interactions + ascl:1702.010 streamgap-pepper: Effects of peppering streams with many small impacts + ascl:1702.011 Chempy: A flexible chemical evolution model for abundance fitting + ascl:1702.012 GRIM: General Relativistic Implicit Magnetohydrodynamics + ascl:1703.001 Larch: X-ray Analysis for Synchrotron Applications using Python + ascl:1703.002 COCOA: Simulating Observations of Star Cluster Simulations + ascl:1703.003 Corrfunc: Blazing fast correlation functions on the CPU + ascl:1703.004 PHOTOMETRYPIPELINE: Automated photometry pipeline + ascl:1703.005 starsense_algorithms: Performance evaluation of various star sensors + ascl:1703.006 SNRPy: Supernova remnant evolution modeling + ascl:1703.007 sidm-nbody: Monte Carlo N-body Simulation for Self-Interacting Dark Matter + ascl:1703.008 exorings: Exoring Transit Properties + ascl:1703.009 PyMVPA: MultiVariate Pattern Analysis in Python + ascl:1703.010 TransitSOM: Self-Organizing Map for Kepler and K2 transits + ascl:1703.011 QtClassify: IFS data emission line candidates classifier + ascl:1703.012 ICICLE: Initial Conditions for Isolated CoLlisionless systEms + ascl:1703.013 Atmospheric Athena: 3D Atmospheric escape model with ionizing radiative transfer + ascl:1703.014 MC-SPAM: Monte-Carlo Synthetic-Photometry/Atmosphere-Model + ascl:1703.015 Charm: Cosmic history agnostic reconstruction method + ascl:1704.001 pwkit: Astronomical utilities in Python + ascl:1704.002 UDAT: A multi-purpose data analysis tool + ascl:1704.003 Shwirl: Meaningful coloring of spectral cube data with volume rendering + ascl:1704.004 STATCONT: Statistical continuum level determination method for line-rich sources + ascl:1704.005 VaST: Variability Search Toolkit + ascl:1704.006 Quickclump: Identify clumps within a 3D FITS datacube + ascl:1704.007 PySM: Python Sky Model + ascl:1704.008 Transit: Radiative-transfer code for planetary atmospheres + ascl:1704.009 Photo-z-SQL: Photometric redshift estimation framework + ascl:1704.010 A-Track: Detecting Moving Objects in FITS images + ascl:1704.011 VULCAN: Chemical Kinetics For Exoplanetary Atmospheres + ascl:1704.012 XID+: Next generation XID development + ascl:1704.013 Difference-smoothing: Measuring time delay from light curves + ascl:1704.014 Multipoles: Potential gain for binary lens estimation + ascl:1705.001 COSMOS: Carnegie Observatories System for MultiObject Spectroscopy + ascl:1705.002 DMATIS: Dark Matter ATtenuation Importance Sampling + ascl:1705.003 demc2: Differential evolution Markov chain Monte Carlo parameter estimator + ascl:1705.004 PCAT: Probabilistic Cataloger + ascl:1705.005 SPTCLASS: SPecTral CLASSificator code + ascl:1705.006 f3: Full Frame Fotometry for Kepler Full Frame Images + ascl:1705.007 getimages: Background derivation and image flattening method + ascl:1705.008 MBProj2: Multi-Band x-ray surface brightness PROJector 2 + ascl:1705.009 LensPop: Galaxy-galaxy strong lensing population simulation + ascl:1705.010 PROFILER: 1D galaxy light profile decomposition + ascl:1705.011 FDBinary: A tool for spectral disentangling of double-lined spectroscopic binary stars + ascl:1705.012 fd3: Spectral disentangling of double-lined spectroscopic binary stars + ascl:1705.013 PSOAP: Precision Spectroscopic Orbits A-Parametrically + ascl:1705.014 NPTFit: Non-Poissonian Template Fitting + ascl:1705.015 WeirdestGalaxies: Outlier Detection Algorithm on Galaxy Spectra + ascl:1705.016 astroABC: Approximate Bayesian Computation Sequential Monte Carlo sampler + ascl:1705.017 supernovae: Photometric classification of supernovae + ascl:1706.001 Exotrending: Fast and easy-to-use light curve detrending software for exoplanets + ascl:1706.002 rtpipe: Searching for Fast Radio Transients in Interferometric Data + ascl:1706.003 DaMaSCUS: Dark Matter Simulation Code for Underground Scatterings + ascl:1706.004 Dark Sage: Semi-analytic model of galaxy evolution + ascl:1706.005 LMC: Logarithmantic Monte Carlo + ascl:1706.006 GenPK: Power spectrum generator + ascl:1706.007 encube: Large-scale comparative visualization and analysis of sets of multidimensional data + ascl:1706.008 the-wizz: Clustering redshift estimation code + ascl:1706.009 sick: Spectroscopic inference crank + ascl:1706.010 EXOSIMS: Exoplanet Open-Source Imaging Mission Simulator + ascl:1706.011 PyPulse: PSRFITS handler + ascl:1706.012 KeplerSolver: Kepler equation solver + ascl:1707.001 HRM: HII Region Models + ascl:1707.002 SASRST: Semi-Analytic Solutions for 1-D Radiative Shock Tubes + ascl:1707.003 pyaneti: Multi-planet radial velocity and transit fitting + ascl:1707.004 CCFpams: Atmospheric stellar parameters from cross-correlation functions + ascl:1707.005 PyMOC: Multi-Order Coverage map module for Python + ascl:1707.006 Gala: Galactic astronomy and gravitational dynamics + ascl:1707.007 swot: Super W Of Theta + ascl:1708.001 ATOOLS: A command line interface to the AST library + ascl:1708.002 CINE: Comet INfrared Excitation + ascl:1708.003 CRISPRED: CRISP imaging spectropolarimeter data reduction pipeline + ascl:1708.004 Astroquery: Access to online data resources + ascl:1708.005 STools: IDL Tools for Spectroscopic Analysis + ascl:1708.006 DISORT: DIScrete Ordinate Radiative Transfer + ascl:1708.007 PBMC: Pre-conditioned Backward Monte Carlo code for radiative transport in planetary atmospheres + ascl:1708.008 ALCHEMIC: Advanced time-dependent chemical kinetics + ascl:1708.009 FIEStool: Automated data reduction for FIber-fed Echelle Spectrograph (FIES) + ascl:1708.010 BAGEMASS: Bayesian age and mass estimates for transiting planet host stars + ascl:1708.011 RM-CLEAN: RM spectra cleaner + ascl:1708.012 GANDALF: Gas AND Absorption Line Fitting + ascl:1708.013 GMM: Gaussian Mixture Modeling + ascl:1708.014 PACSman: IDL Suite for Herschel/PACS spectrometer data + ascl:1708.015 TWO-POP-PY: Two-population dust evolution model + ascl:1708.016 pyLCSIM: X-ray lightcurves simulator + ascl:1708.017 LCC: Light Curves Classifier + ascl:1708.018 CUTEX: CUrvature Thresholding EXtractor + ascl:1708.019 SINFONI Pipeline: Data reduction pipeline for the Very Large Telescope SINFONI spectrograph + ascl:1708.020 4DAO: DAOSPEC interface + ascl:1708.021 KERTAP: Strong lensing effects of Kerr black holes + ascl:1708.022 Naima: Derivation of non-thermal particle distributions through MCMC spectral fitting + ascl:1708.023 ExoSOFT: Exoplanet Simple Orbit Fitting Toolbox + ascl:1708.024 ComEst: Completeness Estimator + ascl:1708.025 extinction-distances: Estimating distances to dark clouds + ascl:1708.026 XDGMM: eXtreme Deconvolution Gaussian Mixture Modeling + ascl:1708.027 empiriciSN: Supernova parameter generator + ascl:1708.028 ANA: Astrophysical Neutrino Anisotropy + ascl:1708.029 iSEDfit: Bayesian spectral energy distribution modeling of galaxies + ascl:1708.030 GAMBIT: Global And Modular BSM Inference Tool + ascl:1709.001 SPHYNX: SPH hydrocode for subsonic hydrodynamical instabilities and strong shocks + ascl:1709.002 PHANTOM: Smoothed particle hydrodynamics and magnetohydrodynamics code + ascl:1709.003 MeshLab: 3D triangular meshes processing and editing + ascl:1709.004 DOOp: DAOSPEC Output Optimizer pipeline + ascl:1709.005 DanIDL: IDL solutions for science and astronomy + ascl:1709.006 DCMDN: Deep Convolutional Mixture Density Network + ascl:1709.007 MSSC: Multi-Source Self-Calibration + ascl:1709.008 celerite: Scalable 1D Gaussian Processes in C++, Python, and Julia + ascl:1709.009 bmcmc: MCMC package for Bayesian data analysis + ascl:1709.010 MagIC: Fluid dynamics in a spherical shell simulator + ascl:1709.011 FLaapLUC: Fermi-LAT automatic aperture photometry light curve + ascl:1710.001 vysmaw: Fast visibility stream muncher + ascl:1710.002 rfpipe: Radio interferometric transient search pipeline + ascl:1710.003 EXOFASTv2: Generalized publication-quality exoplanet modeling code + ascl:1710.004 SPIPS: Spectro-Photo-Interferometry of Pulsating Stars + ascl:1710.005 SkyNet: Modular nuclear reaction network library + ascl:1710.006 MOSFiT: Modular Open-Source Fitter for Transients + ascl:1710.007 FLAG: Exact Fourier-Laguerre transform on the ball + ascl:1710.008 Binary: Accretion disk evolution + ascl:1710.009 CppTransport: Two- and three-point function transport framework for inflationary cosmology + ascl:1710.010 PyTransport: Calculate inflationary correlation functions + ascl:1710.011 mTransport: Two-point-correlation function calculator + ascl:1710.012 FSFE: Fake Spectra Flux Extractor + ascl:1710.013 Ramses-GPU: Second order MUSCL-Handcock finite volume fluid solver + ascl:1710.014 GBART: Determination of the orbital elements of spectroscopic binaries + ascl:1710.015 GMCALab: Generalized Morphological Component Analysis + ascl:1710.016 LGMCA: Local-Generalized Morphological Component Analysis + ascl:1710.017 ATLAS9: Model atmosphere program with opacity distribution functions + ascl:1710.018 FITSFH: Star Formation Histories + ascl:1710.019 GASOLINE: Smoothed Particle Hydrodynamics (SPH) code + ascl:1710.020 PSPLINE: Princeton Spline and Hermite cubic interpolation routines + ascl:1710.021 OSIRIS Toolbox: OH-Suppressing InfraRed Imaging Spectrograph pipeline + ascl:1710.022 galario: Gpu Accelerated Library for Analyzing Radio Interferometer Observations + ascl:1710.023 LIMEPY: Lowered Isothermal Model Explorer in PYthon + ascl:1710.024 pred_loggs: Predicting individual galaxy G/S probability distributions + ascl:1711.001 SpcAudace: Spectroscopic processing and analysis package of Audela software + ascl:1711.002 inhomog: Biscale kinematical backreaction analytical evolution + ascl:1711.003 FTbg: Background removal using Fourier Transform + ascl:1711.004 BayesVP: Full Bayesian Voigt profile fitting + ascl:1711.005 correlcalc: Two-point correlation function from redshift surveys + ascl:1711.006 RGW: Goodman-Weare Affine-Invariant Sampling + ascl:1711.007 galstep: Initial conditions for spiral galaxy simulations + ascl:1711.008 clustep: Initial conditions for galaxy cluster halo simulations + ascl:1711.009 Lightning: SED Fitting Package + ascl:1711.010 galstreams: Milky Way streams footprint library and toolkit + ascl:1711.011 galkin: Milky Way rotation curve data handler + ascl:1711.012 megaman: Manifold Learning for Millions of Points + ascl:1711.013 HO-CHUNK: Radiation Transfer code + ascl:1711.014 Gammapy: Python toolbox for gamma-ray astronomy + ascl:1711.015 rac-2d: Thermo-chemical for modeling water vapor formation in protoplanetary disks + ascl:1711.016 Thindisk: Protoplanetary disk model + ascl:1711.017 FATS: Feature Analysis for Time Series + ascl:1711.018 LExTeS: Link Extraction and Testing Suite + ascl:1711.019 SPIDERMAN: Fast code to simulate secondary transits and phase curves + ascl:1711.020 MARXS: Multi-Architecture Raytrace Xray mission Simulator + ascl:1711.021 Bifrost: Stream processing framework for high-throughput applications + ascl:1711.022 HBT: Hierarchical Bound-Tracing + ascl:1711.023 HBT+: Subhalo finder and merger tree builder + ascl:1711.024 NOD3: Single dish reduction software + ascl:1712.001 KDUtils: Kinematic Distance Utilities + ascl:1712.002 MPI_XSTAR: MPI-based parallelization of XSTAR program + ascl:1712.003 Py-SPHViewer: Cosmological simulations using Smoothed Particle Hydrodynamics + ascl:1712.004 Bitshuffle: Filter for improving compression of typed binary data + ascl:1712.005 draco: Analysis and simulation of drift scan radio data + ascl:1712.006 Nyx: Adaptive mesh, massively-parallel, cosmological simulation code + ascl:1712.007 SFoF: Friends-of-friends galaxy cluster detection algorithm + ascl:1712.008 CosApps: Simulate gravitational lensing through ray tracing and shear calculation + ascl:1712.009 RODRIGUES: RATT Online Deconvolved Radio Image Generation Using Esoteric Software + ascl:1712.010 Flux Tube: Solar model + ascl:1712.011 FBEYE: Analyzing Kepler light curves and validating flares + ascl:1712.012 MadDM: Computation of dark matter relic abundance + ascl:1712.013 photodynam: Photodynamical code for fitting the light curves of multiple body systems + ascl:1712.014 QATS: Quasiperiodic Automated Transit Search + ascl:1712.015 SgrbWorldModel: Short-duration Gamma-Ray Burst World Model + ascl:1712.016 LgrbWorldModel: Long-duration Gamma-Ray Burst World Model + ascl:1801.001 BANYAN_Sigma: Bayesian classifier for members of young stellar associations + ascl:1801.002 iWander: Dynamics of interstellar wanderers + ascl:1801.003 Stan: Statistical inference + ascl:1801.004 hh0: Hierarchical Hubble Constant Inference + ascl:1801.005 InitialConditions: Initial series solutions for perturbations in our Universe + ascl:1801.006 DecouplingModes: Passive modes amplitudes + ascl:1801.007 cambmag: Magnetic Fields in CAMB + ascl:1801.008 BOND: Bayesian Oxygen and Nitrogen abundance Determinations + ascl:1801.009 Gnuastro: GNU Astronomy Utilities + ascl:1801.010 DICE/ColDICE: 6D collisionless phase space hydrodynamics using a lagrangian tesselation + ascl:1801.011 GABE: Grid And Bubble Evolver + ascl:1801.012 RadVel: General toolkit for modeling Radial Velocities + ascl:1802.001 FAC: Flexible Atomic Code + ascl:1802.002 venice: Mask utility + ascl:1802.003 CMacIonize: Monte Carlo photoionisation and moving-mesh radiation hydrodynamics + ascl:1802.004 ARTIP: Automated Radio Telescope Image Processing Pipeline + ascl:1802.005 Verne: Earth-stopping effect for heavy dark matter + ascl:1802.006 VISIBLE: VISIbility Based Line Extraction + ascl:1802.007 HiGal_SED_Fitter: SED fitting tools for Herschel Hi-Gal data + ascl:1802.008 AntiparticleDM: Discriminating between Majorana and Dirac Dark Matter + ascl:1802.009 astroplan: Observation planning package for astronomers + ascl:1802.010 Glimpse: Sparsity based weak lensing mass-mapping tool + ascl:1802.011 runDM: Running couplings of Dark Matter to the Standard Model + ascl:1802.012 PyOSE: Orbital sampling effect (OSE) simulator + ascl:1802.013 BHMcalc: Binary Habitability Mechanism Calculator + ascl:1802.014 collapse: Spherical-collapse model code + ascl:1802.015 mrpy: Renormalized generalized gamma distribution for HMF and galaxy ensemble properties comparisons + ascl:1802.016 eqpair: Electron energy distribution calculator + ascl:1803.001 DaMaSCUS-CRUST: Dark Matter Simulation Code for Underground Scatterings - Crust Edition + ascl:1803.002 CIFOG: Cosmological Ionization Fields frOm Galaxies + ascl:1803.003 scarlet: Source separation in multi-band images by Constrained Matrix Factorization + ascl:1803.004 nanopipe: Calibration and data reduction pipeline for pulsar timing + ascl:1803.005 Kadenza: Kepler/K2 Raw Cadence Data Reader + ascl:1803.006 MulensModel: Microlensing light curves modeling + ascl:1803.007 IMAGINE: Interstellar MAGnetic field INference Engine + ascl:1803.008 FAST: Fitting and Assessment of Synthetic Templates + ascl:1803.009 SETI-EC: SETI Encryption Code + ascl:1803.010 3D-PDR: Three-dimensional photodissociation region code + ascl:1803.011 ExtLaw_H18: Extinction law code + ascl:1803.012 LWPC: Long Wavelength Propagation Capability + ascl:1803.013 optBINS: Optimal Binning for histograms + ascl:1803.014 ExoCross: Spectra from molecular line lists + ascl:1803.015 RAPTOR: Imaging code for relativistic plasmas in strong gravity + ascl:1804.001 ASERA: A Spectrum Eye Recognition Assistant + ascl:1804.002 ipole: Semianalytic scheme for relativistic polarized radiative transport + ascl:1804.003 DPPP: Default Pre-Processing Pipeline + ascl:1804.004 AstroCV: Astronomy computer vision library + ascl:1804.005 DaCHS: Data Center Helper Suite + ascl:1804.006 ProFound: Source Extraction and Application to Modern Survey Data + ascl:1804.007 chroma: Chromatic effects for LSST weak lensing + ascl:1804.008 EGG: Empirical Galaxy Generator + ascl:1804.009 orbit-estimation: Fast orbital parameters estimator + ascl:1804.010 SMERFS: Stochastic Markov Evaluation of Random Fields on the Sphere + ascl:1804.011 DESCQA: Synthetic Sky Catalog Validation Framework + ascl:1804.012 Lenstronomy: Multi-purpose gravitational lens modeling software package + ascl:1804.013 CAT-PUMA: CME Arrival Time Prediction Using Machine learning Algorithms + ascl:1804.014 IMNN: Information Maximizing Neural Networks + ascl:1804.015 NR-code: Nonlinear reconstruction code + ascl:1804.016 surrkick: Black-hole kicks from numerical-relativity surrogate models + ascl:1804.017 APPHi: Automated Photometry Pipeline for High Cadence Large Volume Data + ascl:1804.018 3DView: Space physics data visualizer + ascl:1804.019 ViSBARD: Visual System for Browsing, Analysis and Retrieval of Data + ascl:1804.020 Agatha: Disentangling period signals from correlated noise in a periodogram framework + ascl:1804.021 allantools: Allan deviation calculation + ascl:1804.022 UniDAM: Unified tool to estimate Distances, Ages, and Masses + ascl:1804.023 LFsGRB: Binary neutron star merger rate via the luminosity function of short gamma-ray bursts + ascl:1804.024 LFlGRB: Luminosity function of long gamma-ray bursts + ascl:1804.025 FastChem: An ultra-fast equilibrium chemistry + ascl:1804.026 KSTAT: KD-tree Statistics Package + ascl:1805.001 powerbox: Arbitrarily structured, arbitrary-dimension boxes and log-normal mocks + ascl:1805.002 dftools: Distribution function fitting + ascl:1805.003 lcps: Light curve pre-selection + ascl:1805.004 EARL: Exoplanet Analytic Reflected Lightcurves package + ascl:1805.005 3DCORE: Forward modeling of solar storm magnetic flux ropes for space weather prediction + ascl:1805.006 StePS: Stereographically Projected Cosmological Simulations + ascl:1805.007 exocartographer: Constraining surface maps orbital parameters of exoplanets + ascl:1805.008 AGAMA: Action-based galaxy modeling framework + ascl:1805.009 STARBLADE: STar and Artefact Removal with a Bayesian Lightweight Algorithm from Diffuse Emission + ascl:1805.010 StarSmasher: Smoothed Particle Hydrodynamics code for smashing stars and planets + ascl:1805.011 PoMiN: A Post-Minkowskian N-Body Solver + ascl:1805.012 Arcmancer: Geodesics and polarized radiative transfer library + ascl:1805.013 grid-model: Semi-numerical reionization code -- Duplicate entry; already registered as CIFOG (ascl:1803.002) + ascl:1805.014 OSS: OSSOS Survey Simulator + ascl:1805.015 BinMag: Widget for comparing stellar observed with theoretical spectra + ascl:1805.016 xspec_emcee: XSPEC-friendly interface for the emcee package + ascl:1805.017 SNSEDextend: SuperNova Spectral Energy Distributions extrapolation toolkit + ascl:1805.018 CUBE: Information-optimized parallel cosmological N-body simulation code + ascl:1805.019 HENDRICS: High ENergy Data Reduction Interface from the Command Shell + ascl:1805.020 SWIFT: SPH With Inter-dependent Fine-grained Tasking + ascl:1805.021 PampelMuse: Crowded-field 3D spectroscopy + ascl:1805.022 BCcodes: Bolometric Corrections and Synthetic Stellar Photometry + ascl:1805.023 PROM7: 1D modeler of solar filaments or prominences + ascl:1805.024 ASTROPOP: ASTROnomical Polarimetry and Photometry pipeline + ascl:1805.025 GLACiAR: GaLAxy survey Completeness AlgoRithm + ascl:1805.026 PySE: Python Source Extractor for radio astronomical images + ascl:1805.027 MontePython 3: Parameter inference code for cosmology + ascl:1805.028 SP_Ace: Stellar Parameters And Chemical abundances Estimator + ascl:1805.029 DeepMoon: Convolutional neural network trainer to identify moon craters + ascl:1805.030 PyCBC: Gravitational-wave data analysis toolkit + ascl:1805.031 CubiCal: Suite for fast radio interferometric calibration + ascl:1805.032 PyCCF: Python Cross Correlation Function for reverberation mapping studies + ascl:1806.001 feets: feATURE eXTRACTOR FOR tIME sERIES + ascl:1806.002 BHDD: Primordial black hole binaries code + ascl:1806.003 pyZELDA: Python code for Zernike wavefront sensors + ascl:1806.004 WiseView: Visualizing motion and variability of faint WISE sources + ascl:1806.005 Indri: Pulsar population synthesis toolset + ascl:1806.006 QE: Quantum opEn-Source Package for Research in Electronic Structure, Simulation, and Optimization + ascl:1806.007 PyAMOR: AMmOnia data Reduction + ascl:1806.008 gsf: galactic structure finder + ascl:1806.009 GLASS: Parallel, free-form gravitational lens modeling tool and framework + ascl:1806.010 SpaghettiLens: Web-based gravitational lens modeling tool + ascl:1806.011 P2DFFT: Parallelized technique for measuring galactic spiral arm pitch angles + ascl:1806.012 WDEC: White Dwarf Evolution Code + ascl:1806.013 SpS: Single-pulse Searcher + ascl:1806.014 pile-up: Monte Carlo simulations of star-disk torques on hot Jupiters + ascl:1806.015 DirectDM-mma: Dark matter direct detection + ascl:1806.016 DirectDM-py: Dark matter direct detection + ascl:1806.017 RadFil: Radial density profile builder for interstellar filaments + ascl:1806.018 OMEGA: One-zone Model for the Evolution of GAlaxies + ascl:1806.019 SYGMA: Modeling stellar yields for galactic modeling + ascl:1806.020 exoinformatics: Compute the entropy of a planetary system's size-ordering + ascl:1806.021 LASR: Linear Algorithm for Significance Reduction + ascl:1806.022 Keras: The Python Deep Learning library + ascl:1806.023 Spheral++: Coupled hydrodynamical and gravitational numerical simulations + ascl:1806.024 RMextract: Ionospheric Faraday Rotation calculator + ascl:1806.025 BRATS: Broadband Radio Astronomy ToolS + ascl:1806.026 BWED: Brane-world extra dimensions + ascl:1806.027 fcmaker: Creating ESO-compliant finding charts for Observing Blocks on p2 + ascl:1806.028 PyMUSE: VLT/MUSE data analyzer + ascl:1806.029 EXO-NAILER: EXOplanet traNsits and rAdIal veLocity fittER + ascl:1806.030 foxi: Forecast Observations and their eXpected Information + ascl:1806.031 ASPIC: Accurate Slow-roll Predictions for Inflationary Cosmology + ascl:1806.032 pwv_kpno: Modeling atmospheric absorption + ascl:1807.001 POLARIS: POLArized RadIation Simulator + ascl:1807.002 Warpfield: Winds And Radiation Pressure: Feedback Induced Expansion, colLapse and Dissolution + ascl:1807.003 PyAutoLens: Strong lens modeling + ascl:1807.004 ARKCoS: Radial kernel convolution on the sphere + ascl:1807.005 MAPPINGS V: Astrophysical plasma modeling code + ascl:1807.006 pyqz: Emission line code + ascl:1807.007 HII-CHI-mistry: Oxygen abundance and ionizionation parameters for optical emission lines + ascl:1807.008 HII-CHI-mistry_UV: Oxygen abundance and ionizionation parameters for ultraviolet emission lines + ascl:1807.009 HELIOS: Radiative transfer code for exoplanetary atmospheres + ascl:1807.010 THOR: Global Circulation Model for planetary atmospheres + ascl:1807.011 nfield: Stochastic tool for QFT on inflationary backgrounds + ascl:1807.012 AngPow: Fast computation of accurate tomographic power spectra + ascl:1807.013 CLASSgal: Relativistic cosmological large scale structure code + ascl:1807.014 SPEGID: Single-Pulse Event Group IDentification + ascl:1807.015 CAESAR: Compact And Extended Source Automated Recognition + ascl:1807.016 MIDLL: Markwardt IDL Library + ascl:1807.017 ZBARYCORR: Barycentric redshift calculator + ascl:1807.018 BARYCORR: Python interface for barycentric RV correction + ascl:1807.019 GLS: Generalized Lomb-Scargle periodogram + ascl:1807.020 wdmerger: Simulate white dwarf mergers with CASTRO + ascl:1807.021 POWER: Python Open-source Waveform ExtractoR + ascl:1807.022 PUMA: Low-frequency radio catalog cross-matching + ascl:1807.023 DAMOCLES: Monte Carlo line radiative transfer code + ascl:1807.024 TBI: Three-Body Integration + ascl:1807.025 NRPy+: Code generator for Numerical Relativity + ascl:1807.026 SENR: Simple, Efficient Numerical Relativity + ascl:1807.027 kplr: Tools for working with Kepler data using Python + ascl:1807.028 ktransit: Exoplanet transit modeling tool in python + ascl:1807.029 EVEREST: Tools for de-trending stellar photometry + ascl:1807.030 ASP: Ames Stereo Pipeline + ascl:1807.031 xGDS: Exploration Ground Data Systems + ascl:1807.032 SSMM: Slotted Symbolic Markov Modeling for classifying variable star signatures + ascl:1807.033 LSC: Supervised classification of time-series variable stars + ascl:1808.001 Barycorrpy: Barycentric velocity calculation and leap second management + ascl:1808.002 rsigma: Resonant disturbance + ascl:1808.003 CPF: Corral Pipeline Framework + ascl:1808.004 ImPlaneIA: Image Plane Approach to Interferometric Analysis + ascl:1808.005 hfof: Friends-of-Friends via spatial hashing + ascl:1808.006 Fips: An OpenGL based FITS viewer + ascl:1808.007 2DSF: Vectorized Structure Function Algorithm + ascl:1808.008 PyMieDap: Python Mie Doubling Adding Program + ascl:1808.009 py-sdm: Support Distribution Machines + ascl:1808.010 hi_class: Horndeski in the Cosmic Linear Anisotropy Solving System + ascl:1808.011 Robbie: Radio transients and variables detection workflow + ascl:1809.001 LEMON: Differential photometry pipeline + ascl:1809.002 PCCDPACK: Polarimetry with CCD + ascl:1809.003 PASTA: Python Astronomical Stacking Tool Array + ascl:1809.004 VBBINARYLENSING: Microlensing light-curve computation + ascl:1809.005 perfectns: "Perfect" dynamic and standard nested sampling for spherically symmetric likelihoods and priors + ascl:1809.006 spops: Spinning black-hole binary population synthesis + ascl:1809.007 surfinBH: Surrogate final black hole properties for mergers of binary black holes + ascl:1809.008 PyQSOFit: Python code to fit the spectrum of quasars + ascl:1809.009 NEBULA: Radiative transfer code of ionized nebulae at radio wavelengths + ascl:1809.010 Isca: Idealized global circulation modeling + ascl:1809.011 qp: Quantile parametrization for probability distribution functions + ascl:1809.012 nestcheck: Nested sampling calculations analysis + ascl:1809.013 dynesty: Dynamic Nested Sampling package + ascl:1809.014 stepped_luneburg: Stacked-based ray tracing code to model a stepped Luneburg lens + ascl:1809.015 MrMoose: Multi-Resolution Multi-Object/Origin Spectral Energy distribution fitting procedure + ascl:1809.016 RequiSim: Variance weighted overlap calculator + ascl:1810.001 galfast: Milky Way mock catalog generator + ascl:1810.002 Barcode: Bayesian reconstruction of cosmic density fields + ascl:1810.003 JETGET: Hydrodynamic jet simulation visualization and analysis + ascl:1810.004 VaeX: Visualization and eXploration of Out-of-Core DataFrames + ascl:1810.005 STARRY: Analytic computation of occultation light curves + ascl:1810.006 Echelle++: Generic spectrum simulator + ascl:1810.007 ARTES: 3D Monte Carlo scattering radiative transfer in planetary atmospheres + ascl:1810.008 pycraf: Spectrum-management compatibility + ascl:1810.009 PyUltraLight: Pseudo-spectral Python code to compute ultralight dark matter dynamics + ascl:1810.010 ODTBX: Orbit Determination Toolbox + ascl:1810.011 Eclairs: Efficient Codes for the LArge scales of the unIveRSe + ascl:1810.012 GiRaFFE: General relativistic force-free electrodynamics code + ascl:1810.013 catsHTM: Catalog cross-matching tool + ascl:1810.014 STiC: Stockholm inversion code + ascl:1810.015 cuFFS: CUDA-accelerated Fast Faraday Synthesis + ascl:1810.016 XCLASS: eXtended CASA Line Analysis Software Suite + ascl:1810.017 SOPHISM: Software Instrument Simulator + ascl:1810.018 APPLawD: Accurate Potentials in Power Law Disks + ascl:1810.019 MIEX: Mie scattering code for large grains + ascl:1810.020 DDS: Debris Disk Radiative Transfer Simulator + ascl:1810.021 Firefly: Interactive exploration of particle-based data + ascl:1811.001 synphot: Synthetic photometry using Astropy + ascl:1811.002 DRAGONS: Gemini Observatory data reduction platform + ascl:1811.003 binaryBHexp: On-the-fly visualizations of precessing binary black holes + ascl:1811.004 SEP: Source Extraction and Photometry + ascl:1811.005 Shark: Flexible semi-analytic galaxy formation model + ascl:1811.006 QuickSip: Project survey image properties onto the sky into Healpix maps + ascl:1811.007 Flame: Near-infrared and optical spectroscopy data reduction pipeline + ascl:1811.008 Pylians: Python libraries for the analysis of numerical simulations + ascl:1811.009 RLOS: Time-resolved imaging of model astrophysical jets + ascl:1811.010 MillCgs: Searching for Compact Groups in the Millennium Simulation + ascl:1811.011 SIM5: Library for ray-tracing and radiation transport in general relativity + ascl:1811.012 muLAn: gravitational MICROlensing Analysis Software + ascl:1811.013 DiskSim: Modeling Accretion Disk Dynamics with SPH + ascl:1811.014 pygad: Analyzing Gadget Simulations with Python + ascl:1811.015 radon: Streak detection using the Fast Radon Transform + ascl:1811.016 VoigtFit: Absorption line fitting for Voigt profiles + ascl:1811.017 Vplanet: Virtual planet simulator + ascl:1811.018 gdr2_completeness: GaiaDR2 data retrieval and manipulation + ascl:1811.019 PENTACLE: Large-scale particle simulations code for planet formation + ascl:1811.020 PulsarHunter: Searching for and confirming pulsars + ascl:1812.001 WISP: Wenger Interferometry Software Package + ascl:1812.002 GLADIS: GLobal Accretion Disk Instability Simulation + ascl:1812.003 PFANT: Stellar spectral synthesis code + ascl:1812.004 aesop: ARC Echelle Spectroscopic Observation Pipeline + ascl:1812.005 SPAMCART: Smoothed PArticle Monte CArlo Radiative Transfer + ascl:1812.006 Fermipy: Fermi-LAT data analysis package + ascl:1812.007 ExoGAN: Exoplanets Generative Adversarial Network + ascl:1812.008 easyaccess: SQL command line interpreter for astronomical surveys + ascl:1812.009 galclassify: Stellar classifications using a galactic population synthesis model + ascl:1812.010 PynPoint 0.6.0: Pipeline for processing and analysis of high-contrast imaging data + ascl:1812.011 GRAND-HOD: GeneRalized ANd Differentiable Halo Occupation Distribution + ascl:1812.012 distlink: Minimum orbital intersection distance (MOID) computation library + ascl:1812.013 Lightkurve: Kepler and TESS time series analysis in Python + ascl:1812.014 GENGA: Gravitational ENcounters with Gpu Acceleration + ascl:1812.015 AUTOSPEC: Automated Spectral Extraction Software for integral field unit data cubes + ascl:1812.016 Juliet: Transiting and non-transiting exoplanetary systems modelling tool + ascl:1812.017 psrqpy: Python module to query the ATNF Pulsar Catalogue + ascl:1812.018 OctApps: Octave functions for continuous gravitational-wave data analysis + ascl:1901.001 cFE: Core Flight Executive + ascl:1901.002 OCFit: Python package for fitting of O-C diagrams + ascl:1901.003 CCL: Core Cosmology Library + ascl:1901.004 unwise_psf: PSF models for unWISE coadds + ascl:1901.005 Galaxia_wrap: Galaxia wrapper for generating mock stellar surveys + ascl:1901.006 ssos: Solar system objects detection pipeline + ascl:1901.007 Photon: Python tool for data plotting + ascl:1901.008 SEDobs: Observational spectral energy distribution simulation + ascl:1901.009 bettermoments: Line-of-sight velocity calculation + ascl:1901.010 eddy: Extracting Disk DYnamics + ascl:1901.011 Bilby: Bayesian inference library + ascl:1901.012 stellarWakes: Dark matter subhalo searches using stellar kinematic data + ascl:1902.001 SNTD: Supernova Time Delays + ascl:1902.002 LPNN: Limited Post-Newtonian N-body code for collisionless self-gravitating systems + ascl:1902.003 PyMF: Matched filtering techniques for astronomical images + ascl:1902.004 GraviDy: Gravitational Dynamics + ascl:1902.005 LiveData: Data reduction pipeline + ascl:1902.006 RPFITS: Routines for reading and writing RPFITS files + ascl:1902.007 PINT: High-precision pulsar timing analysis package + ascl:1902.008 Radynversion: Solar atmospheric properties during a solar flare + ascl:1902.009 ExPRES: Exoplanetary and Planetary Radio Emissions Simulator + ascl:1902.010 dyPolyChord: Super fast dynamic nested sampling with PolyChord + ascl:1902.011 SpecViz: 1D Spectral Visualization Tool + ascl:1902.012 Specutils: Spectroscopic analysis and reduction + ascl:1903.001 BEAGLE: BayEsian Analysis of GaLaxy sEds + ascl:1903.002 SIXTE: Simulation of X-ray Telescopes + ascl:1903.003 allesfitter: Flexible star and exoplanet inference from photometry and radial velocity + ascl:1903.004 brutifus: Python module to post-process datacubes from integral field spectrographs + ascl:1903.005 Galmag: Computation of realistic galactic magnetic fields + ascl:1903.006 SimSpin: Kinematic analysis of galaxy simulations + ascl:1903.007 ICSF: Intensity Conserving Spectral Fitting + ascl:1903.008 NIFTy5: Numerical Information Field Theory v5 + ascl:1903.009 PRF: Probabilistic Random Forest + ascl:1903.010 GalIMF: Galaxy-wide Initial Mass Function + ascl:1903.011 AsPy: Aspherical fluctuations on the spherical collapse background + ascl:1903.012 DAVE: Discovery And Vetting of K2 Exoplanets + ascl:1903.013 NFWdist: Density, distribution function, quantile function and random generation for the 3D NFW profile + ascl:1903.014 PLATON: PLanetary Atmospheric Transmission for Observer Noobs + ascl:1903.015 SPICE: Observation Geometry System for Space Science Missions + ascl:1903.016 SpiceyPy: Python wrapper for the NAIF C SPICE Toolkit + ascl:1903.017 HelioPy: Heliospheric and planetary physics library + ascl:1904.001 sxrbg: ROSAT X-Ray Background Tool + ascl:1904.002 GALAXY: N-body simulation software for isolated, collisionless stellar systems + ascl:1904.003 CGS: Collisionless Galactic Simulator + ascl:1904.004 ehtim: Imaging, analysis, and simulation software for radio interferometry + ascl:1904.005 SMILI: Sparse Modeling Imaging Library for Interferometry + ascl:1904.006 CDAWeb: Coordinated Data Analysis Web + ascl:1904.007 AutoBayes: Automatic design of customized analysis algorithms and programs + ascl:1904.008 repack: Repack and compress line-transition data + ascl:1904.009 deproject: Deprojection of two-dimensional annular X-ray spectra + ascl:1904.010 CLEAR: CANDELS Ly-alpha Emission at Reionization processing pipeline and library + ascl:1904.011 FortesFit: Flexible spectral energy distribution modelling with a Bayesian backbone + ascl:1904.012 CausticFrog: 1D Lagrangian Simulation Package + ascl:1904.013 EightBitTransit: Calculate light curves from pixel grids + ascl:1904.014 rate: Reliable Analytic Thermochemical Equilibrium + ascl:1904.015 SBGAT: Small Bodies Geophysical Analysis Tool + ascl:1904.016 simuTrans: Gravity-darkened exoplanet transit simulator + ascl:1904.017 dfitspy: A dfits/fitsort implementation in Python + ascl:1904.018 Specstack: A simple spectral stacking tool + ascl:1904.019 Vevacious: Global minima of one-loop effective potentials generator + ascl:1904.020 SARAH: SUSY and non-SUSY model builder and analyzer + ascl:1904.021 TP2VIS: Total Power Map to Visibilities + ascl:1904.022 eleanor: Extracted and systematics-corrected light curves for TESS-observed stars + ascl:1904.023 digest2: NEO binary classifier + ascl:1904.024 OoT: Out-of-Transit Light Curve Generator + ascl:1904.025 Properimage: Image coaddition and subtraction + ascl:1904.026 pyRSD: Accurate predictions for the clustering of galaxies in redshift-space in Python + ascl:1904.027 nbodykit: Massively parallel, large-scale structure toolkit + ascl:1904.028 covdisc: Disconnected covariance of 2-point functions in large-scale structure of the Universe + ascl:1904.029 JVarStar: Variable Star Analysis Library + ascl:1904.030 nudec_BSM: Neutrino Decoupling Beyond the Standard Model + ascl:1905.001 Grizli: Grism redshift and line analysis software + ascl:1905.002 Py4CAtS: PYthon for Computational ATmospheric Spectroscopy + ascl:1905.003 evolstate: Assign simple evolutionary states to stars + ascl:1905.004 Binospec: Data reduction pipeline for the Binospec imaging spectrograph + ascl:1905.005 MMIRS-DRP: MMIRS Data Reduction Pipeline + ascl:1905.006 beamModelTester: Model evaluation for fixed antenna phased array radio telescopes + ascl:1905.007 Astrocut: Tools for creating cutouts of TESS images + ascl:1905.008 Q3C: A PostgreSQL package for spatial queries and cross-matches of large astronomical catalogs + ascl:1905.009 HAOS-DIPER: HAO Spectral Diagnostic Package For Emitted Radiation + ascl:1905.010 FastPM: Scaling N-body Particle Mesh solver + ascl:1905.011 Fermitools: Fermi Science Tools + ascl:1905.012 Fitsverify: FITS file format-verification tool + ascl:1905.013 SPARK: K-band Multi Object Spectrograph data reduction + ascl:1905.014 Bandmerge: Merge data from different wavebands + ascl:1905.015 rPICARD: Radboud PIpeline for the Calibration of high Angular Resolution Data + ascl:1905.016 LensCNN: Gravitational lens detector + ascl:1905.017 LensQuEst: CMB Lensing QUadratic Estimator + ascl:1905.018 THALASSA: Orbit propagator for near-Earth and cislunar space + ascl:1905.019 PICASO: Planetary Intensity Code for Atmospheric Scattering Observations + ascl:1905.020 NAPLES: Numerical Analysis of PLanetary EncounterS + ascl:1905.021 ODEPACK: Ordinary differential equation solver library + ascl:1905.022 ClusterPyXT: Galaxy cluster pipeline for X-ray temperature maps + ascl:1905.023 CASI-2D: Convolutional Approach to Shell Identification - 2D + ascl:1905.024 SICON: Stokes Inversion based on COnvolutional Neural networks + ascl:1905.025 Prospector: Stellar population inference from spectra and SEDs + ascl:1905.026 SEDPY: Modules for storing and operating on astronomical source spectral energy distribution + ascl:1905.027 PyPDR: Python Photo Dissociation Regions + ascl:1906.001 Astroalign: Asterism-matching alignment of astronomical images + ascl:1906.002 Blimpy: Breakthrough Listen I/O Methods for Python + ascl:1906.003 FREDDA: A fast, real-time engine for de-dispersing amplitudes + ascl:1906.004 The Exo-Striker: Transit and radial velocity interactive fitting tool for orbital analysis and N-body simulations + ascl:1906.005 Kalman: Forecasts and interpolations for ALMA calibrator variability + ascl:1906.006 turboSETI: Python-based SETI search algorithm + ascl:1906.007 limb-darkening: Limb-darkening coefficients generator + ascl:1906.008 T-RECS: Tiered Radio Extragalactic Continuum Simulation + ascl:1906.009 PyMORESANE: Python MOdel REconstruction by Synthesis-ANalysis Estimators + ascl:1906.010 PyA: Python astronomy-related packages + ascl:1906.011 Lizard: An extensible Cyclomatic Complexity Analyzer + ascl:1906.012 Morpheus: Library to generate morphological semantic segmentation maps of astronomical images + ascl:1906.013 MORPHEUS: A 3D Eulerian Godunov MPI-OpenMP hydrodynamics code with multiple grid geometries + ascl:1906.014 GPUVMEM: Maximum Entropy Method (MEM) GPU algorithm for radio astronomical image synthesis + ascl:1906.015 OIT: Nonconvex optimization approach to optical-interferometric imaging + ascl:1906.016 PandExo: Instrument simulations for exoplanet observation planning + ascl:1906.017 mcfit: Multiplicatively Convolutional Fast Integral Transforms + ascl:1906.018 MEGAlib: Medium Energy Gamma-ray Astronomy library + ascl:1906.019 PlasmaPy: Core Python package for plasma physics + ascl:1906.020 LIZARD: Particle initial conditions for cosmological simulations + ascl:1906.021 centerRadon: Center determination code in stellar images + ascl:1906.022 pyLIMA: Microlensing modeling package + ascl:1907.001 schwimmbad: Parallel processing pools interface + ascl:1907.002 healvis: Radio interferometric visibility simulator based on HEALpix maps + ascl:1907.003 pyuvdata: Pythonic interface to interferometric data sets + ascl:1907.004 pyGTC: Parameter covariance plots + ascl:1907.005 SARA-PPD: Preconditioned primal-dual algorithm for radio-interferometric imaging + ascl:1907.006 POCS: PANOPTES Observatory Control System + ascl:1907.007 SPAM: Hu-Sawicki f(R) gravity imprints search + ascl:1907.008 Dewarp: Distortion removal and on-sky orientation solution for LBTI detectors + ascl:1907.009 Plonk: Smoothed particle hydrodynamics data analysis and visualization + ascl:1907.010 OMNICAL: Redundant calibration code for low frequency radio interferometers + ascl:1907.011 beamconv: Cosmic microwave background detector data simulator + ascl:1907.012 molly: 1D astronomical spectra analyzer + ascl:1907.013 RVSpecFit: Radial velocity and stellar atmospheric parameter fitting + ascl:1907.014 sbpy: Small-body planetary astronomy + ascl:1907.015 TurbuStat: Turbulence statistics in spectral-line data cubes + ascl:1907.016 astrodendro: Astronomical data dendrogram creator + ascl:1907.017 ZChecker: Zwicky Transient Facility moving target checker for short object lists + ascl:1907.018 StePar: Inferring stellar atmospheric parameters using the EW method + ascl:1907.019 GaussPy: Python implementation of the Autonomous Gaussian Decomposition algorithm + ascl:1907.020 GaussPy+: Gaussian decomposition package for emission line spectra + ascl:1907.021 PRISM: Probabilistic Regression Instrument for Simulating Models + ascl:1907.022 CMDPT: Color Magnitude Diagrams Plot Tool + ascl:1907.023 REVOLVER: REal-space VOid Locations from suVEy Reconstruction + ascl:1907.024 Skyfield: High precision research-grade positions for planets and Earth satellites generator + ascl:1907.025 GIST: Galaxy IFU Spectroscopy Tool + ascl:1907.026 MCRGNet: Morphological Classification of Radio Galaxy Network + ascl:1907.027 intensitypower: Spectrum multipoles modeler + ascl:1907.028 ROHSA: Separation of diffuse sources in hyper-spectral data + ascl:1907.029 XDF-GAN: Mock astronomical survey generator + ascl:1907.030 Wōtan: Stellar detrending methods + ascl:1907.031 MGB: Interactive spectral classification code + ascl:1907.032 Astro-SCRAPPY: Speedy Cosmic Ray Annihilation Package in Python + ascl:1908.001 QAC: Quick Array Combinations front end to CASA + ascl:1908.002 Molsoft: Molonglo Telescope Observing Software + ascl:1908.003 ActSNClass: Active learning for supernova photometric classification + ascl:1908.004 Gramsci: GRAph Made Statistics for Cosmological Information + ascl:1908.005 dips: Detrending periodic signals in timeseries + ascl:1908.006 GBKFIT: Galaxy kinematic modeling + ascl:1908.007 MosfireDRP: MOSFIRE Data Reduction Pipeline + ascl:1908.008 TRISTAN-MP: TRIdimensional STANford - Massively Parallel code + ascl:1908.009 PyRADS: Python RADiation model for planetary atmosphereS + ascl:1908.010 SNAPDRAGONS: Stellar Numbers And Parameters Determined Routinely And Generated Observing N-body Systems + ascl:1908.011 NuRadioMC: Monte Carlo simulation package for radio neutrino detectors + ascl:1908.012 oscode: Oscillatory ordinary differential equation solver + ascl:1908.013 BEAST: Bayesian Extinction And Stellar Tool + ascl:1908.014 Vlasiator: Hybrid-Vlasov simulation code + ascl:1908.015 Analysator: Quantitative analysis of Vlasiator files + ascl:1908.016 DustCharge: Charge distribution for a dust grain + ascl:1908.017 JPLephem: Jet Propulsion Lab ephemerides package + ascl:1908.018 EBAI: Eclipsing Binaries with Artificial Intelligence + ascl:1908.019 MAESTROeX: Low Mach number stellar hydrodynamics code + ascl:1908.020 QLF: Luminosity function analysis code + ascl:1908.021 bias_emulator: Halo bias emulator + ascl:1908.022 YMW16: Electron-density model + ascl:1908.023 FIRST Classifier: Automated compact and extended radio sources classifier + ascl:1908.024 PYSAT: Python Satellite Data Analysis Toolkit + ascl:1908.025 FastCSWT: Fast directional Continuous Spherical Wavelet Transform + ascl:1909.001 Auto-multithresh: Automated masking for clean + ascl:1909.002 MultiColorFits: Colorize and combine multiple fits images for visually aesthetic scientific plots + ascl:1909.003 SecularMultiple: Hierarchical multiple system secular evolution model + ascl:1909.004 TPI: Test Particle Integrator + ascl:1909.005 HADES: Hexadecapolar Analysis for Dust Estimation in Simulations (of CMB B-mode thermal dust emission) + ascl:1909.006 ChempyMulti: Multi-star Bayesian inference with Chempy + ascl:1909.007 EBHLIGHT: General relativistic radiation magnetohydrodynamics with Monte Carlo transport + ascl:1909.008 RascalC: Fast code for galaxy covariance matrix estimation + ascl:1909.009 CLOVER: Convolutional neural network spectra identifier and kinematics predictor + ascl:1909.010 AREPO: Cosmological magnetohydrodynamical moving-mesh simulation code + ascl:1909.011 WVTICs: SPH initial conditions using Weighted Voronoi Tesselations + ascl:1909.012 HISS: HI spectra stacker + ascl:1909.013 EPOS: Exoplanet Population Observation Simulator + ascl:1909.014 fgivenx: Functional posterior plotter + ascl:1910.001 PINK: Parallelized rotation and flipping INvariant Kohonen maps + ascl:1910.002 PreProFit: Pressure Profile Fitter for galaxy clusters in Python + ascl:1910.003 a3cosmos-gas-evolution: Galaxy cold molecular gas evolution functions + ascl:1910.004 DM_phase: Algorithm for correcting dispersion of radio signals + ascl:1910.005 exoplanet: Probabilistic modeling of transit or radial velocity observations of exoplanets + ascl:1910.006 EMERGE: Empirical ModEl for the foRmation of GalaxiEs + ascl:1910.007 TLS: Transit Least Squares + ascl:1910.008 ECLIPS3D: Linear wave and circulation calculations + ascl:1910.009 orbitize: Orbit-fitting for directly imaged objects + ascl:1910.010 PEXO: Precise EXOplanetology + ascl:1910.011 LEO-Py: Likelihood Estimation of Observational data with Python + ascl:1910.012 AOTOOLS: Reduce IR images from Adaptive Optics + ascl:1910.013 E0102-VR: Virtual Reality application to visualize the optical ejecta in SNR 1E 0102.2-7219 + ascl:1910.014 ANNz2: Estimating photometric redshift and probability density functions using machine learning methods + ascl:1910.015 MarsLux: Illumination Mars maps generator + ascl:1910.016 MiSTree: Construct and analyze Minimum Spanning Tree graphs + ascl:1910.017 ChainConsumer: Corner plots, LaTeX tables and plotting walks + ascl:1910.018 GetDist: Monte Carlo sample analyzer + ascl:1910.019 Cobaya: Bayesian analysis in cosmology + ascl:1910.020 OCD: O'Connell Effect Detector using push-pull learning + ascl:1910.021 AOtools: Adaptive optics modeling and analysis toolkit + ascl:1910.022 qnm: Kerr quasinormal modes, separation constants, and spherical-spheroidal mixing coefficients calculator diff --git a/ascl-ads-comparison/ascl2b.txt b/ascl-ads-comparison/ascl2b.txt new file mode 100644 index 0000000..9d05427 --- /dev/null +++ b/ascl-ads-comparison/ascl2b.txt @@ -0,0 +1,2068 @@ +ascl.ID Title +ascl.9903.001 LENSKY +ascl.9904.001 BSGMODEL +ascl.9905.001 CONSKY +ascl.9905.002 ICOSAHEDRON +ascl.9906.001 SLOPES +ascl.9906.002 EXTINCT +ascl.9909.001 PMCode +ascl.9909.002 ANGSIZ +ascl.9909.003 ISIS +ascl.9909.004 CMBFAST +ascl.9909.005 BLOCK +ascl.9910.001 Cloudy +ascl.9910.002 SPECTRUM +ascl.9910.003 FASTELL +ascl.9910.004 COSMICS +ascl.9910.005 XSPEC +ascl.9910.006 BHSKY +ascl.9910.007 WINGSPAN +ascl.9910.008 XSTAR +ascl.9910.009 RADPACK +ascl.9911.001 DUSTY +ascl.9911.002 IRAF +ascl.9911.003 AIPS +ascl.9911.004 CHIANTI +ascl.9912.001 SPH_1D +ascl.9912.002 FTOOLS +ascl.9912.003 RVSAO +ascl.0003.001 GADGET-2 +ascl.0003.002 SAOImage +ascl.0008.001 DDSCAT +ascl.0008.002 RATRAN +ascl.0011.001 StarFinder +ascl.0101.001 MILLISEARCH +ascl.0104.001 MLAPM +ascl.0104.002 CSENV +ascl.0202.001 PopRatio +ascl.1004.001 GIM2D +ascl.1007.001 PINTofALE +ascl.1007.002 INFALL +ascl.1007.003 GEMINI +ascl.1007.004 CMBEASY +ascl.1007.005 Arcetri +ascl.1007.006 AMIGA +ascl.1010.001 CFITSIO +ascl.1010.002 fpack +ascl.1010.003 AMBER +ascl.1010.004 Needatool +ascl.1010.005 Particle +ascl.1010.006 DSPSR +ascl.1010.007 JAVELIN +ascl.1010.008 midIR_sensitivity +ascl.1010.009 ModeCode +ascl.1010.010 Fast +ascl.1010.011 PSpectRe +ascl.1010.012 glafic +ascl.1010.013 AstroGK +ascl.1010.014 Athena +ascl.1010.015 Fyris +ascl.1010.016 SpDust/SpDust.2 +ascl.1010.017 AOFlagger +ascl.1010.018 Emu +ascl.1010.019 NBSymple +ascl.1010.020 Libpsht +ascl.1010.021 velfit +ascl.1010.022 GR1D +ascl.1010.023 AstroSim +ascl.1010.024 ADAPTSMOOTH +ascl.1010.025 SimFast21 +ascl.1010.026 SingLe +ascl.1010.027 SNANA +ascl.1010.028 GALPROP +ascl.1010.029 DNEST +ascl.1010.030 CosmicEmu +ascl.1010.031 DimReduce +ascl.1010.032 Extreme +ascl.1010.033 GALEV +ascl.1010.034 iCosmo +ascl.1010.035 SLR +ascl.1010.036 Montage +ascl.1010.037 FastChi +ascl.1010.038 Low +ascl.1010.039 Parameter +ascl.1010.040 Cosmic +ascl.1010.041 FASTLens +ascl.1010.042 WeightMixer +ascl.1010.043 FSPS +ascl.1010.044 MAESTRO +ascl.1010.045 PLUTO +ascl.1010.046 indexf +ascl.1010.047 ISW +ascl.1010.048 OCTGRAV +ascl.1010.049 Gas-momentum-kinetic +ascl.1010.050 LensPerfect +ascl.1010.051 NEMO +ascl.1010.052 EAZY +ascl.1010.053 Halofitting +ascl.1010.054 MagnetiCS.c +ascl.1010.055 SYNOW +ascl.1010.056 PHOENIX +ascl.1010.057 Tiny +ascl.1010.058 VINE +ascl.1010.059 CESAM +ascl.1010.060 Pencil +ascl.1010.061 EyE +ascl.1010.062 MissFITS +ascl.1010.063 SCAMP +ascl.1010.064 SExtractor +ascl.1010.065 Higher +ascl.1010.066 SkyMaker +ascl.1010.067 Stuff +ascl.1010.068 SWarp +ascl.1010.069 WeightWatcher +ascl.1010.070 Fisher.py +ascl.1010.071 WSHAPE +ascl.1010.072 Enzo +ascl.1010.073 partiview +ascl.1010.074 StarCrash +ascl.1010.075 Radex +ascl.1010.076 Starlab +ascl.1010.077 LAMDA +ascl.1010.078 AstroMD +ascl.1010.079 Geant4 +ascl.1010.080 GRACOS +ascl.1010.081 MGGPOD +ascl.1010.082 FLASH +ascl.1010.083 MESA +ascl.1010.084 WhiskyMHD +ascl.1010.085 Network +ascl.1011.001 Identikit +ascl.1011.002 DAOSPEC +ascl.1011.003 ZPEG +ascl.1011.004 MARS +ascl.1011.005 Shape +ascl.1011.006 DAME +ascl.1011.007 RAMSES +ascl.1011.008 Binsim +ascl.1011.009 DRAGON +ascl.1011.010 Global +ascl.1011.011 turboGL +ascl.1011.012 DEFROST +ascl.1011.013 EasyLTB +ascl.1011.014 CO5BOLD +ascl.1011.015 Geokerr +ascl.1011.016 Non-LTE +ascl.1011.017 Occultation +ascl.1011.018 Transit +ascl.1011.019 FLY +ascl.1011.020 VisIVO +ascl.1011.021 GRALE +ascl.1011.022 yt +ascl.1011.023 HyRec +ascl.1101.001 Second-order +ascl.1101.002 NDSPMHD +ascl.1101.003 IGMtransfer +ascl.1101.004 InterpMC +ascl.1101.005 CMHOG +ascl.1101.006 NIRVANA +ascl.1101.007 Galaxia +ascl.1101.008 CRASH +ascl.1101.009 MasQU +ascl.1101.010 TOPCAT +ascl.1102.001 N-MODY +ascl.1102.002 PBL +ascl.1102.003 GRAVLENS +ascl.1102.004 LENSTOOL +ascl.1102.005 MRLENS +ascl.1102.006 NBODY +ascl.1102.007 PixeLens +ascl.1102.008 PMFAST +ascl.1102.009 AHF +ascl.1102.010 SEREN +ascl.1102.011 Identikit +ascl.1102.012 CPROPS +ascl.1102.013 Cactus +ascl.1102.014 Einstein +ascl.1102.015 PMFASTIC +ascl.1102.016 HERACLES +ascl.1102.017 FARGO +ascl.1102.018 Karma +ascl.1102.019 HOP +ascl.1102.020 SKID +ascl.1102.021 DIRT +ascl.1102.022 PDRT +ascl.1102.023 21cmFAST +ascl.1102.024 DiFX2 +ascl.1102.025 LensPix +ascl.1102.026 CAMB +ascl.1102.027 ZENO +ascl.1102.028 ZEUS-MP/2 +ascl.1103.001 Difmap +ascl.1103.002 PGPLOT +ascl.1103.003 S2PLOT +ascl.1103.004 SPLASH +ascl.1103.005 Splotch +ascl.1103.006 GLESP +ascl.1103.007 VisIt +ascl.1103.008 Parallel +ascl.1103.009 SPHRAY +ascl.1103.010 Hydra +ascl.1103.011 AP3M +ascl.1103.012 Pyflation +ascl.1103.014 ParaView +ascl.1103.015 Cloudy_3D +ascl.1104.001 TomograPy +ascl.1104.002 AstroBEAR +ascl.1104.003 Starburst99 +ascl.1104.004 MASSCLEAN +ascl.1104.005 GALAXEV +ascl.1104.006 LECTOR +ascl.1104.007 ULySS +ascl.1104.008 Rmodel +ascl.1104.009 r-Java +ascl.1104.010 GALFIT +ascl.1104.011 DAOPHOT +ascl.1104.012 CHIWEI +ascl.1104.013 BEARCLAW +ascl.1104.014 A +ascl.1105.001 STILTS +ascl.1105.002 PACCE +ascl.1105.003 The +ascl.1105.004 SLiM +ascl.1105.005 ChaNGa +ascl.1105.006 SPARC +ascl.1105.007 Sunspot +ascl.1105.008 Flux +ascl.1105.009 Ray +ascl.1105.010 CASTRO +ascl.1105.011 Ganalyzer +ascl.1105.012 Stagger +ascl.1105.013 CAMB +ascl.1105.014 PSRCHIVE +ascl.1106.001 AlterBBN +ascl.1106.002 PHOEBE +ascl.1106.003 PLplot +ascl.1106.004 E3D +ascl.1106.005 R3D +ascl.1106.006 MECI +ascl.1106.007 MIRIAD +ascl.1106.008 GRAFIC-2 +ascl.1106.009 PARAMESH +ascl.1106.010 MAGPHYS +ascl.1106.011 DRAGON +ascl.1106.012 SLUG +ascl.1106.013 MGCAMB +ascl.1106.014 Transit +ascl.1106.015 OrbFit +ascl.1106.016 Nightfall +ascl.1106.017 CAOS +ascl.1106.018 CMB +ascl.1106.019 Application +ascl.1106.020 CLASS +ascl.1106.021 StringFast +ascl.1106.022 MPI-Defrost +ascl.1106.023 CMBACT +ascl.1106.024 ELMAG +ascl.1106.025 CosmoMC +ascl.1106.026 RECFAST +ascl.1107.001 SNID +ascl.1107.002 GIBIS +ascl.1107.003 FITSManager +ascl.1107.004 Flexible +ascl.1107.005 Sherpa +ascl.1107.006 AIRES +ascl.1107.007 AMUSE +ascl.1107.008 STARS +ascl.1107.009 REAS3 +ascl.1107.010 XDSPRES +ascl.1107.011 ARCHANGEL +ascl.1107.012 LIME +ascl.1107.013 CASA +ascl.1107.014 Clumpfind +ascl.1107.015 McLuster +ascl.1107.016 SIGPROC +ascl.1107.017 PRESTO +ascl.1107.018 HEALPix +ascl.1107.019 PSRPOP +ascl.1108.001 IMCAT +ascl.1108.002 SHERA +ascl.1108.003 WCSLIB +ascl.1108.004 Galacticus +ascl.1108.005 Gaepsi +ascl.1108.006 STARLIGHT +ascl.1108.007 PÉGASE +ascl.1108.008 PÉGASE-HR +ascl.1108.009 LePHARE +ascl.1108.010 Hyperz +ascl.1108.011 BPZ +ascl.1108.012 TITAN +ascl.1108.013 STELLA +ascl.1108.014 RADICAL +ascl.1108.015 DISKSTRUCT +ascl.1108.016 RADMC +ascl.1108.017 SHELLSPEC +ascl.1108.018 STECKMAP +ascl.1108.019 BOREAS +ascl.1109.001 PySpecKit +ascl.1109.002 ADIPLS +ascl.1109.003 SKIRT +ascl.1109.004 HAZEL +ascl.1109.005 PolSpice +ascl.1109.006 MultiNest +ascl.1109.007 SuperBayeS +ascl.1109.008 Multipole +ascl.1109.009 CMBquick +ascl.1109.010 PyModelFit +ascl.1109.011 GalactICS +ascl.1109.012 EnBiD +ascl.1109.013 CULSP +ascl.1109.014 Supernova +ascl.1109.015 WCSTools +ascl.1109.016 aXe +ascl.1109.017 IRDR +ascl.1109.018 GIPSY +ascl.1109.019 SkyCat +ascl.1109.020 CMFGEN +ascl.1109.021 TLUSTY +ascl.1109.022 Synspec +ascl.1109.023 MOKA +ascl.1109.024 Jupiter +ascl.1110.001 analytic_infall +ascl.1110.002 DarkSUSY +ascl.1110.003 iGalFit +ascl.1110.004 SHTOOLS +ascl.1110.005 ZEBRA +ascl.1110.006 STIFF +ascl.1110.007 GammaLib +ascl.1110.008 Glnemo2 +ascl.1110.009 AAOGlimpse +ascl.1110.010 MOCASSIN +ascl.1110.011 Pacerman +ascl.1110.012 Starlink +ascl.1110.013 S2HAT +ascl.1110.014 pureS2HAT +ascl.1110.015 atlant +ascl.1110.016 REBOUND +ascl.1110.017 POWMES +ascl.1110.018 MADmap +ascl.1110.019 CosmoNest +ascl.1110.020 CROSS_CMBFAST +ascl.1110.021 Univiewer +ascl.1110.022 simple_cosfitter +ascl.1110.023 SiFTO +ascl.1110.024 CosmoMC +ascl.1110.025 MIS +ascl.1111.001 HIPE +ascl.1111.002 CRBLASTER +ascl.1111.003 Saada +ascl.1111.004 CIGALE +ascl.1111.005 SPECTCOL +ascl.1111.006 MOPEX +ascl.1111.007 CUBISM +ascl.1111.008 SITools2 +ascl.1111.009 MESS +ascl.1111.010 Starbase +ascl.1111.011 3DEX +ascl.1111.012 VAPOR +ascl.1111.013 FIBRE-pac +ascl.1111.014 FITSH +ascl.1111.015 TIPSY +ascl.1112.001 Eclipse +ascl.1112.002 Funtools +ascl.1112.003 THERMINATOR +ascl.1112.004 PHOX +ascl.1112.005 GIDGET +ascl.1112.006 PhAst +ascl.1112.007 FLAGCAL +ascl.1112.008 GGobi +ascl.1112.009 LISACode +ascl.1112.010 MRS3D +ascl.1112.011 CMBview +ascl.1112.012 CORA +ascl.1112.013 XEphem +ascl.1112.014 PyEphem +ascl.1112.015 Dexter +ascl.1112.016 PREDICT +ascl.1112.017 ASpec +ascl.1112.018 SwiftVis +ascl.1112.019 Aladin +ascl.1201.001 McScatter +ascl.1201.002 Roche +ascl.1201.003 SeBa +ascl.1201.004 emGain +ascl.1201.005 2LPTIC +ascl.1201.006 VIM +ascl.1201.007 Fisher4Cast +ascl.1201.008 Mercury +ascl.1201.009 ExoFit +ascl.1201.010 HNBody +ascl.1201.011 Duchamp +ascl.1201.012 CLUMPY +ascl.1201.013 SPS +ascl.1201.014 Hammurabi +ascl.1201.015 FFTW +ascl.1201.016 LumFunc +ascl.1201.017 Inflation +ascl.1202.001 CISM_DX +ascl.1202.002 ZODIPIC +ascl.1202.003 NOVAS +ascl.1202.004 TALYS +ascl.1202.005 Mangle +ascl.1202.006 CORSIKA +ascl.1202.007 CRUNCH3D +ascl.1202.008 Chombo +ascl.1202.009 MOOG +ascl.1202.010 SPECTRE +ascl.1202.011 Lattimer-Swesty +ascl.1202.012 CoCoNuT +ascl.1202.013 SME +ascl.1202.014 FISA +ascl.1202.015 RADMC-3D +ascl.1203.001 AE +ascl.1203.002 GALAPAGOS +ascl.1203.003 spec2d +ascl.1203.004 FERENGI +ascl.1203.005 Gyoto +ascl.1203.006 EMACSS +ascl.1203.007 EBTEL +ascl.1203.008 MegaLUT +ascl.1203.009 MYRIAD +ascl.1203.010 Youpi +ascl.1203.011 SALT2 +ascl.1203.012 Astrometrica +ascl.1203.013 Figaro +ascl.1204.001 WM-basic +ascl.1204.002 pyBLoCXS +ascl.1204.003 BUDDA +ascl.1204.004 Fosite +ascl.1204.005 MC3D +ascl.1204.006 GRASIL +ascl.1204.007 VH-1 +ascl.1204.008 StarFISH +ascl.1204.009 STOKES +ascl.1204.010 Shape +ascl.1204.011 EXCOP +ascl.1204.012 VirGO +ascl.1204.013 ORSA +ascl.1204.014 WOMBAT +ascl.1204.015 PROFIT +ascl.1204.016 ASCfit +ascl.1204.017 epsnoise +ascl.1205.001 Mechanic +ascl.1205.002 p3d +ascl.1205.003 MIA+EWS +ascl.1205.004 Turbospectrum +ascl.1205.005 Fv +ascl.1205.006 Flexion +ascl.1205.007 Iris +ascl.1205.008 Mayavi2 +ascl.1205.009 ARES +ascl.1205.010 Meudon +ascl.1205.011 VOSpec +ascl.1206.001 RegiStax +ascl.1206.002 FITS +ascl.1206.003 STSDAS +ascl.1206.004 MOLSCAT +ascl.1206.005 bhint +ascl.1206.006 statpl +ascl.1206.007 Plumix +ascl.1206.008 Catena +ascl.1206.009 Libimf +ascl.1206.010 mkj_libs +ascl.1206.011 Double +ascl.1206.012 Time +ascl.1206.013 ImageJ +ascl.1206.014 ImageHealth +ascl.1207.001 EXOFAST +ascl.1207.002 HiGPUs +ascl.1207.003 VAC +ascl.1207.004 Hyperion +ascl.1207.005 L.A.Cosmic +ascl.1207.006 dcr +ascl.1207.007 Astropysics +ascl.1207.008 xSonify +ascl.1207.009 PyFITS +ascl.1207.010 PySALT +ascl.1207.011 PyRAF +ascl.1207.012 PCA +ascl.1207.013 JKTEBOP +ascl.1207.014 wvrgcal +ascl.1208.001 Astrometry.net +ascl.1208.002 BINSYN +ascl.1208.003 APT +ascl.1208.004 PyKE +ascl.1208.005 PSM +ascl.1208.006 ccogs +ascl.1208.007 Big +ascl.1208.008 TiRiFiC +ascl.1208.009 BLOBCAT +ascl.1208.010 BASE +ascl.1208.011 Fewbody +ascl.1208.012 Swarm-NG +ascl.1208.013 SolarSoft +ascl.1208.014 MPI-AMRVAC +ascl.1208.015 Lare3d +ascl.1208.016 VARTOOLS +ascl.1208.017 APLpy +ascl.1208.018 CUBEP3M +ascl.1208.019 MPFIT +ascl.1208.020 ParselTongue +ascl.1208.021 EzGal +ascl.1209.001 Bayesian +ascl.1209.002 JAGS +ascl.1209.003 LSD +ascl.1209.004 CHORIZOS +ascl.1209.005 HARM +ascl.1209.006 macula +ascl.1209.007 TMCalc +ascl.1209.008 Phantom-GRAPE +ascl.1209.009 ANNz +ascl.1209.010 MeqTrees +ascl.1209.011 DiskFit +ascl.1209.012 Scanamorphos +ascl.1209.013 IRACproc +ascl.1209.014 FAMIAS +ascl.1209.015 Aspects +ascl.1210.001 GP2PCF +ascl.1210.002 pPXF +ascl.1210.003 GOSSIP +ascl.1210.004 EZ +ascl.1210.005 SGNAPS +ascl.1210.006 TA-DA +ascl.1210.007 FLUKA +ascl.1210.008 Rockstar +ascl.1210.009 PAHFIT +ascl.1210.010 CALCLENS +ascl.1210.011 Consistent +ascl.1210.012 SearchCal +ascl.1210.013 ConvPhot +ascl.1210.014 TRIP +ascl.1210.015 Tempo2 +ascl.1210.016 Specview +ascl.1210.017 McPHAC +ascl.1210.018 Systemic +ascl.1210.019 QFitsView +ascl.1210.020 GASGANO +ascl.1210.021 SMART +ascl.1210.022 HAM2D +ascl.1210.023 inf_solv +ascl.1210.024 ORBADV +ascl.1210.025 TwoDSSM +ascl.1210.026 PVS-GRMHD +ascl.1210.027 PyCosmic +ascl.1210.028 QYMSYM +ascl.1210.029 Sapporo +ascl.1210.030 BOOTTRAN +ascl.1210.031 RVLIN +ascl.1211.001 S2LET +ascl.1211.002 FreeEOS +ascl.1211.003 WVT +ascl.1211.004 CORRFIT +ascl.1211.005 C-m +ascl.1211.006 Voronoi +ascl.1212.001 Bonsai +ascl.1212.002 XPHOT +ascl.1212.003 MPWide +ascl.1212.004 MOLIERE-5 +ascl.1212.005 General +ascl.1212.006 CosmoPMC +ascl.1212.007 WOLF +ascl.1212.008 SIR +ascl.1212.009 Aegean +ascl.1212.010 Synth3 +ascl.1212.011 DrizzlePac +ascl.1212.012 ddisk +ascl.1212.013 EXSdetect +ascl.1212.014 Thrust +ascl.1212.015 TMAP +ascl.1301.001 PSFEx +ascl.1302.001 MARX +ascl.1302.002 ISIS +ascl.1302.003 ACS +ascl.1302.004 pNbody +ascl.1302.005 EPICS +ascl.1302.006 Minerva +ascl.1302.007 GRID-core +ascl.1302.008 FASTPHOT +ascl.1302.009 IAS +ascl.1302.010 ICORE +ascl.1302.011 GALA +ascl.1302.012 ME(SSY)**2 +ascl.1302.013 NIFTY +ascl.1302.014 SYNMAG +ascl.1302.015 DisPerSE +ascl.1302.016 XDQSO +ascl.1302.017 ESO-MIDAS +ascl.1303.001 SWIFT +ascl.1303.002 emcee +ascl.1303.003 CosmoHammer +ascl.1303.004 UCL_PDR +ascl.1303.005 SMMOL +ascl.1303.006 UCL_CHEM +ascl.1303.007 micrOMEGAs +ascl.1303.008 TYCHO +ascl.1303.009 MAGIX +ascl.1303.010 TAC-maker +ascl.1303.011 MOPSIC +ascl.1303.012 TGCat +ascl.1303.013 idistort +ascl.1303.014 BSE +ascl.1303.015 SSE +ascl.1303.016 2MASS +ascl.1303.017 CADRE +ascl.1303.018 Galactus +ascl.1303.019 GBTIDL +ascl.1303.020 Ginga +ascl.1303.021 Xmatch +ascl.1303.022 ionFR +ascl.1303.023 pysynphot +ascl.1303.024 ATLAS12 +ascl.1303.025 DPUSER +ascl.1303.026 ACORNS-ADI +ascl.1303.027 GaPP +ascl.1303.028 Stellarics +ascl.1303.029 iSAP +ascl.1303.030 Sunrise +ascl.1304.001 PEC +ascl.1304.002 Astropy +ascl.1304.003 GALSVM +ascl.1304.004 Wqed +ascl.1304.005 VOBOZ/ZOBOV +ascl.1304.006 CosmicEmuLog +ascl.1304.007 DESPOTIC +ascl.1304.008 Diffusion.f +ascl.1304.009 Sérsic +ascl.1304.011 TPZ +ascl.1304.012 ORIGAMI +ascl.1304.013 SFH +ascl.1304.014 MPgrafic +ascl.1304.015 TVD +ascl.1304.016 Qhull +ascl.1304.017 CosmoRec +ascl.1304.018 SZpack +ascl.1304.019 IFrIT +ascl.1304.020 pyCloudy +ascl.1304.021 PyNeb +ascl.1304.022 Copter +ascl.1305.001 ESTER +ascl.1305.002 pynbody +ascl.1305.003 TPM +ascl.1305.004 AdaptaHOP +ascl.1305.005 PkdGRAV2 +ascl.1305.006 Pressure-Entropy +ascl.1305.007 PINOCCHIO +ascl.1305.008 YNOGK +ascl.1305.009 GaussFit +ascl.1305.010 GILDAS +ascl.1305.011 FITDisk +ascl.1305.012 MapCUMBA +ascl.1305.013 Non-Gaussian +ascl.1305.014 TAU +ascl.1305.015 Merger +ascl.1306.001 SAC +ascl.1306.002 grmonty +ascl.1306.003 Harmony +ascl.1306.004 PROM4 +ascl.1306.005 PROS +ascl.1306.006 BEHR +ascl.1306.007 Tapir +ascl.1306.008 MAPPINGS +ascl.1306.009 STF +ascl.1306.010 MADCOW +ascl.1306.011 Pico +ascl.1306.012 LRG +ascl.1306.013 Bessel +ascl.1306.014 ZEUS-2D +ascl.1306.015 VHD +ascl.1306.016 Yaxx +ascl.1307.001 DustEM +ascl.1307.002 Monte +ascl.1307.003 K3Match +ascl.1307.004 FieldInf +ascl.1307.005 LENSVIEW +ascl.1307.006 im2shape +ascl.1307.007 AstroTaverna +ascl.1307.008 Obit +ascl.1307.009 MAH +ascl.1307.010 cosmoxi2d +ascl.1307.011 PhoSim +ascl.1307.012 ITERA +ascl.1307.013 SIMX +ascl.1307.014 Shapelets +ascl.1307.015 CTI +ascl.1307.016 orbfit +ascl.1307.017 NEST +ascl.1307.018 ETC++ +ascl.1307.019 PURIFY +ascl.1307.020 SOPT +ascl.1308.001 SMILE +ascl.1308.002 LOSSCONE +ascl.1308.003 MapCurvature +ascl.1308.004 LensEnt2 +ascl.1308.005 APPSPACK +ascl.1308.006 BASIN +ascl.1308.007 SYNAPPS +ascl.1308.008 SYN++ +ascl.1308.009 CReSyPS +ascl.1308.010 GYRE +ascl.1308.011 CRUSH +ascl.1308.012 RADLite +ascl.1308.013 THELI +ascl.1308.014 SPEX +ascl.1308.015 Ceph_code +ascl.1308.016 JHelioviewer +ascl.1308.017 ChiantiPy +ascl.1308.018 MoogStokes +ascl.1309.001 AstroImageJ +ascl.1309.002 VAPHOT +ascl.1309.003 LOSP +ascl.1309.004 Spherical +ascl.1309.005 SATMC +ascl.1309.006 VOPlot +ascl.1309.007 VOMegaPlot +ascl.1309.008 VOStat +ascl.1310.001 ORAC-DR +ascl.1310.002 PyMSES +ascl.1310.003 AIDA +ascl.1310.004 AIRY +ascl.1310.005 ASPRO +ascl.1310.006 AIPSLite +ascl.1310.007 SMURF +ascl.1310.008 SPECX +ascl.1311.001 SciDB +ascl.1311.002 PyCOOL +ascl.1311.003 AstroAsciiData +ascl.1311.004 PlanetPack +ascl.1311.005 Spheroid +ascl.1311.006 CIAO +ascl.1311.007 CUPID +ascl.1311.008 CUPID +ascl.1311.009 CosmoTherm +ascl.1311.010 ARPACK +ascl.1311.011 MUSIC +ascl.1311.012 ETC +ascl.1312.001 SERPent +ascl.1312.002 WND-CHARM +ascl.1312.003 IMCOM +ascl.1312.004 BIE +ascl.1312.005 XAssist +ascl.1312.006 LTL +ascl.1312.007 SkyNet +ascl.1312.008 BAMBI +ascl.1312.009 YODA +ascl.1312.010 GalaxyCount +ascl.1312.011 A_phot +ascl.1312.012 BINGO +ascl.1312.013 CJAM +ascl.1312.014 SL1M +ascl.1401.001 Kirin +ascl.1401.002 SpacePy +ascl.1401.003 PyMidas +ascl.1401.004 Reflex +ascl.1401.005 PyDrizzle +ascl.1401.006 convolve_image.pro +ascl.1401.007 abundance +ascl.1401.008 massconvert +ascl.1401.009 PPF +ascl.1401.010 SunPy +ascl.1402.001 Vissage +ascl.1402.002 Glue +ascl.1402.003 astroplotlib +ascl.1402.004 PyVO +ascl.1402.005 Aladin +ascl.1402.006 Munipack +ascl.1402.007 SPLAT +ascl.1402.008 SPLAT-VO +ascl.1402.009 GalSim +ascl.1402.010 CPL +ascl.1402.011 KROME +ascl.1402.012 QUICKCV +ascl.1402.013 CASSIS +ascl.1402.014 ARTIST +ascl.1402.015 BF_dist +ascl.1402.016 FAMA +ascl.1402.017 UVMULTIFIT +ascl.1402.018 TARDIS +ascl.1402.019 ANAigm +ascl.1402.020 XNS +ascl.1402.021 PyGFit +ascl.1402.022 DexM +ascl.1402.023 HydraLens +ascl.1402.024 QuickReduce +ascl.1402.025 BAOlab +ascl.1402.026 athena +ascl.1402.027 Darth +ascl.1402.028 Commander +ascl.1402.029 wssa_utils +ascl.1402.030 P2SAD +ascl.1402.031 gyrfalcON +ascl.1402.032 HALOFIT +ascl.1402.033 libsharp +ascl.1402.034 PyWiFeS +ascl.1402.035 MGHalofit +ascl.1403.001 GPU-D +ascl.1403.002 pyExtinction +ascl.1403.003 MLZ +ascl.1403.004 Lightcone +ascl.1403.005 GRay +ascl.1403.006 CHIMERA +ascl.1403.007 Unified +ascl.1403.008 SURF +ascl.1403.009 ISAP +ascl.1403.010 Inverse +ascl.1403.011 RMHB +ascl.1403.012 YNOGKM +ascl.1403.013 BAOlab +ascl.1403.014 T(dust) +ascl.1403.015 computePk +ascl.1403.016 Viewpoints +ascl.1403.017 MGE_FIT_SECTORS +ascl.1403.018 JAM +ascl.1403.019 KINEMETRY +ascl.1403.020 disc2vel +ascl.1403.021 CCDPACK +ascl.1403.022 KAPPA +ascl.1403.023 ASTERIX +ascl.1403.024 GAIA +ascl.1403.025 SLALIB +ascl.1403.026 SOFA +ascl.1404.001 LTS_LINEFIT +ascl.1404.002 ZDCF +ascl.1404.004 SAS +ascl.1404.005 SER +ascl.1404.006 TORUS +ascl.1404.007 AMBIG +ascl.1404.008 Comet +ascl.1404.009 carma_pack +ascl.1404.010 VictoriaReginaModels +ascl.1404.011 CAP_LOESS_1D +ascl.1404.012 RegPT +ascl.1404.013 WFC3UV_GC +ascl.1404.014 SpecPro +ascl.1404.015 TTVFast +ascl.1404.016 AST +ascl.1404.017 Spextool +ascl.1405.001 LBLRTM +ascl.1405.002 TelFit +ascl.1405.003 The +ascl.1405.004 Defringeflat +ascl.1405.005 HIIPHOT +ascl.1405.006 PROPER +ascl.1405.007 FORWARD +ascl.1405.008 TRIPP +ascl.1405.009 ATV +ascl.1405.010 FLUXES +ascl.1405.011 DATACUBE +ascl.1405.012 PISA +ascl.1405.013 PHOTOM +ascl.1405.014 POLPACK +ascl.1405.015 CURSA +ascl.1405.016 DIPSO +ascl.1405.017 ESP +ascl.1405.018 ECHOMOP +ascl.1406.001 ASURV +ascl.1406.002 PAMELA +ascl.1406.003 CoREAS +ascl.1406.004 Autoastrom +ascl.1406.005 PERIOD +ascl.1406.006 FROG +ascl.1406.007 RV +ascl.1406.008 ASTROM +ascl.1406.009 VADER +ascl.1406.010 MATCH +ascl.1406.011 TSP +ascl.1406.012 POLMAP +ascl.1406.013 CGS4DR +ascl.1406.014 IRAS90 +ascl.1406.015 IRCAMDR +ascl.1406.016 IUEDR +ascl.1406.017 COCO +ascl.1406.018 GAUSSCLUMPS +ascl.1406.019 JCMTDR +ascl.1406.020 STARMAN +ascl.1407.001 The +ascl.1407.002 TWODSPEC +ascl.1407.003 SPECDRE +ascl.1407.004 MCMAC +ascl.1407.005 MATLAB +ascl.1407.006 SAMI +ascl.1407.007 ASTRORAY +ascl.1407.008 Exopop +ascl.1407.009 Period04 +ascl.1407.010 CLE +ascl.1407.011 kungifu +ascl.1407.012 PINGSoft2 +ascl.1407.013 VStar +ascl.1407.014 VIDE +ascl.1407.015 BayesFlare +ascl.1407.016 Brut +ascl.1407.017 e-MERLIN +ascl.1407.018 AstroML +ascl.1407.019 EZ_Ages +ascl.1407.020 Halogen +ascl.1408.001 Imfit +ascl.1408.002 LIA +ascl.1408.003 PIA +ascl.1408.004 HEAsoft +ascl.1408.005 POET +ascl.1408.006 SPAM +ascl.1408.007 Skycorr +ascl.1408.008 GALIC +ascl.1408.009 IIPImage +ascl.1408.010 VisiOmatic +ascl.1408.011 GALAPAGOS-C +ascl.1408.012 LightcurveMC +ascl.1408.013 NumCosmo +ascl.1408.014 pieflag +ascl.1408.015 VPFIT +ascl.1408.016 vpguess +ascl.1408.017 RDGEN +ascl.1408.018 CosmoPhotoz +ascl.1408.019 O[2]scl +ascl.1408.020 bamr +ascl.1408.021 APS +ascl.1408.022 PhotoRApToR +ascl.1408.023 WSClean +ascl.1409.001 mixT +ascl.1409.002 Tsyganenko +ascl.1409.003 LANL* +ascl.1409.004 IFSRED +ascl.1409.005 IFSFIT +ascl.1409.006 iSpec +ascl.1409.007 ORBS +ascl.1409.008 CHLOE +ascl.1409.009 Nahoon +ascl.1409.010 Slim +ascl.1409.011 rmfit +ascl.1409.012 CosmoSIS +ascl.1409.013 IM3SHAPE +ascl.1410.001 DIAMONDS +ascl.1410.002 MEPSA +ascl.1410.003 GIZMO +ascl.1410.004 UVOTPY +ascl.1410.005 RICH +ascl.1411.001 pyGadgetReader +ascl.1411.002 pysovo +ascl.1411.003 voevent-parse +ascl.1411.004 OPERA +ascl.1411.005 HOPE +ascl.1411.006 RC3 +ascl.1411.007 segueSelect +ascl.1411.008 galpy +ascl.1411.009 iDealCam +ascl.1411.010 Raga +ascl.1411.011 PyMGC3 +ascl.1411.012 util_2comp +ascl.1411.013 NEAT +ascl.1411.014 NAFE +ascl.1411.015 SPOTROD +ascl.1411.016 Flicker +ascl.1411.017 ECCSAMPLES +ascl.1411.018 GPI +ascl.1411.019 Anmap +ascl.1411.020 JCMT +ascl.1411.021 POSTMORTEM +ascl.1411.022 Starlink +ascl.1411.023 NDF +ascl.1411.024 CGS3DR +ascl.1411.025 SPT +ascl.1411.026 sic +ascl.1411.027 BKGE +ascl.1412.001 SoFiA +ascl.1412.002 Cheetah +ascl.1412.003 UTM +ascl.1412.004 DAMIT +ascl.1412.005 BRUCE/KYLIE +ascl.1412.006 HMF +ascl.1412.007 PIAO +ascl.1412.008 Hrothgar +ascl.1412.009 URCHIN +ascl.1412.010 MMAS +ascl.1412.011 TraP +ascl.1412.012 GeoTOA +ascl.1412.013 CRPropa +ascl.1412.014 SOPHIA +ascl.1501.001 PynPoint +ascl.1501.002 NIGO +ascl.1501.003 python-qucs +ascl.1501.004 dst +ascl.1501.005 DECA +ascl.1501.006 PsrPopPy +ascl.1501.007 LP-VIcode +ascl.1501.008 Enrico +ascl.1501.009 BIANCHI +ascl.1501.010 PythonPhot +ascl.1501.011 transfer +ascl.1501.012 Exorings +ascl.1501.013 Molecfit +ascl.1501.014 GalPaK +ascl.1501.015 Exoplanet +ascl.1501.016 Colossus +ascl.1502.001 RH +ascl.1502.002 OpenOrb +ascl.1502.003 N-GenIC +ascl.1502.004 ADAM +ascl.1502.005 PARSEC +ascl.1502.006 Montblanc +ascl.1502.007 PyBDSF +ascl.1502.008 KAPPA +ascl.1502.009 HDS +ascl.1502.010 nbody6tt +ascl.1502.011 PolyChord +ascl.1502.012 SPHGR +ascl.1502.013 Rabacus +ascl.1502.014 Magnetron +ascl.1502.015 Camelus +ascl.1502.016 libnova +ascl.1502.017 AMIsurvey +ascl.1502.018 XFGLENSES +ascl.1502.019 XPCell +ascl.1502.020 ketu +ascl.1502.021 MaLTPyNT +ascl.1502.022 AstroLines +ascl.1502.023 ROBOSPECT +ascl.1503.001 K2flix +ascl.1503.002 Galax2d +ascl.1503.003 TAME +ascl.1503.004 HELIOS-K +ascl.1503.005 dust +ascl.1503.006 AMADA +ascl.1503.007 UniPOPS +ascl.1503.008 pYSOVAR +ascl.1503.009 GSD +ascl.1503.010 isochrones +ascl.1503.011 VESPA +ascl.1504.001 UPMASK +ascl.1504.002 SPA +ascl.1504.003 EsoRex +ascl.1504.004 HOTPANTS +ascl.1504.005 chimenea +ascl.1504.006 drive-casa +ascl.1504.007 WebbPSF +ascl.1504.008 MCSpearman +ascl.1504.009 Self-lensing +ascl.1504.010 CosmoTransitions +ascl.1504.011 samiDB +ascl.1504.012 DPI +ascl.1504.013 kozai +ascl.1504.014 abcpmc +ascl.1504.015 IGMtransmission +ascl.1504.016 MRrelation +ascl.1504.017 JWFront +ascl.1504.018 D3PO +ascl.1504.019 LineProf +ascl.1504.020 BGLS +ascl.1504.021 SOAP +ascl.1505.001 CALCEPH +ascl.1505.002 ASteCA +ascl.1505.003 caret +ascl.1505.004 KS +ascl.1505.005 ARoME +ascl.1505.006 Athena3D +ascl.1505.007 Starfish +ascl.1505.008 SCEPtER +ascl.1505.009 StellaR +ascl.1505.010 COBS +ascl.1505.011 missForest +ascl.1505.012 LSSGALPY +ascl.1505.013 cosmoabc +ascl.1505.014 FCLC +ascl.1505.015 2dfdr +ascl.1505.016 CUTE +ascl.1505.017 HALOGEN +ascl.1505.018 POKER +ascl.1505.019 TFIT +ascl.1505.020 rvfit +ascl.1505.021 relline +ascl.1505.022 Snoopy +ascl.1505.023 SNooPy +ascl.1505.024 PyTransit +ascl.1505.025 pyMCZ +ascl.1505.026 Lensed +ascl.1505.027 BAYES-X +ascl.1505.028 RESOLVE +ascl.1505.029 fits2hdf +ascl.1505.030 CANDID +ascl.1505.031 TEA +ascl.1505.032 Planck +ascl.1505.033 SNEC +ascl.1505.034 dStar +ascl.1506.001 pyKLIP +ascl.1506.002 dmdd +ascl.1506.003 PLATO +ascl.1506.004 multiband_LS +ascl.1506.005 PyMC +ascl.1506.006 fsclean +ascl.1506.007 REALMAF +ascl.1506.008 SPRITE +ascl.1506.009 HEATCVB +ascl.1506.010 VAPID +ascl.1507.001 3D-Barolo +ascl.1507.002 SUPERBOX +ascl.1507.003 Pelican +ascl.1507.004 L-PICOLA +ascl.1507.005 slimplectic +ascl.1507.006 Toyz +ascl.1507.007 abo-cross +ascl.1507.008 HLINOP +ascl.1507.009 PPInteractions +ascl.1507.010 Astrochem +ascl.1507.011 FAT +ascl.1507.012 DRAMA +ascl.1507.013 K-Inpainting +ascl.1507.014 getsources +ascl.1507.015 DALI +ascl.1507.016 Least +ascl.1507.017 REDSPEC +ascl.1507.018 pyro +ascl.1507.019 AstroStat +ascl.1507.020 IEHI +ascl.1508.001 HMcode +ascl.1508.002 NICOLE +ascl.1508.003 REDUCEME +ascl.1508.004 FRELLED +ascl.1508.005 ColorPro +ascl.1508.006 SExSeg +ascl.1508.007 TreeCorr +ascl.1508.008 NGMIX +ascl.1508.009 Trilogy +ascl.1508.010 SHDOM +ascl.1509.001 XSHPipelineManager +ascl.1509.002 Tempo +ascl.1509.003 AFR +ascl.1509.004 FalconIC +ascl.1509.005 TRUVOT +ascl.1509.006 FARGO3D +ascl.1509.007 pycola +ascl.1509.008 GFARGO +ascl.1509.009 OPERA +ascl.1509.010 PyCS +ascl.1510.001 GGADT +ascl.1510.002 batman +ascl.1510.003 PyLDTk +ascl.1510.004 DEBiL +ascl.1510.005 GALFORM +ascl.1510.006 ASPIC +ascl.1510.007 ccdproc +ascl.1511.001 SuperFreq +ascl.1511.002 JSPAM +ascl.1511.003 SkyView +ascl.1511.004 Xgremlin +ascl.1511.005 pyhrs +ascl.1511.006 T-Matrix +ascl.1511.007 MHF +ascl.1511.008 MCAL +ascl.1511.009 Pangloss +ascl.1511.010 Galileon-Solver +ascl.1511.011 SparsePZ +ascl.1511.012 milkywayproject_triggering +ascl.1511.013 CCDtoRGB +ascl.1511.014 HumVI +ascl.1511.015 George +ascl.1511.016 JKTLD +ascl.1511.017 DES +ascl.1511.018 LDC3 +ascl.1511.019 CosmoBolognaLib +ascl.1511.020 Mercury-T +ascl.1511.021 EPIC +ascl.1511.022 ZInCo +ascl.1511.023 PromptNuFlux +ascl.1512.001 IRACpm +ascl.1512.002 GetData +ascl.1512.003 EDRS +ascl.1512.004 EDRSX +ascl.1512.005 ALFA +ascl.1512.006 GPC +ascl.1512.007 AstroBlend +ascl.1512.008 Bisous +ascl.1512.009 DRACULA +ascl.1512.010 CubeIndexer +ascl.1512.011 ExoData +ascl.1512.012 DiffuseModel +ascl.1512.013 CounterPoint +ascl.1512.014 TM +ascl.1512.015 Spirality +ascl.1512.016 ZeldovichRecon +ascl.1512.017 FFTLog +ascl.1512.018 growl +ascl.1512.019 UPSILoN +ascl.1512.020 TACT +ascl.1601.001 TRADES +ascl.1601.002 Hyper-Fit +ascl.1601.003 SCOUSE +ascl.1601.004 Odyssey +ascl.1601.005 ctools +ascl.1601.006 SAGE +ascl.1601.007 LIRA +ascl.1601.008 CosmicPy +ascl.1601.009 K2fov +ascl.1601.010 PARAVT +ascl.1601.011 LACEwING +ascl.1601.012 SavGolFilterCov +ascl.1601.013 ImpactModel +ascl.1601.014 Nulike +ascl.1601.015 QDPHOT +ascl.1601.016 Fit +ascl.1601.017 BASCS +ascl.1601.018 MATPHOT +ascl.1601.019 WzBinned +ascl.1601.020 ProC +ascl.1601.021 ISO +ascl.1602.001 Automark +ascl.1602.002 pyraf-dbsp +ascl.1602.003 ZAP +ascl.1602.004 DUSTYWAVE +ascl.1602.005 LRGS +ascl.1602.006 LIRA +ascl.1602.007 FilTER +ascl.1602.008 NuCraft +ascl.1602.009 LensTools +ascl.1602.010 The +ascl.1602.011 Celestial +ascl.1602.012 DELightcurveSimulation +ascl.1602.013 TailZ +ascl.1602.014 k2photometry +ascl.1602.015 GANDALF +ascl.1602.016 IRSFRINGE +ascl.1602.017 CHIP +ascl.1602.018 POPPY +ascl.1602.019 CLOC +ascl.1602.020 mbb_emcee +ascl.1602.021 COLAcode +ascl.1603.001 SILSS +ascl.1603.002 CORBITS +ascl.1603.003 VIP +ascl.1603.004 gPhoton +ascl.1603.005 EQUIB +ascl.1603.006 FAST-PT +ascl.1603.007 SMARTIES +ascl.1603.008 ROBAST +ascl.1603.009 Asfgrid +ascl.1603.010 ExoPriors +ascl.1603.011 DiskJockey +ascl.1603.012 tpipe +ascl.1603.013 PyGSM +ascl.1603.014 fibmeasure +ascl.1603.015 Dedalus +ascl.1603.016 ellc +ascl.1603.017 HIIexplorer +ascl.1603.018 PolRadTran +ascl.1604.001 OpenMHD +ascl.1604.002 libpolycomp +ascl.1604.003 LAMBDAR +ascl.1604.004 magicaxis +ascl.1604.005 Halotools +ascl.1604.006 2-DUST +ascl.1604.007 DNest3 +ascl.1604.008 The +ascl.1604.009 CCSNMultivar +ascl.1604.010 BEAMS +ascl.1604.011 FDPS +ascl.1604.012 TTVFaster +ascl.1605.001 MARZ +ascl.1605.002 cluster-lensing +ascl.1605.003 Shadowfax +ascl.1605.004 BACCHUS +ascl.1605.005 TMBIDL +ascl.1605.006 CAMELOT +ascl.1605.007 MUSCLE +ascl.1605.008 PDT +ascl.1605.009 ASTRiDE +ascl.1605.010 TRIPPy +ascl.1605.011 DISCO +ascl.1605.012 K2SC +ascl.1605.013 grtrans +ascl.1605.014 DUO +ascl.1605.015 SAND +ascl.1605.016 zeldovich-PLT +ascl.1605.017 Surprise +ascl.1606.001 SWOC +ascl.1606.002 PAL +ascl.1606.003 Cygrid +ascl.1606.004 HIBAYES +ascl.1606.005 PyMultiNest +ascl.1606.006 uvmcmcfit +ascl.1606.007 COMB +ascl.1606.008 s2 +ascl.1606.009 Companion-Finder +ascl.1606.010 SimpLens +ascl.1606.011 FDIPS +ascl.1606.012 KMDWARFPARAM +ascl.1606.013 Pulse +ascl.1606.014 Lmfit +ascl.1606.015 FLASK +ascl.1607.001 AGNfitter +ascl.1607.002 DICE +ascl.1607.003 Atlas2bgeneral +ascl.1607.004 Atlas3bgeneral +ascl.1607.005 Planetary3br +ascl.1607.006 Cholla +ascl.1607.007 JUDE +ascl.1607.008 BLS +ascl.1607.009 PICsar +ascl.1607.010 K2PS +ascl.1607.011 HfS +ascl.1607.012 ZASPE +ascl.1607.013 Kālī +ascl.1607.014 SOPIE +ascl.1607.015 RT1D +ascl.1607.016 astLib +ascl.1607.017 BoxRemap +ascl.1607.018 LZIFU +ascl.1607.019 HIDE +ascl.1607.020 SEEK +ascl.1608.001 Stingray +ascl.1608.002 pyXSIM +ascl.1608.003 appaloosa +ascl.1608.004 BART +ascl.1608.005 AstroVis +ascl.1608.006 Gemini +ascl.1608.007 BASE-9 +ascl.1608.008 Cuba +ascl.1608.009 FilFinder +ascl.1608.010 pvextractor +ascl.1608.011 PROFFIT +ascl.1608.012 OBERON +ascl.1608.013 DOLPHOT +ascl.1608.014 gevolution +ascl.1608.015 2DFFT +ascl.1608.016 NICIL +ascl.1608.017 21CMMC +ascl.1608.018 LORENE +ascl.1608.019 NEBULAR +ascl.1608.020 SPIDERz +ascl.1609.001 T-PHOT +ascl.1609.002 StarPy +ascl.1609.003 Kranc +ascl.1609.004 FISHPACK +ascl.1609.005 FISHPACK90 +ascl.1609.006 SCIMES +ascl.1609.007 Weighted +ascl.1609.008 GRASP +ascl.1609.009 NSCool +ascl.1609.010 CuBANz +ascl.1609.011 Photutils +ascl.1609.012 AIPY +ascl.1609.013 21cmSense +ascl.1609.014 Sky3D +ascl.1609.015 FIT3D +ascl.1609.016 PKDGRAV3 +ascl.1609.017 spectral-cube +ascl.1609.018 SIP +ascl.1609.019 SuperBoL +ascl.1609.020 Askaryan +ascl.1609.021 TIDEV +ascl.1609.022 PyPHER +ascl.1609.023 contbin +ascl.1609.024 AdaptiveBin +ascl.1609.025 PYESSENCE +ascl.1610.001 Piccard +ascl.1610.002 CERES +ascl.1610.003 DSDEPROJ +ascl.1610.004 MUSE-DRP +ascl.1610.005 GSGS +ascl.1610.006 C^3 +ascl.1610.007 gatspy +ascl.1610.008 cluster-in-a-box +ascl.1610.009 velbin +ascl.1610.010 BurnMan +ascl.1610.011 BXA +ascl.1610.012 Fourierdimredn +ascl.1610.013 MC^3 +ascl.1610.014 Freddi +ascl.1610.015 NuPyCEE +ascl.1610.016 PyMC3 +ascl.1611.001 UltraNest +ascl.1611.002 tf_unet +ascl.1611.003 MPDAF +ascl.1611.004 PRECESSION +ascl.1611.005 Exo-Transmit +ascl.1611.006 GalPot +ascl.1611.007 GRASP2K +ascl.1611.008 Transit +ascl.1611.009 RHOCUBE +ascl.1611.010 Kapteyn +ascl.1611.011 OXAF +ascl.1611.012 EarthShadow +ascl.1611.013 pyGMMis +ascl.1611.014 AIMS +ascl.1611.015 Pippi +ascl.1611.016 Carpet +ascl.1611.017 SNCosmo +ascl.1611.018 Icarus +ascl.1611.019 phase_space_cosmo_fisher +ascl.1611.020 CMCIRSED +ascl.1611.021 SlicerAstro +ascl.1611.022 proEQUIB +ascl.1612.001 Python-CPL +ascl.1612.002 LSDCat +ascl.1612.003 libprofit +ascl.1612.004 ProFit +ascl.1612.005 PyProfit +ascl.1612.006 flexCE +ascl.1612.007 dacapo_calibration +ascl.1612.008 PyORBIT +ascl.1612.009 CRETE +ascl.1612.010 Earthshine +ascl.1612.011 QSFit +ascl.1612.012 Meso-NH +ascl.1612.013 InversionKit +ascl.1612.014 AUTOSTRUCTURE +ascl.1612.015 Superplot +ascl.1612.016 CELib +ascl.1612.017 GAMER +ascl.1612.018 pylightcurve +ascl.1612.019 Trident +ascl.1612.020 Grackle +ascl.1612.021 BaTMAn +ascl.1612.022 REPS +ascl.1701.001 The +ascl.1701.002 Vizic +ascl.1701.003 Spectra +ascl.1701.004 CosmoSlik +ascl.1701.005 KAULAKYS +ascl.1701.006 MSWAVEF +ascl.1701.007 Forecaster +ascl.1701.008 GrayStar +ascl.1701.009 GrayStarServer +ascl.1701.010 kcorrect +ascl.1701.011 GWFrames +ascl.1701.012 SONG +ascl.1702.001 ORBE +ascl.1702.002 corner.py +ascl.1702.003 juwvid +ascl.1702.004 Validation +ascl.1702.005 JetCurry +ascl.1702.006 GalaxyGAN +ascl.1702.007 KEPLER +ascl.1702.008 HOURS +ascl.1702.009 stream-stream +ascl.1702.010 streamgap-pepper +ascl.1702.011 Chempy +ascl.1702.012 GRIM +ascl.1703.001 Larch +ascl.1703.002 COCOA +ascl.1703.003 Corrfunc +ascl.1703.004 PHOTOMETRYPIPELINE +ascl.1703.005 starsense_algorithms +ascl.1703.006 SNRPy +ascl.1703.007 sidm-nbody +ascl.1703.008 exorings +ascl.1703.009 PyMVPA +ascl.1703.010 TransitSOM +ascl.1703.011 QtClassify +ascl.1703.012 ICICLE +ascl.1703.013 Atmospheric +ascl.1703.014 MC-SPAM +ascl.1703.015 Charm +ascl.1704.001 pwkit +ascl.1704.002 UDAT +ascl.1704.003 Shwirl +ascl.1704.004 STATCONT +ascl.1704.005 VaST +ascl.1704.006 Quickclump +ascl.1704.007 PySM +ascl.1704.008 Transit +ascl.1704.009 Photo-z-SQL +ascl.1704.010 A-Track +ascl.1704.011 VULCAN +ascl.1704.012 XID+ +ascl.1704.013 Difference-smoothing +ascl.1704.014 Multipoles +ascl.1705.001 COSMOS +ascl.1705.002 DMATIS +ascl.1705.003 demc2 +ascl.1705.004 PCAT +ascl.1705.005 SPTCLASS +ascl.1705.006 f3 +ascl.1705.007 getimages +ascl.1705.008 MBProj2 +ascl.1705.009 LensPop +ascl.1705.010 PROFILER +ascl.1705.011 FDBinary +ascl.1705.012 fd3 +ascl.1705.013 PSOAP +ascl.1705.014 NPTFit +ascl.1705.015 WeirdestGalaxies +ascl.1705.016 astroABC +ascl.1705.017 supernovae +ascl.1706.001 Exotrending +ascl.1706.002 rtpipe +ascl.1706.003 DaMaSCUS +ascl.1706.004 Dark +ascl.1706.005 LMC +ascl.1706.006 GenPK +ascl.1706.007 encube +ascl.1706.008 the-wizz +ascl.1706.009 sick +ascl.1706.010 EXOSIMS +ascl.1706.011 PyPulse +ascl.1706.012 KeplerSolver +ascl.1707.001 HRM +ascl.1707.002 SASRST +ascl.1707.003 pyaneti +ascl.1707.004 CCFpams +ascl.1707.005 PyMOC +ascl.1707.006 Gala +ascl.1707.007 swot +ascl.1708.001 ATOOLS +ascl.1708.002 CINE +ascl.1708.003 CRISPRED +ascl.1708.004 Astroquery +ascl.1708.005 STools +ascl.1708.006 DISORT +ascl.1708.007 PBMC +ascl.1708.008 ALCHEMIC +ascl.1708.009 FIEStool +ascl.1708.010 BAGEMASS +ascl.1708.011 RM-CLEAN +ascl.1708.012 GANDALF +ascl.1708.013 GMM +ascl.1708.014 PACSman +ascl.1708.015 TWO-POP-PY +ascl.1708.016 pyLCSIM +ascl.1708.017 LCC +ascl.1708.018 CUTEX +ascl.1708.019 SINFONI +ascl.1708.020 4DAO +ascl.1708.021 KERTAP +ascl.1708.022 Naima +ascl.1708.023 ExoSOFT +ascl.1708.024 ComEst +ascl.1708.025 extinction-distances +ascl.1708.026 XDGMM +ascl.1708.027 empiriciSN +ascl.1708.028 ANA +ascl.1708.029 iSEDfit +ascl.1708.030 GAMBIT +ascl.1709.001 SPHYNX +ascl.1709.002 PHANTOM +ascl.1709.003 MeshLab +ascl.1709.004 DOOp +ascl.1709.005 DanIDL +ascl.1709.006 DCMDN +ascl.1709.007 MSSC +ascl.1709.008 celerite +ascl.1709.009 bmcmc +ascl.1709.010 MagIC +ascl.1709.011 FLaapLUC +ascl.1710.001 vysmaw +ascl.1710.002 rfpipe +ascl.1710.003 EXOFASTv2 +ascl.1710.004 SPIPS +ascl.1710.005 SkyNet +ascl.1710.006 MOSFiT +ascl.1710.007 FLAG +ascl.1710.008 Binary +ascl.1710.009 CppTransport +ascl.1710.010 PyTransport +ascl.1710.011 mTransport +ascl.1710.012 FSFE +ascl.1710.013 Ramses-GPU +ascl.1710.014 GBART +ascl.1710.015 GMCALab +ascl.1710.016 LGMCA +ascl.1710.017 ATLAS9 +ascl.1710.018 FITSFH +ascl.1710.019 GASOLINE +ascl.1710.020 PSPLINE +ascl.1710.021 OSIRIS +ascl.1710.022 galario +ascl.1710.023 LIMEPY +ascl.1710.024 pred_loggs +ascl.1711.001 SpcAudace +ascl.1711.002 inhomog +ascl.1711.003 FTbg +ascl.1711.004 BayesVP +ascl.1711.005 correlcalc +ascl.1711.006 RGW +ascl.1711.007 galstep +ascl.1711.008 clustep +ascl.1711.009 Lightning +ascl.1711.010 galstreams +ascl.1711.011 galkin +ascl.1711.012 megaman +ascl.1711.013 HO-CHUNK +ascl.1711.014 Gammapy +ascl.1711.015 rac-2d +ascl.1711.016 Thindisk +ascl.1711.017 FATS +ascl.1711.018 LExTeS +ascl.1711.019 SPIDERMAN +ascl.1711.020 MARXS +ascl.1711.021 Bifrost +ascl.1711.022 HBT +ascl.1711.023 HBT+ +ascl.1711.024 NOD3 +ascl.1712.001 KDUtils +ascl.1712.002 MPI_XSTAR +ascl.1712.003 Py-SPHViewer +ascl.1712.004 Bitshuffle +ascl.1712.005 draco +ascl.1712.006 Nyx +ascl.1712.007 SFoF +ascl.1712.008 CosApps +ascl.1712.009 RODRIGUES +ascl.1712.010 Flux +ascl.1712.011 FBEYE +ascl.1712.012 MadDM +ascl.1712.013 photodynam +ascl.1712.014 QATS +ascl.1712.015 SgrbWorldModel +ascl.1712.016 LgrbWorldModel +ascl.1801.001 BANYAN_Sigma +ascl.1801.002 iWander +ascl.1801.003 Stan +ascl.1801.004 hh0 +ascl.1801.005 InitialConditions +ascl.1801.006 DecouplingModes +ascl.1801.007 cambmag +ascl.1801.008 BOND +ascl.1801.009 Gnuastro +ascl.1801.010 DICE/ColDICE +ascl.1801.011 GABE +ascl.1801.012 RadVel +ascl.1802.001 FAC +ascl.1802.002 venice +ascl.1802.003 CMacIonize +ascl.1802.004 ARTIP +ascl.1802.005 Verne +ascl.1802.006 VISIBLE +ascl.1802.007 HiGal_SED_Fitter +ascl.1802.008 AntiparticleDM +ascl.1802.009 astroplan +ascl.1802.010 Glimpse +ascl.1802.011 runDM +ascl.1802.012 PyOSE +ascl.1802.013 BHMcalc +ascl.1802.014 collapse +ascl.1802.015 mrpy +ascl.1802.016 eqpair +ascl.1803.001 DaMaSCUS-CRUST +ascl.1803.002 CIFOG +ascl.1803.003 scarlet +ascl.1803.004 nanopipe +ascl.1803.005 Kadenza +ascl.1803.006 MulensModel +ascl.1803.007 IMAGINE +ascl.1803.008 FAST +ascl.1803.009 SETI-EC +ascl.1803.010 3D-PDR +ascl.1803.011 ExtLaw_H18 +ascl.1803.012 LWPC +ascl.1803.013 optBINS +ascl.1803.014 ExoCross +ascl.1803.015 RAPTOR +ascl.1804.001 ASERA +ascl.1804.002 ipole +ascl.1804.003 DPPP +ascl.1804.004 AstroCV +ascl.1804.005 DaCHS +ascl.1804.006 ProFound +ascl.1804.007 chroma +ascl.1804.008 EGG +ascl.1804.009 orbit-estimation +ascl.1804.010 SMERFS +ascl.1804.011 DESCQA +ascl.1804.012 Lenstronomy +ascl.1804.013 CAT-PUMA +ascl.1804.014 IMNN +ascl.1804.015 NR-code +ascl.1804.016 surrkick +ascl.1804.017 APPHi +ascl.1804.018 3DView +ascl.1804.019 ViSBARD +ascl.1804.020 Agatha +ascl.1804.021 allantools +ascl.1804.022 UniDAM +ascl.1804.023 LFsGRB +ascl.1804.024 LFlGRB +ascl.1804.025 FastChem +ascl.1804.026 KSTAT +ascl.1805.001 powerbox +ascl.1805.002 dftools +ascl.1805.003 lcps +ascl.1805.004 EARL +ascl.1805.005 3DCORE +ascl.1805.006 StePS +ascl.1805.007 exocartographer +ascl.1805.008 AGAMA +ascl.1805.009 STARBLADE +ascl.1805.010 StarSmasher +ascl.1805.011 PoMiN +ascl.1805.012 Arcmancer +ascl.1805.013 grid-model +ascl.1805.014 OSS +ascl.1805.015 BinMag +ascl.1805.016 xspec_emcee +ascl.1805.017 SNSEDextend +ascl.1805.018 CUBE +ascl.1805.019 HENDRICS +ascl.1805.020 SWIFT +ascl.1805.021 PampelMuse +ascl.1805.022 BCcodes +ascl.1805.023 PROM7 +ascl.1805.024 ASTROPOP +ascl.1805.025 GLACiAR +ascl.1805.026 PySE +ascl.1805.027 MontePython +ascl.1805.028 SP_Ace +ascl.1805.029 DeepMoon +ascl.1805.030 PyCBC +ascl.1805.031 CubiCal +ascl.1805.032 PyCCF +ascl.1806.001 feets +ascl.1806.002 BHDD +ascl.1806.003 pyZELDA +ascl.1806.004 WiseView +ascl.1806.005 Indri +ascl.1806.006 QE +ascl.1806.007 PyAMOR +ascl.1806.008 gsf +ascl.1806.009 GLASS +ascl.1806.010 SpaghettiLens +ascl.1806.011 P2DFFT +ascl.1806.012 WDEC +ascl.1806.013 SpS +ascl.1806.014 pile-up +ascl.1806.015 DirectDM-mma +ascl.1806.016 DirectDM-py +ascl.1806.017 RadFil +ascl.1806.018 OMEGA +ascl.1806.019 SYGMA +ascl.1806.020 exoinformatics +ascl.1806.021 LASR +ascl.1806.022 Keras +ascl.1806.023 Spheral++ +ascl.1806.024 RMextract +ascl.1806.025 BRATS +ascl.1806.026 BWED +ascl.1806.027 fcmaker +ascl.1806.028 PyMUSE +ascl.1806.029 EXO-NAILER +ascl.1806.030 foxi +ascl.1806.031 ASPIC +ascl.1806.032 pwv_kpno +ascl.1807.001 POLARIS +ascl.1807.002 Warpfield +ascl.1807.003 PyAutoLens +ascl.1807.004 ARKCoS +ascl.1807.005 MAPPINGS +ascl.1807.006 pyqz +ascl.1807.007 HII-CHI-mistry +ascl.1807.008 HII-CHI-mistry_UV +ascl.1807.009 HELIOS +ascl.1807.010 THOR +ascl.1807.011 nfield +ascl.1807.012 AngPow +ascl.1807.013 CLASSgal +ascl.1807.014 SPEGID +ascl.1807.015 CAESAR +ascl.1807.016 MIDLL +ascl.1807.017 ZBARYCORR +ascl.1807.018 BARYCORR +ascl.1807.019 GLS +ascl.1807.020 wdmerger +ascl.1807.021 POWER +ascl.1807.022 PUMA +ascl.1807.023 DAMOCLES +ascl.1807.024 TBI +ascl.1807.025 NRPy+ +ascl.1807.026 SENR +ascl.1807.027 kplr +ascl.1807.028 ktransit +ascl.1807.029 EVEREST +ascl.1807.030 ASP +ascl.1807.031 xGDS +ascl.1807.032 SSMM +ascl.1807.033 LSC +ascl.1808.001 Barycorrpy +ascl.1808.002 rsigma +ascl.1808.003 CPF +ascl.1808.004 ImPlaneIA +ascl.1808.005 hfof +ascl.1808.006 Fips +ascl.1808.007 2DSF +ascl.1808.008 PyMieDap +ascl.1808.009 py-sdm +ascl.1808.010 hi_class +ascl.1808.011 Robbie +ascl.1809.001 LEMON +ascl.1809.002 PCCDPACK +ascl.1809.003 PASTA +ascl.1809.004 VBBINARYLENSING +ascl.1809.005 perfectns +ascl.1809.006 spops +ascl.1809.007 surfinBH +ascl.1809.008 PyQSOFit +ascl.1809.009 NEBULA +ascl.1809.010 Isca +ascl.1809.011 qp +ascl.1809.012 nestcheck +ascl.1809.013 dynesty +ascl.1809.014 stepped_luneburg +ascl.1809.015 MrMoose +ascl.1809.016 RequiSim +ascl.1810.001 galfast +ascl.1810.002 Barcode +ascl.1810.003 JETGET +ascl.1810.004 VaeX +ascl.1810.005 STARRY +ascl.1810.006 Echelle++ +ascl.1810.007 ARTES +ascl.1810.008 pycraf +ascl.1810.009 PyUltraLight +ascl.1810.010 ODTBX +ascl.1810.011 Eclairs +ascl.1810.012 GiRaFFE +ascl.1810.013 catsHTM +ascl.1810.014 STiC +ascl.1810.015 cuFFS +ascl.1810.016 XCLASS +ascl.1810.017 SOPHISM +ascl.1810.018 APPLawD +ascl.1810.019 MIEX +ascl.1810.020 DDS +ascl.1810.021 Firefly +ascl.1811.001 synphot +ascl.1811.002 DRAGONS +ascl.1811.003 binaryBHexp +ascl.1811.004 SEP +ascl.1811.005 Shark +ascl.1811.006 QuickSip +ascl.1811.007 Flame +ascl.1811.008 Pylians +ascl.1811.009 RLOS +ascl.1811.010 MillCgs +ascl.1811.011 SIM5 +ascl.1811.012 muLAn +ascl.1811.013 DiskSim +ascl.1811.014 pygad +ascl.1811.015 radon +ascl.1811.016 VoigtFit +ascl.1811.017 Vplanet +ascl.1811.018 gdr2_completeness +ascl.1811.019 PENTACLE +ascl.1811.020 PulsarHunter +ascl.1812.001 WISP +ascl.1812.002 GLADIS +ascl.1812.003 PFANT +ascl.1812.004 aesop +ascl.1812.005 SPAMCART +ascl.1812.006 Fermipy +ascl.1812.007 ExoGAN +ascl.1812.008 easyaccess +ascl.1812.009 galclassify +ascl.1812.010 PynPoint +ascl.1812.011 GRAND-HOD +ascl.1812.012 distlink +ascl.1812.013 Lightkurve +ascl.1812.014 GENGA +ascl.1812.015 AUTOSPEC +ascl.1812.016 Juliet +ascl.1812.017 psrqpy +ascl.1812.018 OctApps +ascl.1901.001 cFE +ascl.1901.002 OCFit +ascl.1901.003 CCL +ascl.1901.004 unwise_psf +ascl.1901.005 Galaxia_wrap +ascl.1901.006 ssos +ascl.1901.007 Photon +ascl.1901.008 SEDobs +ascl.1901.009 bettermoments +ascl.1901.010 eddy +ascl.1901.011 Bilby +ascl.1901.012 stellarWakes +ascl.1902.001 SNTD +ascl.1902.002 LPNN +ascl.1902.003 PyMF +ascl.1902.004 GraviDy +ascl.1902.005 LiveData +ascl.1902.006 RPFITS +ascl.1902.007 PINT +ascl.1902.008 Radynversion +ascl.1902.009 ExPRES +ascl.1902.010 dyPolyChord +ascl.1902.011 SpecViz +ascl.1902.012 Specutils +ascl.1903.001 BEAGLE +ascl.1903.002 SIXTE +ascl.1903.003 allesfitter +ascl.1903.004 brutifus +ascl.1903.005 Galmag +ascl.1903.006 SimSpin +ascl.1903.007 ICSF +ascl.1903.008 NIFTy5 +ascl.1903.009 PRF +ascl.1903.010 GalIMF +ascl.1903.011 AsPy +ascl.1903.012 DAVE +ascl.1903.013 NFWdist +ascl.1903.014 PLATON +ascl.1903.015 SPICE +ascl.1903.016 SpiceyPy +ascl.1903.017 HelioPy +ascl.1904.001 sxrbg +ascl.1904.002 GALAXY +ascl.1904.003 CGS +ascl.1904.004 ehtim +ascl.1904.005 SMILI +ascl.1904.006 CDAWeb +ascl.1904.007 AutoBayes +ascl.1904.008 repack +ascl.1904.009 deproject +ascl.1904.010 CLEAR +ascl.1904.011 FortesFit +ascl.1904.012 CausticFrog +ascl.1904.013 EightBitTransit +ascl.1904.014 rate +ascl.1904.015 SBGAT +ascl.1904.016 simuTrans +ascl.1904.017 dfitspy +ascl.1904.018 Specstack +ascl.1904.019 Vevacious +ascl.1904.020 SARAH +ascl.1904.021 TP2VIS +ascl.1904.022 eleanor +ascl.1904.023 digest2 +ascl.1904.024 OoT +ascl.1904.025 Properimage +ascl.1904.026 pyRSD +ascl.1904.027 nbodykit +ascl.1904.028 covdisc +ascl.1904.029 JVarStar +ascl.1904.030 nudec_BSM +ascl.1905.001 Grizli +ascl.1905.002 Py4CAtS +ascl.1905.003 evolstate +ascl.1905.004 Binospec +ascl.1905.005 MMIRS-DRP +ascl.1905.006 beamModelTester +ascl.1905.007 Astrocut +ascl.1905.008 Q3C +ascl.1905.009 HAOS-DIPER +ascl.1905.010 FastPM +ascl.1905.011 Fermitools +ascl.1905.012 Fitsverify +ascl.1905.013 SPARK +ascl.1905.014 Bandmerge +ascl.1905.015 rPICARD +ascl.1905.016 LensCNN +ascl.1905.017 LensQuEst +ascl.1905.018 THALASSA +ascl.1905.019 PICASO +ascl.1905.020 NAPLES +ascl.1905.021 ODEPACK +ascl.1905.022 ClusterPyXT +ascl.1905.023 CASI-2D +ascl.1905.024 SICON +ascl.1905.025 Prospector +ascl.1905.026 SEDPY +ascl.1905.027 PyPDR +ascl.1906.001 Astroalign +ascl.1906.002 Blimpy +ascl.1906.003 FREDDA +ascl.1906.004 The +ascl.1906.005 Kalman +ascl.1906.006 turboSETI +ascl.1906.007 limb-darkening +ascl.1906.008 T-RECS +ascl.1906.009 PyMORESANE +ascl.1906.010 PyA +ascl.1906.011 Lizard +ascl.1906.012 Morpheus +ascl.1906.013 MORPHEUS +ascl.1906.014 GPUVMEM +ascl.1906.015 OIT +ascl.1906.016 PandExo +ascl.1906.017 mcfit +ascl.1906.018 MEGAlib +ascl.1906.019 PlasmaPy +ascl.1906.020 LIZARD +ascl.1906.021 centerRadon +ascl.1906.022 pyLIMA +ascl.1907.001 schwimmbad +ascl.1907.002 healvis +ascl.1907.003 pyuvdata +ascl.1907.004 pyGTC +ascl.1907.005 SARA-PPD +ascl.1907.006 POCS +ascl.1907.007 SPAM +ascl.1907.008 Dewarp +ascl.1907.009 Plonk +ascl.1907.010 OMNICAL +ascl.1907.011 beamconv +ascl.1907.012 molly +ascl.1907.013 RVSpecFit +ascl.1907.014 sbpy +ascl.1907.015 TurbuStat +ascl.1907.016 astrodendro +ascl.1907.017 ZChecker +ascl.1907.018 StePar +ascl.1907.019 GaussPy +ascl.1907.020 GaussPy+ +ascl.1907.021 PRISM +ascl.1907.022 CMDPT +ascl.1907.023 REVOLVER +ascl.1907.024 Skyfield +ascl.1907.025 GIST +ascl.1907.026 MCRGNet +ascl.1907.027 intensitypower +ascl.1907.028 ROHSA +ascl.1907.029 XDF-GAN +ascl.1907.030 Wōtan +ascl.1907.031 MGB +ascl.1907.032 Astro-SCRAPPY +ascl.1908.001 QAC +ascl.1908.002 Molsoft +ascl.1908.003 ActSNClass +ascl.1908.004 Gramsci +ascl.1908.005 dips +ascl.1908.006 GBKFIT +ascl.1908.007 MosfireDRP +ascl.1908.008 TRISTAN-MP +ascl.1908.009 PyRADS +ascl.1908.010 SNAPDRAGONS +ascl.1908.011 NuRadioMC +ascl.1908.012 oscode +ascl.1908.013 BEAST +ascl.1908.014 Vlasiator +ascl.1908.015 Analysator +ascl.1908.016 DustCharge +ascl.1908.017 JPLephem +ascl.1908.018 EBAI +ascl.1908.019 MAESTROeX +ascl.1908.020 QLF +ascl.1908.021 bias_emulator +ascl.1908.022 YMW16 +ascl.1908.023 FIRST +ascl.1908.024 PYSAT +ascl.1908.025 FastCSWT +ascl.1909.001 Auto-multithresh +ascl.1909.002 MultiColorFits +ascl.1909.003 SecularMultiple +ascl.1909.004 TPI +ascl.1909.005 HADES +ascl.1909.006 ChempyMulti +ascl.1909.007 EBHLIGHT +ascl.1909.008 RascalC +ascl.1909.009 CLOVER +ascl.1909.010 AREPO +ascl.1909.011 WVTICs +ascl.1909.012 HISS +ascl.1909.013 EPOS +ascl.1909.014 fgivenx +ascl.1910.001 PINK +ascl.1910.002 PreProFit +ascl.1910.003 a3cosmos-gas-evolution +ascl.1910.004 DM_phase +ascl.1910.005 exoplanet +ascl.1910.006 EMERGE +ascl.1910.007 TLS +ascl.1910.008 ECLIPS3D +ascl.1910.009 orbitize +ascl.1910.010 PEXO +ascl.1910.011 LEO-Py +ascl.1910.012 AOTOOLS +ascl.1910.013 E0102-VR +ascl.1910.014 ANNz2 +ascl.1910.015 MarsLux +ascl.1910.016 MiSTree +ascl.1910.017 ChainConsumer +ascl.1910.018 GetDist +ascl.1910.019 Cobaya +ascl.1910.020 OCD +ascl.1910.021 AOtools +ascl.1910.022 qnm diff --git a/ascl-ads-comparison/ascl_codes b/ascl-ads-comparison/ascl_codes new file mode 100644 index 0000000..680dfe0 --- /dev/null +++ b/ascl-ads-comparison/ascl_codes @@ -0,0 +1,2067 @@ +ascl.9903.001 +ascl.9904.001 +ascl.9905.001 +ascl.9905.002 +ascl.9906.001 +ascl.9906.002 +ascl.9909.001 +ascl.9909.002 +ascl.9909.003 +ascl.9909.004 +ascl.9909.005 +ascl.9910.001 +ascl.9910.002 +ascl.9910.003 +ascl.9910.004 +ascl.9910.005 +ascl.9910.006 +ascl.9910.007 +ascl.9910.008 +ascl.9910.009 +ascl.9911.001 +ascl.9911.002 +ascl.9911.003 +ascl.9911.004 +ascl.9912.001 +ascl.9912.002 +ascl.9912.003 +ascl.0003.001 +ascl.0003.002 +ascl.0008.001 +ascl.0008.002 +ascl.0011.001 +ascl.0101.001 +ascl.0104.001 +ascl.0104.002 +ascl.0202.001 +ascl.1004.001 +ascl.1007.001 +ascl.1007.002 +ascl.1007.003 +ascl.1007.004 +ascl.1007.005 +ascl.1007.006 +ascl.1010.001 +ascl.1010.002 +ascl.1010.003 +ascl.1010.004 +ascl.1010.005 +ascl.1010.006 +ascl.1010.007 +ascl.1010.008 +ascl.1010.009 +ascl.1010.010 +ascl.1010.011 +ascl.1010.012 +ascl.1010.013 +ascl.1010.014 +ascl.1010.015 +ascl.1010.016 +ascl.1010.017 +ascl.1010.018 +ascl.1010.019 +ascl.1010.020 +ascl.1010.021 +ascl.1010.022 +ascl.1010.023 +ascl.1010.024 +ascl.1010.025 +ascl.1010.026 +ascl.1010.027 +ascl.1010.028 +ascl.1010.029 +ascl.1010.030 +ascl.1010.031 +ascl.1010.032 +ascl.1010.033 +ascl.1010.034 +ascl.1010.035 +ascl.1010.036 +ascl.1010.037 +ascl.1010.038 +ascl.1010.039 +ascl.1010.040 +ascl.1010.041 +ascl.1010.042 +ascl.1010.043 +ascl.1010.044 +ascl.1010.045 +ascl.1010.046 +ascl.1010.047 +ascl.1010.048 +ascl.1010.049 +ascl.1010.050 +ascl.1010.051 +ascl.1010.052 +ascl.1010.053 +ascl.1010.054 +ascl.1010.055 +ascl.1010.056 +ascl.1010.057 +ascl.1010.058 +ascl.1010.059 +ascl.1010.060 +ascl.1010.061 +ascl.1010.062 +ascl.1010.063 +ascl.1010.064 +ascl.1010.065 +ascl.1010.066 +ascl.1010.067 +ascl.1010.068 +ascl.1010.069 +ascl.1010.070 +ascl.1010.071 +ascl.1010.072 +ascl.1010.073 +ascl.1010.074 +ascl.1010.075 +ascl.1010.076 +ascl.1010.077 +ascl.1010.078 +ascl.1010.079 +ascl.1010.080 +ascl.1010.081 +ascl.1010.082 +ascl.1010.083 +ascl.1010.084 +ascl.1010.085 +ascl.1011.001 +ascl.1011.002 +ascl.1011.003 +ascl.1011.004 +ascl.1011.005 +ascl.1011.006 +ascl.1011.007 +ascl.1011.008 +ascl.1011.009 +ascl.1011.010 +ascl.1011.011 +ascl.1011.012 +ascl.1011.013 +ascl.1011.014 +ascl.1011.015 +ascl.1011.016 +ascl.1011.017 +ascl.1011.018 +ascl.1011.019 +ascl.1011.020 +ascl.1011.021 +ascl.1011.022 +ascl.1011.023 +ascl.1101.001 +ascl.1101.002 +ascl.1101.003 +ascl.1101.004 +ascl.1101.005 +ascl.1101.006 +ascl.1101.007 +ascl.1101.008 +ascl.1101.009 +ascl.1101.010 +ascl.1102.001 +ascl.1102.002 +ascl.1102.003 +ascl.1102.004 +ascl.1102.005 +ascl.1102.006 +ascl.1102.007 +ascl.1102.008 +ascl.1102.009 +ascl.1102.010 +ascl.1102.011 +ascl.1102.012 +ascl.1102.013 +ascl.1102.014 +ascl.1102.015 +ascl.1102.016 +ascl.1102.017 +ascl.1102.018 +ascl.1102.019 +ascl.1102.020 +ascl.1102.021 +ascl.1102.022 +ascl.1102.023 +ascl.1102.024 +ascl.1102.025 +ascl.1102.026 +ascl.1102.027 +ascl.1102.028 +ascl.1103.001 +ascl.1103.002 +ascl.1103.003 +ascl.1103.004 +ascl.1103.005 +ascl.1103.006 +ascl.1103.007 +ascl.1103.008 +ascl.1103.009 +ascl.1103.010 +ascl.1103.011 +ascl.1103.012 +ascl.1103.014 +ascl.1103.015 +ascl.1104.001 +ascl.1104.002 +ascl.1104.003 +ascl.1104.004 +ascl.1104.005 +ascl.1104.006 +ascl.1104.007 +ascl.1104.008 +ascl.1104.009 +ascl.1104.010 +ascl.1104.011 +ascl.1104.012 +ascl.1104.013 +ascl.1104.014 +ascl.1105.001 +ascl.1105.002 +ascl.1105.003 +ascl.1105.004 +ascl.1105.005 +ascl.1105.006 +ascl.1105.007 +ascl.1105.008 +ascl.1105.009 +ascl.1105.010 +ascl.1105.011 +ascl.1105.012 +ascl.1105.013 +ascl.1105.014 +ascl.1106.001 +ascl.1106.002 +ascl.1106.003 +ascl.1106.004 +ascl.1106.005 +ascl.1106.006 +ascl.1106.007 +ascl.1106.008 +ascl.1106.009 +ascl.1106.010 +ascl.1106.011 +ascl.1106.012 +ascl.1106.013 +ascl.1106.014 +ascl.1106.015 +ascl.1106.016 +ascl.1106.017 +ascl.1106.018 +ascl.1106.019 +ascl.1106.020 +ascl.1106.021 +ascl.1106.022 +ascl.1106.023 +ascl.1106.024 +ascl.1106.025 +ascl.1106.026 +ascl.1107.001 +ascl.1107.002 +ascl.1107.003 +ascl.1107.004 +ascl.1107.005 +ascl.1107.006 +ascl.1107.007 +ascl.1107.008 +ascl.1107.009 +ascl.1107.010 +ascl.1107.011 +ascl.1107.012 +ascl.1107.013 +ascl.1107.014 +ascl.1107.015 +ascl.1107.016 +ascl.1107.017 +ascl.1107.018 +ascl.1107.019 +ascl.1108.001 +ascl.1108.002 +ascl.1108.003 +ascl.1108.004 +ascl.1108.005 +ascl.1108.006 +ascl.1108.007 +ascl.1108.008 +ascl.1108.009 +ascl.1108.010 +ascl.1108.011 +ascl.1108.012 +ascl.1108.013 +ascl.1108.014 +ascl.1108.015 +ascl.1108.016 +ascl.1108.017 +ascl.1108.018 +ascl.1108.019 +ascl.1109.001 +ascl.1109.002 +ascl.1109.003 +ascl.1109.004 +ascl.1109.005 +ascl.1109.006 +ascl.1109.007 +ascl.1109.008 +ascl.1109.009 +ascl.1109.010 +ascl.1109.011 +ascl.1109.012 +ascl.1109.013 +ascl.1109.014 +ascl.1109.015 +ascl.1109.016 +ascl.1109.017 +ascl.1109.018 +ascl.1109.019 +ascl.1109.020 +ascl.1109.021 +ascl.1109.022 +ascl.1109.023 +ascl.1109.024 +ascl.1110.001 +ascl.1110.002 +ascl.1110.003 +ascl.1110.004 +ascl.1110.005 +ascl.1110.006 +ascl.1110.007 +ascl.1110.008 +ascl.1110.009 +ascl.1110.010 +ascl.1110.011 +ascl.1110.012 +ascl.1110.013 +ascl.1110.014 +ascl.1110.015 +ascl.1110.016 +ascl.1110.017 +ascl.1110.018 +ascl.1110.019 +ascl.1110.020 +ascl.1110.021 +ascl.1110.022 +ascl.1110.023 +ascl.1110.024 +ascl.1110.025 +ascl.1111.001 +ascl.1111.002 +ascl.1111.003 +ascl.1111.004 +ascl.1111.005 +ascl.1111.006 +ascl.1111.007 +ascl.1111.008 +ascl.1111.009 +ascl.1111.010 +ascl.1111.011 +ascl.1111.012 +ascl.1111.013 +ascl.1111.014 +ascl.1111.015 +ascl.1112.001 +ascl.1112.002 +ascl.1112.003 +ascl.1112.004 +ascl.1112.005 +ascl.1112.006 +ascl.1112.007 +ascl.1112.008 +ascl.1112.009 +ascl.1112.010 +ascl.1112.011 +ascl.1112.012 +ascl.1112.013 +ascl.1112.014 +ascl.1112.015 +ascl.1112.016 +ascl.1112.017 +ascl.1112.018 +ascl.1112.019 +ascl.1201.001 +ascl.1201.002 +ascl.1201.003 +ascl.1201.004 +ascl.1201.005 +ascl.1201.006 +ascl.1201.007 +ascl.1201.008 +ascl.1201.009 +ascl.1201.010 +ascl.1201.011 +ascl.1201.012 +ascl.1201.013 +ascl.1201.014 +ascl.1201.015 +ascl.1201.016 +ascl.1201.017 +ascl.1202.001 +ascl.1202.002 +ascl.1202.003 +ascl.1202.004 +ascl.1202.005 +ascl.1202.006 +ascl.1202.007 +ascl.1202.008 +ascl.1202.009 +ascl.1202.010 +ascl.1202.011 +ascl.1202.012 +ascl.1202.013 +ascl.1202.014 +ascl.1202.015 +ascl.1203.001 +ascl.1203.002 +ascl.1203.003 +ascl.1203.004 +ascl.1203.005 +ascl.1203.006 +ascl.1203.007 +ascl.1203.008 +ascl.1203.009 +ascl.1203.010 +ascl.1203.011 +ascl.1203.012 +ascl.1203.013 +ascl.1204.001 +ascl.1204.002 +ascl.1204.003 +ascl.1204.004 +ascl.1204.005 +ascl.1204.006 +ascl.1204.007 +ascl.1204.008 +ascl.1204.009 +ascl.1204.010 +ascl.1204.011 +ascl.1204.012 +ascl.1204.013 +ascl.1204.014 +ascl.1204.015 +ascl.1204.016 +ascl.1204.017 +ascl.1205.001 +ascl.1205.002 +ascl.1205.003 +ascl.1205.004 +ascl.1205.005 +ascl.1205.006 +ascl.1205.007 +ascl.1205.008 +ascl.1205.009 +ascl.1205.010 +ascl.1205.011 +ascl.1206.001 +ascl.1206.002 +ascl.1206.003 +ascl.1206.004 +ascl.1206.005 +ascl.1206.006 +ascl.1206.007 +ascl.1206.008 +ascl.1206.009 +ascl.1206.010 +ascl.1206.011 +ascl.1206.012 +ascl.1206.013 +ascl.1206.014 +ascl.1207.001 +ascl.1207.002 +ascl.1207.003 +ascl.1207.004 +ascl.1207.005 +ascl.1207.006 +ascl.1207.007 +ascl.1207.008 +ascl.1207.009 +ascl.1207.010 +ascl.1207.011 +ascl.1207.012 +ascl.1207.013 +ascl.1207.014 +ascl.1208.001 +ascl.1208.002 +ascl.1208.003 +ascl.1208.004 +ascl.1208.005 +ascl.1208.006 +ascl.1208.007 +ascl.1208.008 +ascl.1208.009 +ascl.1208.010 +ascl.1208.011 +ascl.1208.012 +ascl.1208.013 +ascl.1208.014 +ascl.1208.015 +ascl.1208.016 +ascl.1208.017 +ascl.1208.018 +ascl.1208.019 +ascl.1208.020 +ascl.1208.021 +ascl.1209.001 +ascl.1209.002 +ascl.1209.003 +ascl.1209.004 +ascl.1209.005 +ascl.1209.006 +ascl.1209.007 +ascl.1209.008 +ascl.1209.009 +ascl.1209.010 +ascl.1209.011 +ascl.1209.012 +ascl.1209.013 +ascl.1209.014 +ascl.1209.015 +ascl.1210.001 +ascl.1210.002 +ascl.1210.003 +ascl.1210.004 +ascl.1210.005 +ascl.1210.006 +ascl.1210.007 +ascl.1210.008 +ascl.1210.009 +ascl.1210.010 +ascl.1210.011 +ascl.1210.012 +ascl.1210.013 +ascl.1210.014 +ascl.1210.015 +ascl.1210.016 +ascl.1210.017 +ascl.1210.018 +ascl.1210.019 +ascl.1210.020 +ascl.1210.021 +ascl.1210.022 +ascl.1210.023 +ascl.1210.024 +ascl.1210.025 +ascl.1210.026 +ascl.1210.027 +ascl.1210.028 +ascl.1210.029 +ascl.1210.030 +ascl.1210.031 +ascl.1211.001 +ascl.1211.002 +ascl.1211.003 +ascl.1211.004 +ascl.1211.005 +ascl.1211.006 +ascl.1212.001 +ascl.1212.002 +ascl.1212.003 +ascl.1212.004 +ascl.1212.005 +ascl.1212.006 +ascl.1212.007 +ascl.1212.008 +ascl.1212.009 +ascl.1212.010 +ascl.1212.011 +ascl.1212.012 +ascl.1212.013 +ascl.1212.014 +ascl.1212.015 +ascl.1301.001 +ascl.1302.001 +ascl.1302.002 +ascl.1302.003 +ascl.1302.004 +ascl.1302.005 +ascl.1302.006 +ascl.1302.007 +ascl.1302.008 +ascl.1302.009 +ascl.1302.010 +ascl.1302.011 +ascl.1302.012 +ascl.1302.013 +ascl.1302.014 +ascl.1302.015 +ascl.1302.016 +ascl.1302.017 +ascl.1303.001 +ascl.1303.002 +ascl.1303.003 +ascl.1303.004 +ascl.1303.005 +ascl.1303.006 +ascl.1303.007 +ascl.1303.008 +ascl.1303.009 +ascl.1303.010 +ascl.1303.011 +ascl.1303.012 +ascl.1303.013 +ascl.1303.014 +ascl.1303.015 +ascl.1303.016 +ascl.1303.017 +ascl.1303.018 +ascl.1303.019 +ascl.1303.020 +ascl.1303.021 +ascl.1303.022 +ascl.1303.023 +ascl.1303.024 +ascl.1303.025 +ascl.1303.026 +ascl.1303.027 +ascl.1303.028 +ascl.1303.029 +ascl.1303.030 +ascl.1304.001 +ascl.1304.002 +ascl.1304.003 +ascl.1304.004 +ascl.1304.005 +ascl.1304.006 +ascl.1304.007 +ascl.1304.008 +ascl.1304.009 +ascl.1304.011 +ascl.1304.012 +ascl.1304.013 +ascl.1304.014 +ascl.1304.015 +ascl.1304.016 +ascl.1304.017 +ascl.1304.018 +ascl.1304.019 +ascl.1304.020 +ascl.1304.021 +ascl.1304.022 +ascl.1305.001 +ascl.1305.002 +ascl.1305.003 +ascl.1305.004 +ascl.1305.005 +ascl.1305.006 +ascl.1305.007 +ascl.1305.008 +ascl.1305.009 +ascl.1305.010 +ascl.1305.011 +ascl.1305.012 +ascl.1305.013 +ascl.1305.014 +ascl.1305.015 +ascl.1306.001 +ascl.1306.002 +ascl.1306.003 +ascl.1306.004 +ascl.1306.005 +ascl.1306.006 +ascl.1306.007 +ascl.1306.008 +ascl.1306.009 +ascl.1306.010 +ascl.1306.011 +ascl.1306.012 +ascl.1306.013 +ascl.1306.014 +ascl.1306.015 +ascl.1306.016 +ascl.1307.001 +ascl.1307.002 +ascl.1307.003 +ascl.1307.004 +ascl.1307.005 +ascl.1307.006 +ascl.1307.007 +ascl.1307.008 +ascl.1307.009 +ascl.1307.010 +ascl.1307.011 +ascl.1307.012 +ascl.1307.013 +ascl.1307.014 +ascl.1307.015 +ascl.1307.016 +ascl.1307.017 +ascl.1307.018 +ascl.1307.019 +ascl.1307.020 +ascl.1308.001 +ascl.1308.002 +ascl.1308.003 +ascl.1308.004 +ascl.1308.005 +ascl.1308.006 +ascl.1308.007 +ascl.1308.008 +ascl.1308.009 +ascl.1308.010 +ascl.1308.011 +ascl.1308.012 +ascl.1308.013 +ascl.1308.014 +ascl.1308.015 +ascl.1308.016 +ascl.1308.017 +ascl.1308.018 +ascl.1309.001 +ascl.1309.002 +ascl.1309.003 +ascl.1309.004 +ascl.1309.005 +ascl.1309.006 +ascl.1309.007 +ascl.1309.008 +ascl.1310.001 +ascl.1310.002 +ascl.1310.003 +ascl.1310.004 +ascl.1310.005 +ascl.1310.006 +ascl.1310.007 +ascl.1310.008 +ascl.1311.001 +ascl.1311.002 +ascl.1311.003 +ascl.1311.004 +ascl.1311.005 +ascl.1311.006 +ascl.1311.007 +ascl.1311.008 +ascl.1311.009 +ascl.1311.010 +ascl.1311.011 +ascl.1311.012 +ascl.1312.001 +ascl.1312.002 +ascl.1312.003 +ascl.1312.004 +ascl.1312.005 +ascl.1312.006 +ascl.1312.007 +ascl.1312.008 +ascl.1312.009 +ascl.1312.010 +ascl.1312.011 +ascl.1312.012 +ascl.1312.013 +ascl.1312.014 +ascl.1401.001 +ascl.1401.002 +ascl.1401.003 +ascl.1401.004 +ascl.1401.005 +ascl.1401.006 +ascl.1401.007 +ascl.1401.008 +ascl.1401.009 +ascl.1401.010 +ascl.1402.001 +ascl.1402.002 +ascl.1402.003 +ascl.1402.004 +ascl.1402.005 +ascl.1402.006 +ascl.1402.007 +ascl.1402.008 +ascl.1402.009 +ascl.1402.010 +ascl.1402.011 +ascl.1402.012 +ascl.1402.013 +ascl.1402.014 +ascl.1402.015 +ascl.1402.016 +ascl.1402.017 +ascl.1402.018 +ascl.1402.019 +ascl.1402.020 +ascl.1402.021 +ascl.1402.022 +ascl.1402.023 +ascl.1402.024 +ascl.1402.025 +ascl.1402.026 +ascl.1402.027 +ascl.1402.028 +ascl.1402.029 +ascl.1402.030 +ascl.1402.031 +ascl.1402.032 +ascl.1402.033 +ascl.1402.034 +ascl.1402.035 +ascl.1403.001 +ascl.1403.002 +ascl.1403.003 +ascl.1403.004 +ascl.1403.005 +ascl.1403.006 +ascl.1403.007 +ascl.1403.008 +ascl.1403.009 +ascl.1403.010 +ascl.1403.011 +ascl.1403.012 +ascl.1403.013 +ascl.1403.014 +ascl.1403.015 +ascl.1403.016 +ascl.1403.017 +ascl.1403.018 +ascl.1403.019 +ascl.1403.020 +ascl.1403.021 +ascl.1403.022 +ascl.1403.023 +ascl.1403.024 +ascl.1403.025 +ascl.1403.026 +ascl.1404.001 +ascl.1404.002 +ascl.1404.004 +ascl.1404.005 +ascl.1404.006 +ascl.1404.007 +ascl.1404.008 +ascl.1404.009 +ascl.1404.010 +ascl.1404.011 +ascl.1404.012 +ascl.1404.013 +ascl.1404.014 +ascl.1404.015 +ascl.1404.016 +ascl.1404.017 +ascl.1405.001 +ascl.1405.002 +ascl.1405.003 +ascl.1405.004 +ascl.1405.005 +ascl.1405.006 +ascl.1405.007 +ascl.1405.008 +ascl.1405.009 +ascl.1405.010 +ascl.1405.011 +ascl.1405.012 +ascl.1405.013 +ascl.1405.014 +ascl.1405.015 +ascl.1405.016 +ascl.1405.017 +ascl.1405.018 +ascl.1406.001 +ascl.1406.002 +ascl.1406.003 +ascl.1406.004 +ascl.1406.005 +ascl.1406.006 +ascl.1406.007 +ascl.1406.008 +ascl.1406.009 +ascl.1406.010 +ascl.1406.011 +ascl.1406.012 +ascl.1406.013 +ascl.1406.014 +ascl.1406.015 +ascl.1406.016 +ascl.1406.017 +ascl.1406.018 +ascl.1406.019 +ascl.1406.020 +ascl.1407.001 +ascl.1407.002 +ascl.1407.003 +ascl.1407.004 +ascl.1407.005 +ascl.1407.006 +ascl.1407.007 +ascl.1407.008 +ascl.1407.009 +ascl.1407.010 +ascl.1407.011 +ascl.1407.012 +ascl.1407.013 +ascl.1407.014 +ascl.1407.015 +ascl.1407.016 +ascl.1407.017 +ascl.1407.018 +ascl.1407.019 +ascl.1407.020 +ascl.1408.001 +ascl.1408.002 +ascl.1408.003 +ascl.1408.004 +ascl.1408.005 +ascl.1408.006 +ascl.1408.007 +ascl.1408.008 +ascl.1408.009 +ascl.1408.010 +ascl.1408.011 +ascl.1408.012 +ascl.1408.013 +ascl.1408.014 +ascl.1408.015 +ascl.1408.016 +ascl.1408.017 +ascl.1408.018 +ascl.1408.019 +ascl.1408.020 +ascl.1408.021 +ascl.1408.022 +ascl.1408.023 +ascl.1409.001 +ascl.1409.002 +ascl.1409.003 +ascl.1409.004 +ascl.1409.005 +ascl.1409.006 +ascl.1409.007 +ascl.1409.008 +ascl.1409.009 +ascl.1409.010 +ascl.1409.011 +ascl.1409.012 +ascl.1409.013 +ascl.1410.001 +ascl.1410.002 +ascl.1410.003 +ascl.1410.004 +ascl.1410.005 +ascl.1411.001 +ascl.1411.002 +ascl.1411.003 +ascl.1411.004 +ascl.1411.005 +ascl.1411.006 +ascl.1411.007 +ascl.1411.008 +ascl.1411.009 +ascl.1411.010 +ascl.1411.011 +ascl.1411.012 +ascl.1411.013 +ascl.1411.014 +ascl.1411.015 +ascl.1411.016 +ascl.1411.017 +ascl.1411.018 +ascl.1411.019 +ascl.1411.020 +ascl.1411.021 +ascl.1411.022 +ascl.1411.023 +ascl.1411.024 +ascl.1411.025 +ascl.1411.026 +ascl.1411.027 +ascl.1412.001 +ascl.1412.002 +ascl.1412.003 +ascl.1412.004 +ascl.1412.005 +ascl.1412.006 +ascl.1412.007 +ascl.1412.008 +ascl.1412.009 +ascl.1412.010 +ascl.1412.011 +ascl.1412.012 +ascl.1412.013 +ascl.1412.014 +ascl.1501.001 +ascl.1501.002 +ascl.1501.003 +ascl.1501.004 +ascl.1501.005 +ascl.1501.006 +ascl.1501.007 +ascl.1501.008 +ascl.1501.009 +ascl.1501.010 +ascl.1501.011 +ascl.1501.012 +ascl.1501.013 +ascl.1501.014 +ascl.1501.015 +ascl.1501.016 +ascl.1502.001 +ascl.1502.002 +ascl.1502.003 +ascl.1502.004 +ascl.1502.005 +ascl.1502.006 +ascl.1502.007 +ascl.1502.008 +ascl.1502.009 +ascl.1502.010 +ascl.1502.011 +ascl.1502.012 +ascl.1502.013 +ascl.1502.014 +ascl.1502.015 +ascl.1502.016 +ascl.1502.017 +ascl.1502.018 +ascl.1502.019 +ascl.1502.020 +ascl.1502.021 +ascl.1502.022 +ascl.1502.023 +ascl.1503.001 +ascl.1503.002 +ascl.1503.003 +ascl.1503.004 +ascl.1503.005 +ascl.1503.006 +ascl.1503.007 +ascl.1503.008 +ascl.1503.009 +ascl.1503.010 +ascl.1503.011 +ascl.1504.001 +ascl.1504.002 +ascl.1504.003 +ascl.1504.004 +ascl.1504.005 +ascl.1504.006 +ascl.1504.007 +ascl.1504.008 +ascl.1504.009 +ascl.1504.010 +ascl.1504.011 +ascl.1504.012 +ascl.1504.013 +ascl.1504.014 +ascl.1504.015 +ascl.1504.016 +ascl.1504.017 +ascl.1504.018 +ascl.1504.019 +ascl.1504.020 +ascl.1504.021 +ascl.1505.001 +ascl.1505.002 +ascl.1505.003 +ascl.1505.004 +ascl.1505.005 +ascl.1505.006 +ascl.1505.007 +ascl.1505.008 +ascl.1505.009 +ascl.1505.010 +ascl.1505.011 +ascl.1505.012 +ascl.1505.013 +ascl.1505.014 +ascl.1505.015 +ascl.1505.016 +ascl.1505.017 +ascl.1505.018 +ascl.1505.019 +ascl.1505.020 +ascl.1505.021 +ascl.1505.022 +ascl.1505.023 +ascl.1505.024 +ascl.1505.025 +ascl.1505.026 +ascl.1505.027 +ascl.1505.028 +ascl.1505.029 +ascl.1505.030 +ascl.1505.031 +ascl.1505.032 +ascl.1505.033 +ascl.1505.034 +ascl.1506.001 +ascl.1506.002 +ascl.1506.003 +ascl.1506.004 +ascl.1506.005 +ascl.1506.006 +ascl.1506.007 +ascl.1506.008 +ascl.1506.009 +ascl.1506.010 +ascl.1507.001 +ascl.1507.002 +ascl.1507.003 +ascl.1507.004 +ascl.1507.005 +ascl.1507.006 +ascl.1507.007 +ascl.1507.008 +ascl.1507.009 +ascl.1507.010 +ascl.1507.011 +ascl.1507.012 +ascl.1507.013 +ascl.1507.014 +ascl.1507.015 +ascl.1507.016 +ascl.1507.017 +ascl.1507.018 +ascl.1507.019 +ascl.1507.020 +ascl.1508.001 +ascl.1508.002 +ascl.1508.003 +ascl.1508.004 +ascl.1508.005 +ascl.1508.006 +ascl.1508.007 +ascl.1508.008 +ascl.1508.009 +ascl.1508.010 +ascl.1509.001 +ascl.1509.002 +ascl.1509.003 +ascl.1509.004 +ascl.1509.005 +ascl.1509.006 +ascl.1509.007 +ascl.1509.008 +ascl.1509.009 +ascl.1509.010 +ascl.1510.001 +ascl.1510.002 +ascl.1510.003 +ascl.1510.004 +ascl.1510.005 +ascl.1510.006 +ascl.1510.007 +ascl.1511.001 +ascl.1511.002 +ascl.1511.003 +ascl.1511.004 +ascl.1511.005 +ascl.1511.006 +ascl.1511.007 +ascl.1511.008 +ascl.1511.009 +ascl.1511.010 +ascl.1511.011 +ascl.1511.012 +ascl.1511.013 +ascl.1511.014 +ascl.1511.015 +ascl.1511.016 +ascl.1511.017 +ascl.1511.018 +ascl.1511.019 +ascl.1511.020 +ascl.1511.021 +ascl.1511.022 +ascl.1511.023 +ascl.1512.001 +ascl.1512.002 +ascl.1512.003 +ascl.1512.004 +ascl.1512.005 +ascl.1512.006 +ascl.1512.007 +ascl.1512.008 +ascl.1512.009 +ascl.1512.010 +ascl.1512.011 +ascl.1512.012 +ascl.1512.013 +ascl.1512.014 +ascl.1512.015 +ascl.1512.016 +ascl.1512.017 +ascl.1512.018 +ascl.1512.019 +ascl.1512.020 +ascl.1601.001 +ascl.1601.002 +ascl.1601.003 +ascl.1601.004 +ascl.1601.005 +ascl.1601.006 +ascl.1601.007 +ascl.1601.008 +ascl.1601.009 +ascl.1601.010 +ascl.1601.011 +ascl.1601.012 +ascl.1601.013 +ascl.1601.014 +ascl.1601.015 +ascl.1601.016 +ascl.1601.017 +ascl.1601.018 +ascl.1601.019 +ascl.1601.020 +ascl.1601.021 +ascl.1602.001 +ascl.1602.002 +ascl.1602.003 +ascl.1602.004 +ascl.1602.005 +ascl.1602.006 +ascl.1602.007 +ascl.1602.008 +ascl.1602.009 +ascl.1602.010 +ascl.1602.011 +ascl.1602.012 +ascl.1602.013 +ascl.1602.014 +ascl.1602.015 +ascl.1602.016 +ascl.1602.017 +ascl.1602.018 +ascl.1602.019 +ascl.1602.020 +ascl.1602.021 +ascl.1603.001 +ascl.1603.002 +ascl.1603.003 +ascl.1603.004 +ascl.1603.005 +ascl.1603.006 +ascl.1603.007 +ascl.1603.008 +ascl.1603.009 +ascl.1603.010 +ascl.1603.011 +ascl.1603.012 +ascl.1603.013 +ascl.1603.014 +ascl.1603.015 +ascl.1603.016 +ascl.1603.017 +ascl.1603.018 +ascl.1604.001 +ascl.1604.002 +ascl.1604.003 +ascl.1604.004 +ascl.1604.005 +ascl.1604.006 +ascl.1604.007 +ascl.1604.008 +ascl.1604.009 +ascl.1604.010 +ascl.1604.011 +ascl.1604.012 +ascl.1605.001 +ascl.1605.002 +ascl.1605.003 +ascl.1605.004 +ascl.1605.005 +ascl.1605.006 +ascl.1605.007 +ascl.1605.008 +ascl.1605.009 +ascl.1605.010 +ascl.1605.011 +ascl.1605.012 +ascl.1605.013 +ascl.1605.014 +ascl.1605.015 +ascl.1605.016 +ascl.1605.017 +ascl.1606.001 +ascl.1606.002 +ascl.1606.003 +ascl.1606.004 +ascl.1606.005 +ascl.1606.006 +ascl.1606.007 +ascl.1606.008 +ascl.1606.009 +ascl.1606.010 +ascl.1606.011 +ascl.1606.012 +ascl.1606.013 +ascl.1606.014 +ascl.1606.015 +ascl.1607.001 +ascl.1607.002 +ascl.1607.003 +ascl.1607.004 +ascl.1607.005 +ascl.1607.006 +ascl.1607.007 +ascl.1607.008 +ascl.1607.009 +ascl.1607.010 +ascl.1607.011 +ascl.1607.012 +ascl.1607.013 +ascl.1607.014 +ascl.1607.015 +ascl.1607.016 +ascl.1607.017 +ascl.1607.018 +ascl.1607.019 +ascl.1607.020 +ascl.1608.001 +ascl.1608.002 +ascl.1608.003 +ascl.1608.004 +ascl.1608.005 +ascl.1608.006 +ascl.1608.007 +ascl.1608.008 +ascl.1608.009 +ascl.1608.010 +ascl.1608.011 +ascl.1608.012 +ascl.1608.013 +ascl.1608.014 +ascl.1608.015 +ascl.1608.016 +ascl.1608.017 +ascl.1608.018 +ascl.1608.019 +ascl.1608.020 +ascl.1609.001 +ascl.1609.002 +ascl.1609.003 +ascl.1609.004 +ascl.1609.005 +ascl.1609.006 +ascl.1609.007 +ascl.1609.008 +ascl.1609.009 +ascl.1609.010 +ascl.1609.011 +ascl.1609.012 +ascl.1609.013 +ascl.1609.014 +ascl.1609.015 +ascl.1609.016 +ascl.1609.017 +ascl.1609.018 +ascl.1609.019 +ascl.1609.020 +ascl.1609.021 +ascl.1609.022 +ascl.1609.023 +ascl.1609.024 +ascl.1609.025 +ascl.1610.001 +ascl.1610.002 +ascl.1610.003 +ascl.1610.004 +ascl.1610.005 +ascl.1610.006 +ascl.1610.007 +ascl.1610.008 +ascl.1610.009 +ascl.1610.010 +ascl.1610.011 +ascl.1610.012 +ascl.1610.013 +ascl.1610.014 +ascl.1610.015 +ascl.1610.016 +ascl.1611.001 +ascl.1611.002 +ascl.1611.003 +ascl.1611.004 +ascl.1611.005 +ascl.1611.006 +ascl.1611.007 +ascl.1611.008 +ascl.1611.009 +ascl.1611.010 +ascl.1611.011 +ascl.1611.012 +ascl.1611.013 +ascl.1611.014 +ascl.1611.015 +ascl.1611.016 +ascl.1611.017 +ascl.1611.018 +ascl.1611.019 +ascl.1611.020 +ascl.1611.021 +ascl.1611.022 +ascl.1612.001 +ascl.1612.002 +ascl.1612.003 +ascl.1612.004 +ascl.1612.005 +ascl.1612.006 +ascl.1612.007 +ascl.1612.008 +ascl.1612.009 +ascl.1612.010 +ascl.1612.011 +ascl.1612.012 +ascl.1612.013 +ascl.1612.014 +ascl.1612.015 +ascl.1612.016 +ascl.1612.017 +ascl.1612.018 +ascl.1612.019 +ascl.1612.020 +ascl.1612.021 +ascl.1612.022 +ascl.1701.001 +ascl.1701.002 +ascl.1701.003 +ascl.1701.004 +ascl.1701.005 +ascl.1701.006 +ascl.1701.007 +ascl.1701.008 +ascl.1701.009 +ascl.1701.010 +ascl.1701.011 +ascl.1701.012 +ascl.1702.001 +ascl.1702.002 +ascl.1702.003 +ascl.1702.004 +ascl.1702.005 +ascl.1702.006 +ascl.1702.007 +ascl.1702.008 +ascl.1702.009 +ascl.1702.010 +ascl.1702.011 +ascl.1702.012 +ascl.1703.001 +ascl.1703.002 +ascl.1703.003 +ascl.1703.004 +ascl.1703.005 +ascl.1703.006 +ascl.1703.007 +ascl.1703.008 +ascl.1703.009 +ascl.1703.010 +ascl.1703.011 +ascl.1703.012 +ascl.1703.013 +ascl.1703.014 +ascl.1703.015 +ascl.1704.001 +ascl.1704.002 +ascl.1704.003 +ascl.1704.004 +ascl.1704.005 +ascl.1704.006 +ascl.1704.007 +ascl.1704.008 +ascl.1704.009 +ascl.1704.010 +ascl.1704.011 +ascl.1704.012 +ascl.1704.013 +ascl.1704.014 +ascl.1705.001 +ascl.1705.002 +ascl.1705.003 +ascl.1705.004 +ascl.1705.005 +ascl.1705.006 +ascl.1705.007 +ascl.1705.008 +ascl.1705.009 +ascl.1705.010 +ascl.1705.011 +ascl.1705.012 +ascl.1705.013 +ascl.1705.014 +ascl.1705.015 +ascl.1705.016 +ascl.1705.017 +ascl.1706.001 +ascl.1706.002 +ascl.1706.003 +ascl.1706.004 +ascl.1706.005 +ascl.1706.006 +ascl.1706.007 +ascl.1706.008 +ascl.1706.009 +ascl.1706.010 +ascl.1706.011 +ascl.1706.012 +ascl.1707.001 +ascl.1707.002 +ascl.1707.003 +ascl.1707.004 +ascl.1707.005 +ascl.1707.006 +ascl.1707.007 +ascl.1708.001 +ascl.1708.002 +ascl.1708.003 +ascl.1708.004 +ascl.1708.005 +ascl.1708.006 +ascl.1708.007 +ascl.1708.008 +ascl.1708.009 +ascl.1708.010 +ascl.1708.011 +ascl.1708.012 +ascl.1708.013 +ascl.1708.014 +ascl.1708.015 +ascl.1708.016 +ascl.1708.017 +ascl.1708.018 +ascl.1708.019 +ascl.1708.020 +ascl.1708.021 +ascl.1708.022 +ascl.1708.023 +ascl.1708.024 +ascl.1708.025 +ascl.1708.026 +ascl.1708.027 +ascl.1708.028 +ascl.1708.029 +ascl.1708.030 +ascl.1709.001 +ascl.1709.002 +ascl.1709.003 +ascl.1709.004 +ascl.1709.005 +ascl.1709.006 +ascl.1709.007 +ascl.1709.008 +ascl.1709.009 +ascl.1709.010 +ascl.1709.011 +ascl.1710.001 +ascl.1710.002 +ascl.1710.003 +ascl.1710.004 +ascl.1710.005 +ascl.1710.006 +ascl.1710.007 +ascl.1710.008 +ascl.1710.009 +ascl.1710.010 +ascl.1710.011 +ascl.1710.012 +ascl.1710.013 +ascl.1710.014 +ascl.1710.015 +ascl.1710.016 +ascl.1710.017 +ascl.1710.018 +ascl.1710.019 +ascl.1710.020 +ascl.1710.021 +ascl.1710.022 +ascl.1710.023 +ascl.1710.024 +ascl.1711.001 +ascl.1711.002 +ascl.1711.003 +ascl.1711.004 +ascl.1711.005 +ascl.1711.006 +ascl.1711.007 +ascl.1711.008 +ascl.1711.009 +ascl.1711.010 +ascl.1711.011 +ascl.1711.012 +ascl.1711.013 +ascl.1711.014 +ascl.1711.015 +ascl.1711.016 +ascl.1711.017 +ascl.1711.018 +ascl.1711.019 +ascl.1711.020 +ascl.1711.021 +ascl.1711.022 +ascl.1711.023 +ascl.1711.024 +ascl.1712.001 +ascl.1712.002 +ascl.1712.003 +ascl.1712.004 +ascl.1712.005 +ascl.1712.006 +ascl.1712.007 +ascl.1712.008 +ascl.1712.009 +ascl.1712.010 +ascl.1712.011 +ascl.1712.012 +ascl.1712.013 +ascl.1712.014 +ascl.1712.015 +ascl.1712.016 +ascl.1801.001 +ascl.1801.002 +ascl.1801.003 +ascl.1801.004 +ascl.1801.005 +ascl.1801.006 +ascl.1801.007 +ascl.1801.008 +ascl.1801.009 +ascl.1801.010 +ascl.1801.011 +ascl.1801.012 +ascl.1802.001 +ascl.1802.002 +ascl.1802.003 +ascl.1802.004 +ascl.1802.005 +ascl.1802.006 +ascl.1802.007 +ascl.1802.008 +ascl.1802.009 +ascl.1802.010 +ascl.1802.011 +ascl.1802.012 +ascl.1802.013 +ascl.1802.014 +ascl.1802.015 +ascl.1802.016 +ascl.1803.001 +ascl.1803.002 +ascl.1803.003 +ascl.1803.004 +ascl.1803.005 +ascl.1803.006 +ascl.1803.007 +ascl.1803.008 +ascl.1803.009 +ascl.1803.010 +ascl.1803.011 +ascl.1803.012 +ascl.1803.013 +ascl.1803.014 +ascl.1803.015 +ascl.1804.001 +ascl.1804.002 +ascl.1804.003 +ascl.1804.004 +ascl.1804.005 +ascl.1804.006 +ascl.1804.007 +ascl.1804.008 +ascl.1804.009 +ascl.1804.010 +ascl.1804.011 +ascl.1804.012 +ascl.1804.013 +ascl.1804.014 +ascl.1804.015 +ascl.1804.016 +ascl.1804.017 +ascl.1804.018 +ascl.1804.019 +ascl.1804.020 +ascl.1804.021 +ascl.1804.022 +ascl.1804.023 +ascl.1804.024 +ascl.1804.025 +ascl.1804.026 +ascl.1805.001 +ascl.1805.002 +ascl.1805.003 +ascl.1805.004 +ascl.1805.005 +ascl.1805.006 +ascl.1805.007 +ascl.1805.008 +ascl.1805.009 +ascl.1805.010 +ascl.1805.011 +ascl.1805.012 +ascl.1805.013 +ascl.1805.014 +ascl.1805.015 +ascl.1805.016 +ascl.1805.017 +ascl.1805.018 +ascl.1805.019 +ascl.1805.020 +ascl.1805.021 +ascl.1805.022 +ascl.1805.023 +ascl.1805.024 +ascl.1805.025 +ascl.1805.026 +ascl.1805.027 +ascl.1805.028 +ascl.1805.029 +ascl.1805.030 +ascl.1805.031 +ascl.1805.032 +ascl.1806.001 +ascl.1806.002 +ascl.1806.003 +ascl.1806.004 +ascl.1806.005 +ascl.1806.006 +ascl.1806.007 +ascl.1806.008 +ascl.1806.009 +ascl.1806.010 +ascl.1806.011 +ascl.1806.012 +ascl.1806.013 +ascl.1806.014 +ascl.1806.015 +ascl.1806.016 +ascl.1806.017 +ascl.1806.018 +ascl.1806.019 +ascl.1806.020 +ascl.1806.021 +ascl.1806.022 +ascl.1806.023 +ascl.1806.024 +ascl.1806.025 +ascl.1806.026 +ascl.1806.027 +ascl.1806.028 +ascl.1806.029 +ascl.1806.030 +ascl.1806.031 +ascl.1806.032 +ascl.1807.001 +ascl.1807.002 +ascl.1807.003 +ascl.1807.004 +ascl.1807.005 +ascl.1807.006 +ascl.1807.007 +ascl.1807.008 +ascl.1807.009 +ascl.1807.010 +ascl.1807.011 +ascl.1807.012 +ascl.1807.013 +ascl.1807.014 +ascl.1807.015 +ascl.1807.016 +ascl.1807.017 +ascl.1807.018 +ascl.1807.019 +ascl.1807.020 +ascl.1807.021 +ascl.1807.022 +ascl.1807.023 +ascl.1807.024 +ascl.1807.025 +ascl.1807.026 +ascl.1807.027 +ascl.1807.028 +ascl.1807.029 +ascl.1807.030 +ascl.1807.031 +ascl.1807.032 +ascl.1807.033 +ascl.1808.001 +ascl.1808.002 +ascl.1808.003 +ascl.1808.004 +ascl.1808.005 +ascl.1808.006 +ascl.1808.007 +ascl.1808.008 +ascl.1808.009 +ascl.1808.010 +ascl.1808.011 +ascl.1809.001 +ascl.1809.002 +ascl.1809.003 +ascl.1809.004 +ascl.1809.005 +ascl.1809.006 +ascl.1809.007 +ascl.1809.008 +ascl.1809.009 +ascl.1809.010 +ascl.1809.011 +ascl.1809.012 +ascl.1809.013 +ascl.1809.014 +ascl.1809.015 +ascl.1809.016 +ascl.1810.001 +ascl.1810.002 +ascl.1810.003 +ascl.1810.004 +ascl.1810.005 +ascl.1810.006 +ascl.1810.007 +ascl.1810.008 +ascl.1810.009 +ascl.1810.010 +ascl.1810.011 +ascl.1810.012 +ascl.1810.013 +ascl.1810.014 +ascl.1810.015 +ascl.1810.016 +ascl.1810.017 +ascl.1810.018 +ascl.1810.019 +ascl.1810.020 +ascl.1810.021 +ascl.1811.001 +ascl.1811.002 +ascl.1811.003 +ascl.1811.004 +ascl.1811.005 +ascl.1811.006 +ascl.1811.007 +ascl.1811.008 +ascl.1811.009 +ascl.1811.010 +ascl.1811.011 +ascl.1811.012 +ascl.1811.013 +ascl.1811.014 +ascl.1811.015 +ascl.1811.016 +ascl.1811.017 +ascl.1811.018 +ascl.1811.019 +ascl.1811.020 +ascl.1812.001 +ascl.1812.002 +ascl.1812.003 +ascl.1812.004 +ascl.1812.005 +ascl.1812.006 +ascl.1812.007 +ascl.1812.008 +ascl.1812.009 +ascl.1812.010 +ascl.1812.011 +ascl.1812.012 +ascl.1812.013 +ascl.1812.014 +ascl.1812.015 +ascl.1812.016 +ascl.1812.017 +ascl.1812.018 +ascl.1901.001 +ascl.1901.002 +ascl.1901.003 +ascl.1901.004 +ascl.1901.005 +ascl.1901.006 +ascl.1901.007 +ascl.1901.008 +ascl.1901.009 +ascl.1901.010 +ascl.1901.011 +ascl.1901.012 +ascl.1902.001 +ascl.1902.002 +ascl.1902.003 +ascl.1902.004 +ascl.1902.005 +ascl.1902.006 +ascl.1902.007 +ascl.1902.008 +ascl.1902.009 +ascl.1902.010 +ascl.1902.011 +ascl.1902.012 +ascl.1903.001 +ascl.1903.002 +ascl.1903.003 +ascl.1903.004 +ascl.1903.005 +ascl.1903.006 +ascl.1903.007 +ascl.1903.008 +ascl.1903.009 +ascl.1903.010 +ascl.1903.011 +ascl.1903.012 +ascl.1903.013 +ascl.1903.014 +ascl.1903.015 +ascl.1903.016 +ascl.1903.017 +ascl.1904.001 +ascl.1904.002 +ascl.1904.003 +ascl.1904.004 +ascl.1904.005 +ascl.1904.006 +ascl.1904.007 +ascl.1904.008 +ascl.1904.009 +ascl.1904.010 +ascl.1904.011 +ascl.1904.012 +ascl.1904.013 +ascl.1904.014 +ascl.1904.015 +ascl.1904.016 +ascl.1904.017 +ascl.1904.018 +ascl.1904.019 +ascl.1904.020 +ascl.1904.021 +ascl.1904.022 +ascl.1904.023 +ascl.1904.024 +ascl.1904.025 +ascl.1904.026 +ascl.1904.027 +ascl.1904.028 +ascl.1904.029 +ascl.1904.030 +ascl.1905.001 +ascl.1905.002 +ascl.1905.003 +ascl.1905.004 +ascl.1905.005 +ascl.1905.006 +ascl.1905.007 +ascl.1905.008 +ascl.1905.009 +ascl.1905.010 +ascl.1905.011 +ascl.1905.012 +ascl.1905.013 +ascl.1905.014 +ascl.1905.015 +ascl.1905.016 +ascl.1905.017 +ascl.1905.018 +ascl.1905.019 +ascl.1905.020 +ascl.1905.021 +ascl.1905.022 +ascl.1905.023 +ascl.1905.024 +ascl.1905.025 +ascl.1905.026 +ascl.1905.027 +ascl.1906.001 +ascl.1906.002 +ascl.1906.003 +ascl.1906.004 +ascl.1906.005 +ascl.1906.006 +ascl.1906.007 +ascl.1906.008 +ascl.1906.009 +ascl.1906.010 +ascl.1906.011 +ascl.1906.012 +ascl.1906.013 +ascl.1906.014 +ascl.1906.015 +ascl.1906.016 +ascl.1906.017 +ascl.1906.018 +ascl.1906.019 +ascl.1906.020 +ascl.1906.021 +ascl.1906.022 +ascl.1907.001 +ascl.1907.002 +ascl.1907.003 +ascl.1907.004 +ascl.1907.005 +ascl.1907.006 +ascl.1907.007 +ascl.1907.008 +ascl.1907.009 +ascl.1907.010 +ascl.1907.011 +ascl.1907.012 +ascl.1907.013 +ascl.1907.014 +ascl.1907.015 +ascl.1907.016 +ascl.1907.017 +ascl.1907.018 +ascl.1907.019 +ascl.1907.020 +ascl.1907.021 +ascl.1907.022 +ascl.1907.023 +ascl.1907.024 +ascl.1907.025 +ascl.1907.026 +ascl.1907.027 +ascl.1907.028 +ascl.1907.029 +ascl.1907.030 +ascl.1907.031 +ascl.1907.032 +ascl.1908.001 +ascl.1908.002 +ascl.1908.003 +ascl.1908.004 +ascl.1908.005 +ascl.1908.006 +ascl.1908.007 +ascl.1908.008 +ascl.1908.009 +ascl.1908.010 +ascl.1908.011 +ascl.1908.012 +ascl.1908.013 +ascl.1908.014 +ascl.1908.015 +ascl.1908.016 +ascl.1908.017 +ascl.1908.018 +ascl.1908.019 +ascl.1908.020 +ascl.1908.021 +ascl.1908.022 +ascl.1908.023 +ascl.1908.024 +ascl.1908.025 +ascl.1909.001 +ascl.1909.002 +ascl.1909.003 +ascl.1909.004 +ascl.1909.005 +ascl.1909.006 +ascl.1909.007 +ascl.1909.008 +ascl.1909.009 +ascl.1909.010 +ascl.1909.011 +ascl.1909.012 +ascl.1909.013 +ascl.1909.014 +ascl.1910.001 +ascl.1910.002 +ascl.1910.003 +ascl.1910.004 +ascl.1910.005 +ascl.1910.006 +ascl.1910.007 +ascl.1910.008 +ascl.1910.009 +ascl.1910.010 +ascl.1910.011 +ascl.1910.012 +ascl.1910.013 +ascl.1910.014 +ascl.1910.015 +ascl.1910.016 +ascl.1910.017 +ascl.1910.018 +ascl.1910.019 +ascl.1910.020 +ascl.1910.021 +ascl.1910.022 diff --git a/ascl-ads-comparison/code_comparison.py b/ascl-ads-comparison/code_comparison.py new file mode 100644 index 0000000..9462799 --- /dev/null +++ b/ascl-ads-comparison/code_comparison.py @@ -0,0 +1,63 @@ +import sys +import os +import re + + +f = open(os.path.join(sys.path[0], "ads_codes"), "r") + +converted_dict = {} + +conv = [] + +for line in f.readlines(): + x = re.match("^\d\d(\d\d)ascl\.soft(\d\d)(\d\d\d)\D$", line) + if x: + converted = ("ascl." + x.group(1)+x.group(2)+"."+x.group(3)).strip() + if converted in conv: + print("ads inconsistency " + converted + " -\t" + line.strip()) + print("\tother ads entry is \t\t" + converted_dict[converted] + "\n") + conv.append(converted) + #dictionary of ascl id to ascl bibcode + converted_dict[converted] = line.strip() + else: + print(line) + +''' +g = open(os.path.join(sys.path[0], "ascl_codes"), "r") + +ascl_lines = g.readlines() +ascl_lines = [line.strip() for line in ascl_lines] + +#print(ascl_lines) + +ads_converted = converted_dict.keys() + +num_matches = 0 +double_matches = 0 + +matches = [] + +for line in ads_converted: + if converted_dict[line] in matches: + double_matches += 1 + print("double match found: " + line) + else: + num_matches += 1 + matches.append(converted_dict[line]) +''' + +''' +num_matches = 0 +double_matches = 0 +for line in ads_converted: + #print(line) + if line not in matches: + num_matches += 1 + matches.append(line) + #print("found match " + line) + else: + double_matches += 1 + print("found double match " + line) +print("matches " + str(matches)) +print("double matches " + str(double_matches)) +'''