diff --git a/.gitmodules b/.gitmodules
index de35e497e9770d1a60c763977fd8eb21cdc92177..4d8e22a41b30369fc849460bd35eaacaa98ef410 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -207,3 +207,6 @@
 [submodule "dependencies/parsers/xps"]
 	path = dependencies/parsers/xps
 	url = https://github.com/nomad-coe/nomad-parser-xps.git
+[submodule "dependencies/parsers/aflow"]
+	path = dependencies/parsers/aflow
+	url = https://github.com/nomad-coe/nomad-parser-aflow.git
diff --git a/dependencies/parsers/aflow b/dependencies/parsers/aflow
new file mode 160000
index 0000000000000000000000000000000000000000..012e25e82f33c10dc8ea60ad28577477a8374535
--- /dev/null
+++ b/dependencies/parsers/aflow
@@ -0,0 +1 @@
+Subproject commit 012e25e82f33c10dc8ea60ad28577477a8374535
diff --git a/nomad/datamodel/metainfo/simulation/calculation.py b/nomad/datamodel/metainfo/simulation/calculation.py
index 6dd862df42c79c0d39bb3f0b7aaa14e16c14e76c..27b517e6aa0c7b011c14412d22971cf60ac2a406 100644
--- a/nomad/datamodel/metainfo/simulation/calculation.py
+++ b/nomad/datamodel/metainfo/simulation/calculation.py
@@ -1472,7 +1472,7 @@ class BaseCalculation(MSection):
         categories=[FastAccess])
 
     n_references = Quantity(
-        type=np.dtype(np.float64),
+        type=np.dtype(np.int32),
         shape=[],
         description='''
          Number of references to the current section calculation.
diff --git a/nomad/datamodel/metainfo/simulation/run.py b/nomad/datamodel/metainfo/simulation/run.py
index e00aa609bd50522f8056fd7e3b13f8c84782d53d..02f55447f2f5ace47d31600d484d2b6f007ad520 100644
--- a/nomad/datamodel/metainfo/simulation/run.py
+++ b/nomad/datamodel/metainfo/simulation/run.py
@@ -24,7 +24,7 @@ from nomad.metainfo import (  # pylint: disable=unused-import
 from nomad.datamodel.metainfo.simulation.method import Method
 from nomad.datamodel.metainfo.simulation.system import System
 from nomad.datamodel.metainfo.simulation.calculation import Calculation
-
+from nomad.datamodel.metainfo.common import FastAccess
 
 m_package = Package()
 
@@ -175,41 +175,6 @@ class MessageRun(MSection):
         ''')
 
 
-class RunReference(MSection):
-    '''
-    Section that describes the relationship between the current section to other run
-    sections.
-
-    The kind of relationship between the the current section and the referenced section
-    run is described by kind. The referenced section is given by value (typically used for
-    a run section in the same archive) or external_url.
-    '''
-
-    m_def = Section(validate=False)
-
-    external_url = Quantity(
-        type=str,
-        shape=[],
-        description='''
-        URL used to reference an externally stored run section.
-        ''')
-
-    kind = Quantity(
-        type=str,
-        shape=[],
-        description='''
-        Defines the kind of relationship between the referenced section run with the
-        present section.
-        ''')
-
-    value = Quantity(
-        type=Reference(SectionProxy('Run')),
-        shape=[],
-        description='''
-        Value of the referenced section run.
-        ''')
-
-
 class Run(MSection):
     '''
     Every section run represents a single call of a program.
@@ -240,6 +205,31 @@ class Run(MSection):
         An optional calculation id, if one is found in the code input/output files.
         ''')
 
+    starting_run_ref = Quantity(
+        type=Reference(SectionProxy('Run')),
+        shape=[],
+        description='''
+        Links the current section run to a section run containing the calculations from
+        which the current section starts.
+        ''',
+        categories=[FastAccess])
+
+    n_references = Quantity(
+        type=np.dtype(np.int32),
+        shape=[],
+        description='''
+         Number of references to the current section calculation.
+        ''')
+
+    runs_ref = Quantity(
+        type=Reference(SectionProxy('Run')),
+        shape=['n_references'],
+        description='''
+        Links the the current section to other run sections. Such a link is necessary for
+        example for workflows that may contain a series of runs.
+        ''',
+        categories=[FastAccess])
+
     program = SubSection(sub_section=Program.m_def)
 
     time_run = SubSection(sub_section=TimeRun.m_def)
@@ -252,7 +242,5 @@ class Run(MSection):
 
     calculation = SubSection(sub_section=Calculation.m_def, repeats=True)
 
-    run_ref = SubSection(sub_section=RunReference.m_def, repeats=True)
-
 
 m_package.__init_metainfo__()
diff --git a/nomad/datamodel/metainfo/workflow.py b/nomad/datamodel/metainfo/workflow.py
index 8488afc2e57b78dfe75f696ca1b07e420e200575..f71e7f710d85f6013adcb3ec1486cb0d2e4d49da 100644
--- a/nomad/datamodel/metainfo/workflow.py
+++ b/nomad/datamodel/metainfo/workflow.py
@@ -6,7 +6,7 @@ from nomad.metainfo import (  # pylint: disable=unused-import
     Reference, MEnum, derived)
 from nomad.metainfo.search_extension import Search
 from nomad.datamodel.metainfo.simulation.calculation import Calculation
-from nomad.datamodel.metainfo.simulation.run import RunReference
+from nomad.datamodel.metainfo.simulation.run import Run
 from .common import FastAccess
 
 
@@ -1141,40 +1141,6 @@ class SinglePoint(MSection):
         ''')
 
 
-class WorkflowReference(MSection):
-    '''
-    Section that provides a link between a section to a section workflow. Such a link is
-    necessary for example between an Debye model that uses a the poisson ratio calculated
-    from an elastic workflow. The relationship should be described by kind and the
-    referred section workflow is given by value. An external url can also be provided in
-    place of value.
-    '''
-
-    m_def = Section(validate=False)
-
-    kind = Quantity(
-        type=str,
-        shape=[],
-        description='''
-        Defines the relationship between the referenced section workflow and the present
-        section.
-        ''')
-
-    external_url = Quantity(
-        type=str,
-        shape=[],
-        description='''
-        URL used to reference an externally stored section workflow.
-        ''')
-
-    value = Quantity(
-        type=Reference(SectionProxy('Workflow')),
-        shape=[],
-        description='''
-        Value of the referenced section wofklow.
-        ''')
-
-
 class Workflow(MSection):
     '''
     Section containing the  results of a workflow.
