reconnect moved files to git repo

This commit is contained in:
root
2025-08-01 04:33:03 -04:00
commit 5d3c35492d
23190 changed files with 4750716 additions and 0 deletions

View File

@ -0,0 +1,82 @@
Metadata-Version: 2.4
Name: prophet
Version: 1.1.7
Summary: Automatic Forecasting Procedure
Author-email: "Sean J. Taylor" <sjtz@pm.me>, Ben Letham <bletham@fb.com>
Maintainer-email: Cuong Duong <cuong.duong242@gmail.com>
License: MIT
Project-URL: Homepage, https://facebook.github.io/prophet/
Project-URL: Documentation, https://facebook.github.io/prophet/
Project-URL: Repository, https://github.com/facebook/prophet
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: cmdstanpy>=1.0.4
Requires-Dist: numpy>=1.15.4
Requires-Dist: matplotlib>=2.0.0
Requires-Dist: pandas>=1.0.4
Requires-Dist: holidays<1,>=0.25
Requires-Dist: tqdm>=4.36.1
Requires-Dist: importlib_resources
Provides-Extra: dev
Requires-Dist: setuptools>=64; extra == "dev"
Requires-Dist: wheel; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: jupyterlab; extra == "dev"
Requires-Dist: nbconvert; extra == "dev"
Requires-Dist: plotly; extra == "dev"
Provides-Extra: parallel
Requires-Dist: dask[dataframe]; extra == "parallel"
Requires-Dist: distributed; extra == "parallel"
Dynamic: license-file
# Prophet: Automatic Forecasting Procedure
Prophet is a procedure for forecasting time series data based on an additive model where non-linear trends are fit with yearly, weekly, and daily seasonality, plus holiday effects. It works best with time series that have strong seasonal effects and several seasons of historical data. Prophet is robust to missing data and shifts in the trend, and typically handles outliers well.
Prophet is [open source software](https://code.facebook.com/projects/>) released by [Facebook's Core Data Science team ](https://research.fb.com/category/data-science/).
Full documentation and examples available at the homepage: https://facebook.github.io/prophet/
## Important links
- HTML documentation: https://facebook.github.io/prophet/docs/quick_start.html
- Issue tracker: https://github.com/facebook/prophet/issues
- Source code repository: https://github.com/facebook/prophet
- Implementation of Prophet in R: https://cran.r-project.org/package=prophet
## Other forecasting packages
- Rob Hyndman's [forecast package](http://robjhyndman.com/software/forecast/)
- [Statsmodels](http://statsmodels.sourceforge.net/)
## Installation - PyPI release
See [Installation in Python - PyPI release](https://github.com/facebook/prophet#installation-in-python---pypi-release)
## Installation - Development version
See [Installation in Python - Development version](https://github.com/facebook/prophet#installation-in-python---development-version)
### Installation using Docker and docker-compose (via Makefile)
Simply type `make build` and if everything is fine you should be able to `make shell` or alternative jump directly to `make py-shell`.
To run the tests, inside the container `cd python/prophet` and then `python -m pytest prophet/tests/`
### Example usage
```python
>>> from prophet import Prophet
>>> m = Prophet()
>>> m.fit(df) # df is a pandas.DataFrame with 'y' and 'ds' columns
>>> future = m.make_future_dataframe(periods=365)
>>> m.predict(future)
```

View File

@ -0,0 +1,783 @@
prophet-1.1.7.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
prophet-1.1.7.dist-info/METADATA,sha256=DuvOpuaF1xCkUMCDlv-I3BDdvmnfygNhuFrrNgCvlsc,3495
prophet-1.1.7.dist-info/RECORD,,
prophet-1.1.7.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
prophet-1.1.7.dist-info/WHEEL,sha256=fFhbKX-dUaoAkV6fMdPsBXB59ktXVc2nZ3V5h4Y98LM,145
prophet-1.1.7.dist-info/licenses/LICENSE,sha256=UkEte8fOQVfqYou6rLiCngqcs8WPV_mRdhJryM8r_IU,1086
prophet-1.1.7.dist-info/top_level.txt,sha256=VjCzuVgaPL8q6jJnMQFtNyQBChuMcpMw3b-dloq_esI,8
prophet.libs/libtbb-ff323302.so.2,sha256=GhTtpfz5UnfzT4j4oYOvg8J0TqqPakcZ6w19DHrHBhU,3678161
prophet.libs/libtbbmalloc-4dcb68e3.so.2,sha256=UV_toaFwQnjJ_OMRvz4Q8uHoLVqxhdy6AKOqopV9lSM,1010017
prophet/__init__.py,sha256=GWmjzHPDVJuUNn-Fv3f2acZ3ZIPMPGR6U4qlJA2suL4,517
prophet/__pycache__/__init__.cpython-311.pyc,,
prophet/__pycache__/__version__.cpython-311.pyc,,
prophet/__pycache__/diagnostics.cpython-311.pyc,,
prophet/__pycache__/forecaster.cpython-311.pyc,,
prophet/__pycache__/make_holidays.cpython-311.pyc,,
prophet/__pycache__/models.cpython-311.pyc,,
prophet/__pycache__/plot.cpython-311.pyc,,
prophet/__pycache__/serialize.cpython-311.pyc,,
prophet/__pycache__/utilities.cpython-311.pyc,,
prophet/__version__.py,sha256=p2qAfdU7zHOShJi2f1FW-_7Tbm0-KCPE7CI7284QiHg,22
prophet/diagnostics.py,sha256=1KQvC6avKQE-7qvuxAhru9vQv3P2AVWqhd7I7y3-Eyw,23754
prophet/forecaster.py,sha256=jY2QfhoXB26SW6j26qkW-4tfiejpGBFCBtFrplO626s,79089
prophet/make_holidays.py,sha256=8FNRl3T_mO9G1qe54OS3ELRDiXvSGK4eh7ZdETArsOw,2091
prophet/models.py,sha256=EucMEmEvTlG4XETM_nTaDeTbjkwAwWF80laKZ01iwdY,8991
prophet/plot.py,sha256=fs72_9eCxkT-7yW-ukKtzAkJ9aLSXpdxf0ZzUMUYj50,36919
prophet/serialize.py,sha256=mNBfz3cU8a1J8GmPpHAF4Vm4F_iW-bXOe7FQv3oLosc,7443
prophet/stan_model/cmdstan-2.33.1/bin/diagnose,sha256=Ayf8wdcmgI2TRFHaT2pZoiL9S4pMeLfzSjx8s2LgFLw,401448
prophet/stan_model/cmdstan-2.33.1/bin/print,sha256=ePh1Px6wD9Rty4AaAzyeSk2Z5Er9VEmiqVphoHYbGXU,406592
prophet/stan_model/cmdstan-2.33.1/bin/stanc,sha256=FPr-Up-OPU7_VS3O_773iIVadvp44Xc-1HXeKwj7rvQ,14393232
prophet/stan_model/cmdstan-2.33.1/bin/stansummary,sha256=28KdWVozcrY8UxoQNjQ8Ryk0RmI-etLjSI_h_9q3PgI,686384
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/arena.d,sha256=FLkhkEve2psMesDqP9w0e0uX2k9MfxPbiWqIdP8CxFc,3410
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/arena.o,sha256=LLq1mLVFrA5NCf4GZ0cgzybEQ-8jc7QbOzCmfwZe3Tc,840888
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/backend.d,sha256=QeAqB06Y07nX_4zqTXf2i9qwojff_nxEXnLYZTj6iv8,1644
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/backend.o,sha256=fddgi61-yi9RJSvqQ-rjvPwcJIIZDtQ4mDqVPF6CXxw,537304
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/backref.d,sha256=JHICW8o6oP-8SiBOnuTSBzLlBCDviGYP8c_dJDIh2CU,1601
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/backref.o,sha256=5wWTTAb6ExPgK1C-iobErMjwh6tlM7K0DQGUlO7KVeg,144704
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/cache_aligned_allocator.d,sha256=GLDS5HDRww_xJSEe9nwnuXz7KXFcNRxPgsscLBF4oF8,1146
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/cache_aligned_allocator.o,sha256=LdXDh7vScfpqYs4ozSGRQe4GGsen5A-41VZyCud_u5Y,81696
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/concurrent_hash_map.d,sha256=YnAAwepTkP9NUmhfAreNqOb5tghT8JMU5i-P7ZWjYUg,1603
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/concurrent_hash_map.o,sha256=IKvk6YTcrNjkOxxXF37uGBR5KDXZbZXjCNEeLJ9XJdI,43968
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/concurrent_monitor.d,sha256=54oNrL-RZfTV644vxrDR8iobDFkrBDT1QEHOapkwWOw,1354
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/concurrent_monitor.o,sha256=1RplYWR76eTUTJK_lD1bas1toMSDt8gVDbMQZrXZIdc,187784
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/concurrent_queue.d,sha256=I2l9anPZNUHV_udtjLhK38QLTxmYO6BeuwSViW82W8o,2444
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/concurrent_queue.o,sha256=qPJ6ZHRemisg2MeECEeVWeSshgfBU4a0WxAywHuFvjw,552104
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/concurrent_queue_v2.d,sha256=HkJMxphv7Ca12PtRfDOg6LUPaRAgCjSTesoGHR-hU-0,1240
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/concurrent_queue_v2.o,sha256=usu-7wJG_AERKivIbTHEf6KJf-AueD1FMvpYQuAQiGA,237576
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/concurrent_vector.d,sha256=C-FzqZcKJiX3LHXCIZsuYKt_fT-PNd5cb3M631Vq_s8,1627
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/concurrent_vector.o,sha256=OEEywJBk-FbxNjt6U9F6vwZIxNCe8uv8fObUwCo5DIA,842536
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/concurrent_vector_v2.d,sha256=d0X_YQqhweCWTaZCt6n-bLwQQqtlxoU2HgHQosRm2C4,1321
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/concurrent_vector_v2.o,sha256=iAhmb4x8xNfvYRbw5kvrDPJk16uFA2x_owFtNPuv4jA,234328
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/condition_variable.d,sha256=RSIuGrc8kdz_JnsUOzKWQxeDcwlhRhgx8eC0HT-Wnu4,2269
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/condition_variable.o,sha256=3JhTgbOVITUAm75TFT0C_6f_YZzziDVpLckjNEa7Tsk,32320
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/critical_section.d,sha256=Mrpzc_16m9hWzgxaKfx1SaDPQcevyN2713LLN0SVvKQ,1312
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/critical_section.o,sha256=J26JX17ezhyCkdq_yVEa9zf9V4Kf9oqybATEdgTUASU,36104
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/dynamic_link.d,sha256=O4K_Gm6coRC7vQcecwLAs8rW_pJ6jRrNMvuKbiE0jO4,934
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/dynamic_link.o,sha256=tX2oKAs39THP1hkfOhCLY4AdJ_UgXRkS_WXf7REjqOg,107600
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/frontend.d,sha256=4lMlwWPl8cRDsQKZxB9ddqdXSoo5J5At2m9BMMwuOsU,1781
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/frontend.o,sha256=EHryODx98TLRbpXLLC1uQdfY_-dDXXhqkDhoI78whZs,671136
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/governor.d,sha256=PDFszZcOE5qY0dfPNfEem3imNGEDkdbrToUMNxHQ7_M,3085
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/governor.o,sha256=BFwmC-TYAii_SiZiJ4sXLMwPWyCUm3j22I2sQLE8rT8,258440
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/itt_notify.d,sha256=MwwWQ22fCN4BclvDJea1mKIcNjFlB-Xm6DoCgXRYwMc,644
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/itt_notify.o,sha256=TkeQ8-oGzfbl5KL_BtF7CGxSQJDf5v55F03__HfBUAM,294328
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/itt_notify_malloc.d,sha256=wPJ28uD3nQSHp9-8TE5i3nf-V8JdW0CwWpJ0tLwGn7w,651
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/itt_notify_malloc.o,sha256=RrAEosJbgd5hWP9VZTgeQFWpdotBS6sIReUrQCQbceo,294504
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/large_objects.d,sha256=GDNSGMHCezmKG0L-CGLzcqrIMRZ-ktpTJZ9b_m4clcc,1656
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/large_objects.o,sha256=HGPTJDpDQiNIRac9zfSZSM-oehCmGJS_0eRnttEhhBU,530560
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/libtbb.so,sha256=N7UHzvJrR7fRwr7vyR7B4w1hsOlAc768p4CsaHCmKHg,20
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/libtbb.so.2,sha256=_zIzAk7LOGzXyauk7QcRQX566K5uZm8U6ymoc-gez8Y,3592920
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/libtbbmalloc.so,sha256=RItjPMRisvozEBVGUshTcVsK5tnxa64EsIBqjnvUK9s,26
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/libtbbmalloc.so.2,sha256=Tcto49ArkyxPUUiC7KYaKkkpFrVqogYz_46t4UCYP4s,1001488
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/libtbbmalloc_proxy.so,sha256=cpmhtMB3D1m1X04aEWPXISsHvQFgquoeHm_6QWi29bk,32
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/libtbbmalloc_proxy.so.2,sha256=rJDC1hZ0ZhgzE6TThjwYd_xOkmpJ6F-pJt9b_QC4uLw,75577
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/market.d,sha256=Fz8avz3qlBoUJ5v1gcrjFO69xoCZ6dZ1IfFvKEV12W8,3093
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/market.o,sha256=T9K3xrSjxYMnyWXlBYh7zcwLQ5Pn-O-FJt8gWKLMdAE,411256
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/mutex.d,sha256=a_yPwodVH2AOaGbIwAoOfY0zgdS3wTt3K-o47Raeg0o,1491
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/mutex.o,sha256=YJC0dqB6bc9-fuXcs9y5W5tEFpu5EjDInnFEV81MMr4,38680
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/observer_proxy.d,sha256=gfCO2HH-QCZGMUL4AspHbYjkj1UAVuMCFG_Uj6yd3ls,3063
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/observer_proxy.o,sha256=HX2Ds_k7yTQZCS5e-vJsFYEhdu4fv229jvlBLVom0Gw,283568
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/pipeline.d,sha256=ahrNJa2NBBbU_33QuNayg0U6YIwJCW7OViJEl8n8tNk,1496
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/pipeline.o,sha256=-0ADUzXB2Vrg6NAIYwwiHBHcfiBUhoFgbxftDlYMHLw,307856
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/private_server.d,sha256=Gzr54J5ouFsacuDbgtgJW69tkX-mXfX37f8z0JQHzvg,1996
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/private_server.o,sha256=8rjCDUetA0rypEoC72B-NiyqyVISR9a4VdpXlwnPyXk,354632
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/proxy.d,sha256=goh995u4XHJXX6ENKlXnAtsc6pZq1roUQW2etNfUQBg,549
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/proxy.o,sha256=_tF4fekHwSGoawQ-WKbhaeLIdyB_hxtksbkF_jyhE1g,101632
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/queuing_mutex.d,sha256=b73ackSrRD-iXvAxdrsodWVsNDO4ohJtwexwa-cVZSU,1213
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/queuing_mutex.o,sha256=NDzPfdIvvbU1gbQOnx8dVTDN1i9M8yfZnzVg7BFm3q8,55216
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/queuing_rw_mutex.d,sha256=a9Zktk0z-m9o1d-2TPsI8dsUY4uB7S4y-Ed-l4Ey1LY,1118
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/queuing_rw_mutex.o,sha256=GrHSFwxbxqaDD2GQIsex6T7TjRD52j90rY2wM4vUTrU,257208
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/reader_writer_lock.d,sha256=TjrvqHK8ajNupHt_DV9s8QGJMSWR7WxYhLqX2jaZ69o,1263
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/reader_writer_lock.o,sha256=vEATHLSIyjY_CRlwimbTPva4GtrO0TDOzrYBw-13-4U,279048
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/recursive_mutex.d,sha256=Wn14LyLJx4gg3658DZTPlVSSuhEGOvX2l7oNwmK3ZTU,1114
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/recursive_mutex.o,sha256=F6VMSiZPb98KwLStRo7UxBBuoUGqiwiQM9a_cYKVHnY,32888
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/rml_tbb.d,sha256=LoOMHbFR5sK0eaAMC-O7ZHO4EzE2PwTwJgfrGuZB_3E,371
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/rml_tbb.o,sha256=q2EloYf6EkHGSs073TnT2m-sNEIwozYsepmDb1pzL6I,24928
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/scheduler.d,sha256=uqBghU7GLStytFTvRJifVrC9AFVHnPkAP8fJAhauMOE,3066
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/scheduler.o,sha256=WixDA-T4Nzjzu7Ykr3wZZLnXSRE4reT2SheSyN0-RyU,944544
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/semaphore.d,sha256=dH1bJckcRvPZKsVRWJoxeTWqS6RItObZf4deaOAxu-k,810
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/semaphore.o,sha256=jTOqCme-fA_sjU4g7xvno7ZGKRUXKTjQKOX0cUALhPw,19824
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/spin_mutex.d,sha256=dNX_8urTD8n9Dv8TIt0qjoeJWApm6eYNsR3P8sCKU80,1371
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/spin_mutex.o,sha256=gv6wpQF0QmyH-bm4HFGFJsPwcMZ79_59J-KR2JNtUpM,33144
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/spin_rw_mutex.d,sha256=WcjlvAW6bWpBcKlzjjavvJKRr2lyEC7myqPgAe4pIyg,1485
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/spin_rw_mutex.o,sha256=07GJyHBvC68kL_oqHX-_FWZzU9FrIsPaDX3gBxepsKY,59016
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/spin_rw_mutex_v2.d,sha256=92Ls9auEB487yY8Op_Ohca_OWypi1JGFLulUPTl2sVM,1037
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/spin_rw_mutex_v2.o,sha256=iYtdu_Eux0D4JkMfKVw7OS9EQzpwcflBb7eHmD54fpk,60848
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/task.d,sha256=Dv_TFgqXf0p2fZqQoBwiGSqZaskSchr9qBKomCLDX88,3010
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/task.o,sha256=TLATufqI_GG_FSci3gc5FqBRvVpzmpmaSda41boyCgM,207784
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/task_group_context.d,sha256=GE0Fe-PcoLLpv_cdpUnHEKDOUo79gKZ_xam5Hq5P1vc,2995
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/task_group_context.o,sha256=Pml__lCybeueG7JQmPh_iQ9AZleB0XUaUOsqFpT47yk,373312
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/task_v2.d,sha256=VwKuRsxv1mD-AzPYHww6yGUN9AbIIwZeuz3ZpSnNgf4,864
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/task_v2.o,sha256=Y16npbXSgvlP88V133-zHy86IDmtkK98fblVIZVoshA,25000
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbb-make-check,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbb.def,sha256=EzDxyY9kJML0-juczowdEQ4uDsUOguVZrvS3KkFAsuw,15679
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbb_function_replacement.d,sha256=XF0XEpILjqwKMjMRAOzIe0BlU4wBMpa55ixqRirNZb8,130
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbb_function_replacement.o,sha256=ASY4UU39U3YQs4aC_Cz_ryjaDIC28PpxXWu-Q6do0Uc,2840
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbb_main.d,sha256=f8nCJK4bkK86iygyqEYTJd0AAvRHKcY7miC5n-_SoNM,2525
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbb_main.o,sha256=dCSflX-mWc9YvGx4XkTH9EDCMI2F8IB9aNjZl8CLkdc,273456
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbb_misc.d,sha256=QbwsWyRrRBW1vYhyp6Zc1WRgSXnoVRTn2nOi6cX_Uwg,1074
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbb_misc.o,sha256=1J3Zscp28RHquqPYtxbbq50pL8pllJKT9PgkZiYXNhA,107032
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbb_misc_ex.d,sha256=oItod0RqDo-2GLJ4yuzwmB2JLCBWzxAzVenZG_Or0gY,929
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbb_misc_ex.o,sha256=DrG3ChM1EUg3FQ5xvaCLgIxv5X09CP5-DBcB2nL2qkw,94024
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbb_statistics.d,sha256=4YeVFHDUhwxW0Akk0d0wVUMxumUDBS96nq-RZ4N28gA,185
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbb_statistics.o,sha256=XwmnM2-TVipTTTqQqcxjraxoZIWJZiQ6dSZ2HhBvdLs,16256
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbb_thread.d,sha256=48ThZaULLb-bmm-4nU3srHRHfBEMql8DJ5PDZiI_L98,1423
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbb_thread.o,sha256=uC2g5gNEey3khL5Q27WZwCsQnuC3CTSvK--sa1J7z0A,58184
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbbmalloc.d,sha256=YGpuRFVf9btnNcrzIjH7WFK6KthLq1GP2uiq9kJkPoU,1427
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbbmalloc.def,sha256=ON9NfNcqDzAQeTKo4Cnn8-Qtp29rKWLK9Im_JnuA1cQ,1641
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbbmalloc.o,sha256=cATtQiQy_iVRgOXAXm3p3UvEkLeU0N72BWm9BCRyB84,34376
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbbmallocproxy.def,sha256=1L6rH4pd51e46VaozFb7eWgtB0WF1rBKqAPI7q3m8SU,820
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbbvars.csh,sha256=ubmsLxbGdkeKE-_ijFq1dkCt5ByjUkDuValpU171Omc,689
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/tbbvars.sh,sha256=ijz13zO8LQI3fLS5StMczWTXGQRPAd1bkqmlgzEpBCc,689
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/version_string.ver,sha256=O9WBO5NHb1OdXx7xvIvVfn_Cfiilgzr6CG0w0t5Go9g,873
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/version_tbb_2020.3,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/x86_rtm_rw_mutex.d,sha256=4SnKDbviQ3BYQiBfBvSMQCUQgfWCC77BRg8kQC325xE,1823
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb/x86_rtm_rw_mutex.o,sha256=a3T8gLfk6BfVkt_ra2E231-WzqK9EZTQvNtb2cdDIg8,82872
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/.gitattributes,sha256=tYmLU1iB21mHP_L1xgQhUnHt6vbr-ja0iby79uRGNgQ,790
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/.gitignore,sha256=F_Fs1iUsZ8_1XtCozBwoTWGSwEdixSvNKX9KQZt55BE,1098
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/CHANGES,sha256=SQnEb8BC0xEYVvUJU_nmEaD-og8ahnMarDN5U8b2-mM,115456
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/Doxyfile,sha256=bVo276OvPi8rIoEWdwp6qHvPObwwnPIEeDrffmZX67Q,55698
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/Makefile,sha256=Y4Y5OGE5BuDCktYLHj2IA3qy2tOH7_2eqvYyM4WN_6E,2570
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/README,sha256=H4W9JRbOfhs0s0aNjJeaMo5sRtAhGxNhGts8gQbDOkQ,353
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/README.md,sha256=z2xwqjTLuV9EdvbA1vJZQAu2YnD8q6cPxS5rkXGOIZg,1921
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/STAN_CHANGES,sha256=IxeUlNKrT3n72TjcuU3IIpbgrgwg5uk24gx--VNMEdI,289
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/AIX.gcc.inc,sha256=llwUQf2aJc1aFJqPiq_3v8pmq90kc-7DuFR7wZBtig4,2155
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/AIX.inc,sha256=yJ_2Zdo6PQvKup8iI9zJpEd806i44LTLAaacPqGdtAg,1700
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/BSD.clang.inc,sha256=W2DVI8kA7pTCVM99P12L_beLGdvkyTsEt_s3Xd-TrWU,2984
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/BSD.inc,sha256=YM5pQd9gKNCK4uckrFmpMRYmW696rE5Kisi0RRVaGcQ,1988
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/FreeBSD.clang.inc,sha256=Jr4h8uTuccscGDnK5FTDPpZf6JK9nQ0wieDgnuRI5vk,645
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/FreeBSD.gcc.inc,sha256=iMQe_wbMbfFi5631F2ihND7qTOYHHr8Pt4NKqRGSMr4,2757
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/FreeBSD.inc,sha256=JIGbGGxLTg-oNbYFRSgFmnv4J4M9_DArsJ0OofdYVIs,625
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/Makefile.rml,sha256=k5T2zFZHJMB19te9WiZK-bTXy_wiu-t-4DMv99Dzz64,6971
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/Makefile.tbb,sha256=3mWCEtXkRBl9iyQvWQZ2qKwM-znFXlwOOjdO9w9NFb4,3614
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/Makefile.tbbbind,sha256=RVg7g1iSdMZK-sT_KHIIS2wRx_bYlNSC3FEimUqMrAo,2382
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/Makefile.tbbmalloc,sha256=Nshy8XQKOPmu8CLTcpu2VQa8vGwoEq5BB2PVlwUwY_w,11654
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/Makefile.tbbproxy,sha256=LheQosNcp1UKxfbWY5CZ-5QmLv8xYgJNjNyg_bLvT3M,3903
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/Makefile.test,sha256=gP2II6huWoqegns3OknGqxs4__8MF1vPND68Hyx6LDk,13751
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/OpenBSD.clang.inc,sha256=f53sRIIzhBu0tPEuBiU46mYAwvRrcWxmnjaAy1QypuQ,631
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/OpenBSD.inc,sha256=JIGbGGxLTg-oNbYFRSgFmnv4J4M9_DArsJ0OofdYVIs,625
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/SunOS.gcc.inc,sha256=VRPHl83gzGeQka-Y7hHRz4MIUB0dwveYlrgmhqoEt7o,2672
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/SunOS.inc,sha256=8oNmomSKv2gYfDAo4wO0WgEZTbH5tqoz72sj1LMuU0w,2255
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/SunOS.suncc.inc,sha256=Bw8zfhWTukXVPWabxRp8J8g0KSQoZAH1ChDZ-LR8ynI,3166
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/__pycache__/build.cpython-311.pyc,,
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/android.clang.inc,sha256=D8eUoAbdfAEz07wcPZF8ppjmVLELdZ9e9UkWeAk1YSE,4059
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/android.gcc.inc,sha256=31jcUh_pdoXdg8uSPwMpOtqOYi03KAAm6V3MtFHpFYQ,3508
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/android.icc.inc,sha256=yaInz1EOGGRRLEnQgWI_8B3sJlJpfveKzb6PeeDMFic,3529
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/android.inc,sha256=oiOFt1BPc-ryzlos8hhoQjCIrlwko69Wh4QcJqC87Y0,2052
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/android.linux.inc,sha256=VAi7FS_ulO582-eUjc0X4hpAal0Pd0yiI7r8wj1FF38,2153
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/android.linux.launcher.sh,sha256=EzTFG710_t9VibQYcCReHtQpbaYT4MzJeetlmTzgSLE,6480
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/android.macos.inc,sha256=7BBCxFGrzLZ1B0ktu3BrjyO2gp6PPbYAfIzBAsjObCQ,2252
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/android.windows.inc,sha256=sD-fTeQpv1MSjbjpnd4wA86DrpCT8JkLWpdNHc8hzdE,2402
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/big_iron.inc,sha256=4zPP775XFWJIU6UDlROmYK5s2EmFrFYKU3uzwk_kcxg,2600
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/build.py,sha256=5RJJspQu8wNlpR_fgmmTH4uQl_0zaJxZMEQVu8JXTPY,9412
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/codecov.txt,sha256=2TktLS4lhtHpvsnY8Wz4AxSAsfEwiSzXnqHujETXT8s,94
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/common.inc,sha256=ySceriX1p2kH73LOkLk2O6VGgSle6paTZOtqJQBpj34,5692
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/common_rules.inc,sha256=dPlUva17wbOPb2z5Ka3SlSOn1vVTor1eA5m9Fw7B5q0,5646
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/detect.js,sha256=LAfX8_HKs3gw1qi4ikQuAbbkaDbTKacJjM4sCuH85Pw,7823
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/generate_tbbvars.bat,sha256=C0BwAF4sCvbWtac-_6BLXqcm9HLxxjfvBywjTKUenBQ,2594
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/generate_tbbvars.sh,sha256=ebL8ujZmXKj5jhjT9waUZT4BSy16XQi8NIzrd2H3rmc,2084
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/index.html,sha256=sLhFD6ADgA4_LnwsEmElgrLTFlVgad6E5pI50kJQxFk,16024
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/ios.clang.inc,sha256=_yOSQGaSTYCmqM4BZkK55qhf693b0vhB_V5utMp5D04,633
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/ios.macos.inc,sha256=wlQ5zjedHorqrCK8Kmptmb8EcYWcSmTt8NT8_-65IPQ,1349
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/linux.clang.inc,sha256=I43mk3Di5jg4ddk3KwrmNcR5HaATd6xGoFbmrWA7NgU,3280
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/linux.gcc.inc,sha256=oy6FlaxtIX_u5ullWPMAJucxqQ03xKQipY7v0oryIpw,5055
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/linux.icc.inc,sha256=BCbE0saQMhZcJ_ZUKkPpzrfZmrKSSyEJxY0aHaAe15k,3793
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/linux.inc,sha256=BBwa5Yd6P4RMIqMUlv8N65exuTGtOKwtRYcER-DJWNw,4544
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/linux.pathcc.inc,sha256=VVb2ztbGfYlvWIhEQNepM7wvrCUGsV_0mueaOS7BAQg,2663
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/linux.xl.inc,sha256=dHEOTq7RuVkecJO9yu3pSdch11PI8Os6mXKXftM9EA8,3323
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/macos.clang.inc,sha256=wxvibiCf4UWFEvn9GZnb4YAWBek6XKQDcjdXx-tPgW0,4091
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/macos.gcc.inc,sha256=q1t_SX2okClVZ4EYLRHgpyyRfbBIdd5MDzeoKce-7Ko,3838
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/macos.icc.inc,sha256=QXgmckmKQ_HBu3AWEj2OGWVnyp1-DDYvw-kGwn-9taM,3211
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/macos.inc,sha256=QdXflf5Np4gl7GRgFFACVnWpYMxeN_Tr93fniR22Q9k,3064
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/mic.icc.inc,sha256=26ipwzivdWW11W6WeLboLcrYT_SaGEMhMMcA_yuGtMM,2268
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/mic.linux.inc,sha256=cttkwjo9j74Ic9e43HfR0MiVLFxb4zQQXXwQpG6MwyU,1308
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/mic.linux.launcher.sh,sha256=-qMnCVbGDvAE-Uea_V4NmEkMrVXx4LiRTNCu7Q-on-o,6293
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/mic.offload.inc,sha256=WUEtEHKMkYyP56lkk5AYYIO2w3Io9wwwjwdcZTe68Fw,4778
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/suncc.map.pause,sha256=eSiDifuMK6-jkSB-A9xrSt-fIISlDnr-EUN1OxEjfAs,19
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/test_launcher.bat,sha256=Fzg_JJwYtyuhFT2AVLTtSm2EyK5tVR6V1I71PeTBrjI,2250
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/test_launcher.sh,sha256=kNTYaP5fX0ar_bwOlokrQMptvn2G8UGcJnKwwHhL1MU,3697
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/version_info_aix.sh,sha256=zs7_BqX7ljB5u3Z5N2kvet0UNPK9TVYMA0bsTIOBt-0,1556
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/version_info_android.sh,sha256=1RJTKwKxXkwJA25MGca25cQX3Ggg8hCAgIbi_BObw1o,1489
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/version_info_linux.sh,sha256=zs7_BqX7ljB5u3Z5N2kvet0UNPK9TVYMA0bsTIOBt-0,1556
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/version_info_macos.sh,sha256=Kyyse2MguRQKMmazLsh2EjrVrg5xg5ZcBJxxIoqntoo,1300
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/version_info_sunos.sh,sha256=DtOgvMzMs3KPss9US5b-cCUFif00ot1u2KDyO8USYac,1161
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/version_info_windows.js,sha256=KZSGloet1hQOwFFz_ZyfMXWzsXM5enC9-aRxg-tkgvw,3279
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/vs2013/index.html,sha256=Kqcmrm5fviHUA3EO9j6ayuoh1DcGArsnctOXNyfHCf8,880
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/vs2013/makefile.sln,sha256=UN8BhOjCKzRhuxe52m61hh_PLa353if4KjjvOmkc_uo,5190
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/vs2013/tbb.vcxproj,sha256=TkZVmTcqeCS0nZc3uaAh9UcJBvB1IKSCUYEGGo6CnAw,55165
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/vs2013/tbbmalloc.vcxproj,sha256=04yzaBDIr8RkdF-3ot5ai-C2jZGRnBJqEowbJGIKth8,43556
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/vs2013/tbbmalloc_proxy.vcxproj,sha256=UZ2d21evaDvjb3AVg7dlHxx2OqBei8IkiCwH6uber3Q,28308
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/vs2013/version_string.ver,sha256=8W7eA7h3NwsXgS0IitmzmmzpFPZfrcYrw6LoH5Ad2LE,41
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/windows.cl.inc,sha256=NqmlffbD7exCegaZm4AR5teYu-rZ736lbnKK1t8XY3A,5346
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/windows.gcc.inc,sha256=Z0GadnftV9-iXBOfZ1PLNEF1h3Hba09HJRfGkVkxTnM,4352
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/windows.icl.inc,sha256=cFYYWjKroZUdCBQf5sb4GrkQBB8hDShuogp1n257Y6A,6265
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/build/windows.inc,sha256=ROnL2Z-u1HUd39UU6gglJ5m8kSqTHZhY6w8Q0l5EKbU,3764
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/cmake/README.rst,sha256=FLz-hrz3rpGEAMJQp_V14cJ4Wz83XBGHK95VliW7B4g,20718
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/cmake/TBBBuild.cmake,sha256=4tdEpHQHpB0QyYjCTvkO6wBKBIObiqFdxOVmp2JoAcw,7820
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/cmake/TBBGet.cmake,sha256=915jz8N0tmefsKRop13oZtGXVnbx_AGHSrttcj3Ue0A,11059
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/cmake/TBBInstallConfig.cmake,sha256=eF2s9sgJW20O5QWB5iT8dCJ6ZAbRBjeMxBmGUpjOmlY,5191
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/cmake/TBBMakeConfig.cmake,sha256=yMs0zOrQtN6PMqwjeR25pEdpvSuEoA7qomsVhTIFb6I,6756
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/cmake/tbb_config_generator.cmake,sha256=mAEXboIkpqBBmMsjs-c8fbPAbql-YEQ2VwQD-JhJ_9o,1492
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/cmake/tbb_config_installer.cmake,sha256=BYHzQpOLRduIoqR5RDZBNZfyu07odWpy5T51GybqEtI,1957
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/cmake/templates/TBBConfig.cmake.in,sha256=Tm8SUFBx1tMDcrO-8kg2W_UcE2lplkHgSPnuXe0Y774,4293
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/cmake/templates/TBBConfigInternal.cmake.in,sha256=I4Kaxv7Glp39lkudY5XBUGeL1I2XgbOw8RWxqRNspi4,4128
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/cmake/templates/TBBConfigVersion.cmake.in,sha256=fHqqKBlyPxlfCrHX3uf108WHv10J6QnYiDXHW8tO7lE,912
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/doc/Release_Notes.txt,sha256=G4Mp9yvkyNuDuruZdJMi8Aiiy4bR7V5Lt5PRUJgP-BI,4671
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/doc/copyright_brand_disclaimer_doxygen.txt,sha256=wiNXX5aUIL7w6Z7eNZLTiuijKHSHLQjee6iqCfHANbM,347
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/index.html,sha256=gtQkrUQ1Ur-vfBuxJYskMKxl7Vmpop8ignhOY0zMm9M,713
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/serial/tbb/parallel_for.h,sha256=-L9rKTjbFW7E_CNvXkPu6CNMdCEmsm0ow_6Tt6ox1ag,9861
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/serial/tbb/tbb_annotate.h,sha256=uq0dk-VcAis4k3_YcQDeg0VPSlO5kQDIDCoV8bBiN28,1062
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/aggregator.h,sha256=lPv-nZM0imvAbwYVUqTqP3GsfnC7VqT_XGJUVe34whU,8329
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/aligned_space.h,sha256=LP3f3MRJk5R0U6RK41CWwxq51_MkzVHEExr0JKaqTyc,2171
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/atomic.h,sha256=_7Ch83R36sAuRzzggxXHd0NYbClH6J4s7Q_OL0-SpUQ,23219
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/blocked_range.h,sha256=LeeOzZ0oZSFiRrCDB4kg7xstGn1aNwnyIyYW5E4LdLA,6609
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/blocked_range2d.h,sha256=OJb9Wu9lsMOi634hexEyQ_OIW5RdixFrMOsoN6hxCjI,3237
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/blocked_range3d.h,sha256=EGpduFuoWYhENDAzHDdgqTQzpucwOtTYERLX8sXdLPg,4317
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/blocked_rangeNd.h,sha256=LP7ujD7Si7r6DaqCAaBBb51Na7LkXERczbDx3dnrWDQ,5735
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/cache_aligned_allocator.h,sha256=JasEHh-cHOYMoQYy5kISIDGvA4pC24oLku5Q6gKefOQ,7714
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/combinable.h,sha256=9twPiSzDFMpuQDTWCluU9hibSoz26b5s2M923FD74t0,2598
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/compat/condition_variable,sha256=QX9l3HFvs1Xn9QUZ8OMExF59VAJwDcg9YHppbvJlin8,16485
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/compat/ppl.h,sha256=AMCUkL45bGG-HzqSS1tfMgbHcYq44uKbrBu5VSaZHgw,2302
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/compat/thread,sha256=LN98s5uV21TxNntYDf6zRutxGyZJT0S0OuXpQw8KdXg,2179
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/compat/tuple,sha256=SHP64OaScfnbWyJsON7YMMqCF3JholAGa3jrlqWzuxY,18714
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/concurrent_hash_map.h,sha256=slY9CZ5-km3endhWP1t9S_M4o_GgMowHX9Zo2Q9khw8,71603
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/concurrent_lru_cache.h,sha256=ZTwCr2k573hA-BjOhk1_5tlc8pP2wnVpSveao9R8eF0,12948
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/concurrent_map.h,sha256=lMxyrjcxVkahgNicWGii4UMNmqf8W_NjcwEjDbG6u3s,14461
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/concurrent_priority_queue.h,sha256=s20HeQTijEYubxwGI8XQXvbeNgrHOAMIt2szyWXJAWo,21987
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/concurrent_queue.h,sha256=npNheXcDNHwh2uvAgDIF2Zfrac3v5MUNbyuPcibGqdo,16885
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/concurrent_set.h,sha256=pX7Zsd29pMd-KycGdA2OTCPrNcnxfXEUg018jNDM7RA,11391
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/concurrent_unordered_map.h,sha256=0tO5ujRyA2NyJo4ylfHBWS9QUe-iiav86XAaWSLAliA,19594
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/concurrent_unordered_set.h,sha256=GoittPFxsy8eGbZCY7ISm19qUsrBL5OMTxA46TVgjgc,18079
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/concurrent_vector.h,sha256=QASGfWzlP4WDHiALzRrTejBBWw-nvTdI4_rjwBBJSFg,60518
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/critical_section.h,sha256=Y7WUhwKZXO7WWQYYDaWM9-RIURqeWpwHv392KxXDVPo,4479
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/enumerable_thread_specific.h,sha256=_u0_5jtijGxFRd5q0_tHV6dn-aRs-LVRHfjZAfwwgmE,49420
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/flow_graph.h,sha256=s0WJA7PWH_TpfnireSyCU7-ayhg4F3SHdoqNTptWoWw,184201
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/flow_graph_abstractions.h,sha256=v3O8E4a7zEGlxOK_SLIDr4UXDY1M93G2s7cQAeiDZe4,1525
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/flow_graph_opencl_node.h,sha256=TA0uuA1LGDdSOxUOiUoNFsf835gbQhmbNcEzPYuY6RQ,58883
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/global_control.h,sha256=247EAj6-rlEJQ7_OtceSc63F0e0TdDnv9llbxu4RsaY,2495
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/index.html,sha256=_8Ja0f-08oJShHfs5OGO6fQUvCwMyYxDmdQaQBnKRIc,901
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/info.h,sha256=YkDDd08NHvx2gL94Y5rWBslb0yKOCJ9aYK_4cdGFJLw,1553
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_aggregator_impl.h,sha256=HIEMKGHSdTcLekxpCDjiXd6Xx-MsLhG1rx-2GVS5j8Y,7779
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_allocator_traits.h,sha256=BqCYXDbbXYlSPX6Z8Opns3s2M6aP4sp2NRx9bUuJLyw,5951
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_concurrent_queue_impl.h,sha256=fuZcLB5YvmS9Wpmg0r2LU6kIWK-4v0wDwc161nq1_nI,37403
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_concurrent_skip_list_impl.h,sha256=Vhsh1eTgjHDTxyy9i1xSYhp4Pw-70us3e9yEMode-IY,37684
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_concurrent_unordered_impl.h,sha256=zFeaVlKLSNINERJTgBVrThWLuCjaBGTOovmKD0SifSg,62700
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_deprecated_header_message_guard.h,sha256=WKtFwFGyl0xjE59WMJGRHEPdhwJudg5E4AScncpJ8Wc,3174
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_flow_graph_async_msg_impl.h,sha256=XdFdokZOxlY93CTnnu1sq72781cLjYQ-DmZXbV3_ykU,4690
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_flow_graph_body_impl.h,sha256=J_MwX0jfhr3ojhvMJ746NNrdKktfBOzT0QKrngFriuo,17185
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_flow_graph_cache_impl.h,sha256=7KuV4WAvAzl5q8lPnu2B1M3Re8AnbEO7N0jJmPnQ610,17994
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_flow_graph_impl.h,sha256=uclNtfh02Daa-1XC9vmYgroR7cl5tcPsot1hIfL62bI,18482
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_flow_graph_indexer_impl.h,sha256=h_LV7yDD2vQowOoeua3B4K5eHxcraWyeoh1cLxbGFXo,22282
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_flow_graph_item_buffer_impl.h,sha256=-Tk1_7na4MxqDeqdkwDmgHajT5xGPfDiAgo0by0PuNY,11223
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_flow_graph_join_impl.h,sha256=1x69fqvBKMB1RWrHjcl8bO3NEWj_JiWRKepADzoLgm0,97677
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_flow_graph_node_impl.h,sha256=0jETXBYCN7G3jRgELTIOejaw_Zxleot083gBR21HG58,39290
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_flow_graph_node_set_impl.h,sha256=E1I3QLYtU22VY31kgDAyWLZnY4lyBKr61qSYp7fXpA0,10476
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_flow_graph_nodes_deduction.h,sha256=y31_8_PmJCBKjOnYtcgb9m6k_mkfA41IMH9MMbHIpEA,10767
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_flow_graph_streaming_node.h,sha256=gZTs_3HmdsCWibMTgzwMKz3N43PO0LDFflz-5-q9160,31272
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_flow_graph_tagged_buffer_impl.h,sha256=y2Z1R4rtftcpoI2Gsv7ejb59BgZoxtjuFQstBEAXhIs,9978
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_flow_graph_trace_impl.h,sha256=6e8ZJrcc-pH8UkpTkToyTepfnJVlFMqNPhWYoav13ZA,16122
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_flow_graph_types_impl.h,sha256=Hd_AYT_lmc908MzT6JhRraiTHBw254dEl9eNX1g66oE,34056
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_mutex_padding.h,sha256=b8JXK1LvkY9ULWjcGYyP-cdl1XMKWrBJCpzxy8Jzoe0,3829
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_node_handle_impl.h,sha256=ldje-wT2lzR8G-y-EDqIqTxWCHRrW8P8zvlPkiQ3iOI,5237
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_range_iterator.h,sha256=Aj549-4LdwlYSZDfQ69TU4EyHQl3VfJ8ewb0-qIgypA,2292
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_tbb_hash_compare_impl.h,sha256=mXLo1KASbfhXyWRaEyN-W-RwsIZwPxN1Cb9hpqWD-UU,3389
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_tbb_strings.h,sha256=dcSzkKTRDqfOa5N7I2ipRU9Ed7nCTO0NAI2RWSiLn5Y,4139
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_tbb_trace_impl.h,sha256=vzy99MZWCSivNTDV09wl1VdWzPQzddoWRbc-AKtF0XM,2144
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_tbb_windef.h,sha256=ckzEosfsrOe59VKcc_2NCUp7rUiT5gYw8Fz5WTejF6Q,2377
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_template_helpers.h,sha256=2yNT5Odh6wLQsn2TNgz4TPaJ2ocVJanB2uSuUWnNCNk,12576
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_warning_suppress_disable_notice.h,sha256=C6-Zjkjkw1fVaJ1j5FJQK8YX0jmx8cfH8E61gejztr4,869
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_warning_suppress_enable_notice.h,sha256=TjkZV0u-NCfIG4CdJuu-7eXI1-WYy9z3XV1etYQMtMw,1053
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_x86_eliding_mutex_impl.h,sha256=r8Ze6UC6j7InYwOh6XVROQNdtE0p64IM1JaQaTEjMS4,4474
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/internal/_x86_rtm_rw_mutex_impl.h,sha256=7V7sXC2UstJI8Js4pxyINO83ldmuSrO1qQTl2mYUZvg,8328
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/iterators.h,sha256=ITsigt74NCPAqCzOpmbuHVefHl1Zf_r6xb2We9vdyzk,12453
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/gcc_arm.h,sha256=Ke1Vikc42CYzYZjweZR-aZROx5YCESD6XAwSAYvHWLI,6876
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/gcc_generic.h,sha256=C5OO8mwhvosadKIVk5jPYeXgjazpLcWb80HeRiyjXiA,9860
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/gcc_ia32_common.h,sha256=0eoKFv39XDOsen-SaZt1cLIKJfC7Z51FVaGCexcOSuE,3789
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/gcc_itsx.h,sha256=Y7CJtd2hmrF72HBHPzjC6GTX6RfdH8IktZYs0FKBYMM,4041
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/ibm_aix51.h,sha256=kQclvrA7HXPax1jDD0SIATcHT1dl4xR2CDKET6kKJJM,2769
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/icc_generic.h,sha256=T8gM7xddlX1HLli1uavVeA91faxn9V2g6tV5SqNfeuo,10373
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/linux_common.h,sha256=OyYxc4d8EDQA_yi0bzD-NGt5_Zpm-BRxPxotw8MTcFg,2975
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/linux_ia32.h,sha256=gZ7MOTpiRGbLVmbjG9YEbwknuhjqqfg7pC1PCCxDqzY,9761
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/linux_ia64.h,sha256=aXrqEv_50RTqEIc_4baiU0s8cGrewCvKQapF0JZDY80,9590
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/linux_intel64.h,sha256=qF2RaYz0ryxw_Pyl_QT64mr1SjsC4rT5U2oPpOUbZzk,5010
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/mac_ppc.h,sha256=B3V9WFcKB-pSYMUOOWlXz5EZV--DeKN73YcA7CaQFk4,17198
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/macos_common.h,sha256=VvPKMkGKczR2DTqn_LnhNz9xH7WTtQ4ePOLPoOOiFIA,4657
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/mic_common.h,sha256=Jo_JMXmaqkxJNCCg-oPmkWi8fgHbK0_VWwomQMoJbz0,1898
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/msvc_armv7.h,sha256=enX2Q2JZlkRv0YewMOimJwtdRXanweRbUI0ZneUfOl4,6023
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/msvc_ia32_common.h,sha256=3L3ORjxRngrZAf-1jgU7UpnY0GQYZJYNXqacpbyMFyE,10536
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/sunos_sparc.h,sha256=U-JWSsUEC7XczVbbl6TSYYg8Z_zqCFCYo_-4gG1QLV4,8677
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/windows_api.h,sha256=KNF_OYz58Ebi5nkqqVXUyMimJUbGryXPeWQOipReAE8,2593
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/windows_ia32.h,sha256=1o4dJ-AVYDhIOj6gla5Y19J2yEIZfOBuvWOvJad4yQo,3540
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/machine/windows_intel64.h,sha256=QwgqG34B8JDxM5qNhi9I9UQO776BUyPRA36A2t3kZzE,3164
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/memory_pool.h,sha256=sDqChdhk9EATvZHGLYYrGOu6a6lRn3GKed5lhSxTx7U,10576
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/mutex.h,sha256=IEm89En0EumNDxy1rwv_Owg1qqUFrJ_X8JCP_Jox_a0,6850
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/null_mutex.h,sha256=O3FCn8sZgpDQ0h6wo0pPqjgOxBdeT9EGx0r2Tm73ktY,1440
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/null_rw_mutex.h,sha256=ug7nmxlFl1yITtClKhMp6QrbXE9AXtAXHCsZ6DXLSgE,1640
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/parallel_do.h,sha256=RK4T5RUvjhNNBNcnHfEEztHN5CO2FAR4kb1hF4KSV-A,20089
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/parallel_for.h,sha256=xQTjUfykeS82QNhqtIrFrIW_K5JkMVSwDyT1IhEULwg,21162
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/parallel_for_each.h,sha256=gB0gAFmMM5jk3oTMDCQgqYZc9_Px_2FPXT5VT_nPn1I,5062
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/parallel_invoke.h,sha256=wS4Jj6z9KQN04SepMG-hzIUdgFFqg_j31Netm-sK9Lc,18211
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/parallel_reduce.h,sha256=bxIH5LwjFOPBwtuddGBQD9NGz9_pf_QuaI3_AYIZg6A,33041
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/parallel_scan.h,sha256=JolXmtEdDl1lLmmAFamJU4FQsQndAvX58Z5UpOmSYfE,16625
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/parallel_sort.h,sha256=oSTSjqpTS_n63M6TMlyrWqtDIfUWcE03rbF93cvNxXY,9341
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/parallel_while.h,sha256=cEl4TMRnV6FB7XKnQGmPyEDW2eA3LHRw1YXvpinTjnA,6195
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/partitioner.h,sha256=yfUebS8bOw05RbMYzOhRP99c1dzgDxlnGGGrTHOkero,28751
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/pipeline.h,sha256=-0aKBqysfVLwDs6lXm2iP4rx9_7eRzz4PjOieGNlpxM,24828
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/queuing_mutex.h,sha256=ub4q_KxbP_1_vx0DoK2ZAz1v37FBWTInm8Dl6WzFaZ0,3355
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/queuing_rw_mutex.h,sha256=oHFDX6EVESs4DPZIziSpfekF6xn1Zj-3ZgFEvMruHiY,4842
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/reader_writer_lock.h,sha256=Ui3uY76AqtpOjZJeRjYAXZAtdQSFA2zGaFB3uGzuTic,9069
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/recursive_mutex.h,sha256=JUytAPNoKPpVNwCViYCMpGAP74cBjEbvr2Hq4oJuFzc,7408
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/runtime_loader.h,sha256=J4XbCs0N--tSXN4-sVP4nmjdcKvKCM5okLs2gbKE0DI,6796
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/scalable_allocator.h,sha256=coSqEgAfLmn28oXAQhaSaQwo15sDr-lGSA8eaxG1OnM,12970
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/spin_mutex.h,sha256=YArc5svcdiXIheqRXFOTHzRqtHXOTt1v06dAKKLjgcw,6941
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/spin_rw_mutex.h,sha256=Ciw3WKFqH_R5LZpI9jfUODE_aZItYlRFlqCMDv4gsAQ,8929
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/task.h,sha256=lGA8uZrX8xTTqeOxj-NOvwCJnOa0yaof-QqmTTg5ycI,47287
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/task_arena.h,sha256=EAoww9U9jWki9VU_cIOH8aWF8YyYNyHbqGjjRnjGPJ4,18443
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/task_group.h,sha256=MUFRpswBCVBR3m0NiiQj1e7lN7RWY-orKx5lN7Tk09w,11109
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/task_scheduler_init.h,sha256=Gm90ZKI_Kkm9B0wtchA3NeBN1G09AAUTOcd90cLOkMI,7855
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/task_scheduler_observer.h,sha256=PyNave33C2hMboIILsgxyR_ogYcWpLStPdbg92XDSHQ,6603
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/tbb.h,sha256=-ix-4Svntc6HNE2vvNYj9-C3aDXQIA62yCPBCCnsTrA,3068
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/tbb_allocator.h,sha256=I2kf5BAP4XwO8jyRPlDKLxPr_E3iBwcTk814IC-CBrg,7592
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/tbb_config.h,sha256=sOVIsZQWNoFCkgG-b7sC5Lby92OhbKb6XjNdI9sMVnE,47893
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/tbb_disable_exceptions.h,sha256=RIvSemO6_fBKbWD_5ryeVaqLMGzm_XnIhO-EhASeCXk,1126
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/tbb_exception.h,sha256=RxnUySIaG2m-i2luzJWwLPuJFBVXjVmLBVfy2SaGG7U,13485
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/tbb_machine.h,sha256=aw7z2X-RYrGind2gswIi_2hlyX-S-4AkvTM5RvQ1dZI,40860
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/tbb_profiling.h,sha256=zE0i1hvCg-kAId20gOEnQmMY8ZZRffcn9plN1SbuT0E,16316
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/tbb_stddef.h,sha256=DsWWNZUGbFFgRJIiWwDA2QWHSU3_3WSReLgNXZPv6VU,20550
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/tbb_thread.h,sha256=r1RVCx-xodRNEsEBahzvyWj1D2W_V0Pz1Jg5yfHZd1E,13344
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/tbbmalloc_proxy.h,sha256=upOf5SaW_idDVw0-sSEPn_D7GBZ-KiA-G9Fy0DBRmAE,1900
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/include/tbb/tick_count.h,sha256=fCyI7o-5cOiqMqrq-ANFFp-MQB5CbYGED3Hn936SPvI,4496
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/index.html,sha256=Nj0KgxIYluvSkBDBOli7jPPaZ_aQ9Obhh-cIfAjAyKA,1811
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/jni/Android.mk,sha256=W4p9b9a96xAwpSyymM-k4voGY1tOT5lI7oirt0lx1s4,2375
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/jni/Application.mk,sha256=lG1mm5_oCc51ZpySQmS37jdMXk_JA4t5Agc9WileZyo,1655
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/Makefile,sha256=8n0T2H-z_kB2D0YJECqwEI0-X4zkgFf3EpiJ84hSPrY,1413
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/TBB.py,sha256=_DgAYYOzHnby5xpSWsYQsWmqPygVrsYAqw5NkYY-yts,758
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/__pycache__/TBB.cpython-311.pyc,,
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/__pycache__/setup.cpython-311.pyc,,
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/index.html,sha256=kzFuVU7l8CwPTGwgWhi0a7BDRGRFuIKA-Spmih9rgyk,3875
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/rml/Makefile,sha256=-TYD-vvM2umSKbcLTC-nsk8yYME_om3fuEFPSSjl9Pw,5629
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/rml/ipc_server.cpp,sha256=nMyybn5F16pA3AQluDG6WNd2dIrdu-eOIbR4IaXrnUE,37756
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/rml/ipc_utils.cpp,sha256=LvVnCcPnHoOSPwRW0JDU6Tl0vITwbdgUAA4AVH864zE,3433
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/rml/ipc_utils.h,sha256=1cWwV8G_5xPgxdwmo-7vHH6ipDC5R0twXNt4KAr-KtA,875
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/setup.py,sha256=ustO7xZCQnSnB2GVGeSeHsNty81Yyn7j9JUJgRasmgk,5107
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/tbb/__init__.py,sha256=eOJ8YIOEESu-4RABj2xlsTebqLiaOqPXXYP0cfPYqyo,12835
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/tbb/__main__.py,sha256=66yzDNhpvBDb34svdEDetNESgU48KWu3d4GkX7Sqlgo,671
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/tbb/__pycache__/__init__.cpython-311.pyc,,
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/tbb/__pycache__/__main__.cpython-311.pyc,,
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/tbb/__pycache__/pool.cpython-311.pyc,,
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/tbb/__pycache__/test.cpython-311.pyc,,
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/tbb/api.i,sha256=7PgntNskUhBpdcpajMuMue5NyHLkZ7RBf3m4TEYoHvU,5501
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/tbb/pool.py,sha256=rBQGrpGbbCUUop04auf6qnVGQHqFQ_FHJnHhZrOPQ4Q,25155
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/python/tbb/test.py,sha256=ezEsIBMmGciwbOr8yaaV8jIXUHIr6jGR7JxNFg9HZT0,6482
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/Makefile,sha256=n6UaRSomQ0BzrYyr-TFS3CaR_2n6Pa_iDGo3eVaVa3o,11755
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/index.html,sha256=EW9sCx6rI6ioXKANI-jbZo4zqx0lSeLyv1ECSZJtcUo,4119
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/old/concurrent_queue_v2.cpp,sha256=0WqiPC0XoEwwBWkxj_pZhl9LAlt9AOlIyx5DzhfPXAs,12263
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/old/concurrent_queue_v2.h,sha256=iz3N7ZMfsHKthfPdGUezm7ISbe1Rw6NzbrwJRZ4IzKM,10609
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/old/concurrent_vector_v2.cpp,sha256=LKYZ8TtumoZ1-JPZrIbz-lETqVh5kY0svvVD-T2aoYE,10002
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/old/concurrent_vector_v2.h,sha256=UaaoT7Wuqsdy6ViW6w3fINtWMJBX8SNZKijE5D8Gnyw,19105
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/old/spin_rw_mutex_v2.cpp,sha256=USSY_n2_D8owcnXLz_bIN7dIBAUCDEsYY_ZjadluIZI,6401
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/old/spin_rw_mutex_v2.h,sha256=0rJtr0Z3UZ9q-o-ZJx8a1-4hK5SlaF-ltk-tvTdirwU,6134
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/old/task_v2.cpp,sha256=TKnBPTdO7h2LacmERw2n-YCDQGXD_n5m5DggXzexCnY,1158
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/old/test_concurrent_queue_v2.cpp,sha256=frrsRHuYY6aqjcIuDV0VmMN4x4q-LUQbAH_vv_LAhjk,11326
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/old/test_concurrent_vector_v2.cpp,sha256=Ozq5pBChGDcjGqpdXBJVowApA3Xb_Y5f3_lLtufe4Ec,19083
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/old/test_mutex_v2.cpp,sha256=HeIkbysDinu2sqZPg-Kk6Qt6h8S2ZEvplJ12yex4hp0,8606
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/old/test_task_scheduler_observer_v3.cpp,sha256=MEANvh5U_Ci5-nfp-tbpTr8YmGkNJqzbOY7ra7QJ0c4,3220
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/coarse_grained_raii_lru_cache.h,sha256=Wu1CZwtsS-l5y2951b0BBhQ7gZDMqL7ZOgattzOaOWA,6472
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/cpq_pdes.cpp,sha256=v-91YRO0KVNp3WBhuZ6_tsFmsq6ys67r39B87oepcVc,6743
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/fibonacci_impl_tbb.cpp,sha256=9xPbOje2cf3Vu9RLVI8nE1CcpJWQ7dvmGAf220pOLuA,1946
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/harness_perf.h,sha256=zqPCGETBvVauMHqqd_lKDU8Oj3-4mOwnvje5o4vL1kU,1245
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/perf.cpp,sha256=r5bY83cMBqNKd2zQo60f6EZaH3y4xhxq3T3FYhuX8sI,34077
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/perf.h,sha256=JHUK3vLdkSqZzQmA2oz51CCP06kVUwp5HlZUw6ytI7s,8979
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/perf_sched.cpp,sha256=ymcftuYq-9n5cYBs-FgfH5QtHMal5j3jQRlwPRmB5wM,14676
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/run_statistics.sh,sha256=_0QncjMsSU6j_RSzEE45mgTa1ElDRGSz6oas0Jy4pEc,1096
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/statistics.cpp,sha256=kNBrh8zb0tM9KcSOCtgC8JezL3g-q8BIVPy4XDOZQjM,20611
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/statistics.h,sha256=WwqLRtqCjhKGruTZyoZf5eL-oCWe3VlbCKA7xmDOzxQ,7210
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/statistics_xml.h,sha256=2slwzAB9QNaEEMUCdhrI6dbRo9wziBsL9uPuVXwJExk,7351
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/time_async_return.cpp,sha256=NH3OnXDzF7gKipBJmMh4NoOPvQ0aWTdIu5Z34H609O8,8761
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/time_cpq_throughput_test.cpp,sha256=CCOWLHAvrKlAy52gI2S7dPOACHO5nqXJvV5GvkwRFkA,9533
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/time_fibonacci_cutoff.cpp,sha256=JKC3FpXDwHCk5EC83LVZ539Y1-hxpsOBGh91X0hYufw,3732
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/time_framework.h,sha256=S5FqsccH8WacfX0RQtE6Yqm6p3Nvcit9o5UXJIruBiQ,11318
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/time_hash_map.cpp,sha256=XINic3r24ou2bGcbWYiPy2qfcqmF_nz7JAhxNuSldv0,8382
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/time_hash_map_fill.cpp,sha256=cJR2JDPkgzdE-zzMmsfQ87ilAvbhhY6DwtKE49SDq2Q,5958
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/time_hash_map_fill.html,sha256=1lJQMrOZIR1fmHLRHz1tToA2x0Res8uzh9-lfmUX11Q,4511
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/time_locked_work.cpp,sha256=7haQ2rQ5m1ZjCn8yU1oKhPbvuR1_PpKEsr6IsYoXYNE,5435
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/time_lru_cache_throughput.cpp,sha256=J7UrxZ8AKT9aY4I5vEAZ3eF9FINziaoQ4AkrAitp3KM,9068
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/time_parallel_for_each.cpp,sha256=S1FHFrTo8SSNXzcWRM-Fxwe7U6drLUt10TXhparHJg4,2114
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/time_resumable_tasks.cpp,sha256=3FXjAnn7po5GeIbNQ-0g3C0RZA0ccsFccg3kDT1CfsI,12278
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/time_sandbox.h,sha256=eovMJX6bg-SaK1SJvs9oViOYru5pmlMvGpJpEK_POuM,3730
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/time_split_node.cpp,sha256=JnbJGwB2wyXzjdTF11gd5D0_p9OP1m79jorrz8bana8,3750
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/perf/time_vector.cpp,sha256=2WDH_JFWbgh-N9JZ8S0ut4_QQz4CaIYc_se8vu73sow,11354
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/client/index.html,sha256=R-LD8UW-acA4VnNba8bBmqbU3A5kZo3xOgZ6ONmeqYQ,1426
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/client/library_assert.h,sha256=JilXNb5yzrtucKcYVza9DqjUMDfCYgvPrAg-_z7xXR8,933
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/client/omp_dynamic_link.cpp,sha256=2nikZC1N2gRsSoaqJV-NpdrNiI-GcuFoC0meuqoYiY0,743
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/client/omp_dynamic_link.h,sha256=rR-HtH5M59V04aiMdwf339usNkAEhNA8aQ1fF3ZnLM0,903
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/client/rml_factory.h,sha256=6XhEATet7zHkKXV0c4lbOjmAuY7nfybnsdYzLpMYrS8,3388
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/client/rml_omp.cpp,sha256=wZR-o5lWr79q3RMBRuwxHxyfkPsT4NfNe5O_-sQmU9I,1348
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/client/rml_tbb.cpp,sha256=70z3wzAH0SOgnX_ip3mzkFJQwUKt5tBmCiYIKPCnmfY,1453
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/include/index.html,sha256=Ay_LlRuR-3tjBEifr33Ffq7P6JCDbMP7kQQ-jGra1J4,745
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/include/rml_base.h,sha256=5Qml5LymuYgeJf8Y2l8JvYdWjXzKHryJTIsMucdXVSM,6670
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/include/rml_omp.h,sha256=rfMCkDmdi8eIG05e3qrEGgjFNXKPm28RfG0dwEJAmfE,4762
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/include/rml_tbb.h,sha256=Ep_fp2zSUhxJeDncE4yx7ZVpxeBB2zTD5K18Y6YSegg,3386
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/index.html,sha256=1A5h1H3vVUGjZbTySFbiCkIl19W1tHeMEUKru5HdZ9s,887
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/perfor/omp_nested.cpp,sha256=uPsfEUTuoycdMSqAzjfd3mkuFDtk8d8cVZJR2NG173M,3725
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/perfor/omp_simple.cpp,sha256=RRjWcs0d9uBIF_v9BrY5rsEvyF_51S1NIxJskawuloo,4305
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/perfor/tbb_multi_omp.cpp,sha256=Nwk964YQSRaHciwp5b1Z9CTNhPzZC1H7iFu2VDcr28s,4899
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/perfor/tbb_simple.cpp,sha256=MPCGZN3-ZNohT52Pqceu1GccHtc5bLeyE0bmcgWAu20,5001
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/perfor/thread_level.h,sha256=GY80PDxe2DswGX-2w98oWQ8AIHGQbeHgM-Lwzq5euZ4,3886
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/server/index.html,sha256=O8PJuenwtvATcBySneNj1Jsjq24Nv8yyQM1jX6062mI,449
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/server/irml.rc,sha256=6uT7nS9TZEkKT6wALCGJYXOoD13tKvN8agfPZ9lh5JI,3329
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/server/job_automaton.h,sha256=jxkl-lI95DovCZ_OlabTu4qGAMSNGQ2K_iN3vWqSz4Q,4326
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/server/lin-rml-export.def,sha256=Hi4v8vrCwbV64cH4R9tNgL5McirbnAg88rhfgWo1CCs,787
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/server/rml_server.cpp,sha256=-Xi9XBebLU2_MNyJCKxKbbLSU14uFtdxQB7Bf8bImHI,127724
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/server/thread_monitor.h,sha256=IsTcy-dPHVvsJYsurUyNr5Q_ZVzBLUFS-W8ZWqVTtuM,9042
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/server/wait_counter.h,sha256=SH-FfZhNuSDTSGshfERBLP4YpRdbLsN-yRCHyplPi5w,1914
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/server/win32-rml-export.def,sha256=ybkqqF88nTX8aYCcGBPQts3JByya7mHcwCfwBdOt_C4,746
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/server/win64-rml-export.def,sha256=ybkqqF88nTX8aYCcGBPQts3JByya7mHcwCfwBdOt_C4,746
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/test/rml_omp_stub.cpp,sha256=k1q8rlJZu5a2sQTjZLzz_fi42mniMfQqjLtGt4sO_T0,2476
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/test/test_job_automaton.cpp,sha256=K6IwA_Oj2aV4h5ddt0YtNcXjDj7iMY8a7qqk7MSw28A,4074
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/test/test_rml_mixed.cpp,sha256=kaz1Yyzt0jShnAG0-6I3InAL8vImw3sMaDUnJRex3Zk,9205
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/test/test_rml_omp.cpp,sha256=xKfWCrtR6XB8na2-kS02tQM_ZZI4XKffnUnvfioVx6M,7311
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/test/test_rml_omp_c_linkage.c,sha256=fOLNCkzcMpZNDr1JaZPDhVve6BNF5QWxMkAR40usU5k,686
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/test/test_rml_tbb.cpp,sha256=tL3oeR5s5t8YMXsO6uKBJ6lxj_pS3rk88pB78Zofyl0,7384
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/test/test_server.h,sha256=VcuFXuyO2WayPE7VPy2aaXc6yiHhS45WqiRPDE7Yv40,14980
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/rml/test/test_thread_monitor.cpp,sha256=ANu559opdeuMmDP3dIICnbWmhxZZBBjm8zg0pxSBUBA,3751
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/arena.cpp,sha256=5i0Rktjzpg1gAHJlXo6uyWh9bCk60Alc_5kgMLHIfrk,55830
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/arena.h,sha256=ozocloVKlMIHIArzN_o7OZTuHTXdlKiHT2snOxj8pO0,23756
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/cache_aligned_allocator.cpp,sha256=rrg2ixXbd5_7RcpAjBwaZK6tKRzgW0VDpjPGwsBF6v8,8902
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/cilk-tbb-interop.h,sha256=0rf3ujrj3YQJiueRcRPRhP9l-ASR-E-ih_bDuEHl6RQ,4306
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/co_context.h,sha256=5G-pcinsVfXCfCB0SiqvR63JVo_mY99U3aI-euxMWi4,6660
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/concurrent_hash_map.cpp,sha256=06TBi1e69kGpW8-xYtLAnzoTtTfopzHuh6Rzt7F5RXI,1933
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/concurrent_monitor.cpp,sha256=VDqPuxHL27H1nlBXnNMIFQK7d8OkM9Cs_Y76S1H32bE,3991
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/concurrent_monitor.h,sha256=xsldd-HD406libupxF1f-OH0inQFAMb8BWyz1goqDgo,8154
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/concurrent_queue.cpp,sha256=qdZ_qZjfK0OW2FIfAIYG8fjm9TvKvzj8LbGR6D4noaU,24639
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/concurrent_vector.cpp,sha256=mh4gK5yhbqrRMB1lJDjB0R-66uaFXPPy3wAKA5dAqB4,28992
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/condition_variable.cpp,sha256=MnzSG0bbi2f8FAYmKO6ZWLvTJngI4k7-zU13CRK6-DU,7704
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/critical_section.cpp,sha256=IQ75a-PzIXuEtDW6Du0s9N-XwhGPI1_XNrgzg677PnI,879
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/custom_scheduler.h,sha256=Jbq_8Ry49IPO3lSlKIHZodBIuTiCjOM0WsvSEeeuwVA,40322
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/dynamic_link.cpp,sha256=RFQenf9ZOUYVdl-aguVe1e6nWM0c4T2vbiE6NkX-4uE,23016
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/dynamic_link.h,sha256=Ct5tM-9FcV7boFkYydoyAHccUVYsXTPkw7eqUv7AugQ,4463
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/governor.cpp,sha256=QZugaRkCDQahlSM8dhxreTgP_S9Ec4ylRyymnoOd-q4,20938
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/governor.h,sha256=2Qj7PkctSxxAZ1gnc9Fpdjftvf_vRa90iQA_KH7m6Kc,6151
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/ia32-masm/atomic_support.asm,sha256=45YXBb5m6GwOJS414v4OJmn7wtiZ-sEznxoro5hPcjc,3599
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/ia32-masm/itsx.asm,sha256=j_vsYrb_i9nzSAbsofuCHXfa-LMkhd7OcbF_blzrdAk,1877
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/ia32-masm/lock_byte.asm,sha256=HZLbtS3OLos0qHqhtYkRgBMSs2Ll7gq2v4O3Rts6xkY,973
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/ia64-gas/atomic_support.s,sha256=bo0XdCdRl-9bbCzfOkitc9E7bOKQ0CtHc4KEVahhMDA,15124
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/ia64-gas/ia64_misc.s,sha256=lgclORHLBj9MlYe1cBUatPewnHnNS6gUPo6sUgRurFs,2687
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/ia64-gas/lock_byte.s,sha256=ndU1ASoAT2LqgtZP8LMDrtZja-ohW5FL7SBtO-Hw5T0,1270
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/ia64-gas/log2.s,sha256=wuK9c_cQydSRFs7glqY7-zBVneBVCAX4bH2opJmaJTw,1304
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/ia64-gas/pause.s,sha256=kt-NOvczHLdqwvQSAK-v1u7zlLgkk2EI2I286uol1hw,940
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/ibm_aix51/atomic_support.c,sha256=v4ssXqGIOlaSran7HCLzklzMfsohqEOl2QAKE37AyKo,1670
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/index.html,sha256=qBE5FDtrGMolk7yTF-KVs9juAQpqTXDrsIIAaaMG27o,955
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/intel64-masm/atomic_support.asm,sha256=IVGb_u1u9wIONpAWRg2bnRHpjnD2eIFfW4rvEChQKAw,1472
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/intel64-masm/intel64_misc.asm,sha256=Mk7faZtZldZvcSNrCqW3b7usWvszI7zFyp4ERHLB7SA,817
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/intel64-masm/itsx.asm,sha256=yo9-m9KNrFxKAFRMi-4S7xqQcINCYOEvIZUQMalLxHA,1829
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/intrusive_list.h,sha256=FFbzgX6Me0Fc8e83PKMXVnZ75cOWymxhO-RD-B1XCRk,8756
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/itt_notify.cpp,sha256=pOadrTQWRDvMNiGX-mJrpU5yG8dgfcuJjuNbhdalGe8,2985
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/itt_notify.h,sha256=O2M97EAC_L3E_nSpUSHWSvx2WrPQMWueg43c-JOqIno,4471
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/lin32-tbb-export.def,sha256=JYoeFO_QLIhH2Y8r8UQs-Nk2Losun1BKuzPj6EPn624,1048
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/lin32-tbb-export.lst,sha256=fyxVO4fWlZWNkvR5iQ8KzWsrGvbtJEZjl9FpBX5DjGw,22137
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/lin32-tbbbind-export.def,sha256=9uCQzDVGSnj7DXbOyFGRGvOCsiMwtWYDA5tr4ahs8ds,739
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/lin64-tbb-export.def,sha256=ycgSLt7eNjzZV8PTBKTTaE3scKbRGIM7DO0Xhexsu3w,907
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/lin64-tbb-export.lst,sha256=LwtYcqI5gxbuHd724TUCIqvu0gvTvFwy4BQSitu9HpA,21266
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/lin64-tbbbind-export.def,sha256=9uCQzDVGSnj7DXbOyFGRGvOCsiMwtWYDA5tr4ahs8ds,739
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/lin64ipf-tbb-export.def,sha256=bIyh74N05j6pGKIdybWO57_jWdo70HV3ckDJfE6uNWc,929
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/lin64ipf-tbb-export.lst,sha256=Nb12ZCYl5IU9yi3YHKEgSOJcs725wW54bd7ZYjoc8Ek,22576
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/mac32-tbb-export.def,sha256=6RgDG06CCIsu_m260EedWLeXUebI7FCU_zFt1YNXwGo,682
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/mac32-tbb-export.lst,sha256=orn6JIlUdb0lbjhLQkH2b04aK9K5HOhFUrdeXRS2PVM,22187
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/mac64-tbb-export.def,sha256=GYjtS40UKapsYwirtfqLkhlhH8hNYRbm_BEgxB5ux5c,682
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/mac64-tbb-export.lst,sha256=frtxfdUl0qlxFbvWOyKM1RLRjvYNRiLjkJs_NCxFQg8,22067
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/mailbox.h,sha256=vP1-IBEA87GsYe2FI7caiExI7tdQ4tBkbsAH4YZ0St4,9215
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/market.cpp,sha256=76GppNfvUWqkJYsNR6CylRqV0I6KZxWAtwkQM8N7iLM,34737
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/market.h,sha256=l5PG8AegbVfXKAl5ivOJeHyV817f_cY9meV7lpe-syM,15228
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/mutex.cpp,sha256=pfdr5H69acCI6ShrvczleMPaYzicXAiRYHVZ4ZaUpaw,4914
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/observer_proxy.cpp,sha256=zp49R5Y37IYxwhsRwjhTkt5CTbkLr9fZCOFX6JVeLac,14612
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/observer_proxy.h,sha256=Odwb-iRKB-vgk8qUGonuFGaPp9wGuh1iUgo5Leq_KM8,5967
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/pipeline.cpp,sha256=Mue7TtK_Xlctf93TW585HlaekpGvVwPkKuDQuQFwQF8,31359
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/private_server.cpp,sha256=pYO6ZuJj8p0Az5CRxzVobr3edH8MYZXqM_0_nX8SWQI,14677
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/queuing_mutex.cpp,sha256=eSnVtGsqx_De7KtkAktPbRZXYzBAM1MyzXn788neo68,3474
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/queuing_rw_mutex.cpp,sha256=mHvvUPkL0153HUVVOqDtx8dpwHipTRiP09iSW_UsWd8,21286
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/reader_writer_lock.cpp,sha256=MWaxS4VA5133rKoC5tPGAf7LDoquOX6xDVRO7pFw_Nw,12872
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/recursive_mutex.cpp,sha256=gLYJaXc9eOTRRBN1xfm8TjxAT6EJbb1or-j686rfSg4,4439
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/scheduler.cpp,sha256=kKslPrBJdPfYOHT2zEX6pWs-S5X9jqfK_FH7UbIN948,67503
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/scheduler.h,sha256=eeNethx88CWOg5Y20axH9sRf8PA4xcsf0It3Xz5Rd3c,40186
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/scheduler_common.h,sha256=F3GAPx-Su5VxZC9vLaaHsxTi839RLvCabsS2FvtcAnA,17025
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/scheduler_utility.h,sha256=EMO7MnJqi-_b36ztwpkxnk7WNi1IW105UHQ-wjd7bDM,4510
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/semaphore.cpp,sha256=dJgmEnACxE5is6DUGrHz3JXg4ojHQ_ndvJFkDbgFJ_o,3207
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/semaphore.h,sha256=mFrTARFjKHvoj307g7uY4MB8RjJby_dB_Knr3YFpvJs,6779
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/spin_mutex.cpp,sha256=_aXJ8vcPVCucD1c60bEZZTbHE9KC-g7j96iCBO7V-_I,1669
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/spin_rw_mutex.cpp,sha256=RHdC0BzztDWKC7dl2P0GAmDY--hKn9xdqKcNqPOdkHo,5982
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/task.cpp,sha256=jJhkyoJs9XP08HHi1uDzZxKLxOk9sNhike-cck-zVs4,11702
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/task_group_context.cpp,sha256=xRqwdmRcIrED00aiCU8Z-WkNTkpaBJBjLZVGv5QT20g,22772
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/task_stream.h,sha256=cQGcOiEoovw_PxYWHwEA0Yw3d4lmlfTZruWQse3Vq-4,5891
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/task_stream_extended.h,sha256=rzMriIXgs-vgjZxvZse5sjEFmBYVghEd0pyWxXszlCA,11947
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tbb_assert_impl.h,sha256=IJWzGwBhi0RfHJih8dnfJAXiNo6kft9LBoQmx3G1WiQ,3381
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tbb_bind.cpp,sha256=3uNEQ0HSucOztuGtEV-eY24nqrqTYhu3dO9wWehKPJU,12405
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tbb_environment.h,sha256=dM6tLdMLJnF9KJLbZFJNaqW9qsHCn8l0VNJUSK4QwcE,2541
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tbb_main.cpp,sha256=ivjOMdU2fII493hd2kTQuOQKGBiEbqWVjnU9fUh2OwA,21748
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tbb_main.h,sha256=-kvpNNkfUaAbQde8dDf5aYyug5yWuQSpUa67_yaB0k8,3442
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tbb_misc.cpp,sha256=Z_myBYIXtK3RZZHwJPpkgyDu9Lqv2kPbA12kmiYd-4Y,11757
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tbb_misc.h,sha256=_eYW5mtilzqgsBZ0weEp4vrgEnOTjAGbMizkPEm1omY,10348
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tbb_misc_ex.cpp,sha256=bb2gQkPoqbO34ZrimzSxonRN2bZjRI2SlwSZ4QyDaWE,15809
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tbb_resource.rc,sha256=zjjr7jHwavA6xHCF_bG4KoiS9-Swl0U91MCcSZqYIEI,3310
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tbb_statistics.cpp,sha256=bypalNSEmSnBTdhXcvsdZ8E67W6eVhNlAR1TBXCYvG8,7170
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tbb_statistics.h,sha256=2KMZ1HxWHiaLpV_YNNq-I9h4TS0zUGD2E7FfNcrzY5Y,8828
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tbb_thread.cpp,sha256=Y3FohduZ5trC-gkvM0P-F2_ezkrHvKHMNhBq069vuyk,5863
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tbb_version.h,sha256=pm4AxmT-adx-x1uNdbI0Cdfz7atolfTr3k6gw4K-H0U,4013
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tls.h,sha256=Fhm0J91TVuy2jqreWPsSlqxBxL86CSmpGkWcpk8DrgI,3424
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tools_api/disable_warnings.h,sha256=KANauGUai8EqLSmLCC6QUZMYzNmP4I_xIpMxPhcCxrs,1545
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tools_api/ittnotify.h,sha256=lp3A5ICPmEyxdJfa7OI5TJYV8iYh43_Za2zscF33ZWM,173350
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tools_api/ittnotify_config.h,sha256=TlH-MZO6MokovWFflB1xjzP5-ts2By83wocculEAiqM,20352
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tools_api/ittnotify_static.c,sha256=MuoijxnhvN_it9Yv05STI2aSDkOFo52fo_lMkuUTu9E,46776
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tools_api/ittnotify_static.h,sha256=iH19UTy4ro2NB9nAVC4z9IyhuAw0d2ywEJ_R08vHD3c,40114
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tools_api/ittnotify_types.h,sha256=7ETlPw5CJV1uuQF3jxLELmPq0uD8C7iGheT9oulApSk,2442
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/tools_api/legacy/ittnotify.h,sha256=4mEfabamvJnJNC4J8b220qaBSQUP4Hur5sBzzRqCSFE,37121
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/win32-tbb-export.def,sha256=8I4xGgJVc1tHJx5GoK3V077zlQIsfwsG8L6eRQJUYgc,722
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/win32-tbb-export.lst,sha256=uyTIQjoFdCZs5lRvoiGULDio-TlzSGqnneKeJWUUyy0,20388
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/win32-tbbbind-export.def,sha256=GElxr8Nie_PgVdDCgyJqYC7l4Qchl9U_PYtQxj89pYI,714
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/win64-gcc-tbb-export.def,sha256=oRav6mDsVVNK1tt7DdrFFEtv7VdaEtJ2CHn2PEHMqLc,884
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/win64-gcc-tbb-export.lst,sha256=CS4DvsWNm40orh_lJXZqwGj82fOrgDuZjFPk3JQfXb0,22701
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/win64-tbb-export.def,sha256=9yAqmFr8JOMqub1pfntC-Jm26WQOyKjf0pHZ6nOqAfY,777
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/win64-tbb-export.lst,sha256=ENGhdJ4YeI3xNktEbnE3s-fwRMvApEcNlmcvQjN1-yU,20530
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/win64-tbbbind-export.def,sha256=GElxr8Nie_PgVdDCgyJqYC7l4Qchl9U_PYtQxj89pYI,714
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/winrt-tbb-export.lst,sha256=gfv3VHpdenXbn3LOor1GTbDMCpX7VOVBCovnSge2DOA,17226
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbb/x86_rtm_rw_mutex.cpp,sha256=FY5J6LBogoTrNWbBnqYCJJbPaXSI5PE_WGSM3UCmAr8,11358
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/Customize.h,sha256=mF3oOjUmwH0uVRBCq9zT7D1PX4jY2G42fSPNfRy_98k,4588
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/MapMemory.h,sha256=-m_64GCSh9Z1hPSt9MSSptKx123hFz9gYluBWbakCPw,5621
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/Statistics.h,sha256=pTnL8QH6i0tcuwuJSVeV5RD77eOo68_mQwbgkhVuhEw,4463
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/Synchronize.h,sha256=whisyEkb4gC1xpQwXGJQQeA28g-w37E0BAXrYwZTkgE,3465
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/TypeDefinitions.h,sha256=t-S_lqvYDgfFW0Jm7uJgFobkScyvAylwstP_kMR5jE4,1802
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/backend.cpp,sha256=2vt0-QZaO6nMQBDwfMxkj9RH7xf7qgbrkgXN9hGdk24,55673
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/backend.h,sha256=QzP0HK4-gX7LPNdr10jkVRTOQgkKBsKOssEcdKRk7lc,14588
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/backref.cpp,sha256=1mktlGu32ZIK-T-Q2Domy5BXQaKYFAWMmxCE09RP6rE,13640
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/frontend.cpp,sha256=nteXGNg_4MPXjsnag2ipBvkp0Y17dE1G80Q1art-lys,113900
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/index.html,sha256=_11PQXpeureVVMb_eZqUWjBbPBSrMrmL6fAHlGQmT_8,2256
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/large_objects.cpp,sha256=O1NVQa1Y4odt1hjJrqof9nXPjAwVtOGYbk9HmjHR7Os,34951
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/large_objects.h,sha256=U4VwFgRze8L0BoRGALL77wx-YJxtT2venRtYAimhMto,14181
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/lin32-proxy-export.def,sha256=vjgItJTiIaPzx-Zgdki6gBsEEAbFKZX06GdxVAg-Ddc,1091
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/lin32-tbbmalloc-export.def,sha256=a_rS_EBja4HRFlAN8ezYKHvd00ekWxcdk72oICEweMA,1929
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/lin64-proxy-export.def,sha256=BS-6jUGb0SMRsGLEBBEEmdpFKdzbrtubpvfLtRwIcbw,1092
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/lin64-tbbmalloc-export.def,sha256=Yk1Chc0zOoFELy_MaH3pnuBkpanGTcmvUDN9II2Gwyw,1929
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/lin64ipf-proxy-export.def,sha256=BS-6jUGb0SMRsGLEBBEEmdpFKdzbrtubpvfLtRwIcbw,1092
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/lin64ipf-tbbmalloc-export.def,sha256=2ZYNNwEDrUAbf64UxjmlesAhKTsquUPLyw0UfMhx5ko,2050
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/mac32-tbbmalloc-export.def,sha256=OLxugfVCFpzXr75T7TdWvMnCyQ9JiSYVDl-tb9WqvVA,1544
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/mac64-tbbmalloc-export.def,sha256=OLxugfVCFpzXr75T7TdWvMnCyQ9JiSYVDl-tb9WqvVA,1544
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/proxy.cpp,sha256=snaf8p_wEdmK8eUIAGllfZ4e2N1d9prUd6MQfdyfFCI,31980
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/proxy.h,sha256=4X99efMy64o4sQdDxmE5x_ZO_7zSInEqhUgDzvpz1o4,2374
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/proxy_overload_osx.h,sha256=ly8xeeAX7afJnnBQ2nxix7ReBVmzwxXDzeghXz0P2uA,7144
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/shared_utils.h,sha256=e72O3mCEeND4FsJHlyMejp9KsXii3_amesqVmRFZskk,4528
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/tbb_function_replacement.cpp,sha256=7vN5ymR_Wp8O6XOI45D6cI9EjoQGYoX8sX57r5neQuU,21627
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/tbb_function_replacement.h,sha256=SORwRO3g9xwFatdPeqM4HKvZZvZ8xnCZ-KUN3ZJzd98,2801
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/tbbmalloc.cpp,sha256=0n7Aj5eSEb7gL2EDXRCSSZMkMn3omxBrIQUVyIWZLUk,3824
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/tbbmalloc.rc,sha256=o_fTaR170NfiOQ3xSbM1KKscQ_Q7acK8Club2dLcnbM,3465
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/tbbmalloc_internal.h,sha256=UomhvFcTwBiRkK_61fgnwfMDGnHc8GVpyWl5A5N9PaI,22842
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/tbbmalloc_internal_api.h,sha256=RUhcQMk9pwc9-gHVK0ku9j51f7RKkf_jl8zI7MTKvog,1254
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/win32-gcc-tbbmalloc-export.def,sha256=3Swa9ygf4bFR-d1cxeaYfu5noTfWdiqqO0JlCyQSnaQ,1533
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/win32-tbbmalloc-export.def,sha256=aD8l7RymWlABO9_J79jufb8m8i5y5CCakxSbbY5i6do,1536
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/win64-gcc-tbbmalloc-export.def,sha256=dZjqvf-3gfTx8gMHwYNS2YD7mfRm6eYXhiUQoa2APmE,1533
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbmalloc/win64-tbbmalloc-export.def,sha256=Dd-D2C2CPPKkddZqoqFYAZTZAxWbWlxIzZb2SLzJPiw,1586
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbproxy/tbbproxy-windows.asm,sha256=wQ5c4lVF299hNcV0rOLLg157yA2JwQexRT6Nf9lAK1U,2831
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/tbbproxy/tbbproxy.cpp,sha256=XGVaSc-vDQaPMwG6Ev9vfAePIeN5wfbrg5CZ8n3iy88,22579
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness.h,sha256=aarDx7HaHzQ0MkzyBgj-0cvOHmyS9FgfTclaVMi9f4w,28057
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_allocator.h,sha256=RW8u6T-DArO4DhinBjLXBUUQxtBj0_gp8K7TO0KoZPY,32249
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_allocator_overload.h,sha256=UW2gxkw5kfwF85N3AFMoWwmQ_h4yTZCjAuEPChVOnXk,1731
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_assert.h,sha256=BBm0VoMq7UlUg0XPf-eoj5ceEmRy8a0Al2rSRJWSnz8,1514
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_bad_expr.h,sha256=sWYyWwco_vNcRh6ZmWdZy9JLVKiolhn5fPXGRJmoqps,2944
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_barrier.h,sha256=BAobjviF4H5yE4DrZUX6vFoT_OKB-yfLuXwORFyjQso,5190
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_checktype.h,sha256=XSflcy3vaYtgmqgfIxwzkSiQFovro31-Wpr314_ksRA,2871
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_concurrency.h,sha256=OljRWQ_6X7lhzY8eHYdRSot2iod9JtDky6284_D_H-w,3461
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_concurrency_tracker.h,sha256=81j47yCkjhiWeQ2CaM_Wr-fSc47RbfXqlsySmI0WX28,5878
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_cpu.h,sha256=yTSkx8QstGfayI8WHJeyWeuWAG5tvkeVresWaoVJSr4,4926
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_defs.h,sha256=bSfwmdbLX8mFNAZZUKp_ecVDWkgiGorLAZbPcjRKbh0,10946
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_dynamic_libs.h,sha256=KTjNuSMQh9HE-zDV_hU9mn6HdvkyA9dPMilxkhuvzlM,3135
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_eh.h,sha256=LOJRCoTY39wo9WGb1MkRi0JSBTCc6S0X1MLCgIjjGeI,11203
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_fp.h,sha256=5j-x45kB1Snu2XZoDRdvXeG9-9juvprb2scwpgDqFyk,5441
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_graph.h,sha256=Umv88f-wxn-wqfHRb9OuRZwy1yTCPDBwK7Bgve4cR8g,46464
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_inject_scheduler.h,sha256=usJNxfwvdhbA6LntP5Ht0oQNMoeqyTT5HQ0DwEKRNy0,2497
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_iterator.h,sha256=FV-4JPSk0KgpPyxGvsUklSXMvQNCvgUFwcx7Wg4ddSw,5982
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_m128.h,sha256=rc3msvMxH4sVsegewOkKUe32aI7Dte8zTH8x1c6ZsYo,3968
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_memory.h,sha256=dgGAv-rwBAvaMARdx1kXl5Y1kO8YUUACOFVy1GGv7w8,4725
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_mic.h,sha256=1S0bQtottn7u2SVUdxgGGYOjVV6j2FmScTeuj_kbKL4,1240
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_preload.h,sha256=JSUSVAMU_ThUt28mZAYkeuntlgRjGqZbi6m23Ot5SkQ,1851
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_report.h,sha256=88oCsxY27WpCThpKfqzLNBvRUWlxj3SHZG5O5u5agzU,5521
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_runtime_loader.h,sha256=y3QJR9QmGHTPWW2dLYEgcV7ziIak8REwJmLr8w6zYPo,1228
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_state_trackable.h,sha256=qjSfBAUJxHWXVxvltOHnWiM9ZXLP1Pp5vU9PXLXvUPQ,5936
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_task.h,sha256=peYoNN91wKfiI89iXWcMgiHWCTX7jzED5V6LtrifFD0,1677
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_tbb_independence.h,sha256=laXEaL63YJhuiVkso1VVbnaEdaJQE_EnvjGQea6Djrs,2727
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_test_cases_framework.h,sha256=3lTMVyeADkznDCefyCrYTnGsiRV6wWPeGopEj0iuq0I,9589
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_tls.h,sha256=0BwF15FsEG3QVJIYLiUgGlzkc5nyZyjwZnRELDnbDJA,2464
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/harness_tsx.h,sha256=4kuKhE1LbUXr6LT_bud14JE5EcKTAF4lCy-ZqxatJMo,2238
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_ScalableAllocator.cpp,sha256=usvGSSKUJgitRwgnnkhGn3XKUZ9qzmZFq8UVu7XWc9g,8293
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_ScalableAllocator_STL.cpp,sha256=Cj0lciVhShLn_E1NaKkMCCAa2yFD1-WHB387g-2Qmzk,1947
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_aggregator.cpp,sha256=JevfMw9i4oaH5WodqRoArPYrpwU1Xe03BQp0p24yqzI,5604
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_aligned_space.cpp,sha256=FF85kA3n9zCsDjoeS0ocpz0EJU2G43SCX8uV-pTw8TI,3656
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_allocator.h,sha256=dZ4O0zHl8esmTFsWNDwheoJYVakX6A7zEDMrgwS82Iw,8899
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_allocator_STL.h,sha256=2Fn-oSJDAi_h6yPUtB1izrIpZouUbcc2tW9cnbrvj_s,5394
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_arena_constraints_hwloc.cpp,sha256=aPsFLNUc3-uX4WcAAbP6IigZm5h7s5Zudef4JkmNE3w,15244
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_arena_constraints_stubs.cpp,sha256=rfSgi76LWbTvpaorWohkiCKlu0EbazRk2jTVkd96rv0,1491
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_assembly.cpp,sha256=yovbOR3Z00vOQrPFUEX7QXjxiXi1EhVPSElHcdFdBlk,5030
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_async_msg.cpp,sha256=iPijsxU4JIp8Di5ARDbv950QGefgLMc7sUQ8dy3YZN4,21248
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_async_node.cpp,sha256=GRHBpVhwFHcg2vd-AdjBhxiDoYSnpJt4iP0saKypfds,29378
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_atomic.cpp,sha256=iAsBUNwlT-S99jShttT_Eplos78GrzA2cMAWaLyF4YI,64086
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_blocked_range.cpp,sha256=hQAqB1_16zu36OQUFTZfDiOCvA_bxZ4tl_SMMoNk9SA,7295
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_blocked_range2d.cpp,sha256=4YrbucaanTHu5x7LBrZ82pfZtgf71F1FfLLkt3KCPJA,6550
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_blocked_range3d.cpp,sha256=vwLFFTyld2Qn0-byBQXJSSOztnmVw0A3EVZiEJdAx0M,9171
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_blocked_rangeNd.cpp,sha256=UsDz6MkCTwBOprh8GBWk1hv8CFRwgw2qzl6GT5y_nYg,9789
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_broadcast_node.cpp,sha256=EvQgW92E8M-y9zISoFSF2Tzn-zt-4LGUhMAjRCkUq_c,12692
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_buffer_node.cpp,sha256=-jVadsUhhJZfvBI2UNonC-0n1MAoLsZ6V3JFLuIxeYI,13511
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_cache_aligned_allocator.cpp,sha256=ssx1wwlzWTuZmF_B7LAPJZXa62eEF7FzD5ASfTLpJFw,2737
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_cache_aligned_allocator_STL.cpp,sha256=spUc-9yv0KpgDeFM5OEiCnSRQT6h5_1BqGi36PSXh5A,1635
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_cilk_common.h,sha256=7mXTsef-ivDeZ5DJwZ_kQitOUOUYLOk27fIKwIcb8tg,2377
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_cilk_dynamic_load.cpp,sha256=iuBlrbwp0sm6UXZd9kDhgZslut1doiuSPjv57uLWShU,4055
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_cilk_interop.cpp,sha256=EPd7eGqnq3K1RhhqsUmxjWVtIzjWVSvMf_NRr2Qya1s,4247
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_combinable.cpp,sha256=WrWCKnc3Q00JpWOyehnJ2a2Qb2RvarR3HK-JKwYjF_0,17445
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_composite_node.cpp,sha256=Rsc1-nQw17m1GLDiCf3VCmZfcU9Q5TAlYJIn7hjIqD4,25940
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_concurrent_associative_common.h,sha256=MC2_8G8Opb2jLW5soV_SiM2HHJpWKB_Q24KWz7h6afg,66617
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_concurrent_hash_map.cpp,sha256=O4cg8iC0uYvarNsA3O09wpXyR2M2CsnewJh6O12h4pI,63573
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_concurrent_lru_cache.cpp,sha256=FT5C-Exk695jqeOtujl-WlQphOUws9Tan8Tf_bRgXCk,20538
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_concurrent_map.cpp,sha256=JKXmV4bfvB6m_JNLIKOPHhqWdVsx0o_CPoSPuzBw5ow,10558
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_concurrent_monitor.cpp,sha256=Cx3wDkOgoooAbGP_z4vYjyy9xTcMFD-ypX5u1B0q_-I,11278
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_concurrent_ordered_common.h,sha256=97aGCalyzajS0Qnt8Vf3kbgzhroEckJYU1xbDlY3YcE,14583
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_concurrent_priority_queue.cpp,sha256=JDZh1_rxfczMgj0C53nVNPxjondRx7DfDgIBtkbhQc4,46187
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_concurrent_queue.cpp,sha256=zcd4_PxlSIG7SBl73zKBRZdvDekRN6rD5uchZS6_fMw,60328
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_concurrent_queue_whitebox.cpp,sha256=oaPtq66aAdSVL9kVOXrCtvQlHWFa0yE2Yz2p1b3jn6I,3009
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_concurrent_set.cpp,sha256=L5U-WxQoyFpbH-woX6Nqn-6PenwQNmbVuzuoBoIsF0I,9685
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_concurrent_unordered_common.h,sha256=oZeWWR2Ji_sUDwaC0I6gufJxvMIunMKLw6OFQCrsTWw,12232
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_concurrent_unordered_map.cpp,sha256=kwcUPpu3eVe_5_rXOwyGUwIiFFgRUAty3wGD2p2fejY,12172
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_concurrent_unordered_set.cpp,sha256=TkeLuMflSV1qrU0jyQCsDAB4-92x2Pi0DyUOAkhNFus,13241
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_concurrent_vector.cpp,sha256=Xlc3j0EQKtm5UPh7vWSyzde_TbiB7l8g4Ou5BfqGkqc,78080
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_condition_variable.h,sha256=4JWozx-L8O6s5RtDrY2ALwl7KfWK0Ipf10p-89Irk9A,26410
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_container_move_support.h,sha256=oXe-ArV9XB1uyPm7g1h_Be16VCFOS4bdQfXUXHM3JlU,36611
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_continue_node.cpp,sha256=ell0wOYkfwETEm7q12P62gw7uS461sUyc6-yebD9tyE,21647
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_critical_section.cpp,sha256=cVGA90nF5QQ3b7srnG85Y-mGm0s8ZJCD6ykMfmyOP2Q,7808
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_dynamic_link.cpp,sha256=SbvUwgyqGu9xEK8kdrJdiT9V5XwhwCUVUcoiOcVDsT8,3203
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_eh_algorithms.cpp,sha256=WbGHpGVYzJeEkWbFn5yhxJuDu6ATCkR2Vw2-l1AvuGQ,67005
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_eh_flow_graph.cpp,sha256=RG-xey3GwqvUKX6xCfeCb5IHh4aO_DF1_7jlWRJX3GM,91474
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_eh_tasks.cpp,sha256=dqPeaNr80cQ7gtT0YoCntpdvy7R7v5qHr_AOHDupjtI,30447
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_enumerable_thread_specific.cpp,sha256=_XBWbfeQlYq2OamOy8DdFaTBA7QfKKggeIFg-cdiIY0,53198
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_environment_whitebox.cpp,sha256=jAUav4W-dFTE_uM1o49ubGh-ja28YL4Tj0nLqTrSjcs,8891
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_examples_common_utility.cpp,sha256=ZyapvVtuxoNh7z-kFducMeD7aaUjhqzwsa6k5CZoarQ,23400
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_fast_random.cpp,sha256=GnE76UdkUeOodxbQCp-BpF-B5HybMCm0IHrZDaSz5VE,8611
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_flow_graph.cpp,sha256=ziR_173Ve4Ds1WmJglHBRfj6QMPOOHbSj2Ip5b2j1L0,11807
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_flow_graph_priorities.cpp,sha256=SnWE7uSXiNQdF_xKZw7X6EUsSZmCB7a6FO8lxiMzNmk,21931
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_flow_graph_whitebox.cpp,sha256=KXuabo3kWUWF6y1bSV52FUCaXh3Z5_WHNXy1KKHjD4Q,31495
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_follows_and_precedes_api.h,sha256=jtcR5yKHe99_MRt5YVZTP18bMg7JXrYXTI9FkCz9lP4,10995
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_fp.cpp,sha256=Fxa7B1mXJUdWZ9_CNMxUhcnyXwmSPl2hJhjAHApw2qU,14374
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_function_node.cpp,sha256=uT2HX2MvAwW5XeVfXg8_2Efm5WsnJF88v8hq4ZE2MQQ,27664
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_global_control.cpp,sha256=Pq9Bar3_HTnbpCo5AF9kvTLk5aMR_LoV5xGO8f-AEVA,27536
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_global_control_whitebox.cpp,sha256=m2BhxrxNu00zJEr8tLA0pcFZ7tIVBOoCRsbK7M4mx4M,2406
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_halt.cpp,sha256=XCTWne_NtayyB_CmQtKQf44HgsV_A-xNy-eEhmu0_eg,3333
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_handle_perror.cpp,sha256=5ohGyWohPX0c8GwgLc4oj7D40r2QuEttOUk7Jjwicco,1496
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_hw_concurrency.cpp,sha256=fDG5tdLmZ0OvFMu68smFM14QHF0WZLWaRkBgbbvu8NI,1828
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_indexer_node.cpp,sha256=IBSlspvfxeiBC1AgdKFbXCWNooNFO_DpIr8ADs9qPDM,36672
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_initializer_list.h,sha256=jAR4B7NPhQkQHArx0rktfPe2fgwf5xvwOpWTaZPquY0,10919
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_inits_loop.cpp,sha256=-IP1bjtoF9_1vtU6UyR241Y0KDn_2MQULQdXuhXcapE,2667
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_input_node.cpp,sha256=wnIDlUy2iK-LXDsUoY2CI6_BGKEpwnjYuZ8AbshNw0E,10837
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_intrusive_list.cpp,sha256=0J5TY1rAdaHNbxUKinM0Ik1vM4Q197z1Hvn66y-yl6s,5563
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_iterators.cpp,sha256=q8f1Bte1ar5XJmaTzz_0ihfH6sTT1eARW-5evw-qQro,10288
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_ittnotify.cpp,sha256=fQXIxOeNSR67l1hjl7oT2rOpB4NxYUJFHrAOU9dJ3Bo,2519
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_join_node.cpp,sha256=t-kwoM4sMqtJkcfgYGAgx1iy6FpHkcsOSZEwX0KJiT0,7939
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_join_node.h,sha256=UTTOFxypNJtSXO80jnAgVWyaAcJqoFQAEDbN1p1H1YQ,85512
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_join_node_key_matching.cpp,sha256=uThcciKjYjkvEoX72Eu9Mik_P1xCoiTjIPpbhIZOxn4,4135
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_join_node_msg_key_matching.cpp,sha256=MrvpsDeLS8VG8X6W51FHIILJsW9MmasgDGVa1pt8SMw,5118
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_lambda.cpp,sha256=9jEqidxCBNozW5QEwC2f5Ad1uigex0n9wjd-jWwtNzQ,9260
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_limiter_node.cpp,sha256=BezC3Q95g6YBAoV4x7nT6ILbm-VuE783RfSSMu42WXE,24879
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_malloc_atexit.cpp,sha256=xAD9SmV0yVMjIkc12QElWQh1q2g4QgEW4zIY9_3Svok,4138
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_malloc_compliance.cpp,sha256=eVY0Apzl1f7loguOkZpcSpBUrE5raIREKhiMbYk7eiw,36199
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_malloc_init_shutdown.cpp,sha256=K4fiz5qXeH2rmIMB_Q8HyD1VKXI7Lo3TTgQ3KRn1wzg,5386
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_malloc_lib_unload.cpp,sha256=2vADfx2pZS0MtOLXCtFdDqqivP-5fRx2-xhqy_bWiQw,6742
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_malloc_new_handler.cpp,sha256=oGSmrKpopyYNTBRTMcAvVmuJ2IDK4_mxacb-1XDN12w,2517
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_malloc_overload.cpp,sha256=yXZR20LVZMuaKcAxuZVsdBdeaB2msOE9BUTR1Qqi6kI,16254
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_malloc_overload_disable.cpp,sha256=RfFXm7HYhceEMDeTC-OU_nLlyB3YV6oVDpa1vkUJYTM,2356
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_malloc_pools.cpp,sha256=9gGDzFap1bgwNF1eOER5Q362aQmIM8AGwrStiz5u8ss,27504
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_malloc_pure_c.c,sha256=_74IAOAboSQc-9IpkOfYe7tK4Pw2G_uTV2JTCYHM5kk,4089
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_malloc_regression.cpp,sha256=g83kXMVByvQBnqwerYOYLEHWWkYv5LjXF5DFZuvEyYo,6360
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_malloc_shutdown_hang.cpp,sha256=d3aPM8eGihSW7J9gNDa71o37Yb4MwQfTIhc3Rls9acw,3378
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_malloc_used_by_lib.cpp,sha256=rP95ppHfix2nsD4S9oWAeX7WSchtwYJTpgnpGXYxfBI,4426
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_malloc_whitebox.cpp,sha256=-ppmksZyo__d7gHLlyWxa93qkPJ9MPupmXl8JWLI88g,62103
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_model_plugin.cpp,sha256=lzoNHRh1KjldraWGF0hIBkokCQRZ32rVI0mlvXOR34Y,5516
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_multifunction_node.cpp,sha256=6XRmGu69_rAGGYfPN5dfYMy7ltiCyOJeQmFQuF6fO_I,33271
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_mutex.cpp,sha256=iXkb44P6buVFaqTmyBepIRlsm7qlFIE7WD8Ps3A5NhA,26363
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_mutex_native_threads.cpp,sha256=YPQfo8lnKb7dP6-UhnJINeWm9nZ6UwSsxwnVjBVEcfk,7029
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_opencl_kernel_32.spir,sha256=VeAt5cew6Hb2mY12yWi1m3md0MfSmIOR86ZYr3xQXXI,1440
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_opencl_kernel_64.spir,sha256=W7R0WVyckRmIBLjGNZSGS43nT8hQg95BF1-c7eJT04s,1468
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_opencl_node.cl,sha256=XP6vmTPyIiDO_e-juqeY69YLjRR69GiergkajWDTsBY,4881
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_opencl_node.cpp,sha256=6UUePB9xVVAySaWFVunH53dt4fmY4Lla3msukpcAYOw,37114
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_opencl_precompiled_kernel_gpu_32.ir,sha256=RtkKN1HrpJg9GgQ3mO26Kk6L1ksI6Fpb5AVQi19QoNU,4110
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_opencl_precompiled_kernel_gpu_64.ir,sha256=9zkBs4QEr1nVQ4i6CDl7PqyBLvzVZaDs57CYRklsxpg,4186
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_openmp.cpp,sha256=2LrBnE8qBvPgK-pJq5HVeiZGFRnBHOr5J-3WYfm_Y50,9163
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_overwrite_node.cpp,sha256=xqZk6PHXD174GWcLqC-GjJmf9eLAgVBuxGuXWIxJJuI,6338
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_parallel_do.cpp,sha256=HDUdHlqBRTGPUA36hpnEs4O0JIV-Csrz11bM6-WB4mU,15440
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_parallel_for.cpp,sha256=2xBz3ZBwnOQAc4HRkhniw61P6B3zDfUfm71z3SRciy8,29519
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_parallel_for_each.cpp,sha256=00mWVPqRFguSRM6CXi6yLbiuoq_pHQfWr_crkKpE_pM,8510
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_parallel_for_vectorization.cpp,sha256=sOimYw029l8r0RQfxZWd9_DC45jQLZcs4L7eztIXkNk,2561
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_parallel_invoke.cpp,sha256=uDSLyidLf3hlARfSoux0HhAVMLMHfunLDox9vcOHMaA,9937
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_parallel_pipeline.cpp,sha256=iBvsLcOQ28LDQNp-qKzV3S4w07em8eX238UGXQlJULI,24485
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_parallel_reduce.cpp,sha256=soSYUuaXFH3vGbAsFQy8-wX5aVIurFL4_5_zHwe-1Bg,17734
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_parallel_scan.cpp,sha256=HS9Tq9GjPQuM6Hl_4q58gELc2xpWKlrZ6CqrMY1uolw,16538
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_parallel_sort.cpp,sha256=sdJYsQ2MNyHT-LKYgB2wwA_RpNGRNfJIxjCJ1sKSi8k,20279
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_parallel_while.cpp,sha256=lJHoRoopOGsmF-a86njzFDKb0E0b-eYL-XxiNuMMYVM,4646
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_partitioner.h,sha256=hDEUzIjYdYBO7S4upOBUipEOGD4fUq7sauaZon07QLE,27120
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_partitioner_whitebox.cpp,sha256=fgoanRm524yzPDbiUCehgLeE4I1Yt4-9y1Uxtc_zTJA,8076
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_partitioner_whitebox.h,sha256=2SG1rrKXNiDvySM1AW9GMCR2SuPrVbNjT-Yecz9U7Sg,20655
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_pipeline.cpp,sha256=mrJ0UemWC-eK4Ou3vlfQ7ogxSUML91uZE7UcVki9UjQ,11889
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_pipeline_with_tbf.cpp,sha256=Qf6ZnG0wmNAcNmkwHyE75eYjSIgiovAMdv4gv1u6cN4,20804
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_priority_queue_node.cpp,sha256=CVGW1IJn0EWi9LdFdTpY397b0FRlfx86ZfHiKYY_p30,12282
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_queue_node.cpp,sha256=NfKsQwQsjryl8JVbIXHyIg_lpH-NqPPLBNvR_7SQF64,15178
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_range_based_for.h,sha256=38ghPS33hPeNIxpSgckOLpDECFPucOq-rJNp7pyL6ps,2706
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_reader_writer_lock.cpp,sha256=ZDKg3nrgDsUZBMxSDhpQl-nLbP5iqlQH_CpUH2BL2NY,8127
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_resumable_tasks.cpp,sha256=6892KnwmuqcUH8SghB2lBPRnI2C0bXqfil3FKt_iUBg,13465
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_runtime_loader.cpp,sha256=WDt_llKO55IJZmuDBdICdxD5EZLj-DLSfpAsh-LG4JE,12088
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_rwm_upgrade_downgrade.cpp,sha256=f0JLu2iaH_lQs9e8q6yZkukMNfp_cxVHSEs2nR-oWDc,2127
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_semaphore.cpp,sha256=Z9BURr53-PaPdEWPx6T9UjME2sf0V7FYO9IXcWRmXmw,10601
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_sequencer_node.cpp,sha256=o302WtAqK8XdFLJTAezyeFRXQVP8g7nPHc0NIZf_1gA,13899
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_source_node.cpp,sha256=zrG9RV6A7YcViH96ZZk4f8JtNXBiZjVKOTXBBNXYPP8,16507
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_split_node.cpp,sha256=I1UoQL_cIVGvBnWvVpHF4KzxVGaOsAhqdc36lO_Ltqk,15354
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_static_assert.cpp,sha256=ZUAmuM1UjD9Vb-TJYAV-l3_WbsrEdOt0K_bf3nx3-eE,2623
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_std_thread.cpp,sha256=vFcwMak0U2pS9f7uhPXfwz_iaMtyXIsOWBc6_cvoyzk,1094
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_streaming_node.cpp,sha256=SELHNHqcRgcqpKoUJ4_SFtVtJzfqsPPGhkXEGO4tfiE,28608
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_tagged_msg.cpp,sha256=RiMo7UqFm-6B5v7nRmE2n70ShwWsy61ERkKnzu9jRoA,10556
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_task.cpp,sha256=jQolomFaWrR4QVG5-YGQLwIN3Mr4FyQsaiHugcbeWNs,51760
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_task_arena.cpp,sha256=yQeBRaJoPZimEdavWAgEsBduUXydjM6TuL7lsQp1COg,66088
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_task_assertions.cpp,sha256=dqe9Kb_p1tv6fHSVJTThHA8uS_G9sCAmlqYX-1Pn0AY,3069
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_task_auto_init.cpp,sha256=q4ZkA45CQsRgA2NrPVMD1VKera8E52fCJyNtMZRT-vY,6878
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_task_enqueue.cpp,sha256=vDPaveo6lIu0xkMpoq7VhtscGPXGQ_TqN88K_RLVyKM,13704
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_task_group.cpp,sha256=VBe_yWK3vn0PKqb8FbhPTR0zjDd7kwEzSOoBEw5SPos,37382
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_task_leaks.cpp,sha256=1EbuA4ouVAMTrfG_TzeD2qnIHgL97j6DHO-ds2C9pJo,10622
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_task_priority.cpp,sha256=56PF3ZGyW0F6phBTGUC_GGaChVWw1yn6KS5Yf0Ma_Oc,25150
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_task_scheduler_init.cpp,sha256=4Rl4MSZvaPcjx_fq6tj_ZuWUfDTb2nWB83fnExuU25U,13852
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_task_scheduler_observer.cpp,sha256=lfy4YwkNjs7t75YYx1kLMTqu0ZXIitj9pJB5zJnbkpE,13448
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_task_steal_limit.cpp,sha256=-JXTzizi74Bf5AeNu60twB8c3CTJhDPMnKE4LLnfuD0,2333
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_tbb_condition_variable.cpp,sha256=ac6XvhuYkKoKURuvKrMkaDnv29vFsk7Epkrs0FCYDkM,824
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_tbb_fork.cpp,sha256=AskJXgYBa32FQ1ujvJz-6SVFj0le_DSNq8NTTzf4mmg,10117
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_tbb_header.cpp,sha256=K1kLcpjTdTEQUthoCNTyh5MMDMNxhCloYr6KwKrYZdM,17770
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_tbb_thread.cpp,sha256=hz7S87pQLbTz9npWcKI5pL5rUtnXw3g844HEtXQbcE8,929
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_tbb_version.cpp,sha256=h8KSzKUaUw92BAttWGKXmR8LCQE_u9oSltR1fFPWKFE,11175
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_thread.h,sha256=YjNG5hZF86bdavi5yYBv3Fwq2U56LZnOmiaX5AArFXU,9439
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_tick_count.cpp,sha256=iM7GafEp1vzZ8Fr7Q037FPTts4zankOe77isnoMzaus,8465
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_tuple.cpp,sha256=rKYS6pRjGkTAo6Yl6URWdaQmks10PKma2vVlDqpB8YU,7894
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_write_once_node.cpp,sha256=1b5dz4pnfKs3wEMULAG7cmkTMF4Zy42aEPA7R3K1W9I,6535
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/src/test/test_yield.cpp,sha256=LihiWuGDX9uBefHm8sHqdgn3J1GM_-FTjtTn4F7PP6U,2157
prophet/stan_model/cmdstan-2.33.1/stan/lib/stan_math/lib/tbb_2020.3/third-party-programs.txt,sha256=1xSaraX7WFfeEyYNDscCwOkCnqzVen520pZywoBcuZM,15991
prophet/stan_model/prophet,sha256=vNCvvo9Byt3CC5SpPdgENvOCBZfmKiwyK0JYFbajxzI,2854448
prophet/stan_model/prophet.hpp,sha256=bWe5MP12WC58ZVcoU3prdwchMsjCFEWPQI-PHqBl_1U,63770
prophet/stan_model/prophet.stan,sha256=GsrhEiDwxc7yoQVX26z6A06dleW3etlj5HAE1aL8vZs,3634
prophet/stan_model/prophet_model.bin,sha256=vNCvvo9Byt3CC5SpPdgENvOCBZfmKiwyK0JYFbajxzI,2854448
prophet/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
prophet/tests/__pycache__/__init__.cpython-311.pyc,,
prophet/tests/__pycache__/conftest.cpython-311.pyc,,
prophet/tests/__pycache__/test_diagnostics.cpython-311.pyc,,
prophet/tests/__pycache__/test_prophet.cpython-311.pyc,,
prophet/tests/__pycache__/test_serialize.cpython-311.pyc,,
prophet/tests/__pycache__/test_utilities.cpython-311.pyc,,
prophet/tests/conftest.py,sha256=hW_ItwIOTx4SyPVz8bWvOXKUP_qGTu1SUiFTq-QGhCg,1874
prophet/tests/data.csv,sha256=yy-lUrzs5U8J4hGjGIJMbzQd8wDnHEeGZiCSuHhsYfw,8628
prophet/tests/data2.csv,sha256=wNhJ0BCNvB5G3zAnKiJgsitiGZe4XoFUlZH_B8KEiwE,21518
prophet/tests/data3.csv,sha256=J0ynT7U6aF83T1J7vJP6Mpu_zTJB3u89Mf8xQyNTT5Q,1615
prophet/tests/serialized_model_v0.6.1.dev0.json,sha256=3yQaLQSm9zW3B6zQq_ry2Z_jN2KzpwNsVanjkgyLjQE,7084
prophet/tests/serialized_model_v0.7.1.json,sha256=sdu7ASiv6xKnILBvQPvrvOiBQKjuslQnnBLEVCmhqK8,7511
prophet/tests/serialized_model_v1.0.1.json,sha256=GfNFqFGOB1CPkTd4YC3GbbDhC9S40DtG2hAt5p68hAA,7507
prophet/tests/test_diagnostics.py,sha256=cCzqUHTFAMXZvqKrHU-Mz5VZSLdZOpl_uO_93_6rKeM,16685
prophet/tests/test_prophet.py,sha256=mUqLDdjl7ZO4GadANsSnZlK-J_OFgMjN9MQSUQhyoyA,41388
prophet/tests/test_serialize.py,sha256=4eVG6UC03MLym1P63CVFRxi9EunPsBRDYJLNBo-8W9k,5518
prophet/tests/test_utilities.py,sha256=MOt-69lADocVyv4JRvzzL8oy1NV0sfNmCwZ3cE4F90M,1036
prophet/utilities.py,sha256=Op25_cv3-I-MudmB7zc2FFdx6uj0aEc3GrMxWVpDPMA,3620

View File

@ -0,0 +1,6 @@
Wheel-Version: 1.0
Generator: setuptools (80.9.0)
Root-Is-Purelib: false
Tag: py3-none-manylinux_2_17_x86_64
Tag: py3-none-manylinux2014_x86_64

View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) Facebook, Inc. and its affiliates.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@ -0,0 +1 @@
prophet