mat3ra-esse 2025.8.14.post0__py3-none-any.whl → 2025.10.8.post0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of mat3ra-esse might be problematic. Click here for more details.

Files changed (136) hide show
  1. mat3ra/esse/data/examples.py +1 -1
  2. mat3ra/esse/data/schemas.py +1 -1
  3. mat3ra/esse/models/core/abstract/_2d_data.py +2 -2
  4. mat3ra/esse/models/core/abstract/_2d_plot.py +2 -6
  5. mat3ra/esse/models/core/primitive/_1d_data_series.py +3 -3
  6. mat3ra/esse/models/core/primitive/axis_3d_names_enum.py +13 -0
  7. mat3ra/esse/models/core/reference/__init__.py +8 -8
  8. mat3ra/esse/models/core/reference/exabyte.py +2 -8
  9. mat3ra/esse/models/core/reference/experiment/__init__.py +2 -2
  10. mat3ra/esse/models/core/reusable/coordinate_conditions/__init__.py +1 -78
  11. mat3ra/esse/models/core/reusable/coordinate_conditions/index.py +80 -0
  12. mat3ra/esse/models/core/reusable/hubbard_parameters.py +48 -0
  13. mat3ra/esse/models/core/reusable/kpoint.py +16 -0
  14. mat3ra/esse/models/core/reusable/repetition.py +14 -0
  15. mat3ra/esse/models/definitions/material.py +13 -0
  16. mat3ra/esse/models/element.py +10 -8
  17. mat3ra/esse/models/job/__init__.py +62 -62
  18. mat3ra/esse/models/material/__init__.py +12 -12
  19. mat3ra/esse/models/materials_category/compound_pristine_structures/two_dimensional/interface/configuration.py +80 -80
  20. mat3ra/esse/models/materials_category/defective_structures/one_dimensional/grain_boundary_linear/configuration.py +80 -80
  21. mat3ra/esse/models/materials_category/defective_structures/two_dimensional/adatom/configuration.py +35 -35
  22. mat3ra/esse/models/materials_category/defective_structures/two_dimensional/grain_boundary_planar/configuration.py +80 -80
  23. mat3ra/esse/models/materials_category/defective_structures/two_dimensional/island/configuration.py +53 -53
  24. mat3ra/esse/models/materials_category/defective_structures/two_dimensional/terrace/configuration.py +53 -53
  25. mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/interstitial.py +29 -29
  26. mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/substitutional.py +32 -32
  27. mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/vacancy.py +12 -12
  28. mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/ideal_crystal.py +12 -12
  29. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanoribbon.py +52 -52
  30. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanotape.py +32 -32
  31. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py +32 -32
  32. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell.py +32 -32
  33. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell_with_gap.py +1151 -0
  34. mat3ra/esse/models/materials_category/processed_structures/two_dimensional/passivation/configuration.py +17 -17
  35. mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/crystal_site.py +8 -8
  36. mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/point_defect_site.py +12 -12
  37. mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/void_region.py +12 -12
  38. mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/crystal.py +8 -8
  39. mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/vacuum.py +12 -12
  40. mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/crystal_lattice_lines.py +8 -8
  41. mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/crystal_lattice_lines_unique_repeated.py +8 -8
  42. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/crystal_lattice_base.py +8 -8
  43. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_non_uniform.py +12 -12
  44. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_uniform.py +12 -12
  45. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/supercell.py +12 -12
  46. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/crystal_lattice_planes.py +8 -8
  47. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_stack_configuration.py +52 -52
  48. mat3ra/esse/models/materials_category_components/operations/core/modifications/perturb.py +12 -12
  49. mat3ra/esse/models/methods_directory/physical/psp/__init__.py +2 -2
  50. mat3ra/esse/models/methods_directory/physical/psp/file.py +2 -2
  51. mat3ra/esse/models/methods_directory/physical/psp/file_data_item.py +2 -2
  52. mat3ra/esse/models/properties_directory/derived_properties.py +6 -6
  53. mat3ra/esse/models/properties_directory/elemental/atomic_radius.py +1 -1
  54. mat3ra/esse/models/properties_directory/elemental/electronegativity.py +1 -2
  55. mat3ra/esse/models/properties_directory/elemental/ionization_potential.py +3 -4
  56. mat3ra/esse/models/properties_directory/jupyter_notebook_endpoint.py +20 -0
  57. mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py +4 -8
  58. mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py +2 -2
  59. mat3ra/esse/models/properties_directory/non_scalar/band_structure.py +5 -9
  60. mat3ra/esse/models/properties_directory/non_scalar/charge_density_profile.py +4 -8
  61. mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py +5 -8
  62. mat3ra/esse/models/properties_directory/non_scalar/dielectric_tensor.py +2 -2
  63. mat3ra/esse/models/properties_directory/non_scalar/file_content.py +2 -2
  64. mat3ra/esse/models/properties_directory/non_scalar/final_structure.py +22 -0
  65. mat3ra/esse/models/properties_directory/non_scalar/hubbard_u.py +4 -4
  66. mat3ra/esse/models/properties_directory/non_scalar/hubbard_v.py +3 -4
  67. mat3ra/esse/models/properties_directory/non_scalar/hubbard_v_nn.py +3 -4
  68. mat3ra/esse/models/properties_directory/non_scalar/is_relaxed.py +22 -0
  69. mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py +10 -14
  70. mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py +10 -14
  71. mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py +8 -12
  72. mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py +8 -12
  73. mat3ra/esse/models/properties_directory/non_scalar/stress_tensor.py +5 -7
  74. mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +64 -51
  75. mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py +10 -14
  76. mat3ra/esse/models/properties_directory/non_scalar/workflow.py +2234 -0
  77. mat3ra/esse/models/properties_directory/reusable/hubbard_parameters.py +48 -0
  78. mat3ra/esse/models/properties_directory/scalar/electron_affinity.py +1 -1
  79. mat3ra/esse/models/properties_directory/scalar/fermi_energy.py +1 -1
  80. mat3ra/esse/models/properties_directory/scalar/formation_energy.py +1 -1
  81. mat3ra/esse/models/properties_directory/scalar/ionization_potential.py +3 -3
  82. mat3ra/esse/models/properties_directory/scalar/pressure.py +3 -4
  83. mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py +3 -3
  84. mat3ra/esse/models/properties_directory/scalar/surface_energy.py +3 -3
  85. mat3ra/esse/models/properties_directory/scalar/total_energy.py +3 -3
  86. mat3ra/esse/models/properties_directory/scalar/total_force.py +3 -4
  87. mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py +3 -3
  88. mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py +3 -3
  89. mat3ra/esse/models/properties_directory/structural/atomic_forces.py +5 -5
  90. mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints_property.py +3 -3
  91. mat3ra/esse/models/properties_directory/structural/basis/boundary_conditions.py +30 -0
  92. mat3ra/esse/models/properties_directory/structural/basis/predicted_properties.py +82 -0
  93. mat3ra/esse/models/properties_directory/structural/lattice/units/__init__.py +23 -1
  94. mat3ra/esse/models/properties_directory/structural/magnetic_moments.py +5 -5
  95. mat3ra/esse/models/properties_directory/structural/molecular_pattern.py +5 -5
  96. mat3ra/esse/models/properties_directory/structural/patterns/functional_group.py +1 -1
  97. mat3ra/esse/models/properties_directory/structural/patterns/ring.py +1 -1
  98. mat3ra/esse/models/properties_directory/structural/patterns/special_bond.py +1 -1
  99. mat3ra/esse/models/properties_directory/workflow/convergence/electronic.py +4 -4
  100. mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py +6 -6
  101. mat3ra/esse/models/property/base.py +1492 -14
  102. mat3ra/esse/models/property/holder.py +3568 -0
  103. mat3ra/esse/models/property/meta_holder/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/g.py +31 -0
  104. mat3ra/esse/models/property/meta_holder.py +140 -0
  105. mat3ra/esse/models/property/proto_holder.py +86 -0
  106. mat3ra/esse/models/property/raw.py +27 -11
  107. mat3ra/esse/models/property/source.py +24 -1
  108. mat3ra/esse/models/workflow/__init__.py +54 -54
  109. mat3ra/esse/models/workflow/base_flow.py +4 -4
  110. mat3ra/esse/models/workflow/subworkflow/__init__.py +7 -7
  111. mat3ra/esse/models/workflow/subworkflow/unit.py +10 -10
  112. mat3ra/esse/models/workflow/unit/__init__.py +12 -12
  113. mat3ra/esse/models/workflow/unit/io/__init__.py +4 -4
  114. mat3ra/esse/models/workflow/unit/io/db.py +2 -2
  115. mat3ra/esse/models/workflow/unit/io/object_storage.py +1 -1
  116. {mat3ra_esse-2025.8.14.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/METADATA +1 -1
  117. {mat3ra_esse-2025.8.14.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/RECORD +122 -118
  118. mat3ra/esse/models/property/meta.py +0 -200
  119. mat3ra/esse/models/software_directory/ml/exabyteml.py +0 -28
  120. mat3ra/esse/models/software_directory/ml/unit/execution/__init__.py +0 -879
  121. mat3ra/esse/models/software_directory/ml/unit/execution/evaluate/__init__.py +0 -3
  122. mat3ra/esse/models/software_directory/ml/unit/execution/evaluate/cross_validate.py +0 -293
  123. mat3ra/esse/models/software_directory/ml/unit/execution/initialize.py +0 -293
  124. mat3ra/esse/models/software_directory/ml/unit/execution/score.py +0 -286
  125. mat3ra/esse/models/software_directory/ml/unit/execution/train.py +0 -297
  126. mat3ra/esse/models/software_directory/ml/unit/processing/__init__.py +0 -276
  127. mat3ra/esse/models/software_directory/ml/unit/processing/data_transformation/__init__.py +0 -167
  128. mat3ra/esse/models/software_directory/ml/unit/processing/data_transformation/manipulation.py +0 -144
  129. mat3ra/esse/models/software_directory/ml/unit/processing/data_transformation/scale_and_reduce.py +0 -163
  130. mat3ra/esse/models/software_directory/ml/unit/processing/feature_selection/__init__.py +0 -148
  131. mat3ra/esse/models/software_directory/ml/unit/processing/feature_selection/filter_based.py +0 -144
  132. /mat3ra/esse/models/{software_directory/ml → properties_directory/reusable}/__init__.py +0 -0
  133. /mat3ra/esse/models/{software_directory/ml/unit → property/meta_holder/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e}/__init__.py +0 -0
  134. {mat3ra_esse-2025.8.14.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/WHEEL +0 -0
  135. {mat3ra_esse-2025.8.14.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/licenses/LICENSE.md +0 -0
  136. {mat3ra_esse-2025.8.14.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/top_level.txt +0 -0
@@ -2,11 +2,11 @@ mat3ra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  mat3ra/esse/__init__.py,sha256=nN0dOkxbOK6sWOTNr8aBGi9bQsI9sy6B2nn0UP29-sI,1244
3
3
  mat3ra/esse/utils.py,sha256=-FexdtkOYGEWmwJUwWDuJferibc7M1YzUH738Bffuxo,1727
4
4
  mat3ra/esse/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- mat3ra/esse/data/examples.py,sha256=4RnMfttGXa_mRh7w5KHZS8RDpI2dIXPSGdQyWPLnbrY,145664
5
+ mat3ra/esse/data/examples.py,sha256=oaKBHn2gNLEI8136kFHwUxzghs_XSWefSghJV2gnfLE,142897
6
6
  mat3ra/esse/data/properties.py,sha256=geWFIVIJbdn2Q_JG3Mz36oQ_dXeZZwnmlS_NgszvHUY,6099
7
- mat3ra/esse/data/schemas.py,sha256=5xfSeOWHwZY7pBEIH-8ummGTFJPqOWwxAZvGsmIRfqA,3191669
7
+ mat3ra/esse/data/schemas.py,sha256=MJpKV5H7DWO1WP48Yz3wxfKWpc2-4qhHFG2wdfe-T30,3297412
8
8
  mat3ra/esse/models/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
9
- mat3ra/esse/models/element.py,sha256=xuuFQRP6wE4SFXggipRsAexGPo10DorQqoWUG_pUnPA,2950
9
+ mat3ra/esse/models/element.py,sha256=5rQexDJz6p0XYqMs7j6TTJHTkvnuvz5vvl-g75c9jqw,2944
10
10
  mat3ra/esse/models/project.py,sha256=fqUckRBLyCzVc_77-EtQUg_zFDV_zTYfnLmOoE77zPE,1148
11
11
  mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
12
12
  mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/atoms.py,sha256=KJoqkT9hV3J_xJmaHCLx7bAEBxvGxz0_ZC76b9Auu2k,1451
@@ -27,8 +27,8 @@ mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/system.py,sha256=k1G
27
27
  mat3ra/esse/models/apse/materials/builders/slab/pymatgen/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
28
28
  mat3ra/esse/models/apse/materials/builders/slab/pymatgen/parameters.py,sha256=P-6jXpG84bAsOMnr0EBSV-20MHpGViZOjcKSJqLVqxc,785
29
29
  mat3ra/esse/models/core/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
30
- mat3ra/esse/models/core/abstract/_2d_data.py,sha256=Dgn_D-9Sq-9MDH51csL1-GBFkisSbwDGQlaYscnWHDk,426
31
- mat3ra/esse/models/core/abstract/_2d_plot.py,sha256=CikwQl8cFdoaJthwdT1kIvUcTnHk9QiOT9YgWo-TU28,812
30
+ mat3ra/esse/models/core/abstract/_2d_data.py,sha256=SDYP92G8bgzo4IBtiH_bVY8w7PGjabK5reF_03xHp_g,441
31
+ mat3ra/esse/models/core/abstract/_2d_plot.py,sha256=xZZozQRkUD4qrdIRwGh1V6qobRu2qyKoX4Nq-IweQM4,723
32
32
  mat3ra/esse/models/core/abstract/_3d_grid.py,sha256=qJ6z7YI504zEWp81dOoYdBVBZDPFGuvD8VxfeEOmhgA,466
33
33
  mat3ra/esse/models/core/abstract/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
34
34
  mat3ra/esse/models/core/abstract/coordinate_2d.py,sha256=VY2G33pQx_QYF-njFFk3Yhg_emT0datwlcqg9KppCYk,349
@@ -38,7 +38,7 @@ mat3ra/esse/models/core/abstract/matrix_3x3.py,sha256=7Ob8lg7Uq33R0dVO7XYgp4AvDy
38
38
  mat3ra/esse/models/core/abstract/vector_2d.py,sha256=glgkqggX96brGldtAZrmJOuwQlTU_d1i09pdqZHADWg,337
39
39
  mat3ra/esse/models/core/abstract/vector_3d.py,sha256=gty27LKhdm35AR6PjWvO8Ccq5p4eqe25At-h7-OAteI,337
40
40
  mat3ra/esse/models/core/abstract/vector_boolean_3d.py,sha256=GbByG75y034HscvSsE9tIo178Mri-ZeNFOMfZbXKjZ0,313
41
- mat3ra/esse/models/core/primitive/_1d_data_series.py,sha256=axKdgsXgeF95sKcBtWKS5EUJIx82uI6kN0YNMbU_pYY,389
41
+ mat3ra/esse/models/core/primitive/_1d_data_series.py,sha256=BSJwjVDssegx0SlO-_Q3JDKWCtnE1t8eXuUvRFQUJMs,358
42
42
  mat3ra/esse/models/core/primitive/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
43
43
  mat3ra/esse/models/core/primitive/array_of_2_numbers.py,sha256=gthQ3V7sAq-EmzV9z1patFBb5CZHmtCqMcghGNYUkUI,378
44
44
  mat3ra/esse/models/core/primitive/array_of_3_booleans.py,sha256=06YLYsvCD7BP5fNee8e07YKrNZVNsfh9RpvBMj-k7-A,379
@@ -47,6 +47,7 @@ mat3ra/esse/models/core/primitive/array_of_3_numbers.py,sha256=VjCYsMasQYN1agkBJ
47
47
  mat3ra/esse/models/core/primitive/array_of_ids.py,sha256=JMTCZGq743-t61SNqFqPNX26yZNZ5I9APKoZ23_1z6w,484
48
48
  mat3ra/esse/models/core/primitive/array_of_strings.py,sha256=j8hck6B4rcpNc801v5shjFiwtWVXMX1e_kFr7WNfMpo,370
49
49
  mat3ra/esse/models/core/primitive/axis.py,sha256=lC968R-jutI-HTLO40G4YoN9dMWJ9hzpnZPs89dlJdc,353
50
+ mat3ra/esse/models/core/primitive/axis_3d_names_enum.py,sha256=trFTfyXeUEoE-5i6oW2qZyBHSo0hkj-b-McBGMUxF4U,229
50
51
  mat3ra/esse/models/core/primitive/group_info.py,sha256=mhjFVVTseLogwggxg7GVDUZ1NZU-SLc1kcBUwrFz4g0,448
51
52
  mat3ra/esse/models/core/primitive/integer_one_or_zero.py,sha256=xxNWl0Pr8_onwgKuiI4ic8Oo9FfTojyb1bLWj0-tg-0,322
52
53
  mat3ra/esse/models/core/primitive/integer_positive_single_digit.py,sha256=-Oou7xrBTog5PVxfBfwET9NuQd0n5SkL_xT6coS6CKQ,352
@@ -61,9 +62,9 @@ mat3ra/esse/models/core/primitive/linked_list/base_node.py,sha256=tMndAwOtK_q1yX
61
62
  mat3ra/esse/models/core/primitive/linked_list/named_node.py,sha256=j2Lxpfxw9xyZqLwWOavYys_3mkwIE11_xjLh_zEVkAs,642
62
63
  mat3ra/esse/models/core/primitive/linked_list/named_node_in_group.py,sha256=nc9jRIgAsY5yZMhxwCuoA6ga9N7DVJKN3CpOXsfSCaA,855
63
64
  mat3ra/esse/models/core/primitive/linked_list/node_with_type.py,sha256=9eq7NEjUHxdHxVMv2Ddda0D8b--fHuEvELZK6QHbi28,614
64
- mat3ra/esse/models/core/reference/__init__.py,sha256=AxiJT5og73tLMzoHRNN4UC9FxCxbrv2MVWBF3XTRvQU,6436
65
- mat3ra/esse/models/core/reference/exabyte.py,sha256=6nHPBWI3GpsQq5NAODeTnE67LM76rZAs-c800gu_xfs,486
66
- mat3ra/esse/models/core/reference/experiment/__init__.py,sha256=Bo68jhINrrrsFxvogG9Y4z1H62nMsk7FDJdyr3TiKMo,3476
65
+ mat3ra/esse/models/core/reference/__init__.py,sha256=kDIEvFXLlUNt1QAEF_r3qVogEW9oWmTNfzr3aafKtzI,6436
66
+ mat3ra/esse/models/core/reference/exabyte.py,sha256=qfES_9ZS8o9dkYicKJydisYSmGS37pCH1JkFFbYFTH0,319
67
+ mat3ra/esse/models/core/reference/experiment/__init__.py,sha256=98Fw2A37z3UNlI_-d8kydbLbJPMrdKKXXcVwShkuxmo,3476
67
68
  mat3ra/esse/models/core/reference/experiment/condition.py,sha256=bZyiij_gBzLtlbCu3oAn3Skg_ZZXxhDZ4lg5v9siwIs,544
68
69
  mat3ra/esse/models/core/reference/experiment/location.py,sha256=5Kq6nceyVXAo09X-fpyDM0i2EfcqJbUKQwr8FAaINdo,332
69
70
  mat3ra/esse/models/core/reference/literature/__init__.py,sha256=SA4aLHkvP05ulEbbEUoy4lFHOh0uWP1MrrQTpifU8uw,2290
@@ -87,18 +88,22 @@ mat3ra/esse/models/core/reusable/dielectric_tensor_component.py,sha256=_rr6oeTSx
87
88
  mat3ra/esse/models/core/reusable/energy.py,sha256=FUf_Lrr6eIlQu6ADy8hS0OsJ0Igcp9apQRzEwZPxZtI,514
88
89
  mat3ra/esse/models/core/reusable/file_metadata.py,sha256=DyPL1zQJR3HTyOGgvQzE7BxasTCkVRffeG_4WKfxf-8,520
89
90
  mat3ra/esse/models/core/reusable/frequency_function_matrix.py,sha256=I4B-ukMJ_aGpP_PHDd63bW8Jav1mreGeMiLqtrElIno,429
91
+ mat3ra/esse/models/core/reusable/hubbard_parameters.py,sha256=_k14y1Ery8_HePzsSPHmT-IbmDXnnbzy6dhYRPkVAQI,1129
92
+ mat3ra/esse/models/core/reusable/kpoint.py,sha256=WNFdWMoKczX6QK26uJaXWdpqphRM9GWN6dYoXcjz9D0,404
90
93
  mat3ra/esse/models/core/reusable/object_storage_container_data.py,sha256=LKvflErRqZIS2U4L586Dqkb5PN5BJd0oNUp2h0B4R4Q,834
94
+ mat3ra/esse/models/core/reusable/repetition.py,sha256=gxZO4RpUWaJ3epVhigvUnuYfbqLsFMDKmvMqehyAIow,291
91
95
  mat3ra/esse/models/core/reusable/scalar_with_accuracy_levels.py,sha256=s6TD3yrZlVdGYmMIqhBmhacuRIMRtfkJx_Ag_0Vl_OA,487
92
96
  mat3ra/esse/models/core/reusable/atomic_data/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
93
97
  mat3ra/esse/models/core/reusable/atomic_data/per_orbital.py,sha256=pd3oG1FfLevoA44FMemtkfO5Hc73gfO-H_GfUIw1W7o,530
94
98
  mat3ra/esse/models/core/reusable/atomic_data/per_orbital_pair.py,sha256=gLJkxLpRfNAixmVV1LCz-UHp-C55iq7SM7QJQnFSLWM,919
95
99
  mat3ra/esse/models/core/reusable/atomic_data/value_number.py,sha256=nEF8VBqob3JNGFogaJsaHWOchl_lGyh9MHDbFLF4h78,376
96
100
  mat3ra/esse/models/core/reusable/atomic_data/value_string.py,sha256=vwk-4oyLWQB7Qbw5dpUt79oaojZsJVlbZvPfp-3JH7U,348
97
- mat3ra/esse/models/core/reusable/coordinate_conditions/__init__.py,sha256=PbSAyxw3bkHm7ozSAApXVjQVwfKqxDskdP-l5tRFjr8,2712
101
+ mat3ra/esse/models/core/reusable/coordinate_conditions/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
98
102
  mat3ra/esse/models/core/reusable/coordinate_conditions/base.py,sha256=L7zYSATgDrli55qZhAutLnzOUXCp1PqTxL8-0XRO940,497
99
103
  mat3ra/esse/models/core/reusable/coordinate_conditions/box.py,sha256=eOjqGLjZD1EoVmBkh-s8-5aTFX4E7Se3thmOq4RjruE,735
100
104
  mat3ra/esse/models/core/reusable/coordinate_conditions/cylinder.py,sha256=t3OfPcQoQPTdrP03GeCPXcrk9AmvCfVK3AHw7L8gzoU,616
101
105
  mat3ra/esse/models/core/reusable/coordinate_conditions/enum.py,sha256=qlOpxIW7i5SowG5-rLSz6DAqIOlIIvPrQyqYMGoZmCQ,337
106
+ mat3ra/esse/models/core/reusable/coordinate_conditions/index.py,sha256=yNd0YsE4Z9XUnD5B5jQK9dMXE1FydbuIU-EpKdFAYCs,2718
102
107
  mat3ra/esse/models/core/reusable/coordinate_conditions/plane.py,sha256=zIV3ekbu4ygDOb3zGBvzxV8X2Z-3VnJFUFYGHTJMdyc,749
103
108
  mat3ra/esse/models/core/reusable/coordinate_conditions/sphere.py,sha256=P6NS9cBYOmjyJ5VeSuVUjpr4-rlTxkgvTYx5zgs--kI,574
104
109
  mat3ra/esse/models/core/reusable/coordinate_conditions/triangular_prism.py,sha256=JV5rlqQL43Iz69IWaMlPIg0JeJqo1DJFMx_8cjKhgog,1025
@@ -107,6 +112,7 @@ mat3ra/esse/models/core/reusable/energy_accuracy_levels/Reusable_schema_for_ener
107
112
  mat3ra/esse/models/definitions/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
108
113
  mat3ra/esse/models/definitions/chemical_elements.py,sha256=5Rc3-V1m7i_t20FgIVUs0njJL7s-JqYYTUqFufvH3AA,314
109
114
  mat3ra/esse/models/definitions/constants.py,sha256=53q7UtK31QOF3h4rVbOq4vNyXSqSjIL437A78i_5NaA,933
115
+ mat3ra/esse/models/definitions/material.py,sha256=VcwyzpimFgVINESeZuPO4d9ggWvdi-tZuBSLLkaBOaA,300
110
116
  mat3ra/esse/models/definitions/materials.py,sha256=Qzx6wi3SzRfILeuJlpAoOdFmC5VB1UOW3RkrLTg4XWU,301
111
117
  mat3ra/esse/models/definitions/units.py,sha256=4yoh-9dCLZhM02beLXVCuA4TpkPgm-QgEoWTvLkTBEs,296
112
118
  mat3ra/esse/models/in_memory_entity/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
@@ -117,40 +123,41 @@ mat3ra/esse/models/in_memory_entity/named.py,sha256=WtheTd6YeAfv_MA-hMu42B2Y0ev3
117
123
  mat3ra/esse/models/in_memory_entity/named_defaultable.py,sha256=bgydOU25QtBQvM28z6t30rBptbhWYu7vW0EISwxvRkc,758
118
124
  mat3ra/esse/models/in_memory_entity/named_defaultable_has_metadata.py,sha256=UUTNYPI9rhlxZvqz0vkpf7Tq_dvt5dl0qi4DEHr0Ljw,839
119
125
  mat3ra/esse/models/in_memory_entity/named_defaultable_runtime_items.py,sha256=g7MEuIogvwz7m1PxZO3Ded7QLkBaseXcVOYaO0aga48,1447
120
- mat3ra/esse/models/job/__init__.py,sha256=B-DqAodIR7lA0ETj6CqwKgHr342FdZfV-8n_sMnyUpI,65077
126
+ mat3ra/esse/models/job/__init__.py,sha256=WhdDBz67u25zuvduqKuZY6uadpoURTzctWnIdfeIsIU,65134
121
127
  mat3ra/esse/models/job/base.py,sha256=QZzYedxsoGbqQvIgLhBsCQDWvTlTgXM64-Jcy-Z4umc,8088
122
128
  mat3ra/esse/models/job/compute.py,sha256=strKlGY8VnnnFij3KxxZr2Hozf2_zhujhTb4cQxP5KU,5501
123
- mat3ra/esse/models/material/__init__.py,sha256=ZMAUxmfDM0DSDb4cMbOYmGG6DVfFhqvSCkUKH_oLP2A,11687
129
+ mat3ra/esse/models/material/__init__.py,sha256=L4pmodiWosWS4hnYv-O8fgrW5GTBVlp5YxromgZxUnY,11687
124
130
  mat3ra/esse/models/material/consistency_check.py,sha256=6fF96LF_xOwT4k47Ez3ADx3-yVnREgwY95N5aA12o0c,934
125
131
  mat3ra/esse/models/material/conventional.py,sha256=y6PGJsMs4ktea-q9LGZnRIYscFjfWjdZFmeyehAJdBE,303
126
132
  mat3ra/esse/models/materials_category/compound_pristine_structures/two_dimensional/interface/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
127
- mat3ra/esse/models/materials_category/compound_pristine_structures/two_dimensional/interface/configuration.py,sha256=nL8M94tAa0Qqwtmd-M87MmlcTcuq1oar8HcPMq_WhdA,97106
133
+ mat3ra/esse/models/materials_category/compound_pristine_structures/two_dimensional/interface/configuration.py,sha256=aTUaDgZz0NldvH73gFhTKweiBttWOnoOXx83Aukzy8Q,97106
128
134
  mat3ra/esse/models/materials_category/defective_structures/one_dimensional/grain_boundary_linear/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
129
- mat3ra/esse/models/materials_category/defective_structures/one_dimensional/grain_boundary_linear/configuration.py,sha256=2WEyPVnlyurT4aBEPmQBM9BQuV2eUkv2aYiThLazvIg,97230
135
+ mat3ra/esse/models/materials_category/defective_structures/one_dimensional/grain_boundary_linear/configuration.py,sha256=57Kn-vn1XB2-LheEOtWVYp5dwed5Pc-RLX8FhzXjzNs,97230
130
136
  mat3ra/esse/models/materials_category/defective_structures/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
131
137
  mat3ra/esse/models/materials_category/defective_structures/two_dimensional/base_configuration.py,sha256=NAvvdY-Y96fJJF2-dIQT_RUULnsba89HTeEcUB9QA7A,34124
132
138
  mat3ra/esse/models/materials_category/defective_structures/two_dimensional/adatom/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
133
- mat3ra/esse/models/materials_category/defective_structures/two_dimensional/adatom/configuration.py,sha256=i9QkCYsmPIAPv8WvBw1_UOCMFQlGdajUUQkH_0A0Ew8,46065
139
+ mat3ra/esse/models/materials_category/defective_structures/two_dimensional/adatom/configuration.py,sha256=10WUUKPQJ18liv_lAKUYMjvx2E2J_B3EbxjJuw1deJs,46065
134
140
  mat3ra/esse/models/materials_category/defective_structures/two_dimensional/grain_boundary_planar/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
135
- mat3ra/esse/models/materials_category/defective_structures/two_dimensional/grain_boundary_planar/configuration.py,sha256=IuLezWyDLXQgxocR8-cZk9Eaw7Pu-o_UCZyslsF-TqY,96785
141
+ mat3ra/esse/models/materials_category/defective_structures/two_dimensional/grain_boundary_planar/configuration.py,sha256=vDKrPrdttVRdO7oBcpQecpHBD_p2rU0tDlEPJmF6ylQ,96786
136
142
  mat3ra/esse/models/materials_category/defective_structures/two_dimensional/island/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
137
- mat3ra/esse/models/materials_category/defective_structures/two_dimensional/island/configuration.py,sha256=ulOMoP-56mHxeI-OYr88r3nCJwJvGBCLjMifJ5Ckems,66755
143
+ mat3ra/esse/models/materials_category/defective_structures/two_dimensional/island/configuration.py,sha256=faLL1LJ62aThwXKtxHsOxCgEMcSgefHke_CevKav5x8,66755
138
144
  mat3ra/esse/models/materials_category/defective_structures/two_dimensional/terrace/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
139
- mat3ra/esse/models/materials_category/defective_structures/two_dimensional/terrace/configuration.py,sha256=_lF5NfL0tNDigV8C7Lzxj7BAwFCa61q0UDzG7IHqkC0,66946
145
+ mat3ra/esse/models/materials_category/defective_structures/two_dimensional/terrace/configuration.py,sha256=BryDUiMFXOx9CA1sLnmimwe6cK7ss5M8TB7x4w6nASw,66946
140
146
  mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
141
147
  mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/base_configuration.py,sha256=I3pZiB4ivSxKo_8_VkOOmGk_GcKe-Q4bJSUfgd6JTHE,12135
142
- mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/interstitial.py,sha256=agQO-24UY_HExqjbcIb9JrnTT9baoDDEem9NxTCZpCs,23526
143
- mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/substitutional.py,sha256=Tui0-ovc6sNreBiLvQoD7Ndz44zHLIurK_QZ3T4tGfQ,23532
144
- mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/vacancy.py,sha256=_d2DG1JVPDCjsKvOpQhH0axhWDp9BR06K62mJ5r8ReQ,12365
148
+ mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/interstitial.py,sha256=NTpV5WLM5Pw9XFwZal-5D3Cahxad9dCwzjNG8qvTlRM,23526
149
+ mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/substitutional.py,sha256=JYSUrWOr9Zfetu4DZ-mPB6ObfHwvaDdG7CFWnzOGzeg,23532
150
+ mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/vacancy.py,sha256=pXoWkCJMPiSacGPLz5Ds0Jk4v4uH_WByOAIj2WrPxwU,12365
145
151
  mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
146
- mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/ideal_crystal.py,sha256=_c4rgXKiN8vtiPBDCq2I0QSo92vHWNkx3ctC7NeePa4,11753
152
+ mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/ideal_crystal.py,sha256=lgtd3eUf8-J4-tR07nmy52U1a226fT9lYTsU6bvtKUI,11753
147
153
  mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
148
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanoribbon.py,sha256=LaO2IuxTr33p_gzLD45rSbS7WanbR8pByQlhTyK2Jqo,35465
149
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanotape.py,sha256=rlq44liXvAH7Nq11oCvk5Sds2FHNrJC3YANvsjWSMCM,25530
150
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py,sha256=UOTv3LoXrcQTMWZamTnJ66vLWScq-PtCqiJS2NWMEmQ,24774
151
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell.py,sha256=cjDaNyOtgnTxzE2hWirloJPdMYor_OB-Ur0BO8HFZhQ,25510
154
+ mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanoribbon.py,sha256=Ro_lJZufaq7Z1jfYV3MEn9P-hiybeMbxzVu1n4nj-yc,35465
155
+ mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanotape.py,sha256=fLvGAG8bJv38YmLkf5DzxAUHay4IvwPWDyICBipwkz0,25530
156
+ mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py,sha256=eKUeQTsoilvH4zp2ObMXUfbAGLXUBhpTVPSpW-_B8z8,24774
157
+ mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell.py,sha256=SSajLB5xXn-xiVSM0ayv-FamujyDPcAjNtMMJAMtnnQ,25510
158
+ mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell_with_gap.py,sha256=PXUOWUi7Q_6P5OpOsnJbxFNzQJaGHF6EVGeeep3llbI,25355
152
159
  mat3ra/esse/models/materials_category/processed_structures/two_dimensional/passivation/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
153
- mat3ra/esse/models/materials_category/processed_structures/two_dimensional/passivation/configuration.py,sha256=DPYIs_ICWnjFkZlWArImG_j6l3YH1zBdHb3crQSxsaE,25469
160
+ mat3ra/esse/models/materials_category/processed_structures/two_dimensional/passivation/configuration.py,sha256=FvkDduIO3CZRtLw9YFAb7OVI-X8LjH9KueB0zDr3vuE,25469
154
161
  mat3ra/esse/models/materials_category_components/entities/auxiliary/one_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
155
162
  mat3ra/esse/models/materials_category_components/entities/auxiliary/one_dimensional/miller_indices_2d.py,sha256=DS2U7ib49w5uGrtpt4BsD86kmt2WZBACrk5FLfX-eE0,480
156
163
  mat3ra/esse/models/materials_category_components/entities/auxiliary/three_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
@@ -160,35 +167,35 @@ mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensio
160
167
  mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/supercell_matrix_2d.py,sha256=AKWn7TICc3OHL9Ip1A9coI8Gl-VDpgcZCjKmcSAbXRw,769
161
168
  mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/termination.py,sha256=LE0QSArs0CTPvIQ6-osWymoeEGh7ebotWqUnFUNksII,2401
162
169
  mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
163
- mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/crystal_site.py,sha256=MPGVcAYLAElkrl_dger2cywpTpPbmIRns_xD96JPmB0,12035
164
- mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/point_defect_site.py,sha256=7B3qYwFWhJgkNjJynlZrbkTyzq2hDSGBowLg1k0fyW4,14031
165
- mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/void_region.py,sha256=L_jp4d7YJQ955YNmJojvasjNAvjQaPy1YGeGL7sba-E,14096
170
+ mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/crystal_site.py,sha256=KDpzjKq3c548E8mHELUKo1nkfU-UJN6abFf1bdg5SCs,12035
171
+ mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/point_defect_site.py,sha256=SLDiNxeg0jv4x1FNh6E90WlHtQNB3D4HmfOLvMRPH44,14031
172
+ mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/void_region.py,sha256=4M8Ny94hl4nCLGAkzPKfsS8y-9gp2ar8RvIzeVkGH7c,14096
166
173
  mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/void_site.py,sha256=Eyb9jZfc6DWOM1ECkCsycHWCwFNRZ-CqXZtKQtoI8lo,34945
167
174
  mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
168
- mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/crystal.py,sha256=PegLCC_-FHSSIPIhi3vR5LCuFZiNXB9ktjVKD03rxSs,11747
175
+ mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/crystal.py,sha256=0NA1kWSGKp8PibrX2Ipyhsn-jq_aIN1hKbqPwdZjBGo,11747
169
176
  mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/void.py,sha256=O4CSYSZkXs72ceagAbSf8Cn2qa3046ncl5874HQc5ek,2575
170
177
  mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
171
- mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/vacuum.py,sha256=m6Cp3CZSTZNR7QWZkINQWcrAdrJmVV-FdUOy66-e9hI,12187
178
+ mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/vacuum.py,sha256=HZlDk-rMhEVpMdC0Eylg7a8AQXbsA73ZkiC2qOO5cL0,12187
172
179
  mat3ra/esse/models/materials_category_components/entities/core/zero_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
173
180
  mat3ra/esse/models/materials_category_components/entities/core/zero_dimensional/atom.py,sha256=3WX1b139aRToS55r7jWHCTETfXsMcM1CdJ2aqpnUZ_Y,1957
174
181
  mat3ra/esse/models/materials_category_components/entities/core/zero_dimensional/vacancy.py,sha256=HQvsRbEAvwebozf-6AvCQBsbqo_6lwMWrBOevpNPnmc,479
175
182
  mat3ra/esse/models/materials_category_components/entities/reusable/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
176
183
  mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
177
184
  mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/crystal_lattice_base.py,sha256=wwUKYpZAb1tJh6-d8rWudAjmp5mF-gR89wws7nLa488,12064
178
- mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/crystal_lattice_lines.py,sha256=Xgf6oSXLiKv50Dt9xQwFt9GNPDxpBGPbWl3BTq3E9aU,12248
179
- mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/crystal_lattice_lines_unique_repeated.py,sha256=o78oxBO2qJvTzU48cjQjN_6F6OTnvuAOrAf_rmmL11Q,15408
185
+ mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/crystal_lattice_lines.py,sha256=KBb--bfznqBbnNBKMku8YT5ywz1YDrzugcWpdCgcOwI,12248
186
+ mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/crystal_lattice_lines_unique_repeated.py,sha256=n_mJ8EZYnHftEQKu_hiHEAyoi6f3hKqMnkqxSntOLr4,15408
180
187
  mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
181
- mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/crystal_lattice_base.py,sha256=zb38Ca_-JqAR73Jk4WuJihNZiLmA7E34UnMcCK7ZnRM,12072
188
+ mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/crystal_lattice_base.py,sha256=1D8XRl2M4Ilvb4zap4x1k84Pa93WeXcLTChjPDlF6NM,12072
182
189
  mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/repetitions.py,sha256=t4qqfe4omBUSnrRFGgBjO15HwZtSEpNzs3GXrdHWZtw,802
183
- mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_non_uniform.py,sha256=cNVCIPaN4te2J5eg0fK-FZ5ZARGMqghhkmr-5U78Lyo,12249
184
- mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_uniform.py,sha256=p4LSIOL_sXaxpt8DfgSomS_BiFs6ryL2eJ5eSVAW1r8,12078
185
- mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/supercell.py,sha256=HyKMyPaCyddP2__88Z7Q4w_Ew65MCTsBQLxyBJl1ptg,12199
190
+ mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_non_uniform.py,sha256=Q9M0QNb_IbxPhoU84zglubGkmM0Uqp7NWBvLxvzjeic,12249
191
+ mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_uniform.py,sha256=u2hMmZotYnY0lrqEfg6U1dr1YaD9341HwTwCu2kAIOc,12078
192
+ mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/supercell.py,sha256=u0A4w37ffY7_TD4g34xvZIFJrFFiwdxEhP0HjS6hfso,12199
186
193
  mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
187
194
  mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers.py,sha256=-HFh1fnbDB-g3ImfZPL17MFI6bp8CfCmUO13xeX3WIQ,14487
188
195
  mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique.py,sha256=03j_Oi4mKrTx5k5xu-XE3HSt9GOBh0g5cJ-OX0sDcV4,14508
189
196
  mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique_repeated.py,sha256=8fg-uAnNQZUWS2ohE0cKstoJ2mbN34jm1iXrI4FsEAs,14639
190
- mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/crystal_lattice_planes.py,sha256=JVssz7P3ceZx5MgrXKvDauCVAmeViXmQCEUV0VrIS0w,12270
191
- mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_stack_configuration.py,sha256=EW7CFruuiob5Tuaw-IU3m2DvgLubn-Vw9vvV86PFSY0,34747
197
+ mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/crystal_lattice_planes.py,sha256=i2b_r4sDJAXJeW1ei_pW-fmh5-GCKrEt69KjLr4brSo,12270
198
+ mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_stack_configuration.py,sha256=nVqZ5asSQnc9IckgKRnBDoiM1wPas1Wr_T78VpY-M8o,34747
192
199
  mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_unit_cell.py,sha256=kO8vyBXFcXzMB-RH-Y5KKJHlIhj4-1pQ3447PDZxDMM,24464
193
200
  mat3ra/esse/models/materials_category_components/operations/core/combinations/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
194
201
  mat3ra/esse/models/materials_category_components/operations/core/combinations/enums.py,sha256=4IGswkEqNbfL-KM4jUG4Sb2GUWv9HwLu6onoPoQbB1I,292
@@ -196,7 +203,7 @@ mat3ra/esse/models/materials_category_components/operations/core/combinations/me
196
203
  mat3ra/esse/models/materials_category_components/operations/core/combinations/stack.py,sha256=p3pdL7qhxTKCfosOaZMw2q4OC4MkSZhEnAh0z9XcKV0,806
197
204
  mat3ra/esse/models/materials_category_components/operations/core/combinations/stack_component.py,sha256=JMxOvdKjNolVy1JHQF75bkpKDYM4iYHB058h0JmqE5c,21523
198
205
  mat3ra/esse/models/materials_category_components/operations/core/modifications/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
199
- mat3ra/esse/models/materials_category_components/operations/core/modifications/perturb.py,sha256=Xy5XI468xs1Vd1SLsUwBYV_EnHl6LFB0t4gaE4a5XVo,12036
206
+ mat3ra/esse/models/materials_category_components/operations/core/modifications/perturb.py,sha256=5eclBUGTfojuEJEH-BBznNo3XnCe6ZTdVcl4DdwN8sU,12036
200
207
  mat3ra/esse/models/materials_category_components/operations/core/modifications/repeat.py,sha256=G0pT_vKMo3C9GnbRhGiDEJNDqbeDe_oJBl3WrnhUXEk,833
201
208
  mat3ra/esse/models/materials_category_components/operations/core/modifications/strain.py,sha256=-ofQnUtBVVf-AjO7h2Gc15qGFR6GF8P5x0s0lFkrSiw,577
202
209
  mat3ra/esse/models/method/__init__.py,sha256=KErSMWtloFyYMkQVa8lWT-fox0LgnDD3395K9aLbNNY,668
@@ -311,9 +318,9 @@ mat3ra/esse/models/methods_directory/physical/ao/dunning.py,sha256=XALpYNjeztKPY
311
318
  mat3ra/esse/models/methods_directory/physical/ao/enum_options.py,sha256=f2FIx6R_zTNWLM2ADlr4WOW7C8MXqxO7TR2CfsoW7WM,255
312
319
  mat3ra/esse/models/methods_directory/physical/ao/other.py,sha256=-Rrf-6ZyKFciw9a9lURlzDZuk-86t3wbOxodh4PRdLk,2870
313
320
  mat3ra/esse/models/methods_directory/physical/ao/pople.py,sha256=k9e2xkCQ7bLANaAqhMT5-enRyD4y9KeJ9KLVNTj2ffU,2692
314
- mat3ra/esse/models/methods_directory/physical/psp/__init__.py,sha256=jK4FbSDPbvzYQgBZb9-kDKmFjmqWzg_0Os0anoNkEb8,5525
315
- mat3ra/esse/models/methods_directory/physical/psp/file.py,sha256=K1-bsq8dbxoGtm3qAJkmtx_V9hCbE9B3oV-b6RGXBXM,3206
316
- mat3ra/esse/models/methods_directory/physical/psp/file_data_item.py,sha256=oAFMywLm2byFzGwmW1Qf7w6eh2hnZykNbZbYNzUJfPI,2819
321
+ mat3ra/esse/models/methods_directory/physical/psp/__init__.py,sha256=MRggEQQz3jWad4WxUJyfr_NLIAPqGuvFClA_PZLR_Fo,5491
322
+ mat3ra/esse/models/methods_directory/physical/psp/file.py,sha256=qZHsYrTBPU3HF4aq5IwJ77SitLi0-xEp972MXqkSItc,3172
323
+ mat3ra/esse/models/methods_directory/physical/psp/file_data_item.py,sha256=5Cwlctwt18h1GFgf4UUcSHGCUzaaN1xJET8ssqLblW0,2785
317
324
  mat3ra/esse/models/methods_directory/physical/psp/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
318
325
  mat3ra/esse/models/methods_directory/physical/psp/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/g.py,sha256=uiN1GsD9dGzZoTghN6hhdA8m3fyBbvbXZH8YYAkjUb0,646
319
326
  mat3ra/esse/models/methods_directory/physical/psp/file/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
@@ -376,57 +383,63 @@ mat3ra/esse/models/models_directory/legacy/dft.py,sha256=4S3t0S0Mbj1Vo2QqfZMJO3S
376
383
  mat3ra/esse/models/models_directory/legacy/ml.py,sha256=QRKfPsxElrbdDBLMCzcKtQ8dMqwes3IqiI4udyKGjJ0,1112
377
384
  mat3ra/esse/models/models_directory/legacy/unknown.py,sha256=GxE6kGWW1vv_gRNbatQcvgt0V5RVayroQVLclPs19Lk,1134
378
385
  mat3ra/esse/models/properties_directory/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
379
- mat3ra/esse/models/properties_directory/derived_properties.py,sha256=YUnAk7sKRMgb1xRVRKZT695wYDimfMy1JbQjMJA3h70,3021
386
+ mat3ra/esse/models/properties_directory/derived_properties.py,sha256=2XjOZTia6OaZP5yRpzMY0fioN46ywI83W6HQUpnUmiY,3021
380
387
  mat3ra/esse/models/properties_directory/electronic_configuration.py,sha256=B0BdTCuUf25tXd2w2kJyLtnfNJwWUnl6tYhXeZvwFjQ,480
388
+ mat3ra/esse/models/properties_directory/jupyter_notebook_endpoint.py,sha256=9dPjWVLvHRLyhcxY8RFDxzxH3j_kS4vDzp5m_phoKEQ,412
381
389
  mat3ra/esse/models/properties_directory/elemental/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
382
- mat3ra/esse/models/properties_directory/elemental/atomic_radius.py,sha256=VsSKIbLYl9GseztXyzggDAMyMH0qJ3s_9IS8lxYKz88,591
383
- mat3ra/esse/models/properties_directory/elemental/electronegativity.py,sha256=vkmKQDpw017QMJAHa9Pd3jr4ejBrMvt5j0BJ41_8zBg,395
384
- mat3ra/esse/models/properties_directory/elemental/ionization_potential.py,sha256=qw_mwkuBkuFho-Z8cfMZowqKMYZTTsO-Yhp2MA00RSM,597
390
+ mat3ra/esse/models/properties_directory/elemental/atomic_radius.py,sha256=zEMYLGaTB2no4arsVFI4RR2shHppyqNV1uJGVqpP8yU,574
391
+ mat3ra/esse/models/properties_directory/elemental/electronegativity.py,sha256=UIvxYE9SNZEsYyg4lGqmBa4oQHfL8DJjHPdWJ_BmJkU,350
392
+ mat3ra/esse/models/properties_directory/elemental/ionization_potential.py,sha256=7D6ZcMvUEZd-DjTxXu5fDk7pjHbWXSlwj507XMxJnsw,558
385
393
  mat3ra/esse/models/properties_directory/non_scalar/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
386
- mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py,sha256=jDyoHKzztDVnXhVpwNQTOy9mPUUD22Y5JWjGOUPyvRs,1596
387
- mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py,sha256=7ypgPAH8RgGlntishJctQeAFDsjBUbSoZ0GfRwue85I,1817
388
- mat3ra/esse/models/properties_directory/non_scalar/band_structure.py,sha256=-MJbNha7ADfuPtB1J6grN0wGu-PFuYpOYmkU8OPOGjo,1590
389
- mat3ra/esse/models/properties_directory/non_scalar/charge_density_profile.py,sha256=PSA9V0WCP0Zur_OmzFPLD_3X8Ovttl1z4yzMeWBDOy8,1295
390
- mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py,sha256=onhpbPYy90AV5jVH7MQNj6DSO_ivEMbg-IDOR3iF5jg,2012
391
- mat3ra/esse/models/properties_directory/non_scalar/dielectric_tensor.py,sha256=_1KlHVqxzjgh9Z36kpsjeHRi-SsjxhmLWt8wMYi_6rc,807
392
- mat3ra/esse/models/properties_directory/non_scalar/file_content.py,sha256=4sLUkzH_EQ-aViO7aCxhPgNDXIAr2MqfF6vQfZaC6pc,1429
393
- mat3ra/esse/models/properties_directory/non_scalar/hubbard_u.py,sha256=D54t-aVR681xVuXUsaHboyrOPWWuamNrpEEFrLDCT5g,851
394
- mat3ra/esse/models/properties_directory/non_scalar/hubbard_v.py,sha256=cPf7FiOgOUi1ozzirTq4tomjqWxAlk6zybuhsYrba1w,1256
395
- mat3ra/esse/models/properties_directory/non_scalar/hubbard_v_nn.py,sha256=xDW1U9JsHKdoPZlTPmm-mDepEqHoOEomQNFDc1pPtbk,1278
396
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py,sha256=53LbI43LngVvmDK63gzAhQkqGMp7SdOQtaA4Q1AnKoo,1384
397
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py,sha256=hlcW6GgSqAMB1QdpD8AAZIaKEOqt9UM3v5-x4PeCHtw,1405
398
- mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py,sha256=4_U9JxGoTN6O81IhdZU3O8QMjNLdpXTw8O-ueTvEIj8,1384
399
- mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py,sha256=-vSlIz6eI38cijkRYXCoCP5L55f9zM9Z3VLICdpzbi8,1421
400
- mat3ra/esse/models/properties_directory/non_scalar/stress_tensor.py,sha256=dFsa5qUQo8PDiZG_tZ-DQX7YiXflvb_gcGQHm9NXmMc,758
401
- mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py,sha256=4ViXNIYuftBbPHQoKktZusibyR9NTAX5XFjRp0Ok3rs,4464
402
- mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py,sha256=beQQrVAHxPqRr2rA6Ky_eAfP3TKyUhfvDYSdnegPAoI,1564
394
+ mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py,sha256=wflrLoKsdogMvsXeV41AHuWCgi_Ai-Bn11WmIZGrWgA,1498
395
+ mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py,sha256=4t748CYK7VT8-JBrR2Nch8MxHGqsc6BPOA6Yu-CFAec,1808
396
+ mat3ra/esse/models/properties_directory/non_scalar/band_structure.py,sha256=KO9T7OBcuYAFUmEgg8bacAv9cZF-YX44Xqwe4Sk4F7g,1475
397
+ mat3ra/esse/models/properties_directory/non_scalar/charge_density_profile.py,sha256=i9DNVqg1dd9JF8ji8c6bp3QHjjxvUOSGt6NofPX7J9o,1197
398
+ mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py,sha256=zICjslDvkDNkN9gkvKea7Iys-b756lXuow39Wf1fkKc,1931
399
+ mat3ra/esse/models/properties_directory/non_scalar/dielectric_tensor.py,sha256=_mA_r2UAYrVOo0-bNjvH-1NHk0_CQSoBJ4E63s9oeTk,796
400
+ mat3ra/esse/models/properties_directory/non_scalar/file_content.py,sha256=LtApIdDPdWMWdKxThYccEzAuk-MxdJ8JqPKwWwbjF-I,1426
401
+ mat3ra/esse/models/properties_directory/non_scalar/final_structure.py,sha256=PWYYnHV-qQ-8CwVSnO6_LMDgKYSMQQ_5I1UTJ1LmnHM,419
402
+ mat3ra/esse/models/properties_directory/non_scalar/hubbard_u.py,sha256=Ph3uhrFREqbuqyQIU35D6PJfCTxz3ofAsldV5N4PzYM,821
403
+ mat3ra/esse/models/properties_directory/non_scalar/hubbard_v.py,sha256=7MviUNQj-L5tb72cDfropb_tqdHkrRNEKK5Ymz01rhg,1202
404
+ mat3ra/esse/models/properties_directory/non_scalar/hubbard_v_nn.py,sha256=79F0PbL9fp2SyWwV9YK5z6ByvXgvTZcPT2_oNeVZ1-E,1213
405
+ mat3ra/esse/models/properties_directory/non_scalar/is_relaxed.py,sha256=U8l7iXm0rWe9bU6OC0nfKC1TpBGfVElFaLvsxYgHJ5c,395
406
+ mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py,sha256=VIqamu8LATOA42IUXgtHRAsdUWitLoxicNx_yzH27C0,1288
407
+ mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py,sha256=ua9SlHKjt0OJYwB7HjWfGjQNw2NgB62Ep1vftIA6F9E,1307
408
+ mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py,sha256=VDasf-9dajt3cAG1kUiaoJ1knnubOL1JdC_8VUc9rR4,1286
409
+ mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py,sha256=kNQNrlGOEmFAGb-RQ6637Jp5JBUCJR9i09-xe6N7JEI,1323
410
+ mat3ra/esse/models/properties_directory/non_scalar/stress_tensor.py,sha256=v-WcirmVNOqeLsIIjYOsE_t6s31QvhKWwvkwqb903Ho,697
411
+ mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py,sha256=dvY67hm0PfZhxfrVKWWdkmefNeCUfwhaj6z8TsAgG9k,4726
412
+ mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py,sha256=IQColjHIzuCMc4i_E0V3R0L1I2nufPgZ5TJxAMseAT4,1466
413
+ mat3ra/esse/models/properties_directory/non_scalar/workflow.py,sha256=w-7iGg4kUNMstoqP-xPgWpq-zB0gc58HW0tk_3F-eYs,60058
414
+ mat3ra/esse/models/properties_directory/reusable/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
415
+ mat3ra/esse/models/properties_directory/reusable/hubbard_parameters.py,sha256=mD3oug39UqtSJZnwRLgffU4X9xYmk5CMIvIPhKGW3RI,1145
403
416
  mat3ra/esse/models/properties_directory/scalar/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
404
- mat3ra/esse/models/properties_directory/scalar/electron_affinity.py,sha256=3cxyhBwiKEGnR9OWrjRYBH1tWyYb5GAqUMEicV8ZDnM,614
405
- mat3ra/esse/models/properties_directory/scalar/fermi_energy.py,sha256=od3bk96svxzTXdEQjyyytZ5ADdjLvf3YTq_TgUeU578,594
406
- mat3ra/esse/models/properties_directory/scalar/formation_energy.py,sha256=noKcVIyhs1OQbtuxODMduOofx4zpJZ4lR6KsgXomThY,610
407
- mat3ra/esse/models/properties_directory/scalar/ionization_potential.py,sha256=yVopco8y_DjhPts-pFcXVhvLB6PKPav4iHRJ0oIrOfw,626
408
- mat3ra/esse/models/properties_directory/scalar/pressure.py,sha256=I6OrUOgvCUmXr1dD7Gfn17wAObEWVJW5vy6bdHf5qYE,443
409
- mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=A4fo0iCGqvGLm7CQEXifrHtsEfymebS6ttZX93LbGEQ,637
410
- mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=EXH9WWb1YI9NTY47rDpjhu76Ngoz17Y-z4C_UCnIXPE,602
411
- mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=7PiZEA6TRWtoYv7ExX2gKT7TjwtuGHEpXD76M8iBzPE,594
412
- mat3ra/esse/models/properties_directory/scalar/total_force.py,sha256=l8X_eaNZNgm5rT_vEsNm5uaxBhAs3zGAcY-3MQHKLss,581
413
- mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py,sha256=UqwUtnC0G6qL3w8iXmX0ngsTvwKi_kMAADi97sYL71I,621
414
- mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=YTXLm38THxIwLxtnQ73CByZAV2wdwQo55MPWClqy99I,613
417
+ mat3ra/esse/models/properties_directory/scalar/electron_affinity.py,sha256=YrmR2Ue4rGREztQlTP59PLscq8NMrc46S_YQ9S-Yrdw,622
418
+ mat3ra/esse/models/properties_directory/scalar/fermi_energy.py,sha256=X4jxfTWetjv6YgHZuCF2vQndbbhCryb9ML1itFBhYpc,602
419
+ mat3ra/esse/models/properties_directory/scalar/formation_energy.py,sha256=kXxLU-sRNKAF5pnLqJXCJPwr1NaYcbqnjpOXhX6sCCc,618
420
+ mat3ra/esse/models/properties_directory/scalar/ionization_potential.py,sha256=JsMYxhtdmxWvu0CZvvOoxAgFuLy-7_3WEkVRJsWUNDs,640
421
+ mat3ra/esse/models/properties_directory/scalar/pressure.py,sha256=hkwz8YNasVooSDhRt4n8CO7gnQ-TX7uvOomijlQqMUc,395
422
+ mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=VGZbVWt-6k0ROczVDaeteESL1pvzM_s-ByBCwu2Q1nI,645
423
+ mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=1fwr7xtVbHhC-MeSbjJvtK-5-jQJWClnU3frAZ19hB8,610
424
+ mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=aIPQJ0s9Dq24dvYi67D47nT7onljXty9iWcz8SQ17eI,602
425
+ mat3ra/esse/models/properties_directory/scalar/total_force.py,sha256=1tk-bv1a3LsdP7JOg1BnDGMx2KMLEC7N1D59GKI45OQ,527
426
+ mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py,sha256=x0or78NtsVVKJacPyom9kXK4gB2qY6qOHYBo9yFDgHY,629
427
+ mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=hyJ6Sy3rzW_pu9R2n3X0nck9VLXkF0iLEh6_K9fjw_g,621
415
428
  mat3ra/esse/models/properties_directory/structural/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
416
- mat3ra/esse/models/properties_directory/structural/atomic_forces.py,sha256=yPM70FgjTSditbp9BweIRO6eqIPjUyLn0lZfK7c2iDw,900
429
+ mat3ra/esse/models/properties_directory/structural/atomic_forces.py,sha256=V2gr4Da1Fw9xTiUGJmAXtVDnuenQTcCdDTwBOmNfe-Q,859
417
430
  mat3ra/esse/models/properties_directory/structural/density.py,sha256=5DnHGdXovz-hGHM8EZBzeWM5s8_oaTZ16V1_p-UfvNw,439
418
431
  mat3ra/esse/models/properties_directory/structural/elemental_ratio.py,sha256=wgP50mDBnbT-T7jRruh3hrA05ramINncy2bz_e2kTiI,500
419
432
  mat3ra/esse/models/properties_directory/structural/inchi.py,sha256=xCi4OEhXn8ie3zzA2W8fIM3lXNMxgk75tiZYFoQs1us,366
420
433
  mat3ra/esse/models/properties_directory/structural/inchi_key.py,sha256=bxthmbu3SOeuloWXgFnIOdKtf4cokXVIP_y8Ya9Pe08,381
421
- mat3ra/esse/models/properties_directory/structural/magnetic_moments.py,sha256=sgvKUcrr5iVhWTbalWt_-aGxUo9MFU9qLivCfmbr-nI,774
422
- mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=Oo38U4yQ0BnXO0ws4k8ULzPXMFneWfBNps4IaS9LKgg,1793
434
+ mat3ra/esse/models/properties_directory/structural/magnetic_moments.py,sha256=PSpZdowrD-0wxtPmamMr4tvw0PKTH9Nq1f9lDECzPyM,733
435
+ mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=MW73R4u0myEZg1JH1XXhjqAjZOvRXFxZr3mu1PuT1oc,1742
423
436
  mat3ra/esse/models/properties_directory/structural/p_norm.py,sha256=A6EJUYY6dzGH7Uq1jTCLj42ePRPSsg7pE4dOL3bxQmA,445
424
437
  mat3ra/esse/models/properties_directory/structural/symmetry.py,sha256=aJLmfkhOBRXsJRUacU49465EEa0P_rRU8Dq8lDRFjO8,840
425
438
  mat3ra/esse/models/properties_directory/structural/volume.py,sha256=nxXXQKaknwfKp43tslUza_lpa2BPpLrrIvwoq4C1ca8,443
426
439
  mat3ra/esse/models/properties_directory/structural/basis/__init__.py,sha256=jwKMVnUQBhnlbl4whizh_Rid7Jyqh_FjdvE0RZE1bpw,3170
427
440
  mat3ra/esse/models/properties_directory/structural/basis/atomic_constraint.py,sha256=MJfolJSgvQ4zPWZi36Y-9fUUkfSnVBKW0HCDhxsEfHM,441
428
441
  mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints.py,sha256=GCngLkD-6_Xkn6WL0vqj5r14vJrnT-JE68TWMwCDAso,660
429
- mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints_property.py,sha256=BqRWld9jbvPw2hUYMu83QbFoZNvfXt2o-_w_TBB_aeY,779
442
+ mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints_property.py,sha256=rLa-uGDhaqXl594dWo-JCZ4y_lL4IZ7p9p7VHRDaexA,741
430
443
  mat3ra/esse/models/properties_directory/structural/basis/atomic_coordinate.py,sha256=JTRnk_xltFjOg-pS8-pS_h6WPL60FrY4t2HJyqJ2zaA,466
431
444
  mat3ra/esse/models/properties_directory/structural/basis/atomic_coordinates.py,sha256=m0aJfvZ2j_H2zzB-dt5jr0e9V-tT9t4DUAA6klL4jtE,685
432
445
  mat3ra/esse/models/properties_directory/structural/basis/atomic_element.py,sha256=d03qfKF6W9tacxYSvtpTJSY3KSRRNtSA1zsXzd6HpOg,2128
@@ -434,33 +447,39 @@ mat3ra/esse/models/properties_directory/structural/basis/atomic_elements.py,sha2
434
447
  mat3ra/esse/models/properties_directory/structural/basis/atomic_label.py,sha256=njbXBHakrcBeA5sAN-rd5vKFln-9UmSFcP52o-UiEYs,425
435
448
  mat3ra/esse/models/properties_directory/structural/basis/atomic_labels.py,sha256=Iuug5ZGmvd0rGOedso9uJX-qRTR64XXeYiMjmMpLWIM,632
436
449
  mat3ra/esse/models/properties_directory/structural/basis/bonds.py,sha256=cToJoqVarNjMvpFfAYFUpQ0dYUFFeIToj6sDXk3pbkA,929
450
+ mat3ra/esse/models/properties_directory/structural/basis/boundary_conditions.py,sha256=1-LIC0Ix6R6WE3K7Jdr8HGF-mBU_KqN935jn_MNG1NM,641
451
+ mat3ra/esse/models/properties_directory/structural/basis/predicted_properties.py,sha256=IbW5UXY35Bn_mneDYkpeTxV3kTt_JKpN5aaGOopJLnU,2006
437
452
  mat3ra/esse/models/properties_directory/structural/basis/units_enum.py,sha256=UXeF7m08cdRo2GEsA7dXXwvLjh4Fq8DpWBlM29kUaQ4,266
438
453
  mat3ra/esse/models/properties_directory/structural/lattice/__init__.py,sha256=J9gMT0etIOeoJXm0U4ugB9q-zYfI27XNmOnEyqv55YY,2343
439
454
  mat3ra/esse/models/properties_directory/structural/lattice/lattice_vectors.py,sha256=NOVgEB8gfdLGewqFk7V6wwT4VILyKeiOIp4fIAcdCrw,655
440
455
  mat3ra/esse/models/properties_directory/structural/lattice/type_enum.py,sha256=gZtoI5CHbSUtr9W-PqWkDBwAN-4eNCRKuEW41ZYOc-Q,448
441
456
  mat3ra/esse/models/properties_directory/structural/lattice/type_extended_enum.py,sha256=jEw00CIiKdPSxpefwR0rwqPkNuIZ1Uq56emjvfQbMvo,725
442
- mat3ra/esse/models/properties_directory/structural/lattice/units/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
457
+ mat3ra/esse/models/properties_directory/structural/lattice/units/__init__.py,sha256=3EGGeYcxAzhUrf4jqbSIPZLriaoj67dfNxlFXU03gT4,645
443
458
  mat3ra/esse/models/properties_directory/structural/lattice/units/angle_enum.py,sha256=MZSdGecIOTYmE5yXxIueTXmDlR6o1vOgeRUw6jsQJho,273
444
459
  mat3ra/esse/models/properties_directory/structural/lattice/units/length_enum.py,sha256=lGVe1Z0oYZAcTbbExiv4zdD4Gcn0dELEa7CkiCivojY,275
445
460
  mat3ra/esse/models/properties_directory/structural/lattice/vectors/__init__.py,sha256=jgkDa6RL1UQStFtJ-e8X3stw4PlDy0y4m49aHYZJJvY,834
446
461
  mat3ra/esse/models/properties_directory/structural/lattice/vectors/units_enum.py,sha256=B5--gwj35fcx5I7_PrcTu9KkEFGIqq8wmIjbM7R_yOU,277
447
462
  mat3ra/esse/models/properties_directory/structural/patterns/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
448
- mat3ra/esse/models/properties_directory/structural/patterns/functional_group.py,sha256=MkdEdVePRoURQmIKY34FSETHZ1XxwjanHdv3VDpYpFI,919
449
- mat3ra/esse/models/properties_directory/structural/patterns/ring.py,sha256=vZ7tsonZikbbOTD_Tbyl43V_-St40amxJq1pS2ybH6g,749
450
- mat3ra/esse/models/properties_directory/structural/patterns/special_bond.py,sha256=KnVmYAti3CfLIds1wVM8qW_cN75VGGdWQ7Ew3VFPpSE,742
463
+ mat3ra/esse/models/properties_directory/structural/patterns/functional_group.py,sha256=U2oULXwCu91PcwP0405yBfL13PM4nLNKpBqgPEk7GOg,902
464
+ mat3ra/esse/models/properties_directory/structural/patterns/ring.py,sha256=REsmdtHn2Szpn9Lk3Ve-L4sweIhv1KKo9AVSe9XLnQM,732
465
+ mat3ra/esse/models/properties_directory/structural/patterns/special_bond.py,sha256=165dzQtIQ9-pxdK3HcpGFXbJINud4imaCyTHcevkP_0,725
451
466
  mat3ra/esse/models/properties_directory/workflow/convergence/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
452
- mat3ra/esse/models/properties_directory/workflow/convergence/electronic.py,sha256=MuMgO1Gq1285cvnjASCcFsHOD2ArcSjrV2OOWISF-M4,558
453
- mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py,sha256=_h5SM9tWtL3ZQkHfJ39cvTgkhDgKXzGN3l1flQ7YRsc,1308
467
+ mat3ra/esse/models/properties_directory/workflow/convergence/electronic.py,sha256=J38uUNkPnBM0Kqpx0SulxGMMJS7evAbCqO8J9mZY0Mk,507
468
+ mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py,sha256=bakHi5vYdrMt49lTD_zJFQoiPrjD2BR2sA_AzOp64jw,1265
454
469
  mat3ra/esse/models/properties_directory/workflow/convergence/kpoint.py,sha256=zQi62_9dhbhFfN-iaqvzftnuYWG8-iVKmVYIDID0v8w,915
455
470
  mat3ra/esse/models/property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
456
- mat3ra/esse/models/property/base.py,sha256=mb5Q1XgYt7WrFhUir0O99ufQNzhiJog0yfoqECokquA,5003
457
- mat3ra/esse/models/property/meta.py,sha256=i2vBnAMuEmTXNS00Id73OM4SicwTwtmaM8hGJ9-Qucw,4996
458
- mat3ra/esse/models/property/raw.py,sha256=OhVfEY-876sr9QwnxuvHGzW_GBhhOcV11rLlASZu_RE,5000
459
- mat3ra/esse/models/property/source.py,sha256=lr_eBXAwQ9c_I0hQUFUe9EOg7nDEgoG3CDOnsh_lo_A,3466
471
+ mat3ra/esse/models/property/base.py,sha256=xbAwdM8snWrpQijM8e5nfybKnrDm4oKZCjA44VYooM0,34647
472
+ mat3ra/esse/models/property/holder.py,sha256=KOGv4PgdX-SWEtKUpoMP0AWjHwlhUr8grucmev9dyP8,88804
473
+ mat3ra/esse/models/property/meta_holder.py,sha256=SNq_lnEiLL059XaYpauXI-ONVNitWlj6BbSU36zVCHA,3404
474
+ mat3ra/esse/models/property/proto_holder.py,sha256=k_xjH74r4PWnhiNEnEb6sqlzeuFgQaM_YNdASYLZlWQ,1837
475
+ mat3ra/esse/models/property/raw.py,sha256=NomAKqlTylkDD4TZ2GYHJ4MobfSDlx29rmjNxppY8Ak,5113
476
+ mat3ra/esse/models/property/source.py,sha256=abwtIqnljrwrORhOEdasdBGgDornYdQwhb7mZ4nMUww,3907
460
477
  mat3ra/esse/models/property/base/The_source_of_a_property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
461
478
  mat3ra/esse/models/property/base/The_source_of_a_property/field_This_could_be_an_article__a_simulation_on_Exabyte__an_external_simulation__etc.py,sha256=Ri6Ljt0BIssI8U6wT-84HYlxC3NkRHPrkrAPSy0qPt8,826
462
479
  mat3ra/esse/models/property/meta/The_source_of_a_property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
463
480
  mat3ra/esse/models/property/meta/The_source_of_a_property/field_This_could_be_an_article__a_simulation_on_Exabyte__an_external_simulation__etc.py,sha256=APGwKbjHU1X83PXkfG8w7zEwQLdD-2u8qZX7wk5L5k0,826
481
+ mat3ra/esse/models/property/meta_holder/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
482
+ mat3ra/esse/models/property/meta_holder/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/g.py,sha256=N8y6Zihb-xbhQigmqXZk9ywgjnpRrqJ_ml_fQ7-P3vc,636
464
483
  mat3ra/esse/models/property/raw/The_source_of_a_property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
465
484
  mat3ra/esse/models/property/raw/The_source_of_a_property/field_This_could_be_an_article__a_simulation_on_Exabyte__an_external_simulation__etc.py,sha256=_d4Ujayas-Ehblbfoq8ooSPTou9ve_3de2gGFXFKwHw,825
466
485
  mat3ra/esse/models/property/source/The_source_of_a_property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
@@ -470,21 +489,6 @@ mat3ra/esse/models/software/application.py,sha256=_GYziemq6s_Cqvra7qT-ZdT_ib168h
470
489
  mat3ra/esse/models/software/executable.py,sha256=pLG2bpGO1baoOLNY1zK1AeNueSvSnJWqEVGRHejfex8,1630
471
490
  mat3ra/esse/models/software/flavor.py,sha256=jfuIS4FACisUbagX3zvdRD16TpRnQ9eui-mLVWg1nno,2333
472
491
  mat3ra/esse/models/software/template.py,sha256=i3kPaOabpVPGahMajLdhFc0O-umW-a-CkFAEWWHLJtE,1212
473
- mat3ra/esse/models/software_directory/ml/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
474
- mat3ra/esse/models/software_directory/ml/exabyteml.py,sha256=EZsHS_b2XShzzSP6DSW1L7v2THz6FlcN2Jj2kUYWiEA,582
475
- mat3ra/esse/models/software_directory/ml/unit/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
476
- mat3ra/esse/models/software_directory/ml/unit/execution/__init__.py,sha256=7gGQWOs79aGAL91vi8qn5ZI6vDKctecOlGnI9TaO9V8,24111
477
- mat3ra/esse/models/software_directory/ml/unit/execution/initialize.py,sha256=VJNDfUsCYrlJwlPE9O0-wRsTvMEivYaeOiijo2Xbqz8,7651
478
- mat3ra/esse/models/software_directory/ml/unit/execution/score.py,sha256=lwfGvIzfWPpiMpawLr4US-bBU-D1ek7FOdV42_ZhD-U,7455
479
- mat3ra/esse/models/software_directory/ml/unit/execution/train.py,sha256=PfSycM-GIuYM1-9TkD3eYqdDR52Li5d78uRq5txuMPw,7665
480
- mat3ra/esse/models/software_directory/ml/unit/execution/evaluate/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
481
- mat3ra/esse/models/software_directory/ml/unit/execution/evaluate/cross_validate.py,sha256=26GSLhnlyaDWbh0buTTt-FdyXinLLVIil9_pQirw82I,7630
482
- mat3ra/esse/models/software_directory/ml/unit/processing/__init__.py,sha256=fLXqMvnLHQZNvphe8wn_w4sS1iXAmTnH7k0ctO4li68,6749
483
- mat3ra/esse/models/software_directory/ml/unit/processing/data_transformation/__init__.py,sha256=SmlsA0yfb4pla5gigrK_Yo03jgkTzwojTSxg3-gPhBs,3901
484
- mat3ra/esse/models/software_directory/ml/unit/processing/data_transformation/manipulation.py,sha256=ibzP1_EAN8-NN8sib5xpzJTNX9CWZB2yZYZd5XvHw48,3478
485
- mat3ra/esse/models/software_directory/ml/unit/processing/data_transformation/scale_and_reduce.py,sha256=MqY7yewDmOCzxRWLX6f7NdVgDrIe1rWN2sHuEQbKRjA,3821
486
- mat3ra/esse/models/software_directory/ml/unit/processing/feature_selection/__init__.py,sha256=XpoTWHsyF0AdIA4ZlSjiG6RNKvrT1ovVbGo5Vn_xkaw,3593
487
- mat3ra/esse/models/software_directory/ml/unit/processing/feature_selection/filter_based.py,sha256=LeK-ujOT6CooxArtJBhygxyZk5Bfe2p4b8amdSA_N8E,3483
488
492
  mat3ra/esse/models/software_directory/modeling/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
489
493
  mat3ra/esse/models/software_directory/modeling/deepmd.py,sha256=-9gwjuiMwx4hET0bXLaBj9ui9xV42C7N-Ua5jN5w2Pg,1952
490
494
  mat3ra/esse/models/software_directory/modeling/nwchem.py,sha256=rOrNHaRlC7whddT_gyb-haw8J9lmFSimA_lJUYIgbQg,1815
@@ -534,13 +538,13 @@ mat3ra/esse/models/system/status.py,sha256=q1j3BgkOZtTBEVf5-S-4xMteCfpZj23OeXTvk
534
538
  mat3ra/esse/models/system/tags.py,sha256=47rtLMx0uXWXt7SgC1oo_ULTFjAKNy6e-z5dRjA6BbE,297
535
539
  mat3ra/esse/models/system/timestampable.py,sha256=K_OjETeZlGTis8AHWbUDsWfElwdUVOmgb6rd3V01B90,515
536
540
  mat3ra/esse/models/system/use_values.py,sha256=NUupiTBXAV4o0ChySaGAgxIyMvMEoqnb3MUGN1MgSo8,264
537
- mat3ra/esse/models/workflow/__init__.py,sha256=i2HF_FSGThbk7er8nnQqu0K_gfVAyjKb2SeRH1RiWRs,59874
541
+ mat3ra/esse/models/workflow/__init__.py,sha256=ZT_skA6pxvH8LTiiw_La2oiN10bHsJQSyYFWX0HorT8,59941
538
542
  mat3ra/esse/models/workflow/base.py,sha256=7dDTOLX9JmBJlimUj8UlCrmKHWNuaOMiQpHGEuS0-IY,1252
539
- mat3ra/esse/models/workflow/base_flow.py,sha256=cvAa8lNFHyOyVsqs1dqE6vieRcnET_7Hn-du93BnHKA,5987
543
+ mat3ra/esse/models/workflow/base_flow.py,sha256=tgHhSr3dKpKlY03w4I4Rn6dLQRHzGGYadioA-TstI9k,6070
540
544
  mat3ra/esse/models/workflow/scope.py,sha256=d_JktEhzg7Ls9LN01cT9kr-Lyv0i9OKZFm6grADKQN4,319
541
- mat3ra/esse/models/workflow/subworkflow/__init__.py,sha256=hdC0W5i-zvfIiUpq5aXxeEY8oPrjIB3mSnEKCyoagMk,32059
542
- mat3ra/esse/models/workflow/subworkflow/unit.py,sha256=2-oB__x61YIyZVwgzRfnYpwyFl75L9GKMSP6-DYwiAU,25140
543
- mat3ra/esse/models/workflow/unit/__init__.py,sha256=64FEV2guDapaFsXK6vxHi3rYAF3akMrza995l1IPoa4,30179
545
+ mat3ra/esse/models/workflow/subworkflow/__init__.py,sha256=RzlpJM4sZbZY2OLzLlXF5QQmBsf4JWwbKE-19TnQk7Y,32144
546
+ mat3ra/esse/models/workflow/subworkflow/unit.py,sha256=Kzm18dn1CVhITuL31hTzecxSJ51hSE_Lwzq8eyae2cg,25121
547
+ mat3ra/esse/models/workflow/unit/__init__.py,sha256=70imG1cT-NuvrGZSce5ZJRwMDylSwVXxH1xjRqVW7Jk,30161
544
548
  mat3ra/esse/models/workflow/unit/assertion.py,sha256=xcHjoNLKKIVThQC0E_uLX8xgcFlRocEYmJm4sXpI-kU,2808
545
549
  mat3ra/esse/models/workflow/unit/assignment.py,sha256=iq24Xmh2vNqU2iKQRkhGhckNfT_W0CQU1e_AdFbenj8,3347
546
550
  mat3ra/esse/models/workflow/unit/base.py,sha256=FRFFm07xLOwsxmD8ycG_Lc2kMHNMVnmy5oPtvUG6j_o,2589
@@ -557,18 +561,18 @@ mat3ra/esse/models/workflow/unit/input/_inputItemId.py,sha256=Fz8Nad2oYiSWv4_r_u
557
561
  mat3ra/esse/models/workflow/unit/input/_inputItemScope.py,sha256=fTCCX3tnERlU7mUd24ufRor3ZEFUKyaRZ-noroZ_KF4,392
558
562
  mat3ra/esse/models/workflow/unit/input/_map_input/__init__.py,sha256=EWese8D4VOvFbvTGxPS19Iw0RGu9uVo9r1VddFdYWnc,469
559
563
  mat3ra/esse/models/workflow/unit/input/_map_input/values.py,sha256=pLWRsTkDR2-wM2IXFzb1r--x4O4k6-FeNrHNtVSO9mM,281
560
- mat3ra/esse/models/workflow/unit/io/__init__.py,sha256=YxSadjgJgh0NpGbyjNZR_jyATVw0w8kL2pAbZHi5n0s,5097
564
+ mat3ra/esse/models/workflow/unit/io/__init__.py,sha256=C_z_VJb6KNOJ1n8C-VyJCO6ll61gWRQ6NzaUZmIokE4,5079
561
565
  mat3ra/esse/models/workflow/unit/io/api.py,sha256=yr6o-UJfQW_LmyIaP2yKfcAdWdv2dcFo5d-sPT67uR0,575
562
- mat3ra/esse/models/workflow/unit/io/db.py,sha256=HzI23XIGT_vGK9MG14u8zMcgXmX2tQwuWJPMSguYDfE,943
563
- mat3ra/esse/models/workflow/unit/io/object_storage.py,sha256=O8u-iS4YamCC1A4vq_4CFjNSRK4yoEmi1xI9hQqoOwA,1465
566
+ mat3ra/esse/models/workflow/unit/io/db.py,sha256=byBLM6qnqhF6-BsVN5E2uP8JTQ3Oya_6rCo75kkM_Ik,916
567
+ mat3ra/esse/models/workflow/unit/io/object_storage.py,sha256=iLpsggyl8WLzQKGdYVkRsbA_BGWB444p9ToRn0av15w,1464
564
568
  mat3ra/esse/models/workflow/unit/runtime/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
565
569
  mat3ra/esse/models/workflow/unit/runtime/_runtime_item_full_object.py,sha256=GdGNhCra_xz-txbXZhGAEq6RAstMrTKtts7EzfEKI8s,340
566
570
  mat3ra/esse/models/workflow/unit/runtime/_runtime_item_name_object.py,sha256=CIbonjbdKKKMtCZ5EmRzIrPYJbDwEHS_gpAVQj00oUY,304
567
571
  mat3ra/esse/models/workflow/unit/runtime/_runtime_item_string.py,sha256=VouM6ETdIKTiktSTeEpP2pdHZuYHwHrir4W5TLoO_sE,354
568
572
  mat3ra/esse/models/workflow/unit/runtime/runtime_item.py,sha256=PujG7jcL8RDok9RSJiEKEB85-uGLoimVnK2k7gqyf2I,471
569
573
  mat3ra/esse/models/workflow/unit/runtime/runtime_items.py,sha256=Yi53LFKBWqx8oGA1Po38ulfSy-QaBP38VwWk45Q7ZJQ,943
570
- mat3ra_esse-2025.8.14.post0.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
571
- mat3ra_esse-2025.8.14.post0.dist-info/METADATA,sha256=poRiM-KvHmK0zQsMMzm4IGUipHv5_LEmUTDBnpa5gl0,9013
572
- mat3ra_esse-2025.8.14.post0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
573
- mat3ra_esse-2025.8.14.post0.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
574
- mat3ra_esse-2025.8.14.post0.dist-info/RECORD,,
574
+ mat3ra_esse-2025.10.8.post0.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
575
+ mat3ra_esse-2025.10.8.post0.dist-info/METADATA,sha256=g37PiWMI2bvPT8F12ZA3I5y7NrwjPFVXeBbXm44GOjo,9013
576
+ mat3ra_esse-2025.10.8.post0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
577
+ mat3ra_esse-2025.10.8.post0.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
578
+ mat3ra_esse-2025.10.8.post0.dist-info/RECORD,,