We shared this request example with FAB participants: url_qparams = { "limit": count, "offset": offset, "has_group": "false", "order_by": "-activity", "forecast_type": "binary", "project": tournament_id, "status": "open", "type": "forecast", "include_description": "true", } url = f"{api_info.base_url}/questions/" response = requests.get( url, headers={"Authorization": f"Token {api_info.token}"}, params=url_qparams )

But we don't want to support all these parameters, and the ones relevant are: - order_by - status - project - forecast_type - we ignore this, but assume it's binary - FAB only supports binary for now.

GET /api2/questions/?format=api&offset=5420
HTTP 200 OK
Allow: GET, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 6411,
    "next": "http://www.metaculus.com/api2/questions/?format=api&limit=20&offset=5440",
    "previous": "http://www.metaculus.com/api2/questions/?format=api&limit=20&offset=5400",
    "results": [
        {
            "id": 3918,
            "title": "Will the Emergency Telework Act (S.3561) become law by 4/25/20?",
            "short_title": "emergency telework act become law?",
            "url_title": "emergency telework act become law?",
            "slug": "emergency-telework-act-become-law",
            "author_id": 112004,
            "author_username": "ought",
            "coauthors": [],
            "created_at": "2020-03-25T17:13:06.585446Z",
            "published_at": "2020-03-28T23:00:00Z",
            "edited_at": "2025-09-05T17:29:22.841406Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-28T23:00:00Z",
            "comment_count": 10,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2020-04-20T06:59:00Z",
            "scheduled_close_time": "2020-04-20T06:59:00Z",
            "scheduled_resolve_time": "2020-04-26T16:06:00Z",
            "actual_resolve_time": "2020-04-26T16:06:00Z",
            "open_time": "2020-03-28T23:00:00Z",
            "nr_forecasters": 67,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32596,
                        "name": "2020 Leaderboard",
                        "slug": "2020_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "topic": [
                    {
                        "id": 15865,
                        "name": "Health & Pandemics",
                        "slug": "biosecurity",
                        "emoji": "🧬",
                        "type": "topic"
                    }
                ],
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "question_series": [
                    {
                        "id": 3186,
                        "type": "question_series",
                        "name": "Li Wenliang Forecasting Tournament",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": "2020-02-17T16:40:10.701000Z",
                        "close_date": "2020-06-17T15:40:10.701000Z",
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2024-05-09T15:40:10.738753Z",
                        "edited_at": "2024-05-09T15:40:10.738759Z",
                        "score_type": "peer_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 3186,
                    "type": "question_series",
                    "name": "Li Wenliang Forecasting Tournament",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": "2020-02-17T16:40:10.701000Z",
                    "close_date": "2020-06-17T15:40:10.701000Z",
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2024-05-09T15:40:10.738753Z",
                    "edited_at": "2024-05-09T15:40:10.738759Z",
                    "score_type": "peer_tournament",
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3688,
                        "name": "Law",
                        "slug": "law",
                        "emoji": "βš–οΈ",
                        "description": "Law",
                        "type": "category"
                    },
                    {
                        "id": 3691,
                        "name": "Health & Pandemics",
                        "slug": "health-pandemics",
                        "emoji": "🦠",
                        "description": "Health & Pandemics",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 3918,
                "title": "Will the Emergency Telework Act (S.3561) become law by 4/25/20?",
                "created_at": "2020-03-25T17:13:06.585446Z",
                "open_time": "2020-03-28T23:00:00Z",
                "cp_reveal_time": "2020-03-29T22:50:51.309658Z",
                "spot_scoring_time": "2020-03-29T22:50:51.309658Z",
                "scheduled_resolve_time": "2020-04-26T16:06:00Z",
                "actual_resolve_time": "2020-04-26T16:06:00Z",
                "resolution_set_time": "2020-04-26T16:06:00Z",
                "scheduled_close_time": "2020-04-20T06:59:00Z",
                "actual_close_time": "2020-04-20T06:59:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "resolved",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": "no",
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "On Sunday, March 22, 2020, Senators Chris Van Hollen, D-Md.; James Lankford, R-Okla.; and Kyrsten Sinema, D-Ariz., introduced the Emergency Telework Act ([S. 3561](https://www.congress.gov/bill/116th-congress/senate-bill/3561)) \n\nIn its proposed form, the bill \n\n- grants all federal workers with telework agreements the ability to work remotely full time during the coronavirus outbreak\n- evaluates whether to make telework available to those who currently are not eligible to do so\n- requires federal agencies to continue to offer full time telework to employees so long as there is a risk of community spread of COVID-19\n- requires agencies to extend telework to high-risk employees and to workers in high-risk areas\n- requires the administration to develop a plan to maximize telework in preparation for the possibility of a future public health emergency ([Source](https://www.govexec.com/management/2020/03/bipartisan-legislation-would-direct-agencies-allow-full-time-telework/164018/))",
                "resolution_criteria": "This questions resolves as true if all of the following are true by or on 4/25/20:\n\n- Either at least 3 reputable news sources or a government official publicly state that\n    - The bill passes in the Senate and the House and\n    - The president signs the bill\n\n- And / or\n    - The bill is marked as β€œBecame Law” [here.](https://www.congress.gov/bill/116th-congress/senate-bill/3561/all-info?r=1&s=4)",
                "fine_print": "",
                "post_id": 3918,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1587359733.577314,
                                "end_time": null,
                                "forecaster_count": 67,
                                "interval_lower_bounds": [
                                    0.01
                                ],
                                "centers": [
                                    0.03
                                ],
                                "interval_upper_bounds": [
                                    0.06053181818181818
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1587359733.577314,
                            "end_time": null,
                            "forecaster_count": 67,
                            "interval_lower_bounds": [
                                0.01
                            ],
                            "centers": [
                                0.03
                            ],
                            "interval_upper_bounds": [
                                0.06053181818181818
                            ],
                            "forecast_values": [
                                0.97,
                                0.03
                            ],
                            "means": [
                                0.0423565421682063
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    5.4007674463122095,
                                    1.3356789156372142,
                                    1.6910706643330742,
                                    0.3781815753773565,
                                    1.9177198606116248,
                                    1.1603476120073735,
                                    1.2886232815122391,
                                    0.8397083757339646,
                                    0.0,
                                    0.2613409583737896,
                                    0.0,
                                    0.09495037644869721,
                                    0.0,
                                    0.0,
                                    0.10338731650712608,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.007683132160872665,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.250074384442846,
                                    0.0,
                                    0.12213964696863193,
                                    0.0,
                                    0.0,
                                    0.003928092025013086,
                                    0.0,
                                    0.0020593749349257107,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.005597961463592589,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.003228095225742652,
                                    0.0070482942381101905,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0026077048968387137,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 5.041307060685064,
                            "coverage": 0.9999019415295753,
                            "baseline_score": 62.55503809760302,
                            "spot_peer_score": 3.548173444118735,
                            "peer_archived_score": 5.041307060685064,
                            "baseline_archived_score": 62.55503809760302,
                            "spot_peer_archived_score": 3.548173444118735
                        },
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1587359733.839717,
                                "end_time": null,
                                "forecaster_count": 67,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1587359733.839717,
                            "end_time": null,
                            "forecaster_count": 67,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.9835042833015604,
                                0.0164957166984396
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 3,
                "user_vote": null
            },
            "forecasts_count": 247,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": "On Sunday, March 22, 2020, Senators Chris Van Hollen, D-Md.; James Lankford, R-Okla.; and Kyrsten Sinema, D-Ariz., introduced the Emergency Telework Act ([S. 3561](https://www.congress.gov/bill/116th-congress/senate-bill/3561)) \n\nIn its proposed form, the bill \n\n- grants all federal workers with telework agreements the ability to work remotely full time during the coronavirus outbreak\n- evaluates whether to make telework available to those who currently are not eligible to do so\n- requires federal agencies to continue to offer full time telework to employees so long as there is a risk of community spread of COVID-19\n- requires agencies to extend telework to high-risk employees and to workers in high-risk areas\n- requires the administration to develop a plan to maximize telework in preparation for the possibility of a future public health emergency ([Source](https://www.govexec.com/management/2020/03/bipartisan-legislation-would-direct-agencies-allow-full-time-telework/164018/))"
        },
        {
            "id": 3912,
            "title": "Will a recession cause \"suicides by the thousands\"?",
            "short_title": "Will a recession cause \"suicide by the thousands\"?",
            "url_title": "Will a recession cause \"suicide by the thousands\"?",
            "slug": "will-a-recession-cause-suicide-by-the-thousands",
            "author_id": 106142,
            "author_username": "AABoyles",
            "coauthors": [],
            "created_at": "2020-03-24T19:44:25.860466Z",
            "published_at": "2020-03-28T23:00:00Z",
            "edited_at": "2025-09-05T17:29:21.972293Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-28T23:00:00Z",
            "comment_count": 70,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2021-01-01T04:59:00Z",
            "scheduled_close_time": "2021-01-01T04:59:00Z",
            "scheduled_resolve_time": "2022-05-21T02:12:00Z",
            "actual_resolve_time": "2022-05-21T02:12:00Z",
            "open_time": "2020-03-28T23:00:00Z",
            "nr_forecasters": 191,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32602,
                        "name": "2016-2025 Leaderboard",
                        "slug": "2016_2025_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": null,
                    "user_permission": "forecaster",
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-07-18T17:28:18.838588Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3698,
                        "name": "Economy & Business",
                        "slug": "economy-business",
                        "emoji": "πŸ’Ό",
                        "description": "Economy & Business",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 3912,
                "title": "Will a recession cause \"suicides by the thousands\"?",
                "created_at": "2020-03-24T19:44:25.860466Z",
                "open_time": "2020-03-28T23:00:00Z",
                "cp_reveal_time": "2020-03-30T02:31:14.126379Z",
                "spot_scoring_time": "2020-03-30T02:31:14.126379Z",
                "scheduled_resolve_time": "2022-05-21T02:12:00Z",
                "actual_resolve_time": "2022-05-21T02:12:00Z",
                "resolution_set_time": "2022-05-21T02:12:00Z",
                "scheduled_close_time": "2021-01-01T04:59:00Z",
                "actual_close_time": "2021-01-01T04:59:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "resolved",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": "no",
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "",
                "resolution_criteria": "In a Fox News town hall on 2020-03-24, President Donald Trump predicted that a recession in the US would cause [\"suicides by the thousands.\"](https://www.foxnews.com/politics/trump-says-u-s-will-have-suicides-by-the-thousands-if-economic-slowdown-lasts-too-long) Let's see if he's right!\n\n[CDC's Wonder database](https://wonder.cdc.gov/controller/saved/D76/D79F299) gives us their annual count of deaths-by-suicide. From this, we can perform a [simple linear regression](https://docs.google.com/spreadsheets/d/1G-ekOYSznqpXvMWxxVWHS7jj0lD-zivfwKHBJBF7qCQ/edit?usp=sharing) to see that the number of suicides is increasing by roughly 1012 annually. The last year for which data are available (2018) had 48,312 suicides. Accordingly, we might predict that there were roughly 49,324 in 2019 and there would be around 50,336 in a business-as-usual 2020 scenario. Thus, to judge the President's prediction, let's see if there are at least 1000 suicides more than that.\n\n**If the US experiences a recession in 2020, will the number of suicides in the US in 2020 exceed 51,336?**\n\nFor purposes of this question:\n\n* A *recession* will be defined as two consecutive quarters of Negative GDP growth for the United States. \n* If the US does not experience a recession, this question resolves ambiguously.\n* The number of suicides will be the number reported by the [CDC's Wonder database](https://wonder.cdc.gov/), or by a press release or other official publication by the [National Center for Health Statistics](https://www.cdc.gov/nchs/pressroom/default.htm) reporting all deaths classified as any of [ICD10 codes X60-X84 (Intentional self-harm)](https://apps.who.int/classifications/apps/icd/icd10online2003/fr-icd.htm?gx60.htm+) If the NCHS goes defunct without a clear successor before publishing this data, the question resolves ambiguously.",
                "fine_print": "",
                "post_id": 3912,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1609470254.944625,
                                "end_time": null,
                                "forecaster_count": 191,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1609470254.944625,
                            "end_time": null,
                            "forecaster_count": 191,
                            "interval_lower_bounds": [
                                0.3
                            ],
                            "centers": [
                                0.4
                            ],
                            "interval_upper_bounds": [
                                0.6
                            ],
                            "forecast_values": [
                                0.6,
                                0.4
                            ],
                            "means": [
                                0.4421238329148197
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.6164815839789717,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.18343052232734736,
                                    0.0,
                                    0.5747754709986945,
                                    8.712741189715199e-05,
                                    0.0,
                                    0.39212436401735723,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.22504678723071356,
                                    0.9644221078504736,
                                    0.8258065333012021,
                                    0.0,
                                    0.0,
                                    0.2751852216007391,
                                    0.0,
                                    2.1290311256560486,
                                    0.0,
                                    0.0,
                                    0.003358581534649573,
                                    0.0,
                                    1.9682596540613497,
                                    0.0,
                                    0.3627554053774,
                                    1.1731297726626355,
                                    0.0,
                                    0.06325276141532174,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.34884428669149253,
                                    2.976043452120612,
                                    4.093699806227735e-06,
                                    0.0,
                                    0.31000578499225195,
                                    0.0,
                                    0.11785124239663577,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.8034788211880224,
                                    0.7940773602258221,
                                    1.0085591937808576,
                                    0.10149838759251988,
                                    0.0,
                                    0.40135677712781515,
                                    1.2837800937206723,
                                    0.14934906186173402,
                                    0.4081521459405921,
                                    0.0,
                                    0.20751948257933453,
                                    1.5580886321857461,
                                    0.0007668356325582048,
                                    0.19902465872476457,
                                    0.46581255689245654,
                                    0.6121958910471723,
                                    1.2995236660064104,
                                    1.0593255997331084,
                                    0.004456560481852505,
                                    0.07801553608880951,
                                    0.0,
                                    0.34564597033785177,
                                    0.0,
                                    0.006439460126342894,
                                    2.7053616409628293e-06,
                                    0.027033227245701938,
                                    0.0697795112598107,
                                    0.0071267862396832155,
                                    0.0025466367520395952,
                                    0.002020314967495334,
                                    0.1411225992827279,
                                    0.9649600384108741,
                                    0.0,
                                    0.0,
                                    0.023743976054756137,
                                    0.0,
                                    0.09538537571799782,
                                    0.04431646462863906,
                                    0.013771655835801205,
                                    0.0,
                                    0.0,
                                    0.3133828367264877,
                                    0.004819941023192409,
                                    0.0015464307695440835,
                                    0.011669538583721316,
                                    0.08881634455014568,
                                    0.003231667316023181,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0313273828670502
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 3.146538652404316,
                            "coverage": 0.9996162013535331,
                            "baseline_score": -128.5291624574245,
                            "spot_peer_score": -46.84581784201126,
                            "peer_archived_score": 3.146538652404316,
                            "baseline_archived_score": -128.5291624574245,
                            "spot_peer_archived_score": -46.84581784201126
                        },
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1609470255.060723,
                                "end_time": null,
                                "forecaster_count": 191,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1609470255.060723,
                            "end_time": null,
                            "forecaster_count": 191,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.39559034223087763,
                                0.6044096577691224
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 19,
                "user_vote": null
            },
            "forecasts_count": 560,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 3900,
            "title": "Will the US see a massive riot in 2020?",
            "short_title": "Large scale rioting in US in 2020?",
            "url_title": "Large scale rioting in US in 2020?",
            "slug": "large-scale-rioting-in-us-in-2020",
            "author_id": 101465,
            "author_username": "Jgalt",
            "coauthors": [],
            "created_at": "2020-03-22T05:04:12.273072Z",
            "published_at": "2020-03-31T07:00:00Z",
            "edited_at": "2025-09-05T17:28:51.741155Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-31T07:00:00Z",
            "comment_count": 311,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2020-08-30T23:00:00Z",
            "scheduled_close_time": "2020-08-30T23:00:00Z",
            "scheduled_resolve_time": "2021-01-01T16:40:00Z",
            "actual_resolve_time": "2021-01-01T16:40:00Z",
            "open_time": "2020-03-31T07:00:00Z",
            "nr_forecasters": 422,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32596,
                        "name": "2020 Leaderboard",
                        "slug": "2020_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "topic": [
                    {
                        "id": 15865,
                        "name": "Health & Pandemics",
                        "slug": "biosecurity",
                        "emoji": "🧬",
                        "type": "topic"
                    }
                ],
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": null,
                    "user_permission": "forecaster",
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-07-18T17:28:18.838588Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3698,
                        "name": "Economy & Business",
                        "slug": "economy-business",
                        "emoji": "πŸ’Ό",
                        "description": "Economy & Business",
                        "type": "category"
                    },
                    {
                        "id": 3689,
                        "name": "Politics",
                        "slug": "politics",
                        "emoji": "πŸ›οΈ",
                        "description": "Politics",
                        "type": "category"
                    },
                    {
                        "id": 3691,
                        "name": "Health & Pandemics",
                        "slug": "health-pandemics",
                        "emoji": "🦠",
                        "description": "Health & Pandemics",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 3900,
                "title": "Will the US see a massive riot in 2020?",
                "created_at": "2020-03-22T05:04:12.273072Z",
                "open_time": "2020-03-31T07:00:00Z",
                "cp_reveal_time": "2020-03-31T19:25:07.700135Z",
                "spot_scoring_time": "2020-03-31T19:25:07.700135Z",
                "scheduled_resolve_time": "2021-01-01T16:40:00Z",
                "actual_resolve_time": "2021-01-01T16:40:00Z",
                "resolution_set_time": "2021-01-01T16:40:00Z",
                "scheduled_close_time": "2020-08-30T23:00:00Z",
                "actual_close_time": "2020-08-30T23:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "resolved",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": "no",
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "",
                "resolution_criteria": "[Incidents of civil unrest are not terribly uncommon in the United States](https://en.wikipedia.org/wiki/List_of_incidents_of_civil_unrest_in_the_United_States), but large-scale rioting is quite rare. One of the most severe incidents in recent history was the [1992 Los Angeles riots](https://en.wikipedia.org/wiki/1992_Los_Angeles_riots), during which more than 60 people were killed, more than 2,350 people were injured, and more than 12,000 people were arrested. Property damage was estimated at more than $1bn. \n\nAs of March 2020, the US is affected by the ongoing [COVID-19 pandemic.](https://en.wikipedia.org/wiki/2019%E2%80%9320_coronavirus_pandemic) Several large population centers have been [effectively shut down as a result of government orders that attempt to slow the spread of the pandemic.](https://www.wsj.com/articles/a-state-by-state-guide-to-coronavirus-lockdowns-11584749351)\n\nAs a result of the pandemic and associated economic shutdowns, [incidents of panic buying have been reported,](https://www.nytimes.com/2020/03/13/nyregion/coronavirus-panic-buying.html) and [dire predictions of severe economic contraction have been made.](https://www.dailymail.co.uk/news/article-8135947/US-coronavirus-Goldman-Sachs-forecasts-staggering-24-drop-Q2-GDP.html) \n\nGiven the potential socio-economic impact of the pandemic, it may become increasingly difficult for many people to maintain their employment or other income source, and as of March 22 2020 it is unclear if the US government will offer all citizens a sufficient measure of economic support during the crisis to maintain the social order.\n\nThis question asks: **Will the United States experience an incident of a massive riot in 2020?**\n\nFor the purposes of this question, 'massive riot' is defined as an event of rioting or civil unrest in which any of the following conditions is met:\n\n> 1. At least 50 people die due to violence, either due to the actions of rioters or other civilians, or police, military, national guard, or other law enforcement or government agents. \n\n> 2. At least 10,000 people are arrested by police, military, national guard, or other law enforcement or government agents.\n\n> 3. Property damages are credibly estimated at $1 billion or more. This estimate may come from either the local government of the locality in which the incident takes place, the state government, the federal government, or a major US news publication such as the New York Times, Washington Post, or major broadcast news networks.\n\nSuch events should take place in a 100km radius, and within 14 days. As an example, the LA riots would count, but rioting that is spread across all of California or that occurs in separate phases over a long time period would not count if no single incident met any of the above criteria.\n\nResolution should cite a government statement or credible news reports that indicate that any of the above conditions have been met by an event of rioting.\n\n*ETA 2020-06-03: For homicides to count toward the overall death toll, the deaths have to occur within the context of an event of rioting or civil unrest; deaths from a generic mass shooting or a series of homicides that occur outside of the context of a riot shouldn't count towards the 50.*",
                "fine_print": "",
                "post_id": 3900,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1598826924.636792,
                                "end_time": null,
                                "forecaster_count": 420,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.32
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1598826924.636792,
                            "end_time": null,
                            "forecaster_count": 420,
                            "interval_lower_bounds": [
                                0.15
                            ],
                            "centers": [
                                0.25
                            ],
                            "interval_upper_bounds": [
                                0.32
                            ],
                            "forecast_values": [
                                0.75,
                                0.25
                            ],
                            "means": [
                                0.2604728389802953
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    1.5717148805415122,
                                    0.0,
                                    0.33232437164406864,
                                    0.14680007794552857,
                                    0.48697576839416823,
                                    0.3971249041749574,
                                    0.021493489815764613,
                                    0.09612038877404147,
                                    0.9122900897192698,
                                    0.9168964701775295,
                                    0.19142555078982432,
                                    1.2206540855022214,
                                    0.03129268431758612,
                                    2.1373014364981864,
                                    2.6564393471317826,
                                    0.122052128617965,
                                    0.4294486908207463,
                                    1.6067926713916973,
                                    0.49520519608604074,
                                    1.496322062868923,
                                    1.1457138536411051,
                                    0.5694004162578892,
                                    0.8506753545467811,
                                    0.24289707049640202,
                                    4.044355176936598,
                                    0.6379565394610258,
                                    1.6713543911467252,
                                    0.7969433585206838,
                                    0.0,
                                    2.6426884630118064,
                                    1.0511757791868988,
                                    1.1462495731598494,
                                    1.0234970585278758,
                                    0.0017751291985840202,
                                    0.32733094369404336,
                                    0.9394617354199065,
                                    0.08142787100021279,
                                    1.613356296233833,
                                    9.643237471644182e-05,
                                    1.5137072101008582,
                                    2.150753568829918e-05,
                                    0.0002981221065290196,
                                    0.007672019583494331,
                                    0.0007848684544614481,
                                    0.353011109165885,
                                    0.0020450978843314423,
                                    0.0,
                                    0.11670492616111272,
                                    0.2854514801155865,
                                    0.005317395031598354,
                                    0.05595187952771708,
                                    0.060682767407073526,
                                    0.002636105548030832,
                                    0.00020777429184127064,
                                    0.9041182815302455,
                                    0.04696720166650239,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.35225192601240535,
                                    0.0,
                                    5.467872492513506e-05,
                                    1.5730321540711713e-05,
                                    0.9109207324025185,
                                    0.005707272725951628,
                                    0.0005354408481742624,
                                    0.0,
                                    0.0005782543573260941,
                                    2.5532884890859415e-06,
                                    0.005921958352375254,
                                    8.244616479956165e-05,
                                    0.0,
                                    0.034161483272519194,
                                    0.34935101062581697,
                                    0.05393509243646673,
                                    0.0,
                                    0.0,
                                    0.0,
                                    5.20265850438093e-05,
                                    0.14483273423266368,
                                    0.0,
                                    0.10880101131573257,
                                    6.269381838558915e-05,
                                    1.2694305198575948e-05,
                                    0.08204090824632627,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0003341433198695453,
                                    0.00025760373879300384,
                                    0.006510905764039394,
                                    0.0,
                                    0.0,
                                    0.018850989180216608,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.003954399019470759
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 19.133402157311643,
                            "coverage": 0.9998287331416098,
                            "baseline_score": 61.08557256103801,
                            "spot_peer_score": -4.999211800418918,
                            "peer_archived_score": 19.133402157311643,
                            "baseline_archived_score": 61.08557256103801,
                            "spot_peer_archived_score": -4.999211800418918
                        },
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1598826924.784393,
                                "end_time": null,
                                "forecaster_count": 420,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1598826924.784393,
                            "end_time": null,
                            "forecaster_count": 420,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.8699752471536414,
                                0.13002475284635862
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 61,
                "user_vote": null
            },
            "forecasts_count": 1932,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 3897,
            "title": "Will the Chinese police or military intervene in Hong Kong before Summer 2020?",
            "short_title": "",
            "url_title": "",
            "slug": "will-the-chinese-police-or-military-intervene-in-hong-kong-before-summer-2020",
            "author_id": 100345,
            "author_username": "EvanHarper",
            "coauthors": [],
            "created_at": "2020-03-21T15:16:44.958872Z",
            "published_at": "2020-03-24T23:00:00Z",
            "edited_at": "2025-09-05T17:29:08.324729Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-24T23:00:00Z",
            "comment_count": 20,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2020-06-20T16:00:00Z",
            "scheduled_close_time": "2020-06-20T16:00:00Z",
            "scheduled_resolve_time": "2020-06-28T06:06:00Z",
            "actual_resolve_time": "2020-06-28T06:06:00Z",
            "open_time": "2020-03-24T23:00:00Z",
            "nr_forecasters": 99,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32596,
                        "name": "2020 Leaderboard",
                        "slug": "2020_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": null,
                    "user_permission": "forecaster",
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-07-18T17:28:18.838588Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3689,
                        "name": "Politics",
                        "slug": "politics",
                        "emoji": "πŸ›οΈ",
                        "description": "Politics",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 3897,
                "title": "Will the Chinese police or military intervene in Hong Kong before Summer 2020?",
                "created_at": "2020-03-21T15:16:44.958872Z",
                "open_time": "2020-03-24T23:00:00Z",
                "cp_reveal_time": "2020-03-26T14:07:18.376045Z",
                "spot_scoring_time": "2020-03-26T14:07:18.376045Z",
                "scheduled_resolve_time": "2020-06-28T06:06:00Z",
                "actual_resolve_time": "2020-06-28T06:06:00Z",
                "resolution_set_time": "2020-06-28T06:06:00Z",
                "scheduled_close_time": "2020-06-20T16:00:00Z",
                "actual_close_time": "2020-06-20T16:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "resolved",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": "no",
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "",
                "resolution_criteria": "**Will either PLA, PAP, or mainland police personnel physically intervene to oppose protesters in Hong Kong before 21 June 2020?**\n\nPositive resolution will be by either:\n\n* The Chinese or Hong Kong government (or any such government affiliated body) declaring this has happened.\n\n* A UN Security Council permanent member government declaring this has happened.\n\n* Overwhelming media report this has happened (at least 5 separate first hand accounts, preferably with photographic evidence).\n\n\nResolution details:\n\n* Physical intervention is taken here to mean that at least some personnel of the Chinese police or PLA or PAP is involved in the controlling, dispersing, or arresting people who are involved in a riot, demonstration, or protest in Hong Kong. These personnel may or may not be requested to assist by Hong Kong government, or the Hong Kong police.\n\n* The question resolves negatively if evidence in accordance with the above three criteria of the Chinese police or military intervening are not found before the end of the 27th of June, 2020.\n\n* Positive resolution retroactively closes the question 24 hours before the events.\n\nThis question was already asked thrice: for [August,](https://www.metaculus.com/questions/2985/will-the-chinese-police-or-military-intervene-in-hong-kong-in-august-2019/) [September,](https://www.metaculus.com/questions/3057/will-the-chinese-police-or-military-intervene-in-hong-kong-in-september-2019/) and [the remainder of 2019,](https://www.metaculus.com/questions/3358/will-the-chinese-police-or-military-intervene-in-hong-kong-in-2019/) and resolved negatively all three times.",
                "fine_print": "",
                "post_id": 3897,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1592665759.478526,
                                "end_time": null,
                                "forecaster_count": 99,
                                "interval_lower_bounds": [
                                    0.02
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1592665759.478526,
                            "end_time": null,
                            "forecaster_count": 99,
                            "interval_lower_bounds": [
                                0.02
                            ],
                            "centers": [
                                0.05
                            ],
                            "interval_upper_bounds": [
                                0.12
                            ],
                            "forecast_values": [
                                0.95,
                                0.05
                            ],
                            "means": [
                                0.0991926243505732
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    3.963278882823672,
                                    0.9401931167989722,
                                    0.5842220937924731,
                                    1.2490321149535406,
                                    3.077284852342895,
                                    0.6111007624785799,
                                    0.2311720600947407,
                                    1.189381808257249,
                                    1.1504855306150634,
                                    0.724335335640309,
                                    0.047882875137388904,
                                    0.09071433046812695,
                                    0.0,
                                    0.5643216116674283,
                                    1.2464963938203824,
                                    0.00035270647198307447,
                                    0.16440477703924306,
                                    0.3307037735328208,
                                    0.18201555658236956,
                                    0.03034746836862421,
                                    0.1514322993678171,
                                    0.0,
                                    0.039098528828555634,
                                    0.0013604687921634723,
                                    0.014466109878335234,
                                    0.0,
                                    0.03362666764955342,
                                    0.19335053225088217,
                                    0.0,
                                    0.3482078349451797,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0029475860096120354,
                                    1.0,
                                    0.0,
                                    0.035322769533480014,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0009587555935714907,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0001963403728513482,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.20530181675532808
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 6.650899627219978,
                            "coverage": 0.9986883759774209,
                            "baseline_score": 76.02657336238254,
                            "spot_peer_score": 16.401800923785846,
                            "peer_archived_score": 6.650899627219978,
                            "baseline_archived_score": 76.02657336238254,
                            "spot_peer_archived_score": 16.401800923785846
                        },
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1592665759.703034,
                                "end_time": null,
                                "forecaster_count": 99,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1592665759.703034,
                            "end_time": null,
                            "forecaster_count": 99,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.92057065877272,
                                0.07942934122728
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 8,
                "user_vote": null
            },
            "forecasts_count": 270,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 3896,
            "title": "Will most UK schools reopen in time for the 2020-2021 academic year?",
            "short_title": "Will most UK schools re-open for 2020-2021 academic year?",
            "url_title": "Will most UK schools re-open for 2020-2021 academic year?",
            "slug": "will-most-uk-schools-re-open-for-2020-2021-academic-year",
            "author_id": 111911,
            "author_username": "alexrjl",
            "coauthors": [],
            "created_at": "2020-03-21T14:08:23.214895Z",
            "published_at": "2020-03-30T07:00:00Z",
            "edited_at": "2025-09-05T17:29:03.137600Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-30T07:00:00Z",
            "comment_count": 33,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2020-08-06T23:00:00Z",
            "scheduled_close_time": "2020-08-06T23:00:00Z",
            "scheduled_resolve_time": "2020-09-11T09:52:00Z",
            "actual_resolve_time": "2020-09-11T09:52:00Z",
            "open_time": "2020-03-30T07:00:00Z",
            "nr_forecasters": 131,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32596,
                        "name": "2020 Leaderboard",
                        "slug": "2020_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "topic": [
                    {
                        "id": 15865,
                        "name": "Health & Pandemics",
                        "slug": "biosecurity",
                        "emoji": "🧬",
                        "type": "topic"
                    }
                ],
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": null,
                    "user_permission": "forecaster",
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-07-18T17:28:18.838588Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3691,
                        "name": "Health & Pandemics",
                        "slug": "health-pandemics",
                        "emoji": "🦠",
                        "description": "Health & Pandemics",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 3896,
                "title": "Will most UK schools reopen in time for the 2020-2021 academic year?",
                "created_at": "2020-03-21T14:08:23.214895Z",
                "open_time": "2020-03-30T07:00:00Z",
                "cp_reveal_time": "2020-04-01T07:00:00Z",
                "spot_scoring_time": "2020-04-01T07:00:00Z",
                "scheduled_resolve_time": "2020-09-11T09:52:00Z",
                "actual_resolve_time": "2020-09-11T09:52:00Z",
                "resolution_set_time": "2020-09-11T09:52:00Z",
                "scheduled_close_time": "2020-08-06T23:00:00Z",
                "actual_close_time": "2020-08-06T23:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "resolved",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": "yes",
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "",
                "resolution_criteria": "The 2019–20 coronavirus outbreak is an ongoing outbreak of coronavirus disease 2019 (COVID-19), that has spread to multiple world regions. It is caused by the SARS-CoV-2 virus, first identified in December 2019 in Wuhan, China.\n\nA number of European nations, including Spain, France, Italy, and the UK, have announced that all schools are to be closed in an attempt to curb COVID-19 infections.\n\nIn the United Kingdom, the school year is divided into three terms. The Autumn Term, which is the first of the school year, runs from early September to late December. \n\nThis question asks whether the United Kingdom will reopen its schools in time for a \"normal\" start to the Autumn Term of the year 2020. The UK had over 3900 cases as of March 20, when an announcement was made that, in addition to schools, pubs, bars, clubs and restaurants would be closed. Schools are currently running in an extremely limited capacity to provide childcare for essential workers, and care for vulnerable children.\n\n\nWill most UK schools reopen in time for the 2020-2021 academic year?\n\nQuestion resolves positively if >50% of UK schools (including primary, secondary, and sixth-form colleges) are open for physical, in-person teaching for the majority of pupils, on the 7th of September 2020 (the first Monday). \n\nResolution is by credible news reports or by reports by UK government agencies. % of schools is taken here by number of schools, not by number of students.",
                "fine_print": "",
                "post_id": 3896,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1596748741.190478,
                                "end_time": null,
                                "forecaster_count": 131,
                                "interval_lower_bounds": [
                                    0.72
                                ],
                                "centers": [
                                    0.79
                                ],
                                "interval_upper_bounds": [
                                    0.83
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1596748741.190478,
                            "end_time": null,
                            "forecaster_count": 131,
                            "interval_lower_bounds": [
                                0.72
                            ],
                            "centers": [
                                0.79
                            ],
                            "interval_upper_bounds": [
                                0.83
                            ],
                            "forecast_values": [
                                0.20999999999999996,
                                0.79
                            ],
                            "means": [
                                0.7651771239494131
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.055094255146412904,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.08198235545413655,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    2.9078161127327503e-05,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.06921354109987254,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.04079026246933662,
                                    0.13378222198236295,
                                    0.0046879466262333075,
                                    0.0,
                                    0.031888075678352786,
                                    0.010918246352584246,
                                    0.30162451098692644,
                                    0.0,
                                    0.004388669833650282,
                                    0.0338165512577442,
                                    0.0,
                                    0.008570973200111354,
                                    0.005513668191355406,
                                    0.030712431463350457,
                                    2.533411164007652,
                                    0.38453696053465775,
                                    0.00010446389914438512,
                                    0.08249052846289691,
                                    0.0,
                                    0.8585169473381299,
                                    0.2142575702071238,
                                    0.8404415546304211,
                                    0.883567071670298,
                                    0.46373366461614546,
                                    1.3699209875120082,
                                    0.3488133558429181,
                                    1.7705547758449123,
                                    0.05823912639937316,
                                    1.5279323322340113,
                                    2.3860500005627343,
                                    0.4434853526951893,
                                    0.1482549764840678,
                                    0.924330210526341,
                                    0.12025460335737413,
                                    2.9681904855863466,
                                    1.208093446498324,
                                    0.5331943346787654,
                                    0.0,
                                    0.0,
                                    0.2056329533215526,
                                    0.006458237024698661,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.07325840629729641,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.2279636636733946
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 15.52627935958201,
                            "coverage": 0.999171689629652,
                            "baseline_score": 55.21041861881307,
                            "spot_peer_score": 19.02713496804307,
                            "peer_archived_score": 15.52627935958201,
                            "baseline_archived_score": 55.21041861881307,
                            "spot_peer_archived_score": 19.02713496804307
                        },
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1596748741.239078,
                                "end_time": null,
                                "forecaster_count": 131,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1596748741.239078,
                            "end_time": null,
                            "forecaster_count": 131,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.13796654661971497,
                                0.862033453380285
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 15,
                "user_vote": null
            },
            "forecasts_count": 342,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 3895,
            "title": "Will remdesivir be administered to at least 50,000 patients with SARS-CoV-2 infections in the US, UK, EU member states, and Japan, by the end of 2020?",
            "short_title": "Remdesivir administered to 50K COVID-19 patients in 2020?",
            "url_title": "Remdesivir administered to 50K COVID-19 patients in 2020?",
            "slug": "remdesivir-administered-to-50k-covid-19-patients-in-2020",
            "author_id": 104761,
            "author_username": "Tamay",
            "coauthors": [],
            "created_at": "2020-03-21T11:27:45.071686Z",
            "published_at": "2020-03-24T23:00:00Z",
            "edited_at": "2025-09-05T17:28:57.038014Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-24T23:00:00Z",
            "comment_count": 58,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2020-08-31T22:00:00Z",
            "scheduled_close_time": "2020-08-31T22:00:00Z",
            "scheduled_resolve_time": "2021-01-02T16:31:00Z",
            "actual_resolve_time": "2021-01-02T16:31:00Z",
            "open_time": "2020-03-24T23:00:00Z",
            "nr_forecasters": 155,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32596,
                        "name": "2020 Leaderboard",
                        "slug": "2020_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "topic": [
                    {
                        "id": 15865,
                        "name": "Health & Pandemics",
                        "slug": "biosecurity",
                        "emoji": "🧬",
                        "type": "topic"
                    }
                ],
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": null,
                    "user_permission": "forecaster",
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-07-18T17:28:18.838588Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3691,
                        "name": "Health & Pandemics",
                        "slug": "health-pandemics",
                        "emoji": "🦠",
                        "description": "Health & Pandemics",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 3895,
                "title": "Will remdesivir be administered to at least 50,000 patients with SARS-CoV-2 infections in the US, UK, EU member states, and Japan, by the end of 2020?",
                "created_at": "2020-03-21T11:27:45.071686Z",
                "open_time": "2020-03-24T23:00:00Z",
                "cp_reveal_time": "2020-03-26T14:01:14.084131Z",
                "spot_scoring_time": "2020-03-26T14:01:14.084131Z",
                "scheduled_resolve_time": "2021-01-02T16:31:00Z",
                "actual_resolve_time": "2021-01-02T16:31:00Z",
                "resolution_set_time": "2021-01-02T16:31:00Z",
                "scheduled_close_time": "2020-08-31T22:00:00Z",
                "actual_close_time": "2020-08-31T22:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "resolved",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": "yes",
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "",
                "resolution_criteria": "Remdesivir is an investigational nucleotide analog with broad-spectrum antiviral activity. It is not approved anywhere globally for any use. \n\nAccording to its producer, [Gilead Sciences](https://www.gilead.com/purpose/advancing-global-health/covid-19):\n\n> Remdesivir has demonstrated in vitro and in vivo activity in animal models against the viral pathogens MERS and SARS, which are also coronaviruses and are structurally similar to COVID-19. The limited preclinical data on remdesivir in MERS and SARS indicate that remdesivir may have potential activity against COVID-19.\n\n\nFrom the [National Institutes of Health](https://www.nih.gov/news-events/news-releases/nih-clinical-trial-remdesivir-treat-covid-19-begins):\n\n> A randomized, controlled clinical trial to evaluate the safety and efficacy of the investigational antiviral remdesivir in hospitalized adults diagnosed with coronavirus disease 2019 (COVID-19) has begun at the University of Nebraska Medical Center (UNMC) in Omaha. The trial regulatory sponsor is the National Institute of Allergy and Infectious Diseases (NIAID), part of the National Institutes of Health. This is the first clinical trial in the United States to evaluate an experimental treatment for COVID-19, the respiratory disease first detected in December 2019 in Wuhan, Hubei Province, China.\n\n> β€œWe urgently need a safe and effective treatment for COVID-19. Although remdesivir has been administered to some patients with COVID-19, we do not have solid data to indicate it can improve clinical outcomes,” said NIAID Director and U.S. Coronavirus Task Force member Anthony S. Fauci, M.D. β€œA randomized, placebo-controlled trial is the gold standard for determining if an experimental treatment can benefit patients.”\n\n**Will remdesivir be administered to at least 50,000 patients with SARS-CoV-2 infections in the US, UK, EU member states, and Japan, by the end of 2020?**\n\nThis question resolves positively if before the end of 2020, medical publications or credible media sources indicate that remdesivir has be administered to at least 50,000 patients with SARS-CoV-2 infections in the US, UK, EU member states, and Japan.\n\nFor the purpose of this question, the process under which remdesivir is made available to patients does not matter. It may be administered under clinical trials, special access programs (such as Expanded Access or Compassionate Use programs), approved for widespread use or even self-administered.",
                "fine_print": "",
                "post_id": 3895,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1598906899.291815,
                                "end_time": null,
                                "forecaster_count": 155,
                                "interval_lower_bounds": [
                                    0.93
                                ],
                                "centers": [
                                    0.95
                                ],
                                "interval_upper_bounds": [
                                    0.99
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1598906899.291815,
                            "end_time": null,
                            "forecaster_count": 155,
                            "interval_lower_bounds": [
                                0.93
                            ],
                            "centers": [
                                0.95
                            ],
                            "interval_upper_bounds": [
                                0.99
                            ],
                            "forecast_values": [
                                0.050000000000000044,
                                0.95
                            ],
                            "means": [
                                0.9132407629581234
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.00905957648528038,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    5.5222046741725685e-05,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00018840507632565497,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0005814999930317822,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00023606800042354299,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    4.5381326177588396e-05,
                                    0.00010764864616803032,
                                    0.00010867911180292383,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00014467102129831795,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.3124774459380823,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0006420270736327521,
                                    0.0,
                                    0.0010813379867035272,
                                    0.0011878379990789283,
                                    0.224148063463382,
                                    0.032214657406779285,
                                    0.0,
                                    0.3210395036788053,
                                    1.0,
                                    0.6941442073881727,
                                    0.0,
                                    0.49531593201161467,
                                    0.0,
                                    0.0,
                                    0.6240532171952751,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0005789502228780376,
                                    0.07069750192662559,
                                    0.03174882386382158,
                                    0.0010259510579661425,
                                    0.9836427731959362,
                                    0.0,
                                    0.1527399108126976,
                                    0.022182506598527572,
                                    0.005737738577286699,
                                    0.03954345280505088,
                                    0.0,
                                    0.784760654942402,
                                    0.0,
                                    0.02218460126357242,
                                    0.7334154382638838,
                                    0.6372386094689213,
                                    6.0419749333702555,
                                    1.0342137863518992,
                                    2.4024093023202844,
                                    0.5788459371611678,
                                    6.1433785021834835
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 20.36661437398208,
                            "coverage": 0.9999777211286177,
                            "baseline_score": 76.41361855634466,
                            "spot_peer_score": -12.307162549743984,
                            "peer_archived_score": 20.36661437398208,
                            "baseline_archived_score": 76.41361855634466,
                            "spot_peer_archived_score": -12.307162549743984
                        },
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1598906899.331216,
                                "end_time": null,
                                "forecaster_count": 155,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1598906899.331216,
                            "end_time": null,
                            "forecaster_count": 155,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.029430931920039316,
                                0.9705690680799607
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 25,
                "user_vote": null
            },
            "forecasts_count": 512,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 3894,
            "title": "Will a US civilian intentionally be shot and killed by US military personnel acting in the line of duty on domestic soil before 2021?",
            "short_title": "",
            "url_title": "",
            "slug": "will-a-us-civilian-intentionally-be-shot-and-killed-by-us-military-personnel-acting-in-the-line-of-duty-on-domestic-soil-before-2021",
            "author_id": 100063,
            "author_username": "JaipalTuttle",
            "coauthors": [],
            "created_at": "2020-03-21T10:45:24.412065Z",
            "published_at": "2020-03-26T07:00:00Z",
            "edited_at": "2025-09-05T17:28:55.261197Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-26T07:00:00Z",
            "comment_count": 27,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2020-06-10T18:00:00Z",
            "scheduled_close_time": "2020-10-31T15:59:00Z",
            "scheduled_resolve_time": "2020-10-31T15:59:00Z",
            "actual_resolve_time": "2020-06-10T18:00:00Z",
            "open_time": "2020-03-26T07:00:00Z",
            "nr_forecasters": 87,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32596,
                        "name": "2020 Leaderboard",
                        "slug": "2020_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": null,
                    "user_permission": "forecaster",
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-07-18T17:28:18.838588Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                }
            },
            "question": {
                "id": 3894,
                "title": "Will a US civilian intentionally be shot and killed by US military personnel acting in the line of duty on domestic soil before 2021?",
                "created_at": "2020-03-21T10:45:24.412065Z",
                "open_time": "2020-03-26T07:00:00Z",
                "cp_reveal_time": "2020-03-28T07:00:00Z",
                "spot_scoring_time": "2020-03-28T07:00:00Z",
                "scheduled_resolve_time": "2020-10-31T15:59:00Z",
                "actual_resolve_time": "2020-06-10T18:00:00Z",
                "resolution_set_time": "2020-06-10T18:00:00Z",
                "scheduled_close_time": "2020-10-31T15:59:00Z",
                "actual_close_time": "2020-06-10T18:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "resolved",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": "yes",
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "",
                "resolution_criteria": "The United States is currently in a situation where residents of several states are being requested by authorities to shelter in place. At some point, the request may become an edict. People may disregard this command, and civil unrest may ensue.\n\nThe National Guard is already involved and the words \"martial law\" [have surfaced](https://www.militarytimes.com/news/your-military/2020/03/17/will-coronavirus-lead-to-martial-law/)\n\nQuestion: Before 2021, will at least one USA civilian in any of the 50 states be shot and killed by an active or reserve USA service member of the United States Armed Forces or State National guard. \n\nThe question is resolved if there is at least one verifiable report rendering the affirmative.",
                "fine_print": "",
                "post_id": 3894,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1591890074.18341,
                                "end_time": null,
                                "forecaster_count": 87,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.74
                                ],
                                "interval_upper_bounds": [
                                    0.81
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1591890074.18341,
                            "end_time": null,
                            "forecaster_count": 87,
                            "interval_lower_bounds": [
                                0.6
                            ],
                            "centers": [
                                0.74
                            ],
                            "interval_upper_bounds": [
                                0.81
                            ],
                            "forecast_values": [
                                0.26,
                                0.74
                            ],
                            "means": [
                                0.691686933080993
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.0,
                                    0.006953708882782987,
                                    0.0,
                                    0.0,
                                    0.0006572940643487771,
                                    0.0,
                                    0.006190506525619948,
                                    0.0008323054346231313,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.007279750594467208,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.02414290954929626,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.013674539156391184,
                                    0.0015050157310024152,
                                    0.00869677198714362,
                                    0.0037510417922525527,
                                    0.0,
                                    0.004277460841020688,
                                    0.0,
                                    0.0,
                                    0.00024180497307793418,
                                    0.09079275177630637,
                                    0.7639604023001783,
                                    0.0,
                                    0.8502476124313734,
                                    0.5435784905528189,
                                    0.002841914205169248,
                                    0.28220506123837086,
                                    0.010764005557900061,
                                    0.03030546686228458,
                                    0.0024522378510598753,
                                    0.011933573275951067,
                                    0.0,
                                    0.01606316316917346,
                                    0.12047939913999373,
                                    0.0,
                                    0.0,
                                    0.44538216531150254,
                                    0.0,
                                    0.0,
                                    0.18057556480703751,
                                    0.0,
                                    0.04230013294107466,
                                    0.7420869365198901,
                                    0.0032737217951857513,
                                    0.0,
                                    0.000365894509793429,
                                    0.17222022791443697,
                                    0.0,
                                    0.0,
                                    0.01940519925557897,
                                    0.0,
                                    0.32190708349055386,
                                    1.1768067502162716,
                                    0.6655859368747878,
                                    0.6091941950827959,
                                    0.0,
                                    1.0629235848735714,
                                    0.0,
                                    0.0,
                                    0.14790567107868602,
                                    2.2572982017551815,
                                    0.9946417108383578,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.5658638529573081,
                                    0.5506725579204483,
                                    0.24647936302692658,
                                    0.34390423146930293,
                                    0.0,
                                    0.0,
                                    0.14062315928166835,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.33919917683413425,
                                    1.5851599947642563,
                                    0.8977760800881471,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.8439573709369771,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 5.897815635359074,
                            "coverage": 0.3479912729438313,
                            "baseline_score": -26.582672191513943,
                            "spot_peer_score": 27.766326945229697,
                            "peer_archived_score": 5.897815635359074,
                            "baseline_archived_score": -26.582672191513943,
                            "spot_peer_archived_score": 27.766326945229697
                        },
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1591761644.123853,
                                "end_time": null,
                                "forecaster_count": 87,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1591761644.123853,
                            "end_time": null,
                            "forecaster_count": 87,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.42363178012330194,
                                0.5763682198766981
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 6,
                "user_vote": null
            },
            "forecasts_count": 205,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 3875,
            "title": "Will at least 9 of the 12 states hit hardest by COVID-19 in 2020 be states that voted for Trump in 2016?",
            "short_title": "",
            "url_title": "",
            "slug": "will-at-least-9-of-the-12-states-hit-hardest-by-covid-19-in-2020-be-states-that-voted-for-trump-in-2016",
            "author_id": 110540,
            "author_username": "randallburns",
            "coauthors": [],
            "created_at": "2020-03-17T02:17:50.221211Z",
            "published_at": "2020-03-22T23:00:00Z",
            "edited_at": "2025-09-05T17:28:57.161776Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-22T23:00:00Z",
            "comment_count": 105,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2020-11-15T03:14:00Z",
            "scheduled_close_time": "2020-11-15T03:14:00Z",
            "scheduled_resolve_time": "2021-03-15T17:19:00Z",
            "actual_resolve_time": "2021-03-15T17:19:00Z",
            "open_time": "2020-03-22T23:00:00Z",
            "nr_forecasters": 173,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32596,
                        "name": "2020 Leaderboard",
                        "slug": "2020_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "topic": [
                    {
                        "id": 15865,
                        "name": "Health & Pandemics",
                        "slug": "biosecurity",
                        "emoji": "🧬",
                        "type": "topic"
                    }
                ],
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": null,
                    "user_permission": "forecaster",
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-07-18T17:28:18.838588Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3685,
                        "name": "Elections",
                        "slug": "elections",
                        "emoji": "πŸ—³οΈ",
                        "description": "Elections",
                        "type": "category"
                    },
                    {
                        "id": 3691,
                        "name": "Health & Pandemics",
                        "slug": "health-pandemics",
                        "emoji": "🦠",
                        "description": "Health & Pandemics",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 3875,
                "title": "Will at least 9 of the 12 states hit hardest by COVID-19 in 2020 be states that voted for Trump in 2016?",
                "created_at": "2020-03-17T02:17:50.221211Z",
                "open_time": "2020-03-22T23:00:00Z",
                "cp_reveal_time": "2020-03-23T12:29:13.381591Z",
                "spot_scoring_time": "2020-03-23T12:29:13.381591Z",
                "scheduled_resolve_time": "2021-03-15T17:19:00Z",
                "actual_resolve_time": "2021-03-15T17:19:00Z",
                "resolution_set_time": "2021-03-15T17:19:00Z",
                "scheduled_close_time": "2020-11-15T03:14:00Z",
                "actual_close_time": "2020-11-15T03:14:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "resolved",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": "no",
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "",
                "resolution_criteria": "This question will resolve positive if at least 9 of the 12 states with the most COVID-19 deaths per capita in 2020 (as reported by the CDC) are among the states that voted for Trump in the 2016 presidential election.\n\nFor purposes of this question, 30 states out of 50 are considered to have voted for Trump in the 2016 election, which is 60% or 7.2 out of 12. They are: \n\nAlaska, Idaho, Utah, Arizona, Montana, \nWyoming, North Dakota, South Dakota, Nebraska, Kansas, \nOklahoma, Texas, Louisiana,Arkansas, Missouri, \nIowa, Wisconsin, Michigan, Indiana, Ohio, \nPennsylvania, West Virginia, Kentucky, Tennessee, North Carolina, \nSouth Carolina, Georgia, Florida, Mississippi, Alabama\n(We won’t count the second congressional districft of Maine which may not have readily accessible health statistics). ([source](https://en.m.wikipedia.org/wiki/2016_United_States_presidential_election))\n\nThis question resolves according to the best numbers published by the CDC as of 2021-03-15, as judged by Metaculus.",
                "fine_print": "",
                "post_id": 3875,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1605408297.109579,
                                "end_time": null,
                                "forecaster_count": 173,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1605408297.109579,
                            "end_time": null,
                            "forecaster_count": 173,
                            "interval_lower_bounds": [
                                0.1
                            ],
                            "centers": [
                                0.15
                            ],
                            "interval_upper_bounds": [
                                0.2
                            ],
                            "forecast_values": [
                                0.85,
                                0.15
                            ],
                            "means": [
                                0.17624742674766528
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    1.3204936004176713,
                                    0.09257718885161514,
                                    0.3698611494577609,
                                    0.0,
                                    0.9637580630534452,
                                    1.6911407529475833,
                                    0.152147267956219,
                                    0.07654004632791854,
                                    1.3566196043178518,
                                    1.2871222085411111,
                                    0.008854790519369122,
                                    0.31739995280281885,
                                    1.4843234701676897,
                                    0.21986369239927256,
                                    3.231850152252539,
                                    0.7129106825709566,
                                    0.1509092107429703,
                                    2.1397381477267037,
                                    0.8592028321060172,
                                    2.7686281385258855,
                                    5.347364471390355e-05,
                                    1.4424795593661222,
                                    0.20675825091876726,
                                    0.047196218807800686,
                                    0.0005635358125053174,
                                    0.006463165528685157,
                                    0.4043940748213438,
                                    0.4396236148732535,
                                    0.0,
                                    0.8102105016463358,
                                    0.12094448058490635,
                                    8.179544085384053e-05,
                                    0.00514366450128565,
                                    0.8138452318194328,
                                    0.10798850983415967,
                                    0.002814877462071982,
                                    3.896111587806836e-05,
                                    0.0,
                                    0.5159347920147704,
                                    0.000184146374494145,
                                    0.0003853171425692302,
                                    0.0,
                                    0.0,
                                    0.011190473979684624,
                                    0.026295240864479857,
                                    0.08857747001437925,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.019004506092969005,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0022838820597700414,
                                    0.00478295481150433,
                                    0.004203655857284711,
                                    0.016613140509183437,
                                    0.0,
                                    0.0,
                                    0.0,
                                    7.978717484931284e-06,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.009394178747444646,
                                    0.0,
                                    0.27842561386515186,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.21923887229526215
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 15.243031269453116,
                            "coverage": 0.9999330267064213,
                            "baseline_score": 67.88590172001243,
                            "spot_peer_score": 14.247882260496374,
                            "peer_archived_score": 15.243031269453116,
                            "baseline_archived_score": 67.88590172001243,
                            "spot_peer_archived_score": 14.247882260496374
                        },
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1605408297.17728,
                                "end_time": null,
                                "forecaster_count": 173,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1605408297.17728,
                            "end_time": null,
                            "forecaster_count": 173,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.9596313756320122,
                                0.040368624367987854
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 12,
                "user_vote": null
            },
            "forecasts_count": 536,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 3870,
            "title": "Will there turn out to be widespread fossils of algae and lichens on Mars?",
            "short_title": "",
            "url_title": "",
            "slug": "will-there-turn-out-to-be-widespread-fossils-of-algae-and-lichens-on-mars",
            "author_id": 8,
            "author_username": "Anthony",
            "coauthors": [],
            "created_at": "2020-03-15T15:53:57.991552Z",
            "published_at": "2020-03-18T07:00:00Z",
            "edited_at": "2025-09-05T17:28:54.276697Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-18T07:00:00Z",
            "comment_count": 20,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2025-01-02T01:00:00Z",
            "scheduled_close_time": "2030-01-01T08:00:00Z",
            "scheduled_resolve_time": "2030-01-01T08:00:00Z",
            "actual_resolve_time": "2025-01-02T01:00:00Z",
            "open_time": "2020-03-18T07:00:00Z",
            "nr_forecasters": 155,
            "html_metadata_json": null,
            "projects": {
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": null,
                    "user_permission": "forecaster",
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-07-18T17:28:18.838588Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3699,
                        "name": "Natural Sciences",
                        "slug": "natural-sciences",
                        "emoji": "πŸ”¬",
                        "description": "Natural Sciences",
                        "type": "category"
                    },
                    {
                        "id": 3695,
                        "name": "Space",
                        "slug": "space",
                        "emoji": "πŸš€",
                        "description": "Space",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 3870,
                "title": "Will there turn out to be widespread fossils of algae and lichens on Mars?",
                "created_at": "2020-03-15T15:53:57.991552Z",
                "open_time": "2020-03-18T07:00:00Z",
                "cp_reveal_time": "2020-03-19T19:18:42.572716Z",
                "spot_scoring_time": "2020-03-19T19:18:42.572716Z",
                "scheduled_resolve_time": "2030-01-01T08:00:00Z",
                "actual_resolve_time": "2025-01-02T01:00:00Z",
                "resolution_set_time": "2025-06-23T22:00:52.445562Z",
                "scheduled_close_time": "2030-01-01T08:00:00Z",
                "actual_close_time": "2025-01-02T01:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "resolved",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": "no",
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": false,
                "open_lower_bound": false,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": false,
                    "open_lower_bound": false,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "",
                "resolution_criteria": "A recent [provocative paper](http://journalofastrobiology.com/MarsGaleCraterLife.html) by a quite reputable set of astrobiologists and others has claimed that in Gale crater on Mars, \n\n> specimens resembling terrestrial algae, lichens, microbial mats, stro-matolites, ooids, tubular-shaped formations, and mineralized fossils of metazoans and calcium-carbonate encrusted cyanobacteria were observed and tentatively identified.\n\nbut of course\n\n> That some or most of these specimens may be abiotic, cannot be ruled out.\n\nThis would, of course, be pretty monumental if true.  We'll ask whether it will turn out that:\n\n*** \"The tentative claims of the 2020 Joseph et al. paper are basically correct and a significant fraction of the features identified there were, in fact, fossils of life on Mars.\" ***\n\nThis question is a bit experimental, one of a series of \"self-resolving\" ones. Resolution to this question will be determined as follows:\n\n* If at any time after the ***date of Jan 1, 2025*** the community prediction is > 95% or < 5%, the question resolves positively or negatively, respectively.\n\n* Otherwise, on or about the close/resolve date of Jan 1, 2030, the question will be decided by unanimous vote of a council of three people as to whether the proposition listed above is true, at 50+% credence (i.e. more true than its negation), resolving ambiguous in the case of disagreement. The council of three will be chosen by quantum mechanical random numbers from a list of 12 people that will be composed by the author around the time of question close, and held secretly until the time of question resolution.",
                "fine_print": "",
                "post_id": 3870,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1731950596.487898,
                                "end_time": null,
                                "forecaster_count": 155,
                                "interval_lower_bounds": [
                                    0.01
                                ],
                                "centers": [
                                    0.03
                                ],
                                "interval_upper_bounds": [
                                    0.07
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1731950596.487898,
                            "end_time": null,
                            "forecaster_count": 155,
                            "interval_lower_bounds": [
                                0.01
                            ],
                            "centers": [
                                0.03
                            ],
                            "interval_upper_bounds": [
                                0.07
                            ],
                            "forecast_values": [
                                0.97,
                                0.03
                            ],
                            "means": [
                                0.07271309104703523
                            ],
                            "histogram": [
                                [
                                    3.2995913239901284,
                                    4.386211791886478,
                                    2.6532075250812097,
                                    3.132877344221826,
                                    1.0853238142056292,
                                    2.4658361345547677,
                                    0.28840592529509146,
                                    1.5788815917735273,
                                    0.0,
                                    0.913426031207083,
                                    0.6625040680972386,
                                    0.0,
                                    0.2568242984322328,
                                    0.09075243791531377,
                                    0.06708970920947387,
                                    0.11047689973738539,
                                    0.0,
                                    0.00013391951300077026,
                                    0.020122919243075802,
                                    0.0,
                                    0.19139843640683074,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.8259687211478886,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.4009165451322767,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00016521841845814023,
                                    0.0,
                                    0.00905957648528038,
                                    0.0,
                                    4.5381326177588396e-05,
                                    0.0,
                                    0.00012517497708011994,
                                    0.0,
                                    0.0,
                                    0.30713375924904074,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00018840507632565497,
                                    0.0,
                                    0.0,
                                    0.03545588544230592,
                                    0.12776089719773898,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.14745299305671453,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.3355169150555259,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.010297112900331144,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {
                            "baseline_score": 46.82146446189095,
                            "peer_score": 4.147780174838475,
                            "coverage": 0.489541693504774,
                            "relative_legacy_score": 0.0,
                            "weighted_coverage": 0.9999265991967077,
                            "spot_peer_score": 10.727721568166444,
                            "spot_baseline_score": 84.79969065549501,
                            "baseline_archived_score": 46.82146446189095,
                            "peer_archived_score": 4.147780174838475,
                            "relative_legacy_archived_score": 0.0,
                            "spot_peer_archived_score": 10.727721568166444,
                            "spot_baseline_archived_score": 84.79969065549501
                        },
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1728289372.779347,
                                "end_time": null,
                                "forecaster_count": 155,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1728289372.779347,
                            "end_time": null,
                            "forecaster_count": 155,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.9953014965751708,
                                0.0046985034248293
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 17,
                "user_vote": null
            },
            "forecasts_count": 313,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 3863,
            "title": "Will Germany make use of its Emergency Acts in light of COVID-19?",
            "short_title": "",
            "url_title": "",
            "slug": "will-germany-make-use-of-its-emergency-acts-in-light-of-covid-19",
            "author_id": 106635,
            "author_username": "Pshyeah",
            "coauthors": [],
            "created_at": "2020-03-14T22:19:10.468837Z",
            "published_at": "2020-03-23T23:00:00Z",
            "edited_at": "2025-09-05T17:29:25.627610Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-23T23:00:00Z",
            "comment_count": 15,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2020-06-15T10:00:00Z",
            "scheduled_close_time": "2020-06-15T10:00:00Z",
            "scheduled_resolve_time": "2021-12-31T23:00:00Z",
            "actual_resolve_time": "2021-12-31T23:00:00Z",
            "open_time": "2020-03-23T23:00:00Z",
            "nr_forecasters": 79,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32598,
                        "name": "2020-2021 Leaderboard",
                        "slug": "2020_2021_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "topic": [
                    {
                        "id": 15865,
                        "name": "Health & Pandemics",
                        "slug": "biosecurity",
                        "emoji": "🧬",
                        "type": "topic"
                    }
                ],
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": null,
                    "user_permission": "forecaster",
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-07-18T17:28:18.838588Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3688,
                        "name": "Law",
                        "slug": "law",
                        "emoji": "βš–οΈ",
                        "description": "Law",
                        "type": "category"
                    },
                    {
                        "id": 3689,
                        "name": "Politics",
                        "slug": "politics",
                        "emoji": "πŸ›οΈ",
                        "description": "Politics",
                        "type": "category"
                    },
                    {
                        "id": 3691,
                        "name": "Health & Pandemics",
                        "slug": "health-pandemics",
                        "emoji": "🦠",
                        "description": "Health & Pandemics",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 3863,
                "title": "Will Germany make use of its Emergency Acts in light of COVID-19?",
                "created_at": "2020-03-14T22:19:10.468837Z",
                "open_time": "2020-03-23T23:00:00Z",
                "cp_reveal_time": "2020-03-24T15:45:28.142203Z",
                "spot_scoring_time": "2020-03-24T15:45:28.142203Z",
                "scheduled_resolve_time": "2021-12-31T23:00:00Z",
                "actual_resolve_time": "2021-12-31T23:00:00Z",
                "resolution_set_time": "2021-12-31T23:00:00Z",
                "scheduled_close_time": "2020-06-15T10:00:00Z",
                "actual_close_time": "2020-06-15T10:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "resolved",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": "no",
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "",
                "resolution_criteria": "In 1968 the First Grand Coalition of the Federal Republic of Germany passed the *[German Emergency Act](https://en.wikipedia.org/wiki/German_Emergency_Acts)*, changing, adding or removing more than two dozen paragraphs in their Basic Law (constitution). These would allow the federal government to limit basic rights and liberties as well as freedom of movement, enforce federal law on the states, use of armed forces within Germany to put down insurgencies, and so forth. At the same time, and to assuage worries of critics, the act also introduced the *right to resist*, which granted the \"right to resist any person seeking to abolish this constitutional order if no other remedy is available.\"\n\nAll this was necessary due to Germany’s problematic history with emergency acts and enabling acts, in particular during the [Weimar Republic](https://en.wikipedia.org/wiki/Weimar_Republic) and [the consequences that followed](https://en.wikipedia.org/wiki/Nazi_Germany).\n\nAs such the emergency powers granted by the German Emergency Act were handled very carefully by current and past governments. For instance: Only under need of substantial help in catastrophic circumstances like the 1997 Oder Flood were soldiers ever deployed within German borders.\n\nFurther complicated is this by the lack of consensus positions and opinions in constitutional law, since these powers were very rarely needed, let alone used.\n\nYet the German government retains these capabilities, hesitant as it may be, to issue decrees that overrule, countermand and limit states rights and powers *if* the federal government deems them necessary [in light of catastrophic circumstances](https://www.tagesschau.de/inland/notstandsgesetze-deutschland-101.html).\n\nAs the saying goes, sometimes needs must.\n\n**Will Germany make use of its Emergency Acts in light of COVID-19?**\n\n* Resolves positively if the Federal government infringes on states rights and powers in direct relation to COVID-19 before 2022.\n* Resolves negatively if such an infringement doesn’t happen.\n* Resolves ambiguously if an emergency acts / decrees infringement occurs during the 2020 pandemic that is not immediately related to COVID-19.\n* This question will close retroactively 3 days before such an emergency act or decree is announced, whether it’s actually applied or not.",
                "fine_print": "",
                "post_id": 3863,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1592206676.206002,
                                "end_time": null,
                                "forecaster_count": 79,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.06
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1592206676.206002,
                            "end_time": null,
                            "forecaster_count": 79,
                            "interval_lower_bounds": [
                                0.03
                            ],
                            "centers": [
                                0.06
                            ],
                            "interval_upper_bounds": [
                                0.1
                            ],
                            "forecast_values": [
                                0.94,
                                0.06
                            ],
                            "means": [
                                0.08447286672049566
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    3.407520997594752,
                                    0.19724674764478695,
                                    2.238970956085954,
                                    0.7096206768379969,
                                    1.3949171776468836,
                                    0.9327960615386883,
                                    0.9575014479448294,
                                    0.5935735468969371,
                                    1.356781912068857,
                                    0.8347876932307549,
                                    0.09058668029201836,
                                    0.0,
                                    0.4951761874784477,
                                    0.0,
                                    0.9806740035473147,
                                    0.0,
                                    0.0361372874092818,
                                    0.0,
                                    0.0,
                                    0.02786314755648802,
                                    0.01851424336049953,
                                    0.17433684005092911,
                                    0.15134482788356746,
                                    0.0,
                                    0.801278647998164,
                                    0.3901116130521009,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.005819522702150025,
                                    0.020482295148019,
                                    0.0,
                                    0.008234707059408828,
                                    0.016057146807240245,
                                    0.0,
                                    0.0,
                                    0.41139789546716327,
                                    0.0,
                                    0.0,
                                    0.005078988548449663,
                                    0.0,
                                    0.015028924156914286,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.001291273368885473,
                                    0.0,
                                    0.0,
                                    0.002512761637909824,
                                    0.0038045040913139735,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0010197534288651899,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.000780056964336447,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 25.554837318534243,
                            "coverage": 0.995219608440821,
                            "baseline_score": 64.54376004962666,
                            "spot_peer_score": -7.737733531713417,
                            "peer_archived_score": 25.554837318534243,
                            "baseline_archived_score": 64.54376004962666,
                            "spot_peer_archived_score": -7.737733531713417
                        },
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1592206676.441508,
                                "end_time": null,
                                "forecaster_count": 79,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1592206676.441508,
                            "end_time": null,
                            "forecaster_count": 79,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.8021389540813779,
                                0.19786104591862202
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 7,
                "user_vote": null
            },
            "forecasts_count": 239,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 3859,
            "title": "Will it be reported that Trump has tested positive for COVID-19 in 2020?",
            "short_title": "",
            "url_title": "",
            "slug": "will-it-be-reported-that-trump-has-tested-positive-for-covid-19-in-2020",
            "author_id": 104761,
            "author_username": "Tamay",
            "coauthors": [],
            "created_at": "2020-03-14T11:16:39.671261Z",
            "published_at": "2020-03-14T16:00:00Z",
            "edited_at": "2025-09-05T17:28:55.682530Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-14T16:00:00Z",
            "comment_count": 44,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2020-03-25T23:00:00Z",
            "scheduled_close_time": "2020-03-25T23:00:00Z",
            "scheduled_resolve_time": "2020-10-02T05:15:00Z",
            "actual_resolve_time": "2020-10-02T05:15:00Z",
            "open_time": "2020-03-14T16:00:00Z",
            "nr_forecasters": 132,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32596,
                        "name": "2020 Leaderboard",
                        "slug": "2020_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "topic": [
                    {
                        "id": 15865,
                        "name": "Health & Pandemics",
                        "slug": "biosecurity",
                        "emoji": "🧬",
                        "type": "topic"
                    }
                ],
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": null,
                    "user_permission": "forecaster",
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-07-18T17:28:18.838588Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3689,
                        "name": "Politics",
                        "slug": "politics",
                        "emoji": "πŸ›οΈ",
                        "description": "Politics",
                        "type": "category"
                    },
                    {
                        "id": 3691,
                        "name": "Health & Pandemics",
                        "slug": "health-pandemics",
                        "emoji": "🦠",
                        "description": "Health & Pandemics",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 3859,
                "title": "Will it be reported that Trump has tested positive for COVID-19 in 2020?",
                "created_at": "2020-03-14T11:16:39.671261Z",
                "open_time": "2020-03-14T16:00:00Z",
                "cp_reveal_time": "2020-03-14T17:38:42.851178Z",
                "spot_scoring_time": "2020-03-14T17:38:42.851178Z",
                "scheduled_resolve_time": "2020-10-02T05:15:00Z",
                "actual_resolve_time": "2020-10-02T05:15:00Z",
                "resolution_set_time": "2020-10-02T05:15:00Z",
                "scheduled_close_time": "2020-03-25T23:00:00Z",
                "actual_close_time": "2020-03-25T23:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "resolved",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": "yes",
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "",
                "resolution_criteria": "According to [CNN](https://edition.cnn.com/2020/03/12/politics/trump-coronavirus-contact/index.html):\n\n> A source close to Donald Trump said the President is telling people close to him that he is indeed concerned about coming into contact with people who have contracted the coronavirus, including the Brazilian official who tested positive after coming face-to-face with Trump at Mar-a-Lago.\n\n**Will it be reported that Trump has tested positive for COVID-19 in 2020?**\n\nThis question resolves positively if it is reported that Donald Trump tested positively for COVID-19 in 2020. Resolution is by any of the following:\n\n- Statements by Donald Trump himself (through a televised address, made by the @realDonaldTrump or @POTUS twitter accounts, or by a signed letter)\n- Statements made by Mike Pence\n- Statements made by the White House\n\nAn announcement that Trump was found to have the relevant antibodies that would only be present if he had COVID-19 is sufficient for positive resolution.\n\nIn case of positive resolution, this question resolves 48 hours before the first reports.",
                "fine_print": "",
                "post_id": 3859,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1585160904.13067,
                                "end_time": null,
                                "forecaster_count": 132,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.45
                                ],
                                "interval_upper_bounds": [
                                    0.51
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1585160904.13067,
                            "end_time": null,
                            "forecaster_count": 132,
                            "interval_lower_bounds": [
                                0.3
                            ],
                            "centers": [
                                0.45
                            ],
                            "interval_upper_bounds": [
                                0.51
                            ],
                            "forecast_values": [
                                0.55,
                                0.45
                            ],
                            "means": [
                                0.4355133197598995
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.06875412534903413,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.014860993214620019,
                                    0.0041314564077281155,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.01229956523389327,
                                    0.0,
                                    0.0,
                                    0.026913764842604472,
                                    0.0,
                                    0.0029418685533888394,
                                    0.0013738396328811036,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.21481396762047544,
                                    0.0022340024404085782,
                                    0.5596670764168955,
                                    0.0662605285201246,
                                    0.0,
                                    2.5006132167960837,
                                    0.0,
                                    0.0020342610001158465,
                                    0.0008965205541500189,
                                    0.0,
                                    2.209719291691044,
                                    0.0,
                                    0.03405491717725504,
                                    0.4283714816798043,
                                    0.3339311491038942,
                                    0.12676495035690216,
                                    0.046748387309323354,
                                    0.029782468185213767,
                                    0.0,
                                    0.24916988284888686,
                                    0.16469754995622343,
                                    0.0,
                                    0.7418550127602053,
                                    0.7087657968431191,
                                    0.8026895561652589,
                                    2.848239042768576,
                                    0.09150706941410354,
                                    0.6131624971655124,
                                    0.35303289363897383,
                                    0.9778732455884526,
                                    0.957244345694448,
                                    1.8473075621928845,
                                    0.06257888200243465,
                                    0.6712666784152381,
                                    0.7678559467572927,
                                    0.7500814914874798,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0007509943174863703,
                                    0.5686024658228185,
                                    0.0,
                                    0.0,
                                    0.0007126753249711776,
                                    0.6419935311747008,
                                    0.0005075048667153809,
                                    0.07854244201595756,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.2753640794252676,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0236791917752581,
                                    0.0,
                                    0.0,
                                    0.4439483549281455,
                                    0.0,
                                    9.581825713945354e-05,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.001288476663142373,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.1499486695500105,
                                    0.0,
                                    0.0019603898988786134
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 14.20400364607797,
                            "coverage": 0.9974279917855406,
                            "baseline_score": -26.695717646710843,
                            "spot_peer_score": 68.8511919779108,
                            "peer_archived_score": 14.20400364607797,
                            "baseline_archived_score": -26.695717646710843,
                            "spot_peer_archived_score": 68.8511919779108
                        },
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1585057477.30693,
                                "end_time": null,
                                "forecaster_count": 129,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1585057477.30693,
                            "end_time": null,
                            "forecaster_count": 129,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.7484665161314077,
                                0.2515334838685923
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 10,
                "user_vote": null
            },
            "forecasts_count": 333,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 3858,
            "title": "Will the USD be the dominant global reserve currency in 2050?",
            "short_title": "USD dominant reserve currency in 2050",
            "url_title": "USD dominant reserve currency in 2050",
            "slug": "usd-dominant-reserve-currency-in-2050",
            "author_id": 111903,
            "author_username": "shibboleth",
            "coauthors": [],
            "created_at": "2020-03-14T02:13:55.274562Z",
            "published_at": "2020-03-28T23:00:00Z",
            "edited_at": "2025-09-05T17:29:07.651100Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-28T23:00:00Z",
            "comment_count": 21,
            "status": "open",
            "resolved": false,
            "actual_close_time": null,
            "scheduled_close_time": "2050-12-31T11:00:00Z",
            "scheduled_resolve_time": "2050-12-31T11:00:00Z",
            "actual_resolve_time": null,
            "open_time": "2020-03-28T23:00:00Z",
            "nr_forecasters": 133,
            "html_metadata_json": null,
            "projects": {
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": null,
                    "user_permission": "forecaster",
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-07-18T17:28:18.838588Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3698,
                        "name": "Economy & Business",
                        "slug": "economy-business",
                        "emoji": "πŸ’Ό",
                        "description": "Economy & Business",
                        "type": "category"
                    },
                    {
                        "id": 3687,
                        "name": "Geopolitics",
                        "slug": "geopolitics",
                        "emoji": "🌍",
                        "description": "Geopolitics",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 3858,
                "title": "Will the USD be the dominant global reserve currency in 2050?",
                "created_at": "2020-03-14T02:13:55.274562Z",
                "open_time": "2020-03-28T23:00:00Z",
                "cp_reveal_time": "2020-03-29T18:50:42.396718Z",
                "spot_scoring_time": "2020-03-29T18:50:42.396718Z",
                "scheduled_resolve_time": "2050-12-31T11:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2050-12-31T11:00:00Z",
                "actual_close_time": "2050-12-31T11:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "open",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": null,
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "",
                "resolution_criteria": "*Related Questions on Metaculus:*\n\n* [Will the USD fraction of allocated global foreign exchange currencies be below 50% before the following years?](https://www.metaculus.com/questions/14017/usd-foreign-exchange-currency-dominance/)\n* [What will be the United States Dollar's percentage of all currency reserves, as of Q1 2050?](https://www.metaculus.com/questions/12458/usd-percentage-of-all-reserve-currency-2050q1/)\n\n---\n\nThe IMF regularly publishes information on the composition of official global foreign exchange reserves in the aggregated *Currency Composition of Foreign Exchange Reserves* ([COFER](http://data.imf.org/?sk=E6A5F467-C14B-4AA8-9F6D-5A09EC4E62A4)) As of Q3 2019, the U.S dollar comprises 61.8% of the total ([source](http://data.imf.org/regular.aspx?key=41175)).\n\nSeveral contributing factors are thought to contribute to this state of affairs, including [the stability, size, and liquidity of United States Treasury assets](https://www.economist.com/business-finance/displaystory.cfm?story_id=16064067&source=hptextfeature), the tying of other currencies to the U.S dollar as part of the Bretton Woods Agreement, and the strength of the U.S economy.\n\nAt present, the U.S dollar is considered to be the world's dominant reserve currency. This is considered to [diminish the impact of higher U.S trade deficits](https://qz.com/1266044/why-does-the-us-run-a-trade-deficit-to-maintain-the-dollars-privileged-position/) and [allowing it to impose unilateral sanctions](https://www.nytimes.com/2014/07/03/upshot/the-dollars-big-role-in-foreign-policy.html). However, it has been speculated that the U.S dollar may be supplanted by the euro or the renminbi, or may diminish in importance.\n\n**Will the USD be the dominant global reserve currency in 2050?**\n\nQuestion resolves positively if the **most recently released** percentage of allocated global foreign currency reserves comprising of the U.S dollar, by year-end 2050, is over 50%. Per moderator discretion, if the IMF has ceased publication of COFER in lieu of a new publication containing the same statistics, the new publication will be used instead.\n\nQuestion resolves as **ambiguous** the IMF has not published any statistics for any quarters after Q1 2045, if admins judge that the IMF has ceased to exist.",
                "fine_print": "",
                "post_id": 3858,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1752392118.953287,
                                "end_time": 1765902511.047328,
                                "forecaster_count": 131,
                                "interval_lower_bounds": [
                                    0.33
                                ],
                                "centers": [
                                    0.42
                                ],
                                "interval_upper_bounds": [
                                    0.55
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1752392118.953287,
                            "end_time": 1765902511.047328,
                            "forecaster_count": 131,
                            "interval_lower_bounds": [
                                0.33
                            ],
                            "centers": [
                                0.42
                            ],
                            "interval_upper_bounds": [
                                0.55
                            ],
                            "forecast_values": [
                                0.5800000000000001,
                                0.42
                            ],
                            "means": [
                                0.4475867398743806
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.0425437050398726,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.4864311919645977,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.17374554634249434,
                                    0.7988188671388132,
                                    0.2356227800742948,
                                    0.0,
                                    0.0,
                                    0.1649896752525058,
                                    0.1199385773995269,
                                    0.0,
                                    0.0,
                                    0.026376720255567036,
                                    0.0,
                                    0.6187104904876647,
                                    0.011730967460585084,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.3068114876598505,
                                    0.2588775751405469,
                                    0.3887156547367363,
                                    0.0075358426782257525,
                                    0.0,
                                    1.0826051448951266,
                                    0.2755118048120686,
                                    0.000660563356454695,
                                    0.4084989212705637,
                                    0.0,
                                    0.5330169121412273,
                                    1.1459048382623969,
                                    0.22666175942589142,
                                    0.6404891214469575,
                                    0.6322993840229493,
                                    1.9354952476128167,
                                    0.0019536760830802828,
                                    1.582649333426053,
                                    0.9571751434465521,
                                    0.26035360296100596,
                                    0.5854927008758596,
                                    0.9160297371851303,
                                    0.3906998409442117,
                                    0.008109861192821413,
                                    0.5070641310179571,
                                    0.24655409661921973,
                                    0.000341753265518315,
                                    0.0019316693155737351,
                                    0.0,
                                    0.0,
                                    0.29032995334615375,
                                    0.0,
                                    0.8020767463924763,
                                    0.0,
                                    0.0,
                                    0.7921061855027389,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.006132612574596606,
                                    0.08274630082997489,
                                    0.0,
                                    4.4000499145849686e-05,
                                    0.0,
                                    0.0,
                                    0.20257089793259664,
                                    0.0,
                                    0.0,
                                    0.023182041011882617,
                                    1.3305549447051326,
                                    0.0,
                                    0.0,
                                    0.0,
                                    2.9078161127327503e-05,
                                    0.0699579780066922,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.6702113791587379,
                                    0.0,
                                    0.0,
                                    0.0014350671209356553,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.5846095867475803,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.5583648646088453
                                ]
                            ]
                        },
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1728287797.907664,
                                "end_time": null,
                                "forecaster_count": 127,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1728287797.907664,
                            "end_time": null,
                            "forecaster_count": 127,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.7380222940979289,
                                0.2619777059020712
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 19,
                "user_vote": null
            },
            "forecasts_count": 297,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 3856,
            "title": "Will at least 1 million COVID-19 deaths be reported in any single calendar month in 2020?",
            "short_title": "",
            "url_title": "",
            "slug": "will-at-least-1-million-covid-19-deaths-be-reported-in-any-single-calendar-month-in-2020",
            "author_id": 101465,
            "author_username": "Jgalt",
            "coauthors": [],
            "created_at": "2020-03-13T17:22:53.656023Z",
            "published_at": "2020-04-01T22:00:00Z",
            "edited_at": "2025-09-05T17:28:54.337803Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-04-01T22:00:00Z",
            "comment_count": 14,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2020-12-01T00:00:00Z",
            "scheduled_close_time": "2020-12-01T00:00:00Z",
            "scheduled_resolve_time": "2020-12-31T12:19:00Z",
            "actual_resolve_time": "2020-12-31T12:19:00Z",
            "open_time": "2020-04-01T22:00:00Z",
            "nr_forecasters": 155,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32596,
                        "name": "2020 Leaderboard",
                        "slug": "2020_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "topic": [
                    {
                        "id": 15865,
                        "name": "Health & Pandemics",
                        "slug": "biosecurity",
                        "emoji": "🧬",
                        "type": "topic"
                    }
                ],
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": null,
                    "user_permission": "forecaster",
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-07-18T17:28:18.838588Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3691,
                        "name": "Health & Pandemics",
                        "slug": "health-pandemics",
                        "emoji": "🦠",
                        "description": "Health & Pandemics",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 3856,
                "title": "Will at least 1 million COVID-19 deaths be reported in any single calendar month in 2020?",
                "created_at": "2020-03-13T17:22:53.656023Z",
                "open_time": "2020-04-01T22:00:00Z",
                "cp_reveal_time": "2020-04-02T09:48:18.420229Z",
                "spot_scoring_time": "2020-04-02T09:48:18.420229Z",
                "scheduled_resolve_time": "2020-12-31T12:19:00Z",
                "actual_resolve_time": "2020-12-31T12:19:00Z",
                "resolution_set_time": "2020-12-31T12:19:00Z",
                "scheduled_close_time": "2020-12-01T00:00:00Z",
                "actual_close_time": "2020-12-01T00:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "resolved",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": "no",
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "",
                "resolution_criteria": "[Coronavirus disease 2019 (COVID-19)](https://en.wikipedia.org/wiki/2019-nCoV_acute_respiratory_disease) formerly known as 2019-nCoV acute respiratory disease, is an infectious disease caused by [SARS-CoV-2](https://en.wikipedia.org/wiki/Severe_acute_respiratory_syndrome_coronavirus_2), a virus closely related to the SARS virus. The disease is the cause of the ongoing [2019–20 coronavirus pandemic](https://en.wikipedia.org/wiki/2019%E2%80%9320_coronavirus_outbreak).\n\nAs of 13 March 2020, [over 137,000 cases and over 5,000 deaths have been reported, mostly in China.](https://gisanddata.maps.arcgis.com/apps/opsdashboard/index.html#/bda7594740fd40299423467b48e9ecf6)\n\nThis question asks: **Within any single calendar month in 2020, will at least 1 million COVID-19 deaths be reported on the [Johns Hopkins CSSE dashboard](https://gisanddata.maps.arcgis.com/apps/opsdashboard/index.html#/bda7594740fd40299423467b48e9ecf6), or, if that source is no longer available or no longer considered reliable, another source judged credible by Metaculus administrators?**",
                "fine_print": "",
                "post_id": 3856,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1606769796.495142,
                                "end_time": null,
                                "forecaster_count": 155,
                                "interval_lower_bounds": [
                                    0.01
                                ],
                                "centers": [
                                    0.01
                                ],
                                "interval_upper_bounds": [
                                    0.03
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1606769796.495142,
                            "end_time": null,
                            "forecaster_count": 155,
                            "interval_lower_bounds": [
                                0.01
                            ],
                            "centers": [
                                0.01
                            ],
                            "interval_upper_bounds": [
                                0.03
                            ],
                            "forecast_values": [
                                0.99,
                                0.01
                            ],
                            "means": [
                                0.04241129335277689
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    13.626662866429124,
                                    3.828981814258313,
                                    0.809627276763279,
                                    0.7701637394507008,
                                    1.6779727621475335,
                                    0.01756199970558417,
                                    0.005172649633599455,
                                    0.0042967360700396215,
                                    0.010297112900331144,
                                    0.46872357399455167,
                                    0.0,
                                    0.00014419437783649112,
                                    0.0,
                                    0.0009146941763374454,
                                    4.5381326177588396e-05,
                                    0.0010259510579661425,
                                    0.08682787725326158,
                                    0.0,
                                    0.0011321986073678963,
                                    0.4580258129566152,
                                    0.00024194648990048188,
                                    0.0,
                                    0.002365477533385307,
                                    0.752563455708147,
                                    0.0,
                                    0.054448085886577645,
                                    0.2937790168410107,
                                    0.03355684341202831,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    5.5222046741725685e-05,
                                    0.00034300564850505826,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0007783011893517885,
                                    0.0,
                                    0.4956989901040024,
                                    0.00012517497708011994,
                                    2.214610794581332e-05,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00016521841845814023,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00033523430008233003,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.000937143608867036,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    6.628993559720358e-05,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    9.25629191346773e-05
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 19.73801462848481,
                            "coverage": 0.9999546990724871,
                            "baseline_score": 85.60489919109665,
                            "spot_peer_score": 5.424620166470307,
                            "peer_archived_score": 19.73801462848481,
                            "baseline_archived_score": 85.60489919109665,
                            "spot_peer_archived_score": 5.424620166470307
                        },
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1606769796.657785,
                                "end_time": null,
                                "forecaster_count": 155,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1606769796.657785,
                            "end_time": null,
                            "forecaster_count": 155,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.9883973267084413,
                                0.011602673291558747
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 8,
                "user_vote": null
            },
            "forecasts_count": 498,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 3855,
            "title": "Will at least 100,000 COVID-19 deaths be reported in any single calendar month in 2020?",
            "short_title": "100k COVID deaths in 2020",
            "url_title": "100k COVID deaths in 2020",
            "slug": "100k-covid-deaths-in-2020",
            "author_id": 101465,
            "author_username": "Jgalt",
            "coauthors": [],
            "created_at": "2020-03-13T17:21:51.128903Z",
            "published_at": "2020-03-15T23:00:00Z",
            "edited_at": "2025-09-05T17:29:00.725220Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-15T23:00:00Z",
            "comment_count": 27,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2020-04-17T00:52:00Z",
            "scheduled_close_time": "2020-12-01T00:00:00Z",
            "scheduled_resolve_time": "2020-12-01T00:00:00Z",
            "actual_resolve_time": "2020-04-17T00:52:00Z",
            "open_time": "2020-03-15T23:00:00Z",
            "nr_forecasters": 140,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32596,
                        "name": "2020 Leaderboard",
                        "slug": "2020_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "topic": [
                    {
                        "id": 15865,
                        "name": "Health & Pandemics",
                        "slug": "biosecurity",
                        "emoji": "🧬",
                        "type": "topic"
                    }
                ],
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "question_series": [
                    {
                        "id": 3186,
                        "type": "question_series",
                        "name": "Li Wenliang Forecasting Tournament",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": "2020-02-17T16:40:10.701000Z",
                        "close_date": "2020-06-17T15:40:10.701000Z",
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2024-05-09T15:40:10.738753Z",
                        "edited_at": "2024-05-09T15:40:10.738759Z",
                        "score_type": "peer_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 3186,
                    "type": "question_series",
                    "name": "Li Wenliang Forecasting Tournament",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": "2020-02-17T16:40:10.701000Z",
                    "close_date": "2020-06-17T15:40:10.701000Z",
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2024-05-09T15:40:10.738753Z",
                    "edited_at": "2024-05-09T15:40:10.738759Z",
                    "score_type": "peer_tournament",
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3691,
                        "name": "Health & Pandemics",
                        "slug": "health-pandemics",
                        "emoji": "🦠",
                        "description": "Health & Pandemics",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 3855,
                "title": "Will at least 100,000 COVID-19 deaths be reported in any single calendar month in 2020?",
                "created_at": "2020-03-13T17:21:51.128903Z",
                "open_time": "2020-03-15T23:00:00Z",
                "cp_reveal_time": "2020-03-16T17:11:00.105041Z",
                "spot_scoring_time": "2020-03-16T17:11:00.105041Z",
                "scheduled_resolve_time": "2020-12-01T00:00:00Z",
                "actual_resolve_time": "2020-04-17T00:52:00Z",
                "resolution_set_time": "2020-04-17T00:52:00Z",
                "scheduled_close_time": "2020-12-01T00:00:00Z",
                "actual_close_time": "2020-04-17T00:52:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "resolved",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": "yes",
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "[Coronavirus disease 2019 (COVID-19)](https://en.wikipedia.org/wiki/2019-nCoV_acute_respiratory_disease) formerly known as 2019-nCoV acute respiratory disease, is an infectious disease caused by [SARS-CoV-2](https://en.wikipedia.org/wiki/Severe_acute_respiratory_syndrome_coronavirus_2), a virus closely related to the SARS virus. The disease is the cause of the ongoing [2019–20 coronavirus pandemic](https://en.wikipedia.org/wiki/2019%E2%80%9320_coronavirus_outbreak).\n\nAs of 13 March 2020, [over 137,000 cases and over 5,000 deaths have been reported, mostly in China.](https://gisanddata.maps.arcgis.com/apps/opsdashboard/index.html#/bda7594740fd40299423467b48e9ecf6)",
                "resolution_criteria": "This question asks: **Within any single calendar month in 2020, will at least 100,000 COVID-19 deaths, worldwide, be reported?**\n\nThis question resolves as the number reported by:\n\n- The [Johns Hopkins CSSE dashboard](https://gisanddata.maps.arcgis.com/apps/opsdashboard/index.html#/bda7594740fd40299423467b48e9ecf6), or, if that source is no longer available or no longer considered reliable, \n- the WHO situation reports, or another source judged credible by Metaculus administrators",
                "fine_print": "",
                "post_id": 3855,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1587109084.76184,
                                "end_time": null,
                                "forecaster_count": 143,
                                "interval_lower_bounds": [
                                    0.97
                                ],
                                "centers": [
                                    0.99
                                ],
                                "interval_upper_bounds": [
                                    0.99
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1587109084.76184,
                            "end_time": null,
                            "forecaster_count": 143,
                            "interval_lower_bounds": [
                                0.97
                            ],
                            "centers": [
                                0.99
                            ],
                            "interval_upper_bounds": [
                                0.99
                            ],
                            "forecast_values": [
                                0.010000000000000009,
                                0.99
                            ],
                            "means": [
                                0.957036898505983
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.07596905266095386,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    2.6349870944566658e-05,
                                    0.0,
                                    0.0,
                                    9.028768983422788e-05,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00012866984915586968,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    4.733499220307512e-05,
                                    0.0,
                                    0.0,
                                    0.0003955809486523242,
                                    0.0,
                                    0.000253949756109778,
                                    0.0,
                                    0.0,
                                    0.009296188013981906,
                                    0.0,
                                    0.03290084302154692,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00010838361664361995,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.350095736702755,
                                    0.000349760912830967,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.08011600668955456,
                                    0.0,
                                    0.00020466027922642828,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0005608120203956986,
                                    0.0012725174188212094,
                                    0.016909911275159877,
                                    0.00030804108319352715,
                                    0.6593990082427654,
                                    0.0,
                                    0.0,
                                    0.10688741118635267,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0937993177476182,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.051909122003844725,
                                    0.0782931241264433,
                                    0.17245253191909118,
                                    0.0006976137443144507,
                                    0.0,
                                    0.0007751692078063485,
                                    0.045403306782421195,
                                    0.5206912444786118,
                                    0.0,
                                    0.35404628307013297,
                                    0.15761150785607003,
                                    0.010651417937626811,
                                    1.1353711583263273,
                                    0.26364057045274025,
                                    1.467974572134437,
                                    1.7263566243430777,
                                    15.005019663172888
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 2.0149867676491846,
                            "coverage": 0.12308479218158126,
                            "baseline_score": 8.430792942577805,
                            "spot_peer_score": -22.465363901237208,
                            "peer_archived_score": 2.0149867676491846,
                            "baseline_archived_score": 8.430792942577805,
                            "spot_peer_archived_score": -22.465363901237208
                        },
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1587031812.064522,
                                "end_time": null,
                                "forecaster_count": 140,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1587031812.064522,
                            "end_time": null,
                            "forecaster_count": 140,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.04839438289559672,
                                0.9516056171044033
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 9,
                "user_vote": null
            },
            "forecasts_count": 410,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": "[Coronavirus disease 2019 (COVID-19)](https://en.wikipedia.org/wiki/2019-nCoV_acute_respiratory_disease) formerly known as 2019-nCoV acute respiratory disease, is an infectious disease caused by [SARS-CoV-2](https://en.wikipedia.org/wiki/Severe_acute_respiratory_syndrome_coronavirus_2), a virus closely related to the SARS virus. The disease is the cause of the ongoing [2019–20 coronavirus pandemic](https://en.wikipedia.org/wiki/2019%E2%80%9320_coronavirus_outbreak).\n\nAs of 13 March 2020, [over 137,000 cases and over 5,000 deaths have been reported, mostly in China.](https://gisanddata.maps.arcgis.com/apps/opsdashboard/index.html#/bda7594740fd40299423467b48e9ecf6)"
        },
        {
            "id": 3843,
            "title": "If Biden has the majority of pledged delegates, but does not survive until the nominee is chosen, will Sanders become the nominee?",
            "short_title": "",
            "url_title": "",
            "slug": "if-biden-has-the-majority-of-pledged-delegates-but-does-not-survive-until-the-nominee-is-chosen-will-sanders-become-the-nominee",
            "author_id": 101911,
            "author_username": "tetraspace",
            "coauthors": [],
            "created_at": "2020-03-12T07:26:53.530599Z",
            "published_at": "2020-03-15T23:00:00Z",
            "edited_at": "2025-09-05T17:28:55.146495Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-15T23:00:00Z",
            "comment_count": 43,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2020-07-12T23:00:00Z",
            "scheduled_close_time": "2020-07-12T23:00:00Z",
            "scheduled_resolve_time": "2020-08-19T07:41:00Z",
            "actual_resolve_time": "2020-08-19T07:41:00Z",
            "open_time": "2020-03-15T23:00:00Z",
            "nr_forecasters": 143,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32596,
                        "name": "2020 Leaderboard",
                        "slug": "2020_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": null,
                    "user_permission": "forecaster",
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-07-18T17:28:18.838588Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3689,
                        "name": "Politics",
                        "slug": "politics",
                        "emoji": "πŸ›οΈ",
                        "description": "Politics",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 3843,
                "title": "If Biden has the majority of pledged delegates, but does not survive until the nominee is chosen, will Sanders become the nominee?",
                "created_at": "2020-03-12T07:26:53.530599Z",
                "open_time": "2020-03-15T23:00:00Z",
                "cp_reveal_time": "2020-03-17T11:09:44.315763Z",
                "spot_scoring_time": "2020-03-17T11:09:44.315763Z",
                "scheduled_resolve_time": "2020-08-19T07:41:00Z",
                "actual_resolve_time": "2020-08-19T07:41:00Z",
                "resolution_set_time": "2020-08-19T07:41:00Z",
                "scheduled_close_time": "2020-07-12T23:00:00Z",
                "actual_close_time": "2020-07-12T23:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "resolved",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": "ambiguous",
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "",
                "resolution_criteria": "Joe Biden is 77 years old; [from actuarial tables](https://www.ssa.gov/oact/STATS/table4c6.html) 77-year-old men have a roughly 4% probability of dying this year, and hence a roughly 1% chance of not surviving until the Democratic National Convention. Additionally, there is some chance that he [contracts coronavirus](https://www.metaculus.com/questions/3779/will-all-major-2020-us-presidential-candidates-survive-the-covid-19-epidemic/), which has a high mortality rate for people in his age range.\n\nAs of writing this question, [Biden has the most pledged delegates](https://www.bloomberg.com/graphics/2020-presidential-delegates-tracker/), and appears [likely to win an overall majority](https://projects.fivethirtyeight.com/2020-primary-forecast/), with Sanders in second place.\n\nIf the Democratic candidate does die, then the Democratic party will pick a replacement to nominate - this process would likely be very similar to a contested convention, with delegates and superdelegates not bound by the results of the previous primaries and caucuses. As the second-place candidate, Sanders would be a natural choice for the nomination, but need not necessarily be the nominee.\n\n**If Biden has the majority of pledged delegates, but does not survive until the nominee is chosen, will Sanders become the nominee?**\n\nThe nominee is likely to be chosen at the 2020 Democratic National Convention, but positive resolution does not require the nominee to be chosen at the Convention (in case it's cancelled and another procedure is adopted).",
                "fine_print": "",
                "post_id": 3843,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1594561048.043423,
                                "end_time": null,
                                "forecaster_count": 143,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.17
                                ],
                                "interval_upper_bounds": [
                                    0.29
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1594561048.043423,
                            "end_time": null,
                            "forecaster_count": 143,
                            "interval_lower_bounds": [
                                0.1
                            ],
                            "centers": [
                                0.17
                            ],
                            "interval_upper_bounds": [
                                0.29
                            ],
                            "forecast_values": [
                                0.83,
                                0.17
                            ],
                            "means": [
                                0.19258622265284617
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    2.0863963639691243,
                                    0.84498650636625,
                                    0.5767906413448,
                                    0.0,
                                    0.2794538007228886,
                                    0.0,
                                    0.0,
                                    0.00417968228087851,
                                    0.007542565285863104,
                                    2.814020589840617,
                                    0.1152903243998369,
                                    0.36648063635846745,
                                    0.07071359762813113,
                                    0.7967301958943132,
                                    3.174342842398909,
                                    0.0,
                                    1.0269036574039114,
                                    0.9888702091028102,
                                    0.0,
                                    1.2253718219587124,
                                    0.006913782002136474,
                                    0.022985125923552462,
                                    0.6578426052445185,
                                    0.0,
                                    1.4551086656343981,
                                    0.09160667183992394,
                                    0.19091197482804342,
                                    0.20147965620612554,
                                    0.0,
                                    1.0626041704235358,
                                    0.5183592778873845,
                                    0.0,
                                    0.7178324730517976,
                                    0.020322980379598298,
                                    0.14757150623023105,
                                    0.013882655896015577,
                                    0.0003812580394313822,
                                    0.7896526810541904,
                                    0.0,
                                    0.1564907640883987,
                                    0.005247220292969846,
                                    1.00954807110802,
                                    0.0,
                                    0.1707704318328061,
                                    0.03695675974617625,
                                    0.0,
                                    0.0,
                                    0.0005781721304982051,
                                    0.3343789822395978,
                                    0.16073473473131997,
                                    0.0,
                                    0.0,
                                    0.1040481997293384,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.16375740599990374,
                                    0.0,
                                    0.0010497101195912578,
                                    0.00012866984915586968,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0005608120203956986,
                                    0.0,
                                    0.0,
                                    0.00010838361664361995,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    3.620874348607017e-05,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    9.028768983422788e-05
                                ]
                            ]
                        },
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1594561048.120567,
                                "end_time": null,
                                "forecaster_count": 143,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1594561048.120567,
                            "end_time": null,
                            "forecaster_count": 143,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.754497908317889,
                                0.245502091682111
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 10,
                "user_vote": null
            },
            "forecasts_count": 274,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 3842,
            "title": "Will a reliable poll of physicists reveal that a majority of those polled accept the many-worlds interpretation by 2050?",
            "short_title": "",
            "url_title": "",
            "slug": "will-a-reliable-poll-of-physicists-reveal-that-a-majority-of-those-polled-accept-the-many-worlds-interpretation-by-2050",
            "author_id": 108770,
            "author_username": "Matthew_Barnett",
            "coauthors": [],
            "created_at": "2020-03-12T07:26:38.565286Z",
            "published_at": "2020-03-16T23:00:00Z",
            "edited_at": "2025-09-20T08:12:08.482697Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-16T23:00:00Z",
            "comment_count": 9,
            "status": "open",
            "resolved": false,
            "actual_close_time": null,
            "scheduled_close_time": "2045-01-01T08:00:00Z",
            "scheduled_resolve_time": "2050-01-01T08:00:00Z",
            "actual_resolve_time": null,
            "open_time": "2020-03-16T23:00:00Z",
            "nr_forecasters": 78,
            "html_metadata_json": null,
            "projects": {
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": null,
                    "user_permission": "forecaster",
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-07-18T17:28:18.838588Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3699,
                        "name": "Natural Sciences",
                        "slug": "natural-sciences",
                        "emoji": "πŸ”¬",
                        "description": "Natural Sciences",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 3842,
                "title": "Will a reliable poll of physicists reveal that a majority of those polled accept the many-worlds interpretation by 2050?",
                "created_at": "2020-03-12T07:26:38.565286Z",
                "open_time": "2020-03-16T23:00:00Z",
                "cp_reveal_time": "2020-03-18T23:00:00Z",
                "spot_scoring_time": "2020-03-18T23:00:00Z",
                "scheduled_resolve_time": "2050-01-01T08:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2045-01-01T08:00:00Z",
                "actual_close_time": "2045-01-01T08:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "open",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": null,
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "",
                "resolution_criteria": "The [many-worlds interpretation](https://www.hedweb.com/manworld.htm#what) is a theory for explaining our observations from quantum experiments. It posits that reality consists entirely of a [universal wavefunction](https://en.wikipedia.org/wiki/Universal_wavefunction) that deterministically obeys the [Schrodinger equation](https://en.wikipedia.org/wiki/Schr%C3%B6dinger_equation) (or some other wave equation). The apparent probabilistic nature of quantum experiments is normally explained by appealing to a non-rigorous concept of macroscopic worlds where each possible result of a quantum experiment happens in one of these worlds. However, \"worlds\" are merely convenient abstractions, and are not fundamental to the theory's main statement. \n\nThe other names of the many-worlds interpretation include \"the relative state formulation\", \"the Everett interpretation\", and \"the theory of the universal wavefunction.\"\n\nThis question resolves positively if by 1/1/2050 a poll of professional physicists with at least 100 responses reveals that more than half accept the many-worlds interpretation of quantum mechanics, as I have described above. The results from the poll must be published in some reliable document or blog post, and must not be informal. If no such poll is released by 1/1/2050, then this question resolves negatively.\n\n[Here](https://arxiv.org/pdf/1612.00676.pdf) is an example of a qualifying survey uploaded to the arxiv in December of 2016. 39% said they preferred the Copenhagen interpretation, 6% the Everett interpretation, 36% had no preferrence.",
                "fine_print": "",
                "post_id": 3842,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1761415522.541124,
                                "end_time": 1766319341.596242,
                                "forecaster_count": 73,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1761415522.541124,
                            "end_time": 1766319341.596242,
                            "forecaster_count": 73,
                            "interval_lower_bounds": [
                                0.25
                            ],
                            "centers": [
                                0.4
                            ],
                            "interval_upper_bounds": [
                                0.6
                            ],
                            "forecast_values": [
                                0.6,
                                0.4
                            ],
                            "means": [
                                0.4236274011153896
                            ],
                            "histogram": [
                                [
                                    0.6570695930046578,
                                    0.4801032618269796,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.4002518783697731,
                                    0.0011005415108165126,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.32548777192907463,
                                    0.15733146265890466,
                                    0.5804197412804394,
                                    0.0,
                                    0.6177039404822752,
                                    0.05245816772323135,
                                    0.0,
                                    0.0,
                                    0.23140283878529846,
                                    0.0,
                                    0.8852844294740815,
                                    0.0,
                                    0.0,
                                    0.30158757679839837,
                                    0.0,
                                    0.7360803134905349,
                                    0.0,
                                    0.0,
                                    0.7626892763546631,
                                    0.0,
                                    0.0014387166970790141,
                                    0.21672965569285008,
                                    0.006220517787109449,
                                    0.1390359258970424,
                                    1.210646033782994,
                                    0.3358972704677873,
                                    0.0,
                                    0.6986181450882394,
                                    0.0663340558700189,
                                    0.023187177021476883,
                                    0.5754686235057811,
                                    0.1270387594062929,
                                    0.035159820106228076,
                                    0.0,
                                    0.0,
                                    1.7632110651860828,
                                    0.001821789957966981,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.06137333323736998,
                                    0.05098420589841443,
                                    0.0,
                                    0.0,
                                    1.6905390450437565,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.017045521296473166,
                                    0.013550076875576434,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.3071420723144239,
                                    0.0,
                                    0.15948589188226622,
                                    0.0,
                                    0.021203521862876884,
                                    0.0,
                                    0.0,
                                    0.32374300958340624,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.04657095710352773,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    1.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.5117106904791824
                                ]
                            ]
                        },
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1728288788.613166,
                                "end_time": null,
                                "forecaster_count": 77,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1728288788.613166,
                            "end_time": null,
                            "forecaster_count": 77,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.798072268077257,
                                0.20192773192274308
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 13,
                "user_vote": null
            },
            "forecasts_count": 228,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 3834,
            "title": "Will any conclusive evidence for extraterrestrial life, past or present, be discovered within our Solar System by 2050?",
            "short_title": "Extraterrestrial Life Discovered by 2050",
            "url_title": "Extraterrestrial Life Discovered by 2050",
            "slug": "extraterrestrial-life-discovered-by-2050",
            "author_id": 111772,
            "author_username": "NoUsernameSelected",
            "coauthors": [],
            "created_at": "2020-03-11T09:32:11.379558Z",
            "published_at": "2020-03-14T23:00:00Z",
            "edited_at": "2025-11-23T17:05:46.986395Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-14T23:00:00Z",
            "comment_count": 91,
            "status": "open",
            "resolved": false,
            "actual_close_time": null,
            "scheduled_close_time": "2049-12-31T22:00:00Z",
            "scheduled_resolve_time": "2049-12-31T22:01:00Z",
            "actual_resolve_time": null,
            "open_time": "2020-03-14T23:00:00Z",
            "nr_forecasters": 1675,
            "html_metadata_json": null,
            "projects": {
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "category": [
                    {
                        "id": 3699,
                        "name": "Natural Sciences",
                        "slug": "natural-sciences",
                        "emoji": "πŸ”¬",
                        "description": "Natural Sciences",
                        "type": "category"
                    },
                    {
                        "id": 3695,
                        "name": "Space",
                        "slug": "space",
                        "emoji": "πŸš€",
                        "description": "Space",
                        "type": "category"
                    }
                ],
                "question_series": [
                    {
                        "id": 1724,
                        "type": "question_series",
                        "name": "Verity",
                        "slug": null,
                        "header_image": "https://cdn.metaculus.com/verity.jpg",
                        "prize_pool": null,
                        "start_date": "2018-12-31T23:00:00Z",
                        "close_date": "2119-12-30T23:00:00Z",
                        "forecasting_end_date": "2032-12-21T05:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": true,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-11-23T20:07:50.364542Z",
                        "score_type": "peer_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 1724,
                    "type": "question_series",
                    "name": "Verity",
                    "slug": null,
                    "header_image": "https://cdn.metaculus.com/verity.jpg",
                    "prize_pool": null,
                    "start_date": "2018-12-31T23:00:00Z",
                    "close_date": "2119-12-30T23:00:00Z",
                    "forecasting_end_date": "2032-12-21T05:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": true,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-11-23T20:07:50.364542Z",
                    "score_type": "peer_tournament",
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "topic": [
                    {
                        "id": 15854,
                        "name": "Top Questions",
                        "slug": "top-50",
                        "emoji": "βœ¨πŸ”",
                        "type": "topic"
                    }
                ]
            },
            "question": {
                "id": 3834,
                "title": "Will any conclusive evidence for extraterrestrial life, past or present, be discovered within our Solar System by 2050?",
                "created_at": "2020-03-11T09:32:11.379558Z",
                "open_time": "2020-03-14T23:00:00Z",
                "cp_reveal_time": "2020-03-16T23:00:00Z",
                "spot_scoring_time": "2020-03-16T23:00:00Z",
                "scheduled_resolve_time": "2049-12-31T22:01:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2049-12-31T22:00:00Z",
                "actual_close_time": "2049-12-31T22:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "open",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": null,
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "Despite our best efforts, Earth is still the only known planet in the universe to harbor any kind of life. Though plenty of our attention in this hunt has been focused on studying potentially habitable exoplanets, this question is concerned with the likelihood of finding [extraterrestrial life](https://en.wikipedia.org/wiki/Extraterrestrial_life#Planetary_habitability_in_the_Solar_System) in our own cosmic backyard.",
                "resolution_criteria": "This question will resolve as **Yes** if, at any point between January 1, 2020 to January 1, 2050, a scientific consensus is reached that life exists or has existed anywhere in our Solar System besides Earth, as judged by Metaculus Admins.\n\nFor this question, we exclude any extra-terrestrial life which has been placed outside Earth through intentional or unintentional human activity.  Otherwise, it is not necessary for ET life to have a separate origin from Earth life (see the [panspermia hypothesis](https://en.wikipedia.org/wiki/Panspermia))",
                "fine_print": "",
                "post_id": 3834,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1763901639.389932,
                                "end_time": 1772304495.01891,
                                "forecaster_count": 1649,
                                "interval_lower_bounds": [
                                    0.12
                                ],
                                "centers": [
                                    0.23
                                ],
                                "interval_upper_bounds": [
                                    0.49
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1763901639.389932,
                            "end_time": 1772304495.01891,
                            "forecaster_count": 1649,
                            "interval_lower_bounds": [
                                0.12
                            ],
                            "centers": [
                                0.23
                            ],
                            "interval_upper_bounds": [
                                0.49
                            ],
                            "forecast_values": [
                                0.77,
                                0.23
                            ],
                            "means": [
                                0.31117066086692485
                            ],
                            "histogram": [
                                [
                                    3.861912479041561,
                                    0.7319507499732641,
                                    0.13380958759076989,
                                    0.08712207611154155,
                                    0.04142820440961853,
                                    2.959399331853443,
                                    0.002383699601491842,
                                    0.7964964004417385,
                                    0.8739042508480664,
                                    1.8382036009690736,
                                    5.039348145845281,
                                    0.4775882371599933,
                                    3.3693987727542805,
                                    1.5273780115744913,
                                    0.7086788468605378,
                                    4.442368483348592,
                                    0.21168803659763374,
                                    0.6829168090239872,
                                    1.5772266740832337,
                                    1.1164994135463573,
                                    7.486356769452376,
                                    0.004008397109736745,
                                    0.9930502129379447,
                                    1.4106799684325873,
                                    2.107211513822367,
                                    1.1944794701178603,
                                    1.4416393703972692,
                                    0.12828289560456108,
                                    0.6659646758173887,
                                    0.0,
                                    1.0433914945657723,
                                    0.4583199006619747,
                                    1.229538982482281,
                                    1.3520094139470595,
                                    1.4100942605997475,
                                    1.9668220666893639,
                                    0.11237626976421919,
                                    0.026393635202959075,
                                    0.6661008348576178,
                                    0.06899456692000654,
                                    3.4562423277784178,
                                    0.007252359040301044,
                                    0.48750262492586277,
                                    0.013470693006530495,
                                    0.2550684388789688,
                                    1.0457629426147248,
                                    0.13095300509424077,
                                    0.0037216701645841205,
                                    0.015189713185065434,
                                    0.5145615784934165,
                                    3.933129806023245,
                                    0.5785282267506023,
                                    0.03035738107309097,
                                    0.0038136554039951576,
                                    0.004185805950489507,
                                    2.5145190260653356,
                                    1.5735244776703516,
                                    1.551209284164747e-05,
                                    1.0107118227241843e-05,
                                    1.5158984010578904e-07,
                                    1.2699168860633745,
                                    0.002041692928978175,
                                    0.004017624683623596,
                                    0.06136655107872232,
                                    3.9930117260669814e-05,
                                    0.01326513383847593,
                                    1.062063518152516,
                                    0.0003890493305124084,
                                    0.8855395920766694,
                                    6.597937241324746e-06,
                                    0.9903260650834529,
                                    0.0008217728274962428,
                                    5.853273883356429e-05,
                                    1.5616239896237073e-10,
                                    0.0016861055330899038,
                                    1.7472420018008732,
                                    0.016121195253291535,
                                    0.5318387562096342,
                                    0.393523659239444,
                                    0.4083319327561168,
                                    0.02544225497726517,
                                    0.004045649173047314,
                                    0.0007128886029916748,
                                    0.2600957907715397,
                                    3.657476248032575e-06,
                                    0.35581692088445477,
                                    0.42801939245313914,
                                    1.8441356694483582e-06,
                                    0.0010838206021153876,
                                    0.00113468985292518,
                                    0.07588844715405284,
                                    0.0031796283094834336,
                                    0.0027937505572949673,
                                    0.0001466614271475023,
                                    0.0025285818651867072,
                                    0.0007803869443843793,
                                    0.0,
                                    0.3012665017699764,
                                    1.0748878291118213,
                                    0.9771367801726065
                                ]
                            ]
                        },
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1728288856.917025,
                                "end_time": null,
                                "forecaster_count": 336,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1728288856.917025,
                            "end_time": null,
                            "forecaster_count": 336,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.912413925753918,
                                0.08758607424608203
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 53,
                "user_vote": null
            },
            "forecasts_count": 2394,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": "Despite our best efforts, Earth is still the only known planet in the universe to harbor any kind of life. Though plenty of our attention in this hunt has been focused on studying potentially habitable exoplanets, this question is concerned with the likelihood of finding [extraterrestrial life](https://en.wikipedia.org/wiki/Extraterrestrial_life#Planetary_habitability_in_the_Solar_System) in our own cosmic backyard."
        },
        {
            "id": 3825,
            "title": "Will the University of Cambridge suspend in-person classes for its 2020 Easter term?",
            "short_title": "",
            "url_title": "",
            "slug": "will-the-university-of-cambridge-suspend-in-person-classes-for-its-2020-easter-term",
            "author_id": 104761,
            "author_username": "Tamay",
            "coauthors": [],
            "created_at": "2020-03-10T19:28:29.377425Z",
            "published_at": "2020-03-11T11:00:00Z",
            "edited_at": "2025-09-05T17:28:50.072368Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-11T11:00:00Z",
            "comment_count": 4,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2020-03-18T12:01:00Z",
            "scheduled_close_time": "2020-04-26T22:00:00Z",
            "scheduled_resolve_time": "2020-04-26T22:00:00Z",
            "actual_resolve_time": "2020-03-18T12:01:00Z",
            "open_time": "2020-03-11T11:00:00Z",
            "nr_forecasters": 44,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32596,
                        "name": "2020 Leaderboard",
                        "slug": "2020_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": null,
                    "user_permission": "forecaster",
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-07-18T17:28:18.838588Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                }
            },
            "question": {
                "id": 3825,
                "title": "Will the University of Cambridge suspend in-person classes for its 2020 Easter term?",
                "created_at": "2020-03-10T19:28:29.377425Z",
                "open_time": "2020-03-11T11:00:00Z",
                "cp_reveal_time": "2020-03-12T19:08:59.997722Z",
                "spot_scoring_time": "2020-03-12T19:08:59.997722Z",
                "scheduled_resolve_time": "2020-04-26T22:00:00Z",
                "actual_resolve_time": "2020-03-18T12:01:00Z",
                "resolution_set_time": "2020-03-18T12:01:00Z",
                "scheduled_close_time": "2020-04-26T22:00:00Z",
                "actual_close_time": "2020-03-18T12:01:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "resolved",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": "yes",
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "",
                "resolution_criteria": "The [University of Cambridge](https://www.cam.ac.uk/) is a collegiate public research university in Cambridge, United Kingdom.\n\nIn the U.S., [some universities](https://edition.cnn.com/2020/03/09/us/coronavirus-university-college-classes/index.html) have asked its students not to returns to return to campus after Spring Break and said it would begin moving to virtual instruction for graduate and undergraduate classes amid the coronavirus outbreak.\n\n**Will the University of Cambridge suspend its in-person classes for at least some of its full-time courses for the 2020 Easter term?**\n\nThis question resolves positively if the University of Cambridge suspends its in-person classes for at least some of its full-time courses (undergraduate or postgraduate) for the majority of its Easter term (at least 50% of instruction-time). Easter term runs from the 27th April till the 18th of June. Resolution is by credible news report, or by inquiries submitted to the University.",
                "fine_print": "",
                "post_id": 3825,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1584534280.548228,
                                "end_time": null,
                                "forecaster_count": 44,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.91
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1584534280.548228,
                            "end_time": null,
                            "forecaster_count": 44,
                            "interval_lower_bounds": [
                                0.8
                            ],
                            "centers": [
                                0.91
                            ],
                            "interval_upper_bounds": [
                                0.95
                            ],
                            "forecast_values": [
                                0.08999999999999997,
                                0.91
                            ],
                            "means": [
                                0.8852053268852709
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.012311991125938967,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.5308639099448593,
                                    0.23761652173150052,
                                    1.4926611778108767,
                                    0.0,
                                    0.005412544205777419,
                                    0.0,
                                    0.0,
                                    1.1591153722694831,
                                    0.5766688751576644,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.03198626117820486,
                                    0.015241095655114558,
                                    0.0,
                                    0.0,
                                    0.0,
                                    1.8041194464869463,
                                    0.36831058532225447,
                                    0.0,
                                    0.14329729498878083,
                                    0.24372089258695392,
                                    2.972400647206816,
                                    0.0,
                                    0.5053145925075575,
                                    0.0,
                                    1.6753790321928617
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 0.9874019954026191,
                            "coverage": 0.14313856783409765,
                            "baseline_score": 10.192619006336544,
                            "spot_peer_score": 18.709021958513283,
                            "peer_archived_score": 0.9874019954026191,
                            "baseline_archived_score": 10.192619006336544,
                            "spot_peer_archived_score": 18.709021958513283
                        },
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1584440114.122917,
                                "end_time": null,
                                "forecaster_count": 42,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1584440114.122917,
                            "end_time": null,
                            "forecaster_count": 42,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.2780440791694917,
                                0.7219559208305083
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 2,
                "user_vote": null
            },
            "forecasts_count": 74,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 3821,
            "title": "Bitcoin Extremes: Will the value of 1 bitcoin fall to $1,000 or less before 2025?",
            "short_title": "Bitcoin Below $1000 before 2025",
            "url_title": "Bitcoin Below $1000 before 2025",
            "slug": "bitcoin-below-1000-before-2025",
            "author_id": 101465,
            "author_username": "Jgalt",
            "coauthors": [],
            "created_at": "2020-03-10T02:49:08.221349Z",
            "published_at": "2020-03-14T23:00:00Z",
            "edited_at": "2025-09-05T17:29:23.646245Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-14T23:00:00Z",
            "comment_count": 104,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2025-01-01T00:00:00Z",
            "scheduled_close_time": "2025-01-01T00:00:00Z",
            "scheduled_resolve_time": "2025-01-01T00:00:00Z",
            "actual_resolve_time": "2025-01-05T05:09:00Z",
            "open_time": "2020-03-14T23:00:00Z",
            "nr_forecasters": 626,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32602,
                        "name": "2016-2025 Leaderboard",
                        "slug": "2016_2025_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": null,
                    "user_permission": "forecaster",
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-07-18T17:28:18.838588Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3698,
                        "name": "Economy & Business",
                        "slug": "economy-business",
                        "emoji": "πŸ’Ό",
                        "description": "Economy & Business",
                        "type": "category"
                    },
                    {
                        "id": 3692,
                        "name": "Computing and Math",
                        "slug": "computing-and-math",
                        "emoji": "πŸ’»",
                        "description": "Computing and Math",
                        "type": "category"
                    },
                    {
                        "id": 3693,
                        "name": "Cryptocurrencies",
                        "slug": "cryptocurrencies",
                        "emoji": "πŸ’°",
                        "description": "Cryptocurrencies",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 3821,
                "title": "Bitcoin Extremes: Will the value of 1 bitcoin fall to $1,000 or less before 2025?",
                "created_at": "2020-03-10T02:49:08.221349Z",
                "open_time": "2020-03-14T23:00:00Z",
                "cp_reveal_time": "2020-03-16T09:10:38.662793Z",
                "spot_scoring_time": "2020-03-16T09:10:38.662793Z",
                "scheduled_resolve_time": "2025-01-01T00:00:00Z",
                "actual_resolve_time": "2025-01-05T05:09:00Z",
                "resolution_set_time": "2025-01-05T05:10:07.685970Z",
                "scheduled_close_time": "2025-01-01T00:00:00Z",
                "actual_close_time": "2025-01-01T00:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "resolved",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": "no",
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "",
                "resolution_criteria": "[Bitcoin](https://en.wikipedia.org/wiki/Bitcoin) is a [cryptocurrency](https://en.wikipedia.org/wiki/Cryptocurrency). It is a decentralized digital currency without a central bank or single administrator that can be sent from user to user on the peer-to-peer bitcoin network without the need for intermediaries.\n\nThe price of bitcoins has gone through cycles of appreciation and depreciation referred to by some as bubbles and busts. In 2011, the value of one bitcoin rapidly rose from about $0.30 to $32 before returning to $2. In the latter half of 2012 and during the 2012–13 Cypriot financial crisis, the bitcoin price began to rise again, reaching a high of $266 on 10 April 2013, before crashing to around $50. On 29 November 2013, the cost of one bitcoin rose to a peak of $1,242. In 2014, the price fell sharply, and as of April remained depressed at little more than half 2013 prices. As of August 2014 it was under $600.\n\nBitcoin prices reached their apogee in December 2017, at just shy of $20,000 per coin. Since then, prices have fallen roughly in half, and as of March 10, 2020 one bitcoin is valued at approximately $7,900. \n\n***Will the value of 1 bitcoin fall to $1,000 or less before 2025?***\n\nThis question will resolve as **Yes** if one bitcoin is valued at less than $1,000 USD at any time between March 1, 2020 to January 1, 2025, according to credible press reports, or a major cryptocurrency exchange or trading platform.\n\nA flash crash or market manipulation will suffice to resolve the question (so long as the genuine trading price is within the threshold).",
                "fine_print": "",
                "post_id": 3821,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1735654428.541459,
                                "end_time": null,
                                "forecaster_count": 624,
                                "interval_lower_bounds": [
                                    0.001
                                ],
                                "centers": [
                                    0.001
                                ],
                                "interval_upper_bounds": [
                                    0.01
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1735654428.541459,
                            "end_time": null,
                            "forecaster_count": 624,
                            "interval_lower_bounds": [
                                0.001
                            ],
                            "centers": [
                                0.001
                            ],
                            "interval_upper_bounds": [
                                0.01
                            ],
                            "forecast_values": [
                                0.999,
                                0.001
                            ],
                            "means": [
                                0.012447795531390651
                            ],
                            "histogram": [
                                [
                                    36.313657908791036,
                                    8.0335201368234,
                                    1.2184487262235235,
                                    0.5718767054011897,
                                    0.21939921486105834,
                                    0.2683790295155791,
                                    0.013081362513416732,
                                    0.08463547127434777,
                                    0.24174279808583235,
                                    0.04513040798481394,
                                    0.2044825202620096,
                                    0.002383983679532577,
                                    0.027810871528529076,
                                    0.0004808319324091611,
                                    5.914208157403417e-05,
                                    0.21873822479221122,
                                    0.00046419619694850313,
                                    0.0,
                                    3.0231981616869975e-05,
                                    0.0546039920339325,
                                    0.6160250823358324,
                                    0.004053603668909213,
                                    0.0007729840483649482,
                                    0.007371392860692458,
                                    0.011828099694200124,
                                    0.012926405880125896,
                                    3.0908268697085178e-09,
                                    0.0063332206379682204,
                                    0.04038720311385258,
                                    0.0,
                                    0.013796666556747012,
                                    0.0002514581980115147,
                                    0.0003228351866128089,
                                    0.0001994534326333785,
                                    0.0,
                                    0.0,
                                    4.427506195033152e-09,
                                    0.0,
                                    5.255912463468721e-09,
                                    0.0,
                                    0.004673800564445113,
                                    0.0077863724420832205,
                                    0.0,
                                    0.0,
                                    0.0,
                                    1.1500914810567727e-07,
                                    0.015701222007347266,
                                    0.010992934803464487,
                                    8.749220073717476e-10,
                                    0.0008092352483615844,
                                    0.005710489295053555,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    1.7144723517582215e-09,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0016089584143319177,
                                    0.0,
                                    0.010727511239914292,
                                    0.0,
                                    0.0,
                                    0.00019574033595006786,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    4.223603824085283e-08,
                                    0.0,
                                    0.0,
                                    0.0009564944071794217,
                                    0.0,
                                    0.00014490466241507235,
                                    0.0,
                                    0.0,
                                    4.966244393244546e-06,
                                    1.2821485642170183e-07,
                                    0.004589087615131572,
                                    0.0,
                                    0.0,
                                    0.15724896250703826,
                                    0.0,
                                    9.703140700763592e-08,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0001382405804358679,
                                    0.0,
                                    0.0033705124913088157,
                                    0.0,
                                    1.354259820678143e-07,
                                    0.0,
                                    3.420791400896524e-05,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0037636433224026
                                ]
                            ]
                        },
                        "score_data": {
                            "baseline_score": 87.52565730237225,
                            "peer_score": 16.344853986516885,
                            "coverage": 0.9999823189650725,
                            "relative_legacy_score": 0.0,
                            "weighted_coverage": 0.9999823189650725,
                            "spot_peer_score": 6.5859648247977844,
                            "spot_baseline_score": 11.103131238874395,
                            "baseline_archived_score": 87.52565730237225,
                            "peer_archived_score": 16.344853986516885,
                            "relative_legacy_archived_score": 0.0,
                            "spot_peer_archived_score": 6.5859648247977844,
                            "spot_baseline_archived_score": 11.103131238874395
                        },
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1728287104.586668,
                                "end_time": null,
                                "forecaster_count": 611,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1728287104.586668,
                            "end_time": null,
                            "forecaster_count": 611,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.9995,
                                0.0005
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 44,
                "user_vote": null
            },
            "forecasts_count": 1545,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 3820,
            "title": "Bitcoin Extremes: Will 1 bitcoin be worth $100,000 or more before 2025?",
            "short_title": "BTC Worth Over 100k USD by 2025?",
            "url_title": "BTC Worth Over 100k USD by 2025?",
            "slug": "btc-worth-over-100k-usd-by-2025",
            "author_id": 101465,
            "author_username": "Jgalt",
            "coauthors": [],
            "created_at": "2020-03-10T02:44:56.581623Z",
            "published_at": "2020-03-12T23:00:00Z",
            "edited_at": "2025-11-10T13:58:17.289944Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2020-03-12T23:00:00Z",
            "comment_count": 331,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2024-12-05T02:00:00Z",
            "scheduled_close_time": "2024-12-31T23:00:00Z",
            "scheduled_resolve_time": "2025-01-01T00:00:00Z",
            "actual_resolve_time": "2024-12-05T02:00:00Z",
            "open_time": "2020-03-12T23:00:00Z",
            "nr_forecasters": 1145,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32602,
                        "name": "2016-2025 Leaderboard",
                        "slug": "2016_2025_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": null,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-07-18T17:28:18.838588Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": null,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-07-18T17:28:18.838588Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3698,
                        "name": "Economy & Business",
                        "slug": "economy-business",
                        "emoji": "πŸ’Ό",
                        "description": "Economy & Business",
                        "type": "category"
                    },
                    {
                        "id": 3692,
                        "name": "Computing and Math",
                        "slug": "computing-and-math",
                        "emoji": "πŸ’»",
                        "description": "Computing and Math",
                        "type": "category"
                    },
                    {
                        "id": 3693,
                        "name": "Cryptocurrencies",
                        "slug": "cryptocurrencies",
                        "emoji": "πŸ’°",
                        "description": "Cryptocurrencies",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 3820,
                "title": "Bitcoin Extremes: Will 1 bitcoin be worth $100,000 or more before 2025?",
                "created_at": "2020-03-10T02:44:56.581623Z",
                "open_time": "2020-03-12T23:00:00Z",
                "cp_reveal_time": "2020-03-14T12:23:00Z",
                "spot_scoring_time": "2020-03-14T12:23:00Z",
                "scheduled_resolve_time": "2025-01-01T00:00:00Z",
                "actual_resolve_time": "2024-12-05T02:00:00Z",
                "resolution_set_time": "2024-12-05T12:45:30.911567Z",
                "scheduled_close_time": "2024-12-31T23:00:00Z",
                "actual_close_time": "2024-12-05T02:00:00Z",
                "type": "binary",
                "options": [],
                "group_variable": "",
                "status": "resolved",
                "possibilities": {
                    "type": "binary"
                },
                "resolution": "yes",
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "default_score_type": "peer",
                "default_aggregation_method": "recency_weighted",
                "label": "",
                "unit": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "inbound_outcome_count": null,
                "scaling": {
                    "range_min": null,
                    "range_max": null,
                    "nominal_min": null,
                    "nominal_max": null,
                    "zero_point": null,
                    "open_upper_bound": null,
                    "open_lower_bound": null,
                    "inbound_outcome_count": null,
                    "continuous_range": null
                },
                "group_rank": null,
                "description": "[Bitcoin](https://en.wikipedia.org/wiki/Bitcoin) is a [cryptocurrency](https://en.wikipedia.org/wiki/Cryptocurrency). It is a decentralized digital currency without a central bank or single administrator that can be sent from user to user on the peer-to-peer bitcoin network without the need for intermediaries.\n\nThe price of bitcoins has gone through cycles of appreciation and depreciation referred to by some as bubbles and busts. In 2011, the value of one bitcoin rapidly rose from about $0.30 to $32 before returning to $2. In the latter half of 2012 and during the 2012–13 Cypriot financial crisis, the bitcoin price began to rise again, reaching a high of $266 on 10 April 2013, before crashing to around $50. On 29 November 2013, the cost of one bitcoin rose to a peak of $1,242. In 2014, the price fell sharply, and as of April remained depressed at little more than half 2013 prices. As of August 2014 it was under $600.\n\nBitcoin prices reached their apogee in December 2017, at just shy of $20,000 per coin. Since then, prices have fallen roughly in half, and as of March 10, 2020 one bitcoin is valued at approximately $7,900. \n\n***Will 1 bitcoin be worth $100,000 or more before 2025?***",
                "resolution_criteria": "This question will resolve as **Yes** if one bitcoin is valued at $100,000 USD or greater at any time before January 1, 2025, according to credible press reports or a cryptocurrency exchange or trading platform.  The valuation will be in nominal USD, not adjusted for inflation.",
                "fine_print": "",
                "post_id": 3820,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1733401177.505398,
                                "end_time": null,
                                "forecaster_count": 1146,
                                "interval_lower_bounds": [
                                    0.846
                                ],
                                "centers": [
                                    0.999
                                ],
                                "interval_upper_bounds": [
                                    0.999
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1733401177.505398,
                            "end_time": null,
                            "forecaster_count": 1146,
                            "interval_lower_bounds": [
                                0.846
                            ],
                            "centers": [
                                0.999
                            ],
                            "interval_upper_bounds": [
                                0.999
                            ],
                            "forecast_values": [
                                0.0010000000000000009,
                                0.999
                            ],
                            "means": [
                                0.8706031488576607
                            ],
                            "histogram": [
                                [
                                    0.03168396742634666,
                                    0.25780821051895075,
                                    0.08475300642635775,
                                    0.09271549513156224,
                                    0.4203465245924317,
                                    0.589766469125785,
                                    0.009522691301922761,
                                    0.05478553064551548,
                                    0.031278594451896465,
                                    0.1272417659041971,
                                    0.17427541482874975,
                                    0.06504645699434487,
                                    0.13494174523355904,
                                    0.10937631110743017,
                                    0.05305871046050714,
                                    0.12535007569560044,
                                    0.013151090342316533,
                                    0.05777015805671247,
                                    0.022331509540814583,
                                    0.09763300734261307,
                                    0.19141309650265811,
                                    0.020704798763442868,
                                    0.014559540437531182,
                                    0.011570759593403012,
                                    1.360122990215224e-11,
                                    0.15852042544722234,
                                    3.9135813366269475e-05,
                                    1.582299691853845e-07,
                                    0.0035171772308180585,
                                    0.0,
                                    0.10484935202293852,
                                    0.009705148187975493,
                                    0.06227350539590257,
                                    0.041519873436425506,
                                    0.00255926453487317,
                                    0.5144060385583545,
                                    0.06206700430725155,
                                    1.271951161741608e-05,
                                    0.00035786965470130074,
                                    0.14228246118599758,
                                    0.5977789684317748,
                                    0.013259758375582591,
                                    2.6115805711841727e-05,
                                    6.959793289902788e-06,
                                    0.23605577584961998,
                                    0.07009629506571047,
                                    0.05400310548080969,
                                    0.0371026936162957,
                                    0.08108888070641329,
                                    0.00887999613096119,
                                    0.7608788641318762,
                                    0.014415618967355076,
                                    0.00011176211671280222,
                                    5.957770434812664e-07,
                                    0.0625317267035941,
                                    0.1368560070640859,
                                    0.02458170394116928,
                                    0.05601216538963844,
                                    0.0,
                                    0.015219621524193662,
                                    0.8830808510940678,
                                    0.041479766782462416,
                                    0.4598071048301912,
                                    0.0024469860120128043,
                                    0.00032667829688967317,
                                    0.3687435666516813,
                                    0.0026078202964682274,
                                    0.07837160304707162,
                                    0.026792935050802675,
                                    0.009435270974482107,
                                    2.278413335453784,
                                    0.30913042421675946,
                                    2.1148009684490973e-05,
                                    0.1592945053981394,
                                    5.639463999336443e-06,
                                    1.290879677252081,
                                    6.784579182124251e-06,
                                    4.503157299983735e-06,
                                    0.027473774028054097,
                                    0.4450766709568418,
                                    2.2601715025219726,
                                    4.5983147810856384e-11,
                                    1.0611476531613961,
                                    0.3719704908128753,
                                    0.5831212894615119,
                                    4.124727512243995,
                                    0.39753881728720225,
                                    1.0766761894741603,
                                    0.49145859126876884,
                                    0.5951899991770118,
                                    1.6668846154833574,
                                    0.5034119513232616,
                                    0.01985374419049434,
                                    0.12201564230580789,
                                    0.3413202620692296,
                                    1.7261861179155136,
                                    0.8538190706428497,
                                    0.4740980791303103,
                                    0.6889002272410859,
                                    36.40248186041509
                                ]
                            ]
                        },
                        "score_data": {
                            "baseline_score": -92.09042639547678,
                            "peer_score": -3.298501657091086,
                            "coverage": 0.9846810207563161,
                            "relative_legacy_score": 0.0,
                            "weighted_coverage": 0.9999943241532506,
                            "spot_peer_score": -10.636488137076837,
                            "baseline_archived_score": -92.09042639547678,
                            "peer_archived_score": -3.298501657091086,
                            "relative_legacy_archived_score": 0.0,
                            "spot_peer_archived_score": -10.636488137076837
                        },
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1728288946.753436,
                                "end_time": null,
                                "forecaster_count": 1080,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1728288946.753436,
                            "end_time": null,
                            "forecaster_count": 1080,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.9607333635564507,
                                0.039266636443549344
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 112,
                "user_vote": null
            },
            "forecasts_count": 4564,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": "[Bitcoin](https://en.wikipedia.org/wiki/Bitcoin) is a [cryptocurrency](https://en.wikipedia.org/wiki/Cryptocurrency). It is a decentralized digital currency without a central bank or single administrator that can be sent from user to user on the peer-to-peer bitcoin network without the need for intermediaries.\n\nThe price of bitcoins has gone through cycles of appreciation and depreciation referred to by some as bubbles and busts. In 2011, the value of one bitcoin rapidly rose from about $0.30 to $32 before returning to $2. In the latter half of 2012 and during the 2012–13 Cypriot financial crisis, the bitcoin price began to rise again, reaching a high of $266 on 10 April 2013, before crashing to around $50. On 29 November 2013, the cost of one bitcoin rose to a peak of $1,242. In 2014, the price fell sharply, and as of April remained depressed at little more than half 2013 prices. As of August 2014 it was under $600.\n\nBitcoin prices reached their apogee in December 2017, at just shy of $20,000 per coin. Since then, prices have fallen roughly in half, and as of March 10, 2020 one bitcoin is valued at approximately $7,900. \n\n***Will 1 bitcoin be worth $100,000 or more before 2025?***"
        }
    ]
}