VBMicrolensing


NameVBMicrolensing JSON
Version 4.2 PyPI version JSON
download
home_pageNone
SummaryVBMicrolensing is a tool for efficient computation in gravitational microlensing events using the advanced contour integration method, supporting single, binary and multiple lenses.
upload_time2025-01-19 14:22:08
maintainerNone
docs_urlNone
authorNone
requires_python<4,>=3.7
licenseLGPL-3.0
keywords microlensing magnification and astrometry
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # VBMicrolensing
`VBMicrolensing` is a tool for efficient computation in gravitational 
microlensing events using the advanced contour integration method, supporting single, binary and multiple lenses. 

In particular, VBMicrolensing is designed for the following calculations:
- **Magnification** by single, binary and multiple lenses
- **Centroid** of the images generated by single and binary lenses
- **Critical curves and caustics** of binary and multiple lenses
- Complete **light curves** including several higher order effects: limb darkening of the source, binary source, parallax, xallarap, circular and elliptic orbital motion.

`VBMicrolensing` is written as a C++ library and wrapped as a Python package, the user can call the code from either C++ or Python. This new code encompasses the well-known [VBBinaryLensing](https://github.com/valboz/VBBinaryLensing) code, which is at the basis of several platforms for microlensing modeling. `VBBinaryLensing` will still be available as a legacy software, but will no longer be maintained. 

`VBMicrolensing` has been developed by **Valerio Bozza**, University of Salerno, with a substantial contribution by **Vito Saggese**, University of Naples. We also acknowledge a long list of collaborators who contributed to testing and development of particular aspects over the years: Etienne Bachelet, Fran Bartolic, Sebastiano Calchi Novati, Giovanni Covone, Giuseppe D'Ago, Tyler Heintz, Ava Hoag, Markus Hundertmark, Elahe Khalouei, Radek Poleski, Haibin Ren, Paolo Rota, Sedighe Sajadian, Rachel Street, Jiyuan Zhang, Keto Zhang, Weicheng Zhang, Wei Zhu.

## Attribution
Any use of this code for scientific publications should be acknowledged by a citation to the works relevant to your study:
- [V. Bozza, MNRAS 408 (2010) 2188](https://ui.adsabs.harvard.edu/abs/2010MNRAS.408.2188B/abstract): general algorithm for binary lensing;
- [V. Bozza et al., MNRAS 479 (2018) 5157](https://ui.adsabs.harvard.edu/abs/2018MNRAS.479.5157B/abstract): BinaryMag2 function, Extended-Source-Point-Lens methods; 
- [V. Bozza, E. Khalouei and E. Bachelet, MNRAS 505 (2021) 126](https://ui.adsabs.harvard.edu/abs/2021MNRAS.505..126B/abstract): astrometry, generalized limb darkening, Keplerian orbital motion; 
- [V. Bozza, v. Saggese, G. Covone, P. Rota & J. Zhang, arXiv:2410.13660 (2024)](https://arxiv.org/abs/2410.13660): multiple lenses.

If specifically relevant to your work, please also cite
[J. Skowron and A. Gould, arXiv:1203.1034](https://arxiv.org/abs/1203.1034).
 
## Installation

### Python

The easiest way to install `VBMicrolensing` is through `pip install VBMicrolensing`

In alternative, in order to use the latest build, clone this GitHub repository on your computer, enter your local copy of the repository and run
```
pip install .
```

Currently, `VBMicrolensing` works on Linux, Windows, MacOS and python >= 2.7. The package requires a C++ compiler supporting C++17.

### C++

If you just want to use the C++ library, clone this repository, all cpp files and the 
`VBMicrolensing.h` are located in in `VBMicrolensing/lib` and should be added to your project. 

The package also contains the following files:
- `VBMicrolensing/data/ESPL.tbl`  - Pre-calculated table for Extended-source-point-lens
- `VBMicrolensing/data/OB151212coords.txt` - Sample file with event coordinates
- `VBMicrolensing/data/satellite1.txt` - Sample table for satellite position (Spitzer)
- `VBMicrolensing/data/satellite2.txt` - Sample table for satellite position (Kepler)
  
## Documentation
Full [documentation for the use of VBmicrolensing in python](/docs/python/readme.md) and [documentation for the use of VBmicrolensing in C++](/docs/C++/readme.md) are available.

Furthermore, the vast majority of functions are documented with Python docstrings which can be accessed as, for example, `?VBBL.BinaryMag2()` in
a Jupyter notebook.

We also provide some [examples](examples) showing the capabilities of the package. In particular, we reproduce some known triple-lense microlensing events.

## License
VBMicrolensing is freely available to the community under the 
GNU Lesser General Public License Version 3 included in this repository.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "VBMicrolensing",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4,>=3.7",
    "maintainer_email": null,
    "keywords": "Microlensing magnification and astrometry",
    "author": null,
    "author_email": "Valerio Bozza <valboz@sa.infn.it>, Vito Saggese <vitosaggese.vs@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/d4/ed/c494c5013bf071ef6088e3243fb36546303cd12dc947715cf70f1b701d1b/vbmicrolensing-4.2.tar.gz",
    "platform": null,
    "description": "# VBMicrolensing\n`VBMicrolensing` is a tool for efficient computation in gravitational \nmicrolensing events using the advanced contour integration method, supporting single, binary and multiple lenses. \n\nIn particular, VBMicrolensing is designed for the following calculations:\n- **Magnification** by single, binary and multiple lenses\n- **Centroid** of the images generated by single and binary lenses\n- **Critical curves and caustics** of binary and multiple lenses\n- Complete **light curves** including several higher order effects: limb darkening of the source, binary source, parallax, xallarap, circular and elliptic orbital motion.\n\n`VBMicrolensing` is written as a C++ library and wrapped as a Python package, the user can call the code from either C++ or Python. This new code encompasses the well-known [VBBinaryLensing](https://github.com/valboz/VBBinaryLensing) code, which is at the basis of several platforms for microlensing modeling. `VBBinaryLensing` will still be available as a legacy software, but will no longer be maintained. \n\n`VBMicrolensing` has been developed by **Valerio Bozza**, University of Salerno, with a substantial contribution by **Vito Saggese**, University of Naples. We also acknowledge a long list of collaborators who contributed to testing and development of particular aspects over the years: Etienne Bachelet, Fran Bartolic, Sebastiano Calchi Novati, Giovanni Covone, Giuseppe D'Ago, Tyler Heintz, Ava Hoag, Markus Hundertmark, Elahe Khalouei, Radek Poleski, Haibin Ren, Paolo Rota, Sedighe Sajadian, Rachel Street, Jiyuan Zhang, Keto Zhang, Weicheng Zhang, Wei Zhu.\n\n## Attribution\nAny use of this code for scientific publications should be acknowledged by a citation to the works relevant to your study:\n- [V. Bozza, MNRAS 408 (2010) 2188](https://ui.adsabs.harvard.edu/abs/2010MNRAS.408.2188B/abstract): general algorithm for binary lensing;\n- [V. Bozza et al., MNRAS 479 (2018) 5157](https://ui.adsabs.harvard.edu/abs/2018MNRAS.479.5157B/abstract): BinaryMag2 function, Extended-Source-Point-Lens methods; \n- [V. Bozza, E. Khalouei and E. Bachelet, MNRAS 505 (2021) 126](https://ui.adsabs.harvard.edu/abs/2021MNRAS.505..126B/abstract): astrometry, generalized limb darkening, Keplerian orbital motion; \n- [V. Bozza, v. Saggese, G. Covone, P. Rota & J. Zhang, arXiv:2410.13660 (2024)](https://arxiv.org/abs/2410.13660): multiple lenses.\n\nIf specifically relevant to your work, please also cite\n[J. Skowron and A. Gould, arXiv:1203.1034](https://arxiv.org/abs/1203.1034).\n \n## Installation\n\n### Python\n\nThe easiest way to install `VBMicrolensing` is through `pip install VBMicrolensing`\n\nIn alternative, in order to use the latest build, clone this GitHub repository on your computer, enter your local copy of the repository and run\n```\npip install .\n```\n\nCurrently, `VBMicrolensing` works on Linux, Windows, MacOS and python >= 2.7. The package requires a C++ compiler supporting C++17.\n\n### C++\n\nIf you just want to use the C++ library, clone this repository, all cpp files and the \n`VBMicrolensing.h` are located in in `VBMicrolensing/lib` and should be added to your project. \n\nThe package also contains the following files:\n- `VBMicrolensing/data/ESPL.tbl`  - Pre-calculated table for Extended-source-point-lens\n- `VBMicrolensing/data/OB151212coords.txt` - Sample file with event coordinates\n- `VBMicrolensing/data/satellite1.txt` - Sample table for satellite position (Spitzer)\n- `VBMicrolensing/data/satellite2.txt` - Sample table for satellite position (Kepler)\n  \n## Documentation\nFull [documentation for the use of VBmicrolensing in python](/docs/python/readme.md) and [documentation for the use of VBmicrolensing in C++](/docs/C++/readme.md) are available.\n\nFurthermore, the vast majority of functions are documented with Python docstrings which can be accessed as, for example, `?VBBL.BinaryMag2()` in\na Jupyter notebook.\n\nWe also provide some [examples](examples) showing the capabilities of the package. In particular, we reproduce some known triple-lense microlensing events.\n\n## License\nVBMicrolensing is freely available to the community under the \nGNU Lesser General Public License Version 3 included in this repository.\n",
    "bugtrack_url": null,
    "license": "LGPL-3.0",
    "summary": "VBMicrolensing is a tool for efficient computation in gravitational microlensing events using the advanced contour integration method, supporting single, binary and multiple lenses.",
    "version": "4.2",
    "project_urls": {
        "Homepage": "https://github.com/valboz/VBMicrolensing"
    },
    "split_keywords": [
        "microlensing",
        "magnification",
        "and",
        "astrometry"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbbbc2b0d6040cddcf07ead7c309d7292d4bf6da3fece47d7abec6b93ba1b4d0",
                "md5": "97e3f275ea49452c20b0a4488af43faf",
                "sha256": "8a8ac24d81f67b7dd53c7fb65127b0523cb1fad560a9e5cd28c351cea84ee4ca"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp310-cp310-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "97e3f275ea49452c20b0a4488af43faf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 743213,
            "upload_time": "2025-01-19T14:19:32",
            "upload_time_iso_8601": "2025-01-19T14:19:32.477768Z",
            "url": "https://files.pythonhosted.org/packages/bb/bb/c2b0d6040cddcf07ead7c309d7292d4bf6da3fece47d7abec6b93ba1b4d0/vbmicrolensing-4.2-cp310-cp310-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d6852ee04909f11b197d1b971bf561fc82c7a63800e2628e75323ac37fc3c89",
                "md5": "ff8e6fee1044bdd2c7de95d24be64b56",
                "sha256": "b042c2a5dce3e75cd0f95c831bc1142a2668d584725f26429d618f5ac879513d"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ff8e6fee1044bdd2c7de95d24be64b56",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 719033,
            "upload_time": "2025-01-19T14:19:34",
            "upload_time_iso_8601": "2025-01-19T14:19:34.526965Z",
            "url": "https://files.pythonhosted.org/packages/2d/68/52ee04909f11b197d1b971bf561fc82c7a63800e2628e75323ac37fc3c89/vbmicrolensing-4.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc7fc9c70d48351d0c2863eec0edcf618bf9e494cb1d57ab39f58e17ae80c350",
                "md5": "0acdb02aad4be5f24efcc41185ee4382",
                "sha256": "1ef2fdae2a2b4c9c83079fe86e0afe9a87e55a032eee30b9a0cf54a27d930c81"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0acdb02aad4be5f24efcc41185ee4382",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 786752,
            "upload_time": "2025-01-19T14:19:36",
            "upload_time_iso_8601": "2025-01-19T14:19:36.727461Z",
            "url": "https://files.pythonhosted.org/packages/bc/7f/c9c70d48351d0c2863eec0edcf618bf9e494cb1d57ab39f58e17ae80c350/vbmicrolensing-4.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d46303c1dab658f1a624c773d1ab977dccbae73705bb816554e9e4294f4b3181",
                "md5": "b3be476ea5c13ac28f3e0825373f1866",
                "sha256": "cf4233ceff25e09418a92377a7738c21b1d8eb1baf7329e4560041385b5f6fc9"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b3be476ea5c13ac28f3e0825373f1866",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 785555,
            "upload_time": "2025-01-19T14:19:40",
            "upload_time_iso_8601": "2025-01-19T14:19:40.367638Z",
            "url": "https://files.pythonhosted.org/packages/d4/63/03c1dab658f1a624c773d1ab977dccbae73705bb816554e9e4294f4b3181/vbmicrolensing-4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55cbc9d8de8e46839f5aaf78a5e0d2a8bd7f2073026c736b66d31240c27f3a11",
                "md5": "f9c0d6498d7d45b3703d67a60ab6383f",
                "sha256": "7d77d4e17cfa58a8151151f3ec5fc48b105c3170dcd412fa45f18034ec3391d7"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "f9c0d6498d7d45b3703d67a60ab6383f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 1872171,
            "upload_time": "2025-01-19T14:19:43",
            "upload_time_iso_8601": "2025-01-19T14:19:43.144225Z",
            "url": "https://files.pythonhosted.org/packages/55/cb/c9d8de8e46839f5aaf78a5e0d2a8bd7f2073026c736b66d31240c27f3a11/vbmicrolensing-4.2-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a83ad431ffb38ff0df59bf65b39ed0c027ea82cae87a4bc87998e6742dd5e4d",
                "md5": "294af81bc687faaf924e4a5847b99190",
                "sha256": "62fa838e8090fdbd66ca1880dc2e48cc9a546049d8ff9d5a8357254c7efb8dd6"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "294af81bc687faaf924e4a5847b99190",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 1760445,
            "upload_time": "2025-01-19T14:19:45",
            "upload_time_iso_8601": "2025-01-19T14:19:45.468984Z",
            "url": "https://files.pythonhosted.org/packages/5a/83/ad431ffb38ff0df59bf65b39ed0c027ea82cae87a4bc87998e6742dd5e4d/vbmicrolensing-4.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85cf4422bbcfe4e38fb50e0807ea8a969f5291fe4e95abe2b7f8639144643d88",
                "md5": "b88eb35500dbde293bf94cde515e280e",
                "sha256": "1b40effc7faa8f059030884e3088273303fb987f72adf94da459eae53133a062"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "b88eb35500dbde293bf94cde515e280e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 690931,
            "upload_time": "2025-01-19T14:19:47",
            "upload_time_iso_8601": "2025-01-19T14:19:47.675352Z",
            "url": "https://files.pythonhosted.org/packages/85/cf/4422bbcfe4e38fb50e0807ea8a969f5291fe4e95abe2b7f8639144643d88/vbmicrolensing-4.2-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4106225fbdea39335e9a68e281dc75ae510c83030e47c52398e4a1552a230bf",
                "md5": "b832bb4351efd8a03e2e77c15f774543",
                "sha256": "072bd0dbc6b578dc31ab61f85bab77de85f66f9acbc7988201e22acdcc148ca8"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b832bb4351efd8a03e2e77c15f774543",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 723448,
            "upload_time": "2025-01-19T14:19:49",
            "upload_time_iso_8601": "2025-01-19T14:19:49.764608Z",
            "url": "https://files.pythonhosted.org/packages/a4/10/6225fbdea39335e9a68e281dc75ae510c83030e47c52398e4a1552a230bf/vbmicrolensing-4.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0cb6fd1a07c83c116f6aeaf7421412ca925f76ccfcc421eab4495cf57ea5c68",
                "md5": "f24ae02df12abd9eedc1a36c77e7b8d8",
                "sha256": "ab2d84bb4a3b6b244653f9c17f1890861008f66ad00eac7fec8ec22231a3604b"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp311-cp311-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f24ae02df12abd9eedc1a36c77e7b8d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 744509,
            "upload_time": "2025-01-19T14:19:51",
            "upload_time_iso_8601": "2025-01-19T14:19:51.818763Z",
            "url": "https://files.pythonhosted.org/packages/c0/cb/6fd1a07c83c116f6aeaf7421412ca925f76ccfcc421eab4495cf57ea5c68/vbmicrolensing-4.2-cp311-cp311-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5de4aeef728d410739f5f5154efc794130981dcc7103f639a1f4c3ba493b6305",
                "md5": "dbf827ceab17f4e0fe4d104ef5c9be04",
                "sha256": "dd4811be1c41ff4dc5674371e2572e6da710c7bf50608833f8ab243a3623c940"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dbf827ceab17f4e0fe4d104ef5c9be04",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 720383,
            "upload_time": "2025-01-19T14:19:53",
            "upload_time_iso_8601": "2025-01-19T14:19:53.297798Z",
            "url": "https://files.pythonhosted.org/packages/5d/e4/aeef728d410739f5f5154efc794130981dcc7103f639a1f4c3ba493b6305/vbmicrolensing-4.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aee50c59ceef90c8851f4266d2f83759ee21d22c7cbe26a32a68e5fd45f55a4f",
                "md5": "4b1d9c5fa72d7407583c17fc9e6d77de",
                "sha256": "c48738fed2930803a4f400a834e4f092d99cf44c403456dddca31f1bddef7a69"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4b1d9c5fa72d7407583c17fc9e6d77de",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 787760,
            "upload_time": "2025-01-19T14:19:55",
            "upload_time_iso_8601": "2025-01-19T14:19:55.617879Z",
            "url": "https://files.pythonhosted.org/packages/ae/e5/0c59ceef90c8851f4266d2f83759ee21d22c7cbe26a32a68e5fd45f55a4f/vbmicrolensing-4.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84be70cc13acb4429be08c169570de45b1490c14aaa22651a6b232ea5df08c66",
                "md5": "b56cd59a47e34c3610e4c519d3f0c318",
                "sha256": "968d2ac5c213157aafd4bb320bc4a409a64ecdd7d09053f936fe6380e0ca069e"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b56cd59a47e34c3610e4c519d3f0c318",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 786840,
            "upload_time": "2025-01-19T14:19:57",
            "upload_time_iso_8601": "2025-01-19T14:19:57.742286Z",
            "url": "https://files.pythonhosted.org/packages/84/be/70cc13acb4429be08c169570de45b1490c14aaa22651a6b232ea5df08c66/vbmicrolensing-4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "366cd32f9665280ec729d3442dadd3435adaee79fca66dd7857842659cb685a1",
                "md5": "afccb4ff31e945db48738cedb98e5634",
                "sha256": "5b2727c76d0d258dda5be9349caef0cb78d43cd9780eade05ab4ad5f7f485c9f"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "afccb4ff31e945db48738cedb98e5634",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 1871517,
            "upload_time": "2025-01-19T14:19:59",
            "upload_time_iso_8601": "2025-01-19T14:19:59.675021Z",
            "url": "https://files.pythonhosted.org/packages/36/6c/d32f9665280ec729d3442dadd3435adaee79fca66dd7857842659cb685a1/vbmicrolensing-4.2-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "684443171b8119c13cae43a338e5b7decdd6129a7f41803ae3542e114d067c3b",
                "md5": "4241c74ff9945f746a7d8742dfd98c20",
                "sha256": "303b7832fe610da506125bc7064c1b02a5bc104afda3d9d6c10e9fc00c51ecec"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4241c74ff9945f746a7d8742dfd98c20",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 1762465,
            "upload_time": "2025-01-19T14:20:01",
            "upload_time_iso_8601": "2025-01-19T14:20:01.866897Z",
            "url": "https://files.pythonhosted.org/packages/68/44/43171b8119c13cae43a338e5b7decdd6129a7f41803ae3542e114d067c3b/vbmicrolensing-4.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "956f19bed55774ce87f30e3452721ae75f97842108615562891532e98a12a578",
                "md5": "5ddefb766a855b0d81859820aa4eb9dd",
                "sha256": "63789305b7402dd6c53f07447d7c4a58671b076c80e13b65b5ded85a673e32f9"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "5ddefb766a855b0d81859820aa4eb9dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 691800,
            "upload_time": "2025-01-19T14:20:04",
            "upload_time_iso_8601": "2025-01-19T14:20:04.653544Z",
            "url": "https://files.pythonhosted.org/packages/95/6f/19bed55774ce87f30e3452721ae75f97842108615562891532e98a12a578/vbmicrolensing-4.2-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4fb8676626eeb34ca665b5482eb7599b887b857a02dea353ce45c59122ec9ee",
                "md5": "eb7556714d02cef43e06e1e3d93f4f64",
                "sha256": "5ca893119e247a1aab9db57d62efb19cf916944ea061e62ca6951098c829512c"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eb7556714d02cef43e06e1e3d93f4f64",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 725131,
            "upload_time": "2025-01-19T14:20:08",
            "upload_time_iso_8601": "2025-01-19T14:20:08.167648Z",
            "url": "https://files.pythonhosted.org/packages/b4/fb/8676626eeb34ca665b5482eb7599b887b857a02dea353ce45c59122ec9ee/vbmicrolensing-4.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e94c6161883fcc341e2c363cf99b5eade8e36dc1d42b513253eca8f04e9cc7d",
                "md5": "2d34ea7567dc7411ff2e311dea2e7f53",
                "sha256": "821486fa62e7c6c3e00d561da4d0553acd7853b96dc88a9bc11b3af94e1e10bc"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp312-cp312-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2d34ea7567dc7411ff2e311dea2e7f53",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 745139,
            "upload_time": "2025-01-19T14:20:09",
            "upload_time_iso_8601": "2025-01-19T14:20:09.733167Z",
            "url": "https://files.pythonhosted.org/packages/8e/94/c6161883fcc341e2c363cf99b5eade8e36dc1d42b513253eca8f04e9cc7d/vbmicrolensing-4.2-cp312-cp312-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b44f73d4b4399be56a4e9d392ba1044a9aab6732ceed6922ca7b0c7c7f48ebdd",
                "md5": "a242ac07dabe64e80b392d6ec8e8cb1a",
                "sha256": "28e0c50eb8bb6b2c2bdc73345ce98d32b035bebee3e5f413a97634b91ef6fd1c"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a242ac07dabe64e80b392d6ec8e8cb1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 720151,
            "upload_time": "2025-01-19T14:20:11",
            "upload_time_iso_8601": "2025-01-19T14:20:11.829349Z",
            "url": "https://files.pythonhosted.org/packages/b4/4f/73d4b4399be56a4e9d392ba1044a9aab6732ceed6922ca7b0c7c7f48ebdd/vbmicrolensing-4.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5de7dc070bc4b9903344b27252ebe3c992b995bc38a4ddcae53233e609d7def",
                "md5": "9fe05ff85c047ccc83c7049c8897fe89",
                "sha256": "1919f05f498207b77c1b66675dc87b24a049f3ffc7277fdeae9bcdf0b0d75a63"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9fe05ff85c047ccc83c7049c8897fe89",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 787643,
            "upload_time": "2025-01-19T14:20:13",
            "upload_time_iso_8601": "2025-01-19T14:20:13.998741Z",
            "url": "https://files.pythonhosted.org/packages/f5/de/7dc070bc4b9903344b27252ebe3c992b995bc38a4ddcae53233e609d7def/vbmicrolensing-4.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3d26f578bd6d7ebb20e21b48ade25f78245410635041d2e72f56e2025947d77",
                "md5": "661916c5864a55e8ca6fb1405273f397",
                "sha256": "71d6106f3e80cbc2bf994ed1ee66c68be084f20d1e78a433e67f8ae73927da6e"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "661916c5864a55e8ca6fb1405273f397",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 786443,
            "upload_time": "2025-01-19T14:20:15",
            "upload_time_iso_8601": "2025-01-19T14:20:15.568268Z",
            "url": "https://files.pythonhosted.org/packages/f3/d2/6f578bd6d7ebb20e21b48ade25f78245410635041d2e72f56e2025947d77/vbmicrolensing-4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38cc8e0120e463a8c41c11080152795b8d8bca0c831d4c20af6f68443becbda2",
                "md5": "abf55957f438b0ecb180a7bc8a7f98d2",
                "sha256": "ab9d5056a0c984ce472608f9e3a191009a1daae998a44b212d2e80519cb936a7"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "abf55957f438b0ecb180a7bc8a7f98d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 1873417,
            "upload_time": "2025-01-19T14:20:18",
            "upload_time_iso_8601": "2025-01-19T14:20:18.129006Z",
            "url": "https://files.pythonhosted.org/packages/38/cc/8e0120e463a8c41c11080152795b8d8bca0c831d4c20af6f68443becbda2/vbmicrolensing-4.2-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d17eafdc8632b17527da5bb0733ae350ca6c16bd6acd4d5f320e8483608d95ae",
                "md5": "ffabacba54df503ea37da0a5663b08e3",
                "sha256": "d63610fac08d9e88b6a5bb1167fc83e07289a20cb80f5b863c865661779d7dd7"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ffabacba54df503ea37da0a5663b08e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 1763085,
            "upload_time": "2025-01-19T14:20:20",
            "upload_time_iso_8601": "2025-01-19T14:20:20.320988Z",
            "url": "https://files.pythonhosted.org/packages/d1/7e/afdc8632b17527da5bb0733ae350ca6c16bd6acd4d5f320e8483608d95ae/vbmicrolensing-4.2-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "454b9321a83efbe8c54e9aaa46ea46d9f978226741690eff9a69ba84e8f86192",
                "md5": "5082df961454b4970ab5bc230e8dfb84",
                "sha256": "46f1c7e5d89175f9d28a2bf3d8ca295f093a49de4a1ab87ffcc017a2bd661365"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "5082df961454b4970ab5bc230e8dfb84",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 691965,
            "upload_time": "2025-01-19T14:20:22",
            "upload_time_iso_8601": "2025-01-19T14:20:22.902311Z",
            "url": "https://files.pythonhosted.org/packages/45/4b/9321a83efbe8c54e9aaa46ea46d9f978226741690eff9a69ba84e8f86192/vbmicrolensing-4.2-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac6376654854ae1d4b9c3190bbdecf6317dc86f0d6b580a3fd9019aa09f654e2",
                "md5": "6be219df9b9d786fc516fb711eb62bed",
                "sha256": "37fb2f38c72de91d7ae14eb4941e2eb29f23c888860ff4090af68f8b082bd883"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6be219df9b9d786fc516fb711eb62bed",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 725481,
            "upload_time": "2025-01-19T14:20:24",
            "upload_time_iso_8601": "2025-01-19T14:20:24.436169Z",
            "url": "https://files.pythonhosted.org/packages/ac/63/76654854ae1d4b9c3190bbdecf6317dc86f0d6b580a3fd9019aa09f654e2/vbmicrolensing-4.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a6d4976cbf6928b09062dcfdbd07ffb8125a97e3840bc7dee54206c55b6b457",
                "md5": "d63be4d48dd0207fbfe27bef090ec6e7",
                "sha256": "b71f8424a4d5fbba403944482e7bf17f1b4aa5dfaa5913963ec552c88e9dc7cc"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp313-cp313-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d63be4d48dd0207fbfe27bef090ec6e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 745212,
            "upload_time": "2025-01-19T14:20:25",
            "upload_time_iso_8601": "2025-01-19T14:20:25.914564Z",
            "url": "https://files.pythonhosted.org/packages/5a/6d/4976cbf6928b09062dcfdbd07ffb8125a97e3840bc7dee54206c55b6b457/vbmicrolensing-4.2-cp313-cp313-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebcf45d20a7d5cbacd0230f753c0f5d9114a2e4570fce682dad3a12dd1c1533c",
                "md5": "6298bf2c2ba6873f85b3d7b292aeb362",
                "sha256": "5588a251e6d979b9f7844cacfc2a113df6a7a71472b36a17b9e44d4e01115564"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6298bf2c2ba6873f85b3d7b292aeb362",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 720189,
            "upload_time": "2025-01-19T14:20:27",
            "upload_time_iso_8601": "2025-01-19T14:20:27.451381Z",
            "url": "https://files.pythonhosted.org/packages/eb/cf/45d20a7d5cbacd0230f753c0f5d9114a2e4570fce682dad3a12dd1c1533c/vbmicrolensing-4.2-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4cfe6f85a90490e3667ed493b254a520d696cb3ed6e8a35a7a420589443673ab",
                "md5": "e36588b083adcaef4b3b18f18abd683a",
                "sha256": "2aaedf0ec415628b78e01bad472009dab278d6c6d177919fccf67ac22ce79987"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e36588b083adcaef4b3b18f18abd683a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 787601,
            "upload_time": "2025-01-19T14:20:29",
            "upload_time_iso_8601": "2025-01-19T14:20:29.538378Z",
            "url": "https://files.pythonhosted.org/packages/4c/fe/6f85a90490e3667ed493b254a520d696cb3ed6e8a35a7a420589443673ab/vbmicrolensing-4.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0c12774a068a630df5342b97558b84e701c082400c2866dc7600c870b3bc4b4",
                "md5": "6a5bcc989da08f487833a9880cc1af7c",
                "sha256": "658aef7eb465a39acde911da156eee039c76f32a22222f594daffdc5d49074b7"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6a5bcc989da08f487833a9880cc1af7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 786787,
            "upload_time": "2025-01-19T14:20:31",
            "upload_time_iso_8601": "2025-01-19T14:20:31.250436Z",
            "url": "https://files.pythonhosted.org/packages/f0/c1/2774a068a630df5342b97558b84e701c082400c2866dc7600c870b3bc4b4/vbmicrolensing-4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81266fef798472e875bdf33afbfe09b3649e7c3742b9c26871b621369746ec7f",
                "md5": "61b91693467d4eca0c870b66a2742a91",
                "sha256": "be0ed7d379c304ecd8d55dd4d209464e5dc6aa7e771613af5b7ace52d83c499e"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "61b91693467d4eca0c870b66a2742a91",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 1873358,
            "upload_time": "2025-01-19T14:20:33",
            "upload_time_iso_8601": "2025-01-19T14:20:33.356385Z",
            "url": "https://files.pythonhosted.org/packages/81/26/6fef798472e875bdf33afbfe09b3649e7c3742b9c26871b621369746ec7f/vbmicrolensing-4.2-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "acef11797827a138fdf1cb6832fd37889f0589d06592aa843ce91d9bc89c26c2",
                "md5": "d382addd85aeaa3aa0210094079e2977",
                "sha256": "71ebdf75614ca40ab64ba4ce9dd09bc7c8226b3320c4d0a8a681c5fcdf748f14"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d382addd85aeaa3aa0210094079e2977",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 1763216,
            "upload_time": "2025-01-19T14:20:35",
            "upload_time_iso_8601": "2025-01-19T14:20:35.403632Z",
            "url": "https://files.pythonhosted.org/packages/ac/ef/11797827a138fdf1cb6832fd37889f0589d06592aa843ce91d9bc89c26c2/vbmicrolensing-4.2-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50e2c23cabb65d9e6f141cc485511ee96580b4a5489c6837f785a7a8f194b922",
                "md5": "7ad57a0fa301441bfadb1b64a037905c",
                "sha256": "decbc8121fe807334fffdeb6bfcff3169e222b7acf9b11bc661d53819e150d61"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "7ad57a0fa301441bfadb1b64a037905c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 691973,
            "upload_time": "2025-01-19T14:20:37",
            "upload_time_iso_8601": "2025-01-19T14:20:37.619124Z",
            "url": "https://files.pythonhosted.org/packages/50/e2/c23cabb65d9e6f141cc485511ee96580b4a5489c6837f785a7a8f194b922/vbmicrolensing-4.2-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "208ab45c63005749499d52d7f228f99b53cff72b98a19cd1eb1ed562703ecca7",
                "md5": "063d2114355ab6db5a7821083d3ee3fc",
                "sha256": "853de1c0fdd3b37f385585387cf2f1d6f6d9957fcb47a58519201dc0687d51ca"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "063d2114355ab6db5a7821083d3ee3fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 725518,
            "upload_time": "2025-01-19T14:20:39",
            "upload_time_iso_8601": "2025-01-19T14:20:39.795574Z",
            "url": "https://files.pythonhosted.org/packages/20/8a/b45c63005749499d52d7f228f99b53cff72b98a19cd1eb1ed562703ecca7/vbmicrolensing-4.2-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb30b2bc82e4c5b72d2de1a995e905754080370ac8a3e12a262b2bbb2e0fce15",
                "md5": "e8b5f4ba9081d5100c99f0bb0c1c5af3",
                "sha256": "fc3a31226802242d1801f14c1d4bf57e0e43b51ded076d1dc37f93ef04ff9190"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp37-cp37m-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e8b5f4ba9081d5100c99f0bb0c1c5af3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 740440,
            "upload_time": "2025-01-19T14:20:41",
            "upload_time_iso_8601": "2025-01-19T14:20:41.373609Z",
            "url": "https://files.pythonhosted.org/packages/fb/30/b2bc82e4c5b72d2de1a995e905754080370ac8a3e12a262b2bbb2e0fce15/vbmicrolensing-4.2-cp37-cp37m-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51869197d70578878d052006643d5d6d8cc6b1e2b5e93106f9b9a21f67a2231d",
                "md5": "6f2a07497eceeb6429ff25b6d0688035",
                "sha256": "8dadcd1243e0183ee55f4ad11a8f0629997d4bf4d9bb27ba7fbeb631104c0ae4"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6f2a07497eceeb6429ff25b6d0688035",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 786589,
            "upload_time": "2025-01-19T14:20:43",
            "upload_time_iso_8601": "2025-01-19T14:20:43.625133Z",
            "url": "https://files.pythonhosted.org/packages/51/86/9197d70578878d052006643d5d6d8cc6b1e2b5e93106f9b9a21f67a2231d/vbmicrolensing-4.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67a7b2079d8ebbd071d3a7ce4e590846caee2238ebb5ff8f32e42b2d16a858a3",
                "md5": "9cf8898196e679ea7895c2893b6a55cf",
                "sha256": "6d80d44147285d13550c31dee46f3f7cbe3e1b7c21525ad3f7649c110beaf032"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9cf8898196e679ea7895c2893b6a55cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 785195,
            "upload_time": "2025-01-19T14:20:45",
            "upload_time_iso_8601": "2025-01-19T14:20:45.154808Z",
            "url": "https://files.pythonhosted.org/packages/67/a7/b2079d8ebbd071d3a7ce4e590846caee2238ebb5ff8f32e42b2d16a858a3/vbmicrolensing-4.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77d7bd029666936630899d043f3af684ef27f85a0426b4e38509ef1768619b91",
                "md5": "b26977bb10a2b4a0a148326993e019f9",
                "sha256": "c8e1be92cfafaf51334ce231dfa5ee4287af53fa597b98a9ba2d5d92d9c135e4"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "b26977bb10a2b4a0a148326993e019f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 1878379,
            "upload_time": "2025-01-19T14:20:48",
            "upload_time_iso_8601": "2025-01-19T14:20:48.740532Z",
            "url": "https://files.pythonhosted.org/packages/77/d7/bd029666936630899d043f3af684ef27f85a0426b4e38509ef1768619b91/vbmicrolensing-4.2-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4df95c17bd05205da7a4063f46139859e7b74bd26fe4156f32b344dce592e7b",
                "md5": "9a286344fc506bbf34c1de592f07f745",
                "sha256": "fb798e04b42773606deda50f64f9739457e38f0aa0096b2101c26173d5b12af8"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9a286344fc506bbf34c1de592f07f745",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 1765187,
            "upload_time": "2025-01-19T14:20:51",
            "upload_time_iso_8601": "2025-01-19T14:20:51.859618Z",
            "url": "https://files.pythonhosted.org/packages/d4/df/95c17bd05205da7a4063f46139859e7b74bd26fe4156f32b344dce592e7b/vbmicrolensing-4.2-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0547a6b566f443c20087c048d8dcf16de5a57e36665654f383c302796286e861",
                "md5": "1ba3344da83322db1ddf64943a6a6563",
                "sha256": "dd7247a3cd3995d557e7940aaf20421776237fa3f0b31dae14b1bdce6bbe889d"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "1ba3344da83322db1ddf64943a6a6563",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 692445,
            "upload_time": "2025-01-19T14:20:54",
            "upload_time_iso_8601": "2025-01-19T14:20:54.076626Z",
            "url": "https://files.pythonhosted.org/packages/05/47/a6b566f443c20087c048d8dcf16de5a57e36665654f383c302796286e861/vbmicrolensing-4.2-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10de0560d48529541096138db76d019f7dbb08d44db38ca6c0b743f8ce9283a4",
                "md5": "06b2f57bfe4bdf8817685b9d76037127",
                "sha256": "373334c5b4f4f960495d1cc46645a2f51817ecb10be9d0cb479f92d672e010bb"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "06b2f57bfe4bdf8817685b9d76037127",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 723091,
            "upload_time": "2025-01-19T14:20:56",
            "upload_time_iso_8601": "2025-01-19T14:20:56.390663Z",
            "url": "https://files.pythonhosted.org/packages/10/de/0560d48529541096138db76d019f7dbb08d44db38ca6c0b743f8ce9283a4/vbmicrolensing-4.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "052f88156b4ad398e4141bdba0a42653202cb173a884d8d2c28402ddb9bcf9aa",
                "md5": "65dc49e14ec425a26ec9c21d1014ae9d",
                "sha256": "4c0be4f9c4f00ac7f2654edf1ffab11afe918f0b7218c4663252d1768e0689bb"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp38-cp38-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "65dc49e14ec425a26ec9c21d1014ae9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 743032,
            "upload_time": "2025-01-19T14:20:57",
            "upload_time_iso_8601": "2025-01-19T14:20:57.983507Z",
            "url": "https://files.pythonhosted.org/packages/05/2f/88156b4ad398e4141bdba0a42653202cb173a884d8d2c28402ddb9bcf9aa/vbmicrolensing-4.2-cp38-cp38-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60e29b93e9fb7d370033363cc2269586b9dce84288728ce0559168e629ae64dd",
                "md5": "76c3337caa748338d7a7d59fd034a90e",
                "sha256": "1daef7e1cf69b1fa62e6c69577e316323bd9f4a4304df2da4e44b3d8e9d24911"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "76c3337caa748338d7a7d59fd034a90e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 718891,
            "upload_time": "2025-01-19T14:20:59",
            "upload_time_iso_8601": "2025-01-19T14:20:59.444581Z",
            "url": "https://files.pythonhosted.org/packages/60/e2/9b93e9fb7d370033363cc2269586b9dce84288728ce0559168e629ae64dd/vbmicrolensing-4.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f781b298cd19bfa1b4cd52d95fbdd663e029de8d90e554b4150112851874fbec",
                "md5": "af8f64e25d97eb5611f9157aa9671847",
                "sha256": "2f8b367578fd24e9aecc787a0903d9fcc958444a4b53ef0f2a5a22ec283d0bca"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "af8f64e25d97eb5611f9157aa9671847",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 787185,
            "upload_time": "2025-01-19T14:21:01",
            "upload_time_iso_8601": "2025-01-19T14:21:01.010878Z",
            "url": "https://files.pythonhosted.org/packages/f7/81/b298cd19bfa1b4cd52d95fbdd663e029de8d90e554b4150112851874fbec/vbmicrolensing-4.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "810b757774213840d78e38d5a81452d281554596f8731a24fa4ce3c9d5c2302c",
                "md5": "5f5e11bfa68b437ebe1bdfc9b788d7b2",
                "sha256": "dffcb4699c09ff9259a27c00769d63ea00def5ff9fd23feed8f5baf912011646"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f5e11bfa68b437ebe1bdfc9b788d7b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 785259,
            "upload_time": "2025-01-19T14:21:03",
            "upload_time_iso_8601": "2025-01-19T14:21:03.156576Z",
            "url": "https://files.pythonhosted.org/packages/81/0b/757774213840d78e38d5a81452d281554596f8731a24fa4ce3c9d5c2302c/vbmicrolensing-4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "911cd4b5ed3fca373efaecfcd056145d7ab38b6d70f137cba05b3e9349067b50",
                "md5": "e6b491390d7a78570628016c23d9c3d1",
                "sha256": "6199ea5f52f401ca1aab0c25a0b01fdcc4fd2fb881350f77707b0890ec83fff3"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e6b491390d7a78570628016c23d9c3d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 1871847,
            "upload_time": "2025-01-19T14:21:05",
            "upload_time_iso_8601": "2025-01-19T14:21:05.238568Z",
            "url": "https://files.pythonhosted.org/packages/91/1c/d4b5ed3fca373efaecfcd056145d7ab38b6d70f137cba05b3e9349067b50/vbmicrolensing-4.2-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "444f663bc25834905a72fdda6aa9dd275c393f5519979476227c35008a0a42c4",
                "md5": "badbed77a78087c69d0af1d924ae868b",
                "sha256": "034f16918abff82785ae67d71e8a38f508b0413c8eec12677416acf816074e1b"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "badbed77a78087c69d0af1d924ae868b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 1759851,
            "upload_time": "2025-01-19T14:21:12",
            "upload_time_iso_8601": "2025-01-19T14:21:12.314186Z",
            "url": "https://files.pythonhosted.org/packages/44/4f/663bc25834905a72fdda6aa9dd275c393f5519979476227c35008a0a42c4/vbmicrolensing-4.2-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48332be9b04095235196ed1d881b06eb163cd52ba64482b59ef3b956ad6611d7",
                "md5": "ef022df72f9150c5f6c0dd9a423ee69c",
                "sha256": "fed108810397777b6c96de776c53aebc5036b7f7e34b461f64f0d290cdc3e94d"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "ef022df72f9150c5f6c0dd9a423ee69c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 690784,
            "upload_time": "2025-01-19T14:21:13",
            "upload_time_iso_8601": "2025-01-19T14:21:13.885529Z",
            "url": "https://files.pythonhosted.org/packages/48/33/2be9b04095235196ed1d881b06eb163cd52ba64482b59ef3b956ad6611d7/vbmicrolensing-4.2-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d5393cde36ab54021e901200bb2534a5287c69c2d97b5987c10dadeca206683",
                "md5": "516d6f1e58837454b82db4b7702ca800",
                "sha256": "ba5431c8d293b89fe1b16c1391f2ac58ada63f286412af4142ccd035add6111a"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "516d6f1e58837454b82db4b7702ca800",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 723822,
            "upload_time": "2025-01-19T14:21:15",
            "upload_time_iso_8601": "2025-01-19T14:21:15.995731Z",
            "url": "https://files.pythonhosted.org/packages/0d/53/93cde36ab54021e901200bb2534a5287c69c2d97b5987c10dadeca206683/vbmicrolensing-4.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42b86ee2dc25d4fd1df2804797ef0af3d8ca1a429e595b359113c919f9a86f08",
                "md5": "26638b3da1127e7320773d3e6220f8b8",
                "sha256": "bef4d0a534cae667863ce62440fabfd982bc134bc68d0c5f98c9f3be6f91fe3b"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp39-cp39-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "26638b3da1127e7320773d3e6220f8b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 743239,
            "upload_time": "2025-01-19T14:21:17",
            "upload_time_iso_8601": "2025-01-19T14:21:17.522597Z",
            "url": "https://files.pythonhosted.org/packages/42/b8/6ee2dc25d4fd1df2804797ef0af3d8ca1a429e595b359113c919f9a86f08/vbmicrolensing-4.2-cp39-cp39-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c333ee01df24e2916335f38b44fde88e9d7c76e7a14fa92d575bdc981dde6cf",
                "md5": "fbe0c39941a87416e2c08f8ba4aeb1a1",
                "sha256": "d19b7ec0fbcbc1d67adae06a1f0a8b6ea89f56b24afc6b0947881aed1e9043bb"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fbe0c39941a87416e2c08f8ba4aeb1a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 719128,
            "upload_time": "2025-01-19T14:21:19",
            "upload_time_iso_8601": "2025-01-19T14:21:19.114580Z",
            "url": "https://files.pythonhosted.org/packages/9c/33/3ee01df24e2916335f38b44fde88e9d7c76e7a14fa92d575bdc981dde6cf/vbmicrolensing-4.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37af4fec7af4a6ea352d0ff907ab1ecd8ad7cb168bb3d67a1e93649b09c87e4d",
                "md5": "e2eae5e9c8b16ccf7bc773fd66540c37",
                "sha256": "401da59f5d4808907c4988bf8be5df0d0fea4cf3de089d526e7f18f04752f463"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e2eae5e9c8b16ccf7bc773fd66540c37",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 786926,
            "upload_time": "2025-01-19T14:21:20",
            "upload_time_iso_8601": "2025-01-19T14:21:20.744047Z",
            "url": "https://files.pythonhosted.org/packages/37/af/4fec7af4a6ea352d0ff907ab1ecd8ad7cb168bb3d67a1e93649b09c87e4d/vbmicrolensing-4.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eeaf7dbd2bf83b4d68e5b1fda3e2cf41d9001565a59fddb1040e15d3a0b246ea",
                "md5": "80b667681a7d0d01e2478aab61a21e63",
                "sha256": "2414fd9c568a5d426639e5b6db14f43a2bd881e1f67fca38bf4476d70d0714ec"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "80b667681a7d0d01e2478aab61a21e63",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 785619,
            "upload_time": "2025-01-19T14:21:22",
            "upload_time_iso_8601": "2025-01-19T14:21:22.402348Z",
            "url": "https://files.pythonhosted.org/packages/ee/af/7dbd2bf83b4d68e5b1fda3e2cf41d9001565a59fddb1040e15d3a0b246ea/vbmicrolensing-4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b64102eb9777ceb941637d81a77920c21a77989802534897d3c3b7336875bbf8",
                "md5": "dd2234b6e5030b020fe1bdd9c6dfc25d",
                "sha256": "5666f58cdcbda5188ed0a3351cb3ee44355ea6f73035829d0dded33a6cd7d83f"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "dd2234b6e5030b020fe1bdd9c6dfc25d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 1872029,
            "upload_time": "2025-01-19T14:21:24",
            "upload_time_iso_8601": "2025-01-19T14:21:24.443396Z",
            "url": "https://files.pythonhosted.org/packages/b6/41/02eb9777ceb941637d81a77920c21a77989802534897d3c3b7336875bbf8/vbmicrolensing-4.2-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c16b66005d0b3fc922062e696157b50ab6034dfd764b1235ebe2bfe9716f98e3",
                "md5": "19a8c563a08fc16d1e5fbca493362df2",
                "sha256": "7d2faa01d5b3d343dac99d9dccee500f42a389241dca870579dba80c2e2f6bdf"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "19a8c563a08fc16d1e5fbca493362df2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 1760409,
            "upload_time": "2025-01-19T14:21:26",
            "upload_time_iso_8601": "2025-01-19T14:21:26.792138Z",
            "url": "https://files.pythonhosted.org/packages/c1/6b/66005d0b3fc922062e696157b50ab6034dfd764b1235ebe2bfe9716f98e3/vbmicrolensing-4.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1602d002a4f6f0466972082a1aa9cee490621c3aee9ec9d00ad9b80d51ebabed",
                "md5": "e1279c87ecad7a7b1f725c02f2eb548c",
                "sha256": "0c3ff82e21284cb7ba737c0d7075d6b401d0819fc91571ff5281e74be1755906"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "e1279c87ecad7a7b1f725c02f2eb548c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 691044,
            "upload_time": "2025-01-19T14:21:29",
            "upload_time_iso_8601": "2025-01-19T14:21:29.215156Z",
            "url": "https://files.pythonhosted.org/packages/16/02/d002a4f6f0466972082a1aa9cee490621c3aee9ec9d00ad9b80d51ebabed/vbmicrolensing-4.2-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86dd75284629ebabb9a431cbf823a657e66c1ff8ab1762b0303159dff2faed3c",
                "md5": "6431f0e567ff748a3811d3cf3dcd07d3",
                "sha256": "99cb0931d29cd0c9de535793f7d40f746daa79c6cf0df840e2e29790d9732b78"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6431f0e567ff748a3811d3cf3dcd07d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 718115,
            "upload_time": "2025-01-19T14:21:31",
            "upload_time_iso_8601": "2025-01-19T14:21:31.028171Z",
            "url": "https://files.pythonhosted.org/packages/86/dd/75284629ebabb9a431cbf823a657e66c1ff8ab1762b0303159dff2faed3c/vbmicrolensing-4.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7dc16ab55f26bee8a92195f7ad959b66ce16f73770193b9600912d28a16634a8",
                "md5": "158dda190d1a068abdd82b8d3927bd15",
                "sha256": "7c979e660a4ac06b3b89cac9cfe86815aba7ade556e5c434e3d195e39c8b344c"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "158dda190d1a068abdd82b8d3927bd15",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4,>=3.7",
            "size": 743127,
            "upload_time": "2025-01-19T14:21:32",
            "upload_time_iso_8601": "2025-01-19T14:21:32.891121Z",
            "url": "https://files.pythonhosted.org/packages/7d/c1/6ab55f26bee8a92195f7ad959b66ce16f73770193b9600912d28a16634a8/vbmicrolensing-4.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71c0d48d2eecef7bc9ecdf43770881e5f71106ce37b01ec0cfeee56037e0ed6f",
                "md5": "e2c3c0e3cb6e327cfcc3f2f32767c70b",
                "sha256": "fc4746ae43fda12b337d28ff743d15928946baa08ad6a6b58475d66c60d249a8"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e2c3c0e3cb6e327cfcc3f2f32767c70b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4,>=3.7",
            "size": 718913,
            "upload_time": "2025-01-19T14:21:34",
            "upload_time_iso_8601": "2025-01-19T14:21:34.504312Z",
            "url": "https://files.pythonhosted.org/packages/71/c0/d48d2eecef7bc9ecdf43770881e5f71106ce37b01ec0cfeee56037e0ed6f/vbmicrolensing-4.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "278eca2c9218bfde6fa47fc8cb3e746f9e52ca158a7b71bcb59228524e1c2678",
                "md5": "0af1c6bc0e5b5f3e263d2b545c2dff3c",
                "sha256": "97b0e2171ed7f51e369776098c57f4ab7e120e8d3339180b1273404369325d71"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0af1c6bc0e5b5f3e263d2b545c2dff3c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4,>=3.7",
            "size": 786727,
            "upload_time": "2025-01-19T14:21:36",
            "upload_time_iso_8601": "2025-01-19T14:21:36.193152Z",
            "url": "https://files.pythonhosted.org/packages/27/8e/ca2c9218bfde6fa47fc8cb3e746f9e52ca158a7b71bcb59228524e1c2678/vbmicrolensing-4.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86db8c208d6373dddbdd72873fad19e4a2e5fb3af2fc4aa0acf754b506bdd0f2",
                "md5": "8aafbaa18a57e4fa8c88d45343bf18c4",
                "sha256": "eb1071524401af11e2e75dbe224fe5d2a3f733ff1592bb2d94de98a00914626c"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8aafbaa18a57e4fa8c88d45343bf18c4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4,>=3.7",
            "size": 785277,
            "upload_time": "2025-01-19T14:21:38",
            "upload_time_iso_8601": "2025-01-19T14:21:38.078121Z",
            "url": "https://files.pythonhosted.org/packages/86/db/8c208d6373dddbdd72873fad19e4a2e5fb3af2fc4aa0acf754b506bdd0f2/vbmicrolensing-4.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1123fdbd46afe921b44a9dc52fbe354bf3e568721a06ad6cebcb29e0128e07c8",
                "md5": "a5786b319a1eeb13d117173e2230ed66",
                "sha256": "0399158abb7e96aa6622a54a0e98b453eac88a407754eb4e8ef14779fd1199c9"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a5786b319a1eeb13d117173e2230ed66",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4,>=3.7",
            "size": 723247,
            "upload_time": "2025-01-19T14:21:39",
            "upload_time_iso_8601": "2025-01-19T14:21:39.718778Z",
            "url": "https://files.pythonhosted.org/packages/11/23/fdbd46afe921b44a9dc52fbe354bf3e568721a06ad6cebcb29e0128e07c8/vbmicrolensing-4.2-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb27a89e471bae9d340bf8fbfa2b9dad7d76fce537115b721ed34509e0d4df3a",
                "md5": "d2c8d58106eee7c343885ec37dd57d44",
                "sha256": "ae7fc9d3e3754fe95af91e73149fdd008388565e29eb1b4a506f95f4c92a387b"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp37-pypy37_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d2c8d58106eee7c343885ec37dd57d44",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": "<4,>=3.7",
            "size": 742591,
            "upload_time": "2025-01-19T14:21:41",
            "upload_time_iso_8601": "2025-01-19T14:21:41.906116Z",
            "url": "https://files.pythonhosted.org/packages/cb/27/a89e471bae9d340bf8fbfa2b9dad7d76fce537115b721ed34509e0d4df3a/vbmicrolensing-4.2-pp37-pypy37_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac4d9d28ce93e5655128bfab6b763c4effbf11e4afc1cb87a1c485304517b9de",
                "md5": "f92db13314831638237611d09b484f9a",
                "sha256": "dfb503ffe4d99d9da3114e6859d2ad7dc6ed739603fe80aaca8ea6a2dcd71e99"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f92db13314831638237611d09b484f9a",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": "<4,>=3.7",
            "size": 786115,
            "upload_time": "2025-01-19T14:21:43",
            "upload_time_iso_8601": "2025-01-19T14:21:43.464588Z",
            "url": "https://files.pythonhosted.org/packages/ac/4d/9d28ce93e5655128bfab6b763c4effbf11e4afc1cb87a1c485304517b9de/vbmicrolensing-4.2-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0711529477c6e9aafb87d5a6d9d175d1db31e326481a48b7835a0184f79ef14",
                "md5": "9d5322f3c8dd686aa174c98ea8868623",
                "sha256": "6e293e7816e3b1caf5fc1f51f393f967296048b9a970153a1052bb6336d6f3e3"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d5322f3c8dd686aa174c98ea8868623",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": "<4,>=3.7",
            "size": 784826,
            "upload_time": "2025-01-19T14:21:45",
            "upload_time_iso_8601": "2025-01-19T14:21:45.103986Z",
            "url": "https://files.pythonhosted.org/packages/b0/71/1529477c6e9aafb87d5a6d9d175d1db31e326481a48b7835a0184f79ef14/vbmicrolensing-4.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c156bbf30a9a2961cef62632d24cc558a317910947c9373b35e2401bd4a670b",
                "md5": "3d223b2c5dc618e8903f5aaf43be2f11",
                "sha256": "d4eaaed4851b7922d1a37107bc8d3f114844f5f945f0b7966549024d55283761"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3d223b2c5dc618e8903f5aaf43be2f11",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": "<4,>=3.7",
            "size": 726687,
            "upload_time": "2025-01-19T14:21:46",
            "upload_time_iso_8601": "2025-01-19T14:21:46.692801Z",
            "url": "https://files.pythonhosted.org/packages/9c/15/6bbf30a9a2961cef62632d24cc558a317910947c9373b35e2401bd4a670b/vbmicrolensing-4.2-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7024ec4812f20746d0dd6e650217ba28a742acb76957a5f4880e74d5dfe77583",
                "md5": "f1a7dab6098720e7957fdbc2ed8c3a81",
                "sha256": "e4804b3e74daa126dc946e9f2948d2bdee4013cc5ef61a505e375e9099b94dc0"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f1a7dab6098720e7957fdbc2ed8c3a81",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<4,>=3.7",
            "size": 743138,
            "upload_time": "2025-01-19T14:21:48",
            "upload_time_iso_8601": "2025-01-19T14:21:48.250933Z",
            "url": "https://files.pythonhosted.org/packages/70/24/ec4812f20746d0dd6e650217ba28a742acb76957a5f4880e74d5dfe77583/vbmicrolensing-4.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9754158265f59fd1f25d6f462ffb448e6d285afd2bf5e9f1f965a8b5fcfa963e",
                "md5": "9195b121e53e9125a68042c7827f1af8",
                "sha256": "ff6213e9fb56282a6b465f860c6ae1ace0e7c86e2b48f85acaab02c9d405e328"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9195b121e53e9125a68042c7827f1af8",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<4,>=3.7",
            "size": 718934,
            "upload_time": "2025-01-19T14:21:50",
            "upload_time_iso_8601": "2025-01-19T14:21:50.259185Z",
            "url": "https://files.pythonhosted.org/packages/97/54/158265f59fd1f25d6f462ffb448e6d285afd2bf5e9f1f965a8b5fcfa963e/vbmicrolensing-4.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca88aba3bb6b2fdbda358296f69b8b2fea0fbe6f7d97d8d709a4371d9f409135",
                "md5": "3debb0819f97f6fad484e117a7f81cc4",
                "sha256": "4075279ae06e94c5951964c36cc3fda0e69ef87a7227602df8ded09ad4b0bc63"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3debb0819f97f6fad484e117a7f81cc4",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<4,>=3.7",
            "size": 786536,
            "upload_time": "2025-01-19T14:21:51",
            "upload_time_iso_8601": "2025-01-19T14:21:51.802023Z",
            "url": "https://files.pythonhosted.org/packages/ca/88/aba3bb6b2fdbda358296f69b8b2fea0fbe6f7d97d8d709a4371d9f409135/vbmicrolensing-4.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0332c4a808708288c48e81e757fe80a877719dfa5d0adfb04845f2e9fa4f002",
                "md5": "b6218a8c907129d7be4ccf7f3c68232f",
                "sha256": "e033dfeefe3497f9341c1ddd689b0934e585b6300b17c27b38e40dd83a523186"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b6218a8c907129d7be4ccf7f3c68232f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<4,>=3.7",
            "size": 784784,
            "upload_time": "2025-01-19T14:21:53",
            "upload_time_iso_8601": "2025-01-19T14:21:53.422129Z",
            "url": "https://files.pythonhosted.org/packages/c0/33/2c4a808708288c48e81e757fe80a877719dfa5d0adfb04845f2e9fa4f002/vbmicrolensing-4.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "982ae1c3138bcf6c75b1932813647427c5a3a8bc4fffab7f8553abc3cd08a45d",
                "md5": "96a62f9b65f9828a1a9d278917d0cae8",
                "sha256": "992f5de3c8953f32471dad3ac1fa7b3c53a634450e27ee489881a154756361d3"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "96a62f9b65f9828a1a9d278917d0cae8",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<4,>=3.7",
            "size": 726995,
            "upload_time": "2025-01-19T14:21:55",
            "upload_time_iso_8601": "2025-01-19T14:21:55.577471Z",
            "url": "https://files.pythonhosted.org/packages/98/2a/e1c3138bcf6c75b1932813647427c5a3a8bc4fffab7f8553abc3cd08a45d/vbmicrolensing-4.2-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f8b109c4feae5cd735ab0e34870ee275b7f37d434c26a39afff4fa7a691fe4b",
                "md5": "300d061a8bd592d7268adf4b1c3572c5",
                "sha256": "51ea758a101f1af2791b452f4607816778c28fb408eef5f8c66756815426c698"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "300d061a8bd592d7268adf4b1c3572c5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<4,>=3.7",
            "size": 743062,
            "upload_time": "2025-01-19T14:21:58",
            "upload_time_iso_8601": "2025-01-19T14:21:58.183817Z",
            "url": "https://files.pythonhosted.org/packages/1f/8b/109c4feae5cd735ab0e34870ee275b7f37d434c26a39afff4fa7a691fe4b/vbmicrolensing-4.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "936fcdc925261db10d3681551e01711c22b21e0bf6225de16eaff273870d75ff",
                "md5": "0b167aa37eb440eb959556d3c6b456d9",
                "sha256": "597f06da9765620af165abcc919d03742e74cc94ee7ed6ca1bce8dc20110a370"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0b167aa37eb440eb959556d3c6b456d9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<4,>=3.7",
            "size": 718884,
            "upload_time": "2025-01-19T14:22:00",
            "upload_time_iso_8601": "2025-01-19T14:22:00.447304Z",
            "url": "https://files.pythonhosted.org/packages/93/6f/cdc925261db10d3681551e01711c22b21e0bf6225de16eaff273870d75ff/vbmicrolensing-4.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a537cdede48d5e6943e971f6af9c3f5eecb651488f343241bcc971010276a16",
                "md5": "f7b6e9fc878dc9b898566c7b8fa0d17e",
                "sha256": "87ee9a09de30b90c89b49bf3f618d212e8a224802aa086fdc725dece429835c8"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f7b6e9fc878dc9b898566c7b8fa0d17e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<4,>=3.7",
            "size": 786701,
            "upload_time": "2025-01-19T14:22:01",
            "upload_time_iso_8601": "2025-01-19T14:22:01.963996Z",
            "url": "https://files.pythonhosted.org/packages/3a/53/7cdede48d5e6943e971f6af9c3f5eecb651488f343241bcc971010276a16/vbmicrolensing-4.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03aad4800073fa60a743253e3e89408f1995c623418192eac35071ae33e40873",
                "md5": "3493f378f317b32bfbda279fc2a671d4",
                "sha256": "27d19a1e2918cc577e1d67c7d7137adf2a888c9158fcdeb19dc9d227b69aca02"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3493f378f317b32bfbda279fc2a671d4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<4,>=3.7",
            "size": 784815,
            "upload_time": "2025-01-19T14:22:04",
            "upload_time_iso_8601": "2025-01-19T14:22:04.340888Z",
            "url": "https://files.pythonhosted.org/packages/03/aa/d4800073fa60a743253e3e89408f1995c623418192eac35071ae33e40873/vbmicrolensing-4.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97168a7a45407917758cc0a20b635b34fe0f08e4f0b8094063f279df5f6aa1ab",
                "md5": "11cb3101d69717474dc2f93f6998eed9",
                "sha256": "167bba13ac9c42908b6c3f7122c1862c4bac2a80305c60e68cafca19eeead4c4"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "11cb3101d69717474dc2f93f6998eed9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<4,>=3.7",
            "size": 723378,
            "upload_time": "2025-01-19T14:22:06",
            "upload_time_iso_8601": "2025-01-19T14:22:06.043001Z",
            "url": "https://files.pythonhosted.org/packages/97/16/8a7a45407917758cc0a20b635b34fe0f08e4f0b8094063f279df5f6aa1ab/vbmicrolensing-4.2-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4edc494c5013bf071ef6088e3243fb36546303cd12dc947715cf70f1b701d1b",
                "md5": "fd7b85f831198d5ebe9ef1219df0c7b8",
                "sha256": "cfd2eee8f12d8ed267aee1260ed1c6888bd6c9779700e1f166b15fc324f28ea6"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.tar.gz",
            "has_sig": false,
            "md5_digest": "fd7b85f831198d5ebe9ef1219df0c7b8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.7",
            "size": 1882768,
            "upload_time": "2025-01-19T14:22:08",
            "upload_time_iso_8601": "2025-01-19T14:22:08.031285Z",
            "url": "https://files.pythonhosted.org/packages/d4/ed/c494c5013bf071ef6088e3243fb36546303cd12dc947715cf70f1b701d1b/vbmicrolensing-4.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-19 14:22:08",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "valboz",
    "github_project": "VBMicrolensing",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "vbmicrolensing"
}
        
Elapsed time: 0.60298s