@@ -1224,6 +1190,31 @@ class Workflow(MSection):
         simulation.
         ''')
 
+    run_ref = Quantity(
+        type=Reference(Run.m_def),
+        shape=[],
+        description='''
+        Links the section workflow to the section run that contains the calculations.
+        ''',
+        categories=[FastAccess])
+
+    n_references = Quantity(
+        type=np.dtype(np.int32),
+        shape=[],
+        description='''
+         Number of references to the current section workflow.
+        ''')
+
+    workflows_ref = Quantity(
+        type=Reference(SectionProxy('Workflow')),
+        shape=['n_references'],
+        description='''
+        Links the the current section to other workflow sections. Such a link is necessary
+        for example between an Debye model that uses a the poisson ratio calculated
+        from an elastic workflow.
+        ''',
+        categories=[FastAccess])
+
     single_point = SubSection(
         sub_section=SinglePoint.m_def,
         # TODO determine if there is a need for this to be a repeating section
@@ -1280,9 +1271,3 @@ class Workflow(MSection):
     thermodynamics = SubSection(
         sub_section=Thermodynamics.m_def,
         repeats=False)
-
-    workflow_ref = SubSection(
-        sub_section=WorkflowReference.m_def, repeats=True)
-
-    run_ref = SubSection(
-        sub_section=RunReference.m_def, repeats=True)
diff --git a/nomad/normalizing/workflow.py b/nomad/normalizing/workflow.py
index 14871fd1f376a5407a9b884fa8aa2668236ed634..09ebd0a88fe1911ddbaf31681fbcb4daa9eef8bc 100644
--- a/nomad/normalizing/workflow.py
+++ b/nomad/normalizing/workflow.py
@@ -383,7 +383,7 @@ class ThermodynamicsNormalizer(TaskNormalizer):
                         values.append(quantity.magnitude if hasattr(quantity, 'magnitude') else quantity)
                 except Exception:
                     pass
-            unit = quantity.unit if hasattr(quantity, 'unit') else 1.0
+            unit = quantity.units if hasattr(quantity, 'units') else 1.0
             setattr(self.section, name, np.array(values) * unit)
 
         if not self.section.temperature:
diff --git a/nomad/parsing/parsers.py b/nomad/parsing/parsers.py
index 6b5d398c4f3684666ace0378db6fc2eccf1255b1..bdcf52134f86a206c93f97ddf0ae04d358e95189 100644
--- a/nomad/parsing/parsers.py
+++ b/nomad/parsing/parsers.py
@@ -72,6 +72,7 @@ from qboxparser import QboxParser
 from openkimparser import OpenKIMParser
 from xpsparser import XPSParser
 from eelsdbparser import EELSDBParser
+from aflowparser import AFLOWParser
 # TODO
 # from mpesparser import MPESParser
 # from aptfimparser import APTFIMParser
@@ -216,6 +217,7 @@ parsers = [
     # APTFIMParser(),
     EELSDBParser(),
     XPSParser(),
+    AFLOWParser(),
     ArchiveParser()
 ]
 
diff --git a/tests/data/parsers/aflow/aflow.agl.out b/tests/data/parsers/aflow/aflow.agl.out
new file mode 100644
index 0000000000000000000000000000000000000000..49b6bedabd703cf2360d55142c9d930509da5c7a
--- /dev/null
+++ b/tests/data/parsers/aflow/aflow.agl.out
@@ -0,0 +1,406 @@
+[AFLOW] ************************************************************************************************************************** 
+[AGL_RESULTS]START
+agl_thermal_conductivity_300K=2.95475  (W/m*K)
+agl_debye=374.916  (K)
+agl_acoustic_debye=187.5  (K)
+agl_gruneisen=2.22975 
+agl_heat_capacity_Cv_300K=22.2739  (kB/cell)
+agl_heat_capacity_Cp_300K=23.0311  (kB/cell)
+agl_thermal_expansion_300K=5.04085e-05  (1/K)
+agl_bulk_modulus_static_300K=153.361  (GPa)
+agl_bulk_modulus_isothermal_300K=148.318  (GPa)
+agl_poisson_ratio_source=ael_poisson_ratio_0.364064
+agl_vibrational_free_energy_300K_cell=-54.2809  (meV/cell)
+agl_vibrational_free_energy_300K_atom=-6.78511  (meV/atom)
+agl_vibrational_entropy_300K_cell=2.40318  (meV/cell*K)
+agl_vibrational_entropy_300K_atom=0.300398  (meV/atom*K)
+[AGL_RESULTS]STOP
+[AFLOW] ************************************************************************************************************************** 
+[AGL_THERMAL_PROPERTIES_TEMPERATURE]START
+#  T (K)        Kappa (W/(m*K))         Debye temp. (K)         Gruneisen Parameter     Cv (kB/cell)    Cp (kB/cell)    Thermal Expan. (10^{-5}/K)             B_static (Gpa)          B_isothermal (GPa)
+    0.00               0.000000              377.203016                    2.222290          0.000000       0.000000                      0.000000                 157.205309                  157.205309
+   10.00              88.642556              377.202741                    2.222291          0.034847       0.034847                      0.007424                 157.205708                  157.205449
+   20.00              44.321278              377.199501                    2.222301          0.278776       0.278783                      0.059389                 157.210959                  157.206809
+   30.00              29.547519              377.189907                    2.222332          0.936564       0.936689                      0.199533                 157.219347                  157.198435
+   40.00              22.160639              377.164257                    2.222415          2.144133       2.145004                      0.456929                 157.219756                  157.155920
+   50.00              17.728511              377.110694                    2.222589          3.839306       3.842799                      0.818707                 157.200191                  157.057296
+   60.00              14.773759              377.023892                    2.222870          5.802300       5.811885                      1.238585                 157.157478                  156.898293
+   70.00              12.663222              376.900808                    2.223269          7.808703       7.828989                      1.669219                 157.090632                  156.683602
+   80.00              11.080319              376.742554                    2.223782          9.708118       9.744020                      2.078726                 157.006332                  156.427845
+   90.00               9.849173              376.551941                    2.224402         11.425732      11.481799                      2.451114                 156.907899                  156.141707
+  100.00               8.864256              376.332871                    2.225114         12.938111      13.018179                      2.781231                 156.796755                  155.832377
+  110.00               8.058414              376.088863                    2.225910         14.250271      14.357387                      3.069971                 156.672833                  155.503937
+  120.00               7.386880              375.822650                    2.226779         15.380380      15.516868                      3.321010                 156.537312                  155.160390
+  130.00               6.818658              375.536923                    2.227714         16.351028      16.518610                      3.538999                 156.390752                  154.804158
+  140.00               6.331611              375.234051                    2.228707         17.184829      17.384756                      3.728603                 156.234435                  154.437714
+  150.00               5.909504              374.916157                    2.229752         17.902451      18.135618                      3.894091                 156.069802                  154.063238
+  160.00               5.540160              374.584892                    2.230843         18.521945      18.788981                      4.039200                 155.898134                  153.682446
+  170.00               5.214268              374.241783                    2.231976         19.058678      19.360024                      4.167105                 155.720828                  153.296974
+  180.00               4.924586              373.888568                    2.233145         19.525553      19.861513                      4.280496                 155.538273                  152.907327
+  190.00               4.665398              373.526569                    2.234347         19.933340      20.304121                      4.381604                 155.351491                  152.514560
+  200.00               4.432128              373.156829                    2.235578         20.290999      20.696745                      4.472294                 155.161085                  152.119259
+  210.00               4.221074              372.780237                    2.236835         20.605983      21.046793                      4.554123                 154.967400                  151.721719
+  220.00               4.029207              372.397413                    2.238117         20.884496      21.360446                      4.628402                 154.770330                  151.321769
+  230.00               3.854024              372.008921                    2.239421         21.131720      21.642869                      4.696230                 154.569769                  150.919225
+  240.00               3.693440              371.615199                    2.240747         21.351988      21.898392                      4.758515                 154.365977                  150.514269
+  250.00               3.545702              371.216608                    2.242094         21.548942      22.130653                      4.816016                 154.159428                  150.107297
+  260.00               3.409329              370.813507                    2.243460         21.725651      22.342725                      4.869370                 153.950534                  149.698641
+  270.00               3.283058              370.775298                    2.243589         21.880767      22.531171                      4.906970                 154.061226                  149.613965
+  280.00               3.165806              370.340355                    2.245068         22.024873      22.710803                      4.954258                 153.828185                  149.182144
+  290.00               3.056640              369.902522                    2.246562         22.155363      22.876899                      4.998765                 153.594836                  148.750464
+  300.00               2.954752              369.462083                    2.248070         22.273854      23.031089                      5.040855                 153.360524                  148.318213
+  310.00               2.859437              369.019255                    2.249591         22.381738      23.174772                      5.080812                 153.125587                  147.885669
+  320.00               2.770080              368.574206                    2.251125         22.480212      23.309159                      5.118902                 152.889759                  147.452518
+  330.00               2.686138              368.127131                    2.252671         22.570316      23.435300                      5.155350                 152.652932                  147.018602
+  340.00               2.607134              367.678089                    2.254230         22.652952      23.554105                      5.190347                 152.415188                  146.583961
+  350.00               2.532644              367.227166                    2.255801         22.728906      23.666370                      5.224050                 152.176833                  146.148856
+  360.00               2.462293              366.774530                    2.257384         22.798864      23.772794                      5.256622                 151.937461                  145.712846
+  370.00               2.395745              366.320424                    2.258977         22.863427      23.873990                      5.288207                 151.696705                  145.275530
+  380.00               2.332699              365.864982                    2.260581         22.923127      23.970496                      5.318909                 151.454878                  144.837190
+  390.00               2.272886              365.408217                    2.262196         22.978429      24.062794                      5.348849                 151.211425                  144.397238
+  400.00               2.216064              364.950224                    2.263820         23.029748      24.151299                      5.378090                 150.967167                  143.956469
+  410.00               2.162014              364.490896                    2.265456         23.077451      24.236396                      5.406740                 150.721348                  143.514098
+  420.00               2.110537              364.030479                    2.267102         23.121863      24.318414                      5.434858                 150.474330                  143.070464
+  430.00               2.061455              363.568933                    2.268758         23.163275      24.397653                      5.462501                 150.226352                  142.625782
+  440.00               2.014604              363.106273                    2.270424         23.201947      24.474381                      5.489729                 149.977322                  142.179938
+  450.00               1.969835              362.642579                    2.272101         23.238111      24.548839                      5.516599                 149.727152                  141.732825
+  460.00               1.927012              362.177813                    2.273788         23.271977      24.621237                      5.543128                 149.476610                  141.285188
+  470.00               1.886012              361.712012                    2.275485         23.303730      24.691778                      5.569385                 149.225044                  140.836360
+  480.00               1.846720              361.245298                    2.277192         23.333541      24.760623                      5.595352                 148.973885                  140.387755
+  490.00               1.809032              360.777670                    2.278909         23.361562      24.827955                      5.621151                 148.720933                  139.937154
+  500.00               1.772851              360.309154                    2.280636         23.387932      24.893905                      5.646760                 148.467564                  139.485921
+  510.00               1.738089              359.839771                    2.282374         23.412775      24.958602                      5.672195                 148.214119                  139.034380
+  520.00               1.704665              359.369528                    2.284121         23.436205      25.022171                      5.697498                 147.960221                  138.582140
+  530.00               1.672501              358.898501                    2.285879         23.458325      25.084713                      5.722661                 147.706634                  138.129954
+  540.00               1.641529              358.426662                    2.287647         23.479230      25.146330                      5.747712                 147.453264                  137.677711
+  550.00               1.611683              357.953938                    2.289425         23.499006      25.207121                      5.772692                 147.199591                  137.224880
+  560.00               1.582903              357.479606                    2.291216         23.517734      25.267189                      5.797667                 146.944633                  136.770447
+  570.00               1.555133              357.003459                    2.293022         23.535485      25.326631                      5.822701                 146.687326                  136.313332
+  580.00               1.528320              356.525421                    2.294843         23.552327      25.385524                      5.847825                 146.427433                  135.853283
+  590.00               1.502416              356.045610                    2.296678         23.568317      25.443911                      5.872973                 146.166867                  135.392202
+  600.00               1.477376              355.563903                    2.298528         23.583514      25.501854                      5.898155                 145.905785                  134.930230
+  610.00               1.453157              355.080264                    2.300394         23.597966      25.559423                      5.923415                 145.643476                  134.466644
+  620.00               1.429719              354.594861                    2.302274         23.611722      25.616661                      5.948737                 145.380661                  134.002155
+  630.00               1.407025              354.107558                    2.304170         23.624825      25.673615                      5.974118                 145.117660                  133.537069
+  640.00               1.385040              353.618434                    2.306081         23.637314      25.730354                      5.999634                 144.853081                  133.069983
+  650.00               1.363732              353.127446                    2.308009         23.649228      25.786900                      6.025227                 144.588489                  132.602449
+  660.00               1.343069              352.634631                    2.309952         23.660600      25.843308                      6.050945                 144.323023                  132.133596
+  670.00               1.323023              352.139913                    2.311911         23.671462      25.899624                      6.076813                 144.056440                  131.663166
+  680.00               1.303567              351.643340                    2.313886         23.681843      25.955870                      6.102800                 143.789621                  131.192031
+  690.00               1.284675              351.144919                    2.315878         23.691772      26.012090                      6.128938                 143.522053                  130.719666
+  700.00               1.266322              350.644637                    2.317886         23.701274      26.068325                      6.155251                 143.253493                  130.245816
+  710.00               1.248487              350.142491                    2.319912         23.710372      26.124590                      6.181706                 142.984805                  129.771333
+  720.00               1.231147              349.638402                    2.321954         23.719089      26.180933                      6.208353                 142.715165                  129.295380
+  730.00               1.214282              349.132441                    2.324014         23.727445      26.237387                      6.235210                 142.444370                  128.817742
+  740.00               1.197872              348.624556                    2.326092         23.735460      26.293974                      6.262267                 142.172817                  128.338806
+  750.00               1.181901              348.114688                    2.328187         23.743152      26.350721                      6.289531                 141.900562                  127.858612
+  760.00               1.166349              347.603035                    2.330300         23.750538      26.407654                      6.317012                 141.627551                  127.377102
+  770.00               1.151202              347.089364                    2.332432         23.757633      26.464800                      6.344716                 141.353850                  126.894322
+  780.00               1.136443              346.573726                    2.334583         23.764452      26.522191                      6.372673                 141.079046                  126.409848
+  790.00               1.122058              346.470915                    2.335013         23.770464      26.568538                      6.381241                 141.143881                  126.279271
+  800.00               1.108032              345.916219                    2.337340         23.776832      26.627224                      6.411192                 140.838525                  125.762036
+  810.00               1.094353              345.360908                    2.339682         23.782958      26.686241                      6.441418                 140.532540                  125.243550
+  820.00               1.081007              344.804970                    2.342040         23.788856      26.745583                      6.471867                 140.227122                  124.724996
+  830.00               1.067983              344.248408                    2.344413         23.794534      26.805273                      6.502549                 139.922172                  124.206267
+  840.00               1.055269              343.691185                    2.346802         23.800005      26.865348                      6.533506                 139.617053                  123.686712
+  850.00               1.042854              343.133291                    2.349207         23.805278      26.925814                      6.564713                 139.312375                  123.166931
+  860.00               1.030727              342.574836                    2.351627         23.810362      26.986706                      6.596211                 139.007473                  122.646251
+  870.00               1.018880              342.015783                    2.354063         23.815266      27.048035                      6.627990                 138.702710                  122.125024
+  880.00               1.007302              341.456114                    2.356516         23.819998      27.109806                      6.660025                 138.398659                  121.603810
+  890.00               0.995984              340.895825                    2.358985         23.824566      27.172061                      6.692368                 138.094506                  121.081785
+  900.00               0.984917              340.334958                    2.361470         23.828976      27.234815                      6.725021                 137.790326                  120.559015
+  910.00               0.974094              339.773487                    2.363972         23.833237      27.298086                      6.757990                 137.486182                  120.035548
+  920.00               0.963506              339.211494                    2.366491         23.837354      27.361890                      6.791273                 137.182208                  119.511513
+  930.00               0.953146              338.648800                    2.369027         23.841335      27.426259                      6.824902                 136.878021                  118.986505
+  940.00               0.943006              338.085598                    2.371580         23.845184      27.491194                      6.858854                 136.574126                  118.461028
+  950.00               0.933080              337.521780                    2.374151         23.848907      27.556725                      6.893155                 136.270203                  117.934745
+  960.00               0.923360              336.957402                    2.376739         23.852509      27.622855                      6.927784                 135.966780                  117.408174
+  970.00               0.913841              336.392473                    2.379345         23.855997      27.689637                      6.962812                 135.662736                  116.880181
+  980.00               0.904516              335.826921                    2.381969         23.859373      27.757061                      6.998194                 135.359025                  116.351708
+  990.00               0.895379              335.260769                    2.384611         23.862644      27.825169                      7.033975                 135.055002                  115.822096
+ 1000.00               0.886426              334.694100                    2.387271         23.865812      27.893960                      7.070132                 134.751203                  115.291873
+ 1010.00               0.877649              334.126779                    2.389950         23.868883      27.963489                      7.106732                 134.446671                  114.760064
+ 1020.00               0.869045              333.557446                    2.392655         23.871860      28.033819                      7.143834                 134.140846                  114.226018
+ 1030.00               0.860607              332.985562                    2.395388         23.874749      28.104989                      7.181465                 133.833556                  113.689518
+ 1040.00               0.852332              332.411062                    2.398150         23.877553      28.177036                      7.219659                 133.524494                  113.150233
+ 1050.00               0.844215              331.833803                    2.400943         23.880275      28.249994                      7.258436                 133.213582                  112.608057
+ 1060.00               0.836251              331.253839                    2.403766         23.882917      28.323894                      7.297817                 132.900717                  112.062870
+ 1070.00               0.828435              330.671076                    2.406621         23.885484      28.398775                      7.337834                 132.585684                  111.514429
+ 1080.00               0.820764              330.085486                    2.409508         23.887978      28.474665                      7.378493                 132.268603                  110.962832
+ 1090.00               0.813234              329.497014                    2.412427         23.890401      28.551599                      7.419821                 131.949346                  110.407925
+ 1100.00               0.805841              328.905585                    2.415380         23.892757      28.629628                      7.461862                 131.627536                  109.849303
+ 1110.00               0.798582              328.311235                    2.418366         23.895047      28.708749                      7.504577                 131.304018                  109.287789
+ 1120.00               0.791451              327.713824                    2.421388         23.897274      28.789039                      7.548050                 130.977836                  108.722395
+ 1130.00               0.784447              327.113335                    2.424446         23.899441      28.870530                      7.592293                 130.649118                  108.153222
+ 1140.00               0.777566              326.509666                    2.427540         23.901549      28.953232                      7.637283                 130.318501                  107.580874
+ 1150.00               0.770805              325.902684                    2.430672         23.903601      29.037259                      7.683153                 129.984428                  107.003759
+ 1160.00               0.764160              325.292717                    2.433840         23.905598      29.122569                      7.729808                 129.648499                  106.423472
+ 1170.00               0.757629              324.679194                    2.437050         23.907543      29.209288                      7.777385                 129.309218                  105.838449
+ 1180.00               0.751208              324.062277                    2.440299         23.909437      29.297428                      7.825867                 128.967162                  105.249249
+ 1190.00               0.744895              323.441937                    2.443589         23.911283      29.387033                      7.875274                 128.622385                  104.655892
+ 1200.00               0.738688              322.818102                    2.446921         23.913081      29.478161                      7.925647                 128.274715                  104.058172
+ 1210.00               0.732583              322.675694                    2.447685         23.914578      29.538971                      7.940942                 128.308664                  103.877942
+ 1220.00               0.726578              321.992292                    2.451369         23.916317      29.636082                      7.996785                 127.913153                  103.225909
+ 1230.00               0.720671              321.307575                    2.455088         23.918012      29.734894                      8.053654                 127.516056                  102.570756
+ 1240.00               0.714859              320.621566                    2.458844         23.919663      29.835423                      8.111530                 127.117979                  101.913060
+ 1250.00               0.709140              319.934424                    2.462636         23.921272      29.937731                      8.170457                 126.718687                  101.252571
+ 1260.00               0.703512              319.245895                    2.466466         23.922840      30.041915                      8.230520                 126.317578                  100.588636
+ 1270.00               0.697973              318.556096                    2.470334         23.924369      30.147997                      8.291702                 125.915213                   99.921795
+ 1280.00               0.692520              317.865039                    2.474241         23.925859      30.256050                      8.354053                 125.511389                   99.251816
+ 1290.00               0.687152              317.172571                    2.478187         23.927313      30.366169                      8.417651                 125.105638                   98.578185
+ 1300.00               0.681866              316.478819                    2.482173         23.928731      30.478388                      8.482492                 124.698406                   97.901326
+ 1310.00               0.676661              315.783882                    2.486199         23.930114      30.592756                      8.548590                 124.289930                   97.221453
+ 1320.00               0.671535              315.087587                    2.490266         23.931463      30.709404                      8.616062                 123.879384                   96.537690
+ 1330.00               0.666485              314.389933                    2.494375         23.932780      30.828386                      8.684920                 123.467078                   95.850312
+ 1340.00               0.661512              313.690853                    2.498527         23.934066      30.949787                      8.755217                 123.052945                   95.159210
+ 1350.00               0.656612              312.990522                    2.502722         23.935320      31.073680                      8.826992                 122.637003                   94.464383
+ 1360.00               0.651783              312.288786                    2.506961         23.936546      31.200200                      8.900353                 122.218661                   93.765187
+ 1370.00               0.647026              311.585734                    2.511244         23.937742      31.329357                      8.975253                 121.798905                   93.062579
+ 1380.00               0.642337              310.880890                    2.515575         23.938910      31.461374                      9.051893                 121.376306                   92.355042
+ 1390.00               0.637716              310.171438                    2.519972         23.940053      31.596621                      9.130584                 120.948944                   91.640309
+ 1400.00               0.633161              309.456201                    2.524444         23.941171      31.735342                      9.211510                 120.516033                   90.917404
+ 1410.00               0.628671              308.734858                    2.528994         23.942265      31.877741                      9.294818                 120.077073                   90.185722
+ 1420.00               0.624243              308.007441                    2.533624         23.943336      32.023982                      9.380608                 119.631997                   89.445126
+ 1430.00               0.619878              307.273611                    2.538337         23.944384      32.174279                      9.469028                 119.180470                   88.695162
+ 1440.00               0.615573              306.533219                    2.543136         23.945411      32.328859                      9.560231                 118.722111                   87.935355
+ 1450.00               0.611328              305.786001                    2.548024         23.946416      32.487938                      9.654353                 118.256833                   87.165497
+ 1460.00               0.607141              305.031969                    2.553004         23.947401      32.651735                      9.751530                 117.784555                   86.385422
+ 1470.00               0.603011              304.270478                    2.558082         23.948365      32.820570                      9.851988                 117.304646                   85.594325
+ 1480.00               0.598936              303.501498                    2.563259         23.949311      32.994712                      9.955899                 116.816915                   84.791910
+ 1490.00               0.594916              302.724935                    2.568540         23.950238      33.174416                     10.063413                 116.321483                   83.978183
+ 1500.00               0.590950              301.940113                    2.573929         23.951147      33.360131                     10.174863                 115.817196                   83.151791
+ 1510.00               0.587037              301.146951                    2.579432         23.952038      33.552159                     10.290424                 115.304201                   82.312754
+ 1520.00               0.583175              300.345167                    2.585051         23.952912      33.750932                     10.410396                 114.781838                   81.460247
+ 1530.00               0.579363              300.285737                    2.585470         23.953539      33.836938                     10.430514                 114.862200                   81.312208
+ 1540.00               0.575601              299.360977                    2.592029         23.954415      34.063343                     10.572043                 114.236032                   80.334373
+ 1550.00               0.571887              298.432445                    2.598695         23.955273      34.297910                     10.718725                 113.604318                   79.346598
+ 1560.00               0.568222              297.500191                    2.605469         23.956113      34.541161                     10.870911                 112.966517                   78.348226
+ 1570.00               0.564602              296.564095                    2.612355         23.956936      34.793646                     11.028954                 112.322289                   77.338775
+ 1580.00               0.561029              295.624104                    2.619355         23.957742      35.055911                     11.193194                 111.671597                   76.318065
+ 1590.00               0.557500              294.680114                    2.626473         23.958531      35.328583                     11.364025                 111.014200                   75.285704
+ 1600.00               0.554016              293.732193                    2.633711         23.959305      35.612308                     11.541854                 110.349956                   74.241417
+ 1610.00               0.550575              292.780262                    2.641072         23.960062      35.907864                     11.727190                 109.678334                   73.184517
+ 1620.00               0.547176              291.824382                    2.648559         23.960804      36.215950                     11.920446                 108.999619                   72.115146
+ 1630.00               0.543819              290.864415                    2.656175         23.961531      36.537489                     12.122223                 108.313236                   71.032550
+ 1640.00               0.540503              289.900263                    2.663924         23.962244      36.873418                     12.333110                 107.619002                   69.936365
+ 1650.00               0.537228              288.931939                    2.671809         23.962943      37.224710                     12.553705                 106.916941                   68.826447
+ 1660.00               0.533991              287.956341                    2.679859         23.963628      37.593468                     12.785513                 106.203535                   67.698518
+ 1670.00               0.530794              286.963185                    2.688165         23.964304      37.983843                     13.031565                 105.470739                   66.542315
+ 1680.00               0.527634              285.951194                    2.696745         23.964970      38.398384                     13.293612                 104.716186                   65.354839
+ 1690.00               0.524512              284.918403                    2.705626         23.965626      38.839828                     13.573453                 103.938615                   64.134012
+ 1700.00               0.521427              283.863780                    2.714827         23.966274      39.311403                     13.873274                 103.135847                   62.876971
+ 1710.00               0.518378              282.785767                    2.724372         23.966914      39.816760                     14.195493                 102.306237                   61.581222
+ 1720.00               0.515364              281.682197                    2.734292         23.967545      40.360215                     14.542957                 101.448081                   60.244017
+ 1730.00               0.512385              280.551176                    2.744620         23.968170      40.947165                     14.919311                 100.558231                   58.861140
+ 1740.00               0.509440              279.390364                    2.755392         23.968788      41.583914                     15.328761                  99.633915                   57.428557
+ 1750.00               0.506529              280.016499                    2.749560         23.969003      41.455610                     15.161926                 100.288431                   57.985246
+ 1760.00               0.503651              278.442875                    2.764316         23.969691      42.315126                     15.731324                  98.989462                   56.073253
+ 1770.00               0.500805              276.852131                    2.779570         23.970366      43.261328                     16.357929                  97.661291                   54.112461
+ 1780.00               0.497992              275.243968                    2.795347         23.971030      44.308397                     17.051098                  96.301930                   52.099752
+ 1790.00               0.495210              273.618179                    2.811669         23.971683      45.473153                     17.821831                  94.910639                   50.033209
+ 1800.00               0.492459              271.973892                    2.828571         23.972325      46.776907                     18.684108                  93.485844                   47.909816
+ 1810.00               0.489738              270.311160                    2.846076         23.972956      48.246434                     19.655558                  92.025308                   45.726046
+ 1820.00               0.487047              268.629337                    2.864217         23.973577      49.914986                     20.757899                  90.528463                   43.479749
+ 1830.00               0.484386              266.927909                    2.883030         23.974187      51.826978                     22.020371                  88.992147                   41.166097
+ 1840.00               0.481753              265.178978                    2.902863         23.974793      54.071684                     23.502949                  87.389369                   38.747490
+ 1850.00               0.479149              263.304877                    2.924693         23.975408      56.852501                     25.344016                  85.640997                   36.115875
+ 1860.00               0.476573              261.269242                    2.949101         23.976038      60.429803                     27.718027                  83.706316                   33.211193
+ 1870.00               0.474024              259.018636                    2.976965         23.976692      65.281145                     30.945127                  81.523120                   29.942102
+ 1880.00               0.471503              222.364240                    3.597724         23.982919     -30.669231                    -33.691438                  40.566752                  -31.722645
+ 1890.00               0.469008              222.364240                    3.597724         23.983096     -34.534883                    -35.883471                  42.889445                  -29.785006
+[AGL_THERMAL_PROPERTIES_TEMPERATURE]STOP
+[AFLOW] ************************************************************************************************************************** 
+[AGL_ENERGIES_TEMPERATURE]START
+#  T (K)        G (eV/cell)     Fvib (meV/cell)         Uvib (meV/cell)         Svib (meV/cell*K)         G (eV/atom)     Fvib (meV/atom)         Uvib (meV/atom)         Svib (meV/atom*K)
+    0.00         -34.587552          292.543868              292.543868                  0.000000           -4.323444           36.567984               36.567984                  0.000000
+   10.00         -34.587555          292.541152              292.551162                  0.001001           -4.323444           36.567644               36.568895                  0.000125
+   20.00         -34.587607          292.501102              292.661263                  0.008008           -4.323451           36.562638               36.582658                  0.001001
+   30.00         -34.587795          292.331041              293.141037                  0.027000           -4.323474           36.541380               36.642630                  0.003375
+   40.00         -34.588254          291.875592              294.408515                  0.063323           -4.323532           36.484449               36.801064                  0.007915
+   50.00         -34.589168          290.935442              296.918210                  0.119655           -4.323646           36.366930               37.114776                  0.014957
+   60.00         -34.590730          289.308560              300.998645                  0.194835           -4.323841           36.163570               37.624831                  0.024354
+   70.00         -34.593112          286.820213              306.780064                  0.285141           -4.324139           35.852527               38.347508                  0.035643
+   80.00         -34.596455          283.340502              314.232414                  0.386149           -4.324557           35.417563               39.279052                  0.048269
+   90.00         -34.600849          278.783273              323.230953                  0.493863           -4.325106           34.847909               40.403869                  0.061733
+  100.00         -34.606344          273.099116              333.610669                  0.605116           -4.325793           34.137389               41.701334                  0.075639
+  110.00         -34.612959          266.265755              345.199145                  0.717576           -4.326620           33.283219               43.149893                  0.089697
+  120.00         -34.620697          258.280012              357.833784                  0.829615           -4.327587           32.285001               44.729223                  0.103702
+  130.00         -34.629547          249.152359              371.369527                  0.940132           -4.328693           31.144045               46.421191                  0.117517
+  140.00         -34.639490          238.902130              385.680474                  1.048417           -4.329936           29.862766               48.210059                  0.131052
+  150.00         -34.650502          227.554302              400.659051                  1.154032           -4.331313           28.444288               50.082381                  0.144254
+  160.00         -34.662556          215.136946              416.213966                  1.256731           -4.332820           26.892118               52.026746                  0.157091
+  170.00         -34.675623          201.679961              432.268112                  1.356401           -4.334453           25.209995               54.033514                  0.169550
+  180.00         -34.689672          187.214393              448.756517                  1.453012           -4.336209           23.401799               56.094565                  0.181626
+  190.00         -34.704672          171.770989              465.624121                  1.546595           -4.338084           21.471374               58.203015                  0.193324
+  200.00         -34.720593          155.379822              482.824179                  1.637222           -4.340074           19.422478               60.353022                  0.204653
+  210.00         -34.737407          138.070096              500.316906                  1.724985           -4.342176           17.258762               62.539613                  0.215623
+  220.00         -34.755084          119.869774              518.068273                  1.809993           -4.344385           14.983722               64.758534                  0.226249
+  230.00         -34.773596          100.805716              536.049113                  1.892363           -4.346700           12.600714               67.006139                  0.236545
+  240.00         -34.792919           80.903522              554.234307                  1.972212           -4.349115           10.112940               69.279288                  0.246526
+  250.00         -34.813028           60.187573              572.602145                  2.049658           -4.351628            7.523447               71.575268                  0.256207
+  260.00         -34.833899           38.681138              591.133802                  2.124818           -4.354237            4.835142               73.891725                  0.265602
+  270.00         -34.855504           17.013740              609.913189                  2.195924           -4.356938            2.126717               76.239149                  0.274490
+  280.00         -34.877839           -6.029217              628.715734                  2.266946           -4.359730           -0.753652               78.589467                  0.283368
+  290.00         -34.900873          -29.800481              647.639606                  2.336000           -4.362609           -3.725060               80.954951                  0.292000
+  300.00         -34.924588          -54.280851              666.673676                  2.403182           -4.365574           -6.785106               83.334210                  0.300398
+  310.00         -34.948966          -79.452129              685.808097                  2.468581           -4.368621           -9.931516               85.726012                  0.308573
+  320.00         -34.973987         -105.297048              705.034133                  2.532285           -4.371748          -13.162131               88.129267                  0.316536
+  330.00         -34.999636         -131.799087              724.344028                  2.594373           -4.374955          -16.474886               90.543004                  0.324297
+  340.00         -35.025897         -158.942747              743.730836                  2.654922           -4.378237          -19.867843               92.966355                  0.331865
+  350.00         -35.052756         -186.713193              763.188354                  2.714004           -4.381594          -23.339149               95.398544                  0.339251
+  360.00         -35.080197         -215.096098              782.711036                  2.771686           -4.385025          -26.887012               97.838880                  0.346461
+  370.00         -35.108205         -244.077589              802.293914                  2.828031           -4.388526          -30.509699              100.286739                  0.353504
+  380.00         -35.136770         -273.644596              821.932486                  2.883098           -4.392096          -34.205575              102.741561                  0.360387
+  390.00         -35.165876         -303.784877              841.622665                  2.936942           -4.395735          -37.973110              105.202833                  0.367118
+  400.00         -35.195514         -334.486545              861.360764                  2.989618           -4.399439          -41.810818              107.670095                  0.373702
+  410.00         -35.225671         -365.738683              881.143399                  3.041176           -4.403209          -45.717335              110.142925                  0.380147
+  420.00         -35.256337         -397.530019              900.967557                  3.091661           -4.407042          -49.691252              112.620945                  0.386458
+  430.00         -35.287500         -429.850396              920.830441                  3.141118           -4.410938          -53.731300              115.103805                  0.392640
+  440.00         -35.319152         -462.689964              940.729507                  3.189590           -4.414894          -57.836245              117.591188                  0.398699
+  450.00         -35.351283         -496.039095              960.662436                  3.237115           -4.418910          -62.004887              120.082804                  0.404639
+  460.00         -35.383884         -529.888852              980.627085                  3.283730           -4.422985          -66.236106              122.578386                  0.410466
+  470.00         -35.416945         -564.230457             1000.621499                  3.329472           -4.427118          -70.528807              125.077687                  0.416184
+  480.00         -35.450459         -599.055227             1020.643890                  3.374373           -4.431307          -74.881903              127.580486                  0.421797
+  490.00         -35.484417         -634.355137             1040.692594                  3.418465           -4.435552          -79.294392              130.086574                  0.427308
+  500.00         -35.518811         -670.122379             1060.766080                  3.461777           -4.439851          -83.765297              132.595760                  0.432722
+  510.00         -35.553635         -706.349457             1080.862931                  3.504338           -4.444204          -88.293682              135.107866                  0.438042
+  520.00         -35.588880         -743.029184             1100.981833                  3.546175           -4.448610          -92.878648              137.622729                  0.443272
+  530.00         -35.624540         -780.154415             1121.121580                  3.587313           -4.453067          -97.519302              140.140198                  0.448414
+  540.00         -35.660609         -817.718577             1141.281036                  3.627777           -4.457576         -102.214822              142.660130                  0.453472
+  550.00         -35.697078         -855.715480             1161.459141                  3.667590           -4.462135         -106.964435              145.182393                  0.458449
+  560.00         -35.733943         -894.141328             1181.654824                  3.706779           -4.466743         -111.767666              147.706853                  0.463347
+  570.00         -35.771195         -932.990983             1201.867151                  3.745365           -4.471399         -116.623873              150.233394                  0.468171
+  580.00         -35.808829         -972.259108             1222.095271                  3.783370           -4.476104         -121.532389              152.761909                  0.472921
+  590.00         -35.846841        -1011.939915             1242.338411                  3.820811           -4.480855         -126.492489              155.292301                  0.477601
+  600.00         -35.885225        -1052.028617             1262.595821                  3.857707           -4.485653         -131.503577              157.824478                  0.482213
+  610.00         -35.923975        -1092.520334             1282.866807                  3.894077           -4.490497         -136.565042              160.358351                  0.486760
+  620.00         -35.963087        -1133.409612             1303.150745                  3.929936           -4.495386         -141.676202              162.893843                  0.491242
+  630.00         -36.002556        -1174.692257             1323.447013                  3.965300           -4.500319         -146.836532              165.430877                  0.495663
+  640.00         -36.042376        -1216.363446             1343.755053                  4.000185           -4.505297         -152.045431              167.969382                  0.500023
+  650.00         -36.082543        -1258.418964             1364.074325                  4.034605           -4.510318         -157.302370              170.509291                  0.504326
+  660.00         -36.123053        -1300.854431             1384.404332                  4.068574           -4.515382         -162.606804              173.050542                  0.508572
+  670.00         -36.163900        -1343.666046             1404.744593                  4.102105           -4.520488         -167.958256              175.593074                  0.512763
+  680.00         -36.205082        -1386.849665             1425.094668                  4.135212           -4.525635         -173.356208              178.136833                  0.516902
+  690.00         -36.246592        -1430.401415             1445.454137                  4.167907           -4.530824         -178.800177              180.681767                  0.520988
+  700.00         -36.288428        -1474.317641             1465.822604                  4.200200           -4.536054         -184.289705              183.227825                  0.525025
+  710.00         -36.330586        -1518.594760             1486.199692                  4.232105           -4.541323         -189.824345              185.774962                  0.529013
+  720.00         -36.373061        -1563.229624             1506.585041                  4.263631           -4.546633         -195.403703              188.323130                  0.532954
+  730.00         -36.415850        -1608.218569             1526.978322                  4.294790           -4.551981         -201.027321              190.872290                  0.536849
+  740.00         -36.458949        -1653.558555             1547.379215                  4.325592           -4.557369         -206.694819              193.422402                  0.540699
+  750.00         -36.502355        -1699.246692             1567.787412                  4.356045           -4.562794         -212.405836              195.973426                  0.544506
+  760.00         -36.546063        -1745.279027             1588.202649                  4.386160           -4.568258         -218.159878              198.525331                  0.548270
+  770.00         -36.590072        -1791.653644             1608.624633                  4.415946           -4.573759         -223.956705              201.078079                  0.551993
+  780.00         -36.634378        -1838.367446             1629.053113                  4.445411           -4.579297         -229.795931              203.631639                  0.555676
+  790.00         -36.678966        -1883.441691             1649.525276                  4.472110           -4.584871         -235.430211              206.190659                  0.559014
+  800.00         -36.723857        -1930.967676             1669.962384                  4.501163           -4.590482         -241.370959              208.745298                  0.562645
+  810.00         -36.769035        -1978.822727             1690.405511                  4.529911           -4.596129         -247.352841              211.300689                  0.566239
+  820.00         -36.814497        -2027.004119             1710.854437                  4.558364           -4.601812         -253.375515              213.856805                  0.569796
+  830.00         -36.860240        -2075.509126             1731.308956                  4.586528           -4.607530         -259.438641              216.413620                  0.573316
+  840.00         -36.906262        -2124.335304             1751.768867                  4.614410           -4.613283         -265.541913              218.971108                  0.576801
+  850.00         -36.952560        -2173.480152             1772.233981                  4.642017           -4.619070         -271.685019              221.529248                  0.580252
+  860.00         -36.999131        -2222.940592             1792.704127                  4.669354           -4.624891         -277.867574              224.088016                  0.583669
+  870.00         -37.045972        -2272.714383             1813.179130                  4.696429           -4.630746         -284.089298              226.647391                  0.587054
+  880.00         -37.093082        -2322.799248             1833.658825                  4.723248           -4.636635         -290.349906              229.207353                  0.590406
+  890.00         -37.140458        -2373.192886             1854.143054                  4.749816           -4.642557         -296.649111              231.767882                  0.593727
+  900.00         -37.188097        -2423.892819             1874.631673                  4.776138           -4.648512         -302.986602              234.328959                  0.597017
+  910.00         -37.235996        -2474.896985             1895.124534                  4.802221           -4.654500         -309.362123              236.890567                  0.600278
+  920.00         -37.284155        -2526.202783             1915.621508                  4.828070           -4.660519         -315.775348              239.452688                  0.603509
+  930.00         -37.332570        -2577.809124             1936.122449                  4.853690           -4.666571         -322.226140              242.015306                  0.606711
+  940.00         -37.381240        -2629.712871             1956.627246                  4.879085           -4.672655         -328.714109              244.578406                  0.609886
+  950.00         -37.430161        -2681.912655             1977.135771                  4.904262           -4.678770         -335.239082              247.141971                  0.613033
+  960.00         -37.479334        -2734.406207             1997.647912                  4.929223           -4.684917         -341.800776              249.705989                  0.616153
+  970.00         -37.528754        -2787.191577             2018.163559                  4.953974           -4.691094         -348.398947              252.270445                  0.619247
+  980.00         -37.578420        -2840.267333             2038.682600                  4.978520           -4.697303         -355.033417              254.835325                  0.622315
+  990.00         -37.628331        -2893.631550             2059.204935                  5.002865           -4.703541         -361.703944              257.400617                  0.625358
+ 1000.00         -37.678484        -2947.281953             2079.730473                  5.027012           -4.709810         -368.410244              259.966309                  0.628377
+ 1010.00         -37.728877        -3001.217651             2100.259108                  5.050967           -4.716110         -375.152206              262.532389                  0.631371
+ 1020.00         -37.779509        -3055.445640             2120.790660                  5.074741           -4.722439         -381.930705              265.098833                  0.634343
+ 1030.00         -37.830378        -3109.968058             2141.325008                  5.098343           -4.728797         -388.746007              267.665626                  0.637293
+ 1040.00         -37.881483        -3164.784153             2161.862069                  5.121775           -4.735185         -395.598019              270.232759                  0.640222
+ 1050.00         -37.932821        -3219.893764             2182.401758                  5.145043           -4.741603         -402.486721              272.800220                  0.643130
+ 1060.00         -37.984391        -3275.295490             2202.944004                  5.168150           -4.748049         -409.411936              275.368001                  0.646019
+ 1070.00         -38.036192        -3330.988959             2223.488732                  5.191101           -4.754524         -416.373620              277.936091                  0.648888
+ 1080.00         -38.088221        -3386.973403             2244.035871                  5.213897           -4.761028         -423.371675              280.504484                  0.651737
+ 1090.00         -38.140478        -3443.248297             2264.585355                  5.236545           -4.767560         -430.406037              283.073169                  0.654568
+ 1100.00         -38.192960        -3499.813312             2285.137114                  5.259046           -4.774120         -437.476664              285.642139                  0.657381
+ 1110.00         -38.245667        -3556.667383             2305.691092                  5.281404           -4.780708         -444.583423              288.211386                  0.660176
+ 1120.00         -38.298596        -3613.810745             2326.247221                  5.303623           -4.787325         -451.726343              290.780903                  0.662953
+ 1130.00         -38.351747        -3671.242806             2346.805445                  5.325706           -4.793968         -458.905351              293.350681                  0.665713
+ 1140.00         -38.405119        -3728.963645             2367.365704                  5.347657           -4.800640         -466.120456              295.920713                  0.668457
+ 1150.00         -38.458709        -3786.973619             2387.927938                  5.369480           -4.807339         -473.371702              298.490992                  0.671185
+ 1160.00         -38.512517        -3845.269768             2408.492117                  5.391174           -4.814065         -480.658721              301.061515                  0.673897
+ 1170.00         -38.566541        -3903.855767             2429.058159                  5.412747           -4.820818         -487.981971              303.632270                  0.676593
+ 1180.00         -38.620780        -3962.729985             2449.626027                  5.434200           -4.827598         -495.341248              306.203253                  0.679275
+ 1190.00         -38.675233        -4021.892209             2470.195674                  5.455536           -4.834404         -502.736526              308.774459                  0.681942
+ 1200.00         -38.729899        -4081.342620             2490.767055                  5.476758           -4.841237         -510.167828              311.345882                  0.684595
+ 1210.00         -38.784765        -4137.303935             2511.366806                  5.494769           -4.848096         -517.162992              313.920851                  0.686846
+ 1220.00         -38.839856        -4197.704732             2531.938394                  5.516101           -4.854982         -524.713091              316.492299                  0.689513
+ 1230.00         -38.895155        -4258.383715             2552.511773                  5.537313           -4.861894         -532.297964              319.063972                  0.692164
+ 1240.00         -38.950663        -4319.340005             2573.086901                  5.558409           -4.868833         -539.917501              321.635863                  0.694801
+ 1250.00         -39.006378        -4380.571619             2593.663747                  5.579388           -4.875797         -547.571452              324.207968                  0.697424
+ 1260.00         -39.062300        -4442.079934             2614.242257                  5.600256           -4.882787         -555.259992              326.780282                  0.700032
+ 1270.00         -39.118426        -4503.863379             2634.822397                  5.621012           -4.889803         -562.982922              329.352800                  0.702627
+ 1280.00         -39.174757        -4565.921234             2655.404130                  5.641660           -4.896845         -570.740154              331.925516                  0.705208
+ 1290.00         -39.231291        -4628.254199             2675.987413                  5.662203           -4.903911         -578.531775              334.498427                  0.707775
+ 1300.00         -39.288028        -4690.860656             2696.572217                  5.682641           -4.911004         -586.357582              337.071527                  0.710330
+ 1310.00         -39.344967        -4753.739215             2717.158512                  5.702975           -4.918121         -594.217402              339.644814                  0.712872
+ 1320.00         -39.402107        -4816.890838             2737.746257                  5.723210           -4.925263         -602.111355              342.218282                  0.715401
+ 1330.00         -39.459447        -4880.315065             2758.335419                  5.743346           -4.932431         -610.039383              344.791927                  0.717918
+ 1340.00         -39.516987        -4944.012029             2778.925963                  5.763387           -4.939623         -618.001504              347.365745                  0.720423
+ 1350.00         -39.574726        -5007.979754             2799.517869                  5.783332           -4.946841         -625.997469              349.939734                  0.722916
+ 1360.00         -39.632663        -5072.219201             2820.111099                  5.803184           -4.954083         -634.027400              352.513887                  0.725398
+ 1370.00         -39.690798        -5136.729187             2840.705628                  5.822945           -4.961350         -642.091148              355.088204                  0.727868
+ 1380.00         -39.749129        -5201.513717             2861.301408                  5.842620           -4.968641         -650.189215              357.662676                  0.730327
+ 1390.00         -39.807657        -5266.598723             2881.898281                  5.862228           -4.975957         -658.324840              360.237285                  0.732779
+ 1400.00         -39.866380        -5331.995792             2902.496173                  5.881780           -4.983297         -666.499474              362.812022                  0.735222
+ 1410.00         -39.925299        -5397.708825             2923.095049                  5.901279           -4.990662         -674.713603              365.386881                  0.737660
+ 1420.00         -39.984412        -5463.738539             2943.694891                  5.920728           -4.998051         -682.967317              367.961861                  0.740091
+ 1430.00         -40.043719        -5530.089227             2964.295666                  5.940129           -5.005465         -691.261153              370.536958                  0.742516
+ 1440.00         -40.103220        -5596.763478             2984.897351                  5.959487           -5.012903         -699.595435              373.112169                  0.744936
+ 1450.00         -40.162914        -5663.765150             3005.499917                  5.978803           -5.020364         -707.970644              375.687490                  0.747350
+ 1460.00         -40.222801        -5731.095445             3026.103348                  5.998081           -5.027850         -716.386931              378.262919                  0.749760
+ 1470.00         -40.282881        -5798.762215             3046.707602                  6.017326           -5.035360         -724.845277              380.838450                  0.752166
+ 1480.00         -40.343153        -5866.767358             3067.312664                  6.036541           -5.042894         -733.345920              383.414083                  0.754568
+ 1490.00         -40.403616        -5935.113496             3087.918514                  6.055726           -5.050452         -741.889187              385.989814                  0.756966
+ 1500.00         -40.464272        -6003.809299             3108.525113                  6.074890           -5.058034         -750.476162              388.565639                  0.759361
+ 1510.00         -40.525118        -6072.857568             3129.132444                  6.094033           -5.065640         -759.107196              391.141556                  0.761754
+ 1520.00         -40.586156        -6142.263304             3149.740484                  6.113160           -5.073270         -767.782913              393.717561                  0.764145
+ 1530.00         -40.647361        -6204.090046             3170.379640                  6.127104           -5.080920         -775.511256              396.297455                  0.765888
+ 1540.00         -40.708787        -6275.270583             3190.984539                  6.146919           -5.088598         -784.408823              398.873067                  0.768365
+ 1550.00         -40.770403        -6346.783622             3211.590390                  6.166693           -5.096300         -793.347953              401.448799                  0.770837
+ 1560.00         -40.832209        -6418.629714             3232.197178                  6.186427           -5.104026         -802.328714              404.024647                  0.773303
+ 1570.00         -40.894205        -6490.811287             3252.804882                  6.206125           -5.111776         -811.351411              406.600610                  0.775766
+ 1580.00         -40.956391        -6563.330102             3273.413485                  6.225787           -5.119549         -820.416263              409.176686                  0.778223
+ 1590.00         -41.018767        -6636.188567             3294.022966                  6.245416           -5.127346         -829.523571              411.752871                  0.780677
+ 1600.00         -41.081334        -6709.387205             3314.633313                  6.265013           -5.135167         -838.673401              414.329164                  0.783127
+ 1610.00         -41.144093        -6782.928237             3335.244509                  6.284579           -5.143012         -847.866030              416.905564                  0.785572
+ 1620.00         -41.207043        -6856.812333             3355.856541                  6.304117           -5.150880         -857.101542              419.482068                  0.788015
+ 1630.00         -41.270185        -6931.042481             3376.469391                  6.323627           -5.158773         -866.380310              422.058674                  0.790453
+ 1640.00         -41.333521        -7005.621310             3397.083042                  6.343112           -5.166690         -875.702664              424.635380                  0.792889
+ 1650.00         -41.397049        -7080.550216             3417.697481                  6.362574           -5.174631         -885.068777              427.212185                  0.795322
+ 1660.00         -41.460772        -7155.867807             3438.312584                  6.382036           -5.182596         -894.483476              429.789073                  0.797755
+ 1670.00         -41.524689        -7231.700709             3458.927977                  6.401574           -5.190586         -903.962589              432.365997                  0.800197
+ 1680.00         -41.588802        -7308.070707             3479.543615                  6.421199           -5.198600         -913.508838              434.942952                  0.802650
+ 1690.00         -41.653112        -7385.008770             3500.159434                  6.440928           -5.206639         -923.126096              437.519929                  0.805116
+ 1700.00         -41.717619        -7462.535393             3520.775403                  6.460771           -5.214702         -932.816924              440.096925                  0.807596
+ 1710.00         -41.782324        -7540.678342             3541.391472                  6.480743           -5.222791         -942.584793              442.673934                  0.810093
+ 1720.00         -41.847231        -7619.474017             3562.007578                  6.500861           -5.230904         -952.434252              445.250947                  0.812608
+ 1730.00         -41.912339        -7698.956683             3582.623665                  6.521145           -5.239042         -962.369585              447.827958                  0.815143
+ 1740.00         -41.977650        -7779.167523             3603.239668                  6.541613           -5.247206         -972.395940              450.404959                  0.817702
+ 1750.00         -42.043065        -7836.530535             3623.915489                  6.548826           -5.255383         -979.566317              452.989436                  0.818603
+ 1760.00         -42.108826        -7922.616923             3644.519206                  6.572236           -5.263603         -990.327115              455.564901                  0.821530
+ 1770.00         -42.174788        -8009.396886             3665.123538                  6.595774           -5.271849        -1001.174611              458.140442                  0.824472
+ 1780.00         -42.240954        -8096.884894             3685.728473                  6.619446           -5.280119        -1012.110612              460.716059                  0.827431
+ 1790.00         -42.307330        -8185.094614             3706.334006                  6.643256           -5.288416        -1023.136827              463.291751                  0.830407
+ 1800.00         -42.373921        -8274.049250             3726.940109                  6.667216           -5.296740        -1034.256156              465.867514                  0.833402
+ 1810.00         -42.440733        -8363.760063             3747.546785                  6.691330           -5.305092        -1045.470008              468.443348                  0.836416
+ 1820.00         -42.507773        -8454.248439             3768.154014                  6.715606           -5.313472        -1056.781055              471.019252                  0.839451
+ 1830.00         -42.575049        -8545.534656             3788.761784                  6.740053           -5.321881        -1068.191832              473.595223                  0.842507
+ 1840.00         -42.642568        -8638.033086             3809.369266                  6.764893           -5.330321        -1079.754136              476.171158                  0.845612
+ 1850.00         -42.710340        -8732.901955             3829.974206                  6.790744           -5.338793        -1091.612744              478.746776                  0.848843
+ 1860.00         -42.778377        -8830.750199             3850.575668                  6.817917           -5.347297        -1103.843775              481.321958                  0.852240
+ 1870.00         -42.846693        -8932.476309             3871.172286                  6.846871           -5.355837        -1116.559539              483.896536                  0.855859
+ 1880.00         -42.909072        -9594.751112             3890.864027                  7.173200           -5.363634        -1199.343889              486.358003                  0.896650
+ 1890.00         -42.980383        -9666.537977             3911.531265                  7.184164           -5.372548        -1208.317247              488.941408                  0.898020
+[AGL_ENERGIES_TEMPERATURE]STOP
+[AFLOW] ************************************************************************************************************************** 
diff --git a/tests/data/parsers/aflow/aflowlib.json b/tests/data/parsers/aflow/aflowlib.json
new file mode 100644
index 0000000000000000000000000000000000000000..e4d523dd8b5af65719266d7e3a70c01deff5952f
--- /dev/null
+++ b/tests/data/parsers/aflow/aflowlib.json
@@ -0,0 +1 @@
+{"aurl":"aflowlib.duke.edu:AFLOWDATA/ICSD_WEB/HEX/Ag1Co1O2_ICSD_246157","auid":"aflow:fbc2cf03b9659c90","data_api":"aapi1.2","data_source":"aflowlib","loop":["ael","agl","bader","bands","lock","magnetic","static","thermodynamics"],"code":"vasp.4.6.35","compound":"Ag2Co2O4","prototype":"Ag1Co1O2_ICSD_246157","nspecies":3,"natoms":8,"natoms_orig":8,"composition":[2,2,4],"density":7.25634,"density_orig":7.5683,"scintillation_attenuation_length":1.61639,"stoichiometry":[0.25,0.25,0.5],"species":["Ag","Co","O"],"species_pp":["Ag","Co","O"],"dft_type":["PAW_PBE"],"species_pp_version":["Ag:PAW_PBE:06Sep2000","Co:PAW_PBE:06Sep2000","O:PAW_PBE:08Apr2002"],"species_pp_ZVAL":[11,9,6],"species_pp_AUID":["eca65d7d992efb48","9c4653e42c9f870b","85ded82734544fa9"],"ldau_type":2,"ldau_l":[2,2,0],"ldau_u":[5.8,5,0],"ldau_j":[0,0,0],"ldau_TLUJ":[2,[2,2,0],[5.8,5,0],[0,0,0]],"valence_cell_iupac":26,"valence_cell_std":64,"volume_cell":90.9868,"volume_atom":11.3733,"volume_cell_orig":87.2364,"volume_atom_orig":10.9046,"pressure":0,"stress_tensor":[3.27,0,0,0,3.24,-0,0,-0,2.35],"pressure_residual":2.95,"Pulay_stress":0,"geometry":[2.906329,2.906329,12.43841,90,90,120.0016],"geometry_orig":[2.87091,2.87091,12.2216,90,90,120],"Egap":1.8904,"Egap_fit":3.46126,"Egap_type":"insulator-indirect","energy_cell":-34.8821,"energy_atom":-4.36026,"energy_cutoff":560,"delta_electronic_energy_convergence":3.06569e-05,"delta_electronic_energy_threshold":0.0001,"kpoints_relax":[15,15,3],"kpoints_static":[19,19,4],"kpoints_bands_path":["\\Gamma-M","M-K","K-\\Gamma","\\Gamma-A","A-L","L-H","H-A","L-M","K-H"],"kpoints_bands_nkpts":20,"kpoints":[[15,15,3],[19,19,4],["\\Gamma-M","M-K","K-\\Gamma","\\Gamma-A","A-L","L-H","H-A","L-M","K-H"],20],"enthalpy_cell":-34.8821,"enthalpy_atom":-4.36026,"eentropy_cell":0.0033504,"eentropy_atom":0.0004188,"enthalpy_formation_cell":4.71493,"enthalpy_formation_atom":0.589366,"entropic_temperature":-6578.02,"PV_cell":0,"PV_atom":0,"spin_cell":0,"spin_atom":0,"spinD":[0,0,0,0,0,0,0,0],"spinF":0,"calculation_time":4038.85,"calculation_memory":1130.47,"calculation_cores":16,"nbondxx":[2.90625956,3.53337141,2.14513403,2.90625956,1.93536304,2.55657976],"sg":["P6_{3}/mmc #194","P6_{3}/mmc #194","P6_{3}/mmc #194"],"sg2":["P6_{3}/mmc #194","P6_{3}/mmc #194","P6_{3}/mmc #194"],"spacegroup_orig":194,"spacegroup_relax":194,"forces":[[0,-0.000134,0],[0,0.000134,-0],[0,-0,0],[0,0,0],[0,-0.000778,0.011649],[0,0.000778,0.011649],[0,0.000778,-0.011649],[0,-0.000778,-0.011649]],"positions_cartesian":[[1.45313,0.83915,3.1096],[1.45313,-0.83915,9.32881],[0,-0,0],[-0,-0,6.21921],[1.45313,0.83905,0.96447],[1.45313,-0.83905,7.18368],[1.45313,-0.83905,11.47394],[1.45313,0.83905,5.25474]],"positions_fractional":[[0.33330088,0.66669912,0.25],[0.66669912,0.33330088,0.75],[0,0,0],[-0,-0,0.5],[0.33332156,0.66667844,0.077539589],[0.66667844,0.33332156,0.57753959],[0.66667844,0.33332156,0.92246041],[0.33332156,0.66667844,0.42246041]],"Bravais_lattice_orig":"HEX","lattice_variation_orig":"HEX","lattice_system_orig":"hexagonal","Pearson_symbol_orig":"hP8","Bravais_lattice_relax":"HEX","lattice_variation_relax":"HEX","lattice_system_relax":"hexagonal","Pearson_symbol_relax":"hP8","crystal_family_orig":"hexagonal","crystal_system_orig":"hexagonal","crystal_class_orig":"dihexagonal-dipyramidal","point_group_Hermann_Mauguin_orig":"6/mmm","point_group_Schoenflies_orig":"D_6h","point_group_orbifold_orig":"*622","point_group_type_orig":"centrosymmetric","point_group_order_orig":24,"point_group_structure_orig":"2_x_dihedral","Bravais_lattice_lattice_type_orig":"HEX","Bravais_lattice_lattice_variation_type_orig":"HEX","Bravais_lattice_lattice_system_orig":"hexagonal","Bravais_superlattice_lattice_type_orig":"HEX","Bravais_superlattice_lattice_variation_type_orig":"HEX","Bravais_superlattice_lattice_system_orig":"hexagonal","Pearson_symbol_superlattice_orig":"hP8","reciprocal_geometry_orig":[2.527142,2.527142,0.514105,90,90,60],"reciprocal_volume_cell_orig":2.84342,"reciprocal_lattice_type_orig":"HEX","reciprocal_lattice_variation_type_orig":"HEX","Wyckoff_letters_orig":[["c"],["a"],["f"]],"Wyckoff_multiplicities_orig":[[2],[2],[4]],"Wyckoff_site_symmetries_orig":[["-6m2"],["-3m."],["3m."]],"crystal_family":"hexagonal","crystal_system":"hexagonal","crystal_class":"dihexagonal-dipyramidal","point_group_Hermann_Mauguin":"6/mmm","point_group_Schoenflies":"D_6h","point_group_orbifold":"*622","point_group_type":"centrosymmetric","point_group_order":24,"point_group_structure":"2_x_dihedral","Bravais_lattice_lattice_type":"HEX","Bravais_lattice_lattice_variation_type":"HEX","Bravais_lattice_lattice_system":"hexagonal","Bravais_superlattice_lattice_type":"HEX","Bravais_superlattice_lattice_variation_type":"HEX","Bravais_superlattice_lattice_system":"hexagonal","Pearson_symbol_superlattice":"hP8","reciprocal_geometry":[2.496384,2.496384,0.5051436,90,90,59.99842],"reciprocal_volume_cell":2.72622,"reciprocal_lattice_type":"HEX","reciprocal_lattice_variation_type":"HEX","Wyckoff_letters":[["c"],["a"],["f"]],"Wyckoff_multiplicities":[[2],[2],[4]],"Wyckoff_site_symmetries":[["-6m2"],["-3m."],["3m."]],"aflow_prototype_label_orig":"ABC2_hP8_194_c_a_f","aflow_prototype_params_list_orig":["a","c/a","z3"],"aflow_prototype_params_values_orig":[2.8709,4.2570622,0.076],"aflow_prototype_label_relax":"ABC2_hP8_194_c_a_f","aflow_prototype_params_list_relax":["a","c/a","z3"],"aflow_prototype_params_values_relax":[2.9063,4.2798059,0.077539589],"agl_thermal_conductivity_300K":2.95475,"agl_debye":374.916,"agl_acoustic_debye":187.5,"agl_gruneisen":2.22975,"agl_heat_capacity_Cv_300K":22.2739,"agl_heat_capacity_Cp_300K":23.0311,"agl_thermal_expansion_300K":5.04085e-05,"agl_bulk_modulus_static_300K":153.361,"agl_bulk_modulus_isothermal_300K":148.318,"agl_poisson_ratio_source":"ael_poisson_ratio_0.364064","agl_vibrational_free_energy_300K_cell":-54.2809,"agl_vibrational_free_energy_300K_atom":-6.78511,"agl_vibrational_entropy_300K_cell":2.40318,"agl_vibrational_entropy_300K_atom":0.300398,"ael_poisson_ratio":0.364064,"ael_bulk_modulus_voigt":150.939,"ael_bulk_modulus_reuss":146.973,"ael_shear_modulus_voigt":67.32,"ael_shear_modulus_reuss":21.7453,"ael_bulk_modulus_vrh":148.956,"ael_shear_modulus_vrh":44.5326,"ael_elastic_anisotropy":10.5062,"ael_youngs_modulus_vrh":121.491,"ael_speed_sound_transverse":2477.31,"ael_speed_sound_longitudinal":3784.16,"ael_speed_sound_average":2714.4,"ael_pughs_modulus_ratio":0.298965,"ael_debye_temperature":359.352,"ael_applied_pressure":0,"ael_average_external_pressure":-0.4255,"ael_stiffness_tensor":[[258.967,74.5333,78.9167,0,0,0],[73.0333,259.567,78.9167,0,0,0],[75.7167,76.15,381.583,0,0,0],[0,0,0,9.88333,0,0],[0,0,0,0,10.0667,0],[0,0,0,0,0,93]],"ael_compliance_tensor":[[0.00435778,-0.00105066,-0.000683958,0,0,0],[-0.00102545,0.00434866,-0.000687285,0,0,0],[-0.000660061,-0.000659352,0.00289353,0,0,0],[0,0,0,0.10118,0,0],[0,0,0,0,0.0993377,0],[0,0,0,0,0,0.0107527]],"bader_net_charges":[0.5177,0.5177,1.2874,1.2874,-0.9025,-0.9026,-0.9026,-0.9025],"bader_atomic_volumes":[16.88,16.88,7.925,7.925,10.34,10.34,10.34,10.34],"files":["AECCAR0.static.xz","AECCAR2.static.xz","AEL_Compliance_tensor.out","AEL_Elastic_constants.out","AEL_elastic_tensor.json","AEL_energy_structures.json","AGL.out","AGL_Hugoniot.out","AGL_edos_gap_pressure.json","AGL_edos_gap_pressure.out","AGL_energies_temperature.out","AGL_energy.json","AGL_energy_structures.json","AGL_energy_volume.out","AGL_gibbs_energy_pT.out","AGL_thermal_properties_temperature.out","ARUN.AEL_0_SF_N_1_0.99","ARUN.AEL_10_SF_N_3_1.005","ARUN.AEL_11_SF_N_3_1.01","ARUN.AEL_12_SF_S_1_0.99","ARUN.AEL_13_SF_S_1_0.995","ARUN.AEL_14_SF_S_1_1.005","ARUN.AEL_15_SF_S_1_1.01","ARUN.AEL_16_SF_S_2_0.99","ARUN.AEL_17_SF_S_2_0.995","ARUN.AEL_18_SF_S_2_1.005","ARUN.AEL_19_SF_S_2_1.01","ARUN.AEL_1_SF_N_1_0.995","ARUN.AEL_20_SF_S_3_0.99","ARUN.AEL_21_SF_S_3_0.995","ARUN.AEL_22_SF_S_3_1.005","ARUN.AEL_23_SF_S_3_1.01","ARUN.AEL_2_SF_N_1_1.005","ARUN.AEL_3_SF_N_1_1.01","ARUN.AEL_4_SF_N_2_0.99","ARUN.AEL_5_SF_N_2_0.995","ARUN.AEL_6_SF_N_2_1.005","ARUN.AEL_7_SF_N_2_1.01","ARUN.AEL_8_SF_N_3_0.99","ARUN.AEL_9_SF_N_3_0.995","ARUN.AGL_0_SF_0.86","ARUN.AGL_10_SF_0.96","ARUN.AGL_11_SF_0.97","ARUN.AGL_12_SF_0.98","ARUN.AGL_13_SF_0.99","ARUN.AGL_14_SF_1","ARUN.AGL_15_SF_1.01","ARUN.AGL_16_SF_1.02","ARUN.AGL_17_SF_1.03","ARUN.AGL_18_SF_1.04","ARUN.AGL_19_SF_1.05","ARUN.AGL_1_SF_0.87","ARUN.AGL_20_SF_1.06","ARUN.AGL_21_SF_1.07","ARUN.AGL_22_SF_1.08","ARUN.AGL_23_SF_1.09","ARUN.AGL_24_SF_1.1","ARUN.AGL_25_SF_1.11","ARUN.AGL_26_SF_1.12","ARUN.AGL_27_SF_1.13","ARUN.AGL_2_SF_0.88","ARUN.AGL_3_SF_0.89","ARUN.AGL_4_SF_0.9","ARUN.AGL_5_SF_0.91","ARUN.AGL_6_SF_0.92","ARUN.AGL_7_SF_0.93","ARUN.AGL_8_SF_0.94","ARUN.AGL_9_SF_0.95","Ag1Co1O2_ICSD_246157.cif","Ag1Co1O2_ICSD_246157_Bader_10_Ag.jvxl","Ag1Co1O2_ICSD_246157_Bader_10_Co.jvxl","Ag1Co1O2_ICSD_246157_Bader_10_O.jvxl","Ag1Co1O2_ICSD_246157_Bader_20_Ag.jvxl","Ag1Co1O2_ICSD_246157_Bader_20_Co.jvxl","Ag1Co1O2_ICSD_246157_Bader_20_O.jvxl","Ag1Co1O2_ICSD_246157_Bader_25_Ag.jvxl","Ag1Co1O2_ICSD_246157_Bader_25_Co.jvxl","Ag1Co1O2_ICSD_246157_Bader_25_O.jvxl","Ag1Co1O2_ICSD_246157_Bader_30_Ag.jvxl","Ag1Co1O2_ICSD_246157_Bader_30_Co.jvxl","Ag1Co1O2_ICSD_246157_Bader_30_O.jvxl","Ag1Co1O2_ICSD_246157_Bader_33_Ag.jvxl","Ag1Co1O2_ICSD_246157_Bader_33_Co.jvxl","Ag1Co1O2_ICSD_246157_Bader_33_O.jvxl","Ag1Co1O2_ICSD_246157_Bader_40_Ag.jvxl","Ag1Co1O2_ICSD_246157_Bader_40_Co.jvxl","Ag1Co1O2_ICSD_246157_Bader_40_O.jvxl","Ag1Co1O2_ICSD_246157_Bader_50_Ag.jvxl","Ag1Co1O2_ICSD_246157_Bader_50_Co.jvxl","Ag1Co1O2_ICSD_246157_Bader_50_O.jvxl","Ag1Co1O2_ICSD_246157_Bader_60_Ag.jvxl","Ag1Co1O2_ICSD_246157_Bader_60_Co.jvxl","Ag1Co1O2_ICSD_246157_Bader_60_O.jvxl","Ag1Co1O2_ICSD_246157_Bader_67_Ag.jvxl","Ag1Co1O2_ICSD_246157_Bader_67_Co.jvxl","Ag1Co1O2_ICSD_246157_Bader_67_O.jvxl","Ag1Co1O2_ICSD_246157_Bader_75_Ag.jvxl","Ag1Co1O2_ICSD_246157_Bader_75_Co.jvxl","Ag1Co1O2_ICSD_246157_Bader_75_O.jvxl","Ag1Co1O2_ICSD_246157_Bader_80_Ag.jvxl","Ag1Co1O2_ICSD_246157_Bader_80_Co.jvxl","Ag1Co1O2_ICSD_246157_Bader_80_O.jvxl","Ag1Co1O2_ICSD_246157_Bader_90_Ag.jvxl","Ag1Co1O2_ICSD_246157_Bader_90_Co.jvxl","Ag1Co1O2_ICSD_246157_Bader_90_O.jvxl","Ag1Co1O2_ICSD_246157_abader.out","Ag1Co1O2_ICSD_246157_banddos.png","Ag1Co1O2_ICSD_246157_bandsdata.json.xz","Ag1Co1O2_ICSD_246157_corner.cif","Ag1Co1O2_ICSD_246157_dos.png","Ag1Co1O2_ICSD_246157_dos_Ag_1.png","Ag1Co1O2_ICSD_246157_dos_Co_3.png","Ag1Co1O2_ICSD_246157_dos_O_5.png","Ag1Co1O2_ICSD_246157_dosdata.json.xz","Ag1Co1O2_ICSD_246157_sconv.cif","Ag1Co1O2_ICSD_246157_sconv_corner.cif","Ag1Co1O2_ICSD_246157_sprim.cif","Ag1Co1O2_ICSD_246157_sprim_corner.cif","Ag1Co1O2_ICSD_246157_structure_relax.json","Ag1Co1O2_ICSD_246157_structure_relax1.json","CHGCAR.static.xz","CONTCAR.relax","CONTCAR.relax.abinit","CONTCAR.relax.aims","CONTCAR.relax.qe","CONTCAR.relax.vasp","CONTCAR.relax1","DOSCAR.static.xz","EIGENVAL.bands.xz","INCAR.bands","KPOINTS.bands","KPOINTS.relax","KPOINTS.static","OUTCAR.static.xz","POSCAR.bands","aflow.ael.out","aflow.agl.out","aflow.agroup.bands.json.xz","aflow.agroup.bands.out.xz","aflow.agroup.orig.json.xz","aflow.agroup.orig.out.xz","aflow.agroup.relax.json.xz","aflow.agroup.relax.out.xz","aflow.fgroup.bands.json.xz","aflow.fgroup.bands.out.xz","aflow.fgroup.orig.json.xz","aflow.fgroup.orig.out.xz","aflow.fgroup.relax.json.xz","aflow.fgroup.relax.out.xz","aflow.iatoms.bands.json.xz","aflow.iatoms.bands.out.xz","aflow.iatoms.orig.json.xz","aflow.iatoms.orig.out.xz","aflow.iatoms.relax.json.xz","aflow.iatoms.relax.out.xz","aflow.pgroup.bands.json.xz","aflow.pgroup.bands.out.xz","aflow.pgroup.orig.json.xz","aflow.pgroup.orig.out.xz","aflow.pgroup.relax.json.xz","aflow.pgroup.relax.out.xz","aflow.pgroup_xtal.bands.json.xz","aflow.pgroup_xtal.bands.out.xz","aflow.pgroup_xtal.orig.json.xz","aflow.pgroup_xtal.orig.out.xz","aflow.pgroup_xtal.relax.json.xz","aflow.pgroup_xtal.relax.out.xz","aflow.pgroupk.bands.json.xz","aflow.pgroupk.bands.out.xz","aflow.pgroupk.orig.json.xz","aflow.pgroupk.orig.out.xz","aflow.pgroupk.relax.json.xz","aflow.pgroupk.relax.out.xz","aflow.pgroupk_xtal.bands.json.xz","aflow.pgroupk_xtal.bands.out.xz","aflow.pgroupk_xtal.orig.json.xz","aflow.pgroupk_xtal.orig.out.xz","aflow.pgroupk_xtal.relax.json.xz","aflow.pgroupk_xtal.relax.out.xz","aflow:fbc2cf03b9659c90.json","aflow:fbc2cf03b9659c90.out","aflowlib.json","aflowlib.out","bz_Ag1Co1O2_ICSD_246157.png","edata.bands.json","edata.bands.out","edata.orig.json","edata.orig.out","edata.relax.json","edata.relax.out","index.php"],"node_CPU_Model":"AMD_Opteron(tm)_Processor_6378___","node_CPU_Cores":64,"node_CPU_MHz":1400,"node_RAM_GB":253,"aflow_version":"aflow30847","catalog":"ICSD","aflowlib_version":"3.2.9","aflowlib_date":["20140702_17:53:32_GMT-5","20140702_19:03:49_GMT-5","20210524_01:52:33_GMT-5"]}
diff --git a/tests/normalizing/test_system.py b/tests/normalizing/test_system.py
index 92e43f8c4b14c8799ccf6b7f858a436d96cae62a..49dde1d4bab6e3741605eebcb3d24ff2ee842b75 100644
--- a/tests/normalizing/test_system.py
+++ b/tests/normalizing/test_system.py
@@ -74,7 +74,8 @@ parser_exceptions = {
     'parsers/cpmd': ['formula', 'dft.basis_set', 'dft.xc_functional', 'dft.system'],
     'parser/onetep': ['formula', 'atoms', 'dft.basis_set', 'dft.xc_functional', 'dft.system'],
     'parsers/siesta': ['dft.basis_set', 'dft.xc_functional', 'dft.system'],
-    'parsers/xps': ['formula', 'atoms']
+    'parsers/xps': ['formula', 'atoms'],
+    'parsers/aflow': ['dft.basis_set', 'dft.xc_functional']
 }
 '''
 Keys that the normalizer for certain parsers might not produce. In an ideal world this
