dataframely 1.7.5__tar.gz → 1.7.6__tar.gz
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.
- {dataframely-1.7.5 → dataframely-1.7.6}/PKG-INFO +1 -1
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/collection.py +0 -7
- {dataframely-1.7.5 → dataframely-1.7.6}/pyproject.toml +1 -1
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/collection/test_validate_input.py +0 -10
- {dataframely-1.7.5 → dataframely-1.7.6}/.copier-answers.yml +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/.envrc +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/.gitattributes +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/.github/CODEOWNERS +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/.github/dependabot.yml +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/.github/release-drafter.yml +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/.github/workflows/build.yml +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/.github/workflows/chore.yml +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/.github/workflows/ci.yml +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/.github/workflows/nightly.yml +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/.github/workflows/scorecard.yml +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/.gitignore +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/.pre-commit-config.yaml +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/.prettierignore +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/.prettierrc +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/.readthedocs.yml +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/Cargo.lock +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/Cargo.toml +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/LICENSE +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/README.md +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/SECURITY.md +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/__init__.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/_base_collection.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/_base_schema.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/_compat.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/_deprecation.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/_extre.pyi +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/_filter.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/_polars.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/_rule.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/_serialization.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/_typing.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/_validation.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/columns/__init__.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/columns/_base.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/columns/_mixins.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/columns/_registry.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/columns/_utils.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/columns/any.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/columns/array.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/columns/bool.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/columns/datetime.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/columns/decimal.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/columns/enum.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/columns/float.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/columns/integer.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/columns/list.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/columns/object.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/columns/string.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/columns/struct.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/config.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/exc.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/failure.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/functional.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/mypy.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/py.typed +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/random.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/schema.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/testing/__init__.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/testing/const.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/testing/factory.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/testing/mask.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/testing/rules.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/dataframely/testing/typing.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docker-compose.yml +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/Makefile +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.collection.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.columns.any.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.columns.bool.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.columns.datetime.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.columns.decimal.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.columns.enum.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.columns.float.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.columns.integer.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.columns.list.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.columns.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.columns.string.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.columns.struct.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.config.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.exc.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.failure.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.functional.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.mypy.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.random.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.schema.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.testing.const.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.testing.factory.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.testing.mask.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.testing.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.testing.rules.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/dataframely.testing.typing.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_api/modules.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_static/custom.css +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/_static/favicon.ico +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/conf.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/index.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/make.bat +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/sites/development.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/sites/examples/real-world.ipynb +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/sites/faq.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/sites/installation.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/sites/quickstart.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/docs/sites/versioning.rst +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/pixi.lock +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/pixi.toml +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/src/errdefs.rs +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/src/lib.rs +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/src/regex_repr.rs +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/benches/conftest.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/benches/test_collection.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/benches/test_failure.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/benches/test_schema.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/collection/test_base.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/collection/test_cast.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/collection/test_collection_future_annotations.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/collection/test_create_empty.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/collection/test_filter_one_to_n.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/collection/test_filter_validate.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/collection/test_ignore_in_filter.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/collection/test_implementation.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/collection/test_matches.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/collection/test_optional_members.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/collection/test_read_write_parquet.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/collection/test_repr.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/collection/test_sample.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/collection/test_serialization.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/column_types/__init__.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/column_types/test_any.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/column_types/test_array.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/column_types/test_datetime.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/column_types/test_decimal.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/column_types/test_enum.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/column_types/test_float.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/column_types/test_integer.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/column_types/test_list.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/column_types/test_object.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/column_types/test_string.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/column_types/test_struct.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/columns/__init__.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/columns/test_alias.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/columns/test_check.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/columns/test_default_dtypes.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/columns/test_matches.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/columns/test_metadata.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/columns/test_polars_schema.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/columns/test_pyarrow.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/columns/test_rules.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/columns/test_sample.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/columns/test_sql_schema.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/columns/test_str.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/columns/test_utils.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/core_validation/__init__.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/core_validation/test_column_validation.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/core_validation/test_dtype_validation.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/core_validation/test_rule_evaluation.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/functional/test_concat.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/functional/test_relationships.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/schema/test_base.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/schema/test_cast.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/schema/test_create_empty.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/schema/test_create_empty_if_none.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/schema/test_filter.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/schema/test_inheritance.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/schema/test_matches.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/schema/test_read_write_parquet.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/schema/test_repr.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/schema/test_rule_implementation.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/schema/test_sample.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/schema/test_serialization.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/schema/test_validate.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/test_compat.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/test_config.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/test_deprecation.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/test_exc.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/test_extre.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/test_failure_info.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/test_random.py +0 -0
- {dataframely-1.7.5 → dataframely-1.7.6}/tests/test_typing.py +0 -0
|
@@ -902,13 +902,6 @@ class Collection(BaseCollection, ABC):
|
|
|
902
902
|
f"Input misses {len(missing)} required members: {', '.join(missing)}."
|
|
903
903
|
)
|
|
904
904
|
|
|
905
|
-
superfluous = actual - set(cls.members())
|
|
906
|
-
if len(superfluous) > 0:
|
|
907
|
-
warnings.warn(
|
|
908
|
-
f"Input provides {len(superfluous)} superfluous members that are "
|
|
909
|
-
f"ignored: {', '.join(superfluous)}."
|
|
910
|
-
)
|
|
911
|
-
|
|
912
905
|
|
|
913
906
|
def deserialize_collection(data: str) -> type[Collection]:
|
|
914
907
|
"""Deserialize a collection from a JSON string.
|
|
@@ -25,7 +25,7 @@ description = "A declarative, polars-native data frame validation library"
|
|
|
25
25
|
name = "dataframely"
|
|
26
26
|
readme = "README.md"
|
|
27
27
|
requires-python = ">=3.10"
|
|
28
|
-
version = "1.7.
|
|
28
|
+
version = "1.7.6"
|
|
29
29
|
|
|
30
30
|
[project.urls]
|
|
31
31
|
Documentation = "https://dataframely.readthedocs.io/"
|
|
@@ -19,13 +19,3 @@ class MyCollection(dy.Collection):
|
|
|
19
19
|
def test_collection_missing_required_member() -> None:
|
|
20
20
|
with pytest.raises(ValueError):
|
|
21
21
|
MyCollection.validate({"second": pl.LazyFrame({"a": [1, 2, 3]})})
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
def test_collection_superfluous_member() -> None:
|
|
25
|
-
with pytest.warns(Warning):
|
|
26
|
-
MyCollection.validate(
|
|
27
|
-
{
|
|
28
|
-
"first": pl.LazyFrame({"a": [1, 2, 3]}),
|
|
29
|
-
"third": pl.LazyFrame({"a": [1, 2, 3]}),
|
|
30
|
-
},
|
|
31
|
-
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dataframely-1.7.5 → dataframely-1.7.6}/tests/collection/test_collection_future_annotations.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|