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=3500
HTTP 200 OK
Allow: OPTIONS, GET
Content-Type: application/json
Vary: Accept

{
    "count": 5983,
    "next": "http://www.metaculus.com/api2/questions/?format=api&limit=20&offset=3520",
    "previous": "http://www.metaculus.com/api2/questions/?format=api&limit=20&offset=3480",
    "results": [
        {
            "id": 14278,
            "title": "In 2023 will WHO declare a new Global Health Emergency?",
            "short_title": "New WHO Global Health Emergency in 2023",
            "url_title": "New WHO Global Health Emergency in 2023",
            "slug": "new-who-global-health-emergency-in-2023",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T23:49:29.844323Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:29:27.098766Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 7,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-31T23:00:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2024-01-01T21:27:00Z",
            "actual_resolve_time": "2024-01-01T21:27:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 140,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_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"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2016,
                    "type": "tournament",
                    "name": "ACX 2023 Prediction Contest",
                    "slug": "2023-contest",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                    "prize_pool": null,
                    "start_date": "2022-12-21T12:00:00Z",
                    "close_date": "2024-01-30T12:00:00Z",
                    "forecasting_end_date": "2024-01-01T00:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-04-02T05:06:28.757115Z",
                    "score_type": "relative_legacy_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": 14278,
                "title": "In 2023 will WHO declare a new Global Health Emergency?",
                "created_at": "2022-12-21T23:49:29.844323Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2024-01-01T21:27:00Z",
                "actual_resolve_time": "2024-01-01T21:27:00Z",
                "resolution_set_time": "2024-01-01T21:27:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-31T23: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": "To clarify this question, Scott Alexander wrote:\n\n>For reference, the last three were monkeypox, COVID, and Ebola.\n\nThis question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\n\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14278,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1704054215.725369,
                                "end_time": null,
                                "forecaster_count": 140,
                                "interval_lower_bounds": [
                                    0.001
                                ],
                                "centers": [
                                    0.01
                                ],
                                "interval_upper_bounds": [
                                    0.01
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1704054215.725369,
                            "end_time": null,
                            "forecaster_count": 140,
                            "interval_lower_bounds": [
                                0.001
                            ],
                            "centers": [
                                0.01
                            ],
                            "interval_upper_bounds": [
                                0.01
                            ],
                            "forecast_values": [
                                0.99,
                                0.01
                            ],
                            "means": [
                                0.019307203289460086
                            ],
                            "histogram": [
                                [
                                    8.542413497154236,
                                    9.895844235982494,
                                    0.4935633693964045,
                                    1.2603923927027345,
                                    0.10640565876855741,
                                    0.6179894065553551,
                                    0.035194051858112294,
                                    0.06945972600714188,
                                    0.08529326682549197,
                                    0.07741760490450401,
                                    0.1997443343014278,
                                    0.0,
                                    0.10348424816505666,
                                    0.011291666108866073,
                                    0.01680308339856936,
                                    0.058692731900529704,
                                    0.051883385354741025,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.08567996425057256,
                                    0.0,
                                    0.01452098344840427,
                                    0.012124010973471116,
                                    0.015748442329264648,
                                    0.004055812482600446,
                                    8.417018276060128e-05,
                                    0.006458154939381218,
                                    0.15949104550614207,
                                    0.0,
                                    0.07845994975436553,
                                    0.00017167937732653064,
                                    0.08725758711552724,
                                    0.05574742942757396,
                                    0.0,
                                    0.004061039628568211,
                                    0.0010253122579802411,
                                    0.0017381499280693725,
                                    0.0,
                                    0.00039676770828342244,
                                    0.0018634243442600309,
                                    0.00030643583271717844,
                                    0.0014435398625015404,
                                    0.0018269713829662736,
                                    0.0,
                                    0.0020801707096139324,
                                    0.0026957474042702497,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00023216599393014261,
                                    0.0005680730021109231,
                                    0.0,
                                    0.0,
                                    0.00046777383710474576,
                                    0.0,
                                    0.0,
                                    0.00034944086132033283,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0029317388547503596,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    6.799396622574348e-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.0001229500427680457
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 15.90369095742732,
                            "coverage": 0.999939715271478,
                            "baseline_score": 63.96776126457363,
                            "spot_peer_score": 7.95716732343256,
                            "peer_archived_score": 15.90369095742732,
                            "baseline_archived_score": 63.96776126457363,
                            "spot_peer_archived_score": 7.95716732343256
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1704054215.753688,
                                "end_time": null,
                                "forecaster_count": 140,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1704054215.753688,
                            "end_time": null,
                            "forecaster_count": 140,
                            "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": 5,
                "user_vote": null
            },
            "forecasts_count": 506,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 14277,
            "title": "In 2023 will a successful deepfake attempt causing real damage make the front page of a major news source?",
            "short_title": "Deepfake Attempt in Major News in 2023",
            "url_title": "Deepfake Attempt in Major News in 2023",
            "slug": "deepfake-attempt-in-major-news-in-2023",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T23:46:35.223637Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:29:00.811408Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 23,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-31T23:00:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2024-03-05T02:00:00Z",
            "actual_resolve_time": "2024-03-05T02:00:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 211,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "topic": [
                    {
                        "id": 15869,
                        "name": "Artificial Intelligence",
                        "slug": "ai",
                        "emoji": "πŸ€–",
                        "type": "topic"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "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": 2345,
                        "type": "question_series",
                        "name": "AI Safety",
                        "slug": "ai-safety",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/ai-safety.png",
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": true,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-09-23T20:53:03.937228Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2345,
                    "type": "question_series",
                    "name": "AI Safety",
                    "slug": "ai-safety",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/ai-safety.png",
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": true,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-09-23T20:53:03.937228Z",
                    "score_type": "relative_legacy_tournament",
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3692,
                        "name": "Computing and Math",
                        "slug": "computing-and-math",
                        "emoji": "πŸ’»",
                        "description": "Computing and Math",
                        "type": "category"
                    },
                    {
                        "id": 3694,
                        "name": "Artificial Intelligence",
                        "slug": "artificial-intelligence",
                        "emoji": "πŸ€–",
                        "description": "Artificial Intelligence",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 14277,
                "title": "In 2023 will a successful deepfake attempt causing real damage make the front page of a major news source?",
                "created_at": "2022-12-21T23:46:35.223637Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2024-03-05T02:00:00Z",
                "actual_resolve_time": "2024-03-05T02:00:00Z",
                "resolution_set_time": "2024-03-05T02:00:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-31T23: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": "To clarify this question, Scott Alexander wrote:\r\n\r\n>A deepfake is defined as any sophisticated AI-generated image, video, or audio meant to mislead. For this question to resolve positively, it must actually harm someone, not just exist. Valid forms of harm include but are not limited to costing someone money, or making some specific name-able person genuinely upset (not just β€œfor all we know, people could have seen this and been upset by it”). The harm must come directly from the victim believing the deepfake, so somebody seeing the deepfake and being upset because the existence of deepfakes makes them sad does not count.\r\n\r\nThis question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\r\n\r\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14277,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1704055541.337828,
                                "end_time": null,
                                "forecaster_count": 211,
                                "interval_lower_bounds": [
                                    0.61
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1704055541.337828,
                            "end_time": null,
                            "forecaster_count": 211,
                            "interval_lower_bounds": [
                                0.61
                            ],
                            "centers": [
                                0.75
                            ],
                            "interval_upper_bounds": [
                                0.85
                            ],
                            "forecast_values": [
                                0.25,
                                0.75
                            ],
                            "means": [
                                0.7191940696183932
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.048121039113248616,
                                    0.19166293126582734,
                                    0.0003462323342323279,
                                    0.050122941994573476,
                                    0.6348744632260582,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.17913947771215027,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.1759421971393575,
                                    0.0,
                                    0.0,
                                    0.04594474022563397,
                                    0.0,
                                    0.3694483204563469,
                                    0.4742843309584288,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0012913378652702006,
                                    0.0017634445102763588,
                                    0.0,
                                    0.00010721501656939712,
                                    0.0,
                                    0.0014650893533372752,
                                    1.8087530660811264e-05,
                                    0.0,
                                    0.25760303524266354,
                                    2.6834047535454608e-05,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.038526406998244125,
                                    0.0,
                                    0.02888047718633346,
                                    0.0,
                                    0.00019827828260084586,
                                    0.22595165106701307,
                                    0.0031799981659298834,
                                    0.02032927662557642,
                                    5.947184664499363e-05,
                                    0.0,
                                    0.0,
                                    0.9335357652035381,
                                    1.1188447461023694,
                                    0.0,
                                    0.0,
                                    2.0724755392204253e-05,
                                    0.0,
                                    0.7599782803430549,
                                    0.0018740980128890976,
                                    1.1610956425784947e-05,
                                    0.0,
                                    0.6576521131460338,
                                    0.6455256639120506,
                                    0.022325321496808995,
                                    0.0,
                                    0.0,
                                    0.18626098051616174,
                                    0.07529257444746637,
                                    0.2350249091764871,
                                    0.8457422435471429,
                                    0.2218737036574894,
                                    0.3176672314536438,
                                    1.0892072255761418,
                                    0.0,
                                    0.45421647844544405,
                                    0.03221566223339095,
                                    1.0879591137900522,
                                    2.5339889817975294,
                                    0.09636183705588051,
                                    0.0002337110479739674,
                                    0.30729107066504735,
                                    0.33036733016623304,
                                    1.08695667097287,
                                    0.20777372101338518,
                                    1.4207761980955071,
                                    1.5202105209764833,
                                    0.15925294275147447,
                                    1.762610038276587,
                                    0.0034055164674336082,
                                    0.08528882126244498,
                                    0.13057035881012208,
                                    0.010062591580686188,
                                    1.4786314451067513,
                                    0.050179803587652394,
                                    0.008899220270880116,
                                    0.06178306548029048,
                                    0.0,
                                    2.625008391697846,
                                    0.07595421776499353,
                                    0.011382468381371054,
                                    0.004697674610515107,
                                    2.1483447882964763
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 28.062256092230175,
                            "coverage": 0.9999386903422994,
                            "baseline_score": 30.801317766672405,
                            "spot_peer_score": 12.361159100100643,
                            "peer_archived_score": 28.062256092230175,
                            "baseline_archived_score": 30.801317766672405,
                            "spot_peer_archived_score": 12.361159100100643
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1704055541.374067,
                                "end_time": null,
                                "forecaster_count": 211,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1704055541.374067,
                            "end_time": null,
                            "forecaster_count": 211,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.2941723788387156,
                                0.7058276211612844
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 13,
                "user_vote": null
            },
            "forecasts_count": 637,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 14276,
            "title": "In 2023 will a cultured meat product be available in at least one US store or restaurant for less than $30?",
            "short_title": "Cultured Meat for Sale in US",
            "url_title": "Cultured Meat for Sale in US",
            "slug": "cultured-meat-for-sale-in-us",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T23:43:48.793598Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:29:21.905645Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 27,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-31T23:00:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2024-03-05T02:00:00Z",
            "actual_resolve_time": "2024-03-05T02:00:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 119,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_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"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2016,
                    "type": "tournament",
                    "name": "ACX 2023 Prediction Contest",
                    "slug": "2023-contest",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                    "prize_pool": null,
                    "start_date": "2022-12-21T12:00:00Z",
                    "close_date": "2024-01-30T12:00:00Z",
                    "forecasting_end_date": "2024-01-01T00:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-04-02T05:06:28.757115Z",
                    "score_type": "relative_legacy_tournament",
                    "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": 14276,
                "title": "In 2023 will a cultured meat product be available in at least one US store or restaurant for less than $30?",
                "created_at": "2022-12-21T23:43:48.793598Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2024-03-05T02:00:00Z",
                "actual_resolve_time": "2024-03-05T02:00:00Z",
                "resolution_set_time": "2024-03-05T02:00:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-31T23: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": "This question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\n\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14276,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1704061722.643676,
                                "end_time": null,
                                "forecaster_count": 119,
                                "interval_lower_bounds": [
                                    0.01
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.08
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1704061722.643676,
                            "end_time": null,
                            "forecaster_count": 119,
                            "interval_lower_bounds": [
                                0.01
                            ],
                            "centers": [
                                0.05
                            ],
                            "interval_upper_bounds": [
                                0.08
                            ],
                            "forecast_values": [
                                0.95,
                                0.05
                            ],
                            "means": [
                                0.07839123895559946
                            ],
                            "histogram": [
                                [
                                    1.0,
                                    7.101194102254289,
                                    0.8311817298637468,
                                    0.6625462255355891,
                                    0.0,
                                    3.623060226912925,
                                    0.7932365036914352,
                                    0.4981746581096201,
                                    0.7572020106685832,
                                    0.0,
                                    1.6123787292597185,
                                    0.0,
                                    0.0,
                                    0.08861707317907822,
                                    0.3598416529331806,
                                    0.3161830433814315,
                                    0.06174923390179019,
                                    0.05531752549795301,
                                    0.0,
                                    0.0,
                                    0.015325463918597095,
                                    0.351649032083755,
                                    0.0,
                                    0.0,
                                    0.004791327568396407,
                                    0.6819105981204991,
                                    0.06565382983531652,
                                    0.19534339952904467,
                                    0.051228555313319275,
                                    0.0,
                                    0.11427651601738292,
                                    0.021544293446415303,
                                    0.0,
                                    0.0,
                                    0.001788932117281614,
                                    0.18739985602873865,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.21801330390135482,
                                    0.028431918152454893,
                                    0.0787000215845657,
                                    0.0,
                                    0.042412849513226145,
                                    0.0009990436219676896,
                                    0.045118521580036694,
                                    0.010996726655187663,
                                    0.005717924048220845,
                                    0.034774264927130684,
                                    0.0016018818900152732,
                                    0.19668176029668685,
                                    0.0022141635174052336,
                                    0.0,
                                    0.023114765047599694,
                                    0.0,
                                    0.0,
                                    0.01503553762272469,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.051623172726313005,
                                    0.04808888351073279,
                                    0.00043228111401378617,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.010212357276173556,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0003675276093553673,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.020066327556907168,
                                    0.0,
                                    0.0,
                                    0.017369186833703205,
                                    0.004376584997741002,
                                    0.0,
                                    0.0008798767048542106,
                                    0.0,
                                    0.0005044270514921816,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.011938683744747294,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 12.03042942111857,
                            "coverage": 0.9999381661791817,
                            "baseline_score": 26.6672835245086,
                            "spot_peer_score": 30.69393372323295,
                            "peer_archived_score": 12.03042942111857,
                            "baseline_archived_score": 26.6672835245086,
                            "spot_peer_archived_score": 30.69393372323295
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1704061722.675122,
                                "end_time": null,
                                "forecaster_count": 119,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1704061722.675122,
                            "end_time": null,
                            "forecaster_count": 119,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.9962474436069755,
                                0.0037525563930245016
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 5,
                "user_vote": null
            },
            "forecasts_count": 443,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 14275,
            "title": "On January 1, 2024, will an ordinary person be able to take a self-driving taxi from Oakland β†’ SF during rush hour?",
            "short_title": "Self-Driving Taxi from Oakland-SF Jan 1, 2024",
            "url_title": "Self-Driving Taxi from Oakland-SF Jan 1, 2024",
            "slug": "self-driving-taxi-from-oakland-sf-jan-1-2024",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T23:41:10.462938Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:28:53.593124Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 17,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-31T23:00:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2024-03-05T02:00:00Z",
            "actual_resolve_time": "2024-03-05T02:00:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 107,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_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"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2016,
                    "type": "tournament",
                    "name": "ACX 2023 Prediction Contest",
                    "slug": "2023-contest",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                    "prize_pool": null,
                    "start_date": "2022-12-21T12:00:00Z",
                    "close_date": "2024-01-30T12:00:00Z",
                    "forecasting_end_date": "2024-01-01T00:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-04-02T05:06:28.757115Z",
                    "score_type": "relative_legacy_tournament",
                    "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": 3701,
                        "name": "Technology",
                        "slug": "technology",
                        "emoji": "βš™οΈ",
                        "description": "Technology",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 14275,
                "title": "On January 1, 2024, will an ordinary person be able to take a self-driving taxi from Oakland β†’ SF during rush hour?",
                "created_at": "2022-12-21T23:41:10.462938Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2024-03-05T02:00:00Z",
                "actual_resolve_time": "2024-03-05T02:00:00Z",
                "resolution_set_time": "2024-03-05T02:00:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-31T23: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": "To clarify this question, Scott Alexander wrote:\n\n>Scott Alexander will spend some time January 1 checking whether he can get via his house in Oakland to the Presidio in San Francisco via self-driving car at rush hour. He will probably not actually take the trip, but he will resolve this as positive if it looks like he could take the trip with less than one hour of figuring out how and less than $500 cost. Currently (late 2022) he estimates he cannot do this, because the self-driving taxis in SF only operate at night and won’t cross the bridge into Oakland. \n\nThis question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\n\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14275,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1704043239.015539,
                                "end_time": null,
                                "forecaster_count": 107,
                                "interval_lower_bounds": [
                                    0.001
                                ],
                                "centers": [
                                    0.01
                                ],
                                "interval_upper_bounds": [
                                    0.01
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1704043239.015539,
                            "end_time": null,
                            "forecaster_count": 107,
                            "interval_lower_bounds": [
                                0.001
                            ],
                            "centers": [
                                0.01
                            ],
                            "interval_upper_bounds": [
                                0.01
                            ],
                            "forecast_values": [
                                0.99,
                                0.01
                            ],
                            "means": [
                                0.02153524472371504
                            ],
                            "histogram": [
                                [
                                    8.799070373299944,
                                    8.170362753066076,
                                    0.34604730412770185,
                                    0.3078430023150093,
                                    0.193814554960407,
                                    0.10379867238529417,
                                    0.06116097247640478,
                                    0.031633893508431155,
                                    0.010964104844829023,
                                    0.002239640883868526,
                                    0.10527098651948565,
                                    0.012983441907495109,
                                    0.06961427999681491,
                                    0.0,
                                    0.024457194516846498,
                                    0.00877815024470517,
                                    0.0019873070315947383,
                                    0.07304504904895737,
                                    0.0,
                                    0.00921220371390995,
                                    0.32543863778817983,
                                    0.015303611543873974,
                                    0.0,
                                    0.0,
                                    0.11118023713473274,
                                    0.0025157570941807335,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.402484255068049,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.000760295965181982,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0017571177879369575,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00013237564647172888,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0003727544410870008,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    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": 11.242355589148993,
                            "coverage": 0.9999373101921324,
                            "baseline_score": 82.18657563018095,
                            "spot_peer_score": 21.302110729838002,
                            "peer_archived_score": 11.242355589148993,
                            "baseline_archived_score": 82.18657563018095,
                            "spot_peer_archived_score": 21.302110729838002
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1704043239.015539,
                                "end_time": null,
                                "forecaster_count": 107,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1704043239.015539,
                            "end_time": null,
                            "forecaster_count": 107,
                            "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": 4,
                "user_vote": null
            },
            "forecasts_count": 325,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 14274,
            "title": "In 2023 will Google, Meta, Amazon, or Apple release an AR headset?",
            "short_title": "Release of AR Headset in 2023",
            "url_title": "Release of AR Headset in 2023",
            "slug": "release-of-ar-headset-in-2023",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T23:37:51.265997Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:28:53.923494Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 13,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-31T23:00:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2024-01-01T21:11:00Z",
            "actual_resolve_time": "2024-01-01T21:11:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 136,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_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"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2016,
                    "type": "tournament",
                    "name": "ACX 2023 Prediction Contest",
                    "slug": "2023-contest",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                    "prize_pool": null,
                    "start_date": "2022-12-21T12:00:00Z",
                    "close_date": "2024-01-30T12:00:00Z",
                    "forecasting_end_date": "2024-01-01T00:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-04-02T05:06:28.757115Z",
                    "score_type": "relative_legacy_tournament",
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3692,
                        "name": "Computing and Math",
                        "slug": "computing-and-math",
                        "emoji": "πŸ’»",
                        "description": "Computing and Math",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 14274,
                "title": "In 2023 will Google, Meta, Amazon, or Apple release an AR headset?",
                "created_at": "2022-12-21T23:37:51.265997Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2024-01-01T21:11:00Z",
                "actual_resolve_time": "2024-01-01T21:11:00Z",
                "resolution_set_time": "2024-01-01T21:11:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-31T23: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": "To clarify this question, Scott Alexander wrote:\n\n>An AR (Augmented Reality) headset is defined as a wearable where the user can see through it (unlike a VR headset) to the outside world, and it adds new visual information on top of what the viewer sees. It’s not sufficient to have glasses that have functionality like taking pictures, or that modify the visual field with filters. The new visual information must be in some way based on what the user is doing or seeing. Microsoft Hololens would qualify, but is already extant. Must be released by one of Meta, Google, Apple, Amazon specifically, and must be available for purchase by the public in some capacity.\n\nThis question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\n\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14274,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1704056909.14474,
                                "end_time": null,
                                "forecaster_count": 136,
                                "interval_lower_bounds": [
                                    0.96
                                ],
                                "centers": [
                                    0.99
                                ],
                                "interval_upper_bounds": [
                                    0.99
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1704056909.14474,
                            "end_time": null,
                            "forecaster_count": 136,
                            "interval_lower_bounds": [
                                0.96
                            ],
                            "centers": [
                                0.99
                            ],
                            "interval_upper_bounds": [
                                0.99
                            ],
                            "forecast_values": [
                                0.010000000000000009,
                                0.99
                            ],
                            "means": [
                                0.9658084323012952
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.0035540049440662192,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.004808603982330065,
                                    0.0,
                                    0.028134616462870868,
                                    0.0,
                                    0.0037758065654080897,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0014118077887880845,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    2.3420384327791474e-05,
                                    0.0,
                                    0.001278709657362659,
                                    0.0,
                                    0.0,
                                    0.019269465912711076,
                                    0.0,
                                    0.004440866378448695,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.016373856132249905,
                                    0.012118808097577202,
                                    0.005621464334459837,
                                    0.0,
                                    0.0,
                                    0.004097042992897177,
                                    0.013079655926197501,
                                    0.012502909516856476,
                                    0.0,
                                    0.0,
                                    0.005099913050801187,
                                    0.002782817962687082,
                                    0.0026923492397866564,
                                    0.0001730545336565674,
                                    0.00036331279413284875,
                                    0.0,
                                    0.0,
                                    6.366320513376257e-05,
                                    0.007057249750041771,
                                    0.0,
                                    0.13993964242667056,
                                    0.004266101672805283,
                                    9.979284736472126e-05,
                                    0.0,
                                    0.00879386852020419,
                                    0.2430584578982513,
                                    0.0016160629346007723,
                                    0.0,
                                    0.0,
                                    0.02250410437691608,
                                    0.0,
                                    0.17755514854653304,
                                    0.07796695385848908,
                                    0.018720179164117424,
                                    0.0010425639467359158,
                                    0.06058884845478374,
                                    0.5671762873624419,
                                    0.10499520617908527,
                                    0.0,
                                    0.0,
                                    0.0065476163671496284,
                                    0.507098830520526,
                                    0.07001872617556598,
                                    0.01532010874981921,
                                    0.0,
                                    0.05830136212887188,
                                    1.339346795298106,
                                    2.033240849240745,
                                    1.3205947193144234,
                                    1.3629038517172622,
                                    13.536971643362637
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 24.150563316790073,
                            "coverage": 0.9999369454270151,
                            "baseline_score": 50.46845050990209,
                            "spot_peer_score": 24.719356987683703,
                            "peer_archived_score": 24.150563316790073,
                            "baseline_archived_score": 50.46845050990209,
                            "spot_peer_archived_score": 24.719356987683703
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1704056909.182923,
                                "end_time": null,
                                "forecaster_count": 136,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1704056909.182923,
                            "end_time": null,
                            "forecaster_count": 136,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.018945494032670984,
                                0.981054505967329
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 7,
                "user_vote": null
            },
            "forecasts_count": 579,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 14273,
            "title": "In 2023 will a new version of COVID be substantially able to escape Omicron vaccines?",
            "short_title": "COVID Variant Evasion of Vaccines in 2023",
            "url_title": "COVID Variant Evasion of Vaccines in 2023",
            "slug": "covid-variant-evasion-of-vaccines-in-2023",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T23:34:47.244363Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:28:46.995829Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 9,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-31T23:00:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2024-01-01T21:06:00Z",
            "actual_resolve_time": "2024-01-01T21:06:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 124,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_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"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2016,
                    "type": "tournament",
                    "name": "ACX 2023 Prediction Contest",
                    "slug": "2023-contest",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                    "prize_pool": null,
                    "start_date": "2022-12-21T12:00:00Z",
                    "close_date": "2024-01-30T12:00:00Z",
                    "forecasting_end_date": "2024-01-01T00:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-04-02T05:06:28.757115Z",
                    "score_type": "relative_legacy_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": 14273,
                "title": "In 2023 will a new version of COVID be substantially able to escape Omicron vaccines?",
                "created_at": "2022-12-21T23:34:47.244363Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2024-01-01T21:06:00Z",
                "actual_resolve_time": "2024-01-01T21:06:00Z",
                "resolution_set_time": "2024-01-01T21:06:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-31T23: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": "To clarify this question, Scott Alexander wrote:\n\n>This question will resolve positive if in the opinion of the judges the scientific consensus is that getting all currently-recommended vaccines, including the two original vaccines and the Omicron booster, decreases risk of the new variant by less than 50%. \n\nThis question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\n\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14273,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1703962967.928081,
                                "end_time": null,
                                "forecaster_count": 124,
                                "interval_lower_bounds": [
                                    0.003
                                ],
                                "centers": [
                                    0.01
                                ],
                                "interval_upper_bounds": [
                                    0.01
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1703962967.928081,
                            "end_time": null,
                            "forecaster_count": 124,
                            "interval_lower_bounds": [
                                0.003
                            ],
                            "centers": [
                                0.01
                            ],
                            "interval_upper_bounds": [
                                0.01
                            ],
                            "forecast_values": [
                                0.99,
                                0.01
                            ],
                            "means": [
                                0.04749650261793616
                            ],
                            "histogram": [
                                [
                                    6.18289785548797,
                                    10.022652188679583,
                                    1.0168603132489618,
                                    0.0,
                                    0.0,
                                    0.2836825264713361,
                                    0.04083258793577066,
                                    0.6086121899265098,
                                    0.09394421707839815,
                                    0.3376811727541208,
                                    0.18355692202260188,
                                    0.0,
                                    0.0,
                                    0.00020555900945906638,
                                    0.23688771870928635,
                                    0.5883613166869419,
                                    0.0,
                                    0.011946406069495997,
                                    0.0,
                                    0.0,
                                    0.005445026849992025,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.07940424421109349,
                                    0.06657814206785133,
                                    0.0337234434127873,
                                    0.010274499796835188,
                                    0.014886128163948754,
                                    0.0,
                                    0.050183853575606514,
                                    0.0296066695678287,
                                    0.0002929441077547779,
                                    0.0,
                                    0.0,
                                    0.05825840125638644,
                                    0.0,
                                    0.03574767500591579,
                                    0.0,
                                    0.0,
                                    0.01919641986243631,
                                    0.0,
                                    0.0,
                                    0.02771741701194672,
                                    0.0,
                                    0.006391628476796793,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0015882651392410054,
                                    0.013844404637653691,
                                    0.01421558308552936,
                                    0.009515930146052827,
                                    0.0,
                                    0.0038190088139136353,
                                    0.00016892782878247082,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.011056518354579244,
                                    0.0009006236411092998,
                                    0.001014978307598649,
                                    0.0023015869044640796,
                                    0.0,
                                    0.004876180542818172,
                                    0.6344271748671458,
                                    0.0,
                                    5.999105061480908e-05,
                                    0.0,
                                    0.0002442306089508391,
                                    0.0,
                                    0.007517431710136967,
                                    0.0,
                                    0.00046595238343834493,
                                    0.001484667838377673,
                                    0.0,
                                    0.0014258986524852079,
                                    0.0,
                                    0.0,
                                    0.002511969489555236,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.001276807099804374,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0011983667723485683,
                                    0.0,
                                    0.008139932386546261,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00693541266228295
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 33.81626751253763,
                            "coverage": 0.999935820692007,
                            "baseline_score": 26.070064999199097,
                            "spot_peer_score": 19.851776614247473,
                            "peer_archived_score": 33.81626751253763,
                            "baseline_archived_score": 26.070064999199097,
                            "spot_peer_archived_score": 19.851776614247473
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1704008529.934953,
                                "end_time": null,
                                "forecaster_count": 124,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1704008529.934953,
                            "end_time": null,
                            "forecaster_count": 124,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.9976614375674494,
                                0.0023385624325505962
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 12,
                "user_vote": null
            },
            "forecasts_count": 408,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 14272,
            "title": "Will COVID kill at least 50% as many people in 2023 as it did in 2022?",
            "short_title": "COVID Deaths in 2023",
            "url_title": "COVID Deaths in 2023",
            "slug": "covid-deaths-in-2023",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T23:31:40.354288Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:29:21.571191Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 7,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-31T23:00:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2024-01-01T21:04:00Z",
            "actual_resolve_time": "2024-01-01T21:04:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 137,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_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"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2016,
                    "type": "tournament",
                    "name": "ACX 2023 Prediction Contest",
                    "slug": "2023-contest",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                    "prize_pool": null,
                    "start_date": "2022-12-21T12:00:00Z",
                    "close_date": "2024-01-30T12:00:00Z",
                    "forecasting_end_date": "2024-01-01T00:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-04-02T05:06:28.757115Z",
                    "score_type": "relative_legacy_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": 14272,
                "title": "Will COVID kill at least 50% as many people in 2023 as it did in 2022?",
                "created_at": "2022-12-21T23:31:40.354288Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2024-01-01T21:04:00Z",
                "actual_resolve_time": "2024-01-01T21:04:00Z",
                "resolution_set_time": "2024-01-01T21:04:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-31T23: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": "To clarify this question, Scott Alexander wrote:\n\n>According to https://ourworldindata.org/covid-deaths \n\nThis question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\n\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14272,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1703968629.171352,
                                "end_time": null,
                                "forecaster_count": 137,
                                "interval_lower_bounds": [
                                    0.001
                                ],
                                "centers": [
                                    0.01
                                ],
                                "interval_upper_bounds": [
                                    0.02
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1703968629.171352,
                            "end_time": null,
                            "forecaster_count": 137,
                            "interval_lower_bounds": [
                                0.001
                            ],
                            "centers": [
                                0.01
                            ],
                            "interval_upper_bounds": [
                                0.02
                            ],
                            "forecast_values": [
                                0.99,
                                0.01
                            ],
                            "means": [
                                0.02729687396454376
                            ],
                            "histogram": [
                                [
                                    8.495846911056555,
                                    7.510077754810497,
                                    2.424414217653866,
                                    0.7359576605936307,
                                    0.586894028157319,
                                    0.8547525796582545,
                                    0.0,
                                    0.017555247907387602,
                                    0.13627001638769579,
                                    0.0,
                                    0.036537658754126984,
                                    0.0,
                                    0.0,
                                    0.01175574103368177,
                                    0.006761598325302537,
                                    0.019659964565525444,
                                    0.001974432357887849,
                                    0.0062733151625504495,
                                    0.021694596976249356,
                                    0.04239621602576612,
                                    0.009286691270091373,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.25684552388211,
                                    0.0,
                                    0.18346671558867578,
                                    0.15632124771435024,
                                    0.0,
                                    0.03370126675907707,
                                    0.012826644341650217,
                                    0.0,
                                    0.0013526625127957372,
                                    0.0,
                                    0.0027192216201785764,
                                    0.0,
                                    0.003062204714178675,
                                    0.0,
                                    0.0046071557314198265,
                                    0.0010068098846212038,
                                    0.00039694351598622773,
                                    0.13407711011927995,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.20085039081818615,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0008782696570193748,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00028856103596244006,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.000509747891376459,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00021745653412116352,
                                    0.0,
                                    9.561219646711202e-05,
                                    0.0,
                                    0.0,
                                    0.0007987963541643841,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    7.723700061153951e-05,
                                    0.0,
                                    0.0,
                                    0.00011634523772452915,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0006452962997594377
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 21.083010729230683,
                            "coverage": 0.9999884903520552,
                            "baseline_score": 46.19380902575007,
                            "spot_peer_score": 4.4753522813753515,
                            "peer_archived_score": 21.083010729230683,
                            "baseline_archived_score": 46.19380902575007,
                            "spot_peer_archived_score": 4.4753522813753515
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1704008334.741611,
                                "end_time": null,
                                "forecaster_count": 137,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1704008334.741611,
                            "end_time": null,
                            "forecaster_count": 137,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.9994923704884421,
                                0.0005076295115578981
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 4,
                "user_vote": null
            },
            "forecasts_count": 480,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 14271,
            "title": "In 2023, will an image model win Scott Alexander’s bet on compositionality, to Edwin Chen’s satisfaction?",
            "short_title": "AI Image Model Bet in 2023",
            "url_title": "AI Image Model Bet in 2023",
            "slug": "ai-image-model-bet-in-2023",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T23:29:30.862902Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:29:02.941197Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 7,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-31T23:00:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2024-01-14T19:06:00Z",
            "actual_resolve_time": "2024-01-14T19:06:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 85,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "topic": [
                    {
                        "id": 15869,
                        "name": "Artificial Intelligence",
                        "slug": "ai",
                        "emoji": "πŸ€–",
                        "type": "topic"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": "forecaster",
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "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": 2339,
                        "type": "question_series",
                        "name": "AI Demonstrations",
                        "slug": "ai-demonstrations",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/aidemonstrations6.png",
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "forecasting_end_date": null,
                        "html_metadata_json": null,
                        "is_ongoing": true,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-09-23T21:30:14.022718Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2339,
                    "type": "question_series",
                    "name": "AI Demonstrations",
                    "slug": "ai-demonstrations",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/aidemonstrations6.png",
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "forecasting_end_date": null,
                    "html_metadata_json": null,
                    "is_ongoing": true,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-09-23T21:30:14.022718Z",
                    "score_type": "relative_legacy_tournament",
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3692,
                        "name": "Computing and Math",
                        "slug": "computing-and-math",
                        "emoji": "πŸ’»",
                        "description": "Computing and Math",
                        "type": "category"
                    },
                    {
                        "id": 3694,
                        "name": "Artificial Intelligence",
                        "slug": "artificial-intelligence",
                        "emoji": "πŸ€–",
                        "description": "Artificial Intelligence",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 14271,
                "title": "In 2023, will an image model win Scott Alexander’s bet on compositionality, to Edwin Chen’s satisfaction?",
                "created_at": "2022-12-21T23:29:30.862902Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2024-01-14T19:06:00Z",
                "actual_resolve_time": "2024-01-14T19:06:00Z",
                "resolution_set_time": "2024-01-14T19:06:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-31T23: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": "Scott Alexander wrote:\n\n> See https://www.surgehq.ai/blog/dall-e-vs-imagen-and-evaluating-astral-codex-tens-3000-ai-bet . Scott and Edwin will try to get the top image models of late 2023 to try the specific questions in the bet. If we can’t access the models, then Edwin can use public demos of the image models and his own best guess to resolve this as either likely true, likely false, or unclear. Edwin believes current AI models have not won the bet, so if there is no clear progress he should resolve the bet false. If Edwin is unwilling to judge this, Gary Marcus will be used as the substitute; if neither of these two people will do it, the question resolves as unclear.",
                "resolution_criteria": "This question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\n\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander.",
                "fine_print": "",
                "post_id": 14271,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1704061726.150681,
                                "end_time": null,
                                "forecaster_count": 85,
                                "interval_lower_bounds": [
                                    0.86
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.91
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1704061726.150681,
                            "end_time": null,
                            "forecaster_count": 85,
                            "interval_lower_bounds": [
                                0.86
                            ],
                            "centers": [
                                0.9
                            ],
                            "interval_upper_bounds": [
                                0.91
                            ],
                            "forecast_values": [
                                0.09999999999999998,
                                0.9
                            ],
                            "means": [
                                0.859582632923831
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.028362421182868216,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0309623970006842,
                                    0.0,
                                    0.007745482461618098,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0027314582170858293,
                                    0.012916707461602924,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.000560044871523829,
                                    0.0,
                                    1.0190398028843886,
                                    0.0,
                                    0.06270050362913202,
                                    0.0,
                                    0.02161474301439808,
                                    0.0,
                                    0.08335452340937627,
                                    0.0,
                                    0.0,
                                    0.019401493706054863,
                                    0.007493731571799663,
                                    0.0,
                                    0.0,
                                    0.21269401976669067,
                                    0.0,
                                    0.00026933773180300467,
                                    0.0,
                                    0.015554580867621012,
                                    0.0,
                                    0.001990151609851139,
                                    0.20865151633884033,
                                    0.004178148511023217,
                                    0.06464763481520866,
                                    0.0,
                                    0.3778215797427243,
                                    0.0,
                                    0.047116573808606566,
                                    0.24431551826570844,
                                    0.0068953792186266984,
                                    0.0,
                                    0.47981677829856095,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.6103752280232372,
                                    0.7357206842395155,
                                    0.0,
                                    0.7179538125144866,
                                    0.0,
                                    7.524999530230098,
                                    0.5716145265285659,
                                    0.8539550541946863,
                                    0.6865583351118832,
                                    0.0,
                                    1.5685635348755684,
                                    0.0,
                                    0.0,
                                    0.13419760429367264,
                                    0.5789587899341615
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 3.236138739996976,
                            "coverage": 0.9998193097167578,
                            "baseline_score": -87.86087222531921,
                            "spot_peer_score": 11.887500799742082,
                            "peer_archived_score": 3.236138739996976,
                            "baseline_archived_score": -87.86087222531921,
                            "spot_peer_archived_score": 11.887500799742082
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1704061726.185804,
                                "end_time": null,
                                "forecaster_count": 85,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1704061726.185804,
                            "end_time": null,
                            "forecaster_count": 85,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.2906386957174546,
                                0.7093613042825454
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 3,
                "user_vote": null
            },
            "forecasts_count": 295,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": "Scott Alexander wrote:\n\n> See https://www.surgehq.ai/blog/dall-e-vs-imagen-and-evaluating-astral-codex-tens-3000-ai-bet . Scott and Edwin will try to get the top image models of late 2023 to try the specific questions in the bet. If we can’t access the models, then Edwin can use public demos of the image models and his own best guess to resolve this as either likely true, likely false, or unclear. Edwin believes current AI models have not won the bet, so if there is no clear progress he should resolve the bet false. If Edwin is unwilling to judge this, Gary Marcus will be used as the substitute; if neither of these two people will do it, the question resolves as unclear."
        },
        {
            "id": 14270,
            "title": "In 2023, will SpaceX's Starship reach orbit?",
            "short_title": "SpaceX Starship Orbit in 2023?",
            "url_title": "SpaceX Starship Orbit in 2023?",
            "slug": "spacex-starship-orbit-in-2023",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T23:27:23.444212Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:29:01.484125Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 81,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-31T23:00:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2024-01-01T16:39:00Z",
            "actual_resolve_time": "2024-01-01T16:39:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 344,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_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"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2016,
                    "type": "tournament",
                    "name": "ACX 2023 Prediction Contest",
                    "slug": "2023-contest",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                    "prize_pool": null,
                    "start_date": "2022-12-21T12:00:00Z",
                    "close_date": "2024-01-30T12:00:00Z",
                    "forecasting_end_date": "2024-01-01T00:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-04-02T05:06:28.757115Z",
                    "score_type": "relative_legacy_tournament",
                    "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": 3701,
                        "name": "Technology",
                        "slug": "technology",
                        "emoji": "βš™οΈ",
                        "description": "Technology",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 14270,
                "title": "In 2023, will SpaceX's Starship reach orbit?",
                "created_at": "2022-12-21T23:27:23.444212Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2024-01-01T16:39:00Z",
                "actual_resolve_time": "2024-01-01T16:39:00Z",
                "resolution_set_time": "2024-01-01T16:39:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-31T23: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": "This question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\r\n\r\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14270,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1704040051.948114,
                                "end_time": null,
                                "forecaster_count": 344,
                                "interval_lower_bounds": [
                                    0.001
                                ],
                                "centers": [
                                    0.01
                                ],
                                "interval_upper_bounds": [
                                    0.01
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1704040051.948114,
                            "end_time": null,
                            "forecaster_count": 344,
                            "interval_lower_bounds": [
                                0.001
                            ],
                            "centers": [
                                0.01
                            ],
                            "interval_upper_bounds": [
                                0.01
                            ],
                            "forecast_values": [
                                0.99,
                                0.01
                            ],
                            "means": [
                                0.01815962640630324
                            ],
                            "histogram": [
                                [
                                    15.60390737953388,
                                    16.594015169049896,
                                    0.8188588948893604,
                                    0.7992022183212839,
                                    0.022767665469424835,
                                    0.35102929278282863,
                                    0.0,
                                    0.0,
                                    0.012436556851703081,
                                    0.0,
                                    0.6364277676118034,
                                    0.0,
                                    0.0004002458013433472,
                                    0.0,
                                    0.03751931287726038,
                                    0.0076546447401411085,
                                    0.04561073574118285,
                                    0.0,
                                    0.0,
                                    0.014060580109203583,
                                    0.20677514202807482,
                                    0.0,
                                    0.0023408504061684108,
                                    0.0,
                                    0.0,
                                    0.03600042022911038,
                                    0.012148276916204598,
                                    0.0,
                                    0.0056237612359100984,
                                    0.0,
                                    0.009758939974008963,
                                    0.0,
                                    0.006607910860272016,
                                    0.010652563517830137,
                                    0.005255530866478808,
                                    0.017909993780165,
                                    0.0,
                                    0.006663294725423567,
                                    0.00011019534991274637,
                                    0.009666549179619927,
                                    0.01461334843713648,
                                    0.0,
                                    0.017701687033887376,
                                    0.01148530135316458,
                                    0.0,
                                    0.007560645106798073,
                                    0.005283904459678291,
                                    0.0,
                                    0.015193284865250387,
                                    0.0,
                                    0.019045418097140256,
                                    0.00033159930250151003,
                                    7.973488118833884e-05,
                                    0.004299280971644466,
                                    0.0,
                                    0.00429096176339679,
                                    5.384294882851426e-05,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.007142354588910865,
                                    0.0,
                                    0.00023658619304538044,
                                    0.0,
                                    0.0005775586948771672,
                                    0.016264413859784173,
                                    0.0021220209359335647,
                                    0.004084300248351876,
                                    1.30770483593918e-06,
                                    0.0012124921313375905,
                                    0.011918800357002216,
                                    0.0,
                                    0.0,
                                    1.4907595940387562e-07,
                                    0.0,
                                    0.0030804676970007244,
                                    0.0001080461432336634,
                                    0.00400289158951168,
                                    0.0012909981219783877,
                                    0.00036446093799354285,
                                    0.002088590071733892,
                                    3.327278807573922e-05,
                                    0.0010274457902326147,
                                    0.00040839265056394044,
                                    8.244214902714786e-08,
                                    0.002948758860389264,
                                    0.0013231174394858006,
                                    5.748932959804691e-06,
                                    2.0373606402974648e-05,
                                    1.5769553136818705e-05,
                                    0.0029284361866015454,
                                    0.13611003578245195,
                                    0.0,
                                    0.00032328189158686507,
                                    2.9734618456316687e-05,
                                    0.00047199830556780804,
                                    0.0,
                                    9.955028569741227e-06,
                                    8.993272494870076e-06,
                                    0.02321674845636367
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 57.193539844719254,
                            "coverage": 0.9999352177963994,
                            "baseline_score": -54.7524867433877,
                            "spot_peer_score": 2.2604481271064416,
                            "peer_archived_score": 57.193539844719254,
                            "baseline_archived_score": -54.7524867433877,
                            "spot_peer_archived_score": 2.2604481271064416
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1704040052.00256,
                                "end_time": null,
                                "forecaster_count": 344,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1704040052.00256,
                            "end_time": null,
                            "forecaster_count": 344,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.999326444635347,
                                0.0006735553646529646
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 28,
                "user_vote": null
            },
            "forecasts_count": 1533,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 14269,
            "title": "In 2023 will OpenAI release GPT-4?",
            "short_title": "GPT4 Release in 2023",
            "url_title": "GPT4 Release in 2023",
            "slug": "gpt4-release-in-2023",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T23:24:17.544300Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:29:12.404369Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 12,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-03-14T15:33:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2023-12-31T23:00:00Z",
            "actual_resolve_time": "2023-03-14T15:33:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 126,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_leaderboard",
                        "type": "leaderboard_tag"
                    }
                ],
                "topic": [
                    {
                        "id": 15869,
                        "name": "Artificial Intelligence",
                        "slug": "ai",
                        "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"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2016,
                    "type": "tournament",
                    "name": "ACX 2023 Prediction Contest",
                    "slug": "2023-contest",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                    "prize_pool": null,
                    "start_date": "2022-12-21T12:00:00Z",
                    "close_date": "2024-01-30T12:00:00Z",
                    "forecasting_end_date": "2024-01-01T00:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-04-02T05:06:28.757115Z",
                    "score_type": "relative_legacy_tournament",
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false,
                    "bot_leaderboard_status": "exclude_and_show"
                },
                "category": [
                    {
                        "id": 3692,
                        "name": "Computing and Math",
                        "slug": "computing-and-math",
                        "emoji": "πŸ’»",
                        "description": "Computing and Math",
                        "type": "category"
                    },
                    {
                        "id": 3694,
                        "name": "Artificial Intelligence",
                        "slug": "artificial-intelligence",
                        "emoji": "πŸ€–",
                        "description": "Artificial Intelligence",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 14269,
                "title": "In 2023 will OpenAI release GPT-4?",
                "created_at": "2022-12-21T23:24:17.544300Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2023-12-31T23:00:00Z",
                "actual_resolve_time": "2023-03-14T15:33:00Z",
                "resolution_set_time": "2023-03-14T15:33:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-03-14T15:33: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": "To clarify this question, Scott Alexander wrote:\n\n>This resolves as positive if Open-AI publishes a paper or webpage implicitly declaring GPT-4 β€œreleased” or β€œcomplete”, showcasing some examples of what it can do, and offering some form of use in some reasonable timescale to some outside parties (researchers, corporate partners, people who want to play around with it, etc). A product is β€œGPT-4” if it is either named GPT-4, or is a clear successor to GPT-3 to a degree similar to how GPT-3 was a successor to GPT-2 (and not branded as a newer version of GPT-3, eg ChatGPT3). \n\nThis question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\n\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14269,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1678977756.587907,
                                "end_time": null,
                                "forecaster_count": 151,
                                "interval_lower_bounds": [
                                    0.99
                                ],
                                "centers": [
                                    0.999
                                ],
                                "interval_upper_bounds": [
                                    0.999
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1678977756.587907,
                            "end_time": null,
                            "forecaster_count": 151,
                            "interval_lower_bounds": [
                                0.99
                            ],
                            "centers": [
                                0.999
                            ],
                            "interval_upper_bounds": [
                                0.999
                            ],
                            "forecast_values": [
                                0.0010000000000000009,
                                0.999
                            ],
                            "means": [
                                0.9955178275924549
                            ],
                            "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.000403203253338039,
                                    0.0,
                                    0.0002514652554066578,
                                    0.0,
                                    0.0,
                                    7.792384123367405e-05,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00183549044285293,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    4.309352733628861e-05,
                                    6.491353422105741e-05,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00014714322698529736,
                                    0.0,
                                    0.0,
                                    0.0001695005388690276,
                                    0.004133031864739616,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0007547030375390709,
                                    9.25088976330353e-05,
                                    0.02374468306481648,
                                    0.0008316879024723393,
                                    0.0,
                                    0.0,
                                    0.0013694063603876525,
                                    0.0,
                                    0.0035001265754244205,
                                    0.0020706574775473676,
                                    0.0012060058081855508,
                                    0.008068372499758714,
                                    0.004081773612854523,
                                    0.0010047254887444886,
                                    0.002570511411402693,
                                    0.002373931757379925,
                                    0.00605504698053452,
                                    0.0020184140551594487,
                                    0.05497929181116119,
                                    0.018930178822412432,
                                    0.014084879678098277,
                                    0.09025950195116633,
                                    0.00934949805031774,
                                    0.026047219292393318,
                                    0.18040208751936962,
                                    22.618886930078617
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 2.058202925501138,
                            "coverage": 0.21991389006458004,
                            "baseline_score": 17.04086189679824,
                            "spot_peer_score": 5.891220940032106,
                            "peer_archived_score": 2.058202925501138,
                            "baseline_archived_score": 17.04086189679824,
                            "spot_peer_archived_score": 5.891220940032106
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1678782498.760668,
                                "end_time": null,
                                "forecaster_count": 125,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1678782498.760668,
                            "end_time": null,
                            "forecaster_count": 125,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.03012705951262895,
                                0.969872940487371
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 15,
                "user_vote": null
            },
            "forecasts_count": 247,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 14268,
            "title": "On January 1, 2024, will any FAANG or Musk company accept crypto as a payment?",
            "short_title": "Crypto Use as Payment on Jan 1, 2024",
            "url_title": "Crypto Use as Payment on Jan 1, 2024",
            "slug": "crypto-use-as-payment-on-jan-1-2024",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T23:22:02.354069Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:29:05.688311Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 22,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-31T23:00:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2024-01-01T07:05:00Z",
            "actual_resolve_time": "2024-01-01T07:05:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 137,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_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"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2016,
                    "type": "tournament",
                    "name": "ACX 2023 Prediction Contest",
                    "slug": "2023-contest",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                    "prize_pool": null,
                    "start_date": "2022-12-21T12:00:00Z",
                    "close_date": "2024-01-30T12:00:00Z",
                    "forecasting_end_date": "2024-01-01T00:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-04-02T05:06:28.757115Z",
                    "score_type": "relative_legacy_tournament",
                    "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": 3693,
                        "name": "Cryptocurrencies",
                        "slug": "cryptocurrencies",
                        "emoji": "πŸ’°",
                        "description": "Cryptocurrencies",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 14268,
                "title": "On January 1, 2024, will any FAANG or Musk company accept crypto as a payment?",
                "created_at": "2022-12-21T23:22:02.354069Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2024-01-01T07:05:00Z",
                "actual_resolve_time": "2024-01-01T07:05:00Z",
                "resolution_set_time": "2024-01-01T07:05:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-31T23: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": "To clarify this question, Scott Alexander wrote:\n\n>Qualifying companies are Meta, Apple, Amazon, Netflix, Google, Tesla, and Twitter. The company must announce that one of its major services (not an experimental or gimmick service invented for this purpose) will take payment in a crypto token which can be easily exchanged from most major cryptocurrencies on at least one large exchange without an intermediate fiat step. If a company has announced this, they do not need to have implemented the payment system by the resolution date for the question to resolve positive, as long as they are still widely expected to do so. This question is about the state of the world on 1/1/24; if a company announces this but then backtracks before then, it will not qualify. \n\nThis question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\n\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14268,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1704063278.441601,
                                "end_time": null,
                                "forecaster_count": 137,
                                "interval_lower_bounds": [
                                    0.005
                                ],
                                "centers": [
                                    0.01
                                ],
                                "interval_upper_bounds": [
                                    0.01
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1704063278.441601,
                            "end_time": null,
                            "forecaster_count": 137,
                            "interval_lower_bounds": [
                                0.005
                            ],
                            "centers": [
                                0.01
                            ],
                            "interval_upper_bounds": [
                                0.01
                            ],
                            "forecast_values": [
                                0.99,
                                0.01
                            ],
                            "means": [
                                0.019659468782073444
                            ],
                            "histogram": [
                                [
                                    7.499117794874007,
                                    12.089398992644277,
                                    0.4314086607098402,
                                    0.3677796942852135,
                                    0.11471460892688917,
                                    0.1018039103857336,
                                    0.0,
                                    0.009719393118239356,
                                    0.10716838703285121,
                                    0.0,
                                    0.23653231428678195,
                                    0.0631448770499647,
                                    0.031335383530053815,
                                    0.052565198686192464,
                                    0.0,
                                    0.09833598847609107,
                                    0.07703685042744113,
                                    0.0,
                                    0.0005744719863826765,
                                    0.03363255764997623,
                                    0.06780889350644871,
                                    0.0,
                                    0.12411633045347403,
                                    0.00039694351598622773,
                                    0.0,
                                    0.10473905080710727,
                                    0.033660231144622015,
                                    0.008425464418173866,
                                    0.00966745819039906,
                                    0.0,
                                    0.0178646297348465,
                                    0.031477299004342714,
                                    0.05653253056008407,
                                    0.0022081962028092177,
                                    0.0,
                                    0.0012475795275869554,
                                    0.0,
                                    0.07069964179917371,
                                    0.0,
                                    0.0,
                                    0.02787278012718527,
                                    0.0013526625127957372,
                                    0.0006452962997594377,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.011180351632891994,
                                    0.0,
                                    0.028057924306230227,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0003994098671038103,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0003480924251483541,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 14.013009204735454,
                            "coverage": 0.9998185888274604,
                            "baseline_score": 62.9780878466498,
                            "spot_peer_score": 19.038634724467794,
                            "peer_archived_score": 14.013009204735454,
                            "baseline_archived_score": 62.9780878466498,
                            "spot_peer_archived_score": 19.038634724467794
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1704063278.478576,
                                "end_time": null,
                                "forecaster_count": 137,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1704063278.478576,
                            "end_time": null,
                            "forecaster_count": 137,
                            "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": 6,
                "user_vote": null
            },
            "forecasts_count": 533,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 14267,
            "title": "Will the US unemployment rate be above 4% in November 2023?",
            "short_title": "US Unemployment over 4% in November 2023",
            "url_title": "US Unemployment over 4% in November 2023",
            "slug": "us-unemployment-over-4-in-november-2023",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T23:19:07.941351Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:28:53.725753Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 26,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-31T23:00:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2024-01-01T21:03:00Z",
            "actual_resolve_time": "2024-01-01T21:03:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 134,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_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"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2016,
                    "type": "tournament",
                    "name": "ACX 2023 Prediction Contest",
                    "slug": "2023-contest",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                    "prize_pool": null,
                    "start_date": "2022-12-21T12:00:00Z",
                    "close_date": "2024-01-30T12:00:00Z",
                    "forecasting_end_date": "2024-01-01T00:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-04-02T05:06:28.757115Z",
                    "score_type": "relative_legacy_tournament",
                    "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": 14267,
                "title": "Will the US unemployment rate be above 4% in November 2023?",
                "created_at": "2022-12-21T23:19:07.941351Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2024-01-01T21:03:00Z",
                "actual_resolve_time": "2024-01-01T21:03:00Z",
                "resolution_set_time": "2024-01-01T21:03:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-31T23: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": "*Related question on Metaculus:*\n\n* [What will the seasonally adjusted U-3 unemployment rate be in the United States in the following months?](https://www.metaculus.com/questions/14034/us-monthly-u-3-unemployment-rate/)\n\n----",
                "resolution_criteria": "This question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\n\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14267,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1703979831.909393,
                                "end_time": null,
                                "forecaster_count": 134,
                                "interval_lower_bounds": [
                                    0.001
                                ],
                                "centers": [
                                    0.01
                                ],
                                "interval_upper_bounds": [
                                    0.01
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1703979831.909393,
                            "end_time": null,
                            "forecaster_count": 134,
                            "interval_lower_bounds": [
                                0.001
                            ],
                            "centers": [
                                0.01
                            ],
                            "interval_upper_bounds": [
                                0.01
                            ],
                            "forecast_values": [
                                0.99,
                                0.01
                            ],
                            "means": [
                                0.023048293599303927
                            ],
                            "histogram": [
                                [
                                    8.174386081325554,
                                    10.394799694873361,
                                    0.2284742047703219,
                                    0.144831230534799,
                                    0.8132465190425707,
                                    0.20033283247464248,
                                    0.0,
                                    0.013626661328354142,
                                    0.060757028049324445,
                                    0.04038743176061272,
                                    0.08975374612966329,
                                    0.08497456320872139,
                                    0.042865536126090356,
                                    0.0804232661525408,
                                    0.2917796251612016,
                                    0.22601338567705404,
                                    0.014590747640033633,
                                    0.07895990785740728,
                                    0.060580275990929765,
                                    0.033692361436616726,
                                    0.17776413876949276,
                                    0.0,
                                    0.0,
                                    0.004115173131407915,
                                    0.03168859322101833,
                                    0.030152708079960504,
                                    0.017982786798187843,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.055613110702982305,
                                    0.02989886217909286,
                                    0.020349658370566095,
                                    0.01430185027026217,
                                    0.060707722352266694,
                                    0.03803634838978107,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0066151131368295405,
                                    0.0,
                                    0.026552441500270065,
                                    0.0,
                                    0.007691549884751123,
                                    0.0044652820398841855,
                                    0.0,
                                    0.0024588228988402534,
                                    0.0,
                                    0.002048449536482931,
                                    0.0037883038130711597,
                                    0.0,
                                    5.307597951631615e-05,
                                    0.0,
                                    0.0,
                                    0.002245984491260308,
                                    0.010297677415753444,
                                    0.0,
                                    0.0,
                                    0.0013936390897402622,
                                    0.01791491082830098,
                                    0.0,
                                    0.0012597305662130243,
                                    0.0,
                                    0.0,
                                    0.0019039228382101336,
                                    0.00015887230715680867,
                                    0.002613705586131684,
                                    0.0,
                                    0.0,
                                    0.001873996573101823,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0007340466619366882,
                                    0.0,
                                    0.002687933346553275,
                                    0.0,
                                    0.0,
                                    0.000395967066324184,
                                    0.00018860854093961346,
                                    0.0009534794162953265,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0008220568967955789,
                                    0.0,
                                    0.0005126911695283252,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0002218388717323727,
                                    0.0002588628657294159,
                                    0.0,
                                    0.0,
                                    0.0,
                                    8.78597359043253e-05
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 36.09635593950973,
                            "coverage": 0.9999409895290665,
                            "baseline_score": -1.0808663067798951,
                            "spot_peer_score": 10.035058084761545,
                            "peer_archived_score": 36.09635593950973,
                            "baseline_archived_score": -1.0808663067798951,
                            "spot_peer_archived_score": 10.035058084761545
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1704008352.925111,
                                "end_time": null,
                                "forecaster_count": 134,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1704008352.925111,
                            "end_time": null,
                            "forecaster_count": 134,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.9987849743302295,
                                0.001215025669770514
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 4,
                "user_vote": null
            },
            "forecasts_count": 596,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": "*Related question on Metaculus:*\n\n* [What will the seasonally adjusted U-3 unemployment rate be in the United States in the following months?](https://www.metaculus.com/questions/14034/us-monthly-u-3-unemployment-rate/)\n\n----"
        },
        {
            "id": 14266,
            "title": "In 2023, will Tether de-peg?",
            "short_title": "Tether De-Peg in 2023",
            "url_title": "Tether De-Peg in 2023",
            "slug": "tether-de-peg-in-2023",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T23:15:34.292138Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:28:48.648445Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 1,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-31T23:00:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2024-01-01T18:25:00Z",
            "actual_resolve_time": "2024-01-01T18:25:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 101,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_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"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2016,
                    "type": "tournament",
                    "name": "ACX 2023 Prediction Contest",
                    "slug": "2023-contest",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                    "prize_pool": null,
                    "start_date": "2022-12-21T12:00:00Z",
                    "close_date": "2024-01-30T12:00:00Z",
                    "forecasting_end_date": "2024-01-01T00:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-04-02T05:06:28.757115Z",
                    "score_type": "relative_legacy_tournament",
                    "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": 3693,
                        "name": "Cryptocurrencies",
                        "slug": "cryptocurrencies",
                        "emoji": "πŸ’°",
                        "description": "Cryptocurrencies",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 14266,
                "title": "In 2023, will Tether de-peg?",
                "created_at": "2022-12-21T23:15:34.292138Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2024-01-01T18:25:00Z",
                "actual_resolve_time": "2024-01-01T18:25:00Z",
                "resolution_set_time": "2024-01-01T18:25:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-31T23: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": "To clarify this question, Scott Alexander wrote:\n\n>We will count Tether as β€œde-pegged” if it spends at least one full day below 98 cents at any point during 2023. \n\nThis question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\n\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14266,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1703988235.455593,
                                "end_time": null,
                                "forecaster_count": 101,
                                "interval_lower_bounds": [
                                    0.001
                                ],
                                "centers": [
                                    0.01
                                ],
                                "interval_upper_bounds": [
                                    0.01
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1703988235.455593,
                            "end_time": null,
                            "forecaster_count": 101,
                            "interval_lower_bounds": [
                                0.001
                            ],
                            "centers": [
                                0.01
                            ],
                            "interval_upper_bounds": [
                                0.01
                            ],
                            "forecast_values": [
                                0.99,
                                0.01
                            ],
                            "means": [
                                0.025047160659420503
                            ],
                            "histogram": [
                                [
                                    6.586401592500015,
                                    8.801267142568365,
                                    1.5203587423635274,
                                    0.09003455527214212,
                                    0.0820816179530651,
                                    0.0935995340834141,
                                    0.06711106182554702,
                                    0.0,
                                    0.058497394149297575,
                                    0.0,
                                    0.03388338486411664,
                                    0.0,
                                    0.0,
                                    0.0008675168513705744,
                                    0.12397308223581646,
                                    0.2499774850438441,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.03042662909820105,
                                    0.05692381185702733,
                                    0.19716273052726438,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.16389620045864495,
                                    0.0,
                                    0.01948476653375065,
                                    0.022709100167052732,
                                    0.0,
                                    0.016021946537365904,
                                    0.08321503187394852,
                                    0.013094061726299164,
                                    0.11507789013683223,
                                    0.0,
                                    0.02745556021619515,
                                    0.03537776765006278,
                                    0.0,
                                    0.023218751751698918,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0015895181711987486,
                                    0.0,
                                    0.07181390677382747,
                                    0.0033762938080639676,
                                    0.0030057296334305714,
                                    0.0,
                                    0.0,
                                    0.0011089953140923734,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0001776558939473092,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00031914161448901615,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.009421972532252106,
                                    0.001020361848716516,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    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": 13.5893918145738,
                            "coverage": 0.9998183641722911,
                            "baseline_score": 70.91978977208484,
                            "spot_peer_score": 12.198455552095192,
                            "peer_archived_score": 13.5893918145738,
                            "baseline_archived_score": 70.91978977208484,
                            "spot_peer_archived_score": 12.198455552095192
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1704008195.828774,
                                "end_time": null,
                                "forecaster_count": 101,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1704008195.828774,
                            "end_time": null,
                            "forecaster_count": 101,
                            "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": 8,
                "user_vote": null
            },
            "forecasts_count": 388,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 14265,
            "title": "Will Bitcoin end 2023 above $30,000?",
            "short_title": "Bitcoin Value over $30,000 on January 1, 2024",
            "url_title": "Bitcoin Value over $30,000 on January 1, 2024",
            "slug": "bitcoin-value-over-30000-on-january-1-2024",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T23:12:53.751938Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:29:25.039370Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 36,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-31T23:00:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2024-01-01T17:00:00Z",
            "actual_resolve_time": "2024-01-01T17:00:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 239,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_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"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2016,
                    "type": "tournament",
                    "name": "ACX 2023 Prediction Contest",
                    "slug": "2023-contest",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                    "prize_pool": null,
                    "start_date": "2022-12-21T12:00:00Z",
                    "close_date": "2024-01-30T12:00:00Z",
                    "forecasting_end_date": "2024-01-01T00:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-04-02T05:06:28.757115Z",
                    "score_type": "relative_legacy_tournament",
                    "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": 3693,
                        "name": "Cryptocurrencies",
                        "slug": "cryptocurrencies",
                        "emoji": "πŸ’°",
                        "description": "Cryptocurrencies",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 14265,
                "title": "Will Bitcoin end 2023 above $30,000?",
                "created_at": "2022-12-21T23:12:53.751938Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2024-01-01T17:00:00Z",
                "actual_resolve_time": "2024-01-01T17:00:00Z",
                "resolution_set_time": "2024-01-01T17:00:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-31T23: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": "This question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\n\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14265,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1704053845.996705,
                                "end_time": null,
                                "forecaster_count": 239,
                                "interval_lower_bounds": [
                                    0.99
                                ],
                                "centers": [
                                    0.99
                                ],
                                "interval_upper_bounds": [
                                    0.998
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1704053845.996705,
                            "end_time": null,
                            "forecaster_count": 239,
                            "interval_lower_bounds": [
                                0.99
                            ],
                            "centers": [
                                0.99
                            ],
                            "interval_upper_bounds": [
                                0.998
                            ],
                            "forecast_values": [
                                0.010000000000000009,
                                0.99
                            ],
                            "means": [
                                0.981373825437379
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.01118267241019913,
                                    0.0,
                                    0.0,
                                    0.0,
                                    1.888676513153154e-05,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0016801315781136,
                                    0.0,
                                    2.609890820444684e-05,
                                    0.0,
                                    1.4274444166245719e-06,
                                    8.466042494596018e-05,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0017439950471479133,
                                    0.0,
                                    0.0,
                                    8.146131166088165e-06,
                                    0.004047117164022642,
                                    0.0,
                                    0.001385212690006376,
                                    0.00184648131322471,
                                    7.925573447982743e-05,
                                    0.0,
                                    0.0007725253799599563,
                                    0.0,
                                    0.0,
                                    5.5495430285339345e-05,
                                    0.0,
                                    0.0007825122577454586,
                                    0.0,
                                    0.004496819103696573,
                                    0.0011804884958235475,
                                    0.0,
                                    0.00726034645815977,
                                    0.002092913780955701,
                                    0.0010517502827061928,
                                    0.0011144761602556654,
                                    0.0013229860112499204,
                                    0.003137700353393817,
                                    0.0,
                                    0.005358940468046377,
                                    0.0,
                                    0.23246277779390492,
                                    0.001228172447282955,
                                    0.000575872178776792,
                                    0.0010315126769059426,
                                    0.00039215565109052816,
                                    0.0,
                                    0.003303309319432664,
                                    0.0003815738461841585,
                                    0.0027022320855728324,
                                    0.0,
                                    0.0006519214823686499,
                                    3.55727640948814e-06,
                                    0.0028286328183515226,
                                    0.0,
                                    0.0,
                                    0.003477812251829426,
                                    0.007882713979558352,
                                    0.01097206726524514,
                                    0.007182152742087932,
                                    0.0,
                                    2.1037393225080802e-05,
                                    0.006885671998176931,
                                    0.00034350459815937035,
                                    0.0001468094232115677,
                                    1.5101357912604315e-05,
                                    0.0,
                                    0.03517204065798828,
                                    0.0,
                                    1.691197040564378e-05,
                                    0.0,
                                    0.005447088311836894,
                                    0.002171698322027039,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.1740668892018166,
                                    0.27794010814445497,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.6604773984903838,
                                    0.014709932803107192,
                                    0.0,
                                    0.009193163035892106,
                                    0.0007366382831636422,
                                    0.6926636272431594,
                                    0.33416445222739494,
                                    0.08502621635474197,
                                    0.941516367770115,
                                    25.855422901202047
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 22.09120736994928,
                            "coverage": 0.9999334688729561,
                            "baseline_score": -13.693924133704853,
                            "spot_peer_score": -21.95290926850047,
                            "peer_archived_score": 22.09120736994928,
                            "baseline_archived_score": -13.693924133704853,
                            "spot_peer_archived_score": -21.95290926850047
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1704053846.037764,
                                "end_time": null,
                                "forecaster_count": 239,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1704053846.037764,
                            "end_time": null,
                            "forecaster_count": 239,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.012982566984278465,
                                0.9870174330157215
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 9,
                "user_vote": null
            },
            "forecasts_count": 1114,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 14264,
            "title": "Will Bitcoin go up over 2023?",
            "short_title": "Bitcoin Growth in 2023",
            "url_title": "Bitcoin Growth in 2023",
            "slug": "bitcoin-growth-in-2023",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T23:10:50.025318Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:29:28.077983Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 6,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-31T23:00:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2024-01-01T17:00:00Z",
            "actual_resolve_time": "2024-01-01T17:00:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 130,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_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"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2016,
                    "type": "tournament",
                    "name": "ACX 2023 Prediction Contest",
                    "slug": "2023-contest",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                    "prize_pool": null,
                    "start_date": "2022-12-21T12:00:00Z",
                    "close_date": "2024-01-30T12:00:00Z",
                    "forecasting_end_date": "2024-01-01T00:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-04-02T05:06:28.757115Z",
                    "score_type": "relative_legacy_tournament",
                    "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": 3693,
                        "name": "Cryptocurrencies",
                        "slug": "cryptocurrencies",
                        "emoji": "πŸ’°",
                        "description": "Cryptocurrencies",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 14264,
                "title": "Will Bitcoin go up over 2023?",
                "created_at": "2022-12-21T23:10:50.025318Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2024-01-01T17:00:00Z",
                "actual_resolve_time": "2024-01-01T17:00:00Z",
                "resolution_set_time": "2024-01-01T17:00:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-31T23: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": "To clarify this question, Scott Alexander wrote:\n\n>IE will it end the year higher than it began?\n\nThis question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\n\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14264,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1704054254.075632,
                                "end_time": null,
                                "forecaster_count": 130,
                                "interval_lower_bounds": [
                                    0.99
                                ],
                                "centers": [
                                    0.994
                                ],
                                "interval_upper_bounds": [
                                    0.999
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1704054254.075632,
                            "end_time": null,
                            "forecaster_count": 130,
                            "interval_lower_bounds": [
                                0.99
                            ],
                            "centers": [
                                0.994
                            ],
                            "interval_upper_bounds": [
                                0.999
                            ],
                            "forecast_values": [
                                0.006000000000000005,
                                0.994
                            ],
                            "means": [
                                0.9782090506159249
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00022447319625320487,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    8.257907399559651e-05,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00030808665700961273,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0001045666099857099,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.014272325412024951,
                                    0.2461647501896833,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.004947158738700061,
                                    0.00015751294069565332,
                                    0.0,
                                    0.0,
                                    0.019872081391657317,
                                    0.41080244729208215,
                                    0.0,
                                    0.0,
                                    0.002195408291103794,
                                    0.007291736541752871,
                                    0.01660565448684982,
                                    0.00018908250074967597,
                                    0.0,
                                    0.0,
                                    0.03545480462694312,
                                    0.07730266228132178,
                                    0.01121868206617684,
                                    0.03499526638123242,
                                    0.00012944370157688177,
                                    0.0,
                                    0.02087473817986369,
                                    0.02421922588629892,
                                    0.0,
                                    0.014117701796546112,
                                    0.016217824534335033,
                                    0.0472141225076151,
                                    0.18368776133191822,
                                    0.021238922456030037,
                                    0.022686593013388937,
                                    0.18709335773428976,
                                    0.4575670354375782,
                                    0.18996868782976387,
                                    0.3484342326989212,
                                    0.6605252661548489,
                                    18.231012557731848
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 12.20944797433122,
                            "coverage": 0.9999344026654775,
                            "baseline_score": 69.19703207540242,
                            "spot_peer_score": -3.638848179897524,
                            "peer_archived_score": 12.20944797433122,
                            "baseline_archived_score": 69.19703207540242,
                            "spot_peer_archived_score": -3.638848179897524
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1704054254.277706,
                                "end_time": null,
                                "forecaster_count": 130,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1704054254.277706,
                            "end_time": null,
                            "forecaster_count": 130,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.009972542674178575,
                                0.9900274573258214
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 6,
                "user_vote": null
            },
            "forecasts_count": 429,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 14263,
            "title": "Will the Shanghai index of Chinese stocks go up over 2023?",
            "short_title": "Shanghai Index Growth in 2023",
            "url_title": "Shanghai Index Growth in 2023",
            "slug": "shanghai-index-growth-in-2023",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T23:08:33.853469Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:29:27.658840Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 15,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-29T08:00:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2023-12-31T23:00:00Z",
            "actual_resolve_time": "2023-12-29T08:00:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 99,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_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"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2016,
                    "type": "tournament",
                    "name": "ACX 2023 Prediction Contest",
                    "slug": "2023-contest",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                    "prize_pool": null,
                    "start_date": "2022-12-21T12:00:00Z",
                    "close_date": "2024-01-30T12:00:00Z",
                    "forecasting_end_date": "2024-01-01T00:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-04-02T05:06:28.757115Z",
                    "score_type": "relative_legacy_tournament",
                    "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": 14263,
                "title": "Will the Shanghai index of Chinese stocks go up over 2023?",
                "created_at": "2022-12-21T23:08:33.853469Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2023-12-31T23:00:00Z",
                "actual_resolve_time": "2023-12-29T08:00:00Z",
                "resolution_set_time": "2023-12-29T08:00:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-29T08: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": "To clarify this question, Scott Alexander wrote:\n\n>IE will it end the year higher than it began?\n\nThis question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\n\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14263,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1703962981.244523,
                                "end_time": null,
                                "forecaster_count": 99,
                                "interval_lower_bounds": [
                                    0.002
                                ],
                                "centers": [
                                    0.01
                                ],
                                "interval_upper_bounds": [
                                    0.01
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1703962981.244523,
                            "end_time": null,
                            "forecaster_count": 99,
                            "interval_lower_bounds": [
                                0.002
                            ],
                            "centers": [
                                0.01
                            ],
                            "interval_upper_bounds": [
                                0.01
                            ],
                            "forecast_values": [
                                0.99,
                                0.01
                            ],
                            "means": [
                                0.054719942703270935
                            ],
                            "histogram": [
                                [
                                    6.209198837362291,
                                    8.173199827267469,
                                    0.7576874230914545,
                                    0.2257326275209089,
                                    0.0,
                                    0.8387842624449738,
                                    0.2451535265415106,
                                    0.0,
                                    0.12544768033996292,
                                    0.0,
                                    0.44248777074614754,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.001315880072289434,
                                    0.02091869879591324,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.001756691452520663,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.08487636612376773,
                                    0.0,
                                    0.0,
                                    0.02460325881488211,
                                    0.04531035113745542,
                                    0.0,
                                    0.07416928652637793,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.07549008249972075,
                                    0.09246048280205596,
                                    0.0,
                                    0.0009587555935714907,
                                    0.039098528828555634,
                                    0.1254703337332725,
                                    0.0,
                                    0.0,
                                    0.012498957873914782,
                                    0.0,
                                    0.06443607533363523,
                                    0.0,
                                    0.03627506129959581,
                                    0.019257120874992883,
                                    0.03407328588236693,
                                    0.0011603035849842628,
                                    0.08911676989751578,
                                    0.001524981872424075,
                                    0.0,
                                    0.0,
                                    0.01491613561893787,
                                    0.0,
                                    0.0022953016071686487,
                                    0.003321849130956136,
                                    0.0020128231617567746,
                                    0.008374559940936438,
                                    0.036662830549395835,
                                    0.0,
                                    0.03218029948160183,
                                    0.0,
                                    0.00577600594719291,
                                    0.0,
                                    0.013019070958181608,
                                    0.0,
                                    0.0,
                                    0.0173949835881504,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.3867896123689576,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.004178769657568818,
                                    0.0,
                                    0.0011276756507707527,
                                    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.01328627451423377
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 18.41888136527616,
                            "coverage": 0.9929294206292135,
                            "baseline_score": -28.4273641026219,
                            "spot_peer_score": 12.472976883449762,
                            "peer_archived_score": 18.41888136527616,
                            "baseline_archived_score": -28.4273641026219,
                            "spot_peer_archived_score": 12.472976883449762
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1703576259.786279,
                                "end_time": null,
                                "forecaster_count": 97,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1703576259.786279,
                            "end_time": null,
                            "forecaster_count": 97,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.9939981946321929,
                                0.006001805367807113
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 8,
                "user_vote": null
            },
            "forecasts_count": 452,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 14262,
            "title": "In 2023, will the S&P 500 index reach a new all-time high?",
            "short_title": "Record S&P 500 Index in 2023",
            "url_title": "Record S&P 500 Index in 2023",
            "slug": "record-sp-500-index-in-2023",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T23:05:43.352402Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:28:48.996330Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 131,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-29T21:30:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2023-12-31T23:00:00Z",
            "actual_resolve_time": "2023-12-29T21:30:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 287,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_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"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2016,
                    "type": "tournament",
                    "name": "ACX 2023 Prediction Contest",
                    "slug": "2023-contest",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                    "prize_pool": null,
                    "start_date": "2022-12-21T12:00:00Z",
                    "close_date": "2024-01-30T12:00:00Z",
                    "forecasting_end_date": "2024-01-01T00:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-04-02T05:06:28.757115Z",
                    "score_type": "relative_legacy_tournament",
                    "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": 14262,
                "title": "In 2023, will the S&P 500 index reach a new all-time high?",
                "created_at": "2022-12-21T23:05:43.352402Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2023-12-31T23:00:00Z",
                "actual_resolve_time": "2023-12-29T21:30:00Z",
                "resolution_set_time": "2023-12-29T21:30:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-29T21:30: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 at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\r\n\r\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14262,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1703886203.068643,
                                "end_time": null,
                                "forecaster_count": 288,
                                "interval_lower_bounds": [
                                    0.01
                                ],
                                "centers": [
                                    0.01
                                ],
                                "interval_upper_bounds": [
                                    0.09
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1703886203.068643,
                            "end_time": null,
                            "forecaster_count": 288,
                            "interval_lower_bounds": [
                                0.01
                            ],
                            "centers": [
                                0.01
                            ],
                            "interval_upper_bounds": [
                                0.09
                            ],
                            "forecast_values": [
                                0.99,
                                0.01
                            ],
                            "means": [
                                0.09968305667119588
                            ],
                            "histogram": [
                                [
                                    4.6159973253818976,
                                    14.936265228080064,
                                    2.3753255689041937,
                                    0.5782955428608054,
                                    0.003342169677367959,
                                    0.6157088517314295,
                                    0.7702532523516354,
                                    0.004845092513428052,
                                    0.005623862205523332,
                                    0.7846413242979023,
                                    0.03147941548371656,
                                    1.868479963897738e-05,
                                    0.0023300847612637236,
                                    8.563704819026281e-07,
                                    0.005727091390758221,
                                    0.9630446282784766,
                                    0.10789074568118037,
                                    7.213541526967152e-07,
                                    0.20635329993221108,
                                    0.21824264433391335,
                                    1.017511259823959,
                                    5.15918867085202e-06,
                                    0.053160044776435156,
                                    0.06597063104411743,
                                    0.08674021146702736,
                                    0.5207421318123329,
                                    0.0,
                                    0.0014586320426543938,
                                    0.12238997662824176,
                                    0.0,
                                    0.25280390822145093,
                                    0.16450540365098984,
                                    0.0,
                                    0.035622067947062734,
                                    0.18154981030184472,
                                    0.0013905101596850603,
                                    0.0,
                                    0.0,
                                    0.0014013107989289846,
                                    1.3323247690822772e-05,
                                    0.35900808479636925,
                                    0.0,
                                    0.12607247704935348,
                                    6.18713790497045e-05,
                                    0.14390346919208813,
                                    0.3740621538833606,
                                    0.0,
                                    0.15398595562990436,
                                    0.07847630332944205,
                                    0.0,
                                    0.533536413744113,
                                    0.23388181652114026,
                                    0.05913814782452471,
                                    0.12036055891666088,
                                    0.00040801757512144064,
                                    0.22201560422384103,
                                    0.28328102431066315,
                                    0.000411733289517302,
                                    0.0,
                                    0.13651103704076628,
                                    0.21173031476521137,
                                    0.14358504429481853,
                                    0.028605539718031342,
                                    0.00020648529180236237,
                                    7.14921147805305e-05,
                                    0.039078753015871104,
                                    0.00047973695042623373,
                                    0.0,
                                    0.0,
                                    0.035802571995270926,
                                    0.011112235831669962,
                                    0.0512744475941502,
                                    0.0,
                                    3.761029411624529e-05,
                                    0.05844104491893798,
                                    0.04395153982562654,
                                    0.00029198682337294615,
                                    0.0,
                                    0.00018337772100532267,
                                    0.0,
                                    0.2044775979715615,
                                    0.00016591053645214824,
                                    0.000505616930957437,
                                    0.0,
                                    3.7325205812689205e-06,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.000194629467183395,
                                    0.0,
                                    0.024623579159666082,
                                    0.0,
                                    0.0,
                                    0.0004542130245131693,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.03253785138556706
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 10.027766669006125,
                            "coverage": 0.994427868584984,
                            "baseline_score": 36.371066519075804,
                            "spot_peer_score": 15.190852013996208,
                            "peer_archived_score": 10.027766669006125,
                            "baseline_archived_score": 36.371066519075804,
                            "spot_peer_archived_score": 15.190852013996208
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1703754640.635427,
                                "end_time": null,
                                "forecaster_count": 286,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1703754640.635427,
                            "end_time": null,
                            "forecaster_count": 286,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.6936187478509488,
                                0.3063812521490512
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 17,
                "user_vote": null
            },
            "forecasts_count": 1907,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        },
        {
            "id": 14261,
            "title": "Will the S&P 500 index go up over 2023?",
            "short_title": "S&P Goes Up in 2023?",
            "url_title": "S&P Goes Up in 2023?",
            "slug": "sp-goes-up-in-2023",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T23:00:19.413351Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:29:24.573369Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 14,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-29T21:30:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2023-12-31T23:00:00Z",
            "actual_resolve_time": "2023-12-29T21:30:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 136,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_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"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2016,
                    "type": "tournament",
                    "name": "ACX 2023 Prediction Contest",
                    "slug": "2023-contest",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                    "prize_pool": null,
                    "start_date": "2022-12-21T12:00:00Z",
                    "close_date": "2024-01-30T12:00:00Z",
                    "forecasting_end_date": "2024-01-01T00:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-04-02T05:06:28.757115Z",
                    "score_type": "relative_legacy_tournament",
                    "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": 14261,
                "title": "Will the S&P 500 index go up over 2023?",
                "created_at": "2022-12-21T23:00:19.413351Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2023-12-31T23:00:00Z",
                "actual_resolve_time": "2023-12-29T21:30:00Z",
                "resolution_set_time": "2023-12-29T21:30:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-29T21:30: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": "To clarify this question, Scott Alexander wrote:\n\n>IE will it end the year higher than it began?",
                "resolution_criteria": "This question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\n\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14261,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1703950982.694562,
                                "end_time": null,
                                "forecaster_count": 137,
                                "interval_lower_bounds": [
                                    0.99
                                ],
                                "centers": [
                                    0.99
                                ],
                                "interval_upper_bounds": [
                                    0.999
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1703950982.694562,
                            "end_time": null,
                            "forecaster_count": 137,
                            "interval_lower_bounds": [
                                0.99
                            ],
                            "centers": [
                                0.99
                            ],
                            "interval_upper_bounds": [
                                0.999
                            ],
                            "forecast_values": [
                                0.010000000000000009,
                                0.99
                            ],
                            "means": [
                                0.9874035967372845
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.04239621602576612,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0008989490934055834,
                                    0.0,
                                    0.0,
                                    0.003062204714178675,
                                    0.0,
                                    0.0003480924251483541,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.006761598325302537,
                                    0.001154080864592474,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    2.243922732758598e-05,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0002637264158944126,
                                    0.0019724614837206976,
                                    0.0,
                                    0.0,
                                    3.39545956340781e-05,
                                    0.0,
                                    0.0062733151625504495,
                                    0.00025600899107782187,
                                    6.0996143889238595e-05,
                                    0.00039694351598622773,
                                    0.0,
                                    0.0052049000175550765,
                                    0.09209895001824644,
                                    0.0,
                                    0.003634074286144601,
                                    0.0,
                                    0.008844910031798716,
                                    0.0,
                                    0.009719393118239356,
                                    0.0,
                                    0.007281852916988128,
                                    0.02607634736362127,
                                    0.011180351632891994,
                                    0.001800780488053471,
                                    0.0,
                                    0.014036365386587313,
                                    0.11098893915957408,
                                    0.0046071557314198265,
                                    0.0,
                                    0.05599072015066247,
                                    0.014678298959962014,
                                    0.06220643402158922,
                                    0.0016397732833034772,
                                    0.0,
                                    0.0,
                                    0.047718614760589445,
                                    0.21505428035838753,
                                    0.029618765798681015,
                                    0.22686158055111766,
                                    0.5705708402202352,
                                    20.329255534865986
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 12.58893662140192,
                            "coverage": 0.9944236780553402,
                            "baseline_score": 67.5587504733564,
                            "spot_peer_score": 8.916533982752446,
                            "peer_archived_score": 12.58893662140192,
                            "baseline_archived_score": 67.5587504733564,
                            "spot_peer_archived_score": 8.916533982752446
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1703542916.781027,
                                "end_time": null,
                                "forecaster_count": 134,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1703542916.781027,
                            "end_time": null,
                            "forecaster_count": 134,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.007678482267712505,
                                0.9923215177322875
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 6,
                "user_vote": null
            },
            "forecasts_count": 503,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": "To clarify this question, Scott Alexander wrote:\n\n>IE will it end the year higher than it began?"
        },
        {
            "id": 14260,
            "title": "Will US CPI inflation for 2023 average above 4%?",
            "short_title": "Average US CPI in 2023 over 4%?",
            "url_title": "Average US CPI in 2023 over 4%?",
            "slug": "average-us-cpi-in-2023-over-4",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T22:54:40.671101Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:28:52.262668Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 31,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-31T23:00:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2024-01-01T21:01:00Z",
            "actual_resolve_time": "2024-01-01T21:01:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 126,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_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"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2016,
                    "type": "tournament",
                    "name": "ACX 2023 Prediction Contest",
                    "slug": "2023-contest",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                    "prize_pool": null,
                    "start_date": "2022-12-21T12:00:00Z",
                    "close_date": "2024-01-30T12:00:00Z",
                    "forecasting_end_date": "2024-01-01T00:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-04-02T05:06:28.757115Z",
                    "score_type": "relative_legacy_tournament",
                    "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": 14260,
                "title": "Will US CPI inflation for 2023 average above 4%?",
                "created_at": "2022-12-21T22:54:40.671101Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2024-01-01T21:01:00Z",
                "actual_resolve_time": "2024-01-01T21:01:00Z",
                "resolution_set_time": "2024-01-01T21:01:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-31T23: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": "*Related question on Metaculus:*\n\n* [What will be the annual headline CPI inflation in the United States in the following years?](https://www.metaculus.com/questions/13973/us-annual-headline-cpi-inflation/)\n\n----",
                "resolution_criteria": "This question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\n\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14260,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1704062739.191509,
                                "end_time": null,
                                "forecaster_count": 126,
                                "interval_lower_bounds": [
                                    0.01
                                ],
                                "centers": [
                                    0.01
                                ],
                                "interval_upper_bounds": [
                                    0.04
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1704062739.191509,
                            "end_time": null,
                            "forecaster_count": 126,
                            "interval_lower_bounds": [
                                0.01
                            ],
                            "centers": [
                                0.01
                            ],
                            "interval_upper_bounds": [
                                0.04
                            ],
                            "forecast_values": [
                                0.99,
                                0.01
                            ],
                            "means": [
                                0.03494324650582104
                            ],
                            "histogram": [
                                [
                                    3.07852949721722,
                                    10.17777940469378,
                                    0.9190953498247046,
                                    0.737291799114713,
                                    1.4559655111099519,
                                    2.089256590668293,
                                    0.0,
                                    0.25166383182226437,
                                    0.09337080294453226,
                                    0.03878653061291917,
                                    0.39290387804740223,
                                    0.06849678870688732,
                                    0.07261041622427898,
                                    0.13918900545096766,
                                    0.022175356522766372,
                                    0.6233182289057747,
                                    0.10807042723886441,
                                    0.0608817155180538,
                                    0.08149820583757862,
                                    0.08206762467441855,
                                    0.07953252195510718,
                                    0.0,
                                    0.0,
                                    0.009395413483958896,
                                    0.0,
                                    0.06071014378710764,
                                    0.010924271437989063,
                                    0.0,
                                    0.01462574187987346,
                                    0.0,
                                    0.07694086628622841,
                                    0.05736207576458694,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.002909403059054138,
                                    0.011764812698058555,
                                    0.0,
                                    0.03505053904480797,
                                    0.0,
                                    0.005642408915432557,
                                    0.0,
                                    0.0,
                                    0.004543669808999542,
                                    0.0,
                                    0.0032116643930378075,
                                    0.0,
                                    0.0,
                                    0.0014523731568833438,
                                    0.0068742401723455885,
                                    0.009694990355337529,
                                    0.0006413156336063901,
                                    0.0017891892856764617,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.00944126329792025,
                                    0.0010425629558802045,
                                    0.0,
                                    0.0,
                                    0.007443479684201042,
                                    0.0,
                                    7.53835593295572e-05,
                                    0.001979378919858263,
                                    0.0,
                                    0.016152131607099263,
                                    0.0,
                                    0.00012478676181919342,
                                    0.0,
                                    0.0,
                                    0.00020933257761944404,
                                    0.0013143922662997645,
                                    0.0007281728109039909,
                                    0.0,
                                    0.0044532003439343056,
                                    0.002834420261299543,
                                    0.0,
                                    0.00018797137840382663,
                                    0.005844760675731369,
                                    0.0,
                                    9.854747360889202e-05,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.008701747060637937,
                                    0.0003150766863134106,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.005095759402185858,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0016138371106303707
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 28.437466247972537,
                            "coverage": 0.9999328684756825,
                            "baseline_score": 22.62866258999759,
                            "spot_peer_score": 0.43740112439552215,
                            "peer_archived_score": 28.437466247972537,
                            "baseline_archived_score": 22.62866258999759,
                            "spot_peer_archived_score": 0.43740112439552215
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1704062739.227277,
                                "end_time": null,
                                "forecaster_count": 126,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1704062739.227277,
                            "end_time": null,
                            "forecaster_count": 126,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.9980054785608231,
                                0.001994521439176869
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 6,
                "user_vote": null
            },
            "forecasts_count": 512,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": "*Related question on Metaculus:*\n\n* [What will be the annual headline CPI inflation in the United States in the following years?](https://www.metaculus.com/questions/13973/us-annual-headline-cpi-inflation/)\n\n----"
        },
        {
            "id": 14259,
            "title": "Will Twitter's average monetizable daily users be higher in 2023 than in 2022?",
            "short_title": "Twitter Average Users in 2023",
            "url_title": "Twitter Average Users in 2023",
            "slug": "twitter-average-users-in-2023",
            "author_id": 104161,
            "author_username": "casens",
            "coauthors": [],
            "created_at": "2022-12-21T22:50:16.300789Z",
            "published_at": "2022-12-22T05:00:00Z",
            "edited_at": "2025-09-05T17:29:01.442942Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2022-12-22T05:00:00Z",
            "comment_count": 5,
            "status": "resolved",
            "resolved": true,
            "actual_close_time": "2023-12-31T23:00:00Z",
            "scheduled_close_time": "2023-12-31T23:00:00Z",
            "scheduled_resolve_time": "2024-01-01T21:00:00Z",
            "actual_resolve_time": "2024-01-01T21:00:00Z",
            "open_time": "2022-12-22T05:00:00Z",
            "nr_forecasters": 84,
            "html_metadata_json": null,
            "projects": {
                "leaderboard_tag": [
                    {
                        "id": 32595,
                        "name": "2022-2023 Leaderboard",
                        "slug": "2022_2023_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"
                    }
                ],
                "tournament": [
                    {
                        "id": 2016,
                        "type": "tournament",
                        "name": "ACX 2023 Prediction Contest",
                        "slug": "2023-contest",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                        "prize_pool": null,
                        "start_date": "2022-12-21T12:00:00Z",
                        "close_date": "2024-01-30T12:00:00Z",
                        "forecasting_end_date": "2024-01-01T00:00:00Z",
                        "html_metadata_json": null,
                        "is_ongoing": false,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-04-02T05:06:28.757115Z",
                        "score_type": "relative_legacy_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false,
                        "bot_leaderboard_status": "exclude_and_show"
                    }
                ],
                "default_project": {
                    "id": 2016,
                    "type": "tournament",
                    "name": "ACX 2023 Prediction Contest",
                    "slug": "2023-contest",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/Screen_Shot_2022-12-21_at_12.05.13_PM.png",
                    "prize_pool": null,
                    "start_date": "2022-12-21T12:00:00Z",
                    "close_date": "2024-01-30T12:00:00Z",
                    "forecasting_end_date": "2024-01-01T00:00:00Z",
                    "html_metadata_json": null,
                    "is_ongoing": false,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-04-02T05:06:28.757115Z",
                    "score_type": "relative_legacy_tournament",
                    "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": 14259,
                "title": "Will Twitter's average monetizable daily users be higher in 2023 than in 2022?",
                "created_at": "2022-12-21T22:50:16.300789Z",
                "open_time": "2022-12-22T05:00:00Z",
                "cp_reveal_time": "2023-01-12T13:39:28.800000Z",
                "spot_scoring_time": "2023-01-12T13:39:28.800000Z",
                "scheduled_resolve_time": "2024-01-01T21:00:00Z",
                "actual_resolve_time": "2024-01-01T21:00:00Z",
                "resolution_set_time": "2024-01-01T21:00:00Z",
                "scheduled_close_time": "2023-12-31T23:00:00Z",
                "actual_close_time": "2023-12-31T23: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": "To clarify this question, Scott Alexander wrote:\n\n>To resolve using https://www.statista.com/statistics/970920/monetizable-daily-active-twitter-users-worldwide/\n\nThis question will resolve at the exclusive authority of [Scott Alexander](https://astralcodexten.substack.com/p/2023-prediction-contest) in his 2023 prediction contest.  More information about the contest can be found [here](https://astralcodexten.substack.com/p/2023-prediction-contest).\n\nPredictions on Metaculus will only count for your Metaculus track record; they will not be evaluated by Scott Alexander",
                "fine_print": "",
                "post_id": 14259,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1704061597.509949,
                                "end_time": null,
                                "forecaster_count": 84,
                                "interval_lower_bounds": [
                                    0.06
                                ],
                                "centers": [
                                    0.37
                                ],
                                "interval_upper_bounds": [
                                    0.45
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1704061597.509949,
                            "end_time": null,
                            "forecaster_count": 84,
                            "interval_lower_bounds": [
                                0.06
                            ],
                            "centers": [
                                0.37
                            ],
                            "interval_upper_bounds": [
                                0.45
                            ],
                            "forecast_values": [
                                0.63,
                                0.37
                            ],
                            "means": [
                                0.3132941927722729
                            ],
                            "histogram": [
                                [
                                    1.0,
                                    1.848184562091976,
                                    0.35306151093949006,
                                    0.0,
                                    0.0038503157754529835,
                                    0.5066828489144001,
                                    0.537327422693546,
                                    0.47759049593500436,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.5695970358180379,
                                    0.0,
                                    0.0,
                                    0.0,
                                    1.048399599467402,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    1.2224815219740244,
                                    0.0,
                                    0.0,
                                    0.8492399047037122,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.021818874052760125,
                                    0.6069099819966591,
                                    0.0,
                                    2.7251631949693746,
                                    0.0,
                                    0.0,
                                    0.001770091099343005,
                                    0.18603199268747062,
                                    0.6769302749943321,
                                    0.0,
                                    0.9731559683676538,
                                    0.0,
                                    0.6393178676484588,
                                    0.28495334001687245,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.35664373122746684,
                                    0.29498908626911585,
                                    0.14520643253195203,
                                    0.004411705175538277,
                                    0.0,
                                    0.005030841343722017,
                                    0.2170815766378047,
                                    0.1489916465101992,
                                    0.14898001924802542,
                                    0.0,
                                    0.0,
                                    0.17888785429555568,
                                    0.0,
                                    0.018892335520048254,
                                    0.0,
                                    0.0,
                                    0.03881022225732753,
                                    0.0,
                                    0.1546674500674108,
                                    0.0,
                                    0.0,
                                    0.07381368691411025,
                                    0.0935430773296525,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.2763475082992552,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.05392541496491342,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0922898227035347,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {
                            "peer_score": 1.3573235140863096,
                            "coverage": 0.9999320263031551,
                            "baseline_score": -27.20683967419591,
                            "spot_peer_score": 0.6294088289869675,
                            "peer_archived_score": 1.3573235140863096,
                            "baseline_archived_score": -27.20683967419591,
                            "spot_peer_archived_score": 0.6294088289869675
                        },
                        "movement": null
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {},
                        "movement": null
                    },
                    "metaculus_prediction": {
                        "history": [
                            {
                                "start_time": 1704061597.541468,
                                "end_time": null,
                                "forecaster_count": 84,
                                "interval_lower_bounds": null,
                                "centers": null,
                                "interval_upper_bounds": null
                            }
                        ],
                        "latest": {
                            "start_time": 1704061597.541468,
                            "end_time": null,
                            "forecaster_count": 84,
                            "interval_lower_bounds": null,
                            "centers": null,
                            "interval_upper_bounds": null,
                            "forecast_values": [
                                0.9035987873998048,
                                0.09640121260019513
                            ],
                            "means": null,
                            "histogram": null
                        },
                        "score_data": {},
                        "movement": null
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 3,
                "user_vote": null
            },
            "forecasts_count": 291,
            "key_factors": [],
            "is_current_content_translated": false,
            "description": ""
        }
    ]
}