diff --git a/tests/parsing/test_parsing.py b/tests/parsing/test_parsing.py
index c08fc74a7433a33852374655caea1ec013df1cef..f413059d0431f113dc122cfae48e115080e3c0c9 100644
--- a/tests/parsing/test_parsing.py
+++ b/tests/parsing/test_parsing.py
@@ -40,7 +40,7 @@ parser_examples = [
     ('parsers/fhi-aims', 'tests/data/parsers/fhi-aims/aims.out'),
     ('parsers/fhi-vibes', 'tests/data/parsers/fhi-vibes/molecular_dynamics.nc'),
     ('parsers/cp2k', 'tests/data/parsers/cp2k/si_bulk8.out'),
-    # ('parsers/crystal', 'tests/data/parsers/crystal/si.out'),
+    ('parsers/crystal', 'tests/data/parsers/crystal/si.out'),
     ('parsers/cpmd', 'tests/data/parsers/cpmd/geo_output.out'),
     ('parsers/nwchem', 'tests/data/parsers/nwchem/single_point/output.out'),
     ('parsers/bigdft', 'tests/data/parsers/bigdft/n2_output.out'),
@@ -71,9 +71,10 @@ parser_examples = [
     ('parser/onetep', 'tests/data/parsers/onetep/fluor/12-difluoroethane.out'),
     ('parsers/eels', 'tests/data/parsers/eels.json'),
     ('parsers/xps', 'tests/data/parsers/xps/multiple_channels.xy'),
+    ('parsers/aflow', 'tests/data/parsers/aflow/aflow_agl.out'),
     # ('parsers/aptfim', 'tests/data/parsers/aptfim.aptfim'),
     # ('parsers/mpes', 'tests/data/parsers/mpes.meta'),
-    ('parsers/archive', 'tests/data/parsers/archive.json')
+    ('parsers/archive', 'tests/data/parsers/archive.json'),
 ]
 
 # We need to remove some cases with external mainfiles, which might not exist
@@ -84,7 +85,7 @@ for parser, mainfile in parser_examples:
         fixed_parser_examples.append((parser, mainfile))
 parser_examples = fixed_parser_examples
 
-correct_num_output_files = 116
+correct_num_output_files = 117
 
 
 def create_reference(data, pretty):