├── .github └── workflows │ └── gemact-app-build.yml ├── .idea ├── .gitignore ├── gemact-code.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── build └── lib │ └── gemact │ ├── __init__.py │ ├── calculators.py │ ├── config.py │ ├── copulas.py │ ├── distributions.py │ ├── gemdata.py │ ├── helperfunctions.py │ ├── libraries.py │ ├── lossaggregation.py │ ├── lossmodel.py │ ├── lossreserve.py │ ├── tests │ ├── __init__.py │ ├── test_copulas.py │ ├── test_distributions.py │ ├── test_lossaggregation.py │ ├── test_lossmodel.py │ ├── test_lossreserve.py │ └── test_paperscripts.py │ └── vignette │ └── __init__.py ├── gemact.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── requires.txt └── top_level.txt ├── gemact ├── Makefile ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-39.pyc │ ├── calculators.cpython-311.pyc │ ├── calculators.cpython-37.pyc │ ├── calculators.cpython-39.pyc │ ├── config.cpython-311.pyc │ ├── config.cpython-37.pyc │ ├── config.cpython-39.pyc │ ├── copulas.cpython-311.pyc │ ├── copulas.cpython-37.pyc │ ├── copulas.cpython-39.pyc │ ├── distributions.cpython-311.pyc │ ├── distributions.cpython-37.pyc │ ├── distributions.cpython-39.pyc │ ├── gemdata.cpython-311.pyc │ ├── gemdata.cpython-37.pyc │ ├── gemdata.cpython-39.pyc │ ├── helperfunctions.cpython-311.pyc │ ├── helperfunctions.cpython-37.pyc │ ├── helperfunctions.cpython-39.pyc │ ├── libraries.cpython-311.pyc │ ├── libraries.cpython-37.pyc │ ├── libraries.cpython-39.pyc │ ├── lossaggregation.cpython-311.pyc │ ├── lossaggregation.cpython-37.pyc │ ├── lossaggregation.cpython-39.pyc │ ├── lossmodel.cpython-311.pyc │ ├── lossmodel.cpython-37.pyc │ ├── lossmodel.cpython-39.pyc │ ├── lossreserve.cpython-311.pyc │ ├── lossreserve.cpython-37.pyc │ └── lossreserve.cpython-39.pyc ├── build │ ├── .buildinfo │ ├── .doctrees │ │ ├── api.doctree │ │ ├── environment.pickle │ │ ├── gemanalytics.doctree │ │ ├── gemdata.doctree │ │ ├── index.doctree │ │ ├── introduction.doctree │ │ ├── modeling.doctree │ │ └── usage.doctree │ ├── .nojekyll │ ├── CNAME │ ├── _images │ │ ├── cdfBeta.png │ │ ├── cdfBinom.png │ │ ├── cdfBurr12.png │ │ ├── cdfDagum.png │ │ ├── cdfExponential.png │ │ ├── cdfGamma.png │ │ ├── cdfGenBeta.png │ │ ├── cdfGenPareto.png │ │ ├── cdfGeom.png │ │ ├── cdfInvParalogistic.png │ │ ├── cdfInvweibull.png │ │ ├── cdfLogNormal.png │ │ ├── cdfLogser.png │ │ ├── cdfNBinom.png │ │ ├── cdfParalogistic.png │ │ ├── cdfPois.png │ │ ├── cdfWeibull_min.png │ │ ├── cdfZMBinom.png │ │ ├── cdfZMGeom.png │ │ ├── cdfZMLogser.png │ │ ├── cdfZMNegBinom.png │ │ ├── cdfZMPois.png │ │ ├── cdfZTBinom.png │ │ ├── cdfZTGeom.png │ │ ├── cdfZTNbinom.png │ │ ├── cdfZTPois.png │ │ ├── pdfBeta.png │ │ ├── pdfBurr12.png │ │ ├── pdfDagum.png │ │ ├── pdfExponential.png │ │ ├── pdfGamma.png │ │ ├── pdfGenBeta.png │ │ ├── pdfGenPareto.png │ │ ├── pdfInvParalogistic.png │ │ ├── pdfInvweibull.png │ │ ├── pdfLogNormal.png │ │ ├── pdfParalogistic.png │ │ ├── pdfWeibull_min.png │ │ ├── pmfBinom.png │ │ ├── pmfGeom.png │ │ ├── pmfLogser.png │ │ ├── pmfNBinom.png │ │ ├── pmfPois.png │ │ ├── pmfZMBinom.png │ │ ├── pmfZMGeom.png │ │ ├── pmfZMLogser.png │ │ ├── pmfZMNegBinom.png │ │ ├── pmfZMPois.png │ │ ├── pmfZTBinom.png │ │ ├── pmfZTGeom.png │ │ ├── pmfZTPois.png │ │ └── pmfZTnbinom.png │ ├── _modules │ │ ├── gemact │ │ │ ├── copulas.html │ │ │ ├── distributions.html │ │ │ ├── lossaggregation.html │ │ │ ├── lossmodel.html │ │ │ └── lossreserve.html │ │ └── index.html │ ├── _sources │ │ ├── api.rst │ │ ├── api.rst.txt │ │ ├── gemanalytics.rst │ │ ├── gemanalytics.rst.txt │ │ ├── gemdata.rst │ │ ├── gemdata.rst.txt │ │ ├── index.rst │ │ ├── index.rst.txt │ │ ├── introduction.rst │ │ ├── introduction.rst.txt │ │ ├── modeling.rst │ │ ├── modeling.rst.txt │ │ ├── usage.rst │ │ └── usage.rst.txt │ ├── _static │ │ ├── GEMActlogo.png │ │ ├── Makefile │ │ ├── __init__.py │ │ ├── basic.css │ │ ├── basic.css.jinja │ │ ├── calculators.py │ │ ├── config.py │ │ ├── copulas.py │ │ ├── distributions.py │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── documentation_options.js.jinja │ │ ├── file.png │ │ ├── gemdata.py │ │ ├── helperfunctions.py │ │ ├── images │ │ │ ├── logo_binder.svg │ │ │ ├── logo_colab.png │ │ │ ├── logo_deepnote.svg │ │ │ └── logo_jupyterhub.svg │ │ ├── jquery-3.5.1.js │ │ ├── jquery.js │ │ ├── language_data.js │ │ ├── language_data.js.jinja │ │ ├── libraries.py │ │ ├── locales │ │ │ ├── ar │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── bn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── ca │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── cs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── da │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── el │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── eo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── et │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── fi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── hr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── id │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── iw │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── lt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── lv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── ml │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── mr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── ms │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── nl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── no │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── pt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── ro │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── sk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── sl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── sr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── ta │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── te │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── tg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── th │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── tl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── uk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── ur │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── vi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ └── zh_TW │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── booktheme.mo │ │ │ │ └── booktheme.po │ │ ├── lossaggregation.py │ │ ├── lossmodel.py │ │ ├── lossreserve.py │ │ ├── make.bat │ │ ├── minus.png │ │ ├── nbsphinx-broken-thumbnail.svg │ │ ├── nbsphinx-code-cells.css │ │ ├── nbsphinx-gallery.css │ │ ├── nbsphinx-no-thumbnail.svg │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── sbt-webpack-macros.html │ │ ├── scripts │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.LICENSE.txt │ │ │ ├── bootstrap.js.map │ │ │ ├── pydata-sphinx-theme.js │ │ │ ├── pydata-sphinx-theme.js.map │ │ │ ├── sphinx-book-theme.js │ │ │ └── sphinx-book-theme.js.map │ │ ├── searchtools.js │ │ ├── sphinx_highlight.js │ │ ├── styles │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── pydata-sphinx-theme.css │ │ │ ├── pydata-sphinx-theme.css.map │ │ │ ├── sphinx-book-theme.css │ │ │ ├── sphinx-book-theme.css.map │ │ │ └── theme.css │ │ ├── underscore-1.13.1.js │ │ ├── underscore.js │ │ ├── vendor │ │ │ └── fontawesome │ │ │ │ ├── 5.13.0 │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── css │ │ │ │ │ └── all.min.css │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ ├── fa-brands-400.svg │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.eot │ │ │ │ │ ├── fa-regular-400.svg │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.eot │ │ │ │ │ ├── fa-solid-900.svg │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff │ │ │ │ │ └── fa-solid-900.woff2 │ │ │ │ └── 6.5.2 │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── css │ │ │ │ └── all.min.css │ │ │ │ ├── js │ │ │ │ ├── all.min.js │ │ │ │ └── all.min.js.LICENSE.txt │ │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ ├── webpack-macros.html │ │ └── webtab.png │ ├── api.html │ ├── gemanalytics.html │ ├── gemdata.html │ ├── genindex.html │ ├── index.html │ ├── introduction.html │ ├── modeling.html │ ├── objects.inv │ ├── py-modindex.html │ ├── search.html │ ├── searchindex.js │ ├── sitemap.xml │ └── usage.html ├── calculators.py ├── config.py ├── copulas.py ├── distributions.py ├── gemdata.py ├── helperfunctions.py ├── libraries.py ├── lossaggregation.py ├── lossmodel.py ├── lossreserve.py ├── make.bat ├── source │ ├── .ipynb_checkpoints │ │ └── Usage-checkpoint.ipynb │ ├── api.rst │ ├── conf.py │ ├── gemanalytics.rst │ ├── gemdata.rst │ ├── images │ │ ├── GEMActlogo.png │ │ ├── cdfBeta.png │ │ ├── cdfBinom.png │ │ ├── cdfBurr12.png │ │ ├── cdfDagum.png │ │ ├── cdfExponential.png │ │ ├── cdfGamma.png │ │ ├── cdfGenBeta.png │ │ ├── cdfGenPareto.png │ │ ├── cdfGeom.png │ │ ├── cdfInvGamma.png │ │ ├── cdfInvParalogistic.png │ │ ├── cdfInvweibull.png │ │ ├── cdfLogNormal.png │ │ ├── cdfLogser.png │ │ ├── cdfNBinom.png │ │ ├── cdfParalogistic.png │ │ ├── cdfPois.png │ │ ├── cdfWeibull_min.png │ │ ├── cdfZMBinom.png │ │ ├── cdfZMGeom.png │ │ ├── cdfZMLogser.png │ │ ├── cdfZMNbinom.png │ │ ├── cdfZMNegBinom.png │ │ ├── cdfZMPois.png │ │ ├── cdfZTBinom.png │ │ ├── cdfZTGeom.png │ │ ├── cdfZTNbinom.png │ │ ├── cdfZTPois.png │ │ ├── pdfBeta.png │ │ ├── pdfBurr12.png │ │ ├── pdfDagum.png │ │ ├── pdfExponential.png │ │ ├── pdfGamma.png │ │ ├── pdfGenBeta.png │ │ ├── pdfGenPareto.png │ │ ├── pdfInvGamma.png │ │ ├── pdfInvParalogistic.png │ │ ├── pdfInvweibull.png │ │ ├── pdfLogNormal.png │ │ ├── pdfParalogistic.png │ │ ├── pdfWeibull_min.png │ │ ├── pmfBinom.png │ │ ├── pmfGeom.png │ │ ├── pmfLogser.png │ │ ├── pmfNBinom.png │ │ ├── pmfPois.png │ │ ├── pmfZMBinom.png │ │ ├── pmfZMGeom.png │ │ ├── pmfZMLogser.png │ │ ├── pmfZMNegBinom.png │ │ ├── pmfZMPois.png │ │ ├── pmfZTBinom.png │ │ ├── pmfZTGeom.png │ │ ├── pmfZTPois.png │ │ ├── pmfZTnbinom.png │ │ └── webtab.png │ ├── index.rst │ ├── introduction.rst │ ├── modeling.rst │ ├── refs.bib │ └── usage.rst ├── tests │ ├── __init__.py │ ├── test_copulas.py │ ├── test_distributions.py │ ├── test_lossaggregation.py │ ├── test_lossmodel.py │ └── test_lossreserve.py └── vignette │ ├── Manuscript_code_blocks.ipynb │ ├── Section_3-Supplementary_material.ipynb │ ├── Section_4-Supplementary_material.ipynb │ ├── Section_5-Supplementary_material.ipynb │ ├── Section_5-Supplementary_material_data_generator.Rmd │ ├── __init__.py │ └── readme.md ├── requirements.txt └── setup.py /.github/workflows/gemact-app-build.yml: -------------------------------------------------------------------------------- 1 | # This workflow will install Python dependencies, run tests and lint with a single version of Python 2 | # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python 3 | 4 | name: Python application 5 | 6 | on: 7 | push: 8 | branches: [ "main" ] 9 | pull_request: 10 | branches: [ "main" ] 11 | 12 | permissions: 13 | contents: read 14 | 15 | jobs: 16 | build: 17 | 18 | runs-on: ubuntu-latest 19 | 20 | steps: 21 | - uses: actions/checkout@v3 22 | - name: Set up Python 3.10 23 | uses: actions/setup-python@v3 24 | with: 25 | python-version: "3.10" 26 | - name: Install dependencies 27 | run: | 28 | python -m pip install --upgrade pip 29 | pip install flake8 pytest 30 | if [ -f requirements.txt ]; then pip install -r requirements.txt; fi 31 | - name: Lint with flake8 32 | run: | 33 | # stop the build if there are Python syntax errors or undefined names 34 | flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics 35 | # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide 36 | flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics 37 | - name: Test with pytest 38 | run: | 39 | pytest 40 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/gemact-code.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 15 | 17 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 10 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | BSD 3-Clause License 2 | 3 | Copyright (c) 2022, Gabriele Pittarello, Edoardo Luini, Manfred Marvin Marchione. 4 | All rights reserved. 5 | 6 | Redistribution and use in source and binary forms, with or without 7 | modification, are permitted provided that the following conditions are met: 8 | 9 | 1. Redistributions of source code must retain the above copyright notice, this 10 | list of conditions and the following disclaimer. 11 | 12 | 2. Redistributions in binary form must reproduce the above copyright notice, 13 | this list of conditions and the following disclaimer in the documentation 14 | and/or other materials provided with the distribution. 15 | 16 | 3. Neither the name of the copyright holder nor the names of its 17 | contributors may be used to endorse or promote products derived from 18 | this software without specific prior written permission. 19 | 20 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 23 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 24 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 26 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 27 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 28 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md, LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Python application](https://github.com/gpitt71/gemact-code/actions/workflows/gemact-app-build.yml/badge.svg)](https://github.com/gpitt71/gemact-code/actions/workflows/gemact-app-build.yml) 2 | [![Downloads](https://pepy.tech/badge/gemact)](https://pepy.tech/project/gemact) 3 | [![DOI](https://zenodo.org/badge/486915400.svg)](https://zenodo.org/badge/latestdoi/486915400) 4 | 5 | # GEMAct 6 | 7 | GEMAct is a comprehensive **actuarial package**, based on the collective risk theory framework, that offers a set of tools for **non-life** (re)insurance **costing**, stochastic **claims reserving**, and **loss aggregation**. 8 | 9 | The variety of available functionalities makes GEMAct modeling very flexible and provides actuarial scientists and practitioners with a powerful tool that fits into the expanding community of **Python** programming language. 10 | 11 | Please visit our [website](https://gem-analytics.github.io/gemact/) to see our documentation and tutorial. 12 | 13 | The accompanying paper is registered with DOI doi:10.1017/S1748499524000022. 14 | 15 | APA citation: 16 | 17 | ``` 18 | Pittarello, G., Luini, E., & Marchione, M. M. (2024). GEMAct: a Python package for non-life (re)insurance modeling. Annals of Actuarial Science, 1–37. doi:10.1017/S1748499524000022 19 | ``` 20 | 21 | BibteX citation: 22 | 23 | ``` 24 | @article{Pittarello_Luini_Marchione_2024, 25 | title={GEMAct: a Python package for non-life (re)insurance modeling}, 26 | DOI={10.1017/S1748499524000022}, 27 | journal={Annals of Actuarial Science}, 28 | author={Pittarello, Gabriele and Luini, Edoardo and Marchione, Manfred Marvin}, 29 | year={2024}, 30 | pages={1–37}} 31 | ``` 32 | 33 | The manuscript pre-print is instead available at [ArXiV:2303.01129](https://arxiv.org/abs/2303.01129). 34 | 35 | # Future work 36 | 37 | Please do not hesitate to contact us if you are interested in helping us in expanding our package, you can find our contact details [here](https://gem-analytics.github.io/gemact/gemanalytics.html). Possible future enhancements could involve the introduction of new probability distribution families, the implementation of supplementary methodologies for the approximation of quantiles of the sum of random variables, and the addition of costing procedures for exotic and nontraditional reinsurance solutions. 38 | 39 | # Acknowledgments 40 | 41 | Previous versions were presented at the Mathematical and Statistical 42 | Methods for Actuarial Sciences and Finance 2022, and at the Actuarial Colloquia 2022, in the ASTIN section. 43 | 44 | We want to especially thank the students in Statistica per le assicurazioni, 45 | M.Sc. in Economia e Finanza, at the University of Milano-Bicocca for having tested the package. 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /build/lib/gemact/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.1.1" 2 | __doc__ = """GEMAct is an **actuarial package**, 3 | based on the collective risk theory framework, 4 | that offers actuarial scientists a comprehensive set of tools for 5 | **non-life** (re)insurance **costing**, stochastic **claims reserving**, 6 | **loss aggregation** and extends the set of probability distributions available in Python. \n 7 | The broad and flexible GEMAct apparatus fits into the expanding community of **Python** programming language. \n 8 | Please visit our [website](https://gem-analytics.github.io/gemact/) to see our documentation and tutorials.""" 9 | 10 | import gemact.helperfunctions as hf 11 | import gemact.distributions as distributions 12 | import gemact.copulas as copulas 13 | import gemact.gemdata as gemdata 14 | from gemact.config import * 15 | from gemact.lossmodel import * 16 | from gemact.lossreserve import * 17 | from gemact.lossaggregation import * 18 | 19 | 20 | -------------------------------------------------------------------------------- /build/lib/gemact/config.py: -------------------------------------------------------------------------------- 1 | 2 | SITE_LINK = 'https://gem-analytics.github.io/gemact/' 3 | DCEILING = 5 # lossaggregation 4 | PROB_TOLERANCE = (1-0.9999) # lossmodel 5 | LOSS_AGGREGATION_METHOD = {'aep', 'mc'} # lossaggregation 6 | SEV_DISCRETIZATION_METHOD = {'localmoments', 'massdispersal', 'lowerdiscretization', 'upperdiscretization'} # lossmodel 7 | AGGREGATE_LOSS_APPROX_METHOD = {'fft', 'mc', 'recursion', 'qmc'} # lossmodel 8 | POLICY_LAYER_BASIS = {'regular', 'drop-down', 'stretch-down'} # lossmodel 9 | QMC_SEQUENCE_METHOD = {'halton', 'sobol', 'lhs'} # lossmodel 10 | POLICY_LAYER_CATEGORY = {'xlrs', 'xl/sl'} # lossmodel 11 | RESERVING_METHOD = {'fisher_lange', 'crm'} # lossreserve 12 | # dictionary of copulas 13 | COP_DICT = { 14 | 'clayton': 'copulas.ClaytonCopula', 15 | 'frank': 'copulas.FrankCopula', 16 | 'gumbel': 'copulas.GumbelCopula', 17 | 'gaussian': 'copulas.GaussCopula', 18 | 'joe': 'copulas.JoeCopula', 19 | 'ali-mikhail-haq': 'copulas.AliMikhailHaqCopula', 20 | 'tstudent': 'copulas.TCopula', 21 | 'independent': 'copulas.IndependenceCopula', 22 | 'frechet–hoeffding-lower': 'copulas.FHLowerCopula', 23 | 'frechet–hoeffding-upper': 'copulas.FHUpperCopula' 24 | } 25 | # dictionary of distributionss 26 | DIST_DICT = { 27 | 'binom': 'distributions.Binom', 28 | 'geom': 'distributions.Geom', 29 | 'nbinom': 'distributions.NegBinom', 30 | 'poisson': 'distributions.Poisson', 31 | 'zmbinom': 'distributions.ZMBinom', 32 | 'zmgeom': 'distributions.ZMGeom', 33 | 'zmlogser': 'distributions.ZMLogser', 34 | 'zmnbinom': 'distributions.ZMNegBinom', 35 | 'zmpoisson': 'distributions.ZMPoisson', 36 | 'ztgeom': 'distributions.ZTGeom', 37 | 'ztbinom': 'distributions.ZTBinom', 38 | 'ztnbinom': 'distributions.ZTNegBinom', 39 | 'ztpoisson': 'distributions.ZTPoisson', 40 | 'beta': 'distributions.Beta', 41 | 'burr12': 'distributions.Burr12', 42 | 'dagum': 'distributions.Dagum', 43 | 'exponential': 'distributions.Exponential', 44 | 'fisk': 'distributions.Fisk', 45 | 'gamma': 'distributions.Gamma', 46 | 'genbeta': 'distributions.GenBeta', 47 | 'genpareto': 'distributions.GenPareto', 48 | 'invgamma': 'distributions.InvGamma', 49 | 'invgauss': 'distributions.InvGauss', 50 | 'invweibull': 'distributions.InvWeibull', 51 | 'lognormal': 'distributions.Lognormal', 52 | 'loggamma': 'distributions.LogGamma', 53 | 'weibull': 'distributions.Weibull', 54 | 'pwl': 'distributions.PWL', 55 | 'pwc': 'distributions.PWC', 56 | 'paralogistic': 'distributions.Paralogistic', 57 | 'invparalogistic': 'distributions.InvParalogistic', 58 | 'pareto2': 'distributions.Pareto2', 59 | 'pareto1': 'distributions.Pareto1', 60 | 'uniform': 'distributions.Uniform' 61 | } 62 | -------------------------------------------------------------------------------- /build/lib/gemact/libraries.py: -------------------------------------------------------------------------------- 1 | import matplotlib.pyplot as plt 2 | import numpy as np 3 | from scipy import special 4 | from scipy import stats 5 | from scipy.fft import fft, ifft 6 | from scipy.interpolate import interp1d 7 | from scipy.integrate import quad 8 | from scipy.linalg import cholesky 9 | from scipy.optimize import root_scalar 10 | from scipy.stats import qmc 11 | import sys 12 | import time 13 | import timeit 14 | from twiggy import quick_setup, log 15 | from itertools import groupby 16 | -------------------------------------------------------------------------------- /build/lib/gemact/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/build/lib/gemact/tests/__init__.py -------------------------------------------------------------------------------- /build/lib/gemact/tests/test_copulas.py: -------------------------------------------------------------------------------- 1 | import unittest 2 | import numpy as np 3 | from gemact import copulas 4 | 5 | class Test_Discrete_Distributions(unittest.TestCase): 6 | 7 | def test_ClaytonCopula(self): 8 | copula = copulas.ClaytonCopula(par=1.2, dim=2) 9 | vals = np.array([[.5, .5]]) 10 | 11 | self.assertAlmostEqual(copula.cdf(vals)[0], 0.3443011, 3) 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /build/lib/gemact/tests/test_lossaggregation.py: -------------------------------------------------------------------------------- 1 | import unittest 2 | import gemact 3 | 4 | class TestLossModel(unittest.TestCase): 5 | def test_lossaggregation(self): 6 | decimalPlace = 3 7 | 8 | lossaggregate = gemact.LossAggregation( 9 | margins=['genpareto', 'genpareto'], 10 | margins_pars=[ 11 | {'loc': 0, 12 | 'scale': 1 / .9, 13 | 'c': 1 / .9}, 14 | {'loc': 0, 15 | 'scale': 1 / 1.8, 16 | 'c': 1 / 1.8} 17 | ], 18 | copula='clayton', 19 | copula_par={'par': 1.2, 'dim': 2} 20 | ) 21 | 22 | self.assertAlmostEqual(lossaggregate.cdf(1, n_iter=7, method='aep'), 0.31583504136297336, decimalPlace) 23 | 24 | -------------------------------------------------------------------------------- /build/lib/gemact/tests/test_lossreserve.py: -------------------------------------------------------------------------------- 1 | import unittest 2 | import gemact.lossreserve 3 | 4 | class TestLossModel(unittest.TestCase): 5 | def test_AggregateData(self): 6 | 7 | ip_ = gemact.gemdata.incremental_payments 8 | in_ = gemact.gemdata.incurred_number 9 | cp_ = gemact.gemdata.cased_payments 10 | cn_ = gemact.gemdata.cased_number 11 | reported_ = gemact.gemdata.reported_claims 12 | 13 | ad = gemact.AggregateData( 14 | incremental_payments=ip_, 15 | cased_payments=cp_, 16 | cased_number=cn_, 17 | reported_claims=reported_, 18 | incurred_number=in_) 19 | 20 | return ad 21 | 22 | def test_ReservingModelFL(self): 23 | 24 | claims_inflation= gemact.gemdata.claims_inflation 25 | 26 | rm = gemact.ReservingModel(tail=True, 27 | reserving_method="fisher_lange", 28 | claims_inflation=claims_inflation) 29 | 30 | return rm 31 | 32 | def test_ReservingModelCRM(self): 33 | 34 | mixing_fq_par = {'a': 1 / .08 ** 2, # mix frequency 35 | 'scale': .08 ** 2} 36 | 37 | mixing_sev_par = {'a': 1 / .08 ** 2, 'scale': .08 ** 2} # mix severity 38 | czj = gemact.gemdata.czj 39 | claims_inflation=gemact.gemdata.claims_inflation 40 | 41 | rm = gemact.ReservingModel(tail=True, 42 | reserving_method="crm", 43 | claims_inflation=claims_inflation, 44 | mixing_fq_par=mixing_fq_par, 45 | mixing_sev_par=mixing_sev_par, 46 | czj=czj) 47 | 48 | return rm 49 | 50 | def test_fisherlange(self): 51 | 52 | ad = self.test_AggregateData() 53 | rm = self.test_ReservingModelFL() 54 | 55 | lr = gemact.LossReserve(data=ad, 56 | reservingmodel=rm) 57 | 58 | 59 | def test_crm(self): 60 | ad = self.test_AggregateData() 61 | rm = self.test_ReservingModelCRM() 62 | 63 | lr = gemact.LossReserve(data=ad, 64 | reservingmodel=rm, 65 | ntr_sim=2) 66 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /build/lib/gemact/vignette/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/build/lib/gemact/vignette/__init__.py -------------------------------------------------------------------------------- /gemact.egg-info/PKG-INFO: -------------------------------------------------------------------------------- 1 | Metadata-Version: 2.1 2 | Name: gemact 3 | Version: 1.1.1 4 | Summary: A comprehensive actuarial package for non-life (re)insurance. 5 | Home-page: https://gem-analytics.github.io/gemact/ 6 | Author: Gabriele Pittarello, Edoardo Luini 7 | Author-email: gabriele.pittarello@uniroma1.it 8 | License: BSD 3-Clause 9 | Project-URL: Source Code, https://github.com/gpitt71/gemact-code 10 | Classifier: Development Status :: 5 - Production/Stable 11 | Classifier: License :: OSI Approved :: BSD License 12 | Classifier: Programming Language :: Python 13 | Classifier: Operating System :: Unix 14 | Classifier: Operating System :: MacOS :: MacOS X 15 | Classifier: Operating System :: Microsoft :: Windows 16 | Description-Content-Type: text/markdown 17 | License-File: LICENSE.txt 18 | 19 | [![Python application](https://github.com/gpitt71/gemact-code/actions/workflows/gemact-app-build.yml/badge.svg)](https://github.com/gpitt71/gemact-code/actions/workflows/gemact-app-build.yml) 20 | [![Downloads](https://pepy.tech/badge/gemact)](https://pepy.tech/project/gemact) 21 | [![DOI](https://zenodo.org/badge/486915400.svg)](https://zenodo.org/badge/latestdoi/486915400) 22 | 23 | # GEMAct 24 | 25 | GEMAct is a comprehensive **actuarial package**, based on the collective risk theory framework, that offers a set of tools for **non-life** (re)insurance **costing**, stochastic **claims reserving**, and **loss aggregation**. 26 | 27 | The variety of available functionalities makes GEMAct modeling very flexible and provides actuarial scientists and practitioners with a powerful tool that fits into the expanding community of **Python** programming language. 28 | 29 | Please visit our [website](https://gem-analytics.github.io/gemact/) to see our documentation and tutorial. 30 | 31 | The [pre-print](https://arxiv.org/abs/2303.01129) of the accompanying paper is now available. 32 | 33 | # Acknowledgments 34 | 35 | Previous versions were presented at the Mathematical and Statistical 36 | Methods for Actuarial Sciences and Finance 2022, and at the Actuarial Colloquia 2022, in the ASTIN section. 37 | 38 | We want to especially thank the students in Statistica per le assicurazioni, 39 | M.Sc. in Economia e Finanza, at the Università Milano-Bicocca for having tested the package. 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /gemact.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- 1 | LICENSE.txt 2 | MANIFEST.in 3 | README.md 4 | setup.py 5 | gemact/__init__.py 6 | gemact/calculators.py 7 | gemact/config.py 8 | gemact/copulas.py 9 | gemact/distributions.py 10 | gemact/gemdata.py 11 | gemact/helperfunctions.py 12 | gemact/libraries.py 13 | gemact/lossaggregation.py 14 | gemact/lossmodel.py 15 | gemact/lossreserve.py 16 | gemact.egg-info/PKG-INFO 17 | gemact.egg-info/SOURCES.txt 18 | gemact.egg-info/dependency_links.txt 19 | gemact.egg-info/requires.txt 20 | gemact.egg-info/top_level.txt 21 | gemact/tests/__init__.py 22 | gemact/tests/test_copulas.py 23 | gemact/tests/test_distributions.py 24 | gemact/tests/test_lossaggregation.py 25 | gemact/tests/test_lossmodel.py 26 | gemact/tests/test_lossreserve.py 27 | gemact/tests/test_paperscripts.py 28 | gemact/vignette/__init__.py -------------------------------------------------------------------------------- /gemact.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gemact.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | twiggy 2 | numpy>=1.22.0 3 | matplotlib>=3.5.0 4 | scipy>=1.10.0 5 | setuptools>=65.5.1 6 | -------------------------------------------------------------------------------- /gemact.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | __init__ 2 | config 3 | copulas 4 | distributions 5 | gemact 6 | gemdata 7 | helperfunctions 8 | lossaggregation 9 | lossmodel 10 | lossreserve 11 | -------------------------------------------------------------------------------- /gemact/Makefile: -------------------------------------------------------------------------------- 1 | # Minimal makefile for Sphinx documentation 2 | # 3 | 4 | # You can set these variables from the command line, and also 5 | # from the environment for the first two. 6 | SPHINXOPTS ?= 7 | SPHINXBUILD ?= sphinx-build 8 | SOURCEDIR = source 9 | BUILDDIR = build 10 | 11 | # Put it first so that "make" without argument is like "make help". 12 | help: 13 | @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) 14 | 15 | .PHONY: help Makefile 16 | 17 | # Catch-all target: route all unknown targets to Sphinx using the new 18 | # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). 19 | %: Makefile 20 | @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) 21 | -------------------------------------------------------------------------------- /gemact/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.1.1" 2 | __doc__ = """GEMAct is an **actuarial package**, 3 | based on the collective risk theory framework, 4 | that offers actuarial scientists a comprehensive set of tools for 5 | **non-life** (re)insurance **costing**, stochastic **claims reserving**, 6 | **loss aggregation** and extends the set of probability distributions available in Python. \n 7 | The broad and flexible GEMAct apparatus fits into the expanding community of **Python** programming language. \n 8 | Please visit our [website](https://gem-analytics.github.io/gemact/) to see our documentation and tutorials.""" 9 | 10 | import gemact.helperfunctions as hf 11 | import gemact.distributions as distributions 12 | import gemact.copulas as copulas 13 | import gemact.gemdata as gemdata 14 | from gemact.config import * 15 | from gemact.lossmodel import * 16 | from gemact.lossreserve import * 17 | from gemact.lossaggregation import * 18 | 19 | 20 | -------------------------------------------------------------------------------- /gemact/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/calculators.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/calculators.cpython-311.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/calculators.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/calculators.cpython-37.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/calculators.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/calculators.cpython-39.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/config.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/config.cpython-311.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/config.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/config.cpython-39.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/copulas.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/copulas.cpython-311.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/copulas.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/copulas.cpython-37.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/copulas.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/copulas.cpython-39.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/distributions.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/distributions.cpython-311.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/distributions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/distributions.cpython-37.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/distributions.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/distributions.cpython-39.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/gemdata.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/gemdata.cpython-311.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/gemdata.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/gemdata.cpython-37.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/gemdata.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/gemdata.cpython-39.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/helperfunctions.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/helperfunctions.cpython-311.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/helperfunctions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/helperfunctions.cpython-37.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/helperfunctions.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/helperfunctions.cpython-39.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/libraries.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/libraries.cpython-311.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/libraries.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/libraries.cpython-37.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/libraries.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/libraries.cpython-39.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/lossaggregation.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/lossaggregation.cpython-311.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/lossaggregation.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/lossaggregation.cpython-37.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/lossaggregation.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/lossaggregation.cpython-39.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/lossmodel.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/lossmodel.cpython-311.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/lossmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/lossmodel.cpython-37.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/lossmodel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/lossmodel.cpython-39.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/lossreserve.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/lossreserve.cpython-311.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/lossreserve.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/lossreserve.cpython-37.pyc -------------------------------------------------------------------------------- /gemact/__pycache__/lossreserve.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/__pycache__/lossreserve.cpython-39.pyc -------------------------------------------------------------------------------- /gemact/build/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: ad0e49156dd8ac5bf4c25280a50d325a 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /gemact/build/.doctrees/api.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/.doctrees/api.doctree -------------------------------------------------------------------------------- /gemact/build/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/.doctrees/environment.pickle -------------------------------------------------------------------------------- /gemact/build/.doctrees/gemanalytics.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/.doctrees/gemanalytics.doctree -------------------------------------------------------------------------------- /gemact/build/.doctrees/gemdata.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/.doctrees/gemdata.doctree -------------------------------------------------------------------------------- /gemact/build/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/.doctrees/index.doctree -------------------------------------------------------------------------------- /gemact/build/.doctrees/introduction.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/.doctrees/introduction.doctree -------------------------------------------------------------------------------- /gemact/build/.doctrees/modeling.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/.doctrees/modeling.doctree -------------------------------------------------------------------------------- /gemact/build/.doctrees/usage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/.doctrees/usage.doctree -------------------------------------------------------------------------------- /gemact/build/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/.nojekyll -------------------------------------------------------------------------------- /gemact/build/CNAME: -------------------------------------------------------------------------------- 1 | github.com -------------------------------------------------------------------------------- /gemact/build/_images/cdfBeta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfBeta.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfBinom.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfBurr12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfBurr12.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfDagum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfDagum.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfExponential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfExponential.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfGamma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfGamma.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfGenBeta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfGenBeta.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfGenPareto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfGenPareto.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfGeom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfGeom.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfInvParalogistic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfInvParalogistic.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfInvweibull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfInvweibull.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfLogNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfLogNormal.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfLogser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfLogser.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfNBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfNBinom.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfParalogistic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfParalogistic.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfPois.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfPois.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfWeibull_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfWeibull_min.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfZMBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfZMBinom.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfZMGeom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfZMGeom.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfZMLogser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfZMLogser.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfZMNegBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfZMNegBinom.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfZMPois.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfZMPois.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfZTBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfZTBinom.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfZTGeom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfZTGeom.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfZTNbinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfZTNbinom.png -------------------------------------------------------------------------------- /gemact/build/_images/cdfZTPois.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/cdfZTPois.png -------------------------------------------------------------------------------- /gemact/build/_images/pdfBeta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pdfBeta.png -------------------------------------------------------------------------------- /gemact/build/_images/pdfBurr12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pdfBurr12.png -------------------------------------------------------------------------------- /gemact/build/_images/pdfDagum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pdfDagum.png -------------------------------------------------------------------------------- /gemact/build/_images/pdfExponential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pdfExponential.png -------------------------------------------------------------------------------- /gemact/build/_images/pdfGamma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pdfGamma.png -------------------------------------------------------------------------------- /gemact/build/_images/pdfGenBeta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pdfGenBeta.png -------------------------------------------------------------------------------- /gemact/build/_images/pdfGenPareto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pdfGenPareto.png -------------------------------------------------------------------------------- /gemact/build/_images/pdfInvParalogistic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pdfInvParalogistic.png -------------------------------------------------------------------------------- /gemact/build/_images/pdfInvweibull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pdfInvweibull.png -------------------------------------------------------------------------------- /gemact/build/_images/pdfLogNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pdfLogNormal.png -------------------------------------------------------------------------------- /gemact/build/_images/pdfParalogistic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pdfParalogistic.png -------------------------------------------------------------------------------- /gemact/build/_images/pdfWeibull_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pdfWeibull_min.png -------------------------------------------------------------------------------- /gemact/build/_images/pmfBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pmfBinom.png -------------------------------------------------------------------------------- /gemact/build/_images/pmfGeom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pmfGeom.png -------------------------------------------------------------------------------- /gemact/build/_images/pmfLogser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pmfLogser.png -------------------------------------------------------------------------------- /gemact/build/_images/pmfNBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pmfNBinom.png -------------------------------------------------------------------------------- /gemact/build/_images/pmfPois.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pmfPois.png -------------------------------------------------------------------------------- /gemact/build/_images/pmfZMBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pmfZMBinom.png -------------------------------------------------------------------------------- /gemact/build/_images/pmfZMGeom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pmfZMGeom.png -------------------------------------------------------------------------------- /gemact/build/_images/pmfZMLogser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pmfZMLogser.png -------------------------------------------------------------------------------- /gemact/build/_images/pmfZMNegBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pmfZMNegBinom.png -------------------------------------------------------------------------------- /gemact/build/_images/pmfZMPois.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pmfZMPois.png -------------------------------------------------------------------------------- /gemact/build/_images/pmfZTBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pmfZTBinom.png -------------------------------------------------------------------------------- /gemact/build/_images/pmfZTGeom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pmfZTGeom.png -------------------------------------------------------------------------------- /gemact/build/_images/pmfZTPois.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pmfZTPois.png -------------------------------------------------------------------------------- /gemact/build/_images/pmfZTnbinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_images/pmfZTnbinom.png -------------------------------------------------------------------------------- /gemact/build/_sources/gemanalytics.rst: -------------------------------------------------------------------------------- 1 | About us 2 | ==================================== 3 | 4 | **Gabriele Pittarello** (*Owner, Developer*) 5 | 6 | 7 | I am postdoctoral researcher in the Section of Biostatistics, at the Department of Public Health of the University of Copenhagen. 8 | 9 | I obtained my PhD in 'Advances in Claims Reserve Modelling' from the School of Statistical Sciences at 'La Sapienza' University of Rome. 10 | 11 | My research interests are primarily survival analysis, claims reserving models in non-life insurance and computational methods for non-life insurance. 12 | 13 | Contacts: 14 | 15 | * e-mail: gabriele(dot)pittarello(at)unito(dot)it 16 | * `Personal Webpage `_ 17 | * `GitHub `_ 18 | * `LinkedIN `_ 19 | 20 | **Edoardo Luini** (*Project lead, Developer*) 21 | 22 | I work as a quantitative developer in the reinsurance industry. I am currently Teaching fellow in Actuarial Non-life Insurance at Università Cattolica del Sacro Cuore, Milano. 23 | I earned a PhD in Statistical Sciences, Università 'La Sapienza' di Roma. I have been visiting student at ETH Zürich. 24 | 25 | I hold a master’s degree in Statistical and Actuarial Sciences from Università Cattolica del Sacro Cuore di Milano. 26 | 27 | contacts: 28 | 29 | * e-mail: edoardo(dot)glaucoluini(at)unicatt(dot)it 30 | * `GitHub `_ 31 | 32 | **Andrea Biancheri** (*Business Expert, Contributor*) 33 | 34 | I have been working in the reinsurance industry for more than 15 years. Currently, I am a pricing actuary in P&C reinsurance. 35 | 36 | In the past, I have been leading seminars in Risk Theory and Reinsurance Analytics at Università Cattolica del Sacro Cuore di Milano. 37 | 38 | I hold a 'laurea' in Actuarial Sciences from Università 'La Sapienza' di Roma. 39 | I am a fellow member of the Italian (ISOA, ONA) and Swiss (SAV) associations of actuaries. 40 | -------------------------------------------------------------------------------- /gemact/build/_sources/gemanalytics.rst.txt: -------------------------------------------------------------------------------- 1 | About us 2 | ==================================== 3 | 4 | **Gabriele Pittarello** (*Owner, Developer*) 5 | 6 | 7 | I am a PhD student in Statistical Sciences at Università 'La Sapienza' di Roma. Currently, I am a visiting researcher at the University of Copenhagen. 8 | 9 | I attained a bachelor’s degree in Business Economics from Università di Milano-Bicocca and a master’s degree in Statistical and Actuarial Sciences from Università Cattolica del Sacro Cuore di Milano. 10 | 11 | My research interests are primarily claims reserving models in non-life insurance and computational methods for non-life insurance. 12 | 13 | Contacts: 14 | 15 | * e-mail: gabriele(dot)pittarello(at)uniroma1(dot)it 16 | * `GitHub `_ 17 | * `LinkedIN `_ 18 | 19 | **Edoardo Luini** (*Project lead, Developer*) 20 | 21 | I work as a quantitative developer in the insurance industry. I am currently Teaching fellow in Actuarial Non-life Insurance at Università Cattolica del Sacro Cuore, Milano. 22 | I earned a PhD in Statistical Sciences, Università 'La Sapienza' di Roma. I have been visiting student at ETH Zürich. 23 | 24 | I hold a master’s degree in Statistical and Actuarial Sciences from Università Cattolica del Sacro Cuore di Milano. 25 | 26 | contacts: 27 | 28 | * e-mail: edoardo(dot)glaucoluini(at)unicatt(dot)it 29 | * `GitHub `_ 30 | 31 | **Andrea Biancheri** (*Business Expert, Contributor*) 32 | 33 | I have been working in the reinsurance industry for more than 15 years. Currently, I am a pricing actuary in P&C reinsurance. 34 | 35 | In the past, I have been leading seminars in Risk Theory and Reinsurance Analytics at Università Cattolica del Sacro Cuore di Milano. 36 | 37 | I hold a 'laurea' in Actuarial Sciences from Università 'La Sapienza' di Roma. 38 | I am a fellow member of the Italian (ISOA, ONA) and Swiss (SAV) associations of actuaries. 39 | 40 | -------------------------------------------------------------------------------- /gemact/build/_sources/index.rst: -------------------------------------------------------------------------------- 1 | .. GemAct documentation master file, created by 2 | sphinx-quickstart on Tue Feb 15 15:38:34 2022. 3 | You can adapt this file completely to your liking, but it should at least 4 | contain the root `toctree` directive. 5 | 6 | GEMAct 7 | ================================== 8 | 9 | .. toctree:: 10 | :caption: Table of Contents 11 | :maxdepth: 2 12 | 13 | introduction.rst 14 | usage.rst 15 | gemdata.rst 16 | modeling.rst 17 | api.rst 18 | gemanalytics.rst 19 | 20 | Indices and tables 21 | ================== 22 | 23 | * :ref:`genindex` 24 | * :ref:`modindex` 25 | * :ref:`search` 26 | 27 | 28 | -------------------------------------------------------------------------------- /gemact/build/_sources/index.rst.txt: -------------------------------------------------------------------------------- 1 | .. GemAct documentation master file, created by 2 | sphinx-quickstart on Tue Feb 15 15:38:34 2022. 3 | You can adapt this file completely to your liking, but it should at least 4 | contain the root `toctree` directive. 5 | 6 | GEMAct 7 | ================================== 8 | 9 | .. toctree:: 10 | :caption: Table of Contents 11 | :maxdepth: 2 12 | 13 | introduction.rst 14 | usage.rst 15 | gemdata.rst 16 | modeling.rst 17 | api.rst 18 | gemanalytics.rst 19 | 20 | Indices and tables 21 | ================== 22 | 23 | * :ref:`genindex` 24 | * :ref:`modindex` 25 | * :ref:`search` 26 | 27 | 28 | -------------------------------------------------------------------------------- /gemact/build/_sources/introduction.rst.txt: -------------------------------------------------------------------------------- 1 | Introduction 2 | ================================== 3 | 4 | GEMAct is an **actuarial package**, based on the collective risk theory framework, that offers a comprehensive set of tools for **non-life** (re)insurance **costing**, stochastic **claims reserving**, and **loss aggregation**. 5 | 6 | The variety of available functionalities makes GEMAct modeling very flexible and provides users with a powerful tool that fits into the expanding community of **Python** programming language. 7 | 8 | Scope 9 | -------- 10 | 11 | * A collective risk model apparatus for costing non-life (re)insurance contracts. 12 | * Extend the set of distributions available in scipy to actuarial scientists. GEMAct provides the first Python implementation of the `(a, b, 0) `_ and (a, b, 1) distribution classes. 13 | * Popular copulas with improved functionalities, e.g. the Student t copula cumulative distribution function can be numerically approximated. 14 | * A loss reserve estimation tool. 15 | * The first open-source Python implementation of the AEP algorithm. 16 | 17 | Reinsurance Contracs 18 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~ 19 | 20 | GEMAct can be used for costing the following reinsurance contracts and their combinations. 21 | 22 | * Excess-of-Loss (XL) including: 23 | * aggregate conditions (cover and deductible), 24 | * reinstatements. 25 | * **Quota-share (QS)**. 26 | * **Stop-loss (SL)**. 27 | 28 | Computational methods 29 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 30 | 31 | GEMAct offers multiple numerical methods used within the context of loss distributions approximation. 32 | 33 | * Collective risk model: 34 | * Recursive method (Panjer recursion), 35 | * Discrete Fourier transform, via the Fast Fourier Transform (FFT) algorithm, 36 | * Monte Carlo simulation. 37 | * Loss (model) aggregation: 38 | * AEP algorithm, 39 | * Monte Carlo simulation. 40 | -------------------------------------------------------------------------------- /gemact/build/_sources/usage.rst: -------------------------------------------------------------------------------- 1 | Usage 2 | ============= 3 | 4 | Installation 5 | --------------- 6 | GEMAct can be easily installed via ``pip``: 7 | 8 | pip install gemact 9 | 10 | In case you are installing GEMAct within Google Colab, please make sure to restart the kernel or to refresh the page before using it. 11 | 12 | Tutorials 13 | --------------- 14 | 15 | Users might be interested in the following Jupyter notebooks available on `GitHub `_. 16 | We provide several examples to familiarize with GEMAct functionalities. 17 | 18 | * Click `here `_ to check the replication material of the `GEMAct manuscript `_. 19 | * Click `here `_ to check the supplementary code to replicate *Section 3.6 Comparison of the methods for computing the aggregate loss distribution* and *Section 3.7. Comparison with aggregate FFT implementation* of the `GEMAct manuscript `_. 20 | * Click `here `_ to check the supplementary code to replicate *Section 4.2. Comparison of the methods for computing the cdf* of the `GEMAct manuscript `_. 21 | * Click `here `_ to check the supplementary material on Section 5.ipynb provides the supplementary code to replicate Section 5.2.1. Comparasion with chain ladder of the `GEMAct manuscript `_. 22 | * Click `here `_ to check the supplementary material on the data generator.Rmd provides the R code to simulate the data generation process used in *Section 5. Loss Reserve* and *Appendix C Claims Reserving with the Fisher-Lange* of the `GEMAct manuscript `_. It also includes the algorithm to compute the PE of the reserve in *Section 5.2.1. Comparasion with chain ladder*. -------------------------------------------------------------------------------- /gemact/build/_sources/usage.rst.txt: -------------------------------------------------------------------------------- 1 | Usage 2 | ============= 3 | 4 | Installation 5 | --------------- 6 | GEMAct can be easily installed via ``pip``: 7 | 8 | pip install gemact 9 | 10 | In case you are installing GEMAct within Google Colab, please make sure to restart the kernel or to refresh the page before using it. 11 | 12 | Tutorials 13 | --------------- 14 | 15 | Users might be interested in the following Jupyter notebooks available on `GitHub `_. 16 | We provide several examples to familiarize with GEMAct functionalities. 17 | 18 | * Click `here `_ to understand how to cost (re)insurance contracts. 19 | * Click `here `_ to understand how to perform loss aggregation. 20 | * Click `here `_ to understand how to use the distributions supported. 21 | * Click `here `_ to understand how to use the copula functions supported. 22 | * Click `here `_ to understand how to compute loss reserves. 23 | 24 | 25 | -------------------------------------------------------------------------------- /gemact/build/_static/GEMActlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/GEMActlogo.png -------------------------------------------------------------------------------- /gemact/build/_static/Makefile: -------------------------------------------------------------------------------- 1 | # Minimal makefile for Sphinx documentation 2 | # 3 | 4 | # You can set these variables from the command line, and also 5 | # from the environment for the first two. 6 | SPHINXOPTS ?= 7 | SPHINXBUILD ?= sphinx-build 8 | SOURCEDIR = source 9 | BUILDDIR = build 10 | 11 | # Put it first so that "make" without argument is like "make help". 12 | help: 13 | @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) 14 | 15 | .PHONY: help Makefile 16 | 17 | # Catch-all target: route all unknown targets to Sphinx using the new 18 | # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). 19 | %: Makefile 20 | @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) 21 | -------------------------------------------------------------------------------- /gemact/build/_static/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.2.3" 2 | __doc__ = """GEMAct is an **actuarial package**, 3 | based on the collective risk theory framework, 4 | that offers actuarial scientists a comprehensive set of tools for 5 | **non-life** (re)insurance **pricing**, stochastic **claims reserving**, 6 | **risk aggregation** and extends the set of probability distributions already available in Python. \n 7 | The broad and flexible GEMAct apparatus fits into the expanding community of **Python** programming language. \n 8 | Please visit our [website](https://gem-analytics.github.io/gemact/) to see our documentation and tutorial.""" 9 | 10 | import gemact.helperfunctions as hf 11 | import gemact.distributions as distributions 12 | import gemact.copulas as copulas 13 | import gemact.gemdata as gemdata 14 | from gemact.config import * 15 | from gemact.lossmodel import * 16 | from gemact.lossreserve import * 17 | from gemact.lossaggregation import * 18 | -------------------------------------------------------------------------------- /gemact/build/_static/config.py: -------------------------------------------------------------------------------- 1 | from .libraries import * 2 | 3 | SITE_LINK = 'https://gem-analytics.github.io/gemact/' 4 | DCEILING = 5 # imported in lossaggregation 5 | TOLERANCE = 1e-4 6 | LOSS_AGGREGATION_METHOD = {'aep', 'mc'} # imported in lossaggregation 7 | SEV_DISCRETIZATION_METHOD = {'localmoments', 'massdispersal'} # imported in lossmodel 8 | AGGREGATE_LOSS_APPROX_METHOD = {'fft', 'mc', 'recursion'} # imported in lossmodel 9 | POLICY_LAYER_BASIS = {'regular', 'drop-down', 'stretch-down'} # imported in lossmodel 10 | POLICY_LAYER_CATEGORY = {'xlrs', 'xl/sl'} # imported in lossmodel 11 | RESERVING_METHOD = {'fisher_lange', 'crm'} # imported in lossreserve 12 | # dictionary of copulas 13 | COP_DICT = { 14 | 'clayton': 'copulas.ClaytonCopula', 15 | 'frank': 'copulas.FrankCopula', 16 | 'gumbel': 'copulas.GumbelCopula', 17 | 'gaussian': 'copulas.GaussCopula', 18 | 'tstudent': 'copulas.TCopula', 19 | 'independent': 'copulas.IndependenceCopula', 20 | 'frechet–hoeffding-lower': 'copulas.FHLowerCopula', 21 | 'frechet–hoeffding-upper': 'copulas.FHUpperCopula' 22 | } 23 | # dictionary of distributionss 24 | DIST_DICT = { 25 | 'binom': 'distributions.Binom', 26 | 'geom': 'distributions.Geom', 27 | 'nbinom': 'distributions.NegBinom', 28 | 'poisson': 'distributions.Poisson', 29 | 'zmbinom': 'distributions.ZMBinom', 30 | 'zmgeom': 'distributions.ZMGeom', 31 | 'zmlogser': 'distributions.ZMLogser', 32 | 'zmnbinom': 'distributions.ZMNegBinom', 33 | 'zmpoisson': 'distributions.ZMPoisson', 34 | 'ztgeom': 'distributions.ZTGeom', 35 | 'ztbinom': 'distributions.ZTBinom', 36 | 'ztnbinom': 'distributions.ZTNegBinom', 37 | 'ztpoisson': 'distributions.ZTPoisson', 38 | 'beta': 'distributions.Beta', 39 | 'burr12': 'distributions.Burr12', 40 | 'dagum': 'distributions.Dagum', 41 | 'exponential': 'distributions.Exponential', 42 | 'fisk': 'distributions.Fisk', 43 | 'gamma': 'distributions.Gamma', 44 | 'genbeta': 'distributions.GenBeta', 45 | 'genpareto': 'distributions.GenPareto', 46 | 'invgamma': 'distributions.InvGamma', 47 | 'invgauss': 'distributions.InvGauss', 48 | 'invweibull': 'distributions.InvWeibull', 49 | 'lognormal': 'distributions.Lognormal', 50 | 'weibull': 'distributions.Weibull' 51 | } 52 | -------------------------------------------------------------------------------- /gemact/build/_static/documentation_options.js: -------------------------------------------------------------------------------- 1 | const DOCUMENTATION_OPTIONS = { 2 | VERSION: '2022', 3 | LANGUAGE: 'en', 4 | COLLAPSE_INDEX: false, 5 | BUILDER: 'html', 6 | FILE_SUFFIX: '.html', 7 | LINK_SUFFIX: '.html', 8 | HAS_SOURCE: true, 9 | SOURCELINK_SUFFIX: '', 10 | NAVIGATION_WITH_KEYS: false, 11 | SHOW_SEARCH_SUMMARY: true, 12 | ENABLE_SEARCH_SHORTCUTS: true, 13 | }; -------------------------------------------------------------------------------- /gemact/build/_static/documentation_options.js.jinja: -------------------------------------------------------------------------------- 1 | const DOCUMENTATION_OPTIONS = { 2 | VERSION: '{{ release|e }}', 3 | LANGUAGE: '{{ language }}', 4 | COLLAPSE_INDEX: false, 5 | BUILDER: '{{ builder }}', 6 | FILE_SUFFIX: '{{ file_suffix }}', 7 | LINK_SUFFIX: '{{ link_suffix }}', 8 | HAS_SOURCE: {{ has_source|lower }}, 9 | SOURCELINK_SUFFIX: '{{ sourcelink_suffix }}', 10 | NAVIGATION_WITH_KEYS: {{ 'true' if theme_navigation_with_keys|tobool else 'false'}}, 11 | SHOW_SEARCH_SUMMARY: {{ 'true' if show_search_summary else 'false' }}, 12 | ENABLE_SEARCH_SHORTCUTS: {{ 'true' if theme_enable_search_shortcuts|tobool else 'false'}}, 13 | }; 14 | -------------------------------------------------------------------------------- /gemact/build/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/file.png -------------------------------------------------------------------------------- /gemact/build/_static/images/logo_binder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | logo 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /gemact/build/_static/images/logo_colab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/images/logo_colab.png -------------------------------------------------------------------------------- /gemact/build/_static/images/logo_deepnote.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gemact/build/_static/images/logo_jupyterhub.svg: -------------------------------------------------------------------------------- 1 | logo_jupyterhubHub 2 | -------------------------------------------------------------------------------- /gemact/build/_static/language_data.js.jinja: -------------------------------------------------------------------------------- 1 | /* 2 | * language_data.js 3 | * ~~~~~~~~~~~~~~~~ 4 | * 5 | * This script contains the language-specific data used by searchtools.js, 6 | * namely the list of stopwords, stemmer, scorer and splitter. 7 | * 8 | * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. 9 | * :license: BSD, see LICENSE for details. 10 | * 11 | */ 12 | 13 | var stopwords = {{ search_language_stop_words }}; 14 | 15 | {% if search_language_stemming_code %} 16 | /* Non-minified version is copied as a separate JS file, if available */ 17 | {{ search_language_stemming_code|safe }} 18 | {% endif -%} 19 | 20 | {% if search_scorer_tool %} 21 | {{ search_scorer_tool|safe }} 22 | {% endif -%} 23 | 24 | {% if search_word_splitter_code %} 25 | {{ search_word_splitter_code }} 26 | {% endif -%} 27 | -------------------------------------------------------------------------------- /gemact/build/_static/libraries.py: -------------------------------------------------------------------------------- 1 | import matplotlib.pyplot as plt 2 | import numpy as np 3 | from scipy import special 4 | from scipy import stats 5 | from scipy.fft import fft, ifft 6 | from scipy.interpolate import interp1d 7 | from scipy.linalg import cholesky 8 | import sys 9 | import time 10 | from twiggy import quick_setup, log 11 | from itertools import groupby 12 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/ar/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/ar/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/ar/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ar\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "طباعة إلى PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "موضوع بواسطة" 16 | 17 | msgid "Download source file" 18 | msgstr "تنزيل ملف المصدر" 19 | 20 | msgid "open issue" 21 | msgstr "قضية مفتوحة" 22 | 23 | msgid "Contents" 24 | msgstr "محتويات" 25 | 26 | msgid "previous page" 27 | msgstr "الصفحة السابقة" 28 | 29 | msgid "Download notebook file" 30 | msgstr "تنزيل ملف دفتر الملاحظات" 31 | 32 | msgid "Copyright" 33 | msgstr "حقوق النشر" 34 | 35 | msgid "Download this page" 36 | msgstr "قم بتنزيل هذه الصفحة" 37 | 38 | msgid "Source repository" 39 | msgstr "مستودع المصدر" 40 | 41 | msgid "By" 42 | msgstr "بواسطة" 43 | 44 | msgid "repository" 45 | msgstr "مخزن" 46 | 47 | msgid "Last updated on" 48 | msgstr "آخر تحديث في" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "تبديل التنقل" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "موضوع كتاب أبو الهول" 55 | 56 | msgid "suggest edit" 57 | msgstr "أقترح تحرير" 58 | 59 | msgid "Open an issue" 60 | msgstr "افتح قضية" 61 | 62 | msgid "Launch" 63 | msgstr "إطلاق" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "وضع ملء الشاشة" 67 | 68 | msgid "Edit this page" 69 | msgstr "قم بتحرير هذه الصفحة" 70 | 71 | msgid "By the" 72 | msgstr "بواسطة" 73 | 74 | msgid "next page" 75 | msgstr "الصفحة التالية" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/bg/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/bg/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/bg/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: bg\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Печат в PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Тема от" 16 | 17 | msgid "Download source file" 18 | msgstr "Изтеглете изходния файл" 19 | 20 | msgid "open issue" 21 | msgstr "отворен брой" 22 | 23 | msgid "Contents" 24 | msgstr "Съдържание" 25 | 26 | msgid "previous page" 27 | msgstr "предишна страница" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Изтеглете файла на бележника" 31 | 32 | msgid "Copyright" 33 | msgstr "Авторско право" 34 | 35 | msgid "Download this page" 36 | msgstr "Изтеглете тази страница" 37 | 38 | msgid "Source repository" 39 | msgstr "Хранилище на източника" 40 | 41 | msgid "By" 42 | msgstr "От" 43 | 44 | msgid "repository" 45 | msgstr "хранилище" 46 | 47 | msgid "Last updated on" 48 | msgstr "Последна актуализация на" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Превключване на навигацията" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Тема на книгата Sphinx" 55 | 56 | msgid "suggest edit" 57 | msgstr "предложи редактиране" 58 | 59 | msgid "Open an issue" 60 | msgstr "Отворете проблем" 61 | 62 | msgid "Launch" 63 | msgstr "Стартиране" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Режим на цял екран" 67 | 68 | msgid "Edit this page" 69 | msgstr "Редактирайте тази страница" 70 | 71 | msgid "By the" 72 | msgstr "По" 73 | 74 | msgid "next page" 75 | msgstr "Следваща страница" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/bn/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/bn/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/bn/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: bn\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "পিডিএফ প্রিন্ট করুন" 13 | 14 | msgid "Theme by the" 15 | msgstr "থিম দ্বারা" 16 | 17 | msgid "Download source file" 18 | msgstr "উত্স ফাইল ডাউনলোড করুন" 19 | 20 | msgid "open issue" 21 | msgstr "খোলা সমস্যা" 22 | 23 | msgid "previous page" 24 | msgstr "আগের পৃষ্ঠা" 25 | 26 | msgid "Download notebook file" 27 | msgstr "নোটবুক ফাইল ডাউনলোড করুন" 28 | 29 | msgid "Copyright" 30 | msgstr "কপিরাইট" 31 | 32 | msgid "Download this page" 33 | msgstr "এই পৃষ্ঠাটি ডাউনলোড করুন" 34 | 35 | msgid "Source repository" 36 | msgstr "উত্স সংগ্রহস্থল" 37 | 38 | msgid "By" 39 | msgstr "দ্বারা" 40 | 41 | msgid "Last updated on" 42 | msgstr "সর্বশেষ আপডেট" 43 | 44 | msgid "Toggle navigation" 45 | msgstr "নেভিগেশন টগল করুন" 46 | 47 | msgid "Sphinx Book Theme" 48 | msgstr "স্পিনিক্স বুক থিম" 49 | 50 | msgid "Open an issue" 51 | msgstr "একটি সমস্যা খুলুন" 52 | 53 | msgid "Launch" 54 | msgstr "শুরু করা" 55 | 56 | msgid "Edit this page" 57 | msgstr "এই পৃষ্ঠাটি সম্পাদনা করুন" 58 | 59 | msgid "By the" 60 | msgstr "দ্বারা" 61 | 62 | msgid "next page" 63 | msgstr "পরবর্তী পৃষ্ঠা" 64 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/ca/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/ca/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/ca/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ca\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Imprimeix a PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Tema del" 16 | 17 | msgid "Download source file" 18 | msgstr "Baixeu el fitxer font" 19 | 20 | msgid "open issue" 21 | msgstr "número obert" 22 | 23 | msgid "previous page" 24 | msgstr "Pàgina anterior" 25 | 26 | msgid "Download notebook file" 27 | msgstr "Descarregar fitxer de quadern" 28 | 29 | msgid "Copyright" 30 | msgstr "Copyright" 31 | 32 | msgid "Download this page" 33 | msgstr "Descarregueu aquesta pàgina" 34 | 35 | msgid "Source repository" 36 | msgstr "Dipòsit de fonts" 37 | 38 | msgid "By" 39 | msgstr "Per" 40 | 41 | msgid "Last updated on" 42 | msgstr "Darrera actualització el" 43 | 44 | msgid "Toggle navigation" 45 | msgstr "Commuta la navegació" 46 | 47 | msgid "Sphinx Book Theme" 48 | msgstr "Tema del llibre Esfinx" 49 | 50 | msgid "suggest edit" 51 | msgstr "suggerir edició" 52 | 53 | msgid "Open an issue" 54 | msgstr "Obriu un número" 55 | 56 | msgid "Launch" 57 | msgstr "Llançament" 58 | 59 | msgid "Edit this page" 60 | msgstr "Editeu aquesta pàgina" 61 | 62 | msgid "By the" 63 | msgstr "Per la" 64 | 65 | msgid "next page" 66 | msgstr "pàgina següent" 67 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/cs/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/cs/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/cs/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: cs\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Tisk do PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Téma od" 16 | 17 | msgid "Download source file" 18 | msgstr "Stáhněte si zdrojový soubor" 19 | 20 | msgid "open issue" 21 | msgstr "otevřené číslo" 22 | 23 | msgid "Contents" 24 | msgstr "Obsah" 25 | 26 | msgid "previous page" 27 | msgstr "předchozí stránka" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Stáhnout soubor poznámkového bloku" 31 | 32 | msgid "Copyright" 33 | msgstr "autorská práva" 34 | 35 | msgid "Download this page" 36 | msgstr "Stáhněte si tuto stránku" 37 | 38 | msgid "Source repository" 39 | msgstr "Zdrojové úložiště" 40 | 41 | msgid "By" 42 | msgstr "Podle" 43 | 44 | msgid "repository" 45 | msgstr "úložiště" 46 | 47 | msgid "Last updated on" 48 | msgstr "Naposledy aktualizováno" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Přepnout navigaci" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Téma knihy Sfinga" 55 | 56 | msgid "suggest edit" 57 | msgstr "navrhnout úpravy" 58 | 59 | msgid "Open an issue" 60 | msgstr "Otevřete problém" 61 | 62 | msgid "Launch" 63 | msgstr "Zahájení" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Režim celé obrazovky" 67 | 68 | msgid "Edit this page" 69 | msgstr "Upravit tuto stránku" 70 | 71 | msgid "By the" 72 | msgstr "Podle" 73 | 74 | msgid "next page" 75 | msgstr "další strana" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/da/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/da/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/da/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: da\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Udskriv til PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Tema af" 16 | 17 | msgid "Download source file" 18 | msgstr "Download kildefil" 19 | 20 | msgid "open issue" 21 | msgstr "åbent nummer" 22 | 23 | msgid "Contents" 24 | msgstr "Indhold" 25 | 26 | msgid "previous page" 27 | msgstr "forrige side" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Download notesbog-fil" 31 | 32 | msgid "Copyright" 33 | msgstr "ophavsret" 34 | 35 | msgid "Download this page" 36 | msgstr "Download denne side" 37 | 38 | msgid "Source repository" 39 | msgstr "Kildelager" 40 | 41 | msgid "By" 42 | msgstr "Ved" 43 | 44 | msgid "repository" 45 | msgstr "lager" 46 | 47 | msgid "Last updated on" 48 | msgstr "Sidst opdateret den" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Skift navigation" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Sphinx bogtema" 55 | 56 | msgid "suggest edit" 57 | msgstr "foreslå redigering" 58 | 59 | msgid "Open an issue" 60 | msgstr "Åbn et problem" 61 | 62 | msgid "Launch" 63 | msgstr "Start" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Fuldskærmstilstand" 67 | 68 | msgid "Edit this page" 69 | msgstr "Rediger denne side" 70 | 71 | msgid "By the" 72 | msgstr "Ved" 73 | 74 | msgid "next page" 75 | msgstr "Næste side" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/de/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/de/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/de/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: de\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "In PDF drucken" 13 | 14 | msgid "Theme by the" 15 | msgstr "Thema von der" 16 | 17 | msgid "Download source file" 18 | msgstr "Quelldatei herunterladen" 19 | 20 | msgid "open issue" 21 | msgstr "offenes Thema" 22 | 23 | msgid "Contents" 24 | msgstr "Inhalt" 25 | 26 | msgid "previous page" 27 | msgstr "vorherige Seite" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Notebook-Datei herunterladen" 31 | 32 | msgid "Copyright" 33 | msgstr "Urheberrechte ©" 34 | 35 | msgid "Download this page" 36 | msgstr "Laden Sie diese Seite herunter" 37 | 38 | msgid "Source repository" 39 | msgstr "Quell-Repository" 40 | 41 | msgid "By" 42 | msgstr "Durch" 43 | 44 | msgid "repository" 45 | msgstr "Repository" 46 | 47 | msgid "Last updated on" 48 | msgstr "Zuletzt aktualisiert am" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Navigation umschalten" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Sphinx-Buch-Thema" 55 | 56 | msgid "suggest edit" 57 | msgstr "vorschlagen zu bearbeiten" 58 | 59 | msgid "Open an issue" 60 | msgstr "Öffnen Sie ein Problem" 61 | 62 | msgid "Launch" 63 | msgstr "Starten" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Vollbildmodus" 67 | 68 | msgid "Edit this page" 69 | msgstr "Bearbeite diese Seite" 70 | 71 | msgid "By the" 72 | msgstr "Bis zum" 73 | 74 | msgid "next page" 75 | msgstr "Nächste Seite" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/el/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/el/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/el/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: el\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Εκτύπωση σε PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Θέμα από το" 16 | 17 | msgid "Download source file" 18 | msgstr "Λήψη αρχείου προέλευσης" 19 | 20 | msgid "open issue" 21 | msgstr "ανοιχτό ζήτημα" 22 | 23 | msgid "Contents" 24 | msgstr "Περιεχόμενα" 25 | 26 | msgid "previous page" 27 | msgstr "προηγούμενη σελίδα" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Λήψη αρχείου σημειωματάριου" 31 | 32 | msgid "Copyright" 33 | msgstr "Πνευματική ιδιοκτησία" 34 | 35 | msgid "Download this page" 36 | msgstr "Λήψη αυτής της σελίδας" 37 | 38 | msgid "Source repository" 39 | msgstr "Αποθήκη πηγής" 40 | 41 | msgid "By" 42 | msgstr "Με" 43 | 44 | msgid "repository" 45 | msgstr "αποθήκη" 46 | 47 | msgid "Last updated on" 48 | msgstr "Τελευταία ενημέρωση στις" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Εναλλαγή πλοήγησης" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Θέμα βιβλίου Sphinx" 55 | 56 | msgid "suggest edit" 57 | msgstr "προτείνω επεξεργασία" 58 | 59 | msgid "Open an issue" 60 | msgstr "Ανοίξτε ένα ζήτημα" 61 | 62 | msgid "Launch" 63 | msgstr "Εκτόξευση" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "ΛΕΙΤΟΥΡΓΙΑ ΠΛΗΡΟΥΣ ΟΘΟΝΗΣ" 67 | 68 | msgid "Edit this page" 69 | msgstr "Επεξεργαστείτε αυτήν τη σελίδα" 70 | 71 | msgid "By the" 72 | msgstr "Από το" 73 | 74 | msgid "next page" 75 | msgstr "επόμενη σελίδα" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/eo/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/eo/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/eo/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: eo\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Presi al PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Temo de la" 16 | 17 | msgid "Download source file" 18 | msgstr "Elŝutu fontodosieron" 19 | 20 | msgid "open issue" 21 | msgstr "malferma numero" 22 | 23 | msgid "Contents" 24 | msgstr "Enhavo" 25 | 26 | msgid "previous page" 27 | msgstr "antaŭa paĝo" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Elŝutu kajeran dosieron" 31 | 32 | msgid "Copyright" 33 | msgstr "Kopirajto" 34 | 35 | msgid "Download this page" 36 | msgstr "Elŝutu ĉi tiun paĝon" 37 | 38 | msgid "Source repository" 39 | msgstr "Fonto-deponejo" 40 | 41 | msgid "By" 42 | msgstr "De" 43 | 44 | msgid "repository" 45 | msgstr "deponejo" 46 | 47 | msgid "Last updated on" 48 | msgstr "Laste ĝisdatigita la" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Ŝalti navigadon" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Sfinksa Libro-Temo" 55 | 56 | msgid "suggest edit" 57 | msgstr "sugesti redaktadon" 58 | 59 | msgid "Open an issue" 60 | msgstr "Malfermu numeron" 61 | 62 | msgid "Launch" 63 | msgstr "Lanĉo" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Plenekrana reĝimo" 67 | 68 | msgid "Edit this page" 69 | msgstr "Redaktu ĉi tiun paĝon" 70 | 71 | msgid "By the" 72 | msgstr "Per la" 73 | 74 | msgid "next page" 75 | msgstr "sekva paĝo" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/es/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/es/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/es/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: es\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Imprimir en PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Tema por el" 16 | 17 | msgid "Download source file" 18 | msgstr "Descargar archivo fuente" 19 | 20 | msgid "open issue" 21 | msgstr "Tema abierto" 22 | 23 | msgid "Contents" 24 | msgstr "Contenido" 25 | 26 | msgid "previous page" 27 | msgstr "pagina anterior" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Descargar archivo de cuaderno" 31 | 32 | msgid "Copyright" 33 | msgstr "Derechos de autor" 34 | 35 | msgid "Download this page" 36 | msgstr "Descarga esta pagina" 37 | 38 | msgid "Source repository" 39 | msgstr "Repositorio de origen" 40 | 41 | msgid "By" 42 | msgstr "Por" 43 | 44 | msgid "repository" 45 | msgstr "repositorio" 46 | 47 | msgid "Last updated on" 48 | msgstr "Ultima actualización en" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Navegación de palanca" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Tema del libro de la esfinge" 55 | 56 | msgid "suggest edit" 57 | msgstr "sugerir editar" 58 | 59 | msgid "Open an issue" 60 | msgstr "Abrir un problema" 61 | 62 | msgid "Launch" 63 | msgstr "Lanzamiento" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Modo de pantalla completa" 67 | 68 | msgid "Edit this page" 69 | msgstr "Edita esta página" 70 | 71 | msgid "By the" 72 | msgstr "Por el" 73 | 74 | msgid "next page" 75 | msgstr "siguiente página" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/et/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/et/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/et/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: et\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Prindi PDF-i" 13 | 14 | msgid "Theme by the" 15 | msgstr "Teema" 16 | 17 | msgid "Download source file" 18 | msgstr "Laadige alla lähtefail" 19 | 20 | msgid "open issue" 21 | msgstr "avatud küsimus" 22 | 23 | msgid "Contents" 24 | msgstr "Sisu" 25 | 26 | msgid "previous page" 27 | msgstr "eelmine leht" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Laadige sülearvuti fail alla" 31 | 32 | msgid "Copyright" 33 | msgstr "Autoriõigus" 34 | 35 | msgid "Download this page" 36 | msgstr "Laadige see leht alla" 37 | 38 | msgid "Source repository" 39 | msgstr "Allikahoidla" 40 | 41 | msgid "By" 42 | msgstr "Kõrval" 43 | 44 | msgid "repository" 45 | msgstr "hoidla" 46 | 47 | msgid "Last updated on" 48 | msgstr "Viimati uuendatud" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Lülita navigeerimine sisse" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Sfinksiraamatu teema" 55 | 56 | msgid "suggest edit" 57 | msgstr "soovita muuta" 58 | 59 | msgid "Open an issue" 60 | msgstr "Avage probleem" 61 | 62 | msgid "Launch" 63 | msgstr "Käivitage" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Täisekraanirežiim" 67 | 68 | msgid "Edit this page" 69 | msgstr "Muutke seda lehte" 70 | 71 | msgid "By the" 72 | msgstr "Autor" 73 | 74 | msgid "next page" 75 | msgstr "järgmine leht" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/fi/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/fi/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/fi/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: fi\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Tulosta PDF-tiedostoon" 13 | 14 | msgid "Theme by the" 15 | msgstr "Teeman tekijä" 16 | 17 | msgid "Download source file" 18 | msgstr "Lataa lähdetiedosto" 19 | 20 | msgid "open issue" 21 | msgstr "avoin ongelma" 22 | 23 | msgid "Contents" 24 | msgstr "Sisällys" 25 | 26 | msgid "previous page" 27 | msgstr "Edellinen sivu" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Lataa muistikirjatiedosto" 31 | 32 | msgid "Copyright" 33 | msgstr "Tekijänoikeus" 34 | 35 | msgid "Download this page" 36 | msgstr "Lataa tämä sivu" 37 | 38 | msgid "Source repository" 39 | msgstr "Lähteen arkisto" 40 | 41 | msgid "By" 42 | msgstr "Tekijä" 43 | 44 | msgid "repository" 45 | msgstr "arkisto" 46 | 47 | msgid "Last updated on" 48 | msgstr "Viimeksi päivitetty" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Vaihda navigointia" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Sphinx-kirjan teema" 55 | 56 | msgid "suggest edit" 57 | msgstr "ehdottaa muokkausta" 58 | 59 | msgid "Open an issue" 60 | msgstr "Avaa ongelma" 61 | 62 | msgid "Launch" 63 | msgstr "Tuoda markkinoille" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Koko näytön tila" 67 | 68 | msgid "Edit this page" 69 | msgstr "Muokkaa tätä sivua" 70 | 71 | msgid "By the" 72 | msgstr "Mukaan" 73 | 74 | msgid "next page" 75 | msgstr "seuraava sivu" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/fr/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/fr/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/fr/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: fr\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Imprimer au format PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Thème par le" 16 | 17 | msgid "Download source file" 18 | msgstr "Télécharger le fichier source" 19 | 20 | msgid "open issue" 21 | msgstr "signaler un problème" 22 | 23 | msgid "Contents" 24 | msgstr "Contenu" 25 | 26 | msgid "previous page" 27 | msgstr "page précédente" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Télécharger le fichier notebook" 31 | 32 | msgid "Copyright" 33 | msgstr "droits d'auteur" 34 | 35 | msgid "Download this page" 36 | msgstr "Téléchargez cette page" 37 | 38 | msgid "Source repository" 39 | msgstr "Dépôt source" 40 | 41 | msgid "By" 42 | msgstr "Par" 43 | 44 | msgid "repository" 45 | msgstr "dépôt" 46 | 47 | msgid "Last updated on" 48 | msgstr "Dernière mise à jour le" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Basculer la navigation" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Thème du livre Sphinx" 55 | 56 | msgid "suggest edit" 57 | msgstr "suggestion de modification" 58 | 59 | msgid "Open an issue" 60 | msgstr "Ouvrez un problème" 61 | 62 | msgid "Launch" 63 | msgstr "lancement" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Mode plein écran" 67 | 68 | msgid "Edit this page" 69 | msgstr "Modifier cette page" 70 | 71 | msgid "By the" 72 | msgstr "Par le" 73 | 74 | msgid "next page" 75 | msgstr "page suivante" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/hr/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/hr/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/hr/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: hr\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Ispis u PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Tema autora" 16 | 17 | msgid "Download source file" 18 | msgstr "Preuzmi izvornu datoteku" 19 | 20 | msgid "open issue" 21 | msgstr "otvoreno izdanje" 22 | 23 | msgid "Contents" 24 | msgstr "Sadržaj" 25 | 26 | msgid "previous page" 27 | msgstr "Prethodna stranica" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Preuzmi datoteku bilježnice" 31 | 32 | msgid "Copyright" 33 | msgstr "Autorska prava" 34 | 35 | msgid "Download this page" 36 | msgstr "Preuzmite ovu stranicu" 37 | 38 | msgid "Source repository" 39 | msgstr "Izvorno spremište" 40 | 41 | msgid "By" 42 | msgstr "Po" 43 | 44 | msgid "repository" 45 | msgstr "spremište" 46 | 47 | msgid "Last updated on" 48 | msgstr "Posljednje ažuriranje:" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Uključi / isključi navigaciju" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Tema knjige Sphinx" 55 | 56 | msgid "suggest edit" 57 | msgstr "predloži uređivanje" 58 | 59 | msgid "Open an issue" 60 | msgstr "Otvorite izdanje" 61 | 62 | msgid "Launch" 63 | msgstr "Pokrenite" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Način preko cijelog zaslona" 67 | 68 | msgid "Edit this page" 69 | msgstr "Uredite ovu stranicu" 70 | 71 | msgid "By the" 72 | msgstr "Od strane" 73 | 74 | msgid "next page" 75 | msgstr "sljedeća stranica" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/id/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/id/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/id/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: id\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Cetak ke PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Tema oleh" 16 | 17 | msgid "Download source file" 18 | msgstr "Unduh file sumber" 19 | 20 | msgid "open issue" 21 | msgstr "masalah terbuka" 22 | 23 | msgid "Contents" 24 | msgstr "Isi" 25 | 26 | msgid "previous page" 27 | msgstr "halaman sebelumnya" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Unduh file notebook" 31 | 32 | msgid "Copyright" 33 | msgstr "hak cipta" 34 | 35 | msgid "Download this page" 36 | msgstr "Unduh halaman ini" 37 | 38 | msgid "Source repository" 39 | msgstr "Repositori sumber" 40 | 41 | msgid "By" 42 | msgstr "Oleh" 43 | 44 | msgid "repository" 45 | msgstr "gudang" 46 | 47 | msgid "Last updated on" 48 | msgstr "Terakhir diperbarui saat" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Alihkan navigasi" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Tema Buku Sphinx" 55 | 56 | msgid "suggest edit" 57 | msgstr "menyarankan edit" 58 | 59 | msgid "Open an issue" 60 | msgstr "Buka masalah" 61 | 62 | msgid "Launch" 63 | msgstr "Meluncurkan" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Mode layar penuh" 67 | 68 | msgid "Edit this page" 69 | msgstr "Edit halaman ini" 70 | 71 | msgid "By the" 72 | msgstr "Oleh" 73 | 74 | msgid "next page" 75 | msgstr "halaman selanjutnya" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/it/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/it/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/it/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: it\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Stampa in PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Tema di" 16 | 17 | msgid "Download source file" 18 | msgstr "Scarica il file sorgente" 19 | 20 | msgid "open issue" 21 | msgstr "questione aperta" 22 | 23 | msgid "Contents" 24 | msgstr "Contenuti" 25 | 26 | msgid "previous page" 27 | msgstr "pagina precedente" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Scarica il file del taccuino" 31 | 32 | msgid "Copyright" 33 | msgstr "Diritto d'autore" 34 | 35 | msgid "Download this page" 36 | msgstr "Scarica questa pagina" 37 | 38 | msgid "Source repository" 39 | msgstr "Repository di origine" 40 | 41 | msgid "By" 42 | msgstr "Di" 43 | 44 | msgid "repository" 45 | msgstr "repository" 46 | 47 | msgid "Last updated on" 48 | msgstr "Ultimo aggiornamento il" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Attiva / disattiva la navigazione" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Tema del libro della Sfinge" 55 | 56 | msgid "suggest edit" 57 | msgstr "suggerisci modifica" 58 | 59 | msgid "Open an issue" 60 | msgstr "Apri un problema" 61 | 62 | msgid "Launch" 63 | msgstr "Lanciare" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Modalità schermo intero" 67 | 68 | msgid "Edit this page" 69 | msgstr "Modifica questa pagina" 70 | 71 | msgid "By the" 72 | msgstr "Dal" 73 | 74 | msgid "next page" 75 | msgstr "pagina successiva" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/iw/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/iw/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/iw/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: iw\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "הדפס לקובץ PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "נושא מאת" 16 | 17 | msgid "Download source file" 18 | msgstr "הורד את קובץ המקור" 19 | 20 | msgid "open issue" 21 | msgstr "בעיה פתוחה" 22 | 23 | msgid "Contents" 24 | msgstr "תוכן" 25 | 26 | msgid "previous page" 27 | msgstr "עמוד קודם" 28 | 29 | msgid "Download notebook file" 30 | msgstr "הורד קובץ מחברת" 31 | 32 | msgid "Copyright" 33 | msgstr "זכויות יוצרים" 34 | 35 | msgid "Download this page" 36 | msgstr "הורד דף זה" 37 | 38 | msgid "Source repository" 39 | msgstr "מאגר המקורות" 40 | 41 | msgid "By" 42 | msgstr "על ידי" 43 | 44 | msgid "repository" 45 | msgstr "מאגר" 46 | 47 | msgid "Last updated on" 48 | msgstr "עודכן לאחרונה ב" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "החלף ניווט" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "נושא ספר ספינקס" 55 | 56 | msgid "suggest edit" 57 | msgstr "מציע לערוך" 58 | 59 | msgid "Open an issue" 60 | msgstr "פתח גיליון" 61 | 62 | msgid "Launch" 63 | msgstr "לְהַשִׁיק" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "מצב מסך מלא" 67 | 68 | msgid "Edit this page" 69 | msgstr "ערוך דף זה" 70 | 71 | msgid "By the" 72 | msgstr "דרך" 73 | 74 | msgid "next page" 75 | msgstr "עמוד הבא" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/ja/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/ja/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/ja/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ja\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "PDFに印刷" 13 | 14 | msgid "Theme by the" 15 | msgstr "のテーマ" 16 | 17 | msgid "Download source file" 18 | msgstr "ソースファイルをダウンロード" 19 | 20 | msgid "open issue" 21 | msgstr "未解決の問題" 22 | 23 | msgid "Contents" 24 | msgstr "目次" 25 | 26 | msgid "previous page" 27 | msgstr "前のページ" 28 | 29 | msgid "Download notebook file" 30 | msgstr "ノートブックファイルをダウンロード" 31 | 32 | msgid "Copyright" 33 | msgstr "Copyright" 34 | 35 | msgid "Download this page" 36 | msgstr "このページをダウンロード" 37 | 38 | msgid "Source repository" 39 | msgstr "ソースリポジトリ" 40 | 41 | msgid "By" 42 | msgstr "著者" 43 | 44 | msgid "repository" 45 | msgstr "リポジトリ" 46 | 47 | msgid "Last updated on" 48 | msgstr "最終更新日" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "ナビゲーションを切り替え" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "スフィンクスの本のテーマ" 55 | 56 | msgid "suggest edit" 57 | msgstr "編集を提案する" 58 | 59 | msgid "Open an issue" 60 | msgstr "問題を報告" 61 | 62 | msgid "Launch" 63 | msgstr "起動" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "全画面モード" 67 | 68 | msgid "Edit this page" 69 | msgstr "このページを編集" 70 | 71 | msgid "By the" 72 | msgstr "によって" 73 | 74 | msgid "next page" 75 | msgstr "次のページ" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/ko/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/ko/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/ko/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ko\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "PDF로 인쇄" 13 | 14 | msgid "Theme by the" 15 | msgstr "테마별" 16 | 17 | msgid "Download source file" 18 | msgstr "소스 파일 다운로드" 19 | 20 | msgid "open issue" 21 | msgstr "열린 문제" 22 | 23 | msgid "Contents" 24 | msgstr "내용" 25 | 26 | msgid "previous page" 27 | msgstr "이전 페이지" 28 | 29 | msgid "Download notebook file" 30 | msgstr "노트북 파일 다운로드" 31 | 32 | msgid "Copyright" 33 | msgstr "저작권" 34 | 35 | msgid "Download this page" 36 | msgstr "이 페이지 다운로드" 37 | 38 | msgid "Source repository" 39 | msgstr "소스 저장소" 40 | 41 | msgid "By" 42 | msgstr "으로" 43 | 44 | msgid "repository" 45 | msgstr "저장소" 46 | 47 | msgid "Last updated on" 48 | msgstr "마지막 업데이트" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "탐색 전환" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "스핑크스 도서 테마" 55 | 56 | msgid "suggest edit" 57 | msgstr "편집 제안" 58 | 59 | msgid "Open an issue" 60 | msgstr "이슈 열기" 61 | 62 | msgid "Launch" 63 | msgstr "시작하다" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "전체 화면으로보기" 67 | 68 | msgid "Edit this page" 69 | msgstr "이 페이지 편집" 70 | 71 | msgid "By the" 72 | msgstr "에 의해" 73 | 74 | msgid "next page" 75 | msgstr "다음 페이지" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/lt/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/lt/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/lt/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: lt\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Spausdinti į PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Tema" 16 | 17 | msgid "Download source file" 18 | msgstr "Atsisiųsti šaltinio failą" 19 | 20 | msgid "open issue" 21 | msgstr "atviras klausimas" 22 | 23 | msgid "Contents" 24 | msgstr "Turinys" 25 | 26 | msgid "previous page" 27 | msgstr "Ankstesnis puslapis" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Atsisiųsti nešiojamojo kompiuterio failą" 31 | 32 | msgid "Copyright" 33 | msgstr "Autorių teisės" 34 | 35 | msgid "Download this page" 36 | msgstr "Atsisiųskite šį puslapį" 37 | 38 | msgid "Source repository" 39 | msgstr "Šaltinio saugykla" 40 | 41 | msgid "By" 42 | msgstr "Iki" 43 | 44 | msgid "repository" 45 | msgstr "saugykla" 46 | 47 | msgid "Last updated on" 48 | msgstr "Paskutinį kartą atnaujinta" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Perjungti naršymą" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Sfinkso knygos tema" 55 | 56 | msgid "suggest edit" 57 | msgstr "pasiūlyti redaguoti" 58 | 59 | msgid "Open an issue" 60 | msgstr "Atidarykite problemą" 61 | 62 | msgid "Launch" 63 | msgstr "Paleiskite" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Pilno ekrano režimas" 67 | 68 | msgid "Edit this page" 69 | msgstr "Redaguoti šį puslapį" 70 | 71 | msgid "By the" 72 | msgstr "Prie" 73 | 74 | msgid "next page" 75 | msgstr "Kitas puslapis" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/lv/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/lv/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/lv/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: lv\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Drukāt PDF formātā" 13 | 14 | msgid "Theme by the" 15 | msgstr "Autora tēma" 16 | 17 | msgid "Download source file" 18 | msgstr "Lejupielādēt avota failu" 19 | 20 | msgid "open issue" 21 | msgstr "atklāts jautājums" 22 | 23 | msgid "Contents" 24 | msgstr "Saturs" 25 | 26 | msgid "previous page" 27 | msgstr "iepriekšējā lapa" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Lejupielādēt piezīmju grāmatiņu" 31 | 32 | msgid "Copyright" 33 | msgstr "Autortiesības" 34 | 35 | msgid "Download this page" 36 | msgstr "Lejupielādējiet šo lapu" 37 | 38 | msgid "Source repository" 39 | msgstr "Avota krātuve" 40 | 41 | msgid "By" 42 | msgstr "Autors" 43 | 44 | msgid "repository" 45 | msgstr "krātuve" 46 | 47 | msgid "Last updated on" 48 | msgstr "Pēdējoreiz atjaunināts" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Pārslēgt navigāciju" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Sfinksa grāmatas tēma" 55 | 56 | msgid "suggest edit" 57 | msgstr "ieteikt rediģēt" 58 | 59 | msgid "Open an issue" 60 | msgstr "Atveriet problēmu" 61 | 62 | msgid "Launch" 63 | msgstr "Uzsākt" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Pilnekrāna režīms" 67 | 68 | msgid "Edit this page" 69 | msgstr "Rediģēt šo lapu" 70 | 71 | msgid "By the" 72 | msgstr "Ar" 73 | 74 | msgid "next page" 75 | msgstr "nākamā lapaspuse" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/ml/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/ml/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/ml/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ml\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "PDF- ലേക്ക് പ്രിന്റുചെയ്യുക" 13 | 14 | msgid "Theme by the" 15 | msgstr "പ്രമേയം" 16 | 17 | msgid "Download source file" 18 | msgstr "ഉറവിട ഫയൽ ഡൗൺലോഡുചെയ്യുക" 19 | 20 | msgid "open issue" 21 | msgstr "തുറന്ന പ്രശ്നം" 22 | 23 | msgid "previous page" 24 | msgstr "മുൻപത്തെ താൾ" 25 | 26 | msgid "Download notebook file" 27 | msgstr "നോട്ട്ബുക്ക് ഫയൽ ഡൺലോഡ് ചെയ്യുക" 28 | 29 | msgid "Copyright" 30 | msgstr "പകർപ്പവകാശം" 31 | 32 | msgid "Download this page" 33 | msgstr "ഈ പേജ് ഡൗൺലോഡുചെയ്യുക" 34 | 35 | msgid "Source repository" 36 | msgstr "ഉറവിട ശേഖരം" 37 | 38 | msgid "By" 39 | msgstr "എഴുതിയത്" 40 | 41 | msgid "Last updated on" 42 | msgstr "അവസാനം അപ്‌ഡേറ്റുചെയ്‌തത്" 43 | 44 | msgid "Toggle navigation" 45 | msgstr "നാവിഗേഷൻ ടോഗിൾ ചെയ്യുക" 46 | 47 | msgid "Sphinx Book Theme" 48 | msgstr "സ്ഫിങ്ക്സ് പുസ്തക തീം" 49 | 50 | msgid "suggest edit" 51 | msgstr "എഡിറ്റുചെയ്യാൻ നിർദ്ദേശിക്കുക" 52 | 53 | msgid "Open an issue" 54 | msgstr "ഒരു പ്രശ്നം തുറക്കുക" 55 | 56 | msgid "Launch" 57 | msgstr "സമാരംഭിക്കുക" 58 | 59 | msgid "Edit this page" 60 | msgstr "ഈ പേജ് എഡിറ്റുചെയ്യുക" 61 | 62 | msgid "By the" 63 | msgstr "എഴുതിയത്" 64 | 65 | msgid "next page" 66 | msgstr "അടുത്ത പേജ്" 67 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/mr/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/mr/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/mr/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: mr\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "पीडीएफवर मुद्रित करा" 13 | 14 | msgid "Theme by the" 15 | msgstr "द्वारा थीम" 16 | 17 | msgid "Download source file" 18 | msgstr "स्त्रोत फाइल डाउनलोड करा" 19 | 20 | msgid "open issue" 21 | msgstr "खुला मुद्दा" 22 | 23 | msgid "previous page" 24 | msgstr "मागील पान" 25 | 26 | msgid "Download notebook file" 27 | msgstr "नोटबुक फाईल डाउनलोड करा" 28 | 29 | msgid "Copyright" 30 | msgstr "कॉपीराइट" 31 | 32 | msgid "Download this page" 33 | msgstr "हे पृष्ठ डाउनलोड करा" 34 | 35 | msgid "Source repository" 36 | msgstr "स्त्रोत भांडार" 37 | 38 | msgid "By" 39 | msgstr "द्वारा" 40 | 41 | msgid "Last updated on" 42 | msgstr "अखेरचे अद्यतनित" 43 | 44 | msgid "Toggle navigation" 45 | msgstr "नेव्हिगेशन टॉगल करा" 46 | 47 | msgid "Sphinx Book Theme" 48 | msgstr "स्फिंक्स बुक थीम" 49 | 50 | msgid "suggest edit" 51 | msgstr "संपादन सुचवा" 52 | 53 | msgid "Open an issue" 54 | msgstr "एक मुद्दा उघडा" 55 | 56 | msgid "Launch" 57 | msgstr "लाँच करा" 58 | 59 | msgid "Edit this page" 60 | msgstr "हे पृष्ठ संपादित करा" 61 | 62 | msgid "By the" 63 | msgstr "द्वारा" 64 | 65 | msgid "next page" 66 | msgstr "पुढील पृष्ठ" 67 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/ms/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/ms/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/ms/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ms\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Cetak ke PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Tema oleh" 16 | 17 | msgid "Download source file" 18 | msgstr "Muat turun fail sumber" 19 | 20 | msgid "open issue" 21 | msgstr "isu terbuka" 22 | 23 | msgid "previous page" 24 | msgstr "halaman sebelumnya" 25 | 26 | msgid "Download notebook file" 27 | msgstr "Muat turun fail buku nota" 28 | 29 | msgid "Copyright" 30 | msgstr "hak cipta" 31 | 32 | msgid "Download this page" 33 | msgstr "Muat turun halaman ini" 34 | 35 | msgid "Source repository" 36 | msgstr "Repositori sumber" 37 | 38 | msgid "By" 39 | msgstr "Oleh" 40 | 41 | msgid "Last updated on" 42 | msgstr "Terakhir dikemas kini pada" 43 | 44 | msgid "Toggle navigation" 45 | msgstr "Togol navigasi" 46 | 47 | msgid "Sphinx Book Theme" 48 | msgstr "Tema Buku Sphinx" 49 | 50 | msgid "suggest edit" 51 | msgstr "cadangkan edit" 52 | 53 | msgid "Open an issue" 54 | msgstr "Buka masalah" 55 | 56 | msgid "Launch" 57 | msgstr "Lancarkan" 58 | 59 | msgid "Edit this page" 60 | msgstr "Edit halaman ini" 61 | 62 | msgid "By the" 63 | msgstr "Oleh" 64 | 65 | msgid "next page" 66 | msgstr "muka surat seterusnya" 67 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/nl/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/nl/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/nl/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: nl\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Afdrukken naar pdf" 13 | 14 | msgid "Theme by the" 15 | msgstr "Thema door de" 16 | 17 | msgid "Download source file" 18 | msgstr "Download het bronbestand" 19 | 20 | msgid "open issue" 21 | msgstr "open probleem" 22 | 23 | msgid "Contents" 24 | msgstr "Inhoud" 25 | 26 | msgid "previous page" 27 | msgstr "vorige pagina" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Download notebookbestand" 31 | 32 | msgid "Copyright" 33 | msgstr "auteursrechten" 34 | 35 | msgid "Download this page" 36 | msgstr "Download deze pagina" 37 | 38 | msgid "Source repository" 39 | msgstr "Bronopslagplaats" 40 | 41 | msgid "By" 42 | msgstr "Door" 43 | 44 | msgid "repository" 45 | msgstr "repository" 46 | 47 | msgid "Last updated on" 48 | msgstr "Laatst geupdate op" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Schakel navigatie" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Sphinx-boekthema" 55 | 56 | msgid "suggest edit" 57 | msgstr "suggereren bewerken" 58 | 59 | msgid "Open an issue" 60 | msgstr "Open een probleem" 61 | 62 | msgid "Launch" 63 | msgstr "Lancering" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Volledig scherm" 67 | 68 | msgid "Edit this page" 69 | msgstr "bewerk deze pagina" 70 | 71 | msgid "By the" 72 | msgstr "Door de" 73 | 74 | msgid "next page" 75 | msgstr "volgende bladzijde" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/no/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/no/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/no/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: no\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Skriv ut til PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Tema av" 16 | 17 | msgid "Download source file" 18 | msgstr "Last ned kildefilen" 19 | 20 | msgid "open issue" 21 | msgstr "åpent nummer" 22 | 23 | msgid "Contents" 24 | msgstr "Innhold" 25 | 26 | msgid "previous page" 27 | msgstr "forrige side" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Last ned notatbokfilen" 31 | 32 | msgid "Copyright" 33 | msgstr "opphavsrett" 34 | 35 | msgid "Download this page" 36 | msgstr "Last ned denne siden" 37 | 38 | msgid "Source repository" 39 | msgstr "Kildedepot" 40 | 41 | msgid "By" 42 | msgstr "Av" 43 | 44 | msgid "repository" 45 | msgstr "oppbevaringssted" 46 | 47 | msgid "Last updated on" 48 | msgstr "Sist oppdatert den" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Bytt navigasjon" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Sphinx boktema" 55 | 56 | msgid "suggest edit" 57 | msgstr "foreslå redigering" 58 | 59 | msgid "Open an issue" 60 | msgstr "Åpne et problem" 61 | 62 | msgid "Launch" 63 | msgstr "Start" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Fullskjerm-modus" 67 | 68 | msgid "Edit this page" 69 | msgstr "Rediger denne siden" 70 | 71 | msgid "By the" 72 | msgstr "Ved" 73 | 74 | msgid "next page" 75 | msgstr "neste side" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/pl/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/pl/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/pl/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: pl\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Drukuj do PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Motyw autorstwa" 16 | 17 | msgid "Download source file" 18 | msgstr "Pobierz plik źródłowy" 19 | 20 | msgid "open issue" 21 | msgstr "otwarty problem" 22 | 23 | msgid "Contents" 24 | msgstr "Zawartość" 25 | 26 | msgid "previous page" 27 | msgstr "Poprzednia strona" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Pobierz plik notatnika" 31 | 32 | msgid "Copyright" 33 | msgstr "prawa autorskie" 34 | 35 | msgid "Download this page" 36 | msgstr "Pobierz tę stronę" 37 | 38 | msgid "Source repository" 39 | msgstr "Repozytorium źródłowe" 40 | 41 | msgid "By" 42 | msgstr "Przez" 43 | 44 | msgid "repository" 45 | msgstr "magazyn" 46 | 47 | msgid "Last updated on" 48 | msgstr "Ostatnia aktualizacja" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Przełącz nawigację" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Motyw książki Sphinx" 55 | 56 | msgid "suggest edit" 57 | msgstr "zaproponuj edycję" 58 | 59 | msgid "Open an issue" 60 | msgstr "Otwórz problem" 61 | 62 | msgid "Launch" 63 | msgstr "Uruchomić" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Pełny ekran" 67 | 68 | msgid "Edit this page" 69 | msgstr "Edytuj tę strone" 70 | 71 | msgid "By the" 72 | msgstr "Przez" 73 | 74 | msgid "next page" 75 | msgstr "Następna strona" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/pt/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/pt/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/pt/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: pt\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Imprimir em PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Tema por" 16 | 17 | msgid "Download source file" 18 | msgstr "Baixar arquivo fonte" 19 | 20 | msgid "open issue" 21 | msgstr "questão aberta" 22 | 23 | msgid "Contents" 24 | msgstr "Conteúdo" 25 | 26 | msgid "previous page" 27 | msgstr "página anterior" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Baixar arquivo de notebook" 31 | 32 | msgid "Copyright" 33 | msgstr "direito autoral" 34 | 35 | msgid "Download this page" 36 | msgstr "Baixe esta página" 37 | 38 | msgid "Source repository" 39 | msgstr "Repositório fonte" 40 | 41 | msgid "By" 42 | msgstr "De" 43 | 44 | msgid "repository" 45 | msgstr "repositório" 46 | 47 | msgid "Last updated on" 48 | msgstr "Última atualização em" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Alternar de navegação" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Tema do livro Sphinx" 55 | 56 | msgid "suggest edit" 57 | msgstr "sugerir edição" 58 | 59 | msgid "Open an issue" 60 | msgstr "Abra um problema" 61 | 62 | msgid "Launch" 63 | msgstr "Lançamento" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Modo tela cheia" 67 | 68 | msgid "Edit this page" 69 | msgstr "Edite essa página" 70 | 71 | msgid "By the" 72 | msgstr "Pelo" 73 | 74 | msgid "next page" 75 | msgstr "próxima página" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/ro/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/ro/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/ro/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ro\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Imprimați în PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Tema de" 16 | 17 | msgid "Download source file" 18 | msgstr "Descărcați fișierul sursă" 19 | 20 | msgid "open issue" 21 | msgstr "problema deschisă" 22 | 23 | msgid "Contents" 24 | msgstr "Cuprins" 25 | 26 | msgid "previous page" 27 | msgstr "pagina anterioară" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Descărcați fișierul notebook" 31 | 32 | msgid "Copyright" 33 | msgstr "Drepturi de autor" 34 | 35 | msgid "Download this page" 36 | msgstr "Descarcă această pagină" 37 | 38 | msgid "Source repository" 39 | msgstr "Depozit sursă" 40 | 41 | msgid "By" 42 | msgstr "De" 43 | 44 | msgid "repository" 45 | msgstr "repertoriu" 46 | 47 | msgid "Last updated on" 48 | msgstr "Ultima actualizare la" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Comutare navigare" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Tema Sphinx Book" 55 | 56 | msgid "suggest edit" 57 | msgstr "sugerează editare" 58 | 59 | msgid "Open an issue" 60 | msgstr "Deschideți o problemă" 61 | 62 | msgid "Launch" 63 | msgstr "Lansa" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Modul ecran întreg" 67 | 68 | msgid "Edit this page" 69 | msgstr "Editați această pagină" 70 | 71 | msgid "By the" 72 | msgstr "Langa" 73 | 74 | msgid "next page" 75 | msgstr "pagina următoare" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/ru/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/ru/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/ru/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ru\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Распечатать в PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Тема от" 16 | 17 | msgid "Download source file" 18 | msgstr "Скачать исходный файл" 19 | 20 | msgid "open issue" 21 | msgstr "открытый вопрос" 22 | 23 | msgid "Contents" 24 | msgstr "Содержание" 25 | 26 | msgid "previous page" 27 | msgstr "Предыдущая страница" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Скачать файл записной книжки" 31 | 32 | msgid "Copyright" 33 | msgstr "авторское право" 34 | 35 | msgid "Download this page" 36 | msgstr "Загрузите эту страницу" 37 | 38 | msgid "Source repository" 39 | msgstr "Исходный репозиторий" 40 | 41 | msgid "By" 42 | msgstr "По" 43 | 44 | msgid "repository" 45 | msgstr "хранилище" 46 | 47 | msgid "Last updated on" 48 | msgstr "Последнее обновление" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Переключить навигацию" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Тема книги Сфинкс" 55 | 56 | msgid "suggest edit" 57 | msgstr "предложить редактировать" 58 | 59 | msgid "Open an issue" 60 | msgstr "Открыть вопрос" 61 | 62 | msgid "Launch" 63 | msgstr "Запуск" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Полноэкранный режим" 67 | 68 | msgid "Edit this page" 69 | msgstr "Редактировать эту страницу" 70 | 71 | msgid "By the" 72 | msgstr "Посредством" 73 | 74 | msgid "next page" 75 | msgstr "Следующая страница" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/sk/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/sk/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/sk/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: sk\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Tlač do PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Téma od" 16 | 17 | msgid "Download source file" 18 | msgstr "Stiahnite si zdrojový súbor" 19 | 20 | msgid "open issue" 21 | msgstr "otvorené vydanie" 22 | 23 | msgid "Contents" 24 | msgstr "Obsah" 25 | 26 | msgid "previous page" 27 | msgstr "predchádzajúca strana" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Stiahnite si zošit" 31 | 32 | msgid "Copyright" 33 | msgstr "Autorské práva" 34 | 35 | msgid "Download this page" 36 | msgstr "Stiahnite si túto stránku" 37 | 38 | msgid "Source repository" 39 | msgstr "Zdrojové úložisko" 40 | 41 | msgid "By" 42 | msgstr "Autor:" 43 | 44 | msgid "repository" 45 | msgstr "Úložisko" 46 | 47 | msgid "Last updated on" 48 | msgstr "Posledná aktualizácia dňa" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Prepnúť navigáciu" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Téma knihy Sfinga" 55 | 56 | msgid "suggest edit" 57 | msgstr "navrhnúť úpravu" 58 | 59 | msgid "Open an issue" 60 | msgstr "Otvorte problém" 61 | 62 | msgid "Launch" 63 | msgstr "Spustiť" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Režim celej obrazovky" 67 | 68 | msgid "Edit this page" 69 | msgstr "Upraviť túto stránku" 70 | 71 | msgid "By the" 72 | msgstr "Podľa" 73 | 74 | msgid "next page" 75 | msgstr "ďalšia strana" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/sl/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/sl/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/sl/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: sl\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Natisni v PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Tema avtorja" 16 | 17 | msgid "Download source file" 18 | msgstr "Prenesite izvorno datoteko" 19 | 20 | msgid "open issue" 21 | msgstr "odprto vprašanje" 22 | 23 | msgid "Contents" 24 | msgstr "Vsebina" 25 | 26 | msgid "previous page" 27 | msgstr "Prejšnja stran" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Prenesite datoteko zvezka" 31 | 32 | msgid "Copyright" 33 | msgstr "avtorske pravice" 34 | 35 | msgid "Download this page" 36 | msgstr "Prenesite to stran" 37 | 38 | msgid "Source repository" 39 | msgstr "Izvorno skladišče" 40 | 41 | msgid "By" 42 | msgstr "Avtor" 43 | 44 | msgid "repository" 45 | msgstr "odlagališče" 46 | 47 | msgid "Last updated on" 48 | msgstr "Nazadnje posodobljeno dne" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Preklopi navigacijo" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Tema knjige Sphinx" 55 | 56 | msgid "suggest edit" 57 | msgstr "predlagajte urejanje" 58 | 59 | msgid "Open an issue" 60 | msgstr "Odprite številko" 61 | 62 | msgid "Launch" 63 | msgstr "Kosilo" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Celozaslonski način" 67 | 68 | msgid "Edit this page" 69 | msgstr "Uredite to stran" 70 | 71 | msgid "By the" 72 | msgstr "Avtor" 73 | 74 | msgid "next page" 75 | msgstr "Naslednja stran" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/sr/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/sr/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/sr/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: sr\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Испис у ПДФ" 13 | 14 | msgid "Theme by the" 15 | msgstr "Тхеме би" 16 | 17 | msgid "Download source file" 18 | msgstr "Преузми изворну датотеку" 19 | 20 | msgid "open issue" 21 | msgstr "отворено издање" 22 | 23 | msgid "Contents" 24 | msgstr "Садржај" 25 | 26 | msgid "previous page" 27 | msgstr "Претходна страница" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Преузмите датотеку бележнице" 31 | 32 | msgid "Copyright" 33 | msgstr "Ауторско право" 34 | 35 | msgid "Download this page" 36 | msgstr "Преузмите ову страницу" 37 | 38 | msgid "Source repository" 39 | msgstr "Изворно спремиште" 40 | 41 | msgid "By" 42 | msgstr "Од стране" 43 | 44 | msgid "repository" 45 | msgstr "спремиште" 46 | 47 | msgid "Last updated on" 48 | msgstr "Последње ажурирање" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Укључи / искључи навигацију" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Тема књиге Спхинк" 55 | 56 | msgid "suggest edit" 57 | msgstr "предложи уређивање" 58 | 59 | msgid "Open an issue" 60 | msgstr "Отворите издање" 61 | 62 | msgid "Launch" 63 | msgstr "Лансирање" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Режим целог екрана" 67 | 68 | msgid "Edit this page" 69 | msgstr "Уредите ову страницу" 70 | 71 | msgid "By the" 72 | msgstr "Од" 73 | 74 | msgid "next page" 75 | msgstr "Следећа страна" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/sv/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/sv/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/sv/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: sv\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Skriv ut till PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Tema av" 16 | 17 | msgid "Download source file" 18 | msgstr "Ladda ner källfil" 19 | 20 | msgid "open issue" 21 | msgstr "öppna problemrapport" 22 | 23 | msgid "Contents" 24 | msgstr "Innehåll" 25 | 26 | msgid "previous page" 27 | msgstr "föregående sida" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Ladda ner notebook-fil" 31 | 32 | msgid "Copyright" 33 | msgstr "Upphovsrätt" 34 | 35 | msgid "Download this page" 36 | msgstr "Ladda ner den här sidan" 37 | 38 | msgid "Source repository" 39 | msgstr "Källkodsrepositorium" 40 | 41 | msgid "By" 42 | msgstr "Av" 43 | 44 | msgid "repository" 45 | msgstr "repositorium" 46 | 47 | msgid "Last updated on" 48 | msgstr "Senast uppdaterad den" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Växla navigering" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Sphinx Boktema" 55 | 56 | msgid "suggest edit" 57 | msgstr "föreslå ändring" 58 | 59 | msgid "Open an issue" 60 | msgstr "Öppna en problemrapport" 61 | 62 | msgid "Launch" 63 | msgstr "Öppna" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Fullskärmsläge" 67 | 68 | msgid "Edit this page" 69 | msgstr "Redigera den här sidan" 70 | 71 | msgid "By the" 72 | msgstr "Av den" 73 | 74 | msgid "next page" 75 | msgstr "nästa sida" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/ta/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/ta/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/ta/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ta\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "PDF இல் அச்சிடுக" 13 | 14 | msgid "Theme by the" 15 | msgstr "வழங்கிய தீம்" 16 | 17 | msgid "Download source file" 18 | msgstr "மூல கோப்பைப் பதிவிறக்குக" 19 | 20 | msgid "open issue" 21 | msgstr "திறந்த பிரச்சினை" 22 | 23 | msgid "previous page" 24 | msgstr "முந்தைய பக்கம்" 25 | 26 | msgid "Download notebook file" 27 | msgstr "நோட்புக் கோப்பைப் பதிவிறக்கவும்" 28 | 29 | msgid "Copyright" 30 | msgstr "பதிப்புரிமை" 31 | 32 | msgid "Download this page" 33 | msgstr "இந்தப் பக்கத்தைப் பதிவிறக்கவும்" 34 | 35 | msgid "Source repository" 36 | msgstr "மூல களஞ்சியம்" 37 | 38 | msgid "By" 39 | msgstr "வழங்கியவர்" 40 | 41 | msgid "Last updated on" 42 | msgstr "கடைசியாக புதுப்பிக்கப்பட்டது" 43 | 44 | msgid "Toggle navigation" 45 | msgstr "வழிசெலுத்தலை நிலைமாற்று" 46 | 47 | msgid "Sphinx Book Theme" 48 | msgstr "ஸ்பிங்க்ஸ் புத்தக தீம்" 49 | 50 | msgid "suggest edit" 51 | msgstr "திருத்த பரிந்துரைக்கவும்" 52 | 53 | msgid "Open an issue" 54 | msgstr "சிக்கலைத் திறக்கவும்" 55 | 56 | msgid "Launch" 57 | msgstr "தொடங்க" 58 | 59 | msgid "Edit this page" 60 | msgstr "இந்தப் பக்கத்தைத் திருத்தவும்" 61 | 62 | msgid "By the" 63 | msgstr "மூலம்" 64 | 65 | msgid "next page" 66 | msgstr "அடுத்த பக்கம்" 67 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/te/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/te/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/te/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: te\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "PDF కి ముద్రించండి" 13 | 14 | msgid "Theme by the" 15 | msgstr "ద్వారా థీమ్" 16 | 17 | msgid "Download source file" 18 | msgstr "మూల ఫైల్‌ను డౌన్‌లోడ్ చేయండి" 19 | 20 | msgid "open issue" 21 | msgstr "ఓపెన్ ఇష్యూ" 22 | 23 | msgid "previous page" 24 | msgstr "ముందు పేజి" 25 | 26 | msgid "Download notebook file" 27 | msgstr "నోట్బుక్ ఫైల్ను డౌన్లోడ్ చేయండి" 28 | 29 | msgid "Copyright" 30 | msgstr "కాపీరైట్" 31 | 32 | msgid "Download this page" 33 | msgstr "ఈ పేజీని డౌన్‌లోడ్ చేయండి" 34 | 35 | msgid "Source repository" 36 | msgstr "మూల రిపోజిటరీ" 37 | 38 | msgid "By" 39 | msgstr "ద్వారా" 40 | 41 | msgid "Last updated on" 42 | msgstr "చివరిగా నవీకరించబడింది" 43 | 44 | msgid "Toggle navigation" 45 | msgstr "నావిగేషన్‌ను టోగుల్ చేయండి" 46 | 47 | msgid "Sphinx Book Theme" 48 | msgstr "సింహిక పుస్తక థీమ్" 49 | 50 | msgid "suggest edit" 51 | msgstr "సవరించమని సూచించండి" 52 | 53 | msgid "Open an issue" 54 | msgstr "సమస్యను తెరవండి" 55 | 56 | msgid "Launch" 57 | msgstr "ప్రారంభించండి" 58 | 59 | msgid "Edit this page" 60 | msgstr "ఈ పేజీని సవరించండి" 61 | 62 | msgid "By the" 63 | msgstr "ద్వారా" 64 | 65 | msgid "next page" 66 | msgstr "తరువాతి పేజీ" 67 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/tg/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/tg/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/tg/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: tg\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Чоп ба PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Мавзӯъи аз" 16 | 17 | msgid "Download source file" 18 | msgstr "Файли манбаъро зеркашӣ кунед" 19 | 20 | msgid "open issue" 21 | msgstr "барориши кушод" 22 | 23 | msgid "Contents" 24 | msgstr "Мундариҷа" 25 | 26 | msgid "previous page" 27 | msgstr "саҳифаи қаблӣ" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Файли дафтарро зеркашӣ кунед" 31 | 32 | msgid "Copyright" 33 | msgstr "Ҳуқуқи муаллиф" 34 | 35 | msgid "Download this page" 36 | msgstr "Ин саҳифаро зеркашӣ кунед" 37 | 38 | msgid "Source repository" 39 | msgstr "Анбори манбаъ" 40 | 41 | msgid "By" 42 | msgstr "Бо" 43 | 44 | msgid "repository" 45 | msgstr "анбор" 46 | 47 | msgid "Last updated on" 48 | msgstr "Last навсозӣ дар" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Гузаришро иваз кунед" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Сфинкс Мавзӯи китоб" 55 | 56 | msgid "suggest edit" 57 | msgstr "пешниҳод вироиш" 58 | 59 | msgid "Open an issue" 60 | msgstr "Масъаларо кушоед" 61 | 62 | msgid "Launch" 63 | msgstr "Оғоз" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Ҳолати экрани пурра" 67 | 68 | msgid "Edit this page" 69 | msgstr "Ин саҳифаро таҳрир кунед" 70 | 71 | msgid "By the" 72 | msgstr "Бо" 73 | 74 | msgid "next page" 75 | msgstr "саҳифаи оянда" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/th/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/th/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/th/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: th\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "พิมพ์เป็น PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "ธีมโดย" 16 | 17 | msgid "Download source file" 18 | msgstr "ดาวน์โหลดไฟล์ต้นฉบับ" 19 | 20 | msgid "open issue" 21 | msgstr "เปิดปัญหา" 22 | 23 | msgid "Contents" 24 | msgstr "สารบัญ" 25 | 26 | msgid "previous page" 27 | msgstr "หน้าที่แล้ว" 28 | 29 | msgid "Download notebook file" 30 | msgstr "ดาวน์โหลดไฟล์สมุดบันทึก" 31 | 32 | msgid "Copyright" 33 | msgstr "ลิขสิทธิ์" 34 | 35 | msgid "Download this page" 36 | msgstr "ดาวน์โหลดหน้านี้" 37 | 38 | msgid "Source repository" 39 | msgstr "ที่เก็บซอร์ส" 40 | 41 | msgid "By" 42 | msgstr "โดย" 43 | 44 | msgid "repository" 45 | msgstr "ที่เก็บ" 46 | 47 | msgid "Last updated on" 48 | msgstr "ปรับปรุงล่าสุดเมื่อ" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "ไม่ต้องสลับช่องทาง" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "ธีมหนังสือสฟิงซ์" 55 | 56 | msgid "suggest edit" 57 | msgstr "แนะนำแก้ไข" 58 | 59 | msgid "Open an issue" 60 | msgstr "เปิดปัญหา" 61 | 62 | msgid "Launch" 63 | msgstr "เปิด" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "โหมดเต็มหน้าจอ" 67 | 68 | msgid "Edit this page" 69 | msgstr "แก้ไขหน้านี้" 70 | 71 | msgid "By the" 72 | msgstr "โดย" 73 | 74 | msgid "next page" 75 | msgstr "หน้าต่อไป" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/tl/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/tl/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/tl/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: tl\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "I-print sa PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Tema ng" 16 | 17 | msgid "Download source file" 18 | msgstr "Mag-download ng file ng pinagmulan" 19 | 20 | msgid "open issue" 21 | msgstr "bukas na isyu" 22 | 23 | msgid "previous page" 24 | msgstr "Nakaraang pahina" 25 | 26 | msgid "Download notebook file" 27 | msgstr "Mag-download ng file ng notebook" 28 | 29 | msgid "Copyright" 30 | msgstr "Copyright" 31 | 32 | msgid "Download this page" 33 | msgstr "I-download ang pahinang ito" 34 | 35 | msgid "Source repository" 36 | msgstr "Pinagmulan ng imbakan" 37 | 38 | msgid "By" 39 | msgstr "Ni" 40 | 41 | msgid "Last updated on" 42 | msgstr "Huling na-update noong" 43 | 44 | msgid "Toggle navigation" 45 | msgstr "I-toggle ang pag-navigate" 46 | 47 | msgid "Sphinx Book Theme" 48 | msgstr "Tema ng Sphinx Book" 49 | 50 | msgid "suggest edit" 51 | msgstr "iminumungkahi i-edit" 52 | 53 | msgid "Open an issue" 54 | msgstr "Magbukas ng isyu" 55 | 56 | msgid "Launch" 57 | msgstr "Ilunsad" 58 | 59 | msgid "Edit this page" 60 | msgstr "I-edit ang pahinang ito" 61 | 62 | msgid "By the" 63 | msgstr "Sa pamamagitan ng" 64 | 65 | msgid "next page" 66 | msgstr "Susunod na pahina" 67 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/tr/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/tr/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/tr/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: tr\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "PDF olarak yazdır" 13 | 14 | msgid "Theme by the" 15 | msgstr "Tarafından tema" 16 | 17 | msgid "Download source file" 18 | msgstr "Kaynak dosyayı indirin" 19 | 20 | msgid "open issue" 21 | msgstr "Açık konu" 22 | 23 | msgid "Contents" 24 | msgstr "İçindekiler" 25 | 26 | msgid "previous page" 27 | msgstr "önceki sayfa" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Defter dosyasını indirin" 31 | 32 | msgid "Copyright" 33 | msgstr "Telif hakkı" 34 | 35 | msgid "Download this page" 36 | msgstr "Bu sayfayı indirin" 37 | 38 | msgid "Source repository" 39 | msgstr "Kaynak kod deposu" 40 | 41 | msgid "By" 42 | msgstr "Tarafından" 43 | 44 | msgid "repository" 45 | msgstr "depo" 46 | 47 | msgid "Last updated on" 48 | msgstr "Son güncelleme tarihi" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Gezinmeyi değiştir" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Sfenks Kitap Teması" 55 | 56 | msgid "suggest edit" 57 | msgstr "düzenleme öner" 58 | 59 | msgid "Open an issue" 60 | msgstr "Bir sorunu açın" 61 | 62 | msgid "Launch" 63 | msgstr "Başlatmak" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Tam ekran modu" 67 | 68 | msgid "Edit this page" 69 | msgstr "Bu sayfayı düzenle" 70 | 71 | msgid "By the" 72 | msgstr "Tarafından" 73 | 74 | msgid "next page" 75 | msgstr "sonraki Sayfa" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/uk/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/uk/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/uk/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: uk\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "Друк у форматі PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Тема від" 16 | 17 | msgid "Download source file" 18 | msgstr "Завантажити вихідний файл" 19 | 20 | msgid "open issue" 21 | msgstr "відкритий випуск" 22 | 23 | msgid "Contents" 24 | msgstr "Зміст" 25 | 26 | msgid "previous page" 27 | msgstr "Попередня сторінка" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Завантажте файл блокнота" 31 | 32 | msgid "Copyright" 33 | msgstr "Авторське право" 34 | 35 | msgid "Download this page" 36 | msgstr "Завантажте цю сторінку" 37 | 38 | msgid "Source repository" 39 | msgstr "Джерело сховища" 40 | 41 | msgid "By" 42 | msgstr "Автор" 43 | 44 | msgid "repository" 45 | msgstr "сховище" 46 | 47 | msgid "Last updated on" 48 | msgstr "Останнє оновлення:" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Переключити навігацію" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Тема книги \"Сфінкс\"" 55 | 56 | msgid "suggest edit" 57 | msgstr "запропонувати редагувати" 58 | 59 | msgid "Open an issue" 60 | msgstr "Відкрийте випуск" 61 | 62 | msgid "Launch" 63 | msgstr "Запуск" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Повноекранний режим" 67 | 68 | msgid "Edit this page" 69 | msgstr "Редагувати цю сторінку" 70 | 71 | msgid "By the" 72 | msgstr "По" 73 | 74 | msgid "next page" 75 | msgstr "Наступна сторінка" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/ur/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/ur/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/ur/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ur\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "پی ڈی ایف پرنٹ کریں" 13 | 14 | msgid "Theme by the" 15 | msgstr "کے ذریعہ تھیم" 16 | 17 | msgid "Download source file" 18 | msgstr "سورس فائل ڈاؤن لوڈ کریں" 19 | 20 | msgid "open issue" 21 | msgstr "کھلا مسئلہ" 22 | 23 | msgid "previous page" 24 | msgstr "سابقہ ​​صفحہ" 25 | 26 | msgid "Download notebook file" 27 | msgstr "نوٹ بک فائل ڈاؤن لوڈ کریں" 28 | 29 | msgid "Copyright" 30 | msgstr "کاپی رائٹ" 31 | 32 | msgid "Download this page" 33 | msgstr "اس صفحے کو ڈاؤن لوڈ کریں" 34 | 35 | msgid "Source repository" 36 | msgstr "ماخذ ذخیرہ" 37 | 38 | msgid "By" 39 | msgstr "بذریعہ" 40 | 41 | msgid "Last updated on" 42 | msgstr "آخری بار تازہ کاری ہوئی" 43 | 44 | msgid "Toggle navigation" 45 | msgstr "نیویگیشن ٹوگل کریں" 46 | 47 | msgid "Sphinx Book Theme" 48 | msgstr "سپنکس بک تھیم" 49 | 50 | msgid "suggest edit" 51 | msgstr "ترمیم کی تجویز کریں" 52 | 53 | msgid "Open an issue" 54 | msgstr "ایک مسئلہ کھولیں" 55 | 56 | msgid "Launch" 57 | msgstr "لانچ کریں" 58 | 59 | msgid "Edit this page" 60 | msgstr "اس صفحے میں ترمیم کریں" 61 | 62 | msgid "By the" 63 | msgstr "کی طرف" 64 | 65 | msgid "next page" 66 | msgstr "اگلا صفحہ" 67 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/vi/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/vi/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/vi/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: vi\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "In sang PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "Chủ đề của" 16 | 17 | msgid "Download source file" 18 | msgstr "Tải xuống tệp nguồn" 19 | 20 | msgid "open issue" 21 | msgstr "vấn đề mở" 22 | 23 | msgid "Contents" 24 | msgstr "Nội dung" 25 | 26 | msgid "previous page" 27 | msgstr "trang trước" 28 | 29 | msgid "Download notebook file" 30 | msgstr "Tải xuống tệp sổ tay" 31 | 32 | msgid "Copyright" 33 | msgstr "Bản quyền" 34 | 35 | msgid "Download this page" 36 | msgstr "Tải xuống trang này" 37 | 38 | msgid "Source repository" 39 | msgstr "Kho nguồn" 40 | 41 | msgid "By" 42 | msgstr "Bởi" 43 | 44 | msgid "repository" 45 | msgstr "kho" 46 | 47 | msgid "Last updated on" 48 | msgstr "Cập nhật lần cuối vào" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "Chuyển đổi điều hướng thành" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Chủ đề sách nhân sư" 55 | 56 | msgid "suggest edit" 57 | msgstr "đề nghị chỉnh sửa" 58 | 59 | msgid "Open an issue" 60 | msgstr "Mở một vấn đề" 61 | 62 | msgid "Launch" 63 | msgstr "Phóng" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "Chế độ toàn màn hình" 67 | 68 | msgid "Edit this page" 69 | msgstr "chỉnh sửa trang này" 70 | 71 | msgid "By the" 72 | msgstr "Bằng" 73 | 74 | msgid "next page" 75 | msgstr "Trang tiếp theo" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/zh_CN/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/zh_CN/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/zh_CN/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: zh_CN\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "列印成 PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "主题作者:" 16 | 17 | msgid "Download source file" 18 | msgstr "下载源文件" 19 | 20 | msgid "open issue" 21 | msgstr "创建议题" 22 | 23 | msgid "Contents" 24 | msgstr "目录" 25 | 26 | msgid "previous page" 27 | msgstr "上一页" 28 | 29 | msgid "Download notebook file" 30 | msgstr "下载笔记本文件" 31 | 32 | msgid "Copyright" 33 | msgstr "版权" 34 | 35 | msgid "Download this page" 36 | msgstr "下载此页面" 37 | 38 | msgid "Source repository" 39 | msgstr "源码库" 40 | 41 | msgid "By" 42 | msgstr "作者:" 43 | 44 | msgid "repository" 45 | msgstr "仓库" 46 | 47 | msgid "Last updated on" 48 | msgstr "上次更新时间:" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "显示或隐藏导航栏" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Sphinx Book 主题" 55 | 56 | msgid "suggest edit" 57 | msgstr "提出修改建议" 58 | 59 | msgid "Open an issue" 60 | msgstr "创建议题" 61 | 62 | msgid "Launch" 63 | msgstr "启动" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "全屏模式" 67 | 68 | msgid "Edit this page" 69 | msgstr "编辑此页面" 70 | 71 | msgid "By the" 72 | msgstr "作者:" 73 | 74 | msgid "next page" 75 | msgstr "下一页" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/locales/zh_TW/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/locales/zh_TW/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /gemact/build/_static/locales/zh_TW/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: zh_TW\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "Print to PDF" 12 | msgstr "列印成 PDF" 13 | 14 | msgid "Theme by the" 15 | msgstr "佈景主題作者:" 16 | 17 | msgid "Download source file" 18 | msgstr "下載原始檔" 19 | 20 | msgid "open issue" 21 | msgstr "公開的問題" 22 | 23 | msgid "Contents" 24 | msgstr "目錄" 25 | 26 | msgid "previous page" 27 | msgstr "上一頁" 28 | 29 | msgid "Download notebook file" 30 | msgstr "下載 Notebook 檔案" 31 | 32 | msgid "Copyright" 33 | msgstr "Copyright" 34 | 35 | msgid "Download this page" 36 | msgstr "下載此頁面" 37 | 38 | msgid "Source repository" 39 | msgstr "來源儲存庫" 40 | 41 | msgid "By" 42 | msgstr "作者:" 43 | 44 | msgid "repository" 45 | msgstr "儲存庫" 46 | 47 | msgid "Last updated on" 48 | msgstr "最後更新時間:" 49 | 50 | msgid "Toggle navigation" 51 | msgstr "顯示或隱藏導覽列" 52 | 53 | msgid "Sphinx Book Theme" 54 | msgstr "Sphinx Book 佈景主題" 55 | 56 | msgid "suggest edit" 57 | msgstr "提出修改建議" 58 | 59 | msgid "Open an issue" 60 | msgstr "開啟議題" 61 | 62 | msgid "Launch" 63 | msgstr "啟動" 64 | 65 | msgid "Fullscreen mode" 66 | msgstr "全螢幕模式" 67 | 68 | msgid "Edit this page" 69 | msgstr "編輯此頁面" 70 | 71 | msgid "By the" 72 | msgstr "作者:" 73 | 74 | msgid "next page" 75 | msgstr "下一頁" 76 | -------------------------------------------------------------------------------- /gemact/build/_static/make.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | 3 | pushd %~dp0 4 | 5 | REM Command file for Sphinx documentation 6 | 7 | if "%SPHINXBUILD%" == "" ( 8 | set SPHINXBUILD=sphinx-build 9 | ) 10 | set SOURCEDIR=source 11 | set BUILDDIR=build 12 | 13 | %SPHINXBUILD% >NUL 2>NUL 14 | if errorlevel 9009 ( 15 | echo. 16 | echo.The 'sphinx-build' command was not found. Make sure you have Sphinx 17 | echo.installed, then set the SPHINXBUILD environment variable to point 18 | echo.to the full path of the 'sphinx-build' executable. Alternatively you 19 | echo.may add the Sphinx directory to PATH. 20 | echo. 21 | echo.If you don't have Sphinx installed, grab it from 22 | echo.https://www.sphinx-doc.org/ 23 | exit /b 1 24 | ) 25 | 26 | if "%1" == "" goto help 27 | 28 | %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% 29 | goto end 30 | 31 | :help 32 | %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% 33 | 34 | :end 35 | popd 36 | -------------------------------------------------------------------------------- /gemact/build/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/minus.png -------------------------------------------------------------------------------- /gemact/build/_static/nbsphinx-gallery.css: -------------------------------------------------------------------------------- 1 | .nbsphinx-gallery { 2 | display: grid; 3 | grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); 4 | gap: 5px; 5 | margin-top: 1em; 6 | margin-bottom: 1em; 7 | } 8 | 9 | .nbsphinx-gallery > a { 10 | padding: 5px; 11 | border: 1px dotted currentColor; 12 | border-radius: 2px; 13 | text-align: center; 14 | } 15 | 16 | .nbsphinx-gallery > a:hover { 17 | border-style: solid; 18 | } 19 | 20 | .nbsphinx-gallery img { 21 | max-width: 100%; 22 | max-height: 100%; 23 | } 24 | 25 | .nbsphinx-gallery > a > div:first-child { 26 | display: flex; 27 | align-items: start; 28 | justify-content: center; 29 | height: 120px; 30 | margin-bottom: 5px; 31 | } 32 | -------------------------------------------------------------------------------- /gemact/build/_static/nbsphinx-no-thumbnail.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /gemact/build/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/plus.png -------------------------------------------------------------------------------- /gemact/build/_static/sbt-webpack-macros.html: -------------------------------------------------------------------------------- 1 | 5 | {% macro head_pre_bootstrap() %} 6 | 7 | {% endmacro %} 8 | 9 | {% macro body_post() %} 10 | 11 | {% endmacro %} 12 | -------------------------------------------------------------------------------- /gemact/build/_static/scripts/bootstrap.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v5.3.3 (https://getbootstrap.com/) 3 | * Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 5 | */ 6 | -------------------------------------------------------------------------------- /gemact/build/_static/scripts/sphinx-book-theme.js: -------------------------------------------------------------------------------- 1 | (()=>{"use strict";var e=e=>{"loading"!=document.readyState?e():document.addEventListener?document.addEventListener("DOMContentLoaded",e):document.attachEvent("onreadystatechange",(function(){"complete"==document.readyState&&e()}))};window.initThebeSBT=()=>{var e=document.querySelector("section h1");e.nextElementSibling.classList.contains("thebe-launch-button")||e.insertAdjacentHTML("afterend",""),initThebe()},window.toggleFullScreen=()=>{var e=document.fullscreenElement&&null!==document.fullscreenElement||document.webkitFullscreenElement&&null!==document.webkitFullscreenElement;let t=document.documentElement;e?(console.log("[SBT]: Exiting full screen"),document.exitFullscreen?document.exitFullscreen():document.webkitExitFullscreen&&document.webkitExitFullscreen()):(console.log("[SBT]: Entering full screen"),t.requestFullscreen?t.requestFullscreen():t.webkitRequestFullscreen&&t.webkitRequestFullscreen())},e((()=>{var e=[];let t=new IntersectionObserver(((t,n)=>{t.forEach((t=>{if(t.isIntersecting)e.push(t.target);else for(let n=0;n0?document.querySelector("div.bd-sidebar-secondary").classList.add("hide"):document.querySelector("div.bd-sidebar-secondary").classList.remove("hide")}),{rootMargin:"0px 0px -33% 0px"}),n=[];["marginnote","sidenote","margin","margin-caption","full-width","sidebar","popout"].forEach((e=>{n.push(`.${e}`,`.tag_${e}`,`.${e.replace("-","_")}`,`.tag_${e.replace("-","_")}`)})),document.querySelectorAll(n.join(", ")).forEach((e=>{t.observe(e)})),new IntersectionObserver(((e,t)=>{e[0].boundingClientRect.y<0?document.body.classList.add("scrolled"):document.body.classList.remove("scrolled")})).observe(document.querySelector(".sbt-scroll-pixel-helper"))})),e((function(){var e=[".bd-header-announcement",".bd-header",".bd-header-article",".bd-sidebar-primary",".bd-sidebar-secondary",".bd-footer-article",".bd-footer-content",".bd-footer"].join(",");document.querySelectorAll(e).forEach((e=>{e.classList.add("noprint")}))}))})(); 2 | //# sourceMappingURL=sphinx-book-theme.js.map -------------------------------------------------------------------------------- /gemact/build/_static/styles/theme.css: -------------------------------------------------------------------------------- 1 | /* Provided by Sphinx's 'basic' theme, and included in the final set of assets */ 2 | @import "../basic.css"; 3 | -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/5.13.0/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font Awesome Free License 2 | ------------------------- 3 | 4 | Font Awesome Free is free, open source, and GPL friendly. You can use it for 5 | commercial projects, open source projects, or really almost whatever you want. 6 | Full Font Awesome Free license: https://fontawesome.com/license/free. 7 | 8 | # Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) 9 | In the Font Awesome Free download, the CC BY 4.0 license applies to all icons 10 | packaged as SVG and JS file types. 11 | 12 | # Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) 13 | In the Font Awesome Free download, the SIL OFL license applies to all icons 14 | packaged as web and desktop font files. 15 | 16 | # Code: MIT License (https://opensource.org/licenses/MIT) 17 | In the Font Awesome Free download, the MIT license applies to all non-font and 18 | non-icon files. 19 | 20 | # Attribution 21 | Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font 22 | Awesome Free files already contain embedded comments with sufficient 23 | attribution, so you shouldn't need to do anything additional when using these 24 | files normally. 25 | 26 | We've kept attribution comments terse, so we ask that you do not actively work 27 | to remove them from files, especially code. They're a great way for folks to 28 | learn about Font Awesome. 29 | 30 | # Brand Icons 31 | All brand icons are trademarks of their respective owners. The use of these 32 | trademarks does not indicate endorsement of the trademark holder by Font 33 | Awesome, nor vice versa. **Please do not use brand logos for any purpose except 34 | to represent the company, product, or service to which they refer.** 35 | -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/5.13.0/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/6.5.2/js/all.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2024 Fonticons, Inc. 5 | */ 6 | -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/6.5.2/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/6.5.2/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/6.5.2/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/6.5.2/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/6.5.2/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/6.5.2/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/6.5.2/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/6.5.2/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/6.5.2/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/6.5.2/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/6.5.2/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/6.5.2/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/6.5.2/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/6.5.2/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /gemact/build/_static/vendor/fontawesome/6.5.2/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/vendor/fontawesome/6.5.2/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /gemact/build/_static/webpack-macros.html: -------------------------------------------------------------------------------- 1 | 5 | {# Load FontAwesome icons #} 6 | {% macro head_pre_icons() %} 7 | 8 | 9 | 10 | 11 | {% endmacro %} 12 | 13 | {% macro head_pre_assets() %} 14 | 15 | 16 | 17 | 18 | {% endmacro %} 19 | 20 | {% macro head_js_preload() %} 21 | 22 | 23 | 24 | 25 | {% endmacro %} 26 | 27 | {% macro body_post() %} 28 | 29 | 30 | 31 | {% endmacro %} -------------------------------------------------------------------------------- /gemact/build/_static/webtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/_static/webtab.png -------------------------------------------------------------------------------- /gemact/build/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/build/objects.inv -------------------------------------------------------------------------------- /gemact/build/sitemap.xml: -------------------------------------------------------------------------------- 1 | 2 | https://github.com/GEM-analytics/gemact/en/index.htmlhttps://github.com/GEM-analytics/gemact/en/introduction.htmlhttps://github.com/GEM-analytics/gemact/en/genindex.htmlhttps://github.com/GEM-analytics/gemact/en/py-modindex.htmlhttps://github.com/GEM-analytics/gemact/en/_modules/index.htmlhttps://github.com/GEM-analytics/gemact/en/search.html -------------------------------------------------------------------------------- /gemact/config.py: -------------------------------------------------------------------------------- 1 | 2 | SITE_LINK = 'https://gem-analytics.github.io/gemact/' 3 | DCEILING = 5 # lossaggregation 4 | PROB_TOLERANCE = (1-0.9999) # lossmodel 5 | LOSS_AGGREGATION_METHOD = {'aep', 'mc'} # lossaggregation 6 | SEV_DISCRETIZATION_METHOD = {'localmoments', 'massdispersal', 'lowerdiscretization', 'upperdiscretization'} # lossmodel 7 | AGGREGATE_LOSS_APPROX_METHOD = {'fft', 'mc', 'recursion', 'qmc'} # lossmodel 8 | POLICY_LAYER_BASIS = {'regular', 'drop-down', 'stretch-down'} # lossmodel 9 | QMC_SEQUENCE_METHOD = {'halton', 'sobol', 'lhs'} # lossmodel 10 | POLICY_LAYER_CATEGORY = {'xlrs', 'xl/sl'} # lossmodel 11 | RESERVING_METHOD = {'fisher_lange', 'crm'} # lossreserve 12 | # dictionary of copulas 13 | COP_DICT = { 14 | 'clayton': 'copulas.ClaytonCopula', 15 | 'frank': 'copulas.FrankCopula', 16 | 'gumbel': 'copulas.GumbelCopula', 17 | 'gaussian': 'copulas.GaussCopula', 18 | 'joe': 'copulas.JoeCopula', 19 | 'ali-mikhail-haq': 'copulas.AliMikhailHaqCopula', 20 | 'tstudent': 'copulas.TCopula', 21 | 'independent': 'copulas.IndependenceCopula', 22 | 'frechet–hoeffding-lower': 'copulas.FHLowerCopula', 23 | 'frechet–hoeffding-upper': 'copulas.FHUpperCopula' 24 | } 25 | # dictionary of distributionss 26 | DIST_DICT = { 27 | 'binom': 'distributions.Binom', 28 | 'geom': 'distributions.Geom', 29 | 'nbinom': 'distributions.NegBinom', 30 | 'poisson': 'distributions.Poisson', 31 | 'zmbinom': 'distributions.ZMBinom', 32 | 'zmgeom': 'distributions.ZMGeom', 33 | 'zmlogser': 'distributions.ZMLogser', 34 | 'zmnbinom': 'distributions.ZMNegBinom', 35 | 'zmpoisson': 'distributions.ZMPoisson', 36 | 'ztgeom': 'distributions.ZTGeom', 37 | 'ztbinom': 'distributions.ZTBinom', 38 | 'ztnbinom': 'distributions.ZTNegBinom', 39 | 'ztpoisson': 'distributions.ZTPoisson', 40 | 'beta': 'distributions.Beta', 41 | 'burr12': 'distributions.Burr12', 42 | 'dagum': 'distributions.Dagum', 43 | 'exponential': 'distributions.Exponential', 44 | 'fisk': 'distributions.Fisk', 45 | 'gamma': 'distributions.Gamma', 46 | 'genbeta': 'distributions.GenBeta', 47 | 'genpareto': 'distributions.GenPareto', 48 | 'invgamma': 'distributions.InvGamma', 49 | 'invgauss': 'distributions.InvGauss', 50 | 'invweibull': 'distributions.InvWeibull', 51 | 'lognormal': 'distributions.Lognormal', 52 | 'loggamma': 'distributions.LogGamma', 53 | 'weibull': 'distributions.Weibull', 54 | 'pwl': 'distributions.PWL', 55 | 'pwc': 'distributions.PWC', 56 | 'paralogistic': 'distributions.Paralogistic', 57 | 'invparalogistic': 'distributions.InvParalogistic', 58 | 'pareto2': 'distributions.Pareto2', 59 | 'pareto1': 'distributions.Pareto1', 60 | 'uniform': 'distributions.Uniform', 61 | 'multinomial': 'distributions.Multinomial', 62 | 'dirichlet multinomial' : 'distributions.Dirichlet_Multinomial', 63 | 'negative multinomial' : 'distributions.NegMultinom' 64 | } 65 | -------------------------------------------------------------------------------- /gemact/libraries.py: -------------------------------------------------------------------------------- 1 | import matplotlib.pyplot as plt 2 | import numpy as np 3 | from scipy import special 4 | from scipy import stats 5 | from scipy.fft import fft, ifft 6 | from scipy.interpolate import interp1d 7 | from scipy.integrate import quad 8 | from scipy.linalg import cholesky 9 | from scipy.optimize import root_scalar 10 | from scipy.stats import qmc 11 | import sys 12 | import time 13 | import timeit 14 | from twiggy import quick_setup, log 15 | from itertools import groupby 16 | from scipy.special import gammaln 17 | import math as mt 18 | -------------------------------------------------------------------------------- /gemact/make.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | 3 | pushd %~dp0 4 | 5 | REM Command file for Sphinx documentation 6 | 7 | if "%SPHINXBUILD%" == "" ( 8 | set SPHINXBUILD=sphinx-build 9 | ) 10 | set SOURCEDIR=source 11 | set BUILDDIR=build 12 | 13 | %SPHINXBUILD% >NUL 2>NUL 14 | if errorlevel 9009 ( 15 | echo. 16 | echo.The 'sphinx-build' command was not found. Make sure you have Sphinx 17 | echo.installed, then set the SPHINXBUILD environment variable to point 18 | echo.to the full path of the 'sphinx-build' executable. Alternatively you 19 | echo.may add the Sphinx directory to PATH. 20 | echo. 21 | echo.If you don't have Sphinx installed, grab it from 22 | echo.https://www.sphinx-doc.org/ 23 | exit /b 1 24 | ) 25 | 26 | if "%1" == "" goto help 27 | 28 | %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% 29 | goto end 30 | 31 | :help 32 | %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% 33 | 34 | :end 35 | popd 36 | -------------------------------------------------------------------------------- /gemact/source/.ipynb_checkpoints/Usage-checkpoint.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "# Installation" 8 | ] 9 | }, 10 | { 11 | "cell_type": "code", 12 | "execution_count": 1, 13 | "metadata": {}, 14 | "outputs": [ 15 | { 16 | "name": "stdout", 17 | "output_type": "stream", 18 | "text": [ 19 | "4\n" 20 | ] 21 | } 22 | ], 23 | "source": [ 24 | "import pandoc\n", 25 | "\n", 26 | "a=2\n", 27 | "b=2" 28 | ] 29 | }, 30 | { 31 | "cell_type": "markdown", 32 | "metadata": {}, 33 | "source": [ 34 | "## Second level\n", 35 | "### Third level" 36 | ] 37 | }, 38 | { 39 | "cell_type": "code", 40 | "execution_count": null, 41 | "metadata": {}, 42 | "outputs": [], 43 | "source": [ 44 | "a=2\n", 45 | "print(a)" 46 | ] 47 | } 48 | ], 49 | "metadata": { 50 | "kernelspec": { 51 | "display_name": "Python 3", 52 | "language": "python", 53 | "name": "python3" 54 | }, 55 | "language_info": { 56 | "codemirror_mode": { 57 | "name": "ipython", 58 | "version": 3 59 | }, 60 | "file_extension": ".py", 61 | "mimetype": "text/x-python", 62 | "name": "python", 63 | "nbconvert_exporter": "python", 64 | "pygments_lexer": "ipython3", 65 | "version": "3.7.4" 66 | } 67 | }, 68 | "nbformat": 4, 69 | "nbformat_minor": 2 70 | } 71 | -------------------------------------------------------------------------------- /gemact/source/gemanalytics.rst: -------------------------------------------------------------------------------- 1 | About us 2 | ==================================== 3 | 4 | **Gabriele Pittarello** (*Owner, Developer*) 5 | 6 | 7 | I am postdoctoral researcher in the Section of Biostatistics, at the Department of Public Health of the University of Copenhagen. 8 | 9 | I obtained my PhD in 'Advances in Claims Reserve Modelling' from the School of Statistical Sciences at 'La Sapienza' University of Rome. 10 | 11 | My research interests are primarily survival analysis, claims reserving models in non-life insurance and computational methods for non-life insurance. 12 | 13 | Contacts: 14 | 15 | * e-mail: gabriele(dot)pittarello(at)unito(dot)it 16 | * `Personal Webpage `_ 17 | * `GitHub `_ 18 | * `LinkedIN `_ 19 | 20 | **Edoardo Luini** (*Project lead, Developer*) 21 | 22 | I work as a quantitative developer in the reinsurance industry. I am currently Teaching fellow in Actuarial Non-life Insurance at Università Cattolica del Sacro Cuore, Milano. 23 | I earned a PhD in Statistical Sciences, Università 'La Sapienza' di Roma. I have been visiting student at ETH Zürich. 24 | 25 | I hold a master’s degree in Statistical and Actuarial Sciences from Università Cattolica del Sacro Cuore di Milano. 26 | 27 | contacts: 28 | 29 | * e-mail: edoardo(dot)glaucoluini(at)unicatt(dot)it 30 | * `GitHub `_ 31 | 32 | **Andrea Biancheri** (*Business Expert, Contributor*) 33 | 34 | I have been working in the reinsurance industry for more than 15 years. Currently, I am a pricing actuary in P&C reinsurance. 35 | 36 | In the past, I have been leading seminars in Risk Theory and Reinsurance Analytics at Università Cattolica del Sacro Cuore di Milano. 37 | 38 | I hold a 'laurea' in Actuarial Sciences from Università 'La Sapienza' di Roma. 39 | I am a fellow member of the Italian (ISOA, ONA) and Swiss (SAV) associations of actuaries. 40 | -------------------------------------------------------------------------------- /gemact/source/images/GEMActlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/GEMActlogo.png -------------------------------------------------------------------------------- /gemact/source/images/cdfBeta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfBeta.png -------------------------------------------------------------------------------- /gemact/source/images/cdfBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfBinom.png -------------------------------------------------------------------------------- /gemact/source/images/cdfBurr12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfBurr12.png -------------------------------------------------------------------------------- /gemact/source/images/cdfDagum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfDagum.png -------------------------------------------------------------------------------- /gemact/source/images/cdfExponential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfExponential.png -------------------------------------------------------------------------------- /gemact/source/images/cdfGamma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfGamma.png -------------------------------------------------------------------------------- /gemact/source/images/cdfGenBeta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfGenBeta.png -------------------------------------------------------------------------------- /gemact/source/images/cdfGenPareto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfGenPareto.png -------------------------------------------------------------------------------- /gemact/source/images/cdfGeom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfGeom.png -------------------------------------------------------------------------------- /gemact/source/images/cdfInvGamma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfInvGamma.png -------------------------------------------------------------------------------- /gemact/source/images/cdfInvParalogistic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfInvParalogistic.png -------------------------------------------------------------------------------- /gemact/source/images/cdfInvweibull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfInvweibull.png -------------------------------------------------------------------------------- /gemact/source/images/cdfLogNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfLogNormal.png -------------------------------------------------------------------------------- /gemact/source/images/cdfLogser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfLogser.png -------------------------------------------------------------------------------- /gemact/source/images/cdfNBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfNBinom.png -------------------------------------------------------------------------------- /gemact/source/images/cdfParalogistic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfParalogistic.png -------------------------------------------------------------------------------- /gemact/source/images/cdfPois.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfPois.png -------------------------------------------------------------------------------- /gemact/source/images/cdfWeibull_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfWeibull_min.png -------------------------------------------------------------------------------- /gemact/source/images/cdfZMBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfZMBinom.png -------------------------------------------------------------------------------- /gemact/source/images/cdfZMGeom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfZMGeom.png -------------------------------------------------------------------------------- /gemact/source/images/cdfZMLogser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfZMLogser.png -------------------------------------------------------------------------------- /gemact/source/images/cdfZMNbinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfZMNbinom.png -------------------------------------------------------------------------------- /gemact/source/images/cdfZMNegBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfZMNegBinom.png -------------------------------------------------------------------------------- /gemact/source/images/cdfZMPois.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfZMPois.png -------------------------------------------------------------------------------- /gemact/source/images/cdfZTBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfZTBinom.png -------------------------------------------------------------------------------- /gemact/source/images/cdfZTGeom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfZTGeom.png -------------------------------------------------------------------------------- /gemact/source/images/cdfZTNbinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfZTNbinom.png -------------------------------------------------------------------------------- /gemact/source/images/cdfZTPois.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/cdfZTPois.png -------------------------------------------------------------------------------- /gemact/source/images/pdfBeta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pdfBeta.png -------------------------------------------------------------------------------- /gemact/source/images/pdfBurr12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pdfBurr12.png -------------------------------------------------------------------------------- /gemact/source/images/pdfDagum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pdfDagum.png -------------------------------------------------------------------------------- /gemact/source/images/pdfExponential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pdfExponential.png -------------------------------------------------------------------------------- /gemact/source/images/pdfGamma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pdfGamma.png -------------------------------------------------------------------------------- /gemact/source/images/pdfGenBeta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pdfGenBeta.png -------------------------------------------------------------------------------- /gemact/source/images/pdfGenPareto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pdfGenPareto.png -------------------------------------------------------------------------------- /gemact/source/images/pdfInvGamma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pdfInvGamma.png -------------------------------------------------------------------------------- /gemact/source/images/pdfInvParalogistic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pdfInvParalogistic.png -------------------------------------------------------------------------------- /gemact/source/images/pdfInvweibull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pdfInvweibull.png -------------------------------------------------------------------------------- /gemact/source/images/pdfLogNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pdfLogNormal.png -------------------------------------------------------------------------------- /gemact/source/images/pdfParalogistic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pdfParalogistic.png -------------------------------------------------------------------------------- /gemact/source/images/pdfWeibull_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pdfWeibull_min.png -------------------------------------------------------------------------------- /gemact/source/images/pmfBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pmfBinom.png -------------------------------------------------------------------------------- /gemact/source/images/pmfGeom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pmfGeom.png -------------------------------------------------------------------------------- /gemact/source/images/pmfLogser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pmfLogser.png -------------------------------------------------------------------------------- /gemact/source/images/pmfNBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pmfNBinom.png -------------------------------------------------------------------------------- /gemact/source/images/pmfPois.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pmfPois.png -------------------------------------------------------------------------------- /gemact/source/images/pmfZMBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pmfZMBinom.png -------------------------------------------------------------------------------- /gemact/source/images/pmfZMGeom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pmfZMGeom.png -------------------------------------------------------------------------------- /gemact/source/images/pmfZMLogser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pmfZMLogser.png -------------------------------------------------------------------------------- /gemact/source/images/pmfZMNegBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pmfZMNegBinom.png -------------------------------------------------------------------------------- /gemact/source/images/pmfZMPois.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pmfZMPois.png -------------------------------------------------------------------------------- /gemact/source/images/pmfZTBinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pmfZTBinom.png -------------------------------------------------------------------------------- /gemact/source/images/pmfZTGeom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pmfZTGeom.png -------------------------------------------------------------------------------- /gemact/source/images/pmfZTPois.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pmfZTPois.png -------------------------------------------------------------------------------- /gemact/source/images/pmfZTnbinom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/pmfZTnbinom.png -------------------------------------------------------------------------------- /gemact/source/images/webtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/source/images/webtab.png -------------------------------------------------------------------------------- /gemact/source/index.rst: -------------------------------------------------------------------------------- 1 | .. GemAct documentation master file, created by 2 | sphinx-quickstart on Tue Feb 15 15:38:34 2022. 3 | You can adapt this file completely to your liking, but it should at least 4 | contain the root `toctree` directive. 5 | 6 | GEMAct 7 | ================================== 8 | 9 | .. toctree:: 10 | :caption: Table of Contents 11 | :maxdepth: 2 12 | 13 | introduction.rst 14 | usage.rst 15 | gemdata.rst 16 | modeling.rst 17 | api.rst 18 | gemanalytics.rst 19 | 20 | Indices and tables 21 | ================== 22 | 23 | * :ref:`genindex` 24 | * :ref:`modindex` 25 | * :ref:`search` 26 | 27 | 28 | -------------------------------------------------------------------------------- /gemact/source/usage.rst: -------------------------------------------------------------------------------- 1 | Usage 2 | ============= 3 | 4 | Installation 5 | --------------- 6 | GEMAct can be easily installed via ``pip``: 7 | 8 | pip install gemact 9 | 10 | In case you are installing GEMAct within Google Colab, please make sure to restart the kernel or to refresh the page before using it. 11 | 12 | Tutorials 13 | --------------- 14 | 15 | Users might be interested in the following Jupyter notebooks available on `GitHub `_. 16 | We provide several examples to familiarize with GEMAct functionalities. 17 | 18 | * Click `here `_ to check the replication material of the `GEMAct manuscript `_. 19 | * Click `here `_ to check the supplementary code to replicate *Section 3.6 Comparison of the methods for computing the aggregate loss distribution* and *Section 3.7. Comparison with aggregate FFT implementation* of the `GEMAct manuscript `_. 20 | * Click `here `_ to check the supplementary code to replicate *Section 4.2. Comparison of the methods for computing the cdf* of the `GEMAct manuscript `_. 21 | * Click `here `_ to check the supplementary material on Section 5.ipynb provides the supplementary code to replicate Section 5.2.1. Comparasion with chain ladder of the `GEMAct manuscript `_. 22 | * Click `here `_ to check the supplementary material on the data generator.Rmd provides the R code to simulate the data generation process used in *Section 5. Loss Reserve* and *Appendix C Claims Reserving with the Fisher-Lange* of the `GEMAct manuscript `_. It also includes the algorithm to compute the PE of the reserve in *Section 5.2.1. Comparasion with chain ladder*. -------------------------------------------------------------------------------- /gemact/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/tests/__init__.py -------------------------------------------------------------------------------- /gemact/tests/test_copulas.py: -------------------------------------------------------------------------------- 1 | import unittest 2 | import numpy as np 3 | from gemact import copulas 4 | 5 | class Test_Discrete_Distributions(unittest.TestCase): 6 | 7 | def test_ClaytonCopula(self): 8 | copula = copulas.ClaytonCopula(par=1.2, dim=2) 9 | vals = np.array([[.5, .5]]) 10 | 11 | self.assertAlmostEqual(copula.cdf(vals)[0], 0.3443011, 3) 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /gemact/tests/test_lossaggregation.py: -------------------------------------------------------------------------------- 1 | import unittest 2 | import gemact 3 | 4 | class TestLossModel(unittest.TestCase): 5 | def test_lossaggregation(self): 6 | decimalPlace = 3 7 | 8 | lossaggregate = gemact.LossAggregation( 9 | margins=gemact.Margins( 10 | dist=['genpareto', 'lognormal'], 11 | par=[{'loc': 0, 'scale': 1/.9, 'c': 1/.9}, {'loc': 0, 'scale': 10, 'shape': 1.5}], 12 | ), 13 | copula=gemact.Copula( 14 | dist='frank', 15 | par={'par': 1.2, 'dim': 2} 16 | ), 17 | n_sim=500000, 18 | random_state=10, 19 | n_iter=8 20 | ) 21 | 22 | self.assertAlmostEqual(lossaggregate.cdf(x=1, method='aep'), 0.021527811027268903, decimalPlace) 23 | 24 | -------------------------------------------------------------------------------- /gemact/tests/test_lossreserve.py: -------------------------------------------------------------------------------- 1 | import unittest 2 | import gemact.lossreserve 3 | 4 | class TestLossModel(unittest.TestCase): 5 | def test_AggregateData(self): 6 | 7 | ip_ = gemact.gemdata.incremental_payments 8 | in_ = gemact.gemdata.payments_number 9 | cp_ = gemact.gemdata.cased_payments 10 | cn_ = gemact.gemdata.open_number 11 | reported_ = gemact.gemdata.reported_claims 12 | 13 | ad = gemact.AggregateData( 14 | incremental_payments=ip_, 15 | cased_payments=cp_, 16 | open_claims_number =cn_, 17 | reported_claims=reported_, 18 | payments_number=in_) 19 | 20 | return ad 21 | 22 | def test_ReservingModelFL(self): 23 | 24 | claims_inflation= gemact.gemdata.claims_inflation 25 | 26 | rm = gemact.ReservingModel(tail=True, 27 | reserving_method="fisher_lange", 28 | claims_inflation=claims_inflation) 29 | 30 | return rm 31 | 32 | def test_ReservingModelCRM(self): 33 | 34 | mixing_fq_par = {'a': 1 / .08 ** 2, # mix frequency 35 | 'scale': .08 ** 2} 36 | 37 | mixing_sev_par = {'a': 1 / .08 ** 2, 'scale': .08 ** 2} # mix severity 38 | czj = gemact.gemdata.czj 39 | claims_inflation=gemact.gemdata.claims_inflation 40 | 41 | rm = gemact.ReservingModel(tail=True, 42 | reserving_method="crm", 43 | claims_inflation=claims_inflation, 44 | mixing_fq_par=mixing_fq_par, 45 | mixing_sev_par=mixing_sev_par, 46 | czj=czj) 47 | 48 | return rm 49 | 50 | def test_fisherlange(self): 51 | 52 | ad = self.test_AggregateData() 53 | rm = self.test_ReservingModelFL() 54 | 55 | lr = gemact.LossReserve(data=ad, 56 | reservingmodel=rm) 57 | 58 | 59 | def test_crm(self): 60 | ad = self.test_AggregateData() 61 | rm = self.test_ReservingModelCRM() 62 | 63 | lr = gemact.LossReserve(data=ad, 64 | reservingmodel=rm, 65 | ntr_sim=2) 66 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /gemact/vignette/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpitt71/gemact-code/bbf140c207a0a4b1a6bf6abb822fb51aba3d3bda/gemact/vignette/__init__.py -------------------------------------------------------------------------------- /gemact/vignette/readme.md: -------------------------------------------------------------------------------- 1 | # Read me 2 | 3 | The structure of the vignettes included in this folder is the following: 4 | 5 | - **Manuscript code blocks.ipynb** contains the code blocks included in the [GEMAct manuscript](https://arxiv.org/abs/2303.01129) 6 | - **Supplementary material on Section 3.ipynb** provides the supplementary code to replicate *Section 3.6 Comparison of the methods for computing the aggregate loss distribution* and *Section 3.7. Comparison with aggregate FFT implementation* of the [GEMAct manuscript](https://arxiv.org/abs/2303.01129). 7 | - **Supplementary material on Section 4.ipynb** provides the supplementary code to replicate *Section 4.2. Comparison of the methods for computing the cdf* of the [GEMAct manuscript](https://arxiv.org/abs/2303.01129). 8 | - **Supplementary material on Section 5.ipynb** provides the supplementary code to replicate *Section 5.2.1. Comparasion with chain ladder* of the [GEMAct manuscript](https://arxiv.org/abs/2303.01129). 9 | - **Supplementary material on the data generator.Rmd** provides the R code to simulate the data generation process used in *Section 5. Loss Reserve* and *Appendix C Claims Reserving with the Fisher-Lange* of the [GEMAct manuscript](https://arxiv.org/abs/2303.01129). It also includes the algorithm to compute the PE of the reserve in Section *Section 5.2.1. Comparasion with chain ladder* 10 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib==3.5.1 2 | numpy<2.0.0 3 | scipy>=1.10.0 4 | setuptools>=65.5.1 5 | Twiggy==0.5.1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | from setuptools import setup, find_packages 2 | 3 | version = "1.1.1" 4 | short_description = "A comprehensive actuarial package for non-life (re)insurance." 5 | 6 | def readme(): 7 | with open('README.md') as f: 8 | out = f.read() 9 | return out 10 | 11 | 12 | setup(name="gemact", 13 | version=version, 14 | description=short_description, 15 | long_description=readme(), 16 | long_description_content_type="text/markdown", 17 | url="https://gem-analytics.github.io/gemact/", 18 | author="Gabriele Pittarello, Edoardo Luini", 19 | author_email="gabriele.pittarello@uniroma1.it", 20 | license="BSD 3-Clause", 21 | classifiers=[ 22 | "Development Status :: 5 - Production/Stable", 23 | "License :: OSI Approved :: BSD License", 24 | "Programming Language :: Python", 25 | "Operating System :: Unix", 26 | "Operating System :: MacOS :: MacOS X", 27 | "Operating System :: Microsoft :: Windows", 28 | ], 29 | py_modules=["__init__", "config", "distributions", "copulas", "gemdata", "helperfunctions", 30 | "lossaggregation", "lossmodel", "lossreserve"], 31 | packages= find_packages(), 32 | include_package_data=True, 33 | install_requires=["twiggy", "numpy>=1.22.0", "matplotlib>=3.5.0", "scipy>=1.10.0", "setuptools>=65.5.1"], 34 | project_urls={ 35 | 'Source Code': 'https://github.com/gpitt71/gemact-code' 36 | } 37 | ) 38 | --------------------------------------------------------------------------------