xxtea


Namexxtea JSON
Version 3.3.0 PyPI version JSON
download
home_pagehttps://github.com/ifduyue/xxtea
Summaryxxtea is a simple block cipher
upload_time2024-08-09 15:43:00
maintainerNone
docs_urlNone
authorYue Du
requires_python>=3.6
licenseBSD
keywords xxtea
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            xxtea |github-actions-badge| |pypi-badge| |supported-pythons-badge| |license-badge|
==============================================================================================

.. |github-actions-badge| image:: https://github.com/ifduyue/xxtea/actions/workflows/test.yml/badge.svg
    :target: https://github.com/ifduyue/xxtea/actions/workflows/test.yml
    :alt: Github Actions Status

.. |pypi-badge| image:: https://img.shields.io/pypi/v/xxtea.svg
   :target: https://pypi.python.org/pypi/xxtea
   :alt: Latest Version

.. |supported-pythons-badge| image:: https://img.shields.io/pypi/pyversions/xxtea.svg
    :target: https://pypi.python.org/pypi/xxtea
    :alt: Supported Python versions

.. |license-badge| image:: https://img.shields.io/pypi/l/xxtea.svg
    :target: https://pypi.python.org/pypi/xxtea
    :alt: License

.. _XXTEA: http://en.wikipedia.org/wiki/XXTEA
.. _longs2bytes: https://github.com/ifduyue/xxtea/blob/master/xxtea.c#L130
.. _bytes2longs: https://github.com/ifduyue/xxtea/blob/master/xxtea.c#L102
.. _PKCS#7: http://en.wikipedia.org/wiki/Padding_%28cryptography%29#PKCS7

XXTEA_ implemented as a Python extension module, licensed under 2-clause BSD.

The XXTEA_ algorithm takes a 128-bit key and operates on an array of 32-bit
integers (at least 2 integers), but it doesn't define the conversions between
bytes and array. Due to this reason, many XXTEA implementations out there are
not compatible with each other.

In this implementation,  the conversions between bytes and array are
taken care of by longs2bytes_ and bytes2longs_. `PKCS#7`_ padding is also used
to make sure that the input bytes are padded to multiple of 4-byte (the size
of a 32-bit integer) and at least 8-byte long (the size of two 32-bit integer,
which is required by the XXTEA_ algorithm). As a result of these measures,
you can encrypt not only texts, but also any binary bytes of any length.


Installation
-------------

::

    $ pip install xxtea -U


Usage
-----------

This module provides four functions: ``encrypt()``, ``decrypt()``,
``encrypt_hex()``, and ``decrypt_hex()``.

.. code-block:: Python

    >>> import os
    >>> import xxtea
    >>> import binascii
    >>>
    >>> key = os.urandom(16)  # Key must be a 16-byte string.
    >>> s = b"xxtea is good"
    >>>
    >>> enc = xxtea.encrypt(s, key)
    >>> dec = xxtea.decrypt(enc, key)
    >>> s == dec
    True
    >>>
    >>> hexenc = xxtea.encrypt_hex(s, key)
    >>> hexenc
    b'7ad85672d770fb5cf636c49d57e732ae'
    >>> s == xxtea.decrypt_hex(hexenc, key)
    True
    >>>
    >>> binascii.hexlify(enc) == hexenc
    True


``encrypt_hex()`` and ``decrypt_hex()`` operate on ciphertext in a hexadecimal
representation. They are exactly equivalent to:

.. code-block:: python

    >>> hexenc = binascii.hexlify(xxtea.encrypt(s, key))
    >>> s == xxtea.decrypt(binascii.unhexlify(hexenc), key)
    True


Padding
---------

Padding is enabled by default, in this case you can encode any bytes of any length.

.. code-block:: python

    >>> xxtea.encrypt_hex('', key)
    b'd63256eb59134f1f'
    >>> xxtea.decrypt_hex(_, key)
    b''
    >>> xxtea.encrypt_hex(' ', key)
    b'97009bd24074a7a5'
    >>> xxtea.decrypt_hex(_, key)
    b' '

You can disable padding by setting padding parameter to ``False``.
In this case data will not be padded, so data length must be a multiple of 4 bytes and must not be less than 8 bytes.
Otherwise ``ValueError`` will be raised:

.. code-block:: python

    >>> xxtea.encrypt_hex('', key, padding=False)
    ValueError: Data length must be a multiple of 4 bytes and must not be less than 8 bytes
    >>> xxtea.encrypt_hex('xxtea is good', key, padding=False)
    ValueError: Data length must be a multiple of 4 bytes and must not be less than 8 bytes
    >>> xxtea.encrypt_hex('12345678', key, padding=False)
    b'64f4e969ba90d386'
    >>> xxtea.decrypt_hex(_, key, padding=False)
    b'12345678'


Rounds
----------

By default xxtea manipulates the input data for ``6 + 52 / n`` rounds,
where n denotes how many 32-bit integers the input data can fit in.
We can change this by setting ``rounds`` parameter.

Do note that the more rounds it is, the more time will be consumed.

.. code-block:: python

    >>> import xxtea
    >>> import string
    >>> data = string.digits
    >>> key = string.ascii_letters[:16]
    >>> xxtea.encrypt_hex(data, key)
    b'5b80b08a5d1923e4cd992dd5'
    >>> 6 + 52 // ((len(data) + (4 - 1)) // 4)  # 4 means 4 bytes, size of a 32-bit integer
    23
    >>> xxtea.encrypt_hex(data, key, rounds=23)
    b'5b80b08a5d1923e4cd992dd5'
    >>> xxtea.encrypt_hex(data, key, rounds=1024)
    b'1577bbf28c43ced93bd50720'


Catching Exceptions
---------------------

When calling ``decrypt()`` and ``decrypt_hex()``, it is possible that a ``ValueError`` or a ``TypeError``
is raised:

