Compare commits

...

12 Commits

Author SHA1 Message Date
362c7f8779 README-dev.md: update introduction 2022-01-30 13:29:07 +03:00
51cc63843b README-dev.md: update note about Python 2022-01-30 13:29:07 +03:00
88077ea494 Update requirements.txt
Generated with poetry:

    $ poetry export -f requirements.txt > requirements.txt

This is useful for people who don't have poetry.
2022-01-30 13:29:07 +03:00
dd6f4ee8d6 poetry.lock: run poetry update 2022-01-30 13:29:07 +03:00
fe36c5c25b util/*.py: run isort
Sorts and organizes the Python imports.
2022-01-30 13:29:07 +03:00
7488a24e34 pyproject.toml: update dependencies
Most of these are minor and would have been selected by the semant-
ic version string during `poetry install`, but I want to make sure
that they are as current as possible before I leave the project.

In the case of Pandas 1.4.0 the minimum Python version is actually
only 3.8, so let's set that as the minimum.
2022-01-30 13:29:07 +03:00
ddc7596a09 pyproject.toml: change name to iseal-core 2022-01-30 13:29:07 +03:00
2b1a1ea943 package-lock.json: run npm update
This syncs the latest dependencies as specified by evaluating the
package.json.
2022-01-30 13:29:07 +03:00
3da6569961 site/package.json: minor version bump for bootstrap
NPM semantic versioning will already select 5.1.3 due to the ^5.1.1
version string, but let's just update package.json anyways.
2022-01-30 13:29:07 +03:00
86ae899f3e site/package.json: update Hugo
Only used on local development workflows (GitHub Actions uses its
own Hugo task that always has the latest version).
2022-01-30 13:29:07 +03:00
alanorth
18c6560b58 Automated commit with site updates 2022-01-30 09:32:54 +00:00
88ba512cf1
README-dev.md: improve introduction 2022-01-30 12:31:30 +03:00
221 changed files with 362 additions and 1232 deletions

View File

@ -1,13 +1,22 @@
# Technical Documentation # Technical Documentation
This document provides technical information about various workflows related to updating and editing the schema and documentation site. This document provides technical information about various workflows related to updating and editing the schema and documentation site.
## About This Project
The ISEAL Core Metadata Set is maintained primarily in CSV format. This decision was made to maintain a balance between being human and machine readable. Currently the project consists of:
- The ISEAL Core Metadata Set, which lives in `data/iseal-core.csv`
- The FSC<sup>®</sup> extension, which lives in `data/fsc.csv`
From the CSV we use a series of Python scripts to create the RDF ([TTL](https://en.wikipedia.org/wiki/Turtle_(syntax))) representations of the schema as well as the HTML documentation site. All of this is automated using GitHub Actions (see `.github/workflows`) whenever there is a new commit in the repository. Everything should Just Work<sup></sup> so you should only need to follow the documentation here if you want to work on the workflow locally or make larger changes. In that case, continue reading...
## General Requirements ## General Requirements
- Python 3.7+ - Python 3.8+
- Node.js 12+ and NPM - Node.js 12+ and NPM
## Python Setup ## Python Setup
Create a Python 3 (3.7+) virtual environment and install the requirements: Create a Python virtual environment and install the requirements:
```console ```console
$ python3 -m venv virtualenv $ python3 -m venv virtualenv

690
poetry.lock generated
View File

@ -66,28 +66,6 @@ sqlalchemy = ">=1.0.8"
docs = ["Sphinx (>=1.2.2)", "sphinx-rtd-theme (>=0.1.6)"] docs = ["Sphinx (>=1.2.2)", "sphinx-rtd-theme (>=0.1.6)"]
test = ["crate", "nose (>=1.1.2)", "geojson"] test = ["crate", "nose (>=1.1.2)", "geojson"]
[[package]]
name = "appnope"
version = "0.1.2"
description = "Disable App Nap on macOS >= 10.9"
category = "main"
optional = false
python-versions = "*"
[[package]]
name = "asttokens"
version = "2.0.5"
description = "Annotate AST trees with source code positions"
category = "main"
optional = false
python-versions = "*"
[package.dependencies]
six = "*"
[package.extras]
test = ["astroid", "pytest"]
[[package]] [[package]]
name = "babel" name = "babel"
version = "2.9.1" version = "2.9.1"
@ -99,38 +77,26 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[package.dependencies] [package.dependencies]
pytz = ">=2015.7" pytz = ">=2015.7"
[[package]]
name = "backcall"
version = "0.2.0"
description = "Specifications for callback functions passed in to an API"
category = "main"
optional = false
python-versions = "*"
[[package]] [[package]]
name = "black" name = "black"
version = "21.12b0" version = "22.1.0"
description = "The uncompromising code formatter." description = "The uncompromising code formatter."
category = "main" category = "dev"
optional = false optional = false
python-versions = ">=3.6.2" python-versions = ">=3.6.2"
[package.dependencies] [package.dependencies]
click = ">=7.1.2" click = ">=8.0.0"
mypy-extensions = ">=0.4.3" mypy-extensions = ">=0.4.3"
pathspec = ">=0.9.0,<1" pathspec = ">=0.9.0"
platformdirs = ">=2" platformdirs = ">=2"
tomli = ">=0.2.6,<2.0.0" tomli = ">=1.1.0"
typing-extensions = [ typing-extensions = {version = ">=3.10.0.0", markers = "python_version < \"3.10\""}
{version = ">=3.10.0.0", markers = "python_version < \"3.10\""},
{version = "!=3.10.0.1", markers = "python_version >= \"3.10\""},
]
[package.extras] [package.extras]
colorama = ["colorama (>=0.4.3)"] colorama = ["colorama (>=0.4.3)"]
d = ["aiohttp (>=3.7.4)"] d = ["aiohttp (>=3.7.4)"]
jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"]
python2 = ["typed-ast (>=1.4.3)"]
uvloop = ["uvloop (>=0.15.2)"] uvloop = ["uvloop (>=0.15.2)"]
[[package]] [[package]]
@ -141,17 +107,6 @@ category = "main"
optional = false optional = false
python-versions = "*" python-versions = "*"
[[package]]
name = "cffi"
version = "1.15.0"
description = "Foreign Function Interface for Python calling C code."
category = "main"
optional = false
python-versions = "*"
[package.dependencies]
pycparser = "*"
[[package]] [[package]]
name = "charset-normalizer" name = "charset-normalizer"
version = "2.0.10" version = "2.0.10"
@ -167,7 +122,7 @@ unicode_backport = ["unicodedata2"]
name = "click" name = "click"
version = "8.0.3" version = "8.0.3"
description = "Composable command line interface toolkit" description = "Composable command line interface toolkit"
category = "main" category = "dev"
optional = false optional = false
python-versions = ">=3.6" python-versions = ">=3.6"
@ -178,7 +133,7 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""}
name = "colorama" name = "colorama"
version = "0.4.4" version = "0.4.4"
description = "Cross-platform colored terminal text." description = "Cross-platform colored terminal text."
category = "main" category = "dev"
optional = false optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
@ -209,30 +164,6 @@ category = "dev"
optional = false optional = false
python-versions = "*" python-versions = "*"
[[package]]
name = "debugpy"
version = "1.5.1"
description = "An implementation of the Debug Adapter Protocol for Python"
category = "main"
optional = false
python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*"
[[package]]
name = "decorator"
version = "5.1.1"
description = "Decorators for Humans"
category = "main"
optional = false
python-versions = ">=3.5"
[[package]]
name = "entrypoints"
version = "0.3"
description = "Discover and load entry points from installed packages."
category = "main"
optional = false
python-versions = ">=2.7"
[[package]] [[package]]
name = "et-xmlfile" name = "et-xmlfile"
version = "1.1.0" version = "1.1.0"
@ -241,14 +172,6 @@ category = "dev"
optional = false optional = false
python-versions = ">=3.6" python-versions = ">=3.6"
[[package]]
name = "executing"
version = "0.8.2"
description = "Get the currently executing AST node of a frame, and other information"
category = "main"
optional = false
python-versions = "*"
[[package]] [[package]]
name = "future" name = "future"
version = "0.18.2" version = "0.18.2"
@ -276,62 +199,6 @@ category = "main"
optional = false optional = false
python-versions = ">=3.5" python-versions = ">=3.5"
[[package]]
name = "ipykernel"
version = "6.7.0"
description = "IPython Kernel for Jupyter"
category = "main"
optional = false
python-versions = ">=3.7"
[package.dependencies]
appnope = {version = "*", markers = "platform_system == \"Darwin\""}
debugpy = ">=1.0.0,<2.0"
ipython = ">=7.23.1"
jupyter-client = "<8.0"
matplotlib-inline = ">=0.1.0,<0.2.0"
nest-asyncio = "*"
tornado = ">=4.2,<7.0"
traitlets = ">=5.1.0,<6.0"
[package.extras]
test = ["pytest (!=5.3.4)", "pytest-cov", "flaky", "ipyparallel"]
[[package]]
name = "ipython"
version = "8.0.1"
description = "IPython: Productive Interactive Computing"
category = "main"
optional = false
python-versions = ">=3.8"
[package.dependencies]
appnope = {version = "*", markers = "sys_platform == \"darwin\""}
backcall = "*"
black = "*"
colorama = {version = "*", markers = "sys_platform == \"win32\""}
decorator = "*"
jedi = ">=0.16"
matplotlib-inline = "*"
pexpect = {version = ">4.3", markers = "sys_platform != \"win32\""}
pickleshare = "*"
prompt-toolkit = ">=2.0.0,<3.0.0 || >3.0.0,<3.0.1 || >3.0.1,<3.1.0"
pygments = "*"
stack-data = "*"
traitlets = ">=5"
[package.extras]
all = ["Sphinx (>=1.3)", "curio", "ipykernel", "ipyparallel", "ipywidgets", "matplotlib (!=3.2.0)", "nbconvert", "nbformat", "notebook", "numpy (>=1.19)", "pandas", "pygments", "pytest", "pytest-asyncio", "qtconsole", "testpath", "trio"]
doc = ["Sphinx (>=1.3)"]
kernel = ["ipykernel"]
nbconvert = ["nbconvert"]
nbformat = ["nbformat"]
notebook = ["notebook", "ipywidgets"]
parallel = ["ipyparallel"]
qtconsole = ["qtconsole"]
test = ["pytest", "pytest-asyncio", "testpath", "pygments"]
test_extra = ["pytest", "testpath", "curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.19)", "pandas", "pygments", "trio"]
[[package]] [[package]]
name = "isodate" name = "isodate"
version = "0.6.1" version = "0.6.1"
@ -357,54 +224,6 @@ requirements_deprecated_finder = ["pipreqs", "pip-api"]
colors = ["colorama (>=0.4.3,<0.5.0)"] colors = ["colorama (>=0.4.3,<0.5.0)"]
plugins = ["setuptools"] plugins = ["setuptools"]
[[package]]
name = "jedi"
version = "0.18.1"
description = "An autocompletion tool for Python that can be used for text editors."
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
parso = ">=0.8.0,<0.9.0"
[package.extras]
qa = ["flake8 (==3.8.3)", "mypy (==0.782)"]
testing = ["Django (<3.1)", "colorama", "docopt", "pytest (<7.0.0)"]
[[package]]
name = "jupyter-client"
version = "7.1.2"
description = "Jupyter protocol implementation and client libraries"
category = "main"
optional = false
python-versions = ">=3.6.1"
[package.dependencies]
entrypoints = "*"
jupyter-core = ">=4.6.0"
nest-asyncio = ">=1.5"
python-dateutil = ">=2.1"
pyzmq = ">=13"
tornado = ">=4.1"
traitlets = "*"
[package.extras]
doc = ["myst-parser", "sphinx (>=1.3.6)", "sphinx-rtd-theme", "sphinxcontrib-github-alt"]
test = ["codecov", "coverage", "ipykernel", "ipython", "mock", "mypy", "pre-commit", "pytest", "pytest-asyncio", "pytest-cov", "pytest-timeout", "jedi (<0.18)"]
[[package]]
name = "jupyter-core"
version = "4.9.1"
description = "Jupyter core package. A base package on which Jupyter projects rely."
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
pywin32 = {version = ">=1.0", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""}
traitlets = "*"
[[package]] [[package]]
name = "leather" name = "leather"
version = "0.3.4" version = "0.3.4"
@ -416,33 +235,14 @@ python-versions = "*"
[package.dependencies] [package.dependencies]
six = ">=1.6.1" six = ">=1.6.1"
[[package]]
name = "matplotlib-inline"
version = "0.1.3"
description = "Inline Matplotlib backend for Jupyter"
category = "main"
optional = false
python-versions = ">=3.5"
[package.dependencies]
traitlets = "*"
[[package]] [[package]]
name = "mypy-extensions" name = "mypy-extensions"
version = "0.4.3" version = "0.4.3"
description = "Experimental type system extensions for programs checked with the mypy typechecker." description = "Experimental type system extensions for programs checked with the mypy typechecker."
category = "main" category = "dev"
optional = false optional = false
python-versions = "*" python-versions = "*"
[[package]]
name = "nest-asyncio"
version = "1.5.4"
description = "Patch asyncio to allow nested event loops"
category = "main"
optional = false
python-versions = ">=3.5"
[[package]] [[package]]
name = "numpy" name = "numpy"
version = "1.22.1" version = "1.22.1"
@ -502,50 +302,19 @@ python-versions = "*"
[package.dependencies] [package.dependencies]
future = "*" future = "*"
[[package]]
name = "parso"
version = "0.8.3"
description = "A Python Parser"
category = "main"
optional = false
python-versions = ">=3.6"
[package.extras]
qa = ["flake8 (==3.8.3)", "mypy (==0.782)"]
testing = ["docopt", "pytest (<6.0.0)"]
[[package]] [[package]]
name = "pathspec" name = "pathspec"
version = "0.9.0" version = "0.9.0"
description = "Utility library for gitignore style pattern matching of file paths." description = "Utility library for gitignore style pattern matching of file paths."
category = "main" category = "dev"
optional = false optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
[[package]]
name = "pexpect"
version = "4.8.0"
description = "Pexpect allows easy control of interactive console applications."
category = "main"
optional = false
python-versions = "*"
[package.dependencies]
ptyprocess = ">=0.5"
[[package]]
name = "pickleshare"
version = "0.7.5"
description = "Tiny 'shelve'-like database with concurrency support"
category = "main"
optional = false
python-versions = "*"
[[package]] [[package]]
name = "platformdirs" name = "platformdirs"
version = "2.4.1" version = "2.4.1"
description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
category = "main" category = "dev"
optional = false optional = false
python-versions = ">=3.7" python-versions = ">=3.7"
@ -553,60 +322,6 @@ python-versions = ">=3.7"
docs = ["Sphinx (>=4)", "furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx-autodoc-typehints (>=1.12)"] docs = ["Sphinx (>=4)", "furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx-autodoc-typehints (>=1.12)"]
test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"] test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"]
[[package]]
name = "prompt-toolkit"
version = "3.0.24"
description = "Library for building powerful interactive command lines in Python"
category = "main"
optional = false
python-versions = ">=3.6.2"
[package.dependencies]
wcwidth = "*"
[[package]]
name = "ptyprocess"
version = "0.7.0"
description = "Run a subprocess in a pseudo terminal"
category = "main"
optional = false
python-versions = "*"
[[package]]
name = "pure-eval"
version = "0.2.2"
description = "Safely evaluate AST nodes without side effects"
category = "main"
optional = false
python-versions = "*"
[package.extras]
tests = ["pytest"]
[[package]]
name = "py"
version = "1.11.0"
description = "library with cross-python path, ini-parsing, io, code, log facilities"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[[package]]
name = "pycparser"
version = "2.21"
description = "C parser in Python"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[[package]]
name = "pygments"
version = "2.11.2"
description = "Pygments is a syntax highlighting package written in Python."
category = "main"
optional = false
python-versions = ">=3.5"
[[package]] [[package]]
name = "pyparsing" name = "pyparsing"
version = "3.0.7" version = "3.0.7"
@ -659,26 +374,6 @@ category = "main"
optional = false optional = false
python-versions = "*" python-versions = "*"
[[package]]
name = "pywin32"
version = "303"
description = "Python for Window Extensions"
category = "main"
optional = false
python-versions = "*"
[[package]]
name = "pyzmq"
version = "22.3.0"
description = "Python bindings for 0MQ"
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
cffi = {version = "*", markers = "implementation_name == \"pypy\""}
py = {version = "*", markers = "implementation_name == \"pypy\""}
[[package]] [[package]]
name = "rdflib" name = "rdflib"
version = "6.1.1" version = "6.1.1"
@ -754,22 +449,6 @@ postgresql_psycopg2cffi = ["psycopg2cffi"]
pymysql = ["pymysql (<1)", "pymysql"] pymysql = ["pymysql (<1)", "pymysql"]
sqlcipher = ["sqlcipher3-binary"] sqlcipher = ["sqlcipher3-binary"]
[[package]]
name = "stack-data"
version = "0.1.4"
description = "Extract data from python stack frames and tracebacks for informative displays"
category = "main"
optional = false
python-versions = "*"
[package.dependencies]
asttokens = "*"
executing = "*"
pure-eval = "*"
[package.extras]
tests = ["pytest", "typeguard", "pygments", "littleutils"]
[[package]] [[package]]
name = "text-unidecode" name = "text-unidecode"
version = "1.3" version = "1.3"
@ -780,36 +459,17 @@ python-versions = "*"
[[package]] [[package]]
name = "tomli" name = "tomli"
version = "1.2.3" version = "2.0.0"
description = "A lil' TOML parser" description = "A lil' TOML parser"
category = "main" category = "dev"
optional = false
python-versions = ">=3.6"
[[package]]
name = "tornado"
version = "6.1"
description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed."
category = "main"
optional = false
python-versions = ">= 3.5"
[[package]]
name = "traitlets"
version = "5.1.1"
description = "Traitlets Python configuration system"
category = "main"
optional = false optional = false
python-versions = ">=3.7" python-versions = ">=3.7"
[package.extras]
test = ["pytest"]
[[package]] [[package]]
name = "typing-extensions" name = "typing-extensions"
version = "4.0.1" version = "4.0.1"
description = "Backported and Experimental Type Hints for Python 3.6+" description = "Backported and Experimental Type Hints for Python 3.6+"
category = "main" category = "dev"
optional = false optional = false
python-versions = ">=3.6" python-versions = ">=3.6"
@ -826,14 +486,6 @@ brotli = ["brotlipy (>=0.6.0)"]
secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"] secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"]
socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
[[package]]
name = "wcwidth"
version = "0.2.5"
description = "Measures the displayed width of unicode strings in a terminal"
category = "main"
optional = false
python-versions = "*"
[[package]] [[package]]
name = "xlrd" name = "xlrd"
version = "2.0.1" version = "2.0.1"
@ -849,8 +501,8 @@ test = ["pytest", "pytest-cov"]
[metadata] [metadata]
lock-version = "1.1" lock-version = "1.1"
python-versions = "^3.9" python-versions = "^3.8"
content-hash = "5cdae6410f312797ff5afbc32d013c541339c8ea70443b8a3779180091707301" content-hash = "8b38e014aa6f11fa3966bfc921987e45cdb0bf157df61109d0021a8fb4236e30"
[metadata.files] [metadata.files]
agate = [ agate = [
@ -869,82 +521,39 @@ agate-sql = [
{file = "agate-sql-0.5.8.tar.gz", hash = "sha256:581e062ae878cc087d3d0948670d46b16589df0790bf814524b0587a359f2ada"}, {file = "agate-sql-0.5.8.tar.gz", hash = "sha256:581e062ae878cc087d3d0948670d46b16589df0790bf814524b0587a359f2ada"},
{file = "agate_sql-0.5.8-py2.py3-none-any.whl", hash = "sha256:aae3d1014c3396cb0c21a21f0e41b514128bc0479b9a1627d020611f470199c3"}, {file = "agate_sql-0.5.8-py2.py3-none-any.whl", hash = "sha256:aae3d1014c3396cb0c21a21f0e41b514128bc0479b9a1627d020611f470199c3"},
] ]
appnope = [
{file = "appnope-0.1.2-py2.py3-none-any.whl", hash = "sha256:93aa393e9d6c54c5cd570ccadd8edad61ea0c4b9ea7a01409020c9aa019eb442"},
{file = "appnope-0.1.2.tar.gz", hash = "sha256:dd83cd4b5b460958838f6eb3000c660b1f9caf2a5b1de4264e941512f603258a"},
]
asttokens = [
{file = "asttokens-2.0.5-py2.py3-none-any.whl", hash = "sha256:0844691e88552595a6f4a4281a9f7f79b8dd45ca4ccea82e5e05b4bbdb76705c"},
{file = "asttokens-2.0.5.tar.gz", hash = "sha256:9a54c114f02c7a9480d56550932546a3f1fe71d8a02f1bc7ccd0ee3ee35cf4d5"},
]
babel = [ babel = [
{file = "Babel-2.9.1-py2.py3-none-any.whl", hash = "sha256:ab49e12b91d937cd11f0b67cb259a57ab4ad2b59ac7a3b41d6c06c0ac5b0def9"}, {file = "Babel-2.9.1-py2.py3-none-any.whl", hash = "sha256:ab49e12b91d937cd11f0b67cb259a57ab4ad2b59ac7a3b41d6c06c0ac5b0def9"},
{file = "Babel-2.9.1.tar.gz", hash = "sha256:bc0c176f9f6a994582230df350aa6e05ba2ebe4b3ac317eab29d9be5d2768da0"}, {file = "Babel-2.9.1.tar.gz", hash = "sha256:bc0c176f9f6a994582230df350aa6e05ba2ebe4b3ac317eab29d9be5d2768da0"},
] ]
backcall = [
{file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"},
{file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"},
]
black = [ black = [
{file = "black-21.12b0-py3-none-any.whl", hash = "sha256:a615e69ae185e08fdd73e4715e260e2479c861b5740057fde6e8b4e3b7dd589f"}, {file = "black-22.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:1297c63b9e1b96a3d0da2d85d11cd9bf8664251fd69ddac068b98dc4f34f73b6"},
{file = "black-21.12b0.tar.gz", hash = "sha256:77b80f693a569e2e527958459634f18df9b0ba2625ba4e0c2d5da5be42e6f2b3"}, {file = "black-22.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2ff96450d3ad9ea499fc4c60e425a1439c2120cbbc1ab959ff20f7c76ec7e866"},
{file = "black-22.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0e21e1f1efa65a50e3960edd068b6ae6d64ad6235bd8bfea116a03b21836af71"},
{file = "black-22.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f69158a7d120fd641d1fa9a921d898e20d52e44a74a6fbbcc570a62a6bc8ab"},
{file = "black-22.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:228b5ae2c8e3d6227e4bde5920d2fc66cc3400fde7bcc74f480cb07ef0b570d5"},
{file = "black-22.1.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:b1a5ed73ab4c482208d20434f700d514f66ffe2840f63a6252ecc43a9bc77e8a"},
{file = "black-22.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:35944b7100af4a985abfcaa860b06af15590deb1f392f06c8683b4381e8eeaf0"},
{file = "black-22.1.0-cp36-cp36m-win_amd64.whl", hash = "sha256:7835fee5238fc0a0baf6c9268fb816b5f5cd9b8793423a75e8cd663c48d073ba"},
{file = "black-22.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dae63f2dbf82882fa3b2a3c49c32bffe144970a573cd68d247af6560fc493ae1"},
{file = "black-22.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5fa1db02410b1924b6749c245ab38d30621564e658297484952f3d8a39fce7e8"},
{file = "black-22.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c8226f50b8c34a14608b848dc23a46e5d08397d009446353dad45e04af0c8e28"},
{file = "black-22.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2d6f331c02f0f40aa51a22e479c8209d37fcd520c77721c034517d44eecf5912"},
{file = "black-22.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:742ce9af3086e5bd07e58c8feb09dbb2b047b7f566eb5f5bc63fd455814979f3"},
{file = "black-22.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:fdb8754b453fb15fad3f72cd9cad3e16776f0964d67cf30ebcbf10327a3777a3"},
{file = "black-22.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5660feab44c2e3cb24b2419b998846cbb01c23c7fe645fee45087efa3da2d61"},
{file = "black-22.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:6f2f01381f91c1efb1451998bd65a129b3ed6f64f79663a55fe0e9b74a5f81fd"},
{file = "black-22.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:efbadd9b52c060a8fc3b9658744091cb33c31f830b3f074422ed27bad2b18e8f"},
{file = "black-22.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8871fcb4b447206904932b54b567923e5be802b9b19b744fdff092bd2f3118d0"},
{file = "black-22.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ccad888050f5393f0d6029deea2a33e5ae371fd182a697313bdbd835d3edaf9c"},
{file = "black-22.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07e5c049442d7ca1a2fc273c79d1aecbbf1bc858f62e8184abe1ad175c4f7cc2"},
{file = "black-22.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:373922fc66676133ddc3e754e4509196a8c392fec3f5ca4486673e685a421321"},
{file = "black-22.1.0-py3-none-any.whl", hash = "sha256:3524739d76b6b3ed1132422bf9d82123cd1705086723bc3e235ca39fd21c667d"},
{file = "black-22.1.0.tar.gz", hash = "sha256:a7c0192d35635f6fc1174be575cb7915e92e5dd629ee79fdaf0dcfa41a80afb5"},
] ]
certifi = [ certifi = [
{file = "certifi-2021.10.8-py2.py3-none-any.whl", hash = "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569"}, {file = "certifi-2021.10.8-py2.py3-none-any.whl", hash = "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569"},
{file = "certifi-2021.10.8.tar.gz", hash = "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872"}, {file = "certifi-2021.10.8.tar.gz", hash = "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872"},
] ]
cffi = [
{file = "cffi-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:c2502a1a03b6312837279c8c1bd3ebedf6c12c4228ddbad40912d671ccc8a962"},
{file = "cffi-1.15.0-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:23cfe892bd5dd8941608f93348c0737e369e51c100d03718f108bf1add7bd6d0"},
{file = "cffi-1.15.0-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:41d45de54cd277a7878919867c0f08b0cf817605e4eb94093e7516505d3c8d14"},
{file = "cffi-1.15.0-cp27-cp27m-win32.whl", hash = "sha256:4a306fa632e8f0928956a41fa8e1d6243c71e7eb59ffbd165fc0b41e316b2474"},
{file = "cffi-1.15.0-cp27-cp27m-win_amd64.whl", hash = "sha256:e7022a66d9b55e93e1a845d8c9eba2a1bebd4966cd8bfc25d9cd07d515b33fa6"},
{file = "cffi-1.15.0-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:14cd121ea63ecdae71efa69c15c5543a4b5fbcd0bbe2aad864baca0063cecf27"},
{file = "cffi-1.15.0-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:d4d692a89c5cf08a8557fdeb329b82e7bf609aadfaed6c0d79f5a449a3c7c023"},
{file = "cffi-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0104fb5ae2391d46a4cb082abdd5c69ea4eab79d8d44eaaf79f1b1fd806ee4c2"},
{file = "cffi-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:91ec59c33514b7c7559a6acda53bbfe1b283949c34fe7440bcf917f96ac0723e"},
{file = "cffi-1.15.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f5c7150ad32ba43a07c4479f40241756145a1f03b43480e058cfd862bf5041c7"},
{file = "cffi-1.15.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:00c878c90cb53ccfaae6b8bc18ad05d2036553e6d9d1d9dbcf323bbe83854ca3"},
{file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:abb9a20a72ac4e0fdb50dae135ba5e77880518e742077ced47eb1499e29a443c"},
{file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a5263e363c27b653a90078143adb3d076c1a748ec9ecc78ea2fb916f9b861962"},
{file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f54a64f8b0c8ff0b64d18aa76675262e1700f3995182267998c31ae974fbc382"},
{file = "cffi-1.15.0-cp310-cp310-win32.whl", hash = "sha256:c21c9e3896c23007803a875460fb786118f0cdd4434359577ea25eb556e34c55"},
{file = "cffi-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:5e069f72d497312b24fcc02073d70cb989045d1c91cbd53979366077959933e0"},
{file = "cffi-1.15.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:64d4ec9f448dfe041705426000cc13e34e6e5bb13736e9fd62e34a0b0c41566e"},
{file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2756c88cbb94231c7a147402476be2c4df2f6078099a6f4a480d239a8817ae39"},
{file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b96a311ac60a3f6be21d2572e46ce67f09abcf4d09344c49274eb9e0bf345fc"},
{file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75e4024375654472cc27e91cbe9eaa08567f7fbdf822638be2814ce059f58032"},
{file = "cffi-1.15.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:59888172256cac5629e60e72e86598027aca6bf01fa2465bdb676d37636573e8"},
{file = "cffi-1.15.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:27c219baf94952ae9d50ec19651a687b826792055353d07648a5695413e0c605"},
{file = "cffi-1.15.0-cp36-cp36m-win32.whl", hash = "sha256:4958391dbd6249d7ad855b9ca88fae690783a6be9e86df65865058ed81fc860e"},
{file = "cffi-1.15.0-cp36-cp36m-win_amd64.whl", hash = "sha256:f6f824dc3bce0edab5f427efcfb1d63ee75b6fcb7282900ccaf925be84efb0fc"},
{file = "cffi-1.15.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:06c48159c1abed75c2e721b1715c379fa3200c7784271b3c46df01383b593636"},
{file = "cffi-1.15.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c2051981a968d7de9dd2d7b87bcb9c939c74a34626a6e2f8181455dd49ed69e4"},
{file = "cffi-1.15.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:fd8a250edc26254fe5b33be00402e6d287f562b6a5b2152dec302fa15bb3e997"},
{file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:91d77d2a782be4274da750752bb1650a97bfd8f291022b379bb8e01c66b4e96b"},
{file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:45db3a33139e9c8f7c09234b5784a5e33d31fd6907800b316decad50af323ff2"},
{file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:263cc3d821c4ab2213cbe8cd8b355a7f72a8324577dc865ef98487c1aeee2bc7"},
{file = "cffi-1.15.0-cp37-cp37m-win32.whl", hash = "sha256:17771976e82e9f94976180f76468546834d22a7cc404b17c22df2a2c81db0c66"},
{file = "cffi-1.15.0-cp37-cp37m-win_amd64.whl", hash = "sha256:3415c89f9204ee60cd09b235810be700e993e343a408693e80ce7f6a40108029"},
{file = "cffi-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4238e6dab5d6a8ba812de994bbb0a79bddbdf80994e4ce802b6f6f3142fcc880"},
{file = "cffi-1.15.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0808014eb713677ec1292301ea4c81ad277b6cdf2fdd90fd540af98c0b101d20"},
{file = "cffi-1.15.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:57e9ac9ccc3101fac9d6014fba037473e4358ef4e89f8e181f8951a2c0162024"},
{file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b6c2ea03845c9f501ed1313e78de148cd3f6cad741a75d43a29b43da27f2e1e"},
{file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:10dffb601ccfb65262a27233ac273d552ddc4d8ae1bf93b21c94b8511bffe728"},
{file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:786902fb9ba7433aae840e0ed609f45c7bcd4e225ebb9c753aa39725bb3e6ad6"},
{file = "cffi-1.15.0-cp38-cp38-win32.whl", hash = "sha256:da5db4e883f1ce37f55c667e5c0de439df76ac4cb55964655906306918e7363c"},
{file = "cffi-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:181dee03b1170ff1969489acf1c26533710231c58f95534e3edac87fff06c443"},
{file = "cffi-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:45e8636704eacc432a206ac7345a5d3d2c62d95a507ec70d62f23cd91770482a"},
{file = "cffi-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:31fb708d9d7c3f49a60f04cf5b119aeefe5644daba1cd2a0fe389b674fd1de37"},
{file = "cffi-1.15.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:6dc2737a3674b3e344847c8686cf29e500584ccad76204efea14f451d4cc669a"},
{file = "cffi-1.15.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:74fdfdbfdc48d3f47148976f49fab3251e550a8720bebc99bf1483f5bfb5db3e"},
{file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffaa5c925128e29efbde7301d8ecaf35c8c60ffbcd6a1ffd3a552177c8e5e796"},
{file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f7d084648d77af029acb79a0ff49a0ad7e9d09057a9bf46596dac9514dc07df"},
{file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ef1f279350da2c586a69d32fc8733092fd32cc8ac95139a00377841f59a3f8d8"},
{file = "cffi-1.15.0-cp39-cp39-win32.whl", hash = "sha256:2a23af14f408d53d5e6cd4e3d9a24ff9e05906ad574822a10563efcef137979a"},
{file = "cffi-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:3773c4d81e6e818df2efbc7dd77325ca0dcb688116050fb2b3011218eda36139"},
{file = "cffi-1.15.0.tar.gz", hash = "sha256:920f0d66a896c2d99f0adbb391f990a84091179542c205fa53ce5787aff87954"},
]
charset-normalizer = [ charset-normalizer = [
{file = "charset-normalizer-2.0.10.tar.gz", hash = "sha256:876d180e9d7432c5d1dfd4c5d26b72f099d503e8fcc0feb7532c9289be60fcbd"}, {file = "charset-normalizer-2.0.10.tar.gz", hash = "sha256:876d180e9d7432c5d1dfd4c5d26b72f099d503e8fcc0feb7532c9289be60fcbd"},
{file = "charset_normalizer-2.0.10-py3-none-any.whl", hash = "sha256:cb957888737fc0bbcd78e3df769addb41fd1ff8cf950dc9e7ad7793f1bf44455"}, {file = "charset_normalizer-2.0.10-py3-none-any.whl", hash = "sha256:cb957888737fc0bbcd78e3df769addb41fd1ff8cf950dc9e7ad7793f1bf44455"},
@ -965,45 +574,10 @@ dbfread = [
{file = "dbfread-2.0.7-py2.py3-none-any.whl", hash = "sha256:f604def58c59694fa0160d7be5d0b8d594467278d2bb6a47d46daf7162c84cec"}, {file = "dbfread-2.0.7-py2.py3-none-any.whl", hash = "sha256:f604def58c59694fa0160d7be5d0b8d594467278d2bb6a47d46daf7162c84cec"},
{file = "dbfread-2.0.7.tar.gz", hash = "sha256:07c8a9af06ffad3f6f03e8fe91ad7d2733e31a26d2b72c4dd4cfbae07ee3b73d"}, {file = "dbfread-2.0.7.tar.gz", hash = "sha256:07c8a9af06ffad3f6f03e8fe91ad7d2733e31a26d2b72c4dd4cfbae07ee3b73d"},
] ]
debugpy = [
{file = "debugpy-1.5.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:70b422c63a833630c33e3f9cdbd9b6971f8c5afd452697e464339a21bbe862ba"},
{file = "debugpy-1.5.1-cp310-cp310-win32.whl", hash = "sha256:3a457ad9c0059a21a6c7d563c1f18e924f5cf90278c722bd50ede6f56b77c7fe"},
{file = "debugpy-1.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:5d76a4fd028d8009c3faf1185b4b78ceb2273dd2499447664b03939e0368bb90"},
{file = "debugpy-1.5.1-cp36-cp36m-macosx_10_15_x86_64.whl", hash = "sha256:16db27b4b91991442f91d73604d32080b30de655aca9ba821b1972ea8171021b"},
{file = "debugpy-1.5.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2b073ad5e8d8c488fbb6a116986858bab0c9c4558f28deb8832c7a5a27405bd6"},
{file = "debugpy-1.5.1-cp36-cp36m-win32.whl", hash = "sha256:318f81f37341e4e054b4267d39896b73cddb3612ca13b39d7eea45af65165e1d"},
{file = "debugpy-1.5.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b5b3157372e0e0a1297a8b6b5280bcf1d35a40f436c7973771c972726d1e32d5"},
{file = "debugpy-1.5.1-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:1ec3a086e14bba6c472632025b8fe5bdfbaef2afa1ebd5c6615ce6ed8d89bc67"},
{file = "debugpy-1.5.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:26fbe53cca45a608679094791ce587b6e2798acd1d4777a8b303b07622e85182"},
{file = "debugpy-1.5.1-cp37-cp37m-win32.whl", hash = "sha256:d876db8c312eeb02d85611e0f696abe66a2c1515e6405943609e725d5ff36f2a"},
{file = "debugpy-1.5.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4404a62fb5332ea5c8c9132290eef50b3a0ba38cecacad5529e969a783bcbdd7"},
{file = "debugpy-1.5.1-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f3a3dca9104aa14fd4210edcce6d9ce2b65bd9618c0b222135a40b9d6e2a9eeb"},
{file = "debugpy-1.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b2df2c373e85871086bd55271c929670cd4e1dba63e94a08d442db830646203b"},
{file = "debugpy-1.5.1-cp38-cp38-win32.whl", hash = "sha256:82f5f9ce93af6861a0713f804e62ab390bb12a17f113153e47fea8bbb1dfbe36"},
{file = "debugpy-1.5.1-cp38-cp38-win_amd64.whl", hash = "sha256:17a25ce9d7714f92fc97ef00cc06269d7c2b163094990ada30156ed31d9a5030"},
{file = "debugpy-1.5.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:01e98c594b3e66d529e40edf314f849cd1a21f7a013298df58cd8e263bf8e184"},
{file = "debugpy-1.5.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f73988422b17f071ad3c4383551ace1ba5ed810cbab5f9c362783d22d40a08dc"},
{file = "debugpy-1.5.1-cp39-cp39-win32.whl", hash = "sha256:23df67fc56d59e386c342428a7953c2c06cc226d8525b11319153e96afb65b0c"},
{file = "debugpy-1.5.1-cp39-cp39-win_amd64.whl", hash = "sha256:a2aa64f6d2ca7ded8a7e8a4e7cae3bc71866b09876b7b05cecad231779cb9156"},
{file = "debugpy-1.5.1-py2.py3-none-any.whl", hash = "sha256:194f95dd3e84568b5489aab5689a3a2c044e8fdc06f1890b8b4f70b6b89f2778"},
{file = "debugpy-1.5.1.zip", hash = "sha256:d2b09e91fbd1efa4f4fda121d49af89501beda50c18ed7499712c71a4bf3452e"},
]
decorator = [
{file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"},
{file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"},
]
entrypoints = [
{file = "entrypoints-0.3-py2.py3-none-any.whl", hash = "sha256:589f874b313739ad35be6e0cd7efde2a4e9b6fea91edcc34e58ecbb8dbe56d19"},
{file = "entrypoints-0.3.tar.gz", hash = "sha256:c70dd71abe5a8c85e55e12c19bd91ccfeec11a6e99044204511f9ed547d48451"},
]
et-xmlfile = [ et-xmlfile = [
{file = "et_xmlfile-1.1.0-py3-none-any.whl", hash = "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada"}, {file = "et_xmlfile-1.1.0-py3-none-any.whl", hash = "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada"},
{file = "et_xmlfile-1.1.0.tar.gz", hash = "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c"}, {file = "et_xmlfile-1.1.0.tar.gz", hash = "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c"},
] ]
executing = [
{file = "executing-0.8.2-py2.py3-none-any.whl", hash = "sha256:32fc6077b103bd19e6494a72682d66d5763cf20a106d5aa7c5ccbea4e47b0df7"},
{file = "executing-0.8.2.tar.gz", hash = "sha256:c23bf42e9a7b9b212f185b1b2c3c91feb895963378887bb10e64a2e612ec0023"},
]
future = [ future = [
{file = "future-0.18.2.tar.gz", hash = "sha256:b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d"}, {file = "future-0.18.2.tar.gz", hash = "sha256:b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d"},
] ]
@ -1063,14 +637,6 @@ idna = [
{file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"}, {file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"},
{file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"}, {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"},
] ]
ipykernel = [
{file = "ipykernel-6.7.0-py3-none-any.whl", hash = "sha256:6203ccd5510ff148e9433fd4a2707c5ce8d688f026427f46e13d7ebf9b3e9787"},
{file = "ipykernel-6.7.0.tar.gz", hash = "sha256:d82b904fdc2fd8c7b1fbe0fa481c68a11b4cd4c8ef07e6517da1f10cc3114d24"},
]
ipython = [
{file = "ipython-8.0.1-py3-none-any.whl", hash = "sha256:c503a0dd6ccac9c8c260b211f2dd4479c042b49636b097cc9a0d55fe62dff64c"},
{file = "ipython-8.0.1.tar.gz", hash = "sha256:ab564d4521ea8ceaac26c3a2c6e5ddbca15c8848fd5a5cc325f960da88d42974"},
]
isodate = [ isodate = [
{file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"}, {file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"},
{file = "isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"}, {file = "isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"},
@ -1079,34 +645,14 @@ isort = [
{file = "isort-5.10.1-py3-none-any.whl", hash = "sha256:6f62d78e2f89b4500b080fe3a81690850cd254227f27f75c3a0c491a1f351ba7"}, {file = "isort-5.10.1-py3-none-any.whl", hash = "sha256:6f62d78e2f89b4500b080fe3a81690850cd254227f27f75c3a0c491a1f351ba7"},
{file = "isort-5.10.1.tar.gz", hash = "sha256:e8443a5e7a020e9d7f97f1d7d9cd17c88bcb3bc7e218bf9cf5095fe550be2951"}, {file = "isort-5.10.1.tar.gz", hash = "sha256:e8443a5e7a020e9d7f97f1d7d9cd17c88bcb3bc7e218bf9cf5095fe550be2951"},
] ]
jedi = [
{file = "jedi-0.18.1-py2.py3-none-any.whl", hash = "sha256:637c9635fcf47945ceb91cd7f320234a7be540ded6f3e99a50cb6febdfd1ba8d"},
{file = "jedi-0.18.1.tar.gz", hash = "sha256:74137626a64a99c8eb6ae5832d99b3bdd7d29a3850fe2aa80a4126b2a7d949ab"},
]
jupyter-client = [
{file = "jupyter_client-7.1.2-py3-none-any.whl", hash = "sha256:d56f1c57bef42ff31e61b1185d3348a5b2bcde7c9a05523ae4dbe5ee0871797c"},
{file = "jupyter_client-7.1.2.tar.gz", hash = "sha256:4ea61033726c8e579edb55626d8ee2e6bf0a83158ddf3751b8dd46b2c5cd1e96"},
]
jupyter-core = [
{file = "jupyter_core-4.9.1-py3-none-any.whl", hash = "sha256:1c091f3bbefd6f2a8782f2c1db662ca8478ac240e962ae2c66f0b87c818154ea"},
{file = "jupyter_core-4.9.1.tar.gz", hash = "sha256:dce8a7499da5a53ae3afd5a9f4b02e5df1d57250cf48f3ad79da23b4778cd6fa"},
]
leather = [ leather = [
{file = "leather-0.3.4-py2.py3-none-any.whl", hash = "sha256:5e741daee96e9f1e9e06081b8c8a10c4ac199301a0564cdd99b09df15b4603d2"}, {file = "leather-0.3.4-py2.py3-none-any.whl", hash = "sha256:5e741daee96e9f1e9e06081b8c8a10c4ac199301a0564cdd99b09df15b4603d2"},
{file = "leather-0.3.4.tar.gz", hash = "sha256:b43e21c8fa46b2679de8449f4d953c06418666dc058ce41055ee8a8d3bb40918"}, {file = "leather-0.3.4.tar.gz", hash = "sha256:b43e21c8fa46b2679de8449f4d953c06418666dc058ce41055ee8a8d3bb40918"},
] ]
matplotlib-inline = [
{file = "matplotlib-inline-0.1.3.tar.gz", hash = "sha256:a04bfba22e0d1395479f866853ec1ee28eea1485c1d69a6faf00dc3e24ff34ee"},
{file = "matplotlib_inline-0.1.3-py3-none-any.whl", hash = "sha256:aed605ba3b72462d64d475a21a9296f400a19c4f74a31b59103d2a99ffd5aa5c"},
]
mypy-extensions = [ mypy-extensions = [
{file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"}, {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"},
{file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"}, {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"},
] ]
nest-asyncio = [
{file = "nest_asyncio-1.5.4-py3-none-any.whl", hash = "sha256:3fdd0d6061a2bb16f21fe8a9c6a7945be83521d81a0d15cff52e9edee50101d6"},
{file = "nest_asyncio-1.5.4.tar.gz", hash = "sha256:f969f6013a16fadb4adcf09d11a68a4f617c6049d7af7ac2c676110169a63abd"},
]
numpy = [ numpy = [
{file = "numpy-1.22.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3d62d6b0870b53799204515145935608cdeb4cebb95a26800b6750e48884cc5b"}, {file = "numpy-1.22.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3d62d6b0870b53799204515145935608cdeb4cebb95a26800b6750e48884cc5b"},
{file = "numpy-1.22.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:831f2df87bd3afdfc77829bc94bd997a7c212663889d56518359c827d7113b1f"}, {file = "numpy-1.22.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:831f2df87bd3afdfc77829bc94bd997a7c212663889d56518359c827d7113b1f"},
@ -1165,50 +711,14 @@ parsedatetime = [
{file = "parsedatetime-2.4-py2-none-any.whl", hash = "sha256:9ee3529454bf35c40a77115f5a596771e59e1aee8c53306f346c461b8e913094"}, {file = "parsedatetime-2.4-py2-none-any.whl", hash = "sha256:9ee3529454bf35c40a77115f5a596771e59e1aee8c53306f346c461b8e913094"},
{file = "parsedatetime-2.4.tar.gz", hash = "sha256:3d817c58fb9570d1eec1dd46fa9448cd644eeed4fb612684b02dfda3a79cb84b"}, {file = "parsedatetime-2.4.tar.gz", hash = "sha256:3d817c58fb9570d1eec1dd46fa9448cd644eeed4fb612684b02dfda3a79cb84b"},
] ]
parso = [
{file = "parso-0.8.3-py2.py3-none-any.whl", hash = "sha256:c001d4636cd3aecdaf33cbb40aebb59b094be2a74c556778ef5576c175e19e75"},
{file = "parso-0.8.3.tar.gz", hash = "sha256:8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0"},
]
pathspec = [ pathspec = [
{file = "pathspec-0.9.0-py2.py3-none-any.whl", hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a"}, {file = "pathspec-0.9.0-py2.py3-none-any.whl", hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a"},
{file = "pathspec-0.9.0.tar.gz", hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1"}, {file = "pathspec-0.9.0.tar.gz", hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1"},
] ]
pexpect = [
{file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"},
{file = "pexpect-4.8.0.tar.gz", hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c"},
]
pickleshare = [
{file = "pickleshare-0.7.5-py2.py3-none-any.whl", hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56"},
{file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"},
]
platformdirs = [ platformdirs = [
{file = "platformdirs-2.4.1-py3-none-any.whl", hash = "sha256:1d7385c7db91728b83efd0ca99a5afb296cab9d0ed8313a45ed8ba17967ecfca"}, {file = "platformdirs-2.4.1-py3-none-any.whl", hash = "sha256:1d7385c7db91728b83efd0ca99a5afb296cab9d0ed8313a45ed8ba17967ecfca"},
{file = "platformdirs-2.4.1.tar.gz", hash = "sha256:440633ddfebcc36264232365d7840a970e75e1018d15b4327d11f91909045fda"}, {file = "platformdirs-2.4.1.tar.gz", hash = "sha256:440633ddfebcc36264232365d7840a970e75e1018d15b4327d11f91909045fda"},
] ]
prompt-toolkit = [
{file = "prompt_toolkit-3.0.24-py3-none-any.whl", hash = "sha256:e56f2ff799bacecd3e88165b1e2f5ebf9bcd59e80e06d395fa0cc4b8bd7bb506"},
{file = "prompt_toolkit-3.0.24.tar.gz", hash = "sha256:1bb05628c7d87b645974a1bad3f17612be0c29fa39af9f7688030163f680bad6"},
]
ptyprocess = [
{file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"},
{file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"},
]
pure-eval = [
{file = "pure_eval-0.2.2-py3-none-any.whl", hash = "sha256:01eaab343580944bc56080ebe0a674b39ec44a945e6d09ba7db3cb8cec289350"},
{file = "pure_eval-0.2.2.tar.gz", hash = "sha256:2b45320af6dfaa1750f543d714b6d1c520a1688dec6fd24d339063ce0aaa9ac3"},
]
py = [
{file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"},
{file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"},
]
pycparser = [
{file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"},
{file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"},
]
pygments = [
{file = "Pygments-2.11.2-py3-none-any.whl", hash = "sha256:44238f1b60a76d78fc8ca0528ee429702aae011c265fe6a8dd8b63049ae41c65"},
{file = "Pygments-2.11.2.tar.gz", hash = "sha256:4e426f72023d88d03b2fa258de560726ce890ff3b630f88c21cbb8b2503b8c6a"},
]
pyparsing = [ pyparsing = [
{file = "pyparsing-3.0.7-py3-none-any.whl", hash = "sha256:a6c06a88f252e6c322f65faf8f418b16213b51bdfaece0524c1c1bc30c63c484"}, {file = "pyparsing-3.0.7-py3-none-any.whl", hash = "sha256:a6c06a88f252e6c322f65faf8f418b16213b51bdfaece0524c1c1bc30c63c484"},
{file = "pyparsing-3.0.7.tar.gz", hash = "sha256:18ee9022775d270c55187733956460083db60b37d0d0fb357445f3094eed3eea"}, {file = "pyparsing-3.0.7.tar.gz", hash = "sha256:18ee9022775d270c55187733956460083db60b37d0d0fb357445f3094eed3eea"},
@ -1229,69 +739,6 @@ pytz = [
{file = "pytz-2021.3-py2.py3-none-any.whl", hash = "sha256:3672058bc3453457b622aab7a1c3bfd5ab0bdae451512f6cf25f64ed37f5b87c"}, {file = "pytz-2021.3-py2.py3-none-any.whl", hash = "sha256:3672058bc3453457b622aab7a1c3bfd5ab0bdae451512f6cf25f64ed37f5b87c"},
{file = "pytz-2021.3.tar.gz", hash = "sha256:acad2d8b20a1af07d4e4c9d2e9285c5ed9104354062f275f3fcd88dcef4f1326"}, {file = "pytz-2021.3.tar.gz", hash = "sha256:acad2d8b20a1af07d4e4c9d2e9285c5ed9104354062f275f3fcd88dcef4f1326"},
] ]
pywin32 = [
{file = "pywin32-303-cp310-cp310-win32.whl", hash = "sha256:6fed4af057039f309263fd3285d7b8042d41507343cd5fa781d98fcc5b90e8bb"},
{file = "pywin32-303-cp310-cp310-win_amd64.whl", hash = "sha256:51cb52c5ec6709f96c3f26e7795b0bf169ee0d8395b2c1d7eb2c029a5008ed51"},
{file = "pywin32-303-cp311-cp311-win32.whl", hash = "sha256:d9b5d87ca944eb3aa4cd45516203ead4b37ab06b8b777c54aedc35975dec0dee"},
{file = "pywin32-303-cp311-cp311-win_amd64.whl", hash = "sha256:fcf44032f5b14fcda86028cdf49b6ebdaea091230eb0a757282aa656e4732439"},
{file = "pywin32-303-cp36-cp36m-win32.whl", hash = "sha256:aad484d52ec58008ca36bd4ad14a71d7dd0a99db1a4ca71072213f63bf49c7d9"},
{file = "pywin32-303-cp36-cp36m-win_amd64.whl", hash = "sha256:2a09632916b6bb231ba49983fe989f2f625cea237219530e81a69239cd0c4559"},
{file = "pywin32-303-cp37-cp37m-win32.whl", hash = "sha256:b1675d82bcf6dbc96363fca747bac8bff6f6e4a447a4287ac652aa4b9adc796e"},
{file = "pywin32-303-cp37-cp37m-win_amd64.whl", hash = "sha256:c268040769b48a13367221fced6d4232ed52f044ffafeda247bd9d2c6bdc29ca"},
{file = "pywin32-303-cp38-cp38-win32.whl", hash = "sha256:5f9ec054f5a46a0f4dfd72af2ce1372f3d5a6e4052af20b858aa7df2df7d355b"},
{file = "pywin32-303-cp38-cp38-win_amd64.whl", hash = "sha256:793bf74fce164bcffd9d57bb13c2c15d56e43c9542a7b9687b4fccf8f8a41aba"},
{file = "pywin32-303-cp39-cp39-win32.whl", hash = "sha256:7d3271c98434617a11921c5ccf74615794d97b079e22ed7773790822735cc352"},
{file = "pywin32-303-cp39-cp39-win_amd64.whl", hash = "sha256:79cbb862c11b9af19bcb682891c1b91942ec2ff7de8151e2aea2e175899cda34"},
]
pyzmq = [
{file = "pyzmq-22.3.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:6b217b8f9dfb6628f74b94bdaf9f7408708cb02167d644edca33f38746ca12dd"},
{file = "pyzmq-22.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2841997a0d85b998cbafecb4183caf51fd19c4357075dfd33eb7efea57e4c149"},
{file = "pyzmq-22.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f89468059ebc519a7acde1ee50b779019535db8dcf9b8c162ef669257fef7a93"},
{file = "pyzmq-22.3.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ea12133df25e3a6918718fbb9a510c6ee5d3fdd5a346320421aac3882f4feeea"},
{file = "pyzmq-22.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76c532fd68b93998aab92356be280deec5de8f8fe59cd28763d2cc8a58747b7f"},
{file = "pyzmq-22.3.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:f907c7359ce8bf7f7e63c82f75ad0223384105f5126f313400b7e8004d9b33c3"},
{file = "pyzmq-22.3.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:902319cfe23366595d3fa769b5b751e6ee6750a0a64c5d9f757d624b2ac3519e"},
{file = "pyzmq-22.3.0-cp310-cp310-win32.whl", hash = "sha256:67db33bea0a29d03e6eeec55a8190e033318cee3cbc732ba8fd939617cbf762d"},
{file = "pyzmq-22.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:7661fc1d5cb73481cf710a1418a4e1e301ed7d5d924f91c67ba84b2a1b89defd"},
{file = "pyzmq-22.3.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:79244b9e97948eaf38695f4b8e6fc63b14b78cc37f403c6642ba555517ac1268"},
{file = "pyzmq-22.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ab888624ed68930442a3f3b0b921ad7439c51ba122dbc8c386e6487a658e4a4e"},
{file = "pyzmq-22.3.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18cd854b423fce44951c3a4d3e686bac8f1243d954f579e120a1714096637cc0"},
{file = "pyzmq-22.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:de8df0684398bd74ad160afdc2a118ca28384ac6f5e234eb0508858d8d2d9364"},
{file = "pyzmq-22.3.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:62bcade20813796c426409a3e7423862d50ff0639f5a2a95be4b85b09a618666"},
{file = "pyzmq-22.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:ea5a79e808baef98c48c884effce05c31a0698c1057de8fc1c688891043c1ce1"},
{file = "pyzmq-22.3.0-cp36-cp36m-win32.whl", hash = "sha256:3c1895c95be92600233e476fe283f042e71cf8f0b938aabf21b7aafa62a8dac9"},
{file = "pyzmq-22.3.0-cp36-cp36m-win_amd64.whl", hash = "sha256:851977788b9caa8ed011f5f643d3ee8653af02c5fc723fa350db5125abf2be7b"},
{file = "pyzmq-22.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b4ebed0977f92320f6686c96e9e8dd29eed199eb8d066936bac991afc37cbb70"},
{file = "pyzmq-22.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42abddebe2c6a35180ca549fadc7228d23c1e1f76167c5ebc8a936b5804ea2df"},
{file = "pyzmq-22.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c1e41b32d6f7f9c26bc731a8b529ff592f31fc8b6ef2be9fa74abd05c8a342d7"},
{file = "pyzmq-22.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:be4e0f229cf3a71f9ecd633566bd6f80d9fa6afaaff5489492be63fe459ef98c"},
{file = "pyzmq-22.3.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:08c4e315a76ef26eb833511ebf3fa87d182152adf43dedee8d79f998a2162a0b"},
{file = "pyzmq-22.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:badb868fff14cfd0e200eaa845887b1011146a7d26d579aaa7f966c203736b92"},
{file = "pyzmq-22.3.0-cp37-cp37m-win32.whl", hash = "sha256:7c58f598d9fcc52772b89a92d72bf8829c12d09746a6d2c724c5b30076c1f11d"},
{file = "pyzmq-22.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:2b97502c16a5ec611cd52410bdfaab264997c627a46b0f98d3f666227fd1ea2d"},
{file = "pyzmq-22.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d728b08448e5ac3e4d886b165385a262883c34b84a7fe1166277fe675e1c197a"},
{file = "pyzmq-22.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:480b9931bfb08bf8b094edd4836271d4d6b44150da051547d8c7113bf947a8b0"},
{file = "pyzmq-22.3.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7dc09198e4073e6015d9a8ea093fc348d4e59de49382476940c3dd9ae156fba8"},
{file = "pyzmq-22.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ca6cd58f62a2751728016d40082008d3b3412a7f28ddfb4a2f0d3c130f69e74"},
{file = "pyzmq-22.3.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:468bd59a588e276961a918a3060948ae68f6ff5a7fa10bb2f9160c18fe341067"},
{file = "pyzmq-22.3.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c88fa7410e9fc471e0858638f403739ee869924dd8e4ae26748496466e27ac59"},
{file = "pyzmq-22.3.0-cp38-cp38-win32.whl", hash = "sha256:c0f84360dcca3481e8674393bdf931f9f10470988f87311b19d23cda869bb6b7"},
{file = "pyzmq-22.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:f762442bab706fd874064ca218b33a1d8e40d4938e96c24dafd9b12e28017f45"},
{file = "pyzmq-22.3.0-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:954e73c9cd4d6ae319f1c936ad159072b6d356a92dcbbabfd6e6204b9a79d356"},
{file = "pyzmq-22.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f43b4a2e6218371dd4f41e547bd919ceeb6ebf4abf31a7a0669cd11cd91ea973"},
{file = "pyzmq-22.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:acebba1a23fb9d72b42471c3771b6f2f18dcd46df77482612054bd45c07dfa36"},
{file = "pyzmq-22.3.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cf98fd7a6c8aaa08dbc699ffae33fd71175696d78028281bc7b832b26f00ca57"},
{file = "pyzmq-22.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d072f7dfbdb184f0786d63bda26e8a0882041b1e393fbe98940395f7fab4c5e2"},
{file = "pyzmq-22.3.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:53f4fd13976789ffafedd4d46f954c7bb01146121812b72b4ddca286034df966"},
{file = "pyzmq-22.3.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d1b5d457acbadcf8b27561deeaa386b0217f47626b29672fa7bd31deb6e91e1b"},
{file = "pyzmq-22.3.0-cp39-cp39-win32.whl", hash = "sha256:e6a02cf7271ee94674a44f4e62aa061d2d049001c844657740e156596298b70b"},
{file = "pyzmq-22.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:d3dcb5548ead4f1123851a5ced467791f6986d68c656bc63bfff1bf9e36671e2"},
{file = "pyzmq-22.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3a4c9886d61d386b2b493377d980f502186cd71d501fffdba52bd2a0880cef4f"},
{file = "pyzmq-22.3.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:80e043a89c6cadefd3a0712f8a1322038e819ebe9dbac7eca3bce1721bcb63bf"},
{file = "pyzmq-22.3.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:1621e7a2af72cced1f6ec8ca8ca91d0f76ac236ab2e8828ac8fe909512d566cb"},
{file = "pyzmq-22.3.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:d6157793719de168b199194f6b6173f0ccd3bf3499e6870fac17086072e39115"},
{file = "pyzmq-22.3.0.tar.gz", hash = "sha256:8eddc033e716f8c91c6a2112f0a8ebc5e00532b4a6ae1eb0ccc48e027f9c671c"},
]
rdflib = [ rdflib = [
{file = "rdflib-6.1.1-py3-none-any.whl", hash = "sha256:fc81cef513cd552d471f2926141396b633207109d0154c8e77926222c70367fe"}, {file = "rdflib-6.1.1-py3-none-any.whl", hash = "sha256:fc81cef513cd552d471f2926141396b633207109d0154c8e77926222c70367fe"},
{file = "rdflib-6.1.1.tar.gz", hash = "sha256:8dbfa0af2990b98471dacbc936d6494c997ede92fd8ed693fb84ee700ef6f754"}, {file = "rdflib-6.1.1.tar.gz", hash = "sha256:8dbfa0af2990b98471dacbc936d6494c997ede92fd8ed693fb84ee700ef6f754"},
@ -1342,64 +789,13 @@ sqlalchemy = [
{file = "SQLAlchemy-1.4.31-cp39-cp39-win_amd64.whl", hash = "sha256:9e4fb2895b83993831ba2401b6404de953fdbfa9d7d4fa6a4756294a83bbc94f"}, {file = "SQLAlchemy-1.4.31-cp39-cp39-win_amd64.whl", hash = "sha256:9e4fb2895b83993831ba2401b6404de953fdbfa9d7d4fa6a4756294a83bbc94f"},
{file = "SQLAlchemy-1.4.31.tar.gz", hash = "sha256:582b59d1e5780a447aada22b461e50b404a9dc05768da1d87368ad8190468418"}, {file = "SQLAlchemy-1.4.31.tar.gz", hash = "sha256:582b59d1e5780a447aada22b461e50b404a9dc05768da1d87368ad8190468418"},
] ]
stack-data = [
{file = "stack_data-0.1.4-py3-none-any.whl", hash = "sha256:02cc0683cbc445ae4ca8c4e3a0e58cb1df59f252efb0aa016b34804a707cf9bc"},
{file = "stack_data-0.1.4.tar.gz", hash = "sha256:7769ed2482ce0030e00175dd1bf4ef1e873603b6ab61cd3da443b410e64e9477"},
]
text-unidecode = [ text-unidecode = [
{file = "text-unidecode-1.3.tar.gz", hash = "sha256:bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93"}, {file = "text-unidecode-1.3.tar.gz", hash = "sha256:bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93"},
{file = "text_unidecode-1.3-py2.py3-none-any.whl", hash = "sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8"}, {file = "text_unidecode-1.3-py2.py3-none-any.whl", hash = "sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8"},
] ]
tomli = [ tomli = [
{file = "tomli-1.2.3-py3-none-any.whl", hash = "sha256:e3069e4be3ead9668e21cb9b074cd948f7b3113fd9c8bba083f48247aab8b11c"}, {file = "tomli-2.0.0-py3-none-any.whl", hash = "sha256:b5bde28da1fed24b9bd1d4d2b8cba62300bfb4ec9a6187a957e8ddb9434c5224"},
{file = "tomli-1.2.3.tar.gz", hash = "sha256:05b6166bff487dc068d322585c7ea4ef78deed501cc124060e0f238e89a9231f"}, {file = "tomli-2.0.0.tar.gz", hash = "sha256:c292c34f58502a1eb2bbb9f5bbc9a5ebc37bee10ffb8c2d6bbdfa8eb13cc14e1"},
]
tornado = [
{file = "tornado-6.1-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:d371e811d6b156d82aa5f9a4e08b58debf97c302a35714f6f45e35139c332e32"},
{file = "tornado-6.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:0d321a39c36e5f2c4ff12b4ed58d41390460f798422c4504e09eb5678e09998c"},
{file = "tornado-6.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9de9e5188a782be6b1ce866e8a51bc76a0fbaa0e16613823fc38e4fc2556ad05"},
{file = "tornado-6.1-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:61b32d06ae8a036a6607805e6720ef00a3c98207038444ba7fd3d169cd998910"},
{file = "tornado-6.1-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:3e63498f680547ed24d2c71e6497f24bca791aca2fe116dbc2bd0ac7f191691b"},
{file = "tornado-6.1-cp35-cp35m-manylinux2014_aarch64.whl", hash = "sha256:6c77c9937962577a6a76917845d06af6ab9197702a42e1346d8ae2e76b5e3675"},
{file = "tornado-6.1-cp35-cp35m-win32.whl", hash = "sha256:6286efab1ed6e74b7028327365cf7346b1d777d63ab30e21a0f4d5b275fc17d5"},
{file = "tornado-6.1-cp35-cp35m-win_amd64.whl", hash = "sha256:fa2ba70284fa42c2a5ecb35e322e68823288a4251f9ba9cc77be04ae15eada68"},
{file = "tornado-6.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:0a00ff4561e2929a2c37ce706cb8233b7907e0cdc22eab98888aca5dd3775feb"},
{file = "tornado-6.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:748290bf9112b581c525e6e6d3820621ff020ed95af6f17fedef416b27ed564c"},
{file = "tornado-6.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:e385b637ac3acaae8022e7e47dfa7b83d3620e432e3ecb9a3f7f58f150e50921"},
{file = "tornado-6.1-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:25ad220258349a12ae87ede08a7b04aca51237721f63b1808d39bdb4b2164558"},
{file = "tornado-6.1-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:65d98939f1a2e74b58839f8c4dab3b6b3c1ce84972ae712be02845e65391ac7c"},
{file = "tornado-6.1-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:e519d64089b0876c7b467274468709dadf11e41d65f63bba207e04217f47c085"},
{file = "tornado-6.1-cp36-cp36m-win32.whl", hash = "sha256:b87936fd2c317b6ee08a5741ea06b9d11a6074ef4cc42e031bc6403f82a32575"},
{file = "tornado-6.1-cp36-cp36m-win_amd64.whl", hash = "sha256:cc0ee35043162abbf717b7df924597ade8e5395e7b66d18270116f8745ceb795"},
{file = "tornado-6.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:7250a3fa399f08ec9cb3f7b1b987955d17e044f1ade821b32e5f435130250d7f"},
{file = "tornado-6.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:ed3ad863b1b40cd1d4bd21e7498329ccaece75db5a5bf58cd3c9f130843e7102"},
{file = "tornado-6.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:dcef026f608f678c118779cd6591c8af6e9b4155c44e0d1bc0c87c036fb8c8c4"},
{file = "tornado-6.1-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:70dec29e8ac485dbf57481baee40781c63e381bebea080991893cd297742b8fd"},
{file = "tornado-6.1-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:d3f7594930c423fd9f5d1a76bee85a2c36fd8b4b16921cae7e965f22575e9c01"},
{file = "tornado-6.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:3447475585bae2e77ecb832fc0300c3695516a47d46cefa0528181a34c5b9d3d"},
{file = "tornado-6.1-cp37-cp37m-win32.whl", hash = "sha256:e7229e60ac41a1202444497ddde70a48d33909e484f96eb0da9baf8dc68541df"},
{file = "tornado-6.1-cp37-cp37m-win_amd64.whl", hash = "sha256:cb5ec8eead331e3bb4ce8066cf06d2dfef1bfb1b2a73082dfe8a161301b76e37"},
{file = "tornado-6.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:20241b3cb4f425e971cb0a8e4ffc9b0a861530ae3c52f2b0434e6c1b57e9fd95"},
{file = "tornado-6.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:c77da1263aa361938476f04c4b6c8916001b90b2c2fdd92d8d535e1af48fba5a"},
{file = "tornado-6.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:fba85b6cd9c39be262fcd23865652920832b61583de2a2ca907dbd8e8a8c81e5"},
{file = "tornado-6.1-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:1e8225a1070cd8eec59a996c43229fe8f95689cb16e552d130b9793cb570a288"},
{file = "tornado-6.1-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:d14d30e7f46a0476efb0deb5b61343b1526f73ebb5ed84f23dc794bdb88f9d9f"},
{file = "tornado-6.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:8f959b26f2634a091bb42241c3ed8d3cedb506e7c27b8dd5c7b9f745318ddbb6"},
{file = "tornado-6.1-cp38-cp38-win32.whl", hash = "sha256:34ca2dac9e4d7afb0bed4677512e36a52f09caa6fded70b4e3e1c89dbd92c326"},
{file = "tornado-6.1-cp38-cp38-win_amd64.whl", hash = "sha256:6196a5c39286cc37c024cd78834fb9345e464525d8991c21e908cc046d1cc02c"},
{file = "tornado-6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f0ba29bafd8e7e22920567ce0d232c26d4d47c8b5cf4ed7b562b5db39fa199c5"},
{file = "tornado-6.1-cp39-cp39-manylinux1_i686.whl", hash = "sha256:33892118b165401f291070100d6d09359ca74addda679b60390b09f8ef325ffe"},
{file = "tornado-6.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:7da13da6f985aab7f6f28debab00c67ff9cbacd588e8477034c0652ac141feea"},
{file = "tornado-6.1-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:e0791ac58d91ac58f694d8d2957884df8e4e2f6687cdf367ef7eb7497f79eaa2"},
{file = "tornado-6.1-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:66324e4e1beede9ac79e60f88de548da58b1f8ab4b2f1354d8375774f997e6c0"},
{file = "tornado-6.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:a48900ecea1cbb71b8c71c620dee15b62f85f7c14189bdeee54966fbd9a0c5bd"},
{file = "tornado-6.1-cp39-cp39-win32.whl", hash = "sha256:d3d20ea5782ba63ed13bc2b8c291a053c8d807a8fa927d941bd718468f7b950c"},
{file = "tornado-6.1-cp39-cp39-win_amd64.whl", hash = "sha256:548430be2740e327b3fe0201abe471f314741efcb0067ec4f2d7dcfb4825f3e4"},
{file = "tornado-6.1.tar.gz", hash = "sha256:33c6e81d7bd55b468d2e793517c909b139960b6c790a60b7991b9b6b76fb9791"},
]
traitlets = [
{file = "traitlets-5.1.1-py3-none-any.whl", hash = "sha256:2d313cc50a42cd6c277e7d7dc8d4d7fedd06a2c215f78766ae7b1a66277e0033"},
{file = "traitlets-5.1.1.tar.gz", hash = "sha256:059f456c5a7c1c82b98c2e8c799f39c9b8128f6d0d46941ee118daace9eb70c7"},
] ]
typing-extensions = [ typing-extensions = [
{file = "typing_extensions-4.0.1-py3-none-any.whl", hash = "sha256:7f001e5ac290a0c0401508864c7ec868be4e701886d5b573a9528ed3973d9d3b"}, {file = "typing_extensions-4.0.1-py3-none-any.whl", hash = "sha256:7f001e5ac290a0c0401508864c7ec868be4e701886d5b573a9528ed3973d9d3b"},
@ -1409,10 +805,6 @@ urllib3 = [
{file = "urllib3-1.26.8-py2.py3-none-any.whl", hash = "sha256:000ca7f471a233c2251c6c7023ee85305721bfdf18621ebff4fd17a8653427ed"}, {file = "urllib3-1.26.8-py2.py3-none-any.whl", hash = "sha256:000ca7f471a233c2251c6c7023ee85305721bfdf18621ebff4fd17a8653427ed"},
{file = "urllib3-1.26.8.tar.gz", hash = "sha256:0e7c33d9a63e7ddfcb86780aac87befc2fbddf46c58dbb487e0855f7ceec283c"}, {file = "urllib3-1.26.8.tar.gz", hash = "sha256:0e7c33d9a63e7ddfcb86780aac87befc2fbddf46c58dbb487e0855f7ceec283c"},
] ]
wcwidth = [
{file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"},
{file = "wcwidth-0.2.5.tar.gz", hash = "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83"},
]
xlrd = [ xlrd = [
{file = "xlrd-2.0.1-py2.py3-none-any.whl", hash = "sha256:6a33ee89877bd9abc1158129f6e94be74e2679636b8a205b43b85206c3f0bbdd"}, {file = "xlrd-2.0.1-py2.py3-none-any.whl", hash = "sha256:6a33ee89877bd9abc1158129f6e94be74e2679636b8a205b43b85206c3f0bbdd"},
{file = "xlrd-2.0.1.tar.gz", hash = "sha256:f72f148f54442c6b056bf931dbc34f986fd0c3b0b6b5a58d013c9aef274d0c88"}, {file = "xlrd-2.0.1.tar.gz", hash = "sha256:f72f148f54442c6b056bf931dbc34f986fd0c3b0b6b5a58d013c9aef274d0c88"},

View File

@ -1,20 +1,19 @@
[tool.poetry] [tool.poetry]
name = "iseal-schema" name = "iseal-core"
version = "0.1.0" version = "0.1.0"
description = "Workflow to process ISEAL schema Excel into RDF and user-facing specification." description = "Workflow to process ISEAL schema Excel into RDF and user-facing specification."
authors = ["Alan Orth <aorth@mjanja.ch>", "Marie-Angelique Laporte <m.a.laporte@cgiar.org>"] authors = ["Alan Orth <aorth@mjanja.ch>", "Marie-Angelique Laporte <m.a.laporte@cgiar.org>"]
license = "GPL-3.0-only" license = "GPL-3.0-only"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.9" python = "^3.8"
pandas = "^1.3.4" pandas = "^1.4.0"
ipykernel = "^6.4.2" rdflib = "^6.1.1"
rdflib = "^6.0.2"
requests = "^2.27.1" requests = "^2.27.1"
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
isort = "^5.9.3" isort = "^5.10.1"
black = "^21.9b0" black = "^22.1.0"
csvkit = "^1.0.6" csvkit = "^1.0.6"
[build-system] [build-system]

View File

@ -1,139 +1,15 @@
appnope==0.1.2; platform_system == "Darwin" and python_version >= "3.8" and sys_platform == "darwin" \
--hash=sha256:93aa393e9d6c54c5cd570ccadd8edad61ea0c4b9ea7a01409020c9aa019eb442 \
--hash=sha256:dd83cd4b5b460958838f6eb3000c660b1f9caf2a5b1de4264e941512f603258a
asttokens==2.0.5; python_version >= "3.8" \
--hash=sha256:0844691e88552595a6f4a4281a9f7f79b8dd45ca4ccea82e5e05b4bbdb76705c \
--hash=sha256:9a54c114f02c7a9480d56550932546a3f1fe71d8a02f1bc7ccd0ee3ee35cf4d5
backcall==0.2.0; python_version >= "3.8" \
--hash=sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255 \
--hash=sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e
black==21.12b0; python_full_version >= "3.6.2" \
--hash=sha256:a615e69ae185e08fdd73e4715e260e2479c861b5740057fde6e8b4e3b7dd589f \
--hash=sha256:77b80f693a569e2e527958459634f18df9b0ba2625ba4e0c2d5da5be42e6f2b3
certifi==2021.10.8; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.6.0" \ certifi==2021.10.8; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.6.0" \
--hash=sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569 \ --hash=sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569 \
--hash=sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872 --hash=sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872
cffi==1.15.0; python_full_version >= "3.6.1" and python_version >= "3.7" and implementation_name == "pypy" \
--hash=sha256:c2502a1a03b6312837279c8c1bd3ebedf6c12c4228ddbad40912d671ccc8a962 \
--hash=sha256:23cfe892bd5dd8941608f93348c0737e369e51c100d03718f108bf1add7bd6d0 \
--hash=sha256:41d45de54cd277a7878919867c0f08b0cf817605e4eb94093e7516505d3c8d14 \
--hash=sha256:4a306fa632e8f0928956a41fa8e1d6243c71e7eb59ffbd165fc0b41e316b2474 \
--hash=sha256:e7022a66d9b55e93e1a845d8c9eba2a1bebd4966cd8bfc25d9cd07d515b33fa6 \
--hash=sha256:14cd121ea63ecdae71efa69c15c5543a4b5fbcd0bbe2aad864baca0063cecf27 \
--hash=sha256:d4d692a89c5cf08a8557fdeb329b82e7bf609aadfaed6c0d79f5a449a3c7c023 \
--hash=sha256:0104fb5ae2391d46a4cb082abdd5c69ea4eab79d8d44eaaf79f1b1fd806ee4c2 \
--hash=sha256:91ec59c33514b7c7559a6acda53bbfe1b283949c34fe7440bcf917f96ac0723e \
--hash=sha256:f5c7150ad32ba43a07c4479f40241756145a1f03b43480e058cfd862bf5041c7 \
--hash=sha256:00c878c90cb53ccfaae6b8bc18ad05d2036553e6d9d1d9dbcf323bbe83854ca3 \
--hash=sha256:abb9a20a72ac4e0fdb50dae135ba5e77880518e742077ced47eb1499e29a443c \
--hash=sha256:a5263e363c27b653a90078143adb3d076c1a748ec9ecc78ea2fb916f9b861962 \
--hash=sha256:f54a64f8b0c8ff0b64d18aa76675262e1700f3995182267998c31ae974fbc382 \
--hash=sha256:c21c9e3896c23007803a875460fb786118f0cdd4434359577ea25eb556e34c55 \
--hash=sha256:5e069f72d497312b24fcc02073d70cb989045d1c91cbd53979366077959933e0 \
--hash=sha256:64d4ec9f448dfe041705426000cc13e34e6e5bb13736e9fd62e34a0b0c41566e \
--hash=sha256:2756c88cbb94231c7a147402476be2c4df2f6078099a6f4a480d239a8817ae39 \
--hash=sha256:3b96a311ac60a3f6be21d2572e46ce67f09abcf4d09344c49274eb9e0bf345fc \
--hash=sha256:75e4024375654472cc27e91cbe9eaa08567f7fbdf822638be2814ce059f58032 \
--hash=sha256:59888172256cac5629e60e72e86598027aca6bf01fa2465bdb676d37636573e8 \
--hash=sha256:27c219baf94952ae9d50ec19651a687b826792055353d07648a5695413e0c605 \
--hash=sha256:4958391dbd6249d7ad855b9ca88fae690783a6be9e86df65865058ed81fc860e \
--hash=sha256:f6f824dc3bce0edab5f427efcfb1d63ee75b6fcb7282900ccaf925be84efb0fc \
--hash=sha256:06c48159c1abed75c2e721b1715c379fa3200c7784271b3c46df01383b593636 \
--hash=sha256:c2051981a968d7de9dd2d7b87bcb9c939c74a34626a6e2f8181455dd49ed69e4 \
--hash=sha256:fd8a250edc26254fe5b33be00402e6d287f562b6a5b2152dec302fa15bb3e997 \
--hash=sha256:91d77d2a782be4274da750752bb1650a97bfd8f291022b379bb8e01c66b4e96b \
--hash=sha256:45db3a33139e9c8f7c09234b5784a5e33d31fd6907800b316decad50af323ff2 \
--hash=sha256:263cc3d821c4ab2213cbe8cd8b355a7f72a8324577dc865ef98487c1aeee2bc7 \
--hash=sha256:17771976e82e9f94976180f76468546834d22a7cc404b17c22df2a2c81db0c66 \
--hash=sha256:3415c89f9204ee60cd09b235810be700e993e343a408693e80ce7f6a40108029 \
--hash=sha256:4238e6dab5d6a8ba812de994bbb0a79bddbdf80994e4ce802b6f6f3142fcc880 \
--hash=sha256:0808014eb713677ec1292301ea4c81ad277b6cdf2fdd90fd540af98c0b101d20 \
--hash=sha256:57e9ac9ccc3101fac9d6014fba037473e4358ef4e89f8e181f8951a2c0162024 \
--hash=sha256:8b6c2ea03845c9f501ed1313e78de148cd3f6cad741a75d43a29b43da27f2e1e \
--hash=sha256:10dffb601ccfb65262a27233ac273d552ddc4d8ae1bf93b21c94b8511bffe728 \
--hash=sha256:786902fb9ba7433aae840e0ed609f45c7bcd4e225ebb9c753aa39725bb3e6ad6 \
--hash=sha256:da5db4e883f1ce37f55c667e5c0de439df76ac4cb55964655906306918e7363c \
--hash=sha256:181dee03b1170ff1969489acf1c26533710231c58f95534e3edac87fff06c443 \
--hash=sha256:45e8636704eacc432a206ac7345a5d3d2c62d95a507ec70d62f23cd91770482a \
--hash=sha256:31fb708d9d7c3f49a60f04cf5b119aeefe5644daba1cd2a0fe389b674fd1de37 \
--hash=sha256:6dc2737a3674b3e344847c8686cf29e500584ccad76204efea14f451d4cc669a \
--hash=sha256:74fdfdbfdc48d3f47148976f49fab3251e550a8720bebc99bf1483f5bfb5db3e \
--hash=sha256:ffaa5c925128e29efbde7301d8ecaf35c8c60ffbcd6a1ffd3a552177c8e5e796 \
--hash=sha256:3f7d084648d77af029acb79a0ff49a0ad7e9d09057a9bf46596dac9514dc07df \
--hash=sha256:ef1f279350da2c586a69d32fc8733092fd32cc8ac95139a00377841f59a3f8d8 \
--hash=sha256:2a23af14f408d53d5e6cd4e3d9a24ff9e05906ad574822a10563efcef137979a \
--hash=sha256:3773c4d81e6e818df2efbc7dd77325ca0dcb688116050fb2b3011218eda36139 \
--hash=sha256:920f0d66a896c2d99f0adbb391f990a84091179542c205fa53ce5787aff87954
charset-normalizer==2.0.10; python_full_version >= "3.6.0" and python_version >= "3" \ charset-normalizer==2.0.10; python_full_version >= "3.6.0" and python_version >= "3" \
--hash=sha256:876d180e9d7432c5d1dfd4c5d26b72f099d503e8fcc0feb7532c9289be60fcbd \ --hash=sha256:876d180e9d7432c5d1dfd4c5d26b72f099d503e8fcc0feb7532c9289be60fcbd \
--hash=sha256:cb957888737fc0bbcd78e3df769addb41fd1ff8cf950dc9e7ad7793f1bf44455 --hash=sha256:cb957888737fc0bbcd78e3df769addb41fd1ff8cf950dc9e7ad7793f1bf44455
click==8.0.3; python_version >= "3.8" and python_full_version >= "3.6.2" \
--hash=sha256:353f466495adaeb40b6b5f592f9f91cb22372351c84caeb068132442a4518ef3 \
--hash=sha256:410e932b050f5eed773c4cda94de75971c89cdb3155a72a0831139a79e5ecb5b
colorama==0.4.4; sys_platform == "win32" and python_version >= "3.8" and python_full_version >= "3.6.2" and platform_system == "Windows" \
--hash=sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2 \
--hash=sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b
debugpy==1.5.1; python_version >= "3.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.7" \
--hash=sha256:70b422c63a833630c33e3f9cdbd9b6971f8c5afd452697e464339a21bbe862ba \
--hash=sha256:3a457ad9c0059a21a6c7d563c1f18e924f5cf90278c722bd50ede6f56b77c7fe \
--hash=sha256:5d76a4fd028d8009c3faf1185b4b78ceb2273dd2499447664b03939e0368bb90 \
--hash=sha256:16db27b4b91991442f91d73604d32080b30de655aca9ba821b1972ea8171021b \
--hash=sha256:2b073ad5e8d8c488fbb6a116986858bab0c9c4558f28deb8832c7a5a27405bd6 \
--hash=sha256:318f81f37341e4e054b4267d39896b73cddb3612ca13b39d7eea45af65165e1d \
--hash=sha256:b5b3157372e0e0a1297a8b6b5280bcf1d35a40f436c7973771c972726d1e32d5 \
--hash=sha256:1ec3a086e14bba6c472632025b8fe5bdfbaef2afa1ebd5c6615ce6ed8d89bc67 \
--hash=sha256:26fbe53cca45a608679094791ce587b6e2798acd1d4777a8b303b07622e85182 \
--hash=sha256:d876db8c312eeb02d85611e0f696abe66a2c1515e6405943609e725d5ff36f2a \
--hash=sha256:4404a62fb5332ea5c8c9132290eef50b3a0ba38cecacad5529e969a783bcbdd7 \
--hash=sha256:f3a3dca9104aa14fd4210edcce6d9ce2b65bd9618c0b222135a40b9d6e2a9eeb \
--hash=sha256:b2df2c373e85871086bd55271c929670cd4e1dba63e94a08d442db830646203b \
--hash=sha256:82f5f9ce93af6861a0713f804e62ab390bb12a17f113153e47fea8bbb1dfbe36 \
--hash=sha256:17a25ce9d7714f92fc97ef00cc06269d7c2b163094990ada30156ed31d9a5030 \
--hash=sha256:01e98c594b3e66d529e40edf314f849cd1a21f7a013298df58cd8e263bf8e184 \
--hash=sha256:f73988422b17f071ad3c4383551ace1ba5ed810cbab5f9c362783d22d40a08dc \
--hash=sha256:23df67fc56d59e386c342428a7953c2c06cc226d8525b11319153e96afb65b0c \
--hash=sha256:a2aa64f6d2ca7ded8a7e8a4e7cae3bc71866b09876b7b05cecad231779cb9156 \
--hash=sha256:194f95dd3e84568b5489aab5689a3a2c044e8fdc06f1890b8b4f70b6b89f2778 \
--hash=sha256:d2b09e91fbd1efa4f4fda121d49af89501beda50c18ed7499712c71a4bf3452e
decorator==5.1.1; python_version >= "3.8" \
--hash=sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186 \
--hash=sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330
entrypoints==0.3; python_full_version >= "3.6.1" and python_version >= "3.7" \
--hash=sha256:589f874b313739ad35be6e0cd7efde2a4e9b6fea91edcc34e58ecbb8dbe56d19 \
--hash=sha256:c70dd71abe5a8c85e55e12c19bd91ccfeec11a6e99044204511f9ed547d48451
executing==0.8.2; python_version >= "3.8" \
--hash=sha256:32fc6077b103bd19e6494a72682d66d5763cf20a106d5aa7c5ccbea4e47b0df7 \
--hash=sha256:c23bf42e9a7b9b212f185b1b2c3c91feb895963378887bb10e64a2e612ec0023
idna==3.3; python_version >= "3.5" and python_full_version < "3.0.0" or python_full_version >= "3.6.0" and python_version >= "3.5" \ idna==3.3; python_version >= "3.5" and python_full_version < "3.0.0" or python_full_version >= "3.6.0" and python_version >= "3.5" \
--hash=sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff \ --hash=sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff \
--hash=sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d --hash=sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d
ipykernel==6.7.0; python_version >= "3.7" \
--hash=sha256:6203ccd5510ff148e9433fd4a2707c5ce8d688f026427f46e13d7ebf9b3e9787 \
--hash=sha256:d82b904fdc2fd8c7b1fbe0fa481c68a11b4cd4c8ef07e6517da1f10cc3114d24
ipython==8.0.1; python_version >= "3.8" \
--hash=sha256:c503a0dd6ccac9c8c260b211f2dd4479c042b49636b097cc9a0d55fe62dff64c \
--hash=sha256:ab564d4521ea8ceaac26c3a2c6e5ddbca15c8848fd5a5cc325f960da88d42974
isodate==0.6.1; python_version >= "3.7" \ isodate==0.6.1; python_version >= "3.7" \
--hash=sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96 \ --hash=sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96 \
--hash=sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9 --hash=sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9
jedi==0.18.1; python_version >= "3.8" \
--hash=sha256:637c9635fcf47945ceb91cd7f320234a7be540ded6f3e99a50cb6febdfd1ba8d \
--hash=sha256:74137626a64a99c8eb6ae5832d99b3bdd7d29a3850fe2aa80a4126b2a7d949ab
jupyter-client==7.1.2; python_full_version >= "3.6.1" and python_version >= "3.7" \
--hash=sha256:d56f1c57bef42ff31e61b1185d3348a5b2bcde7c9a05523ae4dbe5ee0871797c \
--hash=sha256:4ea61033726c8e579edb55626d8ee2e6bf0a83158ddf3751b8dd46b2c5cd1e96
jupyter-core==4.9.1; python_full_version >= "3.6.1" and python_version >= "3.7" \
--hash=sha256:1c091f3bbefd6f2a8782f2c1db662ca8478ac240e962ae2c66f0b87c818154ea \
--hash=sha256:dce8a7499da5a53ae3afd5a9f4b02e5df1d57250cf48f3ad79da23b4778cd6fa
matplotlib-inline==0.1.3; python_version >= "3.8" \
--hash=sha256:a04bfba22e0d1395479f866853ec1ee28eea1485c1d69a6faf00dc3e24ff34ee \
--hash=sha256:aed605ba3b72462d64d475a21a9296f400a19c4f74a31b59103d2a99ffd5aa5c
mypy-extensions==0.4.3; python_full_version >= "3.6.2" and python_version >= "3.8" \
--hash=sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d \
--hash=sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8
nest-asyncio==1.5.4; python_full_version >= "3.6.1" and python_version >= "3.7" \
--hash=sha256:3fdd0d6061a2bb16f21fe8a9c6a7945be83521d81a0d15cff52e9edee50101d6 \
--hash=sha256:f969f6013a16fadb4adcf09d11a68a4f617c6049d7af7ac2c676110169a63abd
numpy==1.22.1 \ numpy==1.22.1 \
--hash=sha256:3d62d6b0870b53799204515145935608cdeb4cebb95a26800b6750e48884cc5b \ --hash=sha256:3d62d6b0870b53799204515145935608cdeb4cebb95a26800b6750e48884cc5b \
--hash=sha256:831f2df87bd3afdfc77829bc94bd997a7c212663889d56518359c827d7113b1f \ --hash=sha256:831f2df87bd3afdfc77829bc94bd997a7c212663889d56518359c827d7113b1f \
@ -179,109 +55,15 @@ pandas==1.4.0; python_version >= "3.8" \
--hash=sha256:55ec0e192eefa26d823fc25a1f213d6c304a3592915f368e360652994cdb8d9a \ --hash=sha256:55ec0e192eefa26d823fc25a1f213d6c304a3592915f368e360652994cdb8d9a \
--hash=sha256:23c04dab11f3c6359cfa7afa83d3d054a8f8c283d773451184d98119ef54da97 \ --hash=sha256:23c04dab11f3c6359cfa7afa83d3d054a8f8c283d773451184d98119ef54da97 \
--hash=sha256:cdd76254c7f0a1583bd4e4781fb450d0ebf392e10d3f12e92c95575942e37df5 --hash=sha256:cdd76254c7f0a1583bd4e4781fb450d0ebf392e10d3f12e92c95575942e37df5
parso==0.8.3; python_version >= "3.8" \
--hash=sha256:c001d4636cd3aecdaf33cbb40aebb59b094be2a74c556778ef5576c175e19e75 \
--hash=sha256:8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0
pathspec==0.9.0; python_full_version >= "3.6.2" and python_version >= "3.8" \
--hash=sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a \
--hash=sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1
pexpect==4.8.0; sys_platform != "win32" and python_version >= "3.8" \
--hash=sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937 \
--hash=sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c
pickleshare==0.7.5; python_version >= "3.8" \
--hash=sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56 \
--hash=sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca
platformdirs==2.4.1; python_version >= "3.8" and python_full_version >= "3.6.2" \
--hash=sha256:1d7385c7db91728b83efd0ca99a5afb296cab9d0ed8313a45ed8ba17967ecfca \
--hash=sha256:440633ddfebcc36264232365d7840a970e75e1018d15b4327d11f91909045fda
prompt-toolkit==3.0.24; python_full_version >= "3.6.2" and python_version >= "3.8" \
--hash=sha256:e56f2ff799bacecd3e88165b1e2f5ebf9bcd59e80e06d395fa0cc4b8bd7bb506 \
--hash=sha256:1bb05628c7d87b645974a1bad3f17612be0c29fa39af9f7688030163f680bad6
ptyprocess==0.7.0; sys_platform != "win32" and python_version >= "3.8" \
--hash=sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35 \
--hash=sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220
pure-eval==0.2.2; python_version >= "3.8" \
--hash=sha256:01eaab343580944bc56080ebe0a674b39ec44a945e6d09ba7db3cb8cec289350 \
--hash=sha256:2b45320af6dfaa1750f543d714b6d1c520a1688dec6fd24d339063ce0aaa9ac3
py==1.11.0; python_full_version >= "3.6.1" and python_version >= "3.7" and implementation_name == "pypy" \
--hash=sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378 \
--hash=sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719
pycparser==2.21; python_full_version >= "3.6.1" and python_version >= "3.7" and implementation_name == "pypy" \
--hash=sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9 \
--hash=sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206
pygments==2.11.2; python_version >= "3.8" \
--hash=sha256:44238f1b60a76d78fc8ca0528ee429702aae011c265fe6a8dd8b63049ae41c65 \
--hash=sha256:4e426f72023d88d03b2fa258de560726ce890ff3b630f88c21cbb8b2503b8c6a
pyparsing==3.0.7; python_version >= "3.7" \ pyparsing==3.0.7; python_version >= "3.7" \
--hash=sha256:a6c06a88f252e6c322f65faf8f418b16213b51bdfaece0524c1c1bc30c63c484 \ --hash=sha256:a6c06a88f252e6c322f65faf8f418b16213b51bdfaece0524c1c1bc30c63c484 \
--hash=sha256:18ee9022775d270c55187733956460083db60b37d0d0fb357445f3094eed3eea --hash=sha256:18ee9022775d270c55187733956460083db60b37d0d0fb357445f3094eed3eea
python-dateutil==2.8.2; python_full_version >= "3.6.1" and python_version >= "3.8" \ python-dateutil==2.8.2; python_version >= "3.8" and python_full_version < "3.0.0" or python_full_version >= "3.3.0" and python_version >= "3.8" \
--hash=sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86 \ --hash=sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86 \
--hash=sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 --hash=sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9
pytz==2021.3; python_version >= "3.8" \ pytz==2021.3; python_version >= "3.8" \
--hash=sha256:3672058bc3453457b622aab7a1c3bfd5ab0bdae451512f6cf25f64ed37f5b87c \ --hash=sha256:3672058bc3453457b622aab7a1c3bfd5ab0bdae451512f6cf25f64ed37f5b87c \
--hash=sha256:acad2d8b20a1af07d4e4c9d2e9285c5ed9104354062f275f3fcd88dcef4f1326 --hash=sha256:acad2d8b20a1af07d4e4c9d2e9285c5ed9104354062f275f3fcd88dcef4f1326
pywin32==303; sys_platform == "win32" and platform_python_implementation != "PyPy" and python_full_version >= "3.6.1" and python_version >= "3.7" \
--hash=sha256:6fed4af057039f309263fd3285d7b8042d41507343cd5fa781d98fcc5b90e8bb \
--hash=sha256:51cb52c5ec6709f96c3f26e7795b0bf169ee0d8395b2c1d7eb2c029a5008ed51 \
--hash=sha256:d9b5d87ca944eb3aa4cd45516203ead4b37ab06b8b777c54aedc35975dec0dee \
--hash=sha256:fcf44032f5b14fcda86028cdf49b6ebdaea091230eb0a757282aa656e4732439 \
--hash=sha256:aad484d52ec58008ca36bd4ad14a71d7dd0a99db1a4ca71072213f63bf49c7d9 \
--hash=sha256:2a09632916b6bb231ba49983fe989f2f625cea237219530e81a69239cd0c4559 \
--hash=sha256:b1675d82bcf6dbc96363fca747bac8bff6f6e4a447a4287ac652aa4b9adc796e \
--hash=sha256:c268040769b48a13367221fced6d4232ed52f044ffafeda247bd9d2c6bdc29ca \
--hash=sha256:5f9ec054f5a46a0f4dfd72af2ce1372f3d5a6e4052af20b858aa7df2df7d355b \
--hash=sha256:793bf74fce164bcffd9d57bb13c2c15d56e43c9542a7b9687b4fccf8f8a41aba \
--hash=sha256:7d3271c98434617a11921c5ccf74615794d97b079e22ed7773790822735cc352 \
--hash=sha256:79cbb862c11b9af19bcb682891c1b91942ec2ff7de8151e2aea2e175899cda34
pyzmq==22.3.0; python_full_version >= "3.6.1" and python_version >= "3.7" \
--hash=sha256:6b217b8f9dfb6628f74b94bdaf9f7408708cb02167d644edca33f38746ca12dd \
--hash=sha256:2841997a0d85b998cbafecb4183caf51fd19c4357075dfd33eb7efea57e4c149 \
--hash=sha256:f89468059ebc519a7acde1ee50b779019535db8dcf9b8c162ef669257fef7a93 \
--hash=sha256:ea12133df25e3a6918718fbb9a510c6ee5d3fdd5a346320421aac3882f4feeea \
--hash=sha256:76c532fd68b93998aab92356be280deec5de8f8fe59cd28763d2cc8a58747b7f \
--hash=sha256:f907c7359ce8bf7f7e63c82f75ad0223384105f5126f313400b7e8004d9b33c3 \
--hash=sha256:902319cfe23366595d3fa769b5b751e6ee6750a0a64c5d9f757d624b2ac3519e \
--hash=sha256:67db33bea0a29d03e6eeec55a8190e033318cee3cbc732ba8fd939617cbf762d \
--hash=sha256:7661fc1d5cb73481cf710a1418a4e1e301ed7d5d924f91c67ba84b2a1b89defd \
--hash=sha256:79244b9e97948eaf38695f4b8e6fc63b14b78cc37f403c6642ba555517ac1268 \
--hash=sha256:ab888624ed68930442a3f3b0b921ad7439c51ba122dbc8c386e6487a658e4a4e \
--hash=sha256:18cd854b423fce44951c3a4d3e686bac8f1243d954f579e120a1714096637cc0 \
--hash=sha256:de8df0684398bd74ad160afdc2a118ca28384ac6f5e234eb0508858d8d2d9364 \
--hash=sha256:62bcade20813796c426409a3e7423862d50ff0639f5a2a95be4b85b09a618666 \
--hash=sha256:ea5a79e808baef98c48c884effce05c31a0698c1057de8fc1c688891043c1ce1 \
--hash=sha256:3c1895c95be92600233e476fe283f042e71cf8f0b938aabf21b7aafa62a8dac9 \
--hash=sha256:851977788b9caa8ed011f5f643d3ee8653af02c5fc723fa350db5125abf2be7b \
--hash=sha256:b4ebed0977f92320f6686c96e9e8dd29eed199eb8d066936bac991afc37cbb70 \
--hash=sha256:42abddebe2c6a35180ca549fadc7228d23c1e1f76167c5ebc8a936b5804ea2df \
--hash=sha256:c1e41b32d6f7f9c26bc731a8b529ff592f31fc8b6ef2be9fa74abd05c8a342d7 \
--hash=sha256:be4e0f229cf3a71f9ecd633566bd6f80d9fa6afaaff5489492be63fe459ef98c \
--hash=sha256:08c4e315a76ef26eb833511ebf3fa87d182152adf43dedee8d79f998a2162a0b \
--hash=sha256:badb868fff14cfd0e200eaa845887b1011146a7d26d579aaa7f966c203736b92 \
--hash=sha256:7c58f598d9fcc52772b89a92d72bf8829c12d09746a6d2c724c5b30076c1f11d \
--hash=sha256:2b97502c16a5ec611cd52410bdfaab264997c627a46b0f98d3f666227fd1ea2d \
--hash=sha256:d728b08448e5ac3e4d886b165385a262883c34b84a7fe1166277fe675e1c197a \
--hash=sha256:480b9931bfb08bf8b094edd4836271d4d6b44150da051547d8c7113bf947a8b0 \
--hash=sha256:7dc09198e4073e6015d9a8ea093fc348d4e59de49382476940c3dd9ae156fba8 \
--hash=sha256:0ca6cd58f62a2751728016d40082008d3b3412a7f28ddfb4a2f0d3c130f69e74 \
--hash=sha256:468bd59a588e276961a918a3060948ae68f6ff5a7fa10bb2f9160c18fe341067 \
--hash=sha256:c88fa7410e9fc471e0858638f403739ee869924dd8e4ae26748496466e27ac59 \
--hash=sha256:c0f84360dcca3481e8674393bdf931f9f10470988f87311b19d23cda869bb6b7 \
--hash=sha256:f762442bab706fd874064ca218b33a1d8e40d4938e96c24dafd9b12e28017f45 \
--hash=sha256:954e73c9cd4d6ae319f1c936ad159072b6d356a92dcbbabfd6e6204b9a79d356 \
--hash=sha256:f43b4a2e6218371dd4f41e547bd919ceeb6ebf4abf31a7a0669cd11cd91ea973 \
--hash=sha256:acebba1a23fb9d72b42471c3771b6f2f18dcd46df77482612054bd45c07dfa36 \
--hash=sha256:cf98fd7a6c8aaa08dbc699ffae33fd71175696d78028281bc7b832b26f00ca57 \
--hash=sha256:d072f7dfbdb184f0786d63bda26e8a0882041b1e393fbe98940395f7fab4c5e2 \
--hash=sha256:53f4fd13976789ffafedd4d46f954c7bb01146121812b72b4ddca286034df966 \
--hash=sha256:d1b5d457acbadcf8b27561deeaa386b0217f47626b29672fa7bd31deb6e91e1b \
--hash=sha256:e6a02cf7271ee94674a44f4e62aa061d2d049001c844657740e156596298b70b \
--hash=sha256:d3dcb5548ead4f1123851a5ced467791f6986d68c656bc63bfff1bf9e36671e2 \
--hash=sha256:3a4c9886d61d386b2b493377d980f502186cd71d501fffdba52bd2a0880cef4f \
--hash=sha256:80e043a89c6cadefd3a0712f8a1322038e819ebe9dbac7eca3bce1721bcb63bf \
--hash=sha256:1621e7a2af72cced1f6ec8ca8ca91d0f76ac236ab2e8828ac8fe909512d566cb \
--hash=sha256:d6157793719de168b199194f6b6173f0ccd3bf3499e6870fac17086072e39115 \
--hash=sha256:8eddc033e716f8c91c6a2112f0a8ebc5e00532b4a6ae1eb0ccc48e027f9c671c
rdflib==6.1.1; python_version >= "3.7" \ rdflib==6.1.1; python_version >= "3.7" \
--hash=sha256:fc81cef513cd552d471f2926141396b633207109d0154c8e77926222c70367fe \ --hash=sha256:fc81cef513cd552d471f2926141396b633207109d0154c8e77926222c70367fe \
--hash=sha256:8dbfa0af2990b98471dacbc936d6494c997ede92fd8ed693fb84ee700ef6f754 --hash=sha256:8dbfa0af2990b98471dacbc936d6494c997ede92fd8ed693fb84ee700ef6f754
@ -291,63 +73,6 @@ requests==2.27.1; (python_version >= "2.7" and python_full_version < "3.0.0") or
six==1.16.0; python_version >= "3.8" and python_full_version < "3.0.0" or python_full_version >= "3.3.0" and python_version >= "3.8" \ six==1.16.0; python_version >= "3.8" and python_full_version < "3.0.0" or python_full_version >= "3.3.0" and python_version >= "3.8" \
--hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 \ --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 \
--hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926
stack-data==0.1.4; python_version >= "3.8" \
--hash=sha256:02cc0683cbc445ae4ca8c4e3a0e58cb1df59f252efb0aa016b34804a707cf9bc \
--hash=sha256:7769ed2482ce0030e00175dd1bf4ef1e873603b6ab61cd3da443b410e64e9477
tomli==1.2.3; python_version >= "3.8" and python_full_version >= "3.6.2" \
--hash=sha256:e3069e4be3ead9668e21cb9b074cd948f7b3113fd9c8bba083f48247aab8b11c \
--hash=sha256:05b6166bff487dc068d322585c7ea4ef78deed501cc124060e0f238e89a9231f
tornado==6.1; python_full_version >= "3.6.1" and python_version >= "3.7" \
--hash=sha256:d371e811d6b156d82aa5f9a4e08b58debf97c302a35714f6f45e35139c332e32 \
--hash=sha256:0d321a39c36e5f2c4ff12b4ed58d41390460f798422c4504e09eb5678e09998c \
--hash=sha256:9de9e5188a782be6b1ce866e8a51bc76a0fbaa0e16613823fc38e4fc2556ad05 \
--hash=sha256:61b32d06ae8a036a6607805e6720ef00a3c98207038444ba7fd3d169cd998910 \
--hash=sha256:3e63498f680547ed24d2c71e6497f24bca791aca2fe116dbc2bd0ac7f191691b \
--hash=sha256:6c77c9937962577a6a76917845d06af6ab9197702a42e1346d8ae2e76b5e3675 \
--hash=sha256:6286efab1ed6e74b7028327365cf7346b1d777d63ab30e21a0f4d5b275fc17d5 \
--hash=sha256:fa2ba70284fa42c2a5ecb35e322e68823288a4251f9ba9cc77be04ae15eada68 \
--hash=sha256:0a00ff4561e2929a2c37ce706cb8233b7907e0cdc22eab98888aca5dd3775feb \
--hash=sha256:748290bf9112b581c525e6e6d3820621ff020ed95af6f17fedef416b27ed564c \
--hash=sha256:e385b637ac3acaae8022e7e47dfa7b83d3620e432e3ecb9a3f7f58f150e50921 \
--hash=sha256:25ad220258349a12ae87ede08a7b04aca51237721f63b1808d39bdb4b2164558 \
--hash=sha256:65d98939f1a2e74b58839f8c4dab3b6b3c1ce84972ae712be02845e65391ac7c \
--hash=sha256:e519d64089b0876c7b467274468709dadf11e41d65f63bba207e04217f47c085 \
--hash=sha256:b87936fd2c317b6ee08a5741ea06b9d11a6074ef4cc42e031bc6403f82a32575 \
--hash=sha256:cc0ee35043162abbf717b7df924597ade8e5395e7b66d18270116f8745ceb795 \
--hash=sha256:7250a3fa399f08ec9cb3f7b1b987955d17e044f1ade821b32e5f435130250d7f \
--hash=sha256:ed3ad863b1b40cd1d4bd21e7498329ccaece75db5a5bf58cd3c9f130843e7102 \
--hash=sha256:dcef026f608f678c118779cd6591c8af6e9b4155c44e0d1bc0c87c036fb8c8c4 \
--hash=sha256:70dec29e8ac485dbf57481baee40781c63e381bebea080991893cd297742b8fd \
--hash=sha256:d3f7594930c423fd9f5d1a76bee85a2c36fd8b4b16921cae7e965f22575e9c01 \
--hash=sha256:3447475585bae2e77ecb832fc0300c3695516a47d46cefa0528181a34c5b9d3d \
--hash=sha256:e7229e60ac41a1202444497ddde70a48d33909e484f96eb0da9baf8dc68541df \
--hash=sha256:cb5ec8eead331e3bb4ce8066cf06d2dfef1bfb1b2a73082dfe8a161301b76e37 \
--hash=sha256:20241b3cb4f425e971cb0a8e4ffc9b0a861530ae3c52f2b0434e6c1b57e9fd95 \
--hash=sha256:c77da1263aa361938476f04c4b6c8916001b90b2c2fdd92d8d535e1af48fba5a \
--hash=sha256:fba85b6cd9c39be262fcd23865652920832b61583de2a2ca907dbd8e8a8c81e5 \
--hash=sha256:1e8225a1070cd8eec59a996c43229fe8f95689cb16e552d130b9793cb570a288 \
--hash=sha256:d14d30e7f46a0476efb0deb5b61343b1526f73ebb5ed84f23dc794bdb88f9d9f \
--hash=sha256:8f959b26f2634a091bb42241c3ed8d3cedb506e7c27b8dd5c7b9f745318ddbb6 \
--hash=sha256:34ca2dac9e4d7afb0bed4677512e36a52f09caa6fded70b4e3e1c89dbd92c326 \
--hash=sha256:6196a5c39286cc37c024cd78834fb9345e464525d8991c21e908cc046d1cc02c \
--hash=sha256:f0ba29bafd8e7e22920567ce0d232c26d4d47c8b5cf4ed7b562b5db39fa199c5 \
--hash=sha256:33892118b165401f291070100d6d09359ca74addda679b60390b09f8ef325ffe \
--hash=sha256:7da13da6f985aab7f6f28debab00c67ff9cbacd588e8477034c0652ac141feea \
--hash=sha256:e0791ac58d91ac58f694d8d2957884df8e4e2f6687cdf367ef7eb7497f79eaa2 \
--hash=sha256:66324e4e1beede9ac79e60f88de548da58b1f8ab4b2f1354d8375774f997e6c0 \
--hash=sha256:a48900ecea1cbb71b8c71c620dee15b62f85f7c14189bdeee54966fbd9a0c5bd \
--hash=sha256:d3d20ea5782ba63ed13bc2b8c291a053c8d807a8fa927d941bd718468f7b950c \
--hash=sha256:548430be2740e327b3fe0201abe471f314741efcb0067ec4f2d7dcfb4825f3e4 \
--hash=sha256:33c6e81d7bd55b468d2e793517c909b139960b6c790a60b7991b9b6b76fb9791
traitlets==5.1.1; python_full_version >= "3.6.1" and python_version >= "3.8" \
--hash=sha256:2d313cc50a42cd6c277e7d7dc8d4d7fedd06a2c215f78766ae7b1a66277e0033 \
--hash=sha256:059f456c5a7c1c82b98c2e8c799f39c9b8128f6d0d46941ee118daace9eb70c7
typing-extensions==4.0.1 \
--hash=sha256:7f001e5ac290a0c0401508864c7ec868be4e701886d5b573a9528ed3973d9d3b \
--hash=sha256:4ca091dea149f945ec56afb48dae714f21e8692ef22a395223bcd328961b6a0e
urllib3==1.26.8; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.6.0" and python_version < "4" \ urllib3==1.26.8; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.6.0" and python_version < "4" \
--hash=sha256:000ca7f471a233c2251c6c7023ee85305721bfdf18621ebff4fd17a8653427ed \ --hash=sha256:000ca7f471a233c2251c6c7023ee85305721bfdf18621ebff4fd17a8653427ed \
--hash=sha256:0e7c33d9a63e7ddfcb86780aac87befc2fbddf46c58dbb487e0855f7ceec283c --hash=sha256:0e7c33d9a63e7ddfcb86780aac87befc2fbddf46c58dbb487e0855f7ceec283c
wcwidth==0.2.5; python_full_version >= "3.6.2" and python_version >= "3.8" \
--hash=sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784 \
--hash=sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -2752,7 +2752,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

View File

@ -7773,7 +7773,7 @@
<footer class="footer mt-auto"> <footer class="footer mt-auto">
<div class="container"> <div class="container">
<p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Saturday, Jan 29, 2022</span> <a href="#">Back to top</a></span></p> <p class="mb-0 py-1">ISEAL Core Metadata Set. This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<span class="float-end"><span class="text-white-50">Last modified Sunday, Jan 30, 2022</span> <a href="#">Back to top</a></span></p>
</div> </div>
</footer> </footer>

Some files were not shown because too many files have changed in this diff Show More