.. code-block:: python

    >>> from __future__ import print_function
    >>> import xxtea
    >>>
    >>> def try_catch(func, *args, **kwargs):
    ...     try:
    ...         func(*args, **kwargs)
    ...     except Exception as e:
    ...         print(e.__class__.__name__, ':', e)
    ...
    ...
    ...
    >>> try_catch(xxtea.decrypt, '', key='')
    ValueError : Need a 16-byte key.
    >>> try_catch(xxtea.decrypt, '', key=' '*16)
    ValueError : Invalid data, data length is not a multiple of 4, or less than 8.
    >>> try_catch(xxtea.decrypt, ' '*8, key=' '*16)
    ValueError : Invalid data, illegal PKCS#7 padding. Could be using a wrong key.
    >>> try_catch(xxtea.decrypt_hex, ' '*8, key=' '*16)
    TypeError : Non-hexadecimal digit found
    >>> try_catch(xxtea.decrypt_hex, 'abc', key=' '*16)
    TypeError : Odd-length string
    >>> try_catch(xxtea.decrypt_hex, 'abcd', key=' '*16)
    ValueError : Invalid data, data length is not a multiple of 4, or less than 8.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ifduyue/xxtea",
    "name": "xxtea",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "xxtea",
    "author": "Yue Du",
    "author_email": "ifduyue@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/09/c7/30860d14b1c5f7885e49c5be8652599efe2f12f59b45b4302a103aab27b2/xxtea-3.3.0.tar.gz",
    "platform": null,
    "description": "xxtea |github-actions-badge| |pypi-badge| |supported-pythons-badge| |license-badge|\n==============================================================================================\n\n.. |github-actions-badge| image:: https://github.com/ifduyue/xxtea/actions/workflows/test.yml/badge.svg\n    :target: https://github.com/ifduyue/xxtea/actions/workflows/test.yml\n    :alt: Github Actions Status\n\n.. |pypi-badge| image:: https://img.shields.io/pypi/v/xxtea.svg\n   :target: https://pypi.python.org/pypi/xxtea\n   :alt: Latest Version\n\n.. |supported-pythons-badge| image:: https://img.shields.io/pypi/pyversions/xxtea.svg\n    :target: https://pypi.python.org/pypi/xxtea\n    :alt: Supported Python versions\n\n.. |license-badge| image:: https://img.shields.io/pypi/l/xxtea.svg\n    :target: https://pypi.python.org/pypi/xxtea\n    :alt: License\n\n.. _XXTEA: http://en.wikipedia.org/wiki/XXTEA\n.. _longs2bytes: https://github.com/ifduyue/xxtea/blob/master/xxtea.c#L130\n.. _bytes2longs: https://github.com/ifduyue/xxtea/blob/master/xxtea.c#L102\n.. _PKCS#7: http://en.wikipedia.org/wiki/Padding_%28cryptography%29#PKCS7\n\nXXTEA_ implemented as a Python extension module, licensed under 2-clause BSD.\n\nThe XXTEA_ algorithm takes a 128-bit key and operates on an array of 32-bit\nintegers (at least 2 integers), but it doesn't define the conversions between\nbytes and array. Due to this reason, many XXTEA implementations out there are\nnot compatible with each other.\n\nIn this implementation,  the conversions between bytes and array are\ntaken care of by longs2bytes_ and bytes2longs_. `PKCS#7`_ padding is also used\nto make sure that the input bytes are padded to multiple of 4-byte (the size\nof a 32-bit integer) and at least 8-byte long (the size of two 32-bit integer,\nwhich is required by the XXTEA_ algorithm). As a result of these measures,\nyou can encrypt not only texts, but also any binary bytes of any length.\n\n\nInstallation\n-------------\n\n::\n\n    $ pip install xxtea -U\n\n\nUsage\n-----------\n\nThis module provides four functions: ``encrypt()``, ``decrypt()``,\n``encrypt_hex()``, and ``decrypt_hex()``.\n\n.. code-block:: Python\n\n    >>> import os\n    >>> import xxtea\n    >>> import binascii\n    >>>\n    >>> key = os.urandom(16)  # Key must be a 16-byte string.\n    >>> s = b\"xxtea is good\"\n    >>>\n    >>> enc = xxtea.encrypt(s, key)\n    >>> dec = xxtea.decrypt(enc, key)\n    >>> s == dec\n    True\n    >>>\n    >>> hexenc = xxtea.encrypt_hex(s, key)\n    >>> hexenc\n    b'7ad85672d770fb5cf636c49d57e732ae'\n    >>> s == xxtea.decrypt_hex(hexenc, key)\n    True\n    >>>\n    >>> binascii.hexlify(enc) == hexenc\n    True\n\n\n``encrypt_hex()`` and ``decrypt_hex()`` operate on ciphertext in a hexadecimal\nrepresentation. They are exactly equivalent to:\n\n.. code-block:: python\n\n    >>> hexenc = binascii.hexlify(xxtea.encrypt(s, key))\n    >>> s == xxtea.decrypt(binascii.unhexlify(hexenc), key)\n    True\n\n\nPadding\n---------\n\nPadding is enabled by default, in this case you can encode any bytes of any length.\n\n.. code-block:: python\n\n    >>> xxtea.encrypt_hex('', key)\n    b'd63256eb59134f1f'\n    >>> xxtea.decrypt_hex(_, key)\n    b''\n    >>> xxtea.encrypt_hex(' ', key)\n    b'97009bd24074a7a5'\n    >>> xxtea.decrypt_hex(_, key)\n    b' '\n\nYou can disable padding by setting padding parameter to ``False``.\nIn this case data will not be padded, so data length must be a multiple of 4 bytes and must not be less than 8 bytes.\nOtherwise ``ValueError`` will be raised:\n\n.. code-block:: python\n\n    >>> xxtea.encrypt_hex('', key, padding=False)\n    ValueError: Data length must be a multiple of 4 bytes and must not be less than 8 bytes\n    >>> xxtea.encrypt_hex('xxtea is good', key, padding=False)\n    ValueError: Data length must be a multiple of 4 bytes and must not be less than 8 bytes\n    >>> xxtea.encrypt_hex('12345678', key, padding=False)\n    b'64f4e969ba90d386'\n    >>> xxtea.decrypt_hex(_, key, padding=False)\n    b'12345678'\n\n\nRounds\n----------\n\nBy default xxtea manipulates the input data for ``6 + 52 / n`` rounds,\nwhere n denotes how many 32-bit integers the input data can fit in.\nWe can change this by setting ``rounds`` parameter.\n\nDo note that the more rounds it is, the more time will be consumed.\n\n.. code-block:: python\n\n    >>> import xxtea\n    >>> import string\n    >>> data = string.digits\n    >>> key = string.ascii_letters[:16]\n    >>> xxtea.encrypt_hex(data, key)\n    b'5b80b08a5d1923e4cd992dd5'\n    >>> 6 + 52 // ((len(data) + (4 - 1)) // 4)  # 4 means 4 bytes, size of a 32-bit integer\n    23\n    >>> xxtea.encrypt_hex(data, key, rounds=23)\n    b'5b80b08a5d1923e4cd992dd5'\n    >>> xxtea.encrypt_hex(data, key, rounds=1024)\n    b'1577bbf28c43ced93bd50720'\n\n\nCatching Exceptions\n---------------------\n\nWhen calling ``decrypt()`` and ``decrypt_hex()``, it is possible that a ``ValueError`` or a ``TypeError``\nis raised:\n\n.. code-block:: python\n\n    >>> from __future__ import print_function\n    >>> import xxtea\n    >>>\n    >>> def try_catch(func, *args, **kwargs):\n    ...     try:\n    ...         func(*args, **kwargs)\n    ...     except Exception as e:\n    ...         print(e.__class__.__name__, ':', e)\n    ...\n    ...\n    ...\n    >>> try_catch(xxtea.decrypt, '', key='')\n    ValueError : Need a 16-byte key.\n    >>> try_catch(xxtea.decrypt, '', key=' '*16)\n    ValueError : Invalid data, data length is not a multiple of 4, or less than 8.\n    >>> try_catch(xxtea.decrypt, ' '*8, key=' '*16)\n    ValueError : Invalid data, illegal PKCS#7 padding. Could be using a wrong key.\n    >>> try_catch(xxtea.decrypt_hex, ' '*8, key=' '*16)\n    TypeError : Non-hexadecimal digit found\n    >>> try_catch(xxtea.decrypt_hex, 'abc', key=' '*16)\n    TypeError : Odd-length string\n    >>> try_catch(xxtea.decrypt_hex, 'abcd', key=' '*16)\n    ValueError : Invalid data, data length is not a multiple of 4, or less than 8.\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "xxtea is a simple block cipher",
    "version": "3.3.0",
    "project_urls": {
        "Homepage": "https://github.com/ifduyue/xxtea"
    },
    "split_keywords": [
        "xxtea"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac8dd3a2f4eb82d37807ba4af410601fecaf9a10db76f0ba78f64668e473d70b",
                "md5": "cb86595331869ea8fbd1ebd46b5c403a",
                "sha256": "1a891f77e4e3d28433bec9dd4073ff139ede5be997496f756538958743913137"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb86595331869ea8fbd1ebd46b5c403a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 8566,
            "upload_time": "2024-08-09T15:40:09",
            "upload_time_iso_8601": "2024-08-09T15:40:09.549024Z",
            "url": "https://files.pythonhosted.org/packages/ac/8d/d3a2f4eb82d37807ba4af410601fecaf9a10db76f0ba78f64668e473d70b/xxtea-3.3.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3ce9b81cf11bc44c07245c38cb2f2cc0c15661eaab68f9d93580dedb7c5c554",
                "md5": "4bb65bc77970968dcaa24fd71f431523",
                "sha256": "028d938877a5a1a45c811263afde1349043e9c73b7b73b3fe921ca699176f9fd"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4bb65bc77970968dcaa24fd71f431523",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 9261,
            "upload_time": "2024-08-09T15:40:11",
            "upload_time_iso_8601": "2024-08-09T15:40:11.206673Z",
            "url": "https://files.pythonhosted.org/packages/d3/ce/9b81cf11bc44c07245c38cb2f2cc0c15661eaab68f9d93580dedb7c5c554/xxtea-3.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a74da8b483c903931245c156cfd7775b01d91a38c3ee8e8100ec037ae46a3ad3",
                "md5": "3df75f5aa683e839c65006fc0313640e",
                "sha256": "76a1bae9d573d45df076b638508b3dfdf940015066c80a258fbef3a8a9750ed9"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3df75f5aa683e839c65006fc0313640e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 22995,
            "upload_time": "2024-08-09T15:40:12",
            "upload_time_iso_8601": "2024-08-09T15:40:12.310774Z",
            "url": "https://files.pythonhosted.org/packages/a7/4d/a8b483c903931245c156cfd7775b01d91a38c3ee8e8100ec037ae46a3ad3/xxtea-3.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6e3987c932d5a1c9e3df71ac1dd85df70664a30736eef201b9956ee79e5bff6",
                "md5": "2ca2417165092ece9766f1e0781179d5",
                "sha256": "1fdd115a0760865549b860020cf3dc17979ff58ecf2013383370cec974df9734"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2ca2417165092ece9766f1e0781179d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 24653,
            "upload_time": "2024-08-09T15:40:13",
            "upload_time_iso_8601": "2024-08-09T15:40:13.521732Z",
            "url": "https://files.pythonhosted.org/packages/a6/e3/987c932d5a1c9e3df71ac1dd85df70664a30736eef201b9956ee79e5bff6/xxtea-3.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ff19f25937c37053e92cb9de931e3f46636b0623abf8141e48e2972a4574219",
                "md5": "9148d7b73b95a525f929e7a5281da063",
                "sha256": "e7c44e42ded83deb3ea3057f1c53da66cabe1ccf6b1400efbe70119b539da5d7"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9148d7b73b95a525f929e7a5281da063",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 22123,
            "upload_time": "2024-08-09T15:40:14",
            "upload_time_iso_8601": "2024-08-09T15:40:14.550324Z",
            "url": "https://files.pythonhosted.org/packages/4f/f1/9f25937c37053e92cb9de931e3f46636b0623abf8141e48e2972a4574219/xxtea-3.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a451b969e735e4b3d3cf150a39f9befe307846b4866aea5f65bcf404706a3fdc",
                "md5": "2ea2167bdf588f765660b96811a2ff65",
                "sha256": "5e630b0f1a53b6dd893addc55c127a367380eb97f44d241e83807a49fe1e4bdb"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2ea2167bdf588f765660b96811a2ff65",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 22342,
            "upload_time": "2024-08-09T15:40:15",
            "upload_time_iso_8601": "2024-08-09T15:40:15.880608Z",
            "url": "https://files.pythonhosted.org/packages/a4/51/b969e735e4b3d3cf150a39f9befe307846b4866aea5f65bcf404706a3fdc/xxtea-3.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1bf3cef389d3fd862467335af0f9ce1bf2080672fee7192716510e4172d26aa",
                "md5": "5bf3a257cb5c96c1a1b2bcf61ef5189f",
                "sha256": "1547de8fb1a5cb28781481300ea5bfc76feb841281732efaf71152807468bb80"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5bf3a257cb5c96c1a1b2bcf61ef5189f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 22691,
            "upload_time": "2024-08-09T15:40:16",
            "upload_time_iso_8601": "2024-08-09T15:40:16.901593Z",
            "url": "https://files.pythonhosted.org/packages/d1/bf/3cef389d3fd862467335af0f9ce1bf2080672fee7192716510e4172d26aa/xxtea-3.3.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d5e477fdb154346a63f78ed2c25d19669db03edaf5ff2291dd41d35605875a2",
                "md5": "1ffda1fd02da5b5ed73313d13d405d3f",
                "sha256": "e8945bfaea8ab7fc1642032bd0286059fede6c6f72b8ecd6f40ec95afeb908d5"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1ffda1fd02da5b5ed73313d13d405d3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 22784,
            "upload_time": "2024-08-09T15:40:18",
            "upload_time_iso_8601": "2024-08-09T15:40:18.042010Z",
            "url": "https://files.pythonhosted.org/packages/9d/5e/477fdb154346a63f78ed2c25d19669db03edaf5ff2291dd41d35605875a2/xxtea-3.3.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f08ab093349bcec83450cf49215c94cca51617d5057820e516d948434703773a",
                "md5": "23437443239db72545db001826e1b966",
                "sha256": "52ab77f365da7b269861af5a8b4b9dfb210d0e5329be31c0f06187a8e6f171a1"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "23437443239db72545db001826e1b966",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 22803,
            "upload_time": "2024-08-09T15:40:19",
            "upload_time_iso_8601": "2024-08-09T15:40:19.273024Z",
            "url": "https://files.pythonhosted.org/packages/f0/8a/b093349bcec83450cf49215c94cca51617d5057820e516d948434703773a/xxtea-3.3.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fae25dde880ebba95f3801ff7a207e655a3744998026590653b350cd8b4d4a12",
                "md5": "95278e7aa850393ef079e2ee4c44ad61",
                "sha256": "463c2c6eccf3c68557bbd17cf14199da59914bf37af56ccf3fef3c55ee10ae82"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "95278e7aa850393ef079e2ee4c44ad61",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 24178,
            "upload_time": "2024-08-09T15:40:20",
            "upload_time_iso_8601": "2024-08-09T15:40:20.233211Z",
            "url": "https://files.pythonhosted.org/packages/fa/e2/5dde880ebba95f3801ff7a207e655a3744998026590653b350cd8b4d4a12/xxtea-3.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a98363579b61f23df76d32d9171e4126c729e7fffb6f479c79b0db8deca440a",
                "md5": "e375c9f5402cd1a739970f8862201eb6",
                "sha256": "62e9b6eb6d45538077eb6c022a56ada71991c93002399b716d461cb0200ed44b"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp310-cp310-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "e375c9f5402cd1a739970f8862201eb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 22813,
            "upload_time": "2024-08-09T15:40:21",
            "upload_time_iso_8601": "2024-08-09T15:40:21.937121Z",
            "url": "https://files.pythonhosted.org/packages/9a/98/363579b61f23df76d32d9171e4126c729e7fffb6f479c79b0db8deca440a/xxtea-3.3.0-cp310-cp310-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ab21304b28f1a0394493ca8383f4c148b19721dd7596e99b0a244dc444e4ca0",
                "md5": "00056347cbe4654635a0271d3065e1d3",
                "sha256": "6e8259a3a7cf5dd05722f1dafe6bce1d8c5e9fef67414606c7b81aea44f9dadc"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "00056347cbe4654635a0271d3065e1d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 22775,
            "upload_time": "2024-08-09T15:40:23",
            "upload_time_iso_8601": "2024-08-09T15:40:23.747668Z",
            "url": "https://files.pythonhosted.org/packages/4a/b2/1304b28f1a0394493ca8383f4c148b19721dd7596e99b0a244dc444e4ca0/xxtea-3.3.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c77e7e9791cc6d25f0fd0a61a71d82f417bb44b0c961ec617999edb8363cde9",
                "md5": "ae78d48b240af2788a835e3bd1361789",
                "sha256": "c4678331fb1075e5d5ac42b128b4b87825a99089c1c9832c85457b92f1d7d122"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "ae78d48b240af2788a835e3bd1361789",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 10666,
            "upload_time": "2024-08-09T15:40:25",
            "upload_time_iso_8601": "2024-08-09T15:40:25.012567Z",
            "url": "https://files.pythonhosted.org/packages/3c/77/e7e9791cc6d25f0fd0a61a71d82f417bb44b0c961ec617999edb8363cde9/xxtea-3.3.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7f9215696a2f9a0961c61ebd550d3bee8038342fcea2e4f50b5928591bf44c5",
                "md5": "8703800129709449306cbc15bfc8934d",
                "sha256": "340e70d154185b50453e565fc84fe934da814ce9d69e94d722fca060e290a66a"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8703800129709449306cbc15bfc8934d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 11633,
            "upload_time": "2024-08-09T15:40:26",
            "upload_time_iso_8601": "2024-08-09T15:40:26.752154Z",
            "url": "https://files.pythonhosted.org/packages/b7/f9/215696a2f9a0961c61ebd550d3bee8038342fcea2e4f50b5928591bf44c5/xxtea-3.3.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "191d3fec75abe99e1fddddfcbc756ba77897bbcbdb118a19597cdd91d77b1792",
                "md5": "e606f0fb4b4b01320638abde8b4b4279",
                "sha256": "39f40a942388ca22f970695fa768d4e6d83b2804f466f4c4c0e409eb083ecf0c"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "e606f0fb4b4b01320638abde8b4b4279",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 10164,
            "upload_time": "2024-08-09T15:40:28",
            "upload_time_iso_8601": "2024-08-09T15:40:28.136231Z",
            "url": "https://files.pythonhosted.org/packages/19/1d/3fec75abe99e1fddddfcbc756ba77897bbcbdb118a19597cdd91d77b1792/xxtea-3.3.0-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7707befab1874387c459d992208561b21874e101e6c004f54ddd532be9a4c9ea",
                "md5": "c03a95dac188df5c0b62414c334c4adb",
                "sha256": "ecc6ae709f104cc3e27b529a2b2fb5818310c56fb29fc960e6372fc7e62e44aa"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c03a95dac188df5c0b62414c334c4adb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 8567,
            "upload_time": "2024-08-09T15:40:29",
            "upload_time_iso_8601": "2024-08-09T15:40:29.766730Z",
            "url": "https://files.pythonhosted.org/packages/77/07/befab1874387c459d992208561b21874e101e6c004f54ddd532be9a4c9ea/xxtea-3.3.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ccf9e4bac4b8a1098ab6962804e40a0cd5d3679436c78247f863e0f065a548d",
                "md5": "9024d6216a0e1c3ff2ade32bd2f79cc4",
                "sha256": "cd8acf1f33e573dd56f7eabae1103dcb694fa82f89d98edacc50ea9d3b47b746"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9024d6216a0e1c3ff2ade32bd2f79cc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 9262,
            "upload_time": "2024-08-09T15:40:31",
            "upload_time_iso_8601": "2024-08-09T15:40:31.202868Z",
            "url": "https://files.pythonhosted.org/packages/2c/cf/9e4bac4b8a1098ab6962804e40a0cd5d3679436c78247f863e0f065a548d/xxtea-3.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d221c8a752c4845bcd00f267c469ef718715d5f2817a6e2c57c77cbd4d56776",
                "md5": "75ba44c59d6c205814eeb9b3a3c5dea3",
                "sha256": "9586eaffe2d0069ff9d194e408c99a4c2661e0dfed4f8a140ea7c5cd6507297a"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "75ba44c59d6c205814eeb9b3a3c5dea3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 23802,
            "upload_time": "2024-08-09T15:40:32",
            "upload_time_iso_8601": "2024-08-09T15:40:32.267035Z",
            "url": "https://files.pythonhosted.org/packages/1d/22/1c8a752c4845bcd00f267c469ef718715d5f2817a6e2c57c77cbd4d56776/xxtea-3.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f3a121a322e1e94f2e49f841186e84a9c303f2582c6bdc250c22ff467f98a93",
                "md5": "d49a3906d4762bbbf60ab4daeb03b45f",
                "sha256": "45ed49a98631555931dca3d031a99d9c8e68c8610a8fb4484ccd23b7fadb694f"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d49a3906d4762bbbf60ab4daeb03b45f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 25450,
            "upload_time": "2024-08-09T15:40:33",
            "upload_time_iso_8601": "2024-08-09T15:40:33.471473Z",
            "url": "https://files.pythonhosted.org/packages/6f/3a/121a322e1e94f2e49f841186e84a9c303f2582c6bdc250c22ff467f98a93/xxtea-3.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59099db302ab11f367ed5c1a9e2d0a251fbeef83e307248b9b47c660b5c26fa6",
                "md5": "cf053a95de868418b2cfa3f25294984f",
                "sha256": "219a2dbc3329212c9c9f0c098d7a4c69fd9301e35ee29305a9d5bd4abbd4a2a1"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "cf053a95de868418b2cfa3f25294984f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 22890,
            "upload_time": "2024-08-09T15:40:34",
            "upload_time_iso_8601": "2024-08-09T15:40:34.971923Z",
            "url": "https://files.pythonhosted.org/packages/59/09/9db302ab11f367ed5c1a9e2d0a251fbeef83e307248b9b47c660b5c26fa6/xxtea-3.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5c19f54d9de6a9ec26b704a6f7dc78f23c9da257fca8c20167aa4380ee4ad6f",
                "md5": "f18f2e0b5a75cfff83cc79302db7c929",
                "sha256": "1014691dd73803f8f20061549ffc16200778b0c2c511577c6d08ba355c7cc44b"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f18f2e0b5a75cfff83cc79302db7c929",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 23164,
            "upload_time": "2024-08-09T15:40:36",
            "upload_time_iso_8601": "2024-08-09T15:40:36.042180Z",
            "url": "https://files.pythonhosted.org/packages/c5/c1/9f54d9de6a9ec26b704a6f7dc78f23c9da257fca8c20167aa4380ee4ad6f/xxtea-3.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39f1842f0fbffa921d608b52013e36086faa5f8a857b7204d5a309e27eb84092",
                "md5": "bfe01097efb8e57e7a638fa9e54e4e85",
                "sha256": "4bad9785d50ee7d34262ab67dd7c38654ab88cbaa4a2038ccb270daa28eeb169"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bfe01097efb8e57e7a638fa9e54e4e85",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 23567,
            "upload_time": "2024-08-09T15:40:37",
            "upload_time_iso_8601": "2024-08-09T15:40:37.029256Z",
            "url": "https://files.pythonhosted.org/packages/39/f1/842f0fbffa921d608b52013e36086faa5f8a857b7204d5a309e27eb84092/xxtea-3.3.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e1474f9004c8e99a7fd8e09ffc497818c6604a7d0f3620f84d6ca24e9913833",
                "md5": "a5ed9ad148c6ec53a1eaea9cd9c48dae",
                "sha256": "3fbcc0377e728a06c5a9817db5467431a2f77f8ec2cac1a2bac596bc46977d45"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a5ed9ad148c6ec53a1eaea9cd9c48dae",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 23612,
            "upload_time": "2024-08-09T15:40:38",
            "upload_time_iso_8601": "2024-08-09T15:40:38.302221Z",
            "url": "https://files.pythonhosted.org/packages/3e/14/74f9004c8e99a7fd8e09ffc497818c6604a7d0f3620f84d6ca24e9913833/xxtea-3.3.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca74c633c0a857eb2f09d7d1017ade1de838f47767e4b33af0caca6c8bab593b",
                "md5": "2cfde159c9623089ef4c47e5711ee248",
                "sha256": "ba66f63e2edee2357cf0a5025816f7eadf0ea3c507f631fd9e2e7cc29da12e0a"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2cfde159c9623089ef4c47e5711ee248",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 23652,
            "upload_time": "2024-08-09T15:40:39",
            "upload_time_iso_8601": "2024-08-09T15:40:39.306027Z",
            "url": "https://files.pythonhosted.org/packages/ca/74/c633c0a857eb2f09d7d1017ade1de838f47767e4b33af0caca6c8bab593b/xxtea-3.3.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f45f966cfdbf6743e98f097ea88226d59d2c22049d300ae5a92e2ea927956c0",
                "md5": "e223146dc55f309ec187fc9f47795884",
                "sha256": "cd93b3a0553e6147a77171a339048a9e6bd573fc046ca2579274edb2febe3717"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e223146dc55f309ec187fc9f47795884",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 25033,
            "upload_time": "2024-08-09T15:40:40",
            "upload_time_iso_8601": "2024-08-09T15:40:40.288908Z",
            "url": "https://files.pythonhosted.org/packages/6f/45/f966cfdbf6743e98f097ea88226d59d2c22049d300ae5a92e2ea927956c0/xxtea-3.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f7cbcd64cbc958c344c2cd596392232749f123c34e2fa6b7f67d895ebcfca92",
                "md5": "a19adf472e88094f041e630e31c71533",
                "sha256": "a653911d4036bda9cb6572352962576e02b20b6f20812f721884107fb9bbf556"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp311-cp311-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "a19adf472e88094f041e630e31c71533",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 23661,
            "upload_time": "2024-08-09T15:40:41",
            "upload_time_iso_8601": "2024-08-09T15:40:41.317237Z",
            "url": "https://files.pythonhosted.org/packages/5f/7c/bcd64cbc958c344c2cd596392232749f123c34e2fa6b7f67d895ebcfca92/xxtea-3.3.0-cp311-cp311-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3e56c0cd4fdcb3dc2b603de2d8b091c00c768cc565aeeeb127169b44fcffb13",
                "md5": "b836d7142d3a4698e0070ca9d0fc1dc0",
                "sha256": "75074af012059d6bfe7bcfb87144f3a50c735ebdb8d47bd64cc1262eae7f9f91"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b836d7142d3a4698e0070ca9d0fc1dc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 23658,
            "upload_time": "2024-08-09T15:40:42",
            "upload_time_iso_8601": "2024-08-09T15:40:42.655573Z",
            "url": "https://files.pythonhosted.org/packages/e3/e5/6c0cd4fdcb3dc2b603de2d8b091c00c768cc565aeeeb127169b44fcffb13/xxtea-3.3.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c7034a96c650e5651cb2c66196b43283dc116eb3f57e644ea3199b974cac375",
                "md5": "07e74806282805a912bd44e15bd0fa04",
                "sha256": "dac63c2bcde80688d52a3de4a87f87cd0492afec795743284f38ca94ebb71443"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "07e74806282805a912bd44e15bd0fa04",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 10673,
            "upload_time": "2024-08-09T15:40:44",
            "upload_time_iso_8601": "2024-08-09T15:40:44.202153Z",
            "url": "https://files.pythonhosted.org/packages/7c/70/34a96c650e5651cb2c66196b43283dc116eb3f57e644ea3199b974cac375/xxtea-3.3.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b00103edc692b30ae17688423d6e3c4228585e85c2d115a6afabda79628adcc",
                "md5": "e0df940f062cd3f5d11de61f13853da4",
                "sha256": "3d87317d12136d7f995d426340b54290e2e3d365140be7b997fe2f6ae47f2a10"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e0df940f062cd3f5d11de61f13853da4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 11634,
            "upload_time": "2024-08-09T15:40:45",
            "upload_time_iso_8601": "2024-08-09T15:40:45.129906Z",
            "url": "https://files.pythonhosted.org/packages/8b/00/103edc692b30ae17688423d6e3c4228585e85c2d115a6afabda79628adcc/xxtea-3.3.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a101aeecd4ebc77a6f0739384ba95480732b3b9e720e7ca0b20843bf7d71f6db",
                "md5": "c57fa57bcf860f39381d74a75bf808d9",
                "sha256": "0080d0036b3392de734c05d58ed3ad9ba8b3e8b9389ee8c149a6fd10065dd756"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "c57fa57bcf860f39381d74a75bf808d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 10167,
            "upload_time": "2024-08-09T15:40:47",
            "upload_time_iso_8601": "2024-08-09T15:40:47.116764Z",
            "url": "https://files.pythonhosted.org/packages/a1/01/aeecd4ebc77a6f0739384ba95480732b3b9e720e7ca0b20843bf7d71f6db/xxtea-3.3.0-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a0bc31d76925fd3d52e1cb7672e6df59a987f07158b1180b90a277a6ecba593",
                "md5": "4a1187da9ee54c0f51522f2130990c51",
                "sha256": "7773b99e2131bd853d9e08da6a6fb62bcdef6474b475ff7a8a65e076489b7a4f"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a1187da9ee54c0f51522f2130990c51",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 8606,
            "upload_time": "2024-08-09T15:40:48",
            "upload_time_iso_8601": "2024-08-09T15:40:48.639478Z",
            "url": "https://files.pythonhosted.org/packages/0a/0b/c31d76925fd3d52e1cb7672e6df59a987f07158b1180b90a277a6ecba593/xxtea-3.3.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42e1acf58713f086246e6e32ab63d984c80ea169c3201889a930dc7192b4ae65",
                "md5": "c9bb2455e39fb122c42b856fb550d3ea",
                "sha256": "8b8e95c5c688440b04cdeb5a542a52805a9f57854537b34753a719c63a2b452c"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c9bb2455e39fb122c42b856fb550d3ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 9299,
            "upload_time": "2024-08-09T15:40:50",
            "upload_time_iso_8601": "2024-08-09T15:40:50.545965Z",
            "url": "https://files.pythonhosted.org/packages/42/e1/acf58713f086246e6e32ab63d984c80ea169c3201889a930dc7192b4ae65/xxtea-3.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0294ef181f2906e88533279ffc619ad60ab9f69716e441eb3b87c2ea523ea38e",
                "md5": "28a5d494861ede328246882dcfd96a25",
                "sha256": "c4666147d17e3cd97b784c540e074b289e08ee0ef09dca20371cbfc2c903563a"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "28a5d494861ede328246882dcfd96a25",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 23685,
            "upload_time": "2024-08-09T15:40:51",
            "upload_time_iso_8601": "2024-08-09T15:40:51.941486Z",
            "url": "https://files.pythonhosted.org/packages/02/94/ef181f2906e88533279ffc619ad60ab9f69716e441eb3b87c2ea523ea38e/xxtea-3.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e08ae72648f69aa95648374db066a165f3953ed1b3fe061a75183b450744205",
                "md5": "c919fc31c210ae6a10dc125512d74812",
                "sha256": "8a1dd4618a73bff6e37fc5d469047d3a06a23486bc6b6d878e7781c2abc736ce"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c919fc31c210ae6a10dc125512d74812",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 25365,
            "upload_time": "2024-08-09T15:40:53",
            "upload_time_iso_8601": "2024-08-09T15:40:53.181486Z",
            "url": "https://files.pythonhosted.org/packages/7e/08/ae72648f69aa95648374db066a165f3953ed1b3fe061a75183b450744205/xxtea-3.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a078ce48a996a41cecf42bc771ef03f40e794fa418db17d78adcc6a9440e626d",
                "md5": "2e7cf94b8fde6105d66a6df19f679965",
                "sha256": "a3255c4b4d14cf206bdb46791bfc984d048f836ba07d02b129b0c525e279ba5f"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2e7cf94b8fde6105d66a6df19f679965",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 22778,
            "upload_time": "2024-08-09T15:40:54",
            "upload_time_iso_8601": "2024-08-09T15:40:54.215151Z",
            "url": "https://files.pythonhosted.org/packages/a0/78/ce48a996a41cecf42bc771ef03f40e794fa418db17d78adcc6a9440e626d/xxtea-3.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dbed06a3cd2f363b6c77a57429d3d79ca2ba8a52f3cf40518f0919ac789c96c3",
                "md5": "ffa6187b43bd29bd11b2003ce585aa04",
                "sha256": "0643e23de72252d67ec175b02bfb223efefd7129810682fc4bf7104d8e59dcf8"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ffa6187b43bd29bd11b2003ce585aa04",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 22946,
            "upload_time": "2024-08-09T15:40:55",
            "upload_time_iso_8601": "2024-08-09T15:40:55.207603Z",
            "url": "https://files.pythonhosted.org/packages/db/ed/06a3cd2f363b6c77a57429d3d79ca2ba8a52f3cf40518f0919ac789c96c3/xxtea-3.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a3bb46754036dfe5f287d308df3f46c47187a3121afd625ced294445deffd46",
                "md5": "37771329378a95796c8308328fa3ab54",
                "sha256": "1b57a5f56b785e5af7d57b7011742af03d98e8a7ff1b0a693d2b3e91ee99857e"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37771329378a95796c8308328fa3ab54",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 23496,
            "upload_time": "2024-08-09T15:40:56",
            "upload_time_iso_8601": "2024-08-09T15:40:56.198978Z",
            "url": "https://files.pythonhosted.org/packages/6a/3b/b46754036dfe5f287d308df3f46c47187a3121afd625ced294445deffd46/xxtea-3.3.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c17f62981a9e307d8db73c066c1b491a0a57627a111a7a0649d0ff3a256abfe9",
                "md5": "63a07150f79d5b87eb1ad10ed20f92f4",
                "sha256": "017829c236953bbeac4e77f2ab85c406edc66f56b6c3d017cea3666bc9b8cd58"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "63a07150f79d5b87eb1ad10ed20f92f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 23511,
            "upload_time": "2024-08-09T15:40:57",
            "upload_time_iso_8601": "2024-08-09T15:40:57.319444Z",
            "url": "https://files.pythonhosted.org/packages/c1/7f/62981a9e307d8db73c066c1b491a0a57627a111a7a0649d0ff3a256abfe9/xxtea-3.3.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "367fa0de6ad7361deff52bdac035e8fe143261007ca36afe38dd1ec28b11a68e",
                "md5": "83be1e918b599df770b26adf1e67fe22",
                "sha256": "7a288561867238431a48651eb4212fd0c0185158664f8f83b402260ac93c5c88"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "83be1e918b599df770b26adf1e67fe22",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 23458,
            "upload_time": "2024-08-09T15:40:58",
            "upload_time_iso_8601": "2024-08-09T15:40:58.321090Z",
            "url": "https://files.pythonhosted.org/packages/36/7f/a0de6ad7361deff52bdac035e8fe143261007ca36afe38dd1ec28b11a68e/xxtea-3.3.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "702fa5fa7cc83511f01f4fb5bbd37a1c2b467be46cf1c58ddb14a1166e21edde",
                "md5": "935d84838d013d0ee4942548c4962769",
                "sha256": "58b1fa6a9deac366da43642913bb23a7cc25d5635e8183fa3fda74339578b2f5"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "935d84838d013d0ee4942548c4962769",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 24934,
            "upload_time": "2024-08-09T15:40:59",
            "upload_time_iso_8601": "2024-08-09T15:40:59.746565Z",
            "url": "https://files.pythonhosted.org/packages/70/2f/a5fa7cc83511f01f4fb5bbd37a1c2b467be46cf1c58ddb14a1166e21edde/xxtea-3.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "909e04b69dd54db6cbcfea5d5e6dacae246f55229883bc421710aae828dfa77b",
                "md5": "3feb6d166fb663c5055e136fc394b542",
                "sha256": "d146a28c7526439bc1f92aee99825ab63fb9f7f3124f9e3e53efaf0654e39275"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp312-cp312-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "3feb6d166fb663c5055e136fc394b542",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 23549,
            "upload_time": "2024-08-09T15:41:01",
            "upload_time_iso_8601": "2024-08-09T15:41:01.124310Z",
            "url": "https://files.pythonhosted.org/packages/90/9e/04b69dd54db6cbcfea5d5e6dacae246f55229883bc421710aae828dfa77b/xxtea-3.3.0-cp312-cp312-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d54e0493be3d9ba2f671491d87dac8c6ba4576f37b064cae5146a787ad8c7e0a",
                "md5": "eb83bc51c224db5ee3ea266b2580f3ae",
                "sha256": "96c19c97517525a0b6a41acfdd74ba8ebad9147f8050ebe52be332126de72210"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb83bc51c224db5ee3ea266b2580f3ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 23608,
            "upload_time": "2024-08-09T15:41:02",
            "upload_time_iso_8601": "2024-08-09T15:41:02.229413Z",
            "url": "https://files.pythonhosted.org/packages/d5/4e/0493be3d9ba2f671491d87dac8c6ba4576f37b064cae5146a787ad8c7e0a/xxtea-3.3.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38853a60eff6aae12708e09d9eb1bcfcc6f3efc0a72c1c7fd373265c6f47d0ee",
                "md5": "d991962412790e322553bb93bc2ea5df",
                "sha256": "e3d564ecb2e7f92d9e5a76f3b9c482785254e63a52d7d6e6ba1a1e7e2bf925b0"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "d991962412790e322553bb93bc2ea5df",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 10707,
            "upload_time": "2024-08-09T15:41:03",
            "upload_time_iso_8601": "2024-08-09T15:41:03.710175Z",
            "url": "https://files.pythonhosted.org/packages/38/85/3a60eff6aae12708e09d9eb1bcfcc6f3efc0a72c1c7fd373265c6f47d0ee/xxtea-3.3.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c279121066325c2870d5608d91bbb942fe45a04e06d60ae9c0c7b714421c6bd2",
                "md5": "ad11735be43bf2051aa7c7462e71f536",
                "sha256": "8c4d5e0bbdb9c25ff5460bbe167b5a87e5af457d0e4f6794bed08f3e3a71ce60"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ad11735be43bf2051aa7c7462e71f536",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 11637,
            "upload_time": "2024-08-09T15:41:04",
            "upload_time_iso_8601": "2024-08-09T15:41:04.949505Z",
            "url": "https://files.pythonhosted.org/packages/c2/79/121066325c2870d5608d91bbb942fe45a04e06d60ae9c0c7b714421c6bd2/xxtea-3.3.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee7696288f4d0058037b9a37833e16ad8386d07dfa8157981fc8cf4e0cf39211",
                "md5": "750c4980d0b62dd5c8ebe1345c9a8781",
                "sha256": "b88252fba389bf1d4921aa3d1a41f2b979728443d78ffee5e523433a35859fad"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "750c4980d0b62dd5c8ebe1345c9a8781",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 10168,
            "upload_time": "2024-08-09T15:41:06",
            "upload_time_iso_8601": "2024-08-09T15:41:06.406950Z",
            "url": "https://files.pythonhosted.org/packages/ee/76/96288f4d0058037b9a37833e16ad8386d07dfa8157981fc8cf4e0cf39211/xxtea-3.3.0-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f03aee69a32372026246543b52a233b1a376048820e4ef204a518193726e72fa",
                "md5": "923f1e0d8eb2bfea44261066b923e0b4",
                "sha256": "a87ccad77ac1e915e6951e2ca7c1fa2a9842a97a5e0d60dbab76969c6195adaf"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "923f1e0d8eb2bfea44261066b923e0b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 8880,
            "upload_time": "2024-08-09T15:41:07",
            "upload_time_iso_8601": "2024-08-09T15:41:07.381417Z",
            "url": "https://files.pythonhosted.org/packages/f0/3a/ee69a32372026246543b52a233b1a376048820e4ef204a518193726e72fa/xxtea-3.3.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b30caa6f602810221ac893c1b50d6c648965049a34a4d20f713bcef0068703a",
                "md5": "d349dcdefe2610bc477bc3ed869dd44e",
                "sha256": "fbdaa562979581fe0d1e77b6243e53f2664fc38d8eddce693841a5d2697fdb4f"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d349dcdefe2610bc477bc3ed869dd44e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 9297,
            "upload_time": "2024-08-09T15:41:08",
            "upload_time_iso_8601": "2024-08-09T15:41:08.557715Z",
            "url": "https://files.pythonhosted.org/packages/4b/30/caa6f602810221ac893c1b50d6c648965049a34a4d20f713bcef0068703a/xxtea-3.3.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5d29a3d34ca6668def34d7f9741a7a7d5048892efc297c295e684ea73178980",
                "md5": "dab432705ef8c17663e1805bd914c498",
                "sha256": "fd13f912b7a87caa39888a80490b6f38894922f9095a3fa963d2b16cfe0ebf70"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dab432705ef8c17663e1805bd914c498",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 23700,
            "upload_time": "2024-08-09T15:41:09",
            "upload_time_iso_8601": "2024-08-09T15:41:09.589966Z",
            "url": "https://files.pythonhosted.org/packages/f5/d2/9a3d34ca6668def34d7f9741a7a7d5048892efc297c295e684ea73178980/xxtea-3.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a79119dac819929c29fccc85772f75e32ee7a88e0a2b244218922952aa862a14",
                "md5": "b656224c6b5ad6221022f417df6b2e75",
                "sha256": "aad5d27ed1f8cf71d1c2a3b16705928469f6632ad342ae265d51e5b571e244b2"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b656224c6b5ad6221022f417df6b2e75",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 25374,
            "upload_time": "2024-08-09T15:41:10",
            "upload_time_iso_8601": "2024-08-09T15:41:10.852921Z",
            "url": "https://files.pythonhosted.org/packages/a7/91/19dac819929c29fccc85772f75e32ee7a88e0a2b244218922952aa862a14/xxtea-3.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b66be77bb82e8f98db322d8360ccd27ff9532f8602470cfc76290aa554424d30",
                "md5": "8ff37bd9f3de7da6b320035932776323",
                "sha256": "73a596703a57ddbdf255b65432fa7e2754b57c42211a0bd0fe8bccbfd4fc5f71"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8ff37bd9f3de7da6b320035932776323",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 22774,
            "upload_time": "2024-08-09T15:41:11",
            "upload_time_iso_8601": "2024-08-09T15:41:11.922404Z",
            "url": "https://files.pythonhosted.org/packages/b6/6b/e77bb82e8f98db322d8360ccd27ff9532f8602470cfc76290aa554424d30/xxtea-3.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97673e139b73665998f8c9e3cdd3753f1f9695908c5e8d691c8948fcb03cf272",
                "md5": "4633243a2efc0fb19e9649a4f9b64fd4",
                "sha256": "0d45db286c9dfee43caa2a1e0f86870980098fabce9e2ddde72f7c8003b72011"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4633243a2efc0fb19e9649a4f9b64fd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 22951,
            "upload_time": "2024-08-09T15:41:13",
            "upload_time_iso_8601": "2024-08-09T15:41:13.032802Z",
            "url": "https://files.pythonhosted.org/packages/97/67/3e139b73665998f8c9e3cdd3753f1f9695908c5e8d691c8948fcb03cf272/xxtea-3.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e07fcef0796e0801d4da95b88a18c97ae862ca4bf01d3d38fabf82ba06ac9b91",
                "md5": "e1151ca848496485c648f79b5bf0614f",
                "sha256": "d468c2f34a8610ed55c85ccdf988794aa1f41f12562d171f02085cd65e46e4ac"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e1151ca848496485c648f79b5bf0614f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 23489,
            "upload_time": "2024-08-09T15:41:14",
            "upload_time_iso_8601": "2024-08-09T15:41:14.318190Z",
            "url": "https://files.pythonhosted.org/packages/e0/7f/cef0796e0801d4da95b88a18c97ae862ca4bf01d3d38fabf82ba06ac9b91/xxtea-3.3.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "88598dff7c885928df2ddb4e630aca8a69db42ce3a6fca08607d6d74dd36c56e",
                "md5": "08c368639b3ae7b3ec6b286ef4d252b6",
                "sha256": "02af8b418f656c57c677823e1bbe6a7f6840604e2063fc9b05fbedffdedb68bd"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "08c368639b3ae7b3ec6b286ef4d252b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 23596,
            "upload_time": "2024-08-09T15:41:15",
            "upload_time_iso_8601": "2024-08-09T15:41:15.456497Z",
            "url": "https://files.pythonhosted.org/packages/88/59/8dff7c885928df2ddb4e630aca8a69db42ce3a6fca08607d6d74dd36c56e/xxtea-3.3.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb2a128b24bec7aa539de3587679ecad87055824e7ed1da3c04834f9e4ebabb4",
                "md5": "ebdc18f35467672fcac45761a76e7fdf",
                "sha256": "0513921f5d6b4d78e5020e010a7046f85b769ff7a3ce5fef4e2f1d3747ff0e01"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ebdc18f35467672fcac45761a76e7fdf",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 23528,
            "upload_time": "2024-08-09T15:41:16",
            "upload_time_iso_8601": "2024-08-09T15:41:16.621204Z",
            "url": "https://files.pythonhosted.org/packages/fb/2a/128b24bec7aa539de3587679ecad87055824e7ed1da3c04834f9e4ebabb4/xxtea-3.3.0-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "317417b0852dbef0329f4719c47f42780972fe70ba2d5e8e7fec999c1a543c9f",
                "md5": "2f332ceb28f944464b4d33f797500278",
                "sha256": "2d0d38ef30f572cb90dddd3b7a5b6c1922b96149bbb03e1b0076dbbb70086837"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2f332ceb28f944464b4d33f797500278",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 25011,
            "upload_time": "2024-08-09T15:41:17",
            "upload_time_iso_8601": "2024-08-09T15:41:17.624123Z",
            "url": "https://files.pythonhosted.org/packages/31/74/17b0852dbef0329f4719c47f42780972fe70ba2d5e8e7fec999c1a543c9f/xxtea-3.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8142736126a458a2633cef0145ef00d22586f4890c9431fbf41a39984fd0f135",
                "md5": "a4a77c6a7a01ef0d13730e64af068842",
                "sha256": "420075d9bd090cf247b13a6992ff6e0538d4e60baf4b88dbd44a4e17bbe6fd8e"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp313-cp313-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "a4a77c6a7a01ef0d13730e64af068842",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 23640,
            "upload_time": "2024-08-09T15:41:19",
            "upload_time_iso_8601": "2024-08-09T15:41:19.033666Z",
            "url": "https://files.pythonhosted.org/packages/81/42/736126a458a2633cef0145ef00d22586f4890c9431fbf41a39984fd0f135/xxtea-3.3.0-cp313-cp313-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54f469e10d419f31776f5624f1476d37d16acf81498d64104a06863e07fdb7aa",
                "md5": "cdeb206b33d7c001f9417f12c7e532f2",
                "sha256": "555b2ee7982e1ec23e00da603933406aa1bce0496336946cb755f5cb35beeb1f"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cdeb206b33d7c001f9417f12c7e532f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 23702,
            "upload_time": "2024-08-09T15:41:20",
            "upload_time_iso_8601": "2024-08-09T15:41:20.148099Z",
            "url": "https://files.pythonhosted.org/packages/54/f4/69e10d419f31776f5624f1476d37d16acf81498d64104a06863e07fdb7aa/xxtea-3.3.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6fbac16f468ac573eb4c4b561c491fb7a389aa2e291fa898091caa236a73cb2b",
                "md5": "4146ed4b12be92be1fa813a00d5708d0",
                "sha256": "c55ae4331f05f2154f9d328f7fb325c7b22a106c3f9bd1917dff0b1b6c24135f"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "4146ed4b12be92be1fa813a00d5708d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 10711,
            "upload_time": "2024-08-09T15:41:21",
            "upload_time_iso_8601": "2024-08-09T15:41:21.166338Z",
            "url": "https://files.pythonhosted.org/packages/6f/ba/c16f468ac573eb4c4b561c491fb7a389aa2e291fa898091caa236a73cb2b/xxtea-3.3.0-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "451598b665da5088ce1387318afe958658e5f3d108f601cc14fa278cb96688eb",
                "md5": "53cc4cfb81e6ae606029755720941951",
                "sha256": "fdd17f3d1d31158d3164cb741846afe8b59e59e8d42533af705a679ff26e76e2"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "53cc4cfb81e6ae606029755720941951",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 11645,
            "upload_time": "2024-08-09T15:41:22",
            "upload_time_iso_8601": "2024-08-09T15:41:22.408343Z",
            "url": "https://files.pythonhosted.org/packages/45/15/98b665da5088ce1387318afe958658e5f3d108f601cc14fa278cb96688eb/xxtea-3.3.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59e274eb3c30725e38d8065d5aee891a30235d360c1d15896a48aedc50af27f8",
                "md5": "5b29ccd2bb861c46fd3dd6c69c3adad8",
                "sha256": "fbe2c9d5c09b0d543a846ddafdf4dce6bc90678f1486995bf1b253155c2bad9a"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "5b29ccd2bb861c46fd3dd6c69c3adad8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 10171,
            "upload_time": "2024-08-09T15:41:23",
            "upload_time_iso_8601": "2024-08-09T15:41:23.351860Z",
            "url": "https://files.pythonhosted.org/packages/59/e2/74eb3c30725e38d8065d5aee891a30235d360c1d15896a48aedc50af27f8/xxtea-3.3.0-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be7bf77cba11185a87e890025df8b5f988d34b8d360fcdce2b3457d7f1fbba5b",
                "md5": "def6df448ac45568d7b3757a461fb400",
                "sha256": "22dc86ed09d05981b237f93b2e142677867a6c36303676fa4f5afdc4b71ebc28"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "def6df448ac45568d7b3757a461fb400",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 8409,
            "upload_time": "2024-08-09T15:41:24",
            "upload_time_iso_8601": "2024-08-09T15:41:24.703207Z",
            "url": "https://files.pythonhosted.org/packages/be/7b/f77cba11185a87e890025df8b5f988d34b8d360fcdce2b3457d7f1fbba5b/xxtea-3.3.0-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67e8ca975ea19ddc75ae7b7f3592988a512adadd3ede581d4d59050d6b43ad0b",
                "md5": "1616fe6b15dd323898e7066744164755",
                "sha256": "c1259ee6433275e30d8b733ac3f1b4523b843ec8efc980120355438eb8c495ac"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1616fe6b15dd323898e7066744164755",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 23342,
            "upload_time": "2024-08-09T15:41:26",
            "upload_time_iso_8601": "2024-08-09T15:41:26.123755Z",
            "url": "https://files.pythonhosted.org/packages/67/e8/ca975ea19ddc75ae7b7f3592988a512adadd3ede581d4d59050d6b43ad0b/xxtea-3.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1dee863dbfaa1de8f5d67c489a83f6aa060571bd4da639bb5614409f16b45953",
                "md5": "8c15b56eb5fd92f4039ac901aa19fb40",
                "sha256": "5b93fc6e26b905d19d2c7671acf3b758e601f79525794ecb68a6e2558f8bf1b0"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8c15b56eb5fd92f4039ac901aa19fb40",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 25017,
            "upload_time": "2024-08-09T15:41:27",
            "upload_time_iso_8601": "2024-08-09T15:41:27.764902Z",
            "url": "https://files.pythonhosted.org/packages/1d/ee/863dbfaa1de8f5d67c489a83f6aa060571bd4da639bb5614409f16b45953/xxtea-3.3.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55e5bdc3e46800989e6313458237775471c06865aca0f8412402731cbd7aaa8c",
                "md5": "c668563b23235505149d30365818a10f",
                "sha256": "b1dc60984ccb59e4d4ccf6781d83cd02eb3eac5907720cd34845ac0cb97c91b5"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c668563b23235505149d30365818a10f",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 22435,
            "upload_time": "2024-08-09T15:41:28",
            "upload_time_iso_8601": "2024-08-09T15:41:28.823691Z",
            "url": "https://files.pythonhosted.org/packages/55/e5/bdc3e46800989e6313458237775471c06865aca0f8412402731cbd7aaa8c/xxtea-3.3.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24e315a22791d464d6bbea032ad07906bb13518b86a5683d8eb6bfe1137527a3",
                "md5": "53b12fd03b0eb470a26be1d1a82caaf0",
                "sha256": "f810953bb9cdefebdec7e7498e3497a5ac97588e292af604d868814187e95b55"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "53b12fd03b0eb470a26be1d1a82caaf0",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 22723,
            "upload_time": "2024-08-09T15:41:30",
            "upload_time_iso_8601": "2024-08-09T15:41:30.018923Z",
            "url": "https://files.pythonhosted.org/packages/24/e3/15a22791d464d6bbea032ad07906bb13518b86a5683d8eb6bfe1137527a3/xxtea-3.3.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c077af39cfaaf260efd734d8ff14f80d25edc6be292fa1083ad5e3787cc0ee8",
                "md5": "af27b312877f89102a1280e39bd96942",
                "sha256": "e51c78380e812521a72d632d8e8b3d64a783d08672092440b8d65a0689a4e153"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "af27b312877f89102a1280e39bd96942",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 23066,
            "upload_time": "2024-08-09T15:41:31",
            "upload_time_iso_8601": "2024-08-09T15:41:31.170882Z",
            "url": "https://files.pythonhosted.org/packages/8c/07/7af39cfaaf260efd734d8ff14f80d25edc6be292fa1083ad5e3787cc0ee8/xxtea-3.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38c3fd8f0d8d68bbf56307b5ef2137ce7f789866ea087cc83a100d37ace48cb4",
                "md5": "3fbc5ac124d705ac99a7e1c43af5fcec",
                "sha256": "017d387b9ae810ad6d8ebb09914a885376eef63ba98ce6b461945f6a62a04afb"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp36-cp36m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3fbc5ac124d705ac99a7e1c43af5fcec",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 22582,
            "upload_time": "2024-08-09T15:41:32",
            "upload_time_iso_8601": "2024-08-09T15:41:32.739075Z",
            "url": "https://files.pythonhosted.org/packages/38/c3/fd8f0d8d68bbf56307b5ef2137ce7f789866ea087cc83a100d37ace48cb4/xxtea-3.3.0-cp36-cp36m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00f570f2136fbc475d46276f9bf7311089f6195fd2266b337af951a89325af18",
                "md5": "896255ebf5a4a60316cd8ff7a694435d",
                "sha256": "5aef990a103826669b66549533e4badf8c7f87295ca2d9beef32e71a5eaff29b"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp36-cp36m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "896255ebf5a4a60316cd8ff7a694435d",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 22683,
            "upload_time": "2024-08-09T15:41:33",
            "upload_time_iso_8601": "2024-08-09T15:41:33.865504Z",
            "url": "https://files.pythonhosted.org/packages/00/f5/70f2136fbc475d46276f9bf7311089f6195fd2266b337af951a89325af18/xxtea-3.3.0-cp36-cp36m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b84af0aba33bea39ab20837016133f6e726da5b004435dfc1f12ca3cee8777c9",
                "md5": "9042b9d1c836b24e4acbac9d1255346e",
                "sha256": "c0ff4d57ba0798a46f458a371745457f444e6e967da8b311c3c4a982f3e2662a"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp36-cp36m-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9042b9d1c836b24e4acbac9d1255346e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 24025,
            "upload_time": "2024-08-09T15:41:35",
            "upload_time_iso_8601": "2024-08-09T15:41:35.025861Z",
            "url": "https://files.pythonhosted.org/packages/b8/4a/f0aba33bea39ab20837016133f6e726da5b004435dfc1f12ca3cee8777c9/xxtea-3.3.0-cp36-cp36m-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26d805d60cfb108b2afbcaaf741d406fdf68429ede610ae0ecdb463d5af4a44c",
                "md5": "ba7465e9d3ef540e5fd0a47352c6a73d",
                "sha256": "fd68a302ad27a892e9cbc758048f6d95c751b3d8a9796c3a683c78145278dbb8"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp36-cp36m-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "ba7465e9d3ef540e5fd0a47352c6a73d",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 22578,
            "upload_time": "2024-08-09T15:41:36",
            "upload_time_iso_8601": "2024-08-09T15:41:36.095813Z",
            "url": "https://files.pythonhosted.org/packages/26/d8/05d60cfb108b2afbcaaf741d406fdf68429ede610ae0ecdb463d5af4a44c/xxtea-3.3.0-cp36-cp36m-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76d34763f4eb8be8e16515d029e741e6bcbb58fd39cd28655f71caafde9db5b3",
                "md5": "d5c3fad3652b80ab7db88969f44d60ab",
                "sha256": "dff77482e57720506b15b074f802344e6800278ab9182528f0c331a9e167f1b6"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d5c3fad3652b80ab7db88969f44d60ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 22584,
            "upload_time": "2024-08-09T15:41:37",
            "upload_time_iso_8601": "2024-08-09T15:41:37.489084Z",
            "url": "https://files.pythonhosted.org/packages/76/d3/4763f4eb8be8e16515d029e741e6bcbb58fd39cd28655f71caafde9db5b3/xxtea-3.3.0-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a560faa877a3d147d4eba67799f8acef132d066b57be65f4a8be8e5602d5385",
                "md5": "9c0959ca64aba9e00c9e92b09676ff7d",
                "sha256": "a74156e8ca8d021973b57345f42d05203045a4faf06ffa86124fca2a797a6230"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "9c0959ca64aba9e00c9e92b09676ff7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 10652,
            "upload_time": "2024-08-09T15:41:38",
            "upload_time_iso_8601": "2024-08-09T15:41:38.554033Z",
            "url": "https://files.pythonhosted.org/packages/4a/56/0faa877a3d147d4eba67799f8acef132d066b57be65f4a8be8e5602d5385/xxtea-3.3.0-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0fa788bb4c6b44b9053b6d287441eae2e7f0da56cc90b095a1661cfe31a6253",
                "md5": "b9d79f58e20386797de2bf112c8e45a0",
                "sha256": "1126b8425683f290bcf0f30993859b2f37ba1c7a7de5cc1f51596c315496a091"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b9d79f58e20386797de2bf112c8e45a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 11611,
            "upload_time": "2024-08-09T15:41:39",
            "upload_time_iso_8601": "2024-08-09T15:41:39.701371Z",
            "url": "https://files.pythonhosted.org/packages/b0/fa/788bb4c6b44b9053b6d287441eae2e7f0da56cc90b095a1661cfe31a6253/xxtea-3.3.0-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08f323e568ee9d46685f70257fa1c9b954c688cf10496e3631bed9b7135ad228",
                "md5": "dba6ff3d8458598ec702380e0764b752",
                "sha256": "9e1015949dcf41bc50da626863eaa6b901189cfa809891d3fe3c5256b3f7f9bb"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dba6ff3d8458598ec702380e0764b752",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 8525,
            "upload_time": "2024-08-09T15:41:40",
            "upload_time_iso_8601": "2024-08-09T15:41:40.845579Z",
            "url": "https://files.pythonhosted.org/packages/08/f3/23e568ee9d46685f70257fa1c9b954c688cf10496e3631bed9b7135ad228/xxtea-3.3.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48657027cf0e837aecc3effb3977dc5150fdd1b40d1e46fc2c62c43f72f5093b",
                "md5": "4df134c94b575cef071ce36f42541cf2",
                "sha256": "3727674e33601c0d1c3a35e8bcebc3662be3bf5c653fb9aedecf7e7f164db6a1"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4df134c94b575cef071ce36f42541cf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 24350,
            "upload_time": "2024-08-09T15:41:41",
            "upload_time_iso_8601": "2024-08-09T15:41:41.814067Z",
            "url": "https://files.pythonhosted.org/packages/48/65/7027cf0e837aecc3effb3977dc5150fdd1b40d1e46fc2c62c43f72f5093b/xxtea-3.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "010645144d5a5c22b066a7208917ad479d4ab6c2d8dababe2f4feccce54ad4a9",
                "md5": "92101b7f8092a5c48a9a61ff233160a6",
                "sha256": "e8325b3453ee575c38e912ee452e1cc77de77c833e6816f6e7e46ce0f529899d"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "92101b7f8092a5c48a9a61ff233160a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 26035,
            "upload_time": "2024-08-09T15:41:43",
            "upload_time_iso_8601": "2024-08-09T15:41:43.186410Z",
            "url": "https://files.pythonhosted.org/packages/01/06/45144d5a5c22b066a7208917ad479d4ab6c2d8dababe2f4feccce54ad4a9/xxtea-3.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "671f7130190a7aa7e671ee2482e790d84597ce010b2e8c38a153d3210f2a38cd",
                "md5": "35a163138d73ca863e45c61ba432d141",
                "sha256": "5a53dc2972d1631f6131d23686ca055e491b8b4e0b3fbe7c949aab026c1c7f67"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "35a163138d73ca863e45c61ba432d141",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 23467,
            "upload_time": "2024-08-09T15:41:44",
            "upload_time_iso_8601": "2024-08-09T15:41:44.878715Z",
            "url": "https://files.pythonhosted.org/packages/67/1f/7130190a7aa7e671ee2482e790d84597ce010b2e8c38a153d3210f2a38cd/xxtea-3.3.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6ee42a876b4115775b540c53e241e41251cf6ec221eb81d117989d1bc646af8",
                "md5": "2070cc2864b7db5874db9ff4f29456d7",
                "sha256": "0aea524333d46dbf07a3acb3742c313980efcf9df321daa19db1d4456582fb2a"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2070cc2864b7db5874db9ff4f29456d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 23768,
            "upload_time": "2024-08-09T15:41:45",
            "upload_time_iso_8601": "2024-08-09T15:41:45.883445Z",
            "url": "https://files.pythonhosted.org/packages/e6/ee/42a876b4115775b540c53e241e41251cf6ec221eb81d117989d1bc646af8/xxtea-3.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee878b9dd1bad36a01fbb9d67203cea2e6f904b5632dad558a3a61ab7c433b83",
                "md5": "192e8f129d49f2d779d49eaf8a1ff739",
                "sha256": "8c3f4b1aad0e5fc9e92b7e8d24ac8a0b2e3a1a798e36d31a0a51b2b875ed94f8"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "192e8f129d49f2d779d49eaf8a1ff739",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 24112,
            "upload_time": "2024-08-09T15:41:47",
            "upload_time_iso_8601": "2024-08-09T15:41:47.175061Z",
            "url": "https://files.pythonhosted.org/packages/ee/87/8b9dd1bad36a01fbb9d67203cea2e6f904b5632dad558a3a61ab7c433b83/xxtea-3.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4bf9657e595fee713163c6b0f9cd3d528ca969f985c317e96c246d8b9c22e8ec",
                "md5": "fc842734949aa52f908b47d4be5a05bd",
                "sha256": "9553ca6600e2d0d38c5feed2ce8722ebdddd5caef135fc1746a33a67458818c7"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fc842734949aa52f908b47d4be5a05bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 23619,
            "upload_time": "2024-08-09T15:41:48",
            "upload_time_iso_8601": "2024-08-09T15:41:48.779068Z",
            "url": "https://files.pythonhosted.org/packages/4b/f9/657e595fee713163c6b0f9cd3d528ca969f985c317e96c246d8b9c22e8ec/xxtea-3.3.0-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fcf49afeff7365e672c5397dabf57942f2ac1a27d5ea837e6833452b82909b3c",
                "md5": "5ca47ccfb1b65e307a5f31659fbcda5d",
                "sha256": "87537b16a20f43273e9ef85d89314c60608b74582257376a75c6a78e64b25eaf"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "5ca47ccfb1b65e307a5f31659fbcda5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 23712,
            "upload_time": "2024-08-09T15:41:50",
            "upload_time_iso_8601": "2024-08-09T15:41:50.018076Z",
            "url": "https://files.pythonhosted.org/packages/fc/f4/9afeff7365e672c5397dabf57942f2ac1a27d5ea837e6833452b82909b3c/xxtea-3.3.0-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52d5af084541c2610600f12b3f945fa5cf62931bcc5ad98cdedff94bd9c996a1",
                "md5": "8fd4804bbe54222d24c704e49d854dd8",
                "sha256": "bffdd9af36d81d8afbbdd66f5391b0b69d82880defcb3b4cf596a27288532f3b"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp37-cp37m-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8fd4804bbe54222d24c704e49d854dd8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 25045,
            "upload_time": "2024-08-09T15:41:51",
            "upload_time_iso_8601": "2024-08-09T15:41:51.407817Z",
            "url": "https://files.pythonhosted.org/packages/52/d5/af084541c2610600f12b3f945fa5cf62931bcc5ad98cdedff94bd9c996a1/xxtea-3.3.0-cp37-cp37m-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45b28be6a0e13a17f867484782a97dae784a400e2dc78e66ff4de7513fcfbe37",
                "md5": "86ee6c9da91e792eb27bf067f53ebc39",
                "sha256": "fd48a3ce558071ee0ba280e5972b6cbc024b004f7bc4ba483c5d6cf57c87ed07"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp37-cp37m-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "86ee6c9da91e792eb27bf067f53ebc39",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 23664,
            "upload_time": "2024-08-09T15:41:52",
            "upload_time_iso_8601": "2024-08-09T15:41:52.558475Z",
            "url": "https://files.pythonhosted.org/packages/45/b2/8be6a0e13a17f867484782a97dae784a400e2dc78e66ff4de7513fcfbe37/xxtea-3.3.0-cp37-cp37m-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fec05c1900c5b5aa862c89c04f33649dab4564ccb68d69965de95d9290dbff47",
                "md5": "ef1a593c2085d6dcf53bb554aec21939",
                "sha256": "aea6067970c3b39cee1fcea1ce4cfc177387362308dea2ab7d8a44c1083458e6"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ef1a593c2085d6dcf53bb554aec21939",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 23661,
            "upload_time": "2024-08-09T15:41:53",
            "upload_time_iso_8601": "2024-08-09T15:41:53.580783Z",
            "url": "https://files.pythonhosted.org/packages/fe/c0/5c1900c5b5aa862c89c04f33649dab4564ccb68d69965de95d9290dbff47/xxtea-3.3.0-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ef7fd119fc8b03592093889d524da852bfad980f9e22b2ee6a5910651bd070d",
                "md5": "daf17a7f82ab268137469e10f3489915",
                "sha256": "e194266702e1a08f0960e526494ec65348a8cd78cd84e675a9f8f04836d5883e"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "daf17a7f82ab268137469e10f3489915",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 10659,
            "upload_time": "2024-08-09T15:41:54",
            "upload_time_iso_8601": "2024-08-09T15:41:54.852564Z",
            "url": "https://files.pythonhosted.org/packages/0e/f7/fd119fc8b03592093889d524da852bfad980f9e22b2ee6a5910651bd070d/xxtea-3.3.0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "391dafd66f323e5388ef0ec2e121e473990751be4c57789b1d8680493d315c1e",
                "md5": "4ad32e59c9d8afe75d4f05b990e0b3cb",
                "sha256": "5607146db107bd4b4ee76f9019f5b0f23a7550b9408f536be1e65ea38a00684b"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4ad32e59c9d8afe75d4f05b990e0b3cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 11613,
            "upload_time": "2024-08-09T15:41:56",
            "upload_time_iso_8601": "2024-08-09T15:41:56.179374Z",
            "url": "https://files.pythonhosted.org/packages/39/1d/afd66f323e5388ef0ec2e121e473990751be4c57789b1d8680493d315c1e/xxtea-3.3.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5ff68e6eb1133a09ea077ae80d89410b2db66edb83e56ae24c0576b4a7a6c92",
                "md5": "740bb12719bb551857fd2675ff3192b5",
                "sha256": "5d09efd98dc3e9294b619f9d15904cfc3e3f34bdf8cf47f95fc6e0b7ab35c06f"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "740bb12719bb551857fd2675ff3192b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 8564,
            "upload_time": "2024-08-09T15:41:57",
            "upload_time_iso_8601": "2024-08-09T15:41:57.266365Z",
            "url": "https://files.pythonhosted.org/packages/c5/ff/68e6eb1133a09ea077ae80d89410b2db66edb83e56ae24c0576b4a7a6c92/xxtea-3.3.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4755c8207ce71b4af0f7355666eb0d67acdb32612def41af6d768245ab143e63",
                "md5": "3ab5691990a8d2a27d1607ae01daf8fa",
                "sha256": "e257b3f9c2da711956a97520beba4a8a1b528109d541793bb1607c6dc8c3adb8"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3ab5691990a8d2a27d1607ae01daf8fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 9257,
            "upload_time": "2024-08-09T15:41:59",
            "upload_time_iso_8601": "2024-08-09T15:41:59.391906Z",
            "url": "https://files.pythonhosted.org/packages/47/55/c8207ce71b4af0f7355666eb0d67acdb32612def41af6d768245ab143e63/xxtea-3.3.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "532b0a559e5a6a8eae54b9652c6a117aef8371f086d97fcc21d1df6a8dffd1a4",
                "md5": "f01397cdf6c562cfa87455ef460cfa68",
                "sha256": "939f26f30896416ba26ff6113c6180669455fd25ce46c239535fa894b9832baf"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f01397cdf6c562cfa87455ef460cfa68",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 23582,
            "upload_time": "2024-08-09T15:42:00",
            "upload_time_iso_8601": "2024-08-09T15:42:00.492139Z",
            "url": "https://files.pythonhosted.org/packages/53/2b/0a559e5a6a8eae54b9652c6a117aef8371f086d97fcc21d1df6a8dffd1a4/xxtea-3.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd9b63023c60573e5b1de8dd9e15d167a90f9b005019dc9d1d6a05e3e2e3c435",
                "md5": "c35a3b9a9de0ca0b31351d540d2b824f",
                "sha256": "1fb373ad300843468ba871cf6ee3fdeaba913e4502eb95f5ea9fd5c27f8ef208"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c35a3b9a9de0ca0b31351d540d2b824f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 25226,
            "upload_time": "2024-08-09T15:42:01",
            "upload_time_iso_8601": "2024-08-09T15:42:01.945448Z",
            "url": "https://files.pythonhosted.org/packages/fd/9b/63023c60573e5b1de8dd9e15d167a90f9b005019dc9d1d6a05e3e2e3c435/xxtea-3.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a59dfded3c946bee09c656ed2a2021c6f79cc9dbb63fe668a957c9d9dad49596",
                "md5": "0c90a0c43570354c15c2f0468a172a3c",
                "sha256": "4735887f9db1c90b4b2da6385def77da6ada8037d7c700c995cc5876c9bd753c"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0c90a0c43570354c15c2f0468a172a3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 22723,
            "upload_time": "2024-08-09T15:42:03",
            "upload_time_iso_8601": "2024-08-09T15:42:03.066876Z",
            "url": "https://files.pythonhosted.org/packages/a5/9d/fded3c946bee09c656ed2a2021c6f79cc9dbb63fe668a957c9d9dad49596/xxtea-3.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37047294a2732630c279380817b7f46d9757b86a1a8b8b4fd0dbb4c61d35ce1f",
                "md5": "db1344c199e5fe31ea339b0b48d9e850",
                "sha256": "99541419c6374dd032c7544286d359a03d3bad66048a90628c31bf66865260be"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "db1344c199e5fe31ea339b0b48d9e850",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 22953,
            "upload_time": "2024-08-09T15:42:04",
            "upload_time_iso_8601": "2024-08-09T15:42:04.549755Z",
            "url": "https://files.pythonhosted.org/packages/37/04/7294a2732630c279380817b7f46d9757b86a1a8b8b4fd0dbb4c61d35ce1f/xxtea-3.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62695f84d7d219ff54db778241114a98122b64040bae3064c8e1b8ce9ca9320f",
                "md5": "e763d3769c809632854d63bb5c31bf69",
                "sha256": "3f7747c915c259041f2ad19604fb625cc866f6452b23315d89800260464286c7"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e763d3769c809632854d63bb5c31bf69",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 23351,
            "upload_time": "2024-08-09T15:42:06",
            "upload_time_iso_8601": "2024-08-09T15:42:06.336092Z",
            "url": "https://files.pythonhosted.org/packages/62/69/5f84d7d219ff54db778241114a98122b64040bae3064c8e1b8ce9ca9320f/xxtea-3.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c333380be6549ba7486414459d29f7fd2811803dce8858c319766b704c21c1f9",
                "md5": "722602067aa4f222a82839cec68f48b4",
                "sha256": "8a8895496e70a86ee939de0ed92452e5d7179b0cb520fb574cfac7139ed0ac84"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "722602067aa4f222a82839cec68f48b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 22852,
            "upload_time": "2024-08-09T15:42:07",
            "upload_time_iso_8601": "2024-08-09T15:42:07.480222Z",
            "url": "https://files.pythonhosted.org/packages/c3/33/380be6549ba7486414459d29f7fd2811803dce8858c319766b704c21c1f9/xxtea-3.3.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1920ee8fe944484a2a223a8f0b3f71b0df614b7e9d6bc253fc81a8fd38bdb6d",
                "md5": "00bc88c4392803d2d4f84a50a34cc6a7",
                "sha256": "bf06d81791f9ec584abee714ddaae14c432bea65efc0eeda2bb69d970a0e9ca4"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "00bc88c4392803d2d4f84a50a34cc6a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 22870,
            "upload_time": "2024-08-09T15:42:08",
            "upload_time_iso_8601": "2024-08-09T15:42:08.532213Z",
            "url": "https://files.pythonhosted.org/packages/c1/92/0ee8fe944484a2a223a8f0b3f71b0df614b7e9d6bc253fc81a8fd38bdb6d/xxtea-3.3.0-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e96cd295cb0d210fcf917d658ea62a0e138cd1eafb645d83fde4d6d7eddf94f2",
                "md5": "71077fe972a6adaa8511ee3a09dd3f3c",
                "sha256": "4eeb0a3588265849afa550d1f9bab39d80c1299034440c19be0990c4edc533f4"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp38-cp38-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "71077fe972a6adaa8511ee3a09dd3f3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 24242,
            "upload_time": "2024-08-09T15:42:09",
            "upload_time_iso_8601": "2024-08-09T15:42:09.685580Z",
            "url": "https://files.pythonhosted.org/packages/e9/6c/d295cb0d210fcf917d658ea62a0e138cd1eafb645d83fde4d6d7eddf94f2/xxtea-3.3.0-cp38-cp38-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba92ffb55894cc9ee6a7e5052f197e651d4a29b727e9cb078b71aaec745e1930",
                "md5": "b12ccc8a00decaada66adfa75ae9fb16",
                "sha256": "331b08c286c5fc7b55485b180b5fbacab633e86e3e769328a010dcc48b49038e"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp38-cp38-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "b12ccc8a00decaada66adfa75ae9fb16",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 22885,
            "upload_time": "2024-08-09T15:42:11",
            "upload_time_iso_8601": "2024-08-09T15:42:11.011111Z",
            "url": "https://files.pythonhosted.org/packages/ba/92/ffb55894cc9ee6a7e5052f197e651d4a29b727e9cb078b71aaec745e1930/xxtea-3.3.0-cp38-cp38-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6d4d02e3fb7dc9d07aebfad6bd5cdaa0dbd368ca7e099e014788d65dc95b9f3",
                "md5": "25e724afad7be0504ac1fd35e2e6d5b2",
                "sha256": "27beafa8f08393f174a1db8ee10bb001824faf9a5df024d2b7c952d93bec0e19"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "25e724afad7be0504ac1fd35e2e6d5b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 22860,
            "upload_time": "2024-08-09T15:42:12",
            "upload_time_iso_8601": "2024-08-09T15:42:12.120491Z",
            "url": "https://files.pythonhosted.org/packages/e6/d4/d02e3fb7dc9d07aebfad6bd5cdaa0dbd368ca7e099e014788d65dc95b9f3/xxtea-3.3.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17bc45f37a40ad75c77038d8cf41cba459b2053c5c4ee43b8e58dad0e301d8c8",
                "md5": "2d7647736b8d5f7d88bff8ce8da71851",
                "sha256": "fba58b93365f57a9f8a65e26d9acfd38f5b929febcab173bcd0b81fe1bc7890c"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "2d7647736b8d5f7d88bff8ce8da71851",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 10662,
            "upload_time": "2024-08-09T15:42:13",
            "upload_time_iso_8601": "2024-08-09T15:42:13.209541Z",
            "url": "https://files.pythonhosted.org/packages/17/bc/45f37a40ad75c77038d8cf41cba459b2053c5c4ee43b8e58dad0e301d8c8/xxtea-3.3.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0797ede1b2e6507c87d5ba69b2fb40ad9b005386e4d10c7e57cc732578a87db6",
                "md5": "18d81fc26b46af0ae8defe924e1c1210",
                "sha256": "7c097f562fb4e7145d8380626ef495c2f7017250f6533896007c5ec97d420968"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "18d81fc26b46af0ae8defe924e1c1210",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 11629,
            "upload_time": "2024-08-09T15:42:14",
            "upload_time_iso_8601": "2024-08-09T15:42:14.580094Z",
            "url": "https://files.pythonhosted.org/packages/07/97/ede1b2e6507c87d5ba69b2fb40ad9b005386e4d10c7e57cc732578a87db6/xxtea-3.3.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "588eef8fbaeca7e71d72f07671c63ad2228362811bf0521fca7d5887e82c9f54",
                "md5": "88456462a31a737ece5feb1ff514f814",
                "sha256": "cb6c554945be6abbd56f2875c98fcdb35ebf03f5ac8bc7b88507dcec266366ea"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "88456462a31a737ece5feb1ff514f814",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 8563,
            "upload_time": "2024-08-09T15:42:15",
            "upload_time_iso_8601": "2024-08-09T15:42:15.952197Z",
            "url": "https://files.pythonhosted.org/packages/58/8e/ef8fbaeca7e71d72f07671c63ad2228362811bf0521fca7d5887e82c9f54/xxtea-3.3.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b38c4b9b9296266e245997aca2f2c50e9071b5ae8e60f4d9b431599df1979130",
                "md5": "a9ad5e03e20dd67fc3d1b4b88c14a986",
                "sha256": "e2078679332271b98afbdf04440bef4791b6f1475ccaf6150a2c77b5e1eb34e0"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a9ad5e03e20dd67fc3d1b4b88c14a986",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 9260,
            "upload_time": "2024-08-09T15:42:17",
            "upload_time_iso_8601": "2024-08-09T15:42:17.508885Z",
            "url": "https://files.pythonhosted.org/packages/b3/8c/4b9b9296266e245997aca2f2c50e9071b5ae8e60f4d9b431599df1979130/xxtea-3.3.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ec5bf0e67ff9d6802588722a5cc1d9b47637a3ce7e5734846409e05a005a380",
                "md5": "ab7a5a6646bd4ac6e7af8c3836016593",
                "sha256": "e0db740e3e747106e8359499d0349141de7b89d953c35e60fab52619339ff689"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ab7a5a6646bd4ac6e7af8c3836016593",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 22763,
            "upload_time": "2024-08-09T15:42:18",
            "upload_time_iso_8601": "2024-08-09T15:42:18.559359Z",
            "url": "https://files.pythonhosted.org/packages/4e/c5/bf0e67ff9d6802588722a5cc1d9b47637a3ce7e5734846409e05a005a380/xxtea-3.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7a112de6abb89f292f4ac6ab79526b6ce55489fd0f70b6a8a71819971547795",
                "md5": "04b648936c3f7053f35172a4d33759a5",
                "sha256": "79955b6ac88eff46891ecbb7a63dbdaf58e9acb0386ded405e6d23ac1ba89bd9"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "04b648936c3f7053f35172a4d33759a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 24411,
            "upload_time": "2024-08-09T15:42:19",
            "upload_time_iso_8601": "2024-08-09T15:42:19.680264Z",
            "url": "https://files.pythonhosted.org/packages/a7/a1/12de6abb89f292f4ac6ab79526b6ce55489fd0f70b6a8a71819971547795/xxtea-3.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4bbf68e1a98b6bcc14e3a4bc0f77364accbd227f845de2af801a44714deb170f",
                "md5": "eecb582c9e0c297dc250adb30c2c79e0",
                "sha256": "87e26506827ef7500a136e34aa397429dc52aa27b1aae02cd091315783624f67"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "eecb582c9e0c297dc250adb30c2c79e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 21912,
            "upload_time": "2024-08-09T15:42:21",
            "upload_time_iso_8601": "2024-08-09T15:42:21.506985Z",
            "url": "https://files.pythonhosted.org/packages/4b/bf/68e1a98b6bcc14e3a4bc0f77364accbd227f845de2af801a44714deb170f/xxtea-3.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71e760314619a352e1f179074a7c9e0048cebcb72d92a858624c9bb592e08d6b",
                "md5": "5a90a51219c5b0fdcdb44979bc59b8f4",
                "sha256": "7073dc843540d93428a355667184293b07f4a47839daff77b33f03027d9c511c"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5a90a51219c5b0fdcdb44979bc59b8f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 22102,
            "upload_time": "2024-08-09T15:42:22",
            "upload_time_iso_8601": "2024-08-09T15:42:22.742621Z",
            "url": "https://files.pythonhosted.org/packages/71/e7/60314619a352e1f179074a7c9e0048cebcb72d92a858624c9bb592e08d6b/xxtea-3.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f248da4e0f69e343d13d38f998b9b55a49e4420b57fd77c06bbdfe424f757f2a",
                "md5": "2678f50ad38f0f9a69ea64d2ff3a4d07",
                "sha256": "e258960bfef283ff116b6ce20a4bfdc58db0bf6f8176583f13bb35ae990c7e3d"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2678f50ad38f0f9a69ea64d2ff3a4d07",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 22472,
            "upload_time": "2024-08-09T15:42:23",
            "upload_time_iso_8601": "2024-08-09T15:42:23.828601Z",
            "url": "https://files.pythonhosted.org/packages/f2/48/da4e0f69e343d13d38f998b9b55a49e4420b57fd77c06bbdfe424f757f2a/xxtea-3.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc7b5f273a08f75e1c0ac3f6ffc40ea38e64fd1aca92696ca5e3160b13a908bb",
                "md5": "e7b0b8939a49a73d8bd5252035fbf38d",
                "sha256": "5e57475e5cd593df1ba34fe6a8e9e71000c235760ae5fdb1898a529613eb2a79"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e7b0b8939a49a73d8bd5252035fbf38d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 22573,
            "upload_time": "2024-08-09T15:42:25",
            "upload_time_iso_8601": "2024-08-09T15:42:25.313460Z",
            "url": "https://files.pythonhosted.org/packages/fc/7b/5f273a08f75e1c0ac3f6ffc40ea38e64fd1aca92696ca5e3160b13a908bb/xxtea-3.3.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ee4a648191bc1b65ecc56ab50292475e23dd5cff40b54eae2a02a5489541ec5",
                "md5": "2f556b17e9eb456d35c074d5e1cf87fd",
                "sha256": "07005479bd6545b4f2b5ec7c5994d4683d5112cf9600ca02af86bca67be86dea"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2f556b17e9eb456d35c074d5e1cf87fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 22567,
            "upload_time": "2024-08-09T15:42:26",
            "upload_time_iso_8601": "2024-08-09T15:42:26.889943Z",
            "url": "https://files.pythonhosted.org/packages/4e/e4/a648191bc1b65ecc56ab50292475e23dd5cff40b54eae2a02a5489541ec5/xxtea-3.3.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0d5769ed9f1ff58b9d81652a5c481d3a8db4e7c01f82612429fec6cad8c0fb1",
                "md5": "f4eab0e501c3a05770d3988da216398b",
                "sha256": "4e3ccc14ad8dbaf3c23deb3bd79b8f74049f522690340fdb5457f2502fbf1b78"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f4eab0e501c3a05770d3988da216398b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 23973,
            "upload_time": "2024-08-09T15:42:28",
            "upload_time_iso_8601": "2024-08-09T15:42:28.016141Z",
            "url": "https://files.pythonhosted.org/packages/a0/d5/769ed9f1ff58b9d81652a5c481d3a8db4e7c01f82612429fec6cad8c0fb1/xxtea-3.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5c3216f99c46d107b64fe61d0f56cee26617503f748aa34c1f39ebbbde80b51",
                "md5": "2184325953405c7e865a19b02ae2eeb0",
                "sha256": "d72d5e1db8f407ac3c196a2c1be714e00988aa9ec40c221c6dce61e54ca4212e"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp39-cp39-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "2184325953405c7e865a19b02ae2eeb0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 22599,
            "upload_time": "2024-08-09T15:42:29",
            "upload_time_iso_8601": "2024-08-09T15:42:29.163403Z",
            "url": "https://files.pythonhosted.org/packages/c5/c3/216f99c46d107b64fe61d0f56cee26617503f748aa34c1f39ebbbde80b51/xxtea-3.3.0-cp39-cp39-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f9a6bd9bf935b035a5eb368b8724930ff4eba122678558cf89a74b684cd0aa3",
                "md5": "fa7b00b7fe74022bc8a5b1ed462195e2",
                "sha256": "65f06a9a48279f0e425e0004ae8abadeaceae752b7aabfafb5eb5ec27a78a2db"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fa7b00b7fe74022bc8a5b1ed462195e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 22569,
            "upload_time": "2024-08-09T15:42:30",
            "upload_time_iso_8601": "2024-08-09T15:42:30.252201Z",
            "url": "https://files.pythonhosted.org/packages/1f/9a/6bd9bf935b035a5eb368b8724930ff4eba122678558cf89a74b684cd0aa3/xxtea-3.3.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4cb1e7392f751defc75a6c9aeafc53dc6eea76e93e21984e8b8cb1dae3bfc22e",
                "md5": "22e767fce32f7e5a56223b6ba5df6833",
                "sha256": "0a21123d31e1c8d68bf60c1d2140b9f8437ff476e8933df9a6bd84c4b9b0f793"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "22e767fce32f7e5a56223b6ba5df6833",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 10660,
            "upload_time": "2024-08-09T15:42:31",
            "upload_time_iso_8601": "2024-08-09T15:42:31.350373Z",
            "url": "https://files.pythonhosted.org/packages/4c/b1/e7392f751defc75a6c9aeafc53dc6eea76e93e21984e8b8cb1dae3bfc22e/xxtea-3.3.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8fbaaf48d9bf832174949cd94bd218f05e5c87598a6b29dcba84bac3d2640b4",
                "md5": "36821dbbfa49110fa1ec752c77eff99e",
                "sha256": "73112578026db7930df8c42218cf030e73bba17826538d0f38fd4fb180cf19f7"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "36821dbbfa49110fa1ec752c77eff99e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 11625,
            "upload_time": "2024-08-09T15:42:32",
            "upload_time_iso_8601": "2024-08-09T15:42:32.989566Z",
            "url": "https://files.pythonhosted.org/packages/e8/fb/aaf48d9bf832174949cd94bd218f05e5c87598a6b29dcba84bac3d2640b4/xxtea-3.3.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "694d77b645ea5b62cfb8cabebc06a5f8f768e813bea56d0b980ee2e9bcfb1462",
                "md5": "3ccf833e3450127447108f4cb357462b",
                "sha256": "143885169ae1f0b071a050a3cc7e10d8cc06bbe8bfd0e7b0fe811f96d3c2d945"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "3ccf833e3450127447108f4cb357462b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 10164,
            "upload_time": "2024-08-09T15:42:34",
            "upload_time_iso_8601": "2024-08-09T15:42:34.488177Z",
            "url": "https://files.pythonhosted.org/packages/69/4d/77b645ea5b62cfb8cabebc06a5f8f768e813bea56d0b980ee2e9bcfb1462/xxtea-3.3.0-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f10cccc1ddc1aa580de3592324971891ac5e0714953be9f6baa91ab51c946eb",
                "md5": "25cb695e704e14252228c315afe02e6f",
                "sha256": "5cf1367d06ba7e4394e2e6b0add8282dbb3ec9b8f0784dd70d163ca19a8c39d8"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "25cb695e704e14252228c315afe02e6f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 8456,
            "upload_time": "2024-08-09T15:42:35",
            "upload_time_iso_8601": "2024-08-09T15:42:35.476363Z",
            "url": "https://files.pythonhosted.org/packages/9f/10/cccc1ddc1aa580de3592324971891ac5e0714953be9f6baa91ab51c946eb/xxtea-3.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "febbdc6149ea14f757a9e6dcf6aaddca0224fd038d0b6eb39da8368a98567d8d",
                "md5": "8794189a0efac9e15e152a1e364b44e9",
                "sha256": "fe8dbedd13ec9549b9f594652f9d6d3a87674e116de57da3f6a9e73db660ef71"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8794189a0efac9e15e152a1e364b44e9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 10360,
            "upload_time": "2024-08-09T15:42:36",
            "upload_time_iso_8601": "2024-08-09T15:42:36.518645Z",
            "url": "https://files.pythonhosted.org/packages/fe/bb/dc6149ea14f757a9e6dcf6aaddca0224fd038d0b6eb39da8368a98567d8d/xxtea-3.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb1d28db27ce0cb41333d9b187a8aa5d670272e4e8568352a42ec9ffead70b01",
                "md5": "c1b1c5c945809d6e35206113192d145b",
                "sha256": "5a597fd8d09ac604f98bf6e8378b57b31a1ea2becf98f9b94ace95b995175ef5"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c1b1c5c945809d6e35206113192d145b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 10075,
            "upload_time": "2024-08-09T15:42:38",
            "upload_time_iso_8601": "2024-08-09T15:42:38.109671Z",
            "url": "https://files.pythonhosted.org/packages/bb/1d/28db27ce0cb41333d9b187a8aa5d670272e4e8568352a42ec9ffead70b01/xxtea-3.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47f327ededb9545ed9fb349db2b4af81ad015bb56f3ce5aa92fc83917d7a7c97",
                "md5": "882d1882888c9add2559de353be86696",
                "sha256": "dbdf1041111aa04d94988719ab9882d188e7deedce289b1db8951a199e61e2fe"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "882d1882888c9add2559de353be86696",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 9859,
            "upload_time": "2024-08-09T15:42:39",
            "upload_time_iso_8601": "2024-08-09T15:42:39.159153Z",
            "url": "https://files.pythonhosted.org/packages/47/f3/27ededb9545ed9fb349db2b4af81ad015bb56f3ce5aa92fc83917d7a7c97/xxtea-3.3.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efee9eaaedec81d3af58dfd7acc28fbbe27281a4654df46dbd4a6220b5484240",
                "md5": "ba1e4b8a628b4302524e2fdd6a6a58a8",
                "sha256": "e2c3e33d2bd1bc061b4b7c1e26acc0b9b53ff007c0239ac0a0a56741021fe117"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ba1e4b8a628b4302524e2fdd6a6a58a8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 11686,
            "upload_time": "2024-08-09T15:42:40",
            "upload_time_iso_8601": "2024-08-09T15:42:40.641525Z",
            "url": "https://files.pythonhosted.org/packages/ef/ee/9eaaedec81d3af58dfd7acc28fbbe27281a4654df46dbd4a6220b5484240/xxtea-3.3.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e533f1359aed8b8b1ac1fa8e0b0ebb980e115cd9555d227c5b871cdefaf94cb",
                "md5": "9dc56ed471e837efc38afed6509284e0",
                "sha256": "e5d0d44db9be947b5b6b0cf8191fed58a08db1b3f1b4159bd22d0b2484e045fd"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9dc56ed471e837efc38afed6509284e0",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 8257,
            "upload_time": "2024-08-09T15:42:41",
            "upload_time_iso_8601": "2024-08-09T15:42:41.872152Z",
            "url": "https://files.pythonhosted.org/packages/6e/53/3f1359aed8b8b1ac1fa8e0b0ebb980e115cd9555d227c5b871cdefaf94cb/xxtea-3.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e309840c8d4081eab2fca1b45ae9c0309f0482937c4a56874e560d4333e2e6ca",
                "md5": "d1a987791c61933ac42497004f26adc0",
                "sha256": "867d147327d4b3e2a8a3688c086fad328d1755afe418073a573767ed9e68cb95"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d1a987791c61933ac42497004f26adc0",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 10340,
            "upload_time": "2024-08-09T15:42:43",
            "upload_time_iso_8601": "2024-08-09T15:42:43.264999Z",
            "url": "https://files.pythonhosted.org/packages/e3/09/840c8d4081eab2fca1b45ae9c0309f0482937c4a56874e560d4333e2e6ca/xxtea-3.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b597ee5ff3d312c76a8b669ccd087477b89cd2cab2045dd042ace3f597ed48a",
                "md5": "b06987a45ec61f8e9e9f21807c129a17",
                "sha256": "e758ddf43b3a1aaa66797cbb9ad049a9dc483c8d9064307406aa82a63844f33c"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b06987a45ec61f8e9e9f21807c129a17",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 10052,
            "upload_time": "2024-08-09T15:42:44",
            "upload_time_iso_8601": "2024-08-09T15:42:44.734112Z",
            "url": "https://files.pythonhosted.org/packages/2b/59/7ee5ff3d312c76a8b669ccd087477b89cd2cab2045dd042ace3f597ed48a/xxtea-3.3.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "579c6906797e0e5476cba574d431e16afc31dda6d13a6eec35682265704f81b2",
                "md5": "76358d3ad0f9add57f7f7e6b1a92cd96",
                "sha256": "80548a7f4843c57f26c3701a4212acacac5eb2b09fe253a238d59011dab0d0fe"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "76358d3ad0f9add57f7f7e6b1a92cd96",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 9853,
            "upload_time": "2024-08-09T15:42:45",
            "upload_time_iso_8601": "2024-08-09T15:42:45.866194Z",
            "url": "https://files.pythonhosted.org/packages/57/9c/6906797e0e5476cba574d431e16afc31dda6d13a6eec35682265704f81b2/xxtea-3.3.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7238d06be2e66297c6757365acec7bedd4dd08200275981523f890df01a0354e",
                "md5": "6e22bb20b876f39570886da0c4a24ac0",
                "sha256": "ed76fc8eca810e8a5aa8f9f1312b39428212db66b5e0b460291a43bef3a16173"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6e22bb20b876f39570886da0c4a24ac0",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 11681,
            "upload_time": "2024-08-09T15:42:47",
            "upload_time_iso_8601": "2024-08-09T15:42:47.236800Z",
            "url": "https://files.pythonhosted.org/packages/72/38/d06be2e66297c6757365acec7bedd4dd08200275981523f890df01a0354e/xxtea-3.3.0-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c4a342c7a4dd8b8d67d6a03447a96fc4817e6ca98b344f371c5821ffdfdb880",
                "md5": "5cd5fac54d7d91820ebdab19e7ce0255",
                "sha256": "4f225f5508b91853f8b4bf974e17c9bf29d4fc02e27fd022b476cd7c82f9b604"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5cd5fac54d7d91820ebdab19e7ce0255",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 8258,
            "upload_time": "2024-08-09T15:42:48",
            "upload_time_iso_8601": "2024-08-09T15:42:48.275738Z",
            "url": "https://files.pythonhosted.org/packages/8c/4a/342c7a4dd8b8d67d6a03447a96fc4817e6ca98b344f371c5821ffdfdb880/xxtea-3.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af3c04181d3ce67136cff0898bb6fbc2caa31eec8e1ddf5c17ad1d192500624e",
                "md5": "389e3fef89303382db9456e6b6ff46c2",
                "sha256": "8f8efd74b87c0433e84c75f2ac20aef2ca394bc4ad05794c002678f1db5a49d5"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "389e3fef89303382db9456e6b6ff46c2",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 10339,
            "upload_time": "2024-08-09T15:42:49",
            "upload_time_iso_8601": "2024-08-09T15:42:49.527220Z",
            "url": "https://files.pythonhosted.org/packages/af/3c/04181d3ce67136cff0898bb6fbc2caa31eec8e1ddf5c17ad1d192500624e/xxtea-3.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03bda667290c374aed5ecc8b766e9b47bb89732c39948c5996096fca0c80f1cd",
                "md5": "8b39d9384c48fd2c630af3457450c301",
                "sha256": "fc5136318b754fea6f878e73d302977b36c44e48248f79db4974cb2f41d19cf4"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8b39d9384c48fd2c630af3457450c301",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 10052,
            "upload_time": "2024-08-09T15:42:50",
            "upload_time_iso_8601": "2024-08-09T15:42:50.603473Z",
            "url": "https://files.pythonhosted.org/packages/03/bd/a667290c374aed5ecc8b766e9b47bb89732c39948c5996096fca0c80f1cd/xxtea-3.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5990c0889ac6256865f8a4d83aeaa3c68045f57510325856d037ded553699eed",
                "md5": "77df1b31873e238d66da640fca47f73d",
                "sha256": "907bb23a1d664851105e801af251925f6b64273ca969f9e4c6e927958baca149"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "77df1b31873e238d66da640fca47f73d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 9853,
            "upload_time": "2024-08-09T15:42:51",
            "upload_time_iso_8601": "2024-08-09T15:42:51.664559Z",
            "url": "https://files.pythonhosted.org/packages/59/90/c0889ac6256865f8a4d83aeaa3c68045f57510325856d037ded553699eed/xxtea-3.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac007423f0ef30b8a0d8278ba08dfe56c585d120f6556855014f8beb89339c3b",
                "md5": "3787a6a47231c70b44c07dfd400c0ae5",
                "sha256": "44c59118732f024a104a9f83d644f0eef5a0b28c4eebe74fb8e97199e0354461"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3787a6a47231c70b44c07dfd400c0ae5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 11678,
            "upload_time": "2024-08-09T15:42:52",
            "upload_time_iso_8601": "2024-08-09T15:42:52.920430Z",
            "url": "https://files.pythonhosted.org/packages/ac/00/7423f0ef30b8a0d8278ba08dfe56c585d120f6556855014f8beb89339c3b/xxtea-3.3.0-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c12c99d77d020f4ea9034a9ddb48ab24d705d593b54a32b9fe5361c4ee9b402e",
                "md5": "f8f0dccbf2b5dad2a9d10acd2193baca",
                "sha256": "6a3389b134a91ea2ffa3350768226200b634d223656952aaf86082f7c1ebd2c3"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f8f0dccbf2b5dad2a9d10acd2193baca",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 8453,
            "upload_time": "2024-08-09T15:42:54",
            "upload_time_iso_8601": "2024-08-09T15:42:54.314760Z",
            "url": "https://files.pythonhosted.org/packages/c1/2c/99d77d020f4ea9034a9ddb48ab24d705d593b54a32b9fe5361c4ee9b402e/xxtea-3.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb3244a1be2289072e26af78f4bc7e811cd62d627911c42ea2aa0d5298679011",
                "md5": "40c9cba49cde9b5a601d11b9509a04a1",
                "sha256": "298e536260a511a4933db186f7a46bf7691995d5600b2457b0c942a4d16db236"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "40c9cba49cde9b5a601d11b9509a04a1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 10353,
            "upload_time": "2024-08-09T15:42:55",
            "upload_time_iso_8601": "2024-08-09T15:42:55.350417Z",
            "url": "https://files.pythonhosted.org/packages/eb/32/44a1be2289072e26af78f4bc7e811cd62d627911c42ea2aa0d5298679011/xxtea-3.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efd84bac205112f360a8d9385a40d2f92f348bdf4fdbcc9064ffa1bb912fc051",
                "md5": "bcc35702adf834e95cf5a9c52173acac",
                "sha256": "a1e7148a45380ae0434a7c8dee6f783ec205e5793fdda753caa55ca535f51868"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "bcc35702adf834e95cf5a9c52173acac",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 10068,
            "upload_time": "2024-08-09T15:42:56",
            "upload_time_iso_8601": "2024-08-09T15:42:56.742037Z",
            "url": "https://files.pythonhosted.org/packages/ef/d8/4bac205112f360a8d9385a40d2f92f348bdf4fdbcc9064ffa1bb912fc051/xxtea-3.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "656457b2aa2fd1b32e3ac30abd4e3d3f22267887ce1f8882729c53a381d171fb",
                "md5": "3ba12aa15f48aead9ddf50bc4ebde350",
                "sha256": "fddd8dc4cb9284403675f6c2dacfbc9515db6242bdb82ddc136b2f93b490eaa2"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ba12aa15f48aead9ddf50bc4ebde350",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 9853,
            "upload_time": "2024-08-09T15:42:57",
            "upload_time_iso_8601": "2024-08-09T15:42:57.844832Z",
            "url": "https://files.pythonhosted.org/packages/65/64/57b2aa2fd1b32e3ac30abd4e3d3f22267887ce1f8882729c53a381d171fb/xxtea-3.3.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "194310c66ee7708f29327fa370e3440874c0367ce4dbefc7be64b83c0cf28600",
                "md5": "898998adf8c208cc3f6465afc54cc755",
                "sha256": "d25a121c0b70139b491fac342b8e9d118cbd20c84c9be571abf6588d5bb2cb3b"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "898998adf8c208cc3f6465afc54cc755",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 11678,
            "upload_time": "2024-08-09T15:42:59",
            "upload_time_iso_8601": "2024-08-09T15:42:59.241989Z",
            "url": "https://files.pythonhosted.org/packages/19/43/10c66ee7708f29327fa370e3440874c0367ce4dbefc7be64b83c0cf28600/xxtea-3.3.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09c730860d14b1c5f7885e49c5be8652599efe2f12f59b45b4302a103aab27b2",
                "md5": "140b7f1d7d43286a04f7b6d48c6162d2",
                "sha256": "e437420bdf40b9317d69d88ed83e6e70d581cd7555d16a6e74ecaffc1d6efc3f"
            },
            "downloads": -1,
            "filename": "xxtea-3.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "140b7f1d7d43286a04f7b6d48c6162d2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 13001,
            "upload_time": "2024-08-09T15:43:00",
            "upload_time_iso_8601": "2024-08-09T15:43:00.329668Z",
            "url": "https://files.pythonhosted.org/packages/09/c7/30860d14b1c5f7885e49c5be8652599efe2f12f59b45b4302a103aab27b2/xxtea-3.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-09 15:43:00",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ifduyue",
    "github_project": "xxtea",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "xxtea"
}
        
Elapsed time: 0.36874s