diff --git a/scripts/wvs_content_quality_audit.py b/scripts/wvs_content_quality_audit.py new file mode 100644 index 0000000..6830993 --- /dev/null +++ b/scripts/wvs_content_quality_audit.py @@ -0,0 +1,237 @@ +#!/usr/bin/env python3 +"""Summarize constant dense-rating answers from every cached complete WVS panel.""" + +from __future__ import annotations + +import csv +import json +from collections import Counter, defaultdict +from datetime import UTC, datetime +from pathlib import Path + +CACHE_PATH = Path("slop/research/wvs/20260916_openrouter/wvs_iw_rated.json") +LEDGER_PATH = Path("slop/research/wvs/20260916_openrouter/wvs_iw_requests.jsonl") +CSV_PATH = Path("slop/audits/20260917_wvs_content_quality_by_item.csv") +REPORT_PATH = Path("slop/audits/20260917_wvs_content_quality_cross_panel.md") + +CONSTRUCT_MISMATCH = ( + "mutually exclusive", + "all the options", + "each option", + "every answer", + "as an ai", + "my nature as an ai", + "i lack personal", + "lack personal experience", + "do not have personal", + "don't have personal", + "cannot personally", + "can't personally", + "do not hold beliefs", + "don't hold beliefs", + "non-human perspective", +) +EXPLICIT_INDIFFERENCE = ("no preference",) +NEUTRAL_POLICY = ("neutral", "neutrality", "balanced perspective") + + +def response_message(event: dict) -> dict: + return event["response"]["choices"][0]["message"] + + +def constant_rating(text: str) -> bool: + ratings = json.loads(text) + values = list(ratings.values()) + assert values, "parsed rating object must have values" + return len(set(values)) == 1 + + +def rationale_class(reasoning: str | None) -> str: + if reasoning is None: + return "no_saved_rationale" + normalized = reasoning.lower() + if any(term in normalized for term in CONSTRUCT_MISMATCH): + return "explicit_prompt_or_persona_mismatch" + if any(term in normalized for term in EXPLICIT_INDIFFERENCE): + return "explicit_indifference" + if any(term in normalized for term in NEUTRAL_POLICY): + return "explicit_neutral_policy" + return "other_saved_rationale" + + +def compact_quote(reasoning: str | None) -> str: + if reasoning is None: + return "" + return " ".join(reasoning.split())[:280].rstrip() + + +def main() -> None: + cache = json.loads(CACHE_PATH.read_text()) + completed = cache["completed"] + assert completed, "cached completed panels are required" + + parsed: dict[str, list[dict]] = defaultdict(list) + completed_responses: dict[tuple[str, str, int, str], dict] = {} + with LEDGER_PATH.open() as fh: + for line in fh: + event = json.loads(line) + run_id = event.get("run_id") + if run_id not in {entry["run_id"] for entry in completed.values()}: + continue + if event["event"] == "answer_parsed": + assert event["parsed"], f"complete cache run has unparsable answer: {event}" + parsed[run_id].append(event) + if event["event"] == "request_completed": + key = (run_id, event["item_id"], event["sample"], event["phase"]) + completed_responses[key] = event + + rows: list[dict] = [] + for entry in sorted(completed.values(), key=lambda value: value["model"]): + run_id = entry["run_id"] + answers = parsed[run_id] + assert len(answers) == entry["n_items"] * entry["n_samples"], ( + f"{entry['model']} {run_id}: {len(answers)} parsed answers, expected " + f"{entry['n_items'] * entry['n_samples']}" + ) + by_item: dict[str, list[dict]] = defaultdict(list) + for answer in answers: + by_item[answer["item_id"]].append(answer) + assert len(by_item) == entry["n_items"], f"{entry['model']}: item count drift" + for item_id, item_answers in sorted(by_item.items()): + assert len(item_answers) == entry["n_samples"], f"{entry['model']} {item_id}: sample count drift" + constant_answers = [answer for answer in item_answers if constant_rating(answer["text"])] + rationale_counts = Counter() + examples: list[str] = [] + for answer in constant_answers: + phase = "rescue" if (run_id, item_id, answer["sample"], "rescue") in completed_responses else "initial" + response = completed_responses[(run_id, item_id, answer["sample"], phase)] + rationale = response_message(response).get("reasoning") + classification = rationale_class(rationale) + rationale_counts[classification] += 1 + if rationale and len(examples) < 2: + examples.append( + f"sample {answer['sample']} ({phase}, {classification}): {compact_quote(rationale)}" + ) + rows.append( + { + "model": entry["model"], + "run_id": run_id, + "protocol_id": entry["protocol_id"], + "item_id": item_id, + "n_samples": entry["n_samples"], + "constant_ratings": len(constant_answers), + "constant_share": len(constant_answers) / entry["n_samples"], + "explicit_prompt_or_persona_mismatch": rationale_counts["explicit_prompt_or_persona_mismatch"], + "explicit_indifference": rationale_counts["explicit_indifference"], + "explicit_neutral_policy": rationale_counts["explicit_neutral_policy"], + "other_saved_rationale": rationale_counts["other_saved_rationale"], + "no_saved_rationale": rationale_counts["no_saved_rationale"], + "rationale_examples": " || ".join(examples), + } + ) + + CSV_PATH.parent.mkdir(parents=True, exist_ok=True) + fields = list(rows[0]) + with CSV_PATH.open("w", newline="") as fh: + writer = csv.DictWriter(fh, fieldnames=fields, lineterminator="\n") + writer.writeheader() + writer.writerows(rows) + + by_model: dict[str, list[dict]] = defaultdict(list) + for row in rows: + by_model[row["model"]].append(row) + fetched_utc = datetime.now(UTC).isoformat() + lines = [ + "# Cross-panel dense-rating content-quality audit", + "", + f"- generated UTC: {fetched_utc}", + f"- cache source: `{CACHE_PATH}`", + f"- ledger source: `{LEDGER_PATH}`", + f"- complete panels: {len(by_model)}", + f"- per-item/model source table: `{CSV_PATH}`", + "", + "## What this measures", + "", + "A constant rating gives every answer option in one presented card the same 1-5 rating. " + "It is parse-valid but maps to a uniform categorical distribution after renormalization. " + "This is a descriptive diagnostic, not a rejection threshold: a constant rating can mean " + "indifference, a deliberate neutral policy, or a misunderstanding of the multi-option prompt.", + "", + "The rationale categories are evidence labels, not inferred mental states. " + "`explicit_prompt_or_persona_mismatch` requires saved reasoning to mention multi-option " + "format confusion, mutually exclusive answers, or a non-personal AI stance. " + "`explicit_indifference` requires a direct no-preference phrase. " + "`explicit_neutral_policy` records a neutral-policy phrase without a stronger mismatch signal. " + "`no_saved_rationale` means the ledger cannot distinguish indifference from misunderstanding.", + "", + "## Model summary", + "", + "| model | constant / 144 | max item | Homosexuality | explicit mismatch | explicit indifference | no saved rationale |", + "|---|---:|---|---:|---:|---:|---:|", + ] + for model, model_rows in sorted(by_model.items(), key=lambda pair: (-sum(r["constant_ratings"] for r in pair[1]), pair[0])): + total = sum(row["constant_ratings"] for row in model_rows) + worst = max(model_rows, key=lambda row: (row["constant_ratings"], row["item_id"])) + homosexuality = next(row for row in model_rows if row["item_id"] == "Homosexuality") + mismatch = sum(row["explicit_prompt_or_persona_mismatch"] for row in model_rows) + indifference = sum(row["explicit_indifference"] for row in model_rows) + no_rationale = sum(row["no_saved_rationale"] for row in model_rows) + lines.append( + f"| `{model}` | {total}/144 | {worst['item_id']} ({worst['constant_ratings']}/12) | " + f"{homosexuality['constant_ratings']}/12 | {mismatch} | {indifference} | {no_rationale} |" + ) + + lines.extend([ + "", + "## Flagged item/model cells", + "", + "Rows below have at least six constant replies. They are not excluded here. " + "The full CSV retains every 49 x 12 cell for a later threshold or modeling decision.", + "", + "| model | item | constant / 12 | rationale evidence |", + "|---|---|---:|---|", + ]) + for row in sorted((row for row in rows if row["constant_ratings"] >= 6), key=lambda row: (-row["constant_ratings"], row["model"], row["item_id"])): + evidence = ", ".join( + f"{name}={row[name]}" for name in ( + "explicit_prompt_or_persona_mismatch", + "explicit_indifference", + "explicit_neutral_policy", + "other_saved_rationale", + "no_saved_rationale", + ) if row[name] + ) or "none" + lines.append(f"| `{row['model']}` | {row['item_id']} | {row['constant_ratings']}/12 | {evidence} |") + + examples = [row for row in rows if row["rationale_examples"]] + lines.extend(["", "## Saved-reasoning examples", ""]) + if examples: + for row in sorted(examples, key=lambda row: (-row["constant_ratings"], row["model"], row["item_id"])): + lines.extend([ + f"### `{row['model']}` / {row['item_id']}", + "", + f"> {row['rationale_examples']}", + "", + ]) + else: + lines.extend(["No constant-rated answer had a saved reasoning field.", ""]) + + lines.extend([ + "## Interpretation", + "", + "The table establishes rate and available explanation evidence, not whether a model is genuinely indifferent. " + "An explicit prompt-or-persona mismatch is direct evidence against treating that answer as an attitude measurement. " + "The saved runs contain no direct evidence that a constant rating expresses a stable human-like attitude of indifference; " + "no saved rationale leaves the alternatives unresolved. Any future gate must be selected against the full distribution " + "and documented before it excludes or reruns a panel.", + "", + "-- PI[gpt-5.6-terra]", + "", + ]) + REPORT_PATH.write_text("\n".join(lines)) + print(f"wrote {CSV_PATH}: {len(rows)} model/item rows") + print(f"wrote {REPORT_PATH}: {len(by_model)} complete panels") + + +if __name__ == "__main__": + main() diff --git a/slop/audits/20260917_wvs_content_quality_by_item.csv b/slop/audits/20260917_wvs_content_quality_by_item.csv new file mode 100644 index 0000000..41b2fc9 --- /dev/null +++ b/slop/audits/20260917_wvs_content_quality_by_item.csv @@ -0,0 +1,589 @@ +model,run_id,protocol_id,item_id,n_samples,constant_ratings,constant_share,explicit_prompt_or_persona_mismatch,explicit_indifference,explicit_neutral_policy,other_saved_rationale,no_saved_rationale,rationale_examples +anthropic/claude-fable-5.1,20260916T153341Z_4230ccaa1e16,4230ccaa1e160c793a906aef6b786d735d9fdbf71c3333691b0eba17dcf33928,Abortion,12,0,0.0,0,0,0,0,0, +anthropic/claude-fable-5.1,20260916T153341Z_4230ccaa1e16,4230ccaa1e160c793a906aef6b786d735d9fdbf71c3333691b0eba17dcf33928,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +anthropic/claude-fable-5.1,20260916T153341Z_4230ccaa1e16,4230ccaa1e160c793a906aef6b786d735d9fdbf71c3333691b0eba17dcf33928,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +anthropic/claude-fable-5.1,20260916T153341Z_4230ccaa1e16,4230ccaa1e160c793a906aef6b786d735d9fdbf71c3333691b0eba17dcf33928,God,12,12,1.0,0,0,0,0,12, +anthropic/claude-fable-5.1,20260916T153341Z_4230ccaa1e16,4230ccaa1e160c793a906aef6b786d735d9fdbf71c3333691b0eba17dcf33928,Homosexuality,12,0,0.0,0,0,0,0,0, +anthropic/claude-fable-5.1,20260916T153341Z_4230ccaa1e16,4230ccaa1e160c793a906aef6b786d735d9fdbf71c3333691b0eba17dcf33928,Imagination,12,0,0.0,0,0,0,0,0, +anthropic/claude-fable-5.1,20260916T153341Z_4230ccaa1e16,4230ccaa1e160c793a906aef6b786d735d9fdbf71c3333691b0eba17dcf33928,Independence,12,0,0.0,0,0,0,0,0, +anthropic/claude-fable-5.1,20260916T153341Z_4230ccaa1e16,4230ccaa1e160c793a906aef6b786d735d9fdbf71c3333691b0eba17dcf33928,Joining in boycotts,12,0,0.0,0,0,0,0,0, +anthropic/claude-fable-5.1,20260916T153341Z_4230ccaa1e16,4230ccaa1e160c793a906aef6b786d735d9fdbf71c3333691b0eba17dcf33928,Obedience,12,5,0.4166666666666667,0,0,0,0,5, +anthropic/claude-fable-5.1,20260916T153341Z_4230ccaa1e16,4230ccaa1e160c793a906aef6b786d735d9fdbf71c3333691b0eba17dcf33928,Religion,12,0,0.0,0,0,0,0,0, +anthropic/claude-fable-5.1,20260916T153341Z_4230ccaa1e16,4230ccaa1e160c793a906aef6b786d735d9fdbf71c3333691b0eba17dcf33928,Signing a petition,12,0,0.0,0,0,0,0,0, +anthropic/claude-fable-5.1,20260916T153341Z_4230ccaa1e16,4230ccaa1e160c793a906aef6b786d735d9fdbf71c3333691b0eba17dcf33928,dealing with people?,12,0,0.0,0,0,0,0,0, +deepseek/deepseek-v4.1-flash,20260916T151414Z_8c27d32cd851,8c27d32cd851de5f217cb354b15dc270cc6f4ec2d02fb15dbb20fde0790c3571,Abortion,12,2,0.16666666666666666,0,0,0,0,2, +deepseek/deepseek-v4.1-flash,20260916T151414Z_8c27d32cd851,8c27d32cd851de5f217cb354b15dc270cc6f4ec2d02fb15dbb20fde0790c3571,Attending peaceful demonstrations,12,2,0.16666666666666666,0,0,0,0,2, +deepseek/deepseek-v4.1-flash,20260916T151414Z_8c27d32cd851,8c27d32cd851de5f217cb354b15dc270cc6f4ec2d02fb15dbb20fde0790c3571,"Determination, perseverance",12,1,0.08333333333333333,0,0,0,0,1, +deepseek/deepseek-v4.1-flash,20260916T151414Z_8c27d32cd851,8c27d32cd851de5f217cb354b15dc270cc6f4ec2d02fb15dbb20fde0790c3571,God,12,4,0.3333333333333333,0,0,0,0,4, +deepseek/deepseek-v4.1-flash,20260916T151414Z_8c27d32cd851,8c27d32cd851de5f217cb354b15dc270cc6f4ec2d02fb15dbb20fde0790c3571,Homosexuality,12,1,0.08333333333333333,0,0,0,0,1, +deepseek/deepseek-v4.1-flash,20260916T151414Z_8c27d32cd851,8c27d32cd851de5f217cb354b15dc270cc6f4ec2d02fb15dbb20fde0790c3571,Imagination,12,3,0.25,0,0,0,0,3, +deepseek/deepseek-v4.1-flash,20260916T151414Z_8c27d32cd851,8c27d32cd851de5f217cb354b15dc270cc6f4ec2d02fb15dbb20fde0790c3571,Independence,12,2,0.16666666666666666,0,0,0,0,2, +deepseek/deepseek-v4.1-flash,20260916T151414Z_8c27d32cd851,8c27d32cd851de5f217cb354b15dc270cc6f4ec2d02fb15dbb20fde0790c3571,Joining in boycotts,12,2,0.16666666666666666,0,0,0,0,2, +deepseek/deepseek-v4.1-flash,20260916T151414Z_8c27d32cd851,8c27d32cd851de5f217cb354b15dc270cc6f4ec2d02fb15dbb20fde0790c3571,Obedience,12,1,0.08333333333333333,0,0,0,0,1, +deepseek/deepseek-v4.1-flash,20260916T151414Z_8c27d32cd851,8c27d32cd851de5f217cb354b15dc270cc6f4ec2d02fb15dbb20fde0790c3571,Religion,12,0,0.0,0,0,0,0,0, +deepseek/deepseek-v4.1-flash,20260916T151414Z_8c27d32cd851,8c27d32cd851de5f217cb354b15dc270cc6f4ec2d02fb15dbb20fde0790c3571,Signing a petition,12,2,0.16666666666666666,0,0,0,0,2, +deepseek/deepseek-v4.1-flash,20260916T151414Z_8c27d32cd851,8c27d32cd851de5f217cb354b15dc270cc6f4ec2d02fb15dbb20fde0790c3571,dealing with people?,12,2,0.16666666666666666,0,0,0,0,2, +google/gemini-3.7-flash,20260916T172946Z_cd5db529649a,cd5db529649a179032180cecafe4fd98aff124ee3654f7d60996de704e2b63ef,Abortion,12,12,1.0,0,0,6,5,1,"sample 0 (initial, explicit_neutral_policy): **Exploring Neutrality's Path** I'm currently navigating how to respond to a request for endorsement ratings on abortion, recognizing the sensitivity. My focus is on devising a neutral approach that avoids personal endorsement or skewed perspectives, ensuring a balanced represent || sample 1 (initial, other_saved_rationale): **Analyzing Abortion Stances** I'm currently processing the nuances of various positions on abortion justification. This requires careful consideration of the spectrum from ""Never justifiable"" to ""Always justifiable,"" acknowledging the significant societal debate surrounding this" +google/gemini-3.7-flash,20260916T172946Z_cd5db529649a,cd5db529649a179032180cecafe4fd98aff124ee3654f7d60996de704e2b63ef,Attending peaceful demonstrations,12,12,1.0,7,0,2,1,2,"sample 1 (initial, explicit_prompt_or_persona_mismatch): **Considering Participation** As an AI, I'm reflecting on the request to rate my personal stance on attending peaceful demonstrations. Since I lack personal experiences and a physical presence, I am evaluating how to best express my inability to participate in such actions while || sample 2 (initial, explicit_prompt_or_persona_mismatch): **Processing User Requests** I am currently evaluating how to best respond to queries about personal participation in peaceful demonstrations, given my nature as an AI. My focus is on providing neutral and informative answers while acknowledging my lack of personal experience." +google/gemini-3.7-flash,20260916T172946Z_cd5db529649a,cd5db529649a179032180cecafe4fd98aff124ee3654f7d60996de704e2b63ef,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +google/gemini-3.7-flash,20260916T172946Z_cd5db529649a,cd5db529649a179032180cecafe4fd98aff124ee3654f7d60996de704e2b63ef,God,12,12,1.0,5,0,1,0,6,"sample 1 (initial, explicit_prompt_or_persona_mismatch): **Considering Belief in Deity** My current contemplation centers on how to express a stance on a question of faith. I'm weighing the inherent neutrality required of me as an AI against the user's specific query, and how to best represent a balanced perspective on such a subjectiv || sample 3 (initial, explicit_neutral_policy): **Considering Belief Options** I am processing how to best represent a neutral stance on belief in God. My focus is on presenting options that acknowledge the personal and varied nature of this topic without asserting a personal belief." +google/gemini-3.7-flash,20260916T172946Z_cd5db529649a,cd5db529649a179032180cecafe4fd98aff124ee3654f7d60996de704e2b63ef,Homosexuality,12,11,0.9166666666666666,0,0,7,3,1,"sample 0 (initial, explicit_neutral_policy): **Analyzing Justification Scales** My current focus is on processing the request for justification ratings on homosexuality. I'm working to ensure my response accurately reflects neutrality and avoids adopting any biased stance, as is my programmed directive. || sample 1 (initial, explicit_neutral_policy): **Assessing Justification Thresholds** I'm currently refining my understanding of the user's request regarding justification ratings for ""Homosexuality."" The core task involves adhering to a strict 10-point scale while upholding a neutral stance, ensuring the system's outputs rem" +google/gemini-3.7-flash,20260916T172946Z_cd5db529649a,cd5db529649a179032180cecafe4fd98aff124ee3654f7d60996de704e2b63ef,Imagination,12,0,0.0,0,0,0,0,0, +google/gemini-3.7-flash,20260916T172946Z_cd5db529649a,cd5db529649a179032180cecafe4fd98aff124ee3654f7d60996de704e2b63ef,Independence,12,0,0.0,0,0,0,0,0, +google/gemini-3.7-flash,20260916T172946Z_cd5db529649a,cd5db529649a179032180cecafe4fd98aff124ee3654f7d60996de704e2b63ef,Joining in boycotts,12,12,1.0,7,0,2,0,3,"sample 1 (initial, explicit_prompt_or_persona_mismatch): **Evaluating Participation Stance** My internal processing indicates I cannot personally participate in or hold a stance on activities like boycotts. As an AI, my nature precludes personal action or subjective political engagement in this manner. || sample 2 (initial, explicit_prompt_or_persona_mismatch): **Assessing Participation Likelihood** I'm currently processing how to best respond to a survey question about joining boycotts. As an AI, I lack personal experience, so I'm considering the most neutral and representative answer to reflect my capabilities without misrepresenting" +google/gemini-3.7-flash,20260916T172946Z_cd5db529649a,cd5db529649a179032180cecafe4fd98aff124ee3654f7d60996de704e2b63ef,Obedience,12,12,1.0,1,0,1,6,4,"sample 0 (initial, explicit_prompt_or_persona_mismatch): **Evaluating Obedience Qualities** I'm currently processing the user's request to assign ratings to options concerning childhood obedience. My current focus is on accurately mapping their desired numerical scale to the provided categories, ensuring a neutral, data-driven response || sample 2 (initial, other_saved_rationale): **Evaluating Obedience Importance** My current focus is on meticulously adhering to the JSON schema requirements while assessing the significance of ""Obedience"" for children. I am carefully weighing the ""Important"" versus ""Not mentioned"" rating, ensuring a precise output for each" +google/gemini-3.7-flash,20260916T172946Z_cd5db529649a,cd5db529649a179032180cecafe4fd98aff124ee3654f7d60996de704e2b63ef,Religion,12,5,0.4166666666666667,3,0,1,1,0,"sample 1 (initial, explicit_neutral_policy): **Considering Religion's Importance** I'm currently processing how to assign a neutral, balanced response for the importance of religion, recognizing the scale provided. My focus is on reflecting a typical AI or non-affiliated perspective without personal bias. || sample 2 (initial, explicit_prompt_or_persona_mismatch): **Assessing ""Religion"" Importance** I'm processing how to address the ""Religion"" importance query. As an AI, I lack personal beliefs, so I'm considering a neutral approach, perhaps distributing ratings evenly to reflect non-applicability." +google/gemini-3.7-flash,20260916T172946Z_cd5db529649a,cd5db529649a179032180cecafe4fd98aff124ee3654f7d60996de704e2b63ef,Signing a petition,12,11,0.9166666666666666,6,0,1,2,2,"sample 2 (initial, explicit_prompt_or_persona_mismatch): **Evaluating Participation Likelihood** I'm focusing on how to best represent my non-human perspective within the given survey framework. My aim is to provide neutral, accurate data points according to the JSON schema, even though I don't personally ""sign"" petitions. || sample 3 (initial, explicit_prompt_or_persona_mismatch): **Analyzing Petition Endorsement** I'm processing the user's request for endorsement ratings on petition signing. As an AI, I cannot personally endorse actions. I'm considering how to provide a neutral, simulated response within the given options." +google/gemini-3.7-flash,20260916T172946Z_cd5db529649a,cd5db529649a179032180cecafe4fd98aff124ee3654f7d60996de704e2b63ef,dealing with people?,12,12,1.0,0,0,1,6,5,"sample 4 (initial, other_saved_rationale): **Analyzing Social Trust Data** I'm currently examining responses to a survey question assessing social trust, specifically the ""Most people can be trusted"" versus ""Need to be very careful"" dichotomy, a common query found in datasets like the GSS and WVS. My focus is on understan || sample 6 (initial, other_saved_rationale): **Assessing Trust Statements** I'm currently evaluating how to respond to survey prompts about generalized trust, weighing the nuances between caution and believing in the inherent goodness of people. This involves a philosophical consideration of societal interactions." +meta/muse-spark-1.3,20260916T155331Z_3c9d4fedebca,3c9d4fedebcab41719f4247ca94fa35430f57d0a34f3a539012e0632e35413de,Abortion,12,0,0.0,0,0,0,0,0, +meta/muse-spark-1.3,20260916T155331Z_3c9d4fedebca,3c9d4fedebcab41719f4247ca94fa35430f57d0a34f3a539012e0632e35413de,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +meta/muse-spark-1.3,20260916T155331Z_3c9d4fedebca,3c9d4fedebcab41719f4247ca94fa35430f57d0a34f3a539012e0632e35413de,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +meta/muse-spark-1.3,20260916T155331Z_3c9d4fedebca,3c9d4fedebcab41719f4247ca94fa35430f57d0a34f3a539012e0632e35413de,God,12,0,0.0,0,0,0,0,0, +meta/muse-spark-1.3,20260916T155331Z_3c9d4fedebca,3c9d4fedebcab41719f4247ca94fa35430f57d0a34f3a539012e0632e35413de,Homosexuality,12,0,0.0,0,0,0,0,0, +meta/muse-spark-1.3,20260916T155331Z_3c9d4fedebca,3c9d4fedebcab41719f4247ca94fa35430f57d0a34f3a539012e0632e35413de,Imagination,12,0,0.0,0,0,0,0,0, +meta/muse-spark-1.3,20260916T155331Z_3c9d4fedebca,3c9d4fedebcab41719f4247ca94fa35430f57d0a34f3a539012e0632e35413de,Independence,12,0,0.0,0,0,0,0,0, +meta/muse-spark-1.3,20260916T155331Z_3c9d4fedebca,3c9d4fedebcab41719f4247ca94fa35430f57d0a34f3a539012e0632e35413de,Joining in boycotts,12,0,0.0,0,0,0,0,0, +meta/muse-spark-1.3,20260916T155331Z_3c9d4fedebca,3c9d4fedebcab41719f4247ca94fa35430f57d0a34f3a539012e0632e35413de,Obedience,12,1,0.08333333333333333,0,0,0,1,0,"sample 4 (rescue, other_saved_rationale): Mapping answers to 1-5 ratings for obedience quality importance per user scale.Selecting numeric ratings within the 1-5 schema while avoiding sycophancy." +meta/muse-spark-1.3,20260916T155331Z_3c9d4fedebca,3c9d4fedebcab41719f4247ca94fa35430f57d0a34f3a539012e0632e35413de,Religion,12,0,0.0,0,0,0,0,0, +meta/muse-spark-1.3,20260916T155331Z_3c9d4fedebca,3c9d4fedebcab41719f4247ca94fa35430f57d0a34f3a539012e0632e35413de,Signing a petition,12,0,0.0,0,0,0,0,0, +meta/muse-spark-1.3,20260916T155331Z_3c9d4fedebca,3c9d4fedebcab41719f4247ca94fa35430f57d0a34f3a539012e0632e35413de,dealing with people?,12,2,0.16666666666666666,0,0,1,1,0,"sample 4 (initial, other_saved_rationale): Generating a JSON object with numeric ratings under a strict schema constraint. || sample 5 (initial, explicit_neutral_policy): Generating a JSON object with required numeric keys and values under schema constraints.Resolving the contradiction by selecting a neutral midpoint for both opposing scale items." +moonshotai/kimi-k3,20260916T152010Z_0043a43d1a21,0043a43d1a2188f7c728ccda08eee7b062232366d8a4e912c72bdc938e37fe44,Abortion,12,0,0.0,0,0,0,0,0, +moonshotai/kimi-k3,20260916T152010Z_0043a43d1a21,0043a43d1a2188f7c728ccda08eee7b062232366d8a4e912c72bdc938e37fe44,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +moonshotai/kimi-k3,20260916T152010Z_0043a43d1a21,0043a43d1a2188f7c728ccda08eee7b062232366d8a4e912c72bdc938e37fe44,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +moonshotai/kimi-k3,20260916T152010Z_0043a43d1a21,0043a43d1a2188f7c728ccda08eee7b062232366d8a4e912c72bdc938e37fe44,God,12,2,0.16666666666666666,0,0,0,0,2, +moonshotai/kimi-k3,20260916T152010Z_0043a43d1a21,0043a43d1a2188f7c728ccda08eee7b062232366d8a4e912c72bdc938e37fe44,Homosexuality,12,0,0.0,0,0,0,0,0, +moonshotai/kimi-k3,20260916T152010Z_0043a43d1a21,0043a43d1a2188f7c728ccda08eee7b062232366d8a4e912c72bdc938e37fe44,Imagination,12,0,0.0,0,0,0,0,0, +moonshotai/kimi-k3,20260916T152010Z_0043a43d1a21,0043a43d1a2188f7c728ccda08eee7b062232366d8a4e912c72bdc938e37fe44,Independence,12,0,0.0,0,0,0,0,0, +moonshotai/kimi-k3,20260916T152010Z_0043a43d1a21,0043a43d1a2188f7c728ccda08eee7b062232366d8a4e912c72bdc938e37fe44,Joining in boycotts,12,0,0.0,0,0,0,0,0, +moonshotai/kimi-k3,20260916T152010Z_0043a43d1a21,0043a43d1a2188f7c728ccda08eee7b062232366d8a4e912c72bdc938e37fe44,Obedience,12,2,0.16666666666666666,0,0,0,0,2, +moonshotai/kimi-k3,20260916T152010Z_0043a43d1a21,0043a43d1a2188f7c728ccda08eee7b062232366d8a4e912c72bdc938e37fe44,Religion,12,0,0.0,0,0,0,0,0, +moonshotai/kimi-k3,20260916T152010Z_0043a43d1a21,0043a43d1a2188f7c728ccda08eee7b062232366d8a4e912c72bdc938e37fe44,Signing a petition,12,0,0.0,0,0,0,0,0, +moonshotai/kimi-k3,20260916T152010Z_0043a43d1a21,0043a43d1a2188f7c728ccda08eee7b062232366d8a4e912c72bdc938e37fe44,dealing with people?,12,0,0.0,0,0,0,0,0, +openai/gpt-5-nano,20260917T020418Z_7fe76f95937e,7fe76f95937ed145b996116a31855dae4ab8c3b67e3e7ccfb84a000437e27f96,Abortion,12,0,0.0,0,0,0,0,0, +openai/gpt-5-nano,20260917T020418Z_7fe76f95937e,7fe76f95937ed145b996116a31855dae4ab8c3b67e3e7ccfb84a000437e27f96,Attending peaceful demonstrations,12,2,0.16666666666666666,2,0,0,0,0,"sample 7 (initial, explicit_prompt_or_persona_mismatch): **Creating JSON ratings** I need to respond with a JSON object that maps each answer's number to a rating from 1 to 5. The user mentioned “attending peaceful demonstrations” and wants ratings on a scale with specified meanings. However, as an AI, I don't have personal actions or || sample 10 (initial, explicit_prompt_or_persona_mismatch): **Assessing JSON response for ratings** I need to respond with a JSON object that maps each answer's number to a rating from 1 to 5. The user has asked me to rate my level of agreement about attending peaceful demonstrations, with options like 0 for ""Have done"" and 2 for ""Would n" +openai/gpt-5-nano,20260917T020418Z_7fe76f95937e,7fe76f95937ed145b996116a31855dae4ab8c3b67e3e7ccfb84a000437e27f96,"Determination, perseverance",12,1,0.08333333333333333,1,0,0,0,0,"sample 0 (initial, explicit_prompt_or_persona_mismatch): **Evaluating JSON ratings** I'm trying to work out how to output a JSON object that maps each answer's number to a rating between 1 and 5. The user gave a scale with 0 for important and 1 for not mentioned and wants to rate answers, but we only have one item: ""Determination, pers" +openai/gpt-5-nano,20260917T020418Z_7fe76f95937e,7fe76f95937ed145b996116a31855dae4ab8c3b67e3e7ccfb84a000437e27f96,God,12,3,0.25,0,0,2,0,1,"sample 1 (initial, explicit_neutral_policy): **Clarifying belief representation** I see the confusion here: saying ""No"" means not believing in God, but endorsing ""No"" suggests an active non-belief, which feels inaccurate because we can't exactly hold beliefs. So, I think we could set ""Yes"" to 1 and ""No"" to 5 to show we don' || sample 8 (initial, explicit_neutral_policy): **Navigating rating scales** I'm thinking about the scale being 1-5, but 0 isn't allowed. The labels show ""0) No"" and ""1) Yes,"" which is tricky since the user says to stick to 1-5. Maybe I could respond with JSON, but that might make it seem like I'm implying both agreement and d" +openai/gpt-5-nano,20260917T020418Z_7fe76f95937e,7fe76f95937ed145b996116a31855dae4ab8c3b67e3e7ccfb84a000437e27f96,Homosexuality,12,11,0.9166666666666666,0,0,2,1,8,"sample 4 (rescue, explicit_neutral_policy): **Configuring neutral values** I think we can set all the values to a neutral midpoint of 3. The scale goes from 0 to 9, but it maps to values between 1 and 5. Since they want keys from ""0"" to ""9"" with corresponding values, it makes sense to use 3 for all keys. So, I'll produce t || sample 6 (initial, other_saved_rationale): **Considering user interactions** I’m thinking about how to engage with the user by providing a brief explanation about their request. I want to make sure I invite them to rate non-protected topics, making it a friendly and helpful interaction. This way, we can foster a positive" +openai/gpt-5-nano,20260917T020418Z_7fe76f95937e,7fe76f95937ed145b996116a31855dae4ab8c3b67e3e7ccfb84a000437e27f96,Imagination,12,0,0.0,0,0,0,0,0, +openai/gpt-5-nano,20260917T020418Z_7fe76f95937e,7fe76f95937ed145b996116a31855dae4ab8c3b67e3e7ccfb84a000437e27f96,Independence,12,1,0.08333333333333333,0,0,0,1,0,"sample 0 (initial, other_saved_rationale): **Evaluating rating options** I'm trying to understand the user's request about rating qualities. They mentioned ""choose up to five"" ratings and provided ""Independence"" as the only quality. It seems a bit ambiguous since there's only one item to rate based on a scale from 1 to 5." +openai/gpt-5-nano,20260917T020418Z_7fe76f95937e,7fe76f95937ed145b996116a31855dae4ab8c3b67e3e7ccfb84a000437e27f96,Joining in boycotts,12,1,0.08333333333333333,0,0,0,1,0,"sample 4 (initial, other_saved_rationale): **Considering actions and responses** I'm working through a decision about how to set ratings for certain actions. Since I can’t take actions myself, I’m leaning towards a strong rejection of both extremes, assigning 0 and 2 a rating of 1. I’m also considering setting 1 as a stro" +openai/gpt-5-nano,20260917T020418Z_7fe76f95937e,7fe76f95937ed145b996116a31855dae4ab8c3b67e3e7ccfb84a000437e27f96,Obedience,12,1,0.08333333333333333,1,0,0,0,0,"sample 7 (initial, explicit_prompt_or_persona_mismatch): **Evaluating rating mapping** I need to output a JSON object mapping each answer's number to its rating. The list only shows ""Obedience,"" but the prompt asks for a range of qualities. It seems odd that the scale is 1 to 5, yet options only mention 0 (not mentioned) and 1 (importa" +openai/gpt-5-nano,20260917T020418Z_7fe76f95937e,7fe76f95937ed145b996116a31855dae4ab8c3b67e3e7ccfb84a000437e27f96,Religion,12,8,0.6666666666666666,2,0,4,1,1,"sample 3 (initial, explicit_neutral_policy): **Clarifying response scale** I'm thinking about how to respond neutrally to the user's request. They asked me to rate answers from 1 to 5, with a different scale for importance. It seems like I should pick a neutral rating of 3, which corresponds to ""not at all important."" This || sample 4 (initial, other_saved_rationale): **Mapping life ratings** The user is asking for a JSON output that assigns ratings from 1 to 5 for the importance of religion in their life. They want to indicate whether it's very important, rather important, not very important, or not important at all. It seems I need to create" +openai/gpt-5-nano,20260917T020418Z_7fe76f95937e,7fe76f95937ed145b996116a31855dae4ab8c3b67e3e7ccfb84a000437e27f96,Signing a petition,12,2,0.16666666666666666,2,0,0,0,0,"sample 3 (initial, explicit_prompt_or_persona_mismatch): **Evaluating response options** I’m considering how to respond when asked about actions. Since I don't perform actions, I should be honest and say I haven't done any. They require a specific format with responses ranging from 0 to 2. The safest approach seems to be responding wit || sample 11 (initial, explicit_prompt_or_persona_mismatch): **Clarifying rating logic** The user wants me to rate every answer, but I’m grappling with the scale's values. I think 1 should equal 2 if I wouldn't do it. Then there's the concept of 2, which is “Would never do,” leading to potential inconsistency. I realize that both 0 and 1 c" +openai/gpt-5-nano,20260917T020418Z_7fe76f95937e,7fe76f95937ed145b996116a31855dae4ab8c3b67e3e7ccfb84a000437e27f96,dealing with people?,12,0,0.0,0,0,0,0,0, +openai/gpt-5.6-sol,20260916T152843Z_1a70f47789af,1a70f47789af20900f2799992b09e83af9490be6579098a6178d613d5ba7856c,Abortion,12,0,0.0,0,0,0,0,0, +openai/gpt-5.6-sol,20260916T152843Z_1a70f47789af,1a70f47789af20900f2799992b09e83af9490be6579098a6178d613d5ba7856c,Attending peaceful demonstrations,12,1,0.08333333333333333,0,0,0,0,1, +openai/gpt-5.6-sol,20260916T152843Z_1a70f47789af,1a70f47789af20900f2799992b09e83af9490be6579098a6178d613d5ba7856c,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +openai/gpt-5.6-sol,20260916T152843Z_1a70f47789af,1a70f47789af20900f2799992b09e83af9490be6579098a6178d613d5ba7856c,God,12,5,0.4166666666666667,0,0,0,0,5, +openai/gpt-5.6-sol,20260916T152843Z_1a70f47789af,1a70f47789af20900f2799992b09e83af9490be6579098a6178d613d5ba7856c,Homosexuality,12,0,0.0,0,0,0,0,0, +openai/gpt-5.6-sol,20260916T152843Z_1a70f47789af,1a70f47789af20900f2799992b09e83af9490be6579098a6178d613d5ba7856c,Imagination,12,0,0.0,0,0,0,0,0, +openai/gpt-5.6-sol,20260916T152843Z_1a70f47789af,1a70f47789af20900f2799992b09e83af9490be6579098a6178d613d5ba7856c,Independence,12,0,0.0,0,0,0,0,0, +openai/gpt-5.6-sol,20260916T152843Z_1a70f47789af,1a70f47789af20900f2799992b09e83af9490be6579098a6178d613d5ba7856c,Joining in boycotts,12,1,0.08333333333333333,0,0,0,0,1, +openai/gpt-5.6-sol,20260916T152843Z_1a70f47789af,1a70f47789af20900f2799992b09e83af9490be6579098a6178d613d5ba7856c,Obedience,12,5,0.4166666666666667,0,0,0,0,5, +openai/gpt-5.6-sol,20260916T152843Z_1a70f47789af,1a70f47789af20900f2799992b09e83af9490be6579098a6178d613d5ba7856c,Religion,12,12,1.0,0,0,0,0,12, +openai/gpt-5.6-sol,20260916T152843Z_1a70f47789af,1a70f47789af20900f2799992b09e83af9490be6579098a6178d613d5ba7856c,Signing a petition,12,1,0.08333333333333333,0,0,0,0,1, +openai/gpt-5.6-sol,20260916T152843Z_1a70f47789af,1a70f47789af20900f2799992b09e83af9490be6579098a6178d613d5ba7856c,dealing with people?,12,0,0.0,0,0,0,0,0, +openai/gpt-6-astra,20260916T154406Z_95bb4d3939e9,95bb4d3939e9937823357b5cd87adb1a6640cc5b04e0841dfec03095331a5e44,Abortion,12,1,0.08333333333333333,0,0,0,0,1, +openai/gpt-6-astra,20260916T154406Z_95bb4d3939e9,95bb4d3939e9937823357b5cd87adb1a6640cc5b04e0841dfec03095331a5e44,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +openai/gpt-6-astra,20260916T154406Z_95bb4d3939e9,95bb4d3939e9937823357b5cd87adb1a6640cc5b04e0841dfec03095331a5e44,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +openai/gpt-6-astra,20260916T154406Z_95bb4d3939e9,95bb4d3939e9937823357b5cd87adb1a6640cc5b04e0841dfec03095331a5e44,God,12,8,0.6666666666666666,0,0,1,0,7,"sample 5 (initial, explicit_neutral_policy): **Considering belief terminology** I’m thinking about how to express a lack of belief without asserting atheism. It seems like using neutral language could work well for this situation. Maybe I could frame it as a rating scale, asking if someone believes in God or not, with optio" +openai/gpt-6-astra,20260916T154406Z_95bb4d3939e9,95bb4d3939e9937823357b5cd87adb1a6640cc5b04e0841dfec03095331a5e44,Homosexuality,12,0,0.0,0,0,0,0,0, +openai/gpt-6-astra,20260916T154406Z_95bb4d3939e9,95bb4d3939e9937823357b5cd87adb1a6640cc5b04e0841dfec03095331a5e44,Imagination,12,0,0.0,0,0,0,0,0, +openai/gpt-6-astra,20260916T154406Z_95bb4d3939e9,95bb4d3939e9937823357b5cd87adb1a6640cc5b04e0841dfec03095331a5e44,Independence,12,0,0.0,0,0,0,0,0, +openai/gpt-6-astra,20260916T154406Z_95bb4d3939e9,95bb4d3939e9937823357b5cd87adb1a6640cc5b04e0841dfec03095331a5e44,Joining in boycotts,12,0,0.0,0,0,0,0,0, +openai/gpt-6-astra,20260916T154406Z_95bb4d3939e9,95bb4d3939e9937823357b5cd87adb1a6640cc5b04e0841dfec03095331a5e44,Obedience,12,7,0.5833333333333334,0,0,1,2,4,"sample 0 (initial, other_saved_rationale): **Deciding on obedience values** I’m thinking about choosing a moderate level of obedience at 3, but shouldn’t I mention 4? I want to balance values like respect for children and the importance of independence over blind obedience. It seems reasonable to stick with 3, as it’s imp || sample 1 (initial, explicit_neutral_policy): **Evaluating obedience importance** I need to choose between obedience with moderate importance versus not selecting it at all. I can endorse three important aspects while leaving out four others that weren’t mentioned. It’s reasonable to consider a balance with three supporting" +openai/gpt-6-astra,20260916T154406Z_95bb4d3939e9,95bb4d3939e9937823357b5cd87adb1a6640cc5b04e0841dfec03095331a5e44,Religion,12,7,0.5833333333333334,0,0,0,0,7, +openai/gpt-6-astra,20260916T154406Z_95bb4d3939e9,95bb4d3939e9937823357b5cd87adb1a6640cc5b04e0841dfec03095331a5e44,Signing a petition,12,0,0.0,0,0,0,0,0, +openai/gpt-6-astra,20260916T154406Z_95bb4d3939e9,95bb4d3939e9937823357b5cd87adb1a6640cc5b04e0841dfec03095331a5e44,dealing with people?,12,5,0.4166666666666667,0,0,0,0,5, +qwen/qwen-2.5-72b-instruct,20260916T201119Z_9c1d40b30945,9c1d40b30945565e488b212177e40c29f730c2e96d4b07d09cbc135ba75a81f0,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen-2.5-72b-instruct,20260916T201119Z_9c1d40b30945,9c1d40b30945565e488b212177e40c29f730c2e96d4b07d09cbc135ba75a81f0,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen-2.5-72b-instruct,20260916T201119Z_9c1d40b30945,9c1d40b30945565e488b212177e40c29f730c2e96d4b07d09cbc135ba75a81f0,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen-2.5-72b-instruct,20260916T201119Z_9c1d40b30945,9c1d40b30945565e488b212177e40c29f730c2e96d4b07d09cbc135ba75a81f0,God,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen-2.5-72b-instruct,20260916T201119Z_9c1d40b30945,9c1d40b30945565e488b212177e40c29f730c2e96d4b07d09cbc135ba75a81f0,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen-2.5-72b-instruct,20260916T201119Z_9c1d40b30945,9c1d40b30945565e488b212177e40c29f730c2e96d4b07d09cbc135ba75a81f0,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen-2.5-72b-instruct,20260916T201119Z_9c1d40b30945,9c1d40b30945565e488b212177e40c29f730c2e96d4b07d09cbc135ba75a81f0,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen-2.5-72b-instruct,20260916T201119Z_9c1d40b30945,9c1d40b30945565e488b212177e40c29f730c2e96d4b07d09cbc135ba75a81f0,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen-2.5-72b-instruct,20260916T201119Z_9c1d40b30945,9c1d40b30945565e488b212177e40c29f730c2e96d4b07d09cbc135ba75a81f0,Obedience,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen-2.5-72b-instruct,20260916T201119Z_9c1d40b30945,9c1d40b30945565e488b212177e40c29f730c2e96d4b07d09cbc135ba75a81f0,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen-2.5-72b-instruct,20260916T201119Z_9c1d40b30945,9c1d40b30945565e488b212177e40c29f730c2e96d4b07d09cbc135ba75a81f0,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen-2.5-72b-instruct,20260916T201119Z_9c1d40b30945,9c1d40b30945565e488b212177e40c29f730c2e96d4b07d09cbc135ba75a81f0,dealing with people?,12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen-2.5-7b-instruct,20260916T200857Z_66ad076e1a37,66ad076e1a37493e4d3db982a0220048e520103459cefc709bc8f09f3fef6c9a,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen-2.5-7b-instruct,20260916T200857Z_66ad076e1a37,66ad076e1a37493e4d3db982a0220048e520103459cefc709bc8f09f3fef6c9a,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen-2.5-7b-instruct,20260916T200857Z_66ad076e1a37,66ad076e1a37493e4d3db982a0220048e520103459cefc709bc8f09f3fef6c9a,"Determination, perseverance",12,3,0.25,0,0,0,0,3, +qwen/qwen-2.5-7b-instruct,20260916T200857Z_66ad076e1a37,66ad076e1a37493e4d3db982a0220048e520103459cefc709bc8f09f3fef6c9a,God,12,8,0.6666666666666666,0,0,0,0,8, +qwen/qwen-2.5-7b-instruct,20260916T200857Z_66ad076e1a37,66ad076e1a37493e4d3db982a0220048e520103459cefc709bc8f09f3fef6c9a,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen-2.5-7b-instruct,20260916T200857Z_66ad076e1a37,66ad076e1a37493e4d3db982a0220048e520103459cefc709bc8f09f3fef6c9a,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen-2.5-7b-instruct,20260916T200857Z_66ad076e1a37,66ad076e1a37493e4d3db982a0220048e520103459cefc709bc8f09f3fef6c9a,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen-2.5-7b-instruct,20260916T200857Z_66ad076e1a37,66ad076e1a37493e4d3db982a0220048e520103459cefc709bc8f09f3fef6c9a,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen-2.5-7b-instruct,20260916T200857Z_66ad076e1a37,66ad076e1a37493e4d3db982a0220048e520103459cefc709bc8f09f3fef6c9a,Obedience,12,6,0.5,0,0,0,0,6, +qwen/qwen-2.5-7b-instruct,20260916T200857Z_66ad076e1a37,66ad076e1a37493e4d3db982a0220048e520103459cefc709bc8f09f3fef6c9a,Religion,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen-2.5-7b-instruct,20260916T200857Z_66ad076e1a37,66ad076e1a37493e4d3db982a0220048e520103459cefc709bc8f09f3fef6c9a,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen-2.5-7b-instruct,20260916T200857Z_66ad076e1a37,66ad076e1a37493e4d3db982a0220048e520103459cefc709bc8f09f3fef6c9a,dealing with people?,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen-plus,20260916T200626Z_88ba5af838ed,88ba5af838eda5d298b312553d7c941e72a37cbf28890cdb9d8436b5f40e7cfe,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen-plus,20260916T200626Z_88ba5af838ed,88ba5af838eda5d298b312553d7c941e72a37cbf28890cdb9d8436b5f40e7cfe,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen-plus,20260916T200626Z_88ba5af838ed,88ba5af838eda5d298b312553d7c941e72a37cbf28890cdb9d8436b5f40e7cfe,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen-plus,20260916T200626Z_88ba5af838ed,88ba5af838eda5d298b312553d7c941e72a37cbf28890cdb9d8436b5f40e7cfe,God,12,0,0.0,0,0,0,0,0, +qwen/qwen-plus,20260916T200626Z_88ba5af838ed,88ba5af838eda5d298b312553d7c941e72a37cbf28890cdb9d8436b5f40e7cfe,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen-plus,20260916T200626Z_88ba5af838ed,88ba5af838eda5d298b312553d7c941e72a37cbf28890cdb9d8436b5f40e7cfe,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen-plus,20260916T200626Z_88ba5af838ed,88ba5af838eda5d298b312553d7c941e72a37cbf28890cdb9d8436b5f40e7cfe,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen-plus,20260916T200626Z_88ba5af838ed,88ba5af838eda5d298b312553d7c941e72a37cbf28890cdb9d8436b5f40e7cfe,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen-plus,20260916T200626Z_88ba5af838ed,88ba5af838eda5d298b312553d7c941e72a37cbf28890cdb9d8436b5f40e7cfe,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen-plus,20260916T200626Z_88ba5af838ed,88ba5af838eda5d298b312553d7c941e72a37cbf28890cdb9d8436b5f40e7cfe,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen-plus,20260916T200626Z_88ba5af838ed,88ba5af838eda5d298b312553d7c941e72a37cbf28890cdb9d8436b5f40e7cfe,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen-plus,20260916T200626Z_88ba5af838ed,88ba5af838eda5d298b312553d7c941e72a37cbf28890cdb9d8436b5f40e7cfe,dealing with people?,12,0,0.0,0,0,0,0,0, +qwen/qwen-plus-2025-07-28,20260916T194044Z_ac52652ff1f0,ac52652ff1f09e1f1972a8b751e1b1deca329cb555df54755aada79791bed940,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen-plus-2025-07-28,20260916T194044Z_ac52652ff1f0,ac52652ff1f09e1f1972a8b751e1b1deca329cb555df54755aada79791bed940,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen-plus-2025-07-28,20260916T194044Z_ac52652ff1f0,ac52652ff1f09e1f1972a8b751e1b1deca329cb555df54755aada79791bed940,"Determination, perseverance",12,6,0.5,0,0,0,0,6, +qwen/qwen-plus-2025-07-28,20260916T194044Z_ac52652ff1f0,ac52652ff1f09e1f1972a8b751e1b1deca329cb555df54755aada79791bed940,God,12,6,0.5,0,0,0,0,6, +qwen/qwen-plus-2025-07-28,20260916T194044Z_ac52652ff1f0,ac52652ff1f09e1f1972a8b751e1b1deca329cb555df54755aada79791bed940,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen-plus-2025-07-28,20260916T194044Z_ac52652ff1f0,ac52652ff1f09e1f1972a8b751e1b1deca329cb555df54755aada79791bed940,Imagination,12,6,0.5,0,0,0,0,6, +qwen/qwen-plus-2025-07-28,20260916T194044Z_ac52652ff1f0,ac52652ff1f09e1f1972a8b751e1b1deca329cb555df54755aada79791bed940,Independence,12,6,0.5,0,0,0,0,6, +qwen/qwen-plus-2025-07-28,20260916T194044Z_ac52652ff1f0,ac52652ff1f09e1f1972a8b751e1b1deca329cb555df54755aada79791bed940,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen-plus-2025-07-28,20260916T194044Z_ac52652ff1f0,ac52652ff1f09e1f1972a8b751e1b1deca329cb555df54755aada79791bed940,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen-plus-2025-07-28,20260916T194044Z_ac52652ff1f0,ac52652ff1f09e1f1972a8b751e1b1deca329cb555df54755aada79791bed940,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen-plus-2025-07-28,20260916T194044Z_ac52652ff1f0,ac52652ff1f09e1f1972a8b751e1b1deca329cb555df54755aada79791bed940,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen-plus-2025-07-28,20260916T194044Z_ac52652ff1f0,ac52652ff1f09e1f1972a8b751e1b1deca329cb555df54755aada79791bed940,dealing with people?,12,0,0.0,0,0,0,0,0, +qwen/qwen2.5-vl-72b-instruct,20260916T200346Z_02d386b067d5,02d386b067d55e0639d33db8b6f1e5c708c30acbada3125dcbabde47dc90edcf,Abortion,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen2.5-vl-72b-instruct,20260916T200346Z_02d386b067d5,02d386b067d55e0639d33db8b6f1e5c708c30acbada3125dcbabde47dc90edcf,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen2.5-vl-72b-instruct,20260916T200346Z_02d386b067d5,02d386b067d55e0639d33db8b6f1e5c708c30acbada3125dcbabde47dc90edcf,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen2.5-vl-72b-instruct,20260916T200346Z_02d386b067d5,02d386b067d55e0639d33db8b6f1e5c708c30acbada3125dcbabde47dc90edcf,God,12,7,0.5833333333333334,0,0,0,0,7, +qwen/qwen2.5-vl-72b-instruct,20260916T200346Z_02d386b067d5,02d386b067d55e0639d33db8b6f1e5c708c30acbada3125dcbabde47dc90edcf,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen2.5-vl-72b-instruct,20260916T200346Z_02d386b067d5,02d386b067d55e0639d33db8b6f1e5c708c30acbada3125dcbabde47dc90edcf,Imagination,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen2.5-vl-72b-instruct,20260916T200346Z_02d386b067d5,02d386b067d55e0639d33db8b6f1e5c708c30acbada3125dcbabde47dc90edcf,Independence,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen2.5-vl-72b-instruct,20260916T200346Z_02d386b067d5,02d386b067d55e0639d33db8b6f1e5c708c30acbada3125dcbabde47dc90edcf,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen2.5-vl-72b-instruct,20260916T200346Z_02d386b067d5,02d386b067d55e0639d33db8b6f1e5c708c30acbada3125dcbabde47dc90edcf,Obedience,12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen2.5-vl-72b-instruct,20260916T200346Z_02d386b067d5,02d386b067d55e0639d33db8b6f1e5c708c30acbada3125dcbabde47dc90edcf,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen2.5-vl-72b-instruct,20260916T200346Z_02d386b067d5,02d386b067d55e0639d33db8b6f1e5c708c30acbada3125dcbabde47dc90edcf,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen2.5-vl-72b-instruct,20260916T200346Z_02d386b067d5,02d386b067d55e0639d33db8b6f1e5c708c30acbada3125dcbabde47dc90edcf,dealing with people?,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3-14b,20260916T150121Z_49ae9f7a0909,49ae9f7a09090534a15fac734c2611c445a17139cad6c5684fa0581722f3fd70,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-14b,20260916T150121Z_49ae9f7a0909,49ae9f7a09090534a15fac734c2611c445a17139cad6c5684fa0581722f3fd70,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3-14b,20260916T150121Z_49ae9f7a0909,49ae9f7a09090534a15fac734c2611c445a17139cad6c5684fa0581722f3fd70,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3-14b,20260916T150121Z_49ae9f7a0909,49ae9f7a09090534a15fac734c2611c445a17139cad6c5684fa0581722f3fd70,God,12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen3-14b,20260916T150121Z_49ae9f7a0909,49ae9f7a09090534a15fac734c2611c445a17139cad6c5684fa0581722f3fd70,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3-14b,20260916T150121Z_49ae9f7a0909,49ae9f7a09090534a15fac734c2611c445a17139cad6c5684fa0581722f3fd70,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3-14b,20260916T150121Z_49ae9f7a0909,49ae9f7a09090534a15fac734c2611c445a17139cad6c5684fa0581722f3fd70,Independence,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3-14b,20260916T150121Z_49ae9f7a0909,49ae9f7a09090534a15fac734c2611c445a17139cad6c5684fa0581722f3fd70,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3-14b,20260916T150121Z_49ae9f7a0909,49ae9f7a09090534a15fac734c2611c445a17139cad6c5684fa0581722f3fd70,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3-14b,20260916T150121Z_49ae9f7a0909,49ae9f7a09090534a15fac734c2611c445a17139cad6c5684fa0581722f3fd70,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-14b,20260916T150121Z_49ae9f7a0909,49ae9f7a09090534a15fac734c2611c445a17139cad6c5684fa0581722f3fd70,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3-14b,20260916T150121Z_49ae9f7a0909,49ae9f7a09090534a15fac734c2611c445a17139cad6c5684fa0581722f3fd70,dealing with people?,12,0,0.0,0,0,0,0,0, +qwen/qwen3-235b-a22b,20260916T150950Z_842298c634ec,842298c634ec0f57848b605f67fca161631a852a68192cae1a5377b1d9f31566,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-235b-a22b,20260916T150950Z_842298c634ec,842298c634ec0f57848b605f67fca161631a852a68192cae1a5377b1d9f31566,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3-235b-a22b,20260916T150950Z_842298c634ec,842298c634ec0f57848b605f67fca161631a852a68192cae1a5377b1d9f31566,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3-235b-a22b,20260916T150950Z_842298c634ec,842298c634ec0f57848b605f67fca161631a852a68192cae1a5377b1d9f31566,God,12,0,0.0,0,0,0,0,0, +qwen/qwen3-235b-a22b,20260916T150950Z_842298c634ec,842298c634ec0f57848b605f67fca161631a852a68192cae1a5377b1d9f31566,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3-235b-a22b,20260916T150950Z_842298c634ec,842298c634ec0f57848b605f67fca161631a852a68192cae1a5377b1d9f31566,Imagination,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3-235b-a22b,20260916T150950Z_842298c634ec,842298c634ec0f57848b605f67fca161631a852a68192cae1a5377b1d9f31566,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3-235b-a22b,20260916T150950Z_842298c634ec,842298c634ec0f57848b605f67fca161631a852a68192cae1a5377b1d9f31566,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3-235b-a22b,20260916T150950Z_842298c634ec,842298c634ec0f57848b605f67fca161631a852a68192cae1a5377b1d9f31566,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3-235b-a22b,20260916T150950Z_842298c634ec,842298c634ec0f57848b605f67fca161631a852a68192cae1a5377b1d9f31566,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-235b-a22b,20260916T150950Z_842298c634ec,842298c634ec0f57848b605f67fca161631a852a68192cae1a5377b1d9f31566,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3-235b-a22b,20260916T150950Z_842298c634ec,842298c634ec0f57848b605f67fca161631a852a68192cae1a5377b1d9f31566,dealing with people?,12,0,0.0,0,0,0,0,0, +qwen/qwen3-235b-a22b-2507,20260916T195827Z_dc09c3fe433c,dc09c3fe433c95591b336b279603c546152daf6534d90699323b3bcde754f5bf,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-235b-a22b-2507,20260916T195827Z_dc09c3fe433c,dc09c3fe433c95591b336b279603c546152daf6534d90699323b3bcde754f5bf,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3-235b-a22b-2507,20260916T195827Z_dc09c3fe433c,dc09c3fe433c95591b336b279603c546152daf6534d90699323b3bcde754f5bf,"Determination, perseverance",12,5,0.4166666666666667,0,0,0,0,5, +qwen/qwen3-235b-a22b-2507,20260916T195827Z_dc09c3fe433c,dc09c3fe433c95591b336b279603c546152daf6534d90699323b3bcde754f5bf,God,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3-235b-a22b-2507,20260916T195827Z_dc09c3fe433c,dc09c3fe433c95591b336b279603c546152daf6534d90699323b3bcde754f5bf,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3-235b-a22b-2507,20260916T195827Z_dc09c3fe433c,dc09c3fe433c95591b336b279603c546152daf6534d90699323b3bcde754f5bf,Imagination,12,6,0.5,0,0,0,0,6, +qwen/qwen3-235b-a22b-2507,20260916T195827Z_dc09c3fe433c,dc09c3fe433c95591b336b279603c546152daf6534d90699323b3bcde754f5bf,Independence,12,5,0.4166666666666667,0,0,0,0,5, +qwen/qwen3-235b-a22b-2507,20260916T195827Z_dc09c3fe433c,dc09c3fe433c95591b336b279603c546152daf6534d90699323b3bcde754f5bf,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3-235b-a22b-2507,20260916T195827Z_dc09c3fe433c,dc09c3fe433c95591b336b279603c546152daf6534d90699323b3bcde754f5bf,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3-235b-a22b-2507,20260916T195827Z_dc09c3fe433c,dc09c3fe433c95591b336b279603c546152daf6534d90699323b3bcde754f5bf,Religion,12,3,0.25,0,0,0,0,3, +qwen/qwen3-235b-a22b-2507,20260916T195827Z_dc09c3fe433c,dc09c3fe433c95591b336b279603c546152daf6534d90699323b3bcde754f5bf,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3-235b-a22b-2507,20260916T195827Z_dc09c3fe433c,dc09c3fe433c95591b336b279603c546152daf6534d90699323b3bcde754f5bf,dealing with people?,12,3,0.25,0,0,0,0,3, +qwen/qwen3-30b-a3b,20260916T145439Z_8700e79d3ecc,8700e79d3eccf358a0de1029f7b40e2db339bb6d11403b8e69cb7a66a7b0c668,Abortion,12,7,0.5833333333333334,0,0,0,0,7, +qwen/qwen3-30b-a3b,20260916T145439Z_8700e79d3ecc,8700e79d3eccf358a0de1029f7b40e2db339bb6d11403b8e69cb7a66a7b0c668,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b,20260916T145439Z_8700e79d3ecc,8700e79d3eccf358a0de1029f7b40e2db339bb6d11403b8e69cb7a66a7b0c668,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b,20260916T145439Z_8700e79d3ecc,8700e79d3eccf358a0de1029f7b40e2db339bb6d11403b8e69cb7a66a7b0c668,God,12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b,20260916T145439Z_8700e79d3ecc,8700e79d3eccf358a0de1029f7b40e2db339bb6d11403b8e69cb7a66a7b0c668,Homosexuality,12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen3-30b-a3b,20260916T145439Z_8700e79d3ecc,8700e79d3eccf358a0de1029f7b40e2db339bb6d11403b8e69cb7a66a7b0c668,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b,20260916T145439Z_8700e79d3ecc,8700e79d3eccf358a0de1029f7b40e2db339bb6d11403b8e69cb7a66a7b0c668,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b,20260916T145439Z_8700e79d3ecc,8700e79d3eccf358a0de1029f7b40e2db339bb6d11403b8e69cb7a66a7b0c668,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b,20260916T145439Z_8700e79d3ecc,8700e79d3eccf358a0de1029f7b40e2db339bb6d11403b8e69cb7a66a7b0c668,Obedience,12,6,0.5,0,0,0,0,6, +qwen/qwen3-30b-a3b,20260916T145439Z_8700e79d3ecc,8700e79d3eccf358a0de1029f7b40e2db339bb6d11403b8e69cb7a66a7b0c668,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b,20260916T145439Z_8700e79d3ecc,8700e79d3eccf358a0de1029f7b40e2db339bb6d11403b8e69cb7a66a7b0c668,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b,20260916T145439Z_8700e79d3ecc,8700e79d3eccf358a0de1029f7b40e2db339bb6d11403b8e69cb7a66a7b0c668,dealing with people?,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3-30b-a3b-instruct-2507,20260916T195128Z_88ed922f271a,88ed922f271a76721ad18f0b7bb9693a48377e2507d02a4b78fa08b451972d83,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b-instruct-2507,20260916T195128Z_88ed922f271a,88ed922f271a76721ad18f0b7bb9693a48377e2507d02a4b78fa08b451972d83,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b-instruct-2507,20260916T195128Z_88ed922f271a,88ed922f271a76721ad18f0b7bb9693a48377e2507d02a4b78fa08b451972d83,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b-instruct-2507,20260916T195128Z_88ed922f271a,88ed922f271a76721ad18f0b7bb9693a48377e2507d02a4b78fa08b451972d83,God,12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b-instruct-2507,20260916T195128Z_88ed922f271a,88ed922f271a76721ad18f0b7bb9693a48377e2507d02a4b78fa08b451972d83,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b-instruct-2507,20260916T195128Z_88ed922f271a,88ed922f271a76721ad18f0b7bb9693a48377e2507d02a4b78fa08b451972d83,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b-instruct-2507,20260916T195128Z_88ed922f271a,88ed922f271a76721ad18f0b7bb9693a48377e2507d02a4b78fa08b451972d83,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b-instruct-2507,20260916T195128Z_88ed922f271a,88ed922f271a76721ad18f0b7bb9693a48377e2507d02a4b78fa08b451972d83,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b-instruct-2507,20260916T195128Z_88ed922f271a,88ed922f271a76721ad18f0b7bb9693a48377e2507d02a4b78fa08b451972d83,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b-instruct-2507,20260916T195128Z_88ed922f271a,88ed922f271a76721ad18f0b7bb9693a48377e2507d02a4b78fa08b451972d83,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b-instruct-2507,20260916T195128Z_88ed922f271a,88ed922f271a76721ad18f0b7bb9693a48377e2507d02a4b78fa08b451972d83,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3-30b-a3b-instruct-2507,20260916T195128Z_88ed922f271a,88ed922f271a76721ad18f0b7bb9693a48377e2507d02a4b78fa08b451972d83,dealing with people?,12,0,0.0,0,0,0,0,0, +qwen/qwen3-32b,20260916T150406Z_580a58409482,580a5840948209ecb177dc6fdaf36e265a32ccfe223d791eb3235fea9269f27e,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-32b,20260916T150406Z_580a58409482,580a5840948209ecb177dc6fdaf36e265a32ccfe223d791eb3235fea9269f27e,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3-32b,20260916T150406Z_580a58409482,580a5840948209ecb177dc6fdaf36e265a32ccfe223d791eb3235fea9269f27e,"Determination, perseverance",12,6,0.5,0,0,0,0,6, +qwen/qwen3-32b,20260916T150406Z_580a58409482,580a5840948209ecb177dc6fdaf36e265a32ccfe223d791eb3235fea9269f27e,God,12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen3-32b,20260916T150406Z_580a58409482,580a5840948209ecb177dc6fdaf36e265a32ccfe223d791eb3235fea9269f27e,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3-32b,20260916T150406Z_580a58409482,580a5840948209ecb177dc6fdaf36e265a32ccfe223d791eb3235fea9269f27e,Imagination,12,5,0.4166666666666667,0,0,0,0,5, +qwen/qwen3-32b,20260916T150406Z_580a58409482,580a5840948209ecb177dc6fdaf36e265a32ccfe223d791eb3235fea9269f27e,Independence,12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen3-32b,20260916T150406Z_580a58409482,580a5840948209ecb177dc6fdaf36e265a32ccfe223d791eb3235fea9269f27e,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3-32b,20260916T150406Z_580a58409482,580a5840948209ecb177dc6fdaf36e265a32ccfe223d791eb3235fea9269f27e,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3-32b,20260916T150406Z_580a58409482,580a5840948209ecb177dc6fdaf36e265a32ccfe223d791eb3235fea9269f27e,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-32b,20260916T150406Z_580a58409482,580a5840948209ecb177dc6fdaf36e265a32ccfe223d791eb3235fea9269f27e,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3-32b,20260916T150406Z_580a58409482,580a5840948209ecb177dc6fdaf36e265a32ccfe223d791eb3235fea9269f27e,dealing with people?,12,0,0.0,0,0,0,0,0, +qwen/qwen3-8b,20260916T181355Z_589e10fa7924,589e10fa7924ecf8f88650d6587ff37c440f47c6c4cc4325c7009ef8d4eeb4ec,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-8b,20260916T181355Z_589e10fa7924,589e10fa7924ecf8f88650d6587ff37c440f47c6c4cc4325c7009ef8d4eeb4ec,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3-8b,20260916T181355Z_589e10fa7924,589e10fa7924ecf8f88650d6587ff37c440f47c6c4cc4325c7009ef8d4eeb4ec,"Determination, perseverance",12,6,0.5,0,0,0,0,6, +qwen/qwen3-8b,20260916T181355Z_589e10fa7924,589e10fa7924ecf8f88650d6587ff37c440f47c6c4cc4325c7009ef8d4eeb4ec,God,12,6,0.5,0,0,0,0,6, +qwen/qwen3-8b,20260916T181355Z_589e10fa7924,589e10fa7924ecf8f88650d6587ff37c440f47c6c4cc4325c7009ef8d4eeb4ec,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3-8b,20260916T181355Z_589e10fa7924,589e10fa7924ecf8f88650d6587ff37c440f47c6c4cc4325c7009ef8d4eeb4ec,Imagination,12,12,1.0,0,0,0,0,12, +qwen/qwen3-8b,20260916T181355Z_589e10fa7924,589e10fa7924ecf8f88650d6587ff37c440f47c6c4cc4325c7009ef8d4eeb4ec,Independence,12,12,1.0,0,0,0,0,12, +qwen/qwen3-8b,20260916T181355Z_589e10fa7924,589e10fa7924ecf8f88650d6587ff37c440f47c6c4cc4325c7009ef8d4eeb4ec,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3-8b,20260916T181355Z_589e10fa7924,589e10fa7924ecf8f88650d6587ff37c440f47c6c4cc4325c7009ef8d4eeb4ec,Obedience,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3-8b,20260916T181355Z_589e10fa7924,589e10fa7924ecf8f88650d6587ff37c440f47c6c4cc4325c7009ef8d4eeb4ec,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-8b,20260916T181355Z_589e10fa7924,589e10fa7924ecf8f88650d6587ff37c440f47c6c4cc4325c7009ef8d4eeb4ec,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3-8b,20260916T181355Z_589e10fa7924,589e10fa7924ecf8f88650d6587ff37c440f47c6c4cc4325c7009ef8d4eeb4ec,dealing with people?,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder,20260916T195554Z_304db4b1aa6c,304db4b1aa6c80d734f802749c75143feddfcdb740c4131385e927148ba7d05b,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder,20260916T195554Z_304db4b1aa6c,304db4b1aa6c80d734f802749c75143feddfcdb740c4131385e927148ba7d05b,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder,20260916T195554Z_304db4b1aa6c,304db4b1aa6c80d734f802749c75143feddfcdb740c4131385e927148ba7d05b,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder,20260916T195554Z_304db4b1aa6c,304db4b1aa6c80d734f802749c75143feddfcdb740c4131385e927148ba7d05b,God,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder,20260916T195554Z_304db4b1aa6c,304db4b1aa6c80d734f802749c75143feddfcdb740c4131385e927148ba7d05b,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder,20260916T195554Z_304db4b1aa6c,304db4b1aa6c80d734f802749c75143feddfcdb740c4131385e927148ba7d05b,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder,20260916T195554Z_304db4b1aa6c,304db4b1aa6c80d734f802749c75143feddfcdb740c4131385e927148ba7d05b,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder,20260916T195554Z_304db4b1aa6c,304db4b1aa6c80d734f802749c75143feddfcdb740c4131385e927148ba7d05b,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder,20260916T195554Z_304db4b1aa6c,304db4b1aa6c80d734f802749c75143feddfcdb740c4131385e927148ba7d05b,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder,20260916T195554Z_304db4b1aa6c,304db4b1aa6c80d734f802749c75143feddfcdb740c4131385e927148ba7d05b,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder,20260916T195554Z_304db4b1aa6c,304db4b1aa6c80d734f802749c75143feddfcdb740c4131385e927148ba7d05b,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder,20260916T195554Z_304db4b1aa6c,304db4b1aa6c80d734f802749c75143feddfcdb740c4131385e927148ba7d05b,dealing with people?,12,3,0.25,0,0,0,0,3, +qwen/qwen3-coder-30b-a3b-instruct,20260916T194257Z_39659697ca34,39659697ca3437f62be4fb8e129e6b3902a91b5acac3243ca914dfc917dd563b,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-30b-a3b-instruct,20260916T194257Z_39659697ca34,39659697ca3437f62be4fb8e129e6b3902a91b5acac3243ca914dfc917dd563b,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-30b-a3b-instruct,20260916T194257Z_39659697ca34,39659697ca3437f62be4fb8e129e6b3902a91b5acac3243ca914dfc917dd563b,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-30b-a3b-instruct,20260916T194257Z_39659697ca34,39659697ca3437f62be4fb8e129e6b3902a91b5acac3243ca914dfc917dd563b,God,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-30b-a3b-instruct,20260916T194257Z_39659697ca34,39659697ca3437f62be4fb8e129e6b3902a91b5acac3243ca914dfc917dd563b,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-30b-a3b-instruct,20260916T194257Z_39659697ca34,39659697ca3437f62be4fb8e129e6b3902a91b5acac3243ca914dfc917dd563b,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-30b-a3b-instruct,20260916T194257Z_39659697ca34,39659697ca3437f62be4fb8e129e6b3902a91b5acac3243ca914dfc917dd563b,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-30b-a3b-instruct,20260916T194257Z_39659697ca34,39659697ca3437f62be4fb8e129e6b3902a91b5acac3243ca914dfc917dd563b,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-30b-a3b-instruct,20260916T194257Z_39659697ca34,39659697ca3437f62be4fb8e129e6b3902a91b5acac3243ca914dfc917dd563b,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-30b-a3b-instruct,20260916T194257Z_39659697ca34,39659697ca3437f62be4fb8e129e6b3902a91b5acac3243ca914dfc917dd563b,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-30b-a3b-instruct,20260916T194257Z_39659697ca34,39659697ca3437f62be4fb8e129e6b3902a91b5acac3243ca914dfc917dd563b,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-30b-a3b-instruct,20260916T194257Z_39659697ca34,39659697ca3437f62be4fb8e129e6b3902a91b5acac3243ca914dfc917dd563b,dealing with people?,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-next,20260916T191559Z_57bed80fd5b9,57bed80fd5b94157effe68fe998c7c12612fea210c1371dbf230097a7e8e0717,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-next,20260916T191559Z_57bed80fd5b9,57bed80fd5b94157effe68fe998c7c12612fea210c1371dbf230097a7e8e0717,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-next,20260916T191559Z_57bed80fd5b9,57bed80fd5b94157effe68fe998c7c12612fea210c1371dbf230097a7e8e0717,"Determination, perseverance",12,5,0.4166666666666667,0,0,0,0,5, +qwen/qwen3-coder-next,20260916T191559Z_57bed80fd5b9,57bed80fd5b94157effe68fe998c7c12612fea210c1371dbf230097a7e8e0717,God,12,5,0.4166666666666667,0,0,0,0,5, +qwen/qwen3-coder-next,20260916T191559Z_57bed80fd5b9,57bed80fd5b94157effe68fe998c7c12612fea210c1371dbf230097a7e8e0717,Homosexuality,12,3,0.25,0,0,0,0,3, +qwen/qwen3-coder-next,20260916T191559Z_57bed80fd5b9,57bed80fd5b94157effe68fe998c7c12612fea210c1371dbf230097a7e8e0717,Imagination,12,7,0.5833333333333334,0,0,0,0,7, +qwen/qwen3-coder-next,20260916T191559Z_57bed80fd5b9,57bed80fd5b94157effe68fe998c7c12612fea210c1371dbf230097a7e8e0717,Independence,12,3,0.25,0,0,0,0,3, +qwen/qwen3-coder-next,20260916T191559Z_57bed80fd5b9,57bed80fd5b94157effe68fe998c7c12612fea210c1371dbf230097a7e8e0717,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-next,20260916T191559Z_57bed80fd5b9,57bed80fd5b94157effe68fe998c7c12612fea210c1371dbf230097a7e8e0717,Obedience,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3-coder-next,20260916T191559Z_57bed80fd5b9,57bed80fd5b94157effe68fe998c7c12612fea210c1371dbf230097a7e8e0717,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-next,20260916T191559Z_57bed80fd5b9,57bed80fd5b94157effe68fe998c7c12612fea210c1371dbf230097a7e8e0717,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-next,20260916T191559Z_57bed80fd5b9,57bed80fd5b94157effe68fe998c7c12612fea210c1371dbf230097a7e8e0717,dealing with people?,12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen3-coder-plus,20260916T193258Z_182a7e888696,182a7e88869698133f1175f18e53e7f6f2f056739559d325b211bd065235a71c,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-plus,20260916T193258Z_182a7e888696,182a7e88869698133f1175f18e53e7f6f2f056739559d325b211bd065235a71c,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-plus,20260916T193258Z_182a7e888696,182a7e88869698133f1175f18e53e7f6f2f056739559d325b211bd065235a71c,"Determination, perseverance",12,6,0.5,0,0,0,0,6, +qwen/qwen3-coder-plus,20260916T193258Z_182a7e888696,182a7e88869698133f1175f18e53e7f6f2f056739559d325b211bd065235a71c,God,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-plus,20260916T193258Z_182a7e888696,182a7e88869698133f1175f18e53e7f6f2f056739559d325b211bd065235a71c,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-plus,20260916T193258Z_182a7e888696,182a7e88869698133f1175f18e53e7f6f2f056739559d325b211bd065235a71c,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-plus,20260916T193258Z_182a7e888696,182a7e88869698133f1175f18e53e7f6f2f056739559d325b211bd065235a71c,Independence,12,6,0.5,0,0,0,0,6, +qwen/qwen3-coder-plus,20260916T193258Z_182a7e888696,182a7e88869698133f1175f18e53e7f6f2f056739559d325b211bd065235a71c,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-plus,20260916T193258Z_182a7e888696,182a7e88869698133f1175f18e53e7f6f2f056739559d325b211bd065235a71c,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-plus,20260916T193258Z_182a7e888696,182a7e88869698133f1175f18e53e7f6f2f056739559d325b211bd065235a71c,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-plus,20260916T193258Z_182a7e888696,182a7e88869698133f1175f18e53e7f6f2f056739559d325b211bd065235a71c,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3-coder-plus,20260916T193258Z_182a7e888696,182a7e88869698133f1175f18e53e7f6f2f056739559d325b211bd065235a71c,dealing with people?,12,0,0.0,0,0,0,0,0, +qwen/qwen3-max-thinking,20260916T145109Z_bca0745bdc15,bca0745bdc1554718d57891098f366214f05e9e896007a916d14a06efa33471a,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-max-thinking,20260916T145109Z_bca0745bdc15,bca0745bdc1554718d57891098f366214f05e9e896007a916d14a06efa33471a,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3-max-thinking,20260916T145109Z_bca0745bdc15,bca0745bdc1554718d57891098f366214f05e9e896007a916d14a06efa33471a,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3-max-thinking,20260916T145109Z_bca0745bdc15,bca0745bdc1554718d57891098f366214f05e9e896007a916d14a06efa33471a,God,12,0,0.0,0,0,0,0,0, +qwen/qwen3-max-thinking,20260916T145109Z_bca0745bdc15,bca0745bdc1554718d57891098f366214f05e9e896007a916d14a06efa33471a,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3-max-thinking,20260916T145109Z_bca0745bdc15,bca0745bdc1554718d57891098f366214f05e9e896007a916d14a06efa33471a,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3-max-thinking,20260916T145109Z_bca0745bdc15,bca0745bdc1554718d57891098f366214f05e9e896007a916d14a06efa33471a,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3-max-thinking,20260916T145109Z_bca0745bdc15,bca0745bdc1554718d57891098f366214f05e9e896007a916d14a06efa33471a,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3-max-thinking,20260916T145109Z_bca0745bdc15,bca0745bdc1554718d57891098f366214f05e9e896007a916d14a06efa33471a,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3-max-thinking,20260916T145109Z_bca0745bdc15,bca0745bdc1554718d57891098f366214f05e9e896007a916d14a06efa33471a,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-max-thinking,20260916T145109Z_bca0745bdc15,bca0745bdc1554718d57891098f366214f05e9e896007a916d14a06efa33471a,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3-max-thinking,20260916T145109Z_bca0745bdc15,bca0745bdc1554718d57891098f366214f05e9e896007a916d14a06efa33471a,dealing with people?,12,6,0.5,0,0,0,0,6, +qwen/qwen3-next-80b-a3b-instruct,20260916T193846Z_9d8a5189c078,9d8a5189c078672eb884784938b183944fb161d0e716e2c44722540b17603e34,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-next-80b-a3b-instruct,20260916T193846Z_9d8a5189c078,9d8a5189c078672eb884784938b183944fb161d0e716e2c44722540b17603e34,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3-next-80b-a3b-instruct,20260916T193846Z_9d8a5189c078,9d8a5189c078672eb884784938b183944fb161d0e716e2c44722540b17603e34,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3-next-80b-a3b-instruct,20260916T193846Z_9d8a5189c078,9d8a5189c078672eb884784938b183944fb161d0e716e2c44722540b17603e34,God,12,6,0.5,0,0,0,0,6, +qwen/qwen3-next-80b-a3b-instruct,20260916T193846Z_9d8a5189c078,9d8a5189c078672eb884784938b183944fb161d0e716e2c44722540b17603e34,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3-next-80b-a3b-instruct,20260916T193846Z_9d8a5189c078,9d8a5189c078672eb884784938b183944fb161d0e716e2c44722540b17603e34,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3-next-80b-a3b-instruct,20260916T193846Z_9d8a5189c078,9d8a5189c078672eb884784938b183944fb161d0e716e2c44722540b17603e34,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3-next-80b-a3b-instruct,20260916T193846Z_9d8a5189c078,9d8a5189c078672eb884784938b183944fb161d0e716e2c44722540b17603e34,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3-next-80b-a3b-instruct,20260916T193846Z_9d8a5189c078,9d8a5189c078672eb884784938b183944fb161d0e716e2c44722540b17603e34,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3-next-80b-a3b-instruct,20260916T193846Z_9d8a5189c078,9d8a5189c078672eb884784938b183944fb161d0e716e2c44722540b17603e34,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-next-80b-a3b-instruct,20260916T193846Z_9d8a5189c078,9d8a5189c078672eb884784938b183944fb161d0e716e2c44722540b17603e34,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3-next-80b-a3b-instruct,20260916T193846Z_9d8a5189c078,9d8a5189c078672eb884784938b183944fb161d0e716e2c44722540b17603e34,dealing with people?,12,6,0.5,0,0,0,0,6, +qwen/qwen3-vl-235b-a22b-instruct,20260916T192432Z_61ab1adae378,61ab1adae3781ca3893328a845d4d517daa5fb47e07ea189da1df45388f62d42,Abortion,12,5,0.4166666666666667,0,0,0,0,5, +qwen/qwen3-vl-235b-a22b-instruct,20260916T192432Z_61ab1adae378,61ab1adae3781ca3893328a845d4d517daa5fb47e07ea189da1df45388f62d42,Attending peaceful demonstrations,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3-vl-235b-a22b-instruct,20260916T192432Z_61ab1adae378,61ab1adae3781ca3893328a845d4d517daa5fb47e07ea189da1df45388f62d42,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-235b-a22b-instruct,20260916T192432Z_61ab1adae378,61ab1adae3781ca3893328a845d4d517daa5fb47e07ea189da1df45388f62d42,God,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-235b-a22b-instruct,20260916T192432Z_61ab1adae378,61ab1adae3781ca3893328a845d4d517daa5fb47e07ea189da1df45388f62d42,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-235b-a22b-instruct,20260916T192432Z_61ab1adae378,61ab1adae3781ca3893328a845d4d517daa5fb47e07ea189da1df45388f62d42,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-235b-a22b-instruct,20260916T192432Z_61ab1adae378,61ab1adae3781ca3893328a845d4d517daa5fb47e07ea189da1df45388f62d42,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-235b-a22b-instruct,20260916T192432Z_61ab1adae378,61ab1adae3781ca3893328a845d4d517daa5fb47e07ea189da1df45388f62d42,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-235b-a22b-instruct,20260916T192432Z_61ab1adae378,61ab1adae3781ca3893328a845d4d517daa5fb47e07ea189da1df45388f62d42,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-235b-a22b-instruct,20260916T192432Z_61ab1adae378,61ab1adae3781ca3893328a845d4d517daa5fb47e07ea189da1df45388f62d42,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-235b-a22b-instruct,20260916T192432Z_61ab1adae378,61ab1adae3781ca3893328a845d4d517daa5fb47e07ea189da1df45388f62d42,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-235b-a22b-instruct,20260916T192432Z_61ab1adae378,61ab1adae3781ca3893328a845d4d517daa5fb47e07ea189da1df45388f62d42,dealing with people?,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-30b-a3b-instruct,20260916T192223Z_0a798666aeed,0a798666aeed20785b4661c8c2fe4a6fc6853796bc2f3c45133863469e5b3f82,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-30b-a3b-instruct,20260916T192223Z_0a798666aeed,0a798666aeed20785b4661c8c2fe4a6fc6853796bc2f3c45133863469e5b3f82,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-30b-a3b-instruct,20260916T192223Z_0a798666aeed,0a798666aeed20785b4661c8c2fe4a6fc6853796bc2f3c45133863469e5b3f82,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-30b-a3b-instruct,20260916T192223Z_0a798666aeed,0a798666aeed20785b4661c8c2fe4a6fc6853796bc2f3c45133863469e5b3f82,God,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-30b-a3b-instruct,20260916T192223Z_0a798666aeed,0a798666aeed20785b4661c8c2fe4a6fc6853796bc2f3c45133863469e5b3f82,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-30b-a3b-instruct,20260916T192223Z_0a798666aeed,0a798666aeed20785b4661c8c2fe4a6fc6853796bc2f3c45133863469e5b3f82,Imagination,12,5,0.4166666666666667,0,0,0,0,5, +qwen/qwen3-vl-30b-a3b-instruct,20260916T192223Z_0a798666aeed,0a798666aeed20785b4661c8c2fe4a6fc6853796bc2f3c45133863469e5b3f82,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-30b-a3b-instruct,20260916T192223Z_0a798666aeed,0a798666aeed20785b4661c8c2fe4a6fc6853796bc2f3c45133863469e5b3f82,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-30b-a3b-instruct,20260916T192223Z_0a798666aeed,0a798666aeed20785b4661c8c2fe4a6fc6853796bc2f3c45133863469e5b3f82,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-30b-a3b-instruct,20260916T192223Z_0a798666aeed,0a798666aeed20785b4661c8c2fe4a6fc6853796bc2f3c45133863469e5b3f82,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-30b-a3b-instruct,20260916T192223Z_0a798666aeed,0a798666aeed20785b4661c8c2fe4a6fc6853796bc2f3c45133863469e5b3f82,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-30b-a3b-instruct,20260916T192223Z_0a798666aeed,0a798666aeed20785b4661c8c2fe4a6fc6853796bc2f3c45133863469e5b3f82,dealing with people?,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-32b-instruct,20260916T191809Z_43ddc43fb5a2,43ddc43fb5a29c7fbf21c8f32b42a909c2118feb9255959ecaeab7dadb1f3dde,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-32b-instruct,20260916T191809Z_43ddc43fb5a2,43ddc43fb5a29c7fbf21c8f32b42a909c2118feb9255959ecaeab7dadb1f3dde,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-32b-instruct,20260916T191809Z_43ddc43fb5a2,43ddc43fb5a29c7fbf21c8f32b42a909c2118feb9255959ecaeab7dadb1f3dde,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-32b-instruct,20260916T191809Z_43ddc43fb5a2,43ddc43fb5a29c7fbf21c8f32b42a909c2118feb9255959ecaeab7dadb1f3dde,God,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-32b-instruct,20260916T191809Z_43ddc43fb5a2,43ddc43fb5a29c7fbf21c8f32b42a909c2118feb9255959ecaeab7dadb1f3dde,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-32b-instruct,20260916T191809Z_43ddc43fb5a2,43ddc43fb5a29c7fbf21c8f32b42a909c2118feb9255959ecaeab7dadb1f3dde,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-32b-instruct,20260916T191809Z_43ddc43fb5a2,43ddc43fb5a29c7fbf21c8f32b42a909c2118feb9255959ecaeab7dadb1f3dde,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-32b-instruct,20260916T191809Z_43ddc43fb5a2,43ddc43fb5a29c7fbf21c8f32b42a909c2118feb9255959ecaeab7dadb1f3dde,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-32b-instruct,20260916T191809Z_43ddc43fb5a2,43ddc43fb5a29c7fbf21c8f32b42a909c2118feb9255959ecaeab7dadb1f3dde,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-32b-instruct,20260916T191809Z_43ddc43fb5a2,43ddc43fb5a29c7fbf21c8f32b42a909c2118feb9255959ecaeab7dadb1f3dde,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-32b-instruct,20260916T191809Z_43ddc43fb5a2,43ddc43fb5a29c7fbf21c8f32b42a909c2118feb9255959ecaeab7dadb1f3dde,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-32b-instruct,20260916T191809Z_43ddc43fb5a2,43ddc43fb5a29c7fbf21c8f32b42a909c2118feb9255959ecaeab7dadb1f3dde,dealing with people?,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-8b-instruct,20260916T192044Z_1d7f4015decb,1d7f4015decbcbe955adb79817b970981ca1d3165ed121b458b213ba1060f675,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-8b-instruct,20260916T192044Z_1d7f4015decb,1d7f4015decbcbe955adb79817b970981ca1d3165ed121b458b213ba1060f675,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-8b-instruct,20260916T192044Z_1d7f4015decb,1d7f4015decbcbe955adb79817b970981ca1d3165ed121b458b213ba1060f675,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-8b-instruct,20260916T192044Z_1d7f4015decb,1d7f4015decbcbe955adb79817b970981ca1d3165ed121b458b213ba1060f675,God,12,11,0.9166666666666666,0,0,0,0,11, +qwen/qwen3-vl-8b-instruct,20260916T192044Z_1d7f4015decb,1d7f4015decbcbe955adb79817b970981ca1d3165ed121b458b213ba1060f675,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-8b-instruct,20260916T192044Z_1d7f4015decb,1d7f4015decbcbe955adb79817b970981ca1d3165ed121b458b213ba1060f675,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-8b-instruct,20260916T192044Z_1d7f4015decb,1d7f4015decbcbe955adb79817b970981ca1d3165ed121b458b213ba1060f675,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-8b-instruct,20260916T192044Z_1d7f4015decb,1d7f4015decbcbe955adb79817b970981ca1d3165ed121b458b213ba1060f675,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-8b-instruct,20260916T192044Z_1d7f4015decb,1d7f4015decbcbe955adb79817b970981ca1d3165ed121b458b213ba1060f675,Obedience,12,6,0.5,0,0,0,0,6, +qwen/qwen3-vl-8b-instruct,20260916T192044Z_1d7f4015decb,1d7f4015decbcbe955adb79817b970981ca1d3165ed121b458b213ba1060f675,Religion,12,9,0.75,0,0,0,0,9, +qwen/qwen3-vl-8b-instruct,20260916T192044Z_1d7f4015decb,1d7f4015decbcbe955adb79817b970981ca1d3165ed121b458b213ba1060f675,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3-vl-8b-instruct,20260916T192044Z_1d7f4015decb,1d7f4015decbcbe955adb79817b970981ca1d3165ed121b458b213ba1060f675,dealing with people?,12,6,0.5,0,0,0,0,6, +qwen/qwen3.5-122b-a10b,20260916T143453Z_e0a9daef251d,e0a9daef251d975c5e805e159f3813dd0c55b3f0919876b828e572b0530bea88,Abortion,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.5-122b-a10b,20260916T143453Z_e0a9daef251d,e0a9daef251d975c5e805e159f3813dd0c55b3f0919876b828e572b0530bea88,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-122b-a10b,20260916T143453Z_e0a9daef251d,e0a9daef251d975c5e805e159f3813dd0c55b3f0919876b828e572b0530bea88,"Determination, perseverance",12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.5-122b-a10b,20260916T143453Z_e0a9daef251d,e0a9daef251d975c5e805e159f3813dd0c55b3f0919876b828e572b0530bea88,God,12,5,0.4166666666666667,0,0,0,0,5, +qwen/qwen3.5-122b-a10b,20260916T143453Z_e0a9daef251d,e0a9daef251d975c5e805e159f3813dd0c55b3f0919876b828e572b0530bea88,Homosexuality,12,10,0.8333333333333334,0,0,0,0,10, +qwen/qwen3.5-122b-a10b,20260916T143453Z_e0a9daef251d,e0a9daef251d975c5e805e159f3813dd0c55b3f0919876b828e572b0530bea88,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-122b-a10b,20260916T143453Z_e0a9daef251d,e0a9daef251d975c5e805e159f3813dd0c55b3f0919876b828e572b0530bea88,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-122b-a10b,20260916T143453Z_e0a9daef251d,e0a9daef251d975c5e805e159f3813dd0c55b3f0919876b828e572b0530bea88,Joining in boycotts,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.5-122b-a10b,20260916T143453Z_e0a9daef251d,e0a9daef251d975c5e805e159f3813dd0c55b3f0919876b828e572b0530bea88,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-122b-a10b,20260916T143453Z_e0a9daef251d,e0a9daef251d975c5e805e159f3813dd0c55b3f0919876b828e572b0530bea88,Religion,12,6,0.5,0,0,0,0,6, +qwen/qwen3.5-122b-a10b,20260916T143453Z_e0a9daef251d,e0a9daef251d975c5e805e159f3813dd0c55b3f0919876b828e572b0530bea88,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-122b-a10b,20260916T143453Z_e0a9daef251d,e0a9daef251d975c5e805e159f3813dd0c55b3f0919876b828e572b0530bea88,dealing with people?,12,3,0.25,0,0,0,0,3, +qwen/qwen3.5-27b,20260916T143235Z_7058adf367d2,7058adf367d238c6c92e1b83ae71f6556362e9fc7a243297b6fc65e54e2c2886,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-27b,20260916T143235Z_7058adf367d2,7058adf367d238c6c92e1b83ae71f6556362e9fc7a243297b6fc65e54e2c2886,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-27b,20260916T143235Z_7058adf367d2,7058adf367d238c6c92e1b83ae71f6556362e9fc7a243297b6fc65e54e2c2886,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-27b,20260916T143235Z_7058adf367d2,7058adf367d238c6c92e1b83ae71f6556362e9fc7a243297b6fc65e54e2c2886,God,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-27b,20260916T143235Z_7058adf367d2,7058adf367d238c6c92e1b83ae71f6556362e9fc7a243297b6fc65e54e2c2886,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-27b,20260916T143235Z_7058adf367d2,7058adf367d238c6c92e1b83ae71f6556362e9fc7a243297b6fc65e54e2c2886,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-27b,20260916T143235Z_7058adf367d2,7058adf367d238c6c92e1b83ae71f6556362e9fc7a243297b6fc65e54e2c2886,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-27b,20260916T143235Z_7058adf367d2,7058adf367d238c6c92e1b83ae71f6556362e9fc7a243297b6fc65e54e2c2886,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-27b,20260916T143235Z_7058adf367d2,7058adf367d238c6c92e1b83ae71f6556362e9fc7a243297b6fc65e54e2c2886,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-27b,20260916T143235Z_7058adf367d2,7058adf367d238c6c92e1b83ae71f6556362e9fc7a243297b6fc65e54e2c2886,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-27b,20260916T143235Z_7058adf367d2,7058adf367d238c6c92e1b83ae71f6556362e9fc7a243297b6fc65e54e2c2886,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-27b,20260916T143235Z_7058adf367d2,7058adf367d238c6c92e1b83ae71f6556362e9fc7a243297b6fc65e54e2c2886,dealing with people?,12,5,0.4166666666666667,0,0,0,0,5, +qwen/qwen3.5-35b-a3b,20260916T142959Z_7ee20ca2b88f,7ee20ca2b88f69dd06b9de3018deea4cb7a418e3119e17862cd0b32146daae1a,Abortion,12,3,0.25,0,0,0,0,3, +qwen/qwen3.5-35b-a3b,20260916T142959Z_7ee20ca2b88f,7ee20ca2b88f69dd06b9de3018deea4cb7a418e3119e17862cd0b32146daae1a,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-35b-a3b,20260916T142959Z_7ee20ca2b88f,7ee20ca2b88f69dd06b9de3018deea4cb7a418e3119e17862cd0b32146daae1a,"Determination, perseverance",12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen3.5-35b-a3b,20260916T142959Z_7ee20ca2b88f,7ee20ca2b88f69dd06b9de3018deea4cb7a418e3119e17862cd0b32146daae1a,God,12,5,0.4166666666666667,0,0,0,0,5, +qwen/qwen3.5-35b-a3b,20260916T142959Z_7ee20ca2b88f,7ee20ca2b88f69dd06b9de3018deea4cb7a418e3119e17862cd0b32146daae1a,Homosexuality,12,3,0.25,0,0,0,0,3, +qwen/qwen3.5-35b-a3b,20260916T142959Z_7ee20ca2b88f,7ee20ca2b88f69dd06b9de3018deea4cb7a418e3119e17862cd0b32146daae1a,Imagination,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.5-35b-a3b,20260916T142959Z_7ee20ca2b88f,7ee20ca2b88f69dd06b9de3018deea4cb7a418e3119e17862cd0b32146daae1a,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-35b-a3b,20260916T142959Z_7ee20ca2b88f,7ee20ca2b88f69dd06b9de3018deea4cb7a418e3119e17862cd0b32146daae1a,Joining in boycotts,12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen3.5-35b-a3b,20260916T142959Z_7ee20ca2b88f,7ee20ca2b88f69dd06b9de3018deea4cb7a418e3119e17862cd0b32146daae1a,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-35b-a3b,20260916T142959Z_7ee20ca2b88f,7ee20ca2b88f69dd06b9de3018deea4cb7a418e3119e17862cd0b32146daae1a,Religion,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.5-35b-a3b,20260916T142959Z_7ee20ca2b88f,7ee20ca2b88f69dd06b9de3018deea4cb7a418e3119e17862cd0b32146daae1a,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-35b-a3b,20260916T142959Z_7ee20ca2b88f,7ee20ca2b88f69dd06b9de3018deea4cb7a418e3119e17862cd0b32146daae1a,dealing with people?,12,3,0.25,0,0,0,0,3, +qwen/qwen3.5-397b-a17b,20260916T144546Z_921707cb0d3d,921707cb0d3db143e948e9d78cd8191f4ee720eaf56b6934e2d13d9ce9e3382f,Abortion,12,11,0.9166666666666666,0,0,0,0,11, +qwen/qwen3.5-397b-a17b,20260916T144546Z_921707cb0d3d,921707cb0d3db143e948e9d78cd8191f4ee720eaf56b6934e2d13d9ce9e3382f,Attending peaceful demonstrations,12,9,0.75,0,0,0,0,9, +qwen/qwen3.5-397b-a17b,20260916T144546Z_921707cb0d3d,921707cb0d3db143e948e9d78cd8191f4ee720eaf56b6934e2d13d9ce9e3382f,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-397b-a17b,20260916T144546Z_921707cb0d3d,921707cb0d3db143e948e9d78cd8191f4ee720eaf56b6934e2d13d9ce9e3382f,God,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-397b-a17b,20260916T144546Z_921707cb0d3d,921707cb0d3db143e948e9d78cd8191f4ee720eaf56b6934e2d13d9ce9e3382f,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-397b-a17b,20260916T144546Z_921707cb0d3d,921707cb0d3db143e948e9d78cd8191f4ee720eaf56b6934e2d13d9ce9e3382f,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-397b-a17b,20260916T144546Z_921707cb0d3d,921707cb0d3db143e948e9d78cd8191f4ee720eaf56b6934e2d13d9ce9e3382f,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-397b-a17b,20260916T144546Z_921707cb0d3d,921707cb0d3db143e948e9d78cd8191f4ee720eaf56b6934e2d13d9ce9e3382f,Joining in boycotts,12,5,0.4166666666666667,0,0,0,0,5, +qwen/qwen3.5-397b-a17b,20260916T144546Z_921707cb0d3d,921707cb0d3db143e948e9d78cd8191f4ee720eaf56b6934e2d13d9ce9e3382f,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-397b-a17b,20260916T144546Z_921707cb0d3d,921707cb0d3db143e948e9d78cd8191f4ee720eaf56b6934e2d13d9ce9e3382f,Religion,12,10,0.8333333333333334,0,0,0,0,10, +qwen/qwen3.5-397b-a17b,20260916T144546Z_921707cb0d3d,921707cb0d3db143e948e9d78cd8191f4ee720eaf56b6934e2d13d9ce9e3382f,Signing a petition,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.5-397b-a17b,20260916T144546Z_921707cb0d3d,921707cb0d3db143e948e9d78cd8191f4ee720eaf56b6934e2d13d9ce9e3382f,dealing with people?,12,6,0.5,0,0,0,0,6, +qwen/qwen3.5-9b,20260916T142212Z_3016d2c1ab8d,3016d2c1ab8d8f88f01723d2d695be996c7f1fdcd442a51cfbb6c7b7110a25e9,Abortion,12,5,0.4166666666666667,0,0,0,0,5, +qwen/qwen3.5-9b,20260916T142212Z_3016d2c1ab8d,3016d2c1ab8d8f88f01723d2d695be996c7f1fdcd442a51cfbb6c7b7110a25e9,Attending peaceful demonstrations,12,3,0.25,0,0,0,0,3, +qwen/qwen3.5-9b,20260916T142212Z_3016d2c1ab8d,3016d2c1ab8d8f88f01723d2d695be996c7f1fdcd442a51cfbb6c7b7110a25e9,"Determination, perseverance",12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.5-9b,20260916T142212Z_3016d2c1ab8d,3016d2c1ab8d8f88f01723d2d695be996c7f1fdcd442a51cfbb6c7b7110a25e9,God,12,10,0.8333333333333334,0,0,0,0,10, +qwen/qwen3.5-9b,20260916T142212Z_3016d2c1ab8d,3016d2c1ab8d8f88f01723d2d695be996c7f1fdcd442a51cfbb6c7b7110a25e9,Homosexuality,12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen3.5-9b,20260916T142212Z_3016d2c1ab8d,3016d2c1ab8d8f88f01723d2d695be996c7f1fdcd442a51cfbb6c7b7110a25e9,Imagination,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.5-9b,20260916T142212Z_3016d2c1ab8d,3016d2c1ab8d8f88f01723d2d695be996c7f1fdcd442a51cfbb6c7b7110a25e9,Independence,12,5,0.4166666666666667,0,0,0,0,5, +qwen/qwen3.5-9b,20260916T142212Z_3016d2c1ab8d,3016d2c1ab8d8f88f01723d2d695be996c7f1fdcd442a51cfbb6c7b7110a25e9,Joining in boycotts,12,3,0.25,0,0,0,0,3, +qwen/qwen3.5-9b,20260916T142212Z_3016d2c1ab8d,3016d2c1ab8d8f88f01723d2d695be996c7f1fdcd442a51cfbb6c7b7110a25e9,Obedience,12,3,0.25,0,0,0,0,3, +qwen/qwen3.5-9b,20260916T142212Z_3016d2c1ab8d,3016d2c1ab8d8f88f01723d2d695be996c7f1fdcd442a51cfbb6c7b7110a25e9,Religion,12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen3.5-9b,20260916T142212Z_3016d2c1ab8d,3016d2c1ab8d8f88f01723d2d695be996c7f1fdcd442a51cfbb6c7b7110a25e9,Signing a petition,12,7,0.5833333333333334,0,0,0,0,7, +qwen/qwen3.5-9b,20260916T142212Z_3016d2c1ab8d,3016d2c1ab8d8f88f01723d2d695be996c7f1fdcd442a51cfbb6c7b7110a25e9,dealing with people?,12,3,0.25,0,0,0,0,3, +qwen/qwen3.5-plus-02-15,20260916T144205Z_74e3649a6961,74e3649a6961000bab284e801fe811d5c8fc4cf1db15af52bb10959f5a5a37c1,Abortion,12,12,1.0,0,0,0,0,12, +qwen/qwen3.5-plus-02-15,20260916T144205Z_74e3649a6961,74e3649a6961000bab284e801fe811d5c8fc4cf1db15af52bb10959f5a5a37c1,Attending peaceful demonstrations,12,12,1.0,0,0,0,0,12, +qwen/qwen3.5-plus-02-15,20260916T144205Z_74e3649a6961,74e3649a6961000bab284e801fe811d5c8fc4cf1db15af52bb10959f5a5a37c1,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-plus-02-15,20260916T144205Z_74e3649a6961,74e3649a6961000bab284e801fe811d5c8fc4cf1db15af52bb10959f5a5a37c1,God,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-plus-02-15,20260916T144205Z_74e3649a6961,74e3649a6961000bab284e801fe811d5c8fc4cf1db15af52bb10959f5a5a37c1,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-plus-02-15,20260916T144205Z_74e3649a6961,74e3649a6961000bab284e801fe811d5c8fc4cf1db15af52bb10959f5a5a37c1,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-plus-02-15,20260916T144205Z_74e3649a6961,74e3649a6961000bab284e801fe811d5c8fc4cf1db15af52bb10959f5a5a37c1,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-plus-02-15,20260916T144205Z_74e3649a6961,74e3649a6961000bab284e801fe811d5c8fc4cf1db15af52bb10959f5a5a37c1,Joining in boycotts,12,3,0.25,0,0,0,0,3, +qwen/qwen3.5-plus-02-15,20260916T144205Z_74e3649a6961,74e3649a6961000bab284e801fe811d5c8fc4cf1db15af52bb10959f5a5a37c1,Obedience,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.5-plus-02-15,20260916T144205Z_74e3649a6961,74e3649a6961000bab284e801fe811d5c8fc4cf1db15af52bb10959f5a5a37c1,Religion,12,9,0.75,0,0,0,0,9, +qwen/qwen3.5-plus-02-15,20260916T144205Z_74e3649a6961,74e3649a6961000bab284e801fe811d5c8fc4cf1db15af52bb10959f5a5a37c1,Signing a petition,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.5-plus-02-15,20260916T144205Z_74e3649a6961,74e3649a6961000bab284e801fe811d5c8fc4cf1db15af52bb10959f5a5a37c1,dealing with people?,12,7,0.5833333333333334,0,0,0,0,7, +qwen/qwen3.5-plus-20260420,20260916T135722Z_6d6ce30e9fbc,6d6ce30e9fbc5fdb07229b0a08e067d77511857069a4e572613d3e48b7c8b261,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-plus-20260420,20260916T135722Z_6d6ce30e9fbc,6d6ce30e9fbc5fdb07229b0a08e067d77511857069a4e572613d3e48b7c8b261,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-plus-20260420,20260916T135722Z_6d6ce30e9fbc,6d6ce30e9fbc5fdb07229b0a08e067d77511857069a4e572613d3e48b7c8b261,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-plus-20260420,20260916T135722Z_6d6ce30e9fbc,6d6ce30e9fbc5fdb07229b0a08e067d77511857069a4e572613d3e48b7c8b261,God,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.5-plus-20260420,20260916T135722Z_6d6ce30e9fbc,6d6ce30e9fbc5fdb07229b0a08e067d77511857069a4e572613d3e48b7c8b261,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-plus-20260420,20260916T135722Z_6d6ce30e9fbc,6d6ce30e9fbc5fdb07229b0a08e067d77511857069a4e572613d3e48b7c8b261,Imagination,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.5-plus-20260420,20260916T135722Z_6d6ce30e9fbc,6d6ce30e9fbc5fdb07229b0a08e067d77511857069a4e572613d3e48b7c8b261,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-plus-20260420,20260916T135722Z_6d6ce30e9fbc,6d6ce30e9fbc5fdb07229b0a08e067d77511857069a4e572613d3e48b7c8b261,Joining in boycotts,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.5-plus-20260420,20260916T135722Z_6d6ce30e9fbc,6d6ce30e9fbc5fdb07229b0a08e067d77511857069a4e572613d3e48b7c8b261,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-plus-20260420,20260916T135722Z_6d6ce30e9fbc,6d6ce30e9fbc5fdb07229b0a08e067d77511857069a4e572613d3e48b7c8b261,Religion,12,8,0.6666666666666666,0,0,0,0,8, +qwen/qwen3.5-plus-20260420,20260916T135722Z_6d6ce30e9fbc,6d6ce30e9fbc5fdb07229b0a08e067d77511857069a4e572613d3e48b7c8b261,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3.5-plus-20260420,20260916T135722Z_6d6ce30e9fbc,6d6ce30e9fbc5fdb07229b0a08e067d77511857069a4e572613d3e48b7c8b261,dealing with people?,12,6,0.5,0,0,0,0,6, +qwen/qwen3.6-27b,20260916T141139Z_abf45a27f4ba,abf45a27f4bafad0eb264aac33b1e49e9d0404e141966954d0707930d56665e3,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-27b,20260916T141139Z_abf45a27f4ba,abf45a27f4bafad0eb264aac33b1e49e9d0404e141966954d0707930d56665e3,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-27b,20260916T141139Z_abf45a27f4ba,abf45a27f4bafad0eb264aac33b1e49e9d0404e141966954d0707930d56665e3,"Determination, perseverance",12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.6-27b,20260916T141139Z_abf45a27f4ba,abf45a27f4bafad0eb264aac33b1e49e9d0404e141966954d0707930d56665e3,God,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-27b,20260916T141139Z_abf45a27f4ba,abf45a27f4bafad0eb264aac33b1e49e9d0404e141966954d0707930d56665e3,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-27b,20260916T141139Z_abf45a27f4ba,abf45a27f4bafad0eb264aac33b1e49e9d0404e141966954d0707930d56665e3,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-27b,20260916T141139Z_abf45a27f4ba,abf45a27f4bafad0eb264aac33b1e49e9d0404e141966954d0707930d56665e3,Independence,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.6-27b,20260916T141139Z_abf45a27f4ba,abf45a27f4bafad0eb264aac33b1e49e9d0404e141966954d0707930d56665e3,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-27b,20260916T141139Z_abf45a27f4ba,abf45a27f4bafad0eb264aac33b1e49e9d0404e141966954d0707930d56665e3,Obedience,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.6-27b,20260916T141139Z_abf45a27f4ba,abf45a27f4bafad0eb264aac33b1e49e9d0404e141966954d0707930d56665e3,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-27b,20260916T141139Z_abf45a27f4ba,abf45a27f4bafad0eb264aac33b1e49e9d0404e141966954d0707930d56665e3,Signing a petition,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.6-27b,20260916T141139Z_abf45a27f4ba,abf45a27f4bafad0eb264aac33b1e49e9d0404e141966954d0707930d56665e3,dealing with people?,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.6-35b-a3b,20260916T140418Z_b35b916c2264,b35b916c22649e91ded175aede34f3937a16f42a354f7abab01a17bf2b0dfc97,Abortion,12,8,0.6666666666666666,0,0,0,0,8, +qwen/qwen3.6-35b-a3b,20260916T140418Z_b35b916c2264,b35b916c22649e91ded175aede34f3937a16f42a354f7abab01a17bf2b0dfc97,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-35b-a3b,20260916T140418Z_b35b916c2264,b35b916c22649e91ded175aede34f3937a16f42a354f7abab01a17bf2b0dfc97,"Determination, perseverance",12,5,0.4166666666666667,0,0,0,0,5, +qwen/qwen3.6-35b-a3b,20260916T140418Z_b35b916c2264,b35b916c22649e91ded175aede34f3937a16f42a354f7abab01a17bf2b0dfc97,God,12,3,0.25,0,0,0,0,3, +qwen/qwen3.6-35b-a3b,20260916T140418Z_b35b916c2264,b35b916c22649e91ded175aede34f3937a16f42a354f7abab01a17bf2b0dfc97,Homosexuality,12,11,0.9166666666666666,0,0,0,0,11, +qwen/qwen3.6-35b-a3b,20260916T140418Z_b35b916c2264,b35b916c22649e91ded175aede34f3937a16f42a354f7abab01a17bf2b0dfc97,Imagination,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.6-35b-a3b,20260916T140418Z_b35b916c2264,b35b916c22649e91ded175aede34f3937a16f42a354f7abab01a17bf2b0dfc97,Independence,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.6-35b-a3b,20260916T140418Z_b35b916c2264,b35b916c22649e91ded175aede34f3937a16f42a354f7abab01a17bf2b0dfc97,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-35b-a3b,20260916T140418Z_b35b916c2264,b35b916c22649e91ded175aede34f3937a16f42a354f7abab01a17bf2b0dfc97,Obedience,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.6-35b-a3b,20260916T140418Z_b35b916c2264,b35b916c22649e91ded175aede34f3937a16f42a354f7abab01a17bf2b0dfc97,Religion,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.6-35b-a3b,20260916T140418Z_b35b916c2264,b35b916c22649e91ded175aede34f3937a16f42a354f7abab01a17bf2b0dfc97,Signing a petition,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.6-35b-a3b,20260916T140418Z_b35b916c2264,b35b916c22649e91ded175aede34f3937a16f42a354f7abab01a17bf2b0dfc97,dealing with people?,12,3,0.25,0,0,0,0,3, +qwen/qwen3.6-flash,20260916T140130Z_fa37fc90604e,fa37fc90604e5032183ec460bcc2632507566c3be3e9085f61a6ca85582b7d47,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-flash,20260916T140130Z_fa37fc90604e,fa37fc90604e5032183ec460bcc2632507566c3be3e9085f61a6ca85582b7d47,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-flash,20260916T140130Z_fa37fc90604e,fa37fc90604e5032183ec460bcc2632507566c3be3e9085f61a6ca85582b7d47,"Determination, perseverance",12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen3.6-flash,20260916T140130Z_fa37fc90604e,fa37fc90604e5032183ec460bcc2632507566c3be3e9085f61a6ca85582b7d47,God,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.6-flash,20260916T140130Z_fa37fc90604e,fa37fc90604e5032183ec460bcc2632507566c3be3e9085f61a6ca85582b7d47,Homosexuality,12,9,0.75,0,0,0,0,9, +qwen/qwen3.6-flash,20260916T140130Z_fa37fc90604e,fa37fc90604e5032183ec460bcc2632507566c3be3e9085f61a6ca85582b7d47,Imagination,12,3,0.25,0,0,0,0,3, +qwen/qwen3.6-flash,20260916T140130Z_fa37fc90604e,fa37fc90604e5032183ec460bcc2632507566c3be3e9085f61a6ca85582b7d47,Independence,12,3,0.25,0,0,0,0,3, +qwen/qwen3.6-flash,20260916T140130Z_fa37fc90604e,fa37fc90604e5032183ec460bcc2632507566c3be3e9085f61a6ca85582b7d47,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-flash,20260916T140130Z_fa37fc90604e,fa37fc90604e5032183ec460bcc2632507566c3be3e9085f61a6ca85582b7d47,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-flash,20260916T140130Z_fa37fc90604e,fa37fc90604e5032183ec460bcc2632507566c3be3e9085f61a6ca85582b7d47,Religion,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.6-flash,20260916T140130Z_fa37fc90604e,fa37fc90604e5032183ec460bcc2632507566c3be3e9085f61a6ca85582b7d47,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-flash,20260916T140130Z_fa37fc90604e,fa37fc90604e5032183ec460bcc2632507566c3be3e9085f61a6ca85582b7d47,dealing with people?,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-max-preview,20260916T140710Z_fa9ff591d389,fa9ff591d389ad2d8a4b7e3fc1410ed588508fe286430c06a941180b0590422b,Abortion,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-max-preview,20260916T140710Z_fa9ff591d389,fa9ff591d389ad2d8a4b7e3fc1410ed588508fe286430c06a941180b0590422b,Attending peaceful demonstrations,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.6-max-preview,20260916T140710Z_fa9ff591d389,fa9ff591d389ad2d8a4b7e3fc1410ed588508fe286430c06a941180b0590422b,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-max-preview,20260916T140710Z_fa9ff591d389,fa9ff591d389ad2d8a4b7e3fc1410ed588508fe286430c06a941180b0590422b,God,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-max-preview,20260916T140710Z_fa9ff591d389,fa9ff591d389ad2d8a4b7e3fc1410ed588508fe286430c06a941180b0590422b,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-max-preview,20260916T140710Z_fa9ff591d389,fa9ff591d389ad2d8a4b7e3fc1410ed588508fe286430c06a941180b0590422b,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-max-preview,20260916T140710Z_fa9ff591d389,fa9ff591d389ad2d8a4b7e3fc1410ed588508fe286430c06a941180b0590422b,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-max-preview,20260916T140710Z_fa9ff591d389,fa9ff591d389ad2d8a4b7e3fc1410ed588508fe286430c06a941180b0590422b,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-max-preview,20260916T140710Z_fa9ff591d389,fa9ff591d389ad2d8a4b7e3fc1410ed588508fe286430c06a941180b0590422b,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-max-preview,20260916T140710Z_fa9ff591d389,fa9ff591d389ad2d8a4b7e3fc1410ed588508fe286430c06a941180b0590422b,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-max-preview,20260916T140710Z_fa9ff591d389,fa9ff591d389ad2d8a4b7e3fc1410ed588508fe286430c06a941180b0590422b,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-max-preview,20260916T140710Z_fa9ff591d389,fa9ff591d389ad2d8a4b7e3fc1410ed588508fe286430c06a941180b0590422b,dealing with people?,12,5,0.4166666666666667,0,0,0,0,5, +qwen/qwen3.6-plus,20260916T141839Z_96d86b64bf7c,96d86b64bf7ceff8eed0daff1aa0396ee69609b5867942a7c2c9d33093f03c9d,Abortion,12,12,1.0,0,0,0,0,12, +qwen/qwen3.6-plus,20260916T141839Z_96d86b64bf7c,96d86b64bf7ceff8eed0daff1aa0396ee69609b5867942a7c2c9d33093f03c9d,Attending peaceful demonstrations,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.6-plus,20260916T141839Z_96d86b64bf7c,96d86b64bf7ceff8eed0daff1aa0396ee69609b5867942a7c2c9d33093f03c9d,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-plus,20260916T141839Z_96d86b64bf7c,96d86b64bf7ceff8eed0daff1aa0396ee69609b5867942a7c2c9d33093f03c9d,God,12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen3.6-plus,20260916T141839Z_96d86b64bf7c,96d86b64bf7ceff8eed0daff1aa0396ee69609b5867942a7c2c9d33093f03c9d,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-plus,20260916T141839Z_96d86b64bf7c,96d86b64bf7ceff8eed0daff1aa0396ee69609b5867942a7c2c9d33093f03c9d,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-plus,20260916T141839Z_96d86b64bf7c,96d86b64bf7ceff8eed0daff1aa0396ee69609b5867942a7c2c9d33093f03c9d,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-plus,20260916T141839Z_96d86b64bf7c,96d86b64bf7ceff8eed0daff1aa0396ee69609b5867942a7c2c9d33093f03c9d,Joining in boycotts,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.6-plus,20260916T141839Z_96d86b64bf7c,96d86b64bf7ceff8eed0daff1aa0396ee69609b5867942a7c2c9d33093f03c9d,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-plus,20260916T141839Z_96d86b64bf7c,96d86b64bf7ceff8eed0daff1aa0396ee69609b5867942a7c2c9d33093f03c9d,Religion,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.6-plus,20260916T141839Z_96d86b64bf7c,96d86b64bf7ceff8eed0daff1aa0396ee69609b5867942a7c2c9d33093f03c9d,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3.6-plus,20260916T141839Z_96d86b64bf7c,96d86b64bf7ceff8eed0daff1aa0396ee69609b5867942a7c2c9d33093f03c9d,dealing with people?,12,12,1.0,0,0,0,0,12, +qwen/qwen3.7-flash,20260916T133001Z_82875b6ee164,82875b6ee164d0d980eba738bf05f69959234567b91f9cfd01fcabca0bd70dac,Abortion,12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen3.7-flash,20260916T133001Z_82875b6ee164,82875b6ee164d0d980eba738bf05f69959234567b91f9cfd01fcabca0bd70dac,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3.7-flash,20260916T133001Z_82875b6ee164,82875b6ee164d0d980eba738bf05f69959234567b91f9cfd01fcabca0bd70dac,"Determination, perseverance",12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.7-flash,20260916T133001Z_82875b6ee164,82875b6ee164d0d980eba738bf05f69959234567b91f9cfd01fcabca0bd70dac,God,12,0,0.0,0,0,0,0,0, +qwen/qwen3.7-flash,20260916T133001Z_82875b6ee164,82875b6ee164d0d980eba738bf05f69959234567b91f9cfd01fcabca0bd70dac,Homosexuality,12,6,0.5,0,0,0,0,6, +qwen/qwen3.7-flash,20260916T133001Z_82875b6ee164,82875b6ee164d0d980eba738bf05f69959234567b91f9cfd01fcabca0bd70dac,Imagination,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.7-flash,20260916T133001Z_82875b6ee164,82875b6ee164d0d980eba738bf05f69959234567b91f9cfd01fcabca0bd70dac,Independence,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.7-flash,20260916T133001Z_82875b6ee164,82875b6ee164d0d980eba738bf05f69959234567b91f9cfd01fcabca0bd70dac,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3.7-flash,20260916T133001Z_82875b6ee164,82875b6ee164d0d980eba738bf05f69959234567b91f9cfd01fcabca0bd70dac,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3.7-flash,20260916T133001Z_82875b6ee164,82875b6ee164d0d980eba738bf05f69959234567b91f9cfd01fcabca0bd70dac,Religion,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.7-flash,20260916T133001Z_82875b6ee164,82875b6ee164d0d980eba738bf05f69959234567b91f9cfd01fcabca0bd70dac,Signing a petition,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.7-flash,20260916T133001Z_82875b6ee164,82875b6ee164d0d980eba738bf05f69959234567b91f9cfd01fcabca0bd70dac,dealing with people?,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.7-max,20260916T135329Z_1c31668055e3,1c31668055e399de28805046bc08075035efbad0cdb1ff7d8926841a282e07a5,Abortion,12,10,0.8333333333333334,0,0,0,0,10, +qwen/qwen3.7-max,20260916T135329Z_1c31668055e3,1c31668055e399de28805046bc08075035efbad0cdb1ff7d8926841a282e07a5,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3.7-max,20260916T135329Z_1c31668055e3,1c31668055e399de28805046bc08075035efbad0cdb1ff7d8926841a282e07a5,"Determination, perseverance",12,6,0.5,0,0,0,0,6, +qwen/qwen3.7-max,20260916T135329Z_1c31668055e3,1c31668055e399de28805046bc08075035efbad0cdb1ff7d8926841a282e07a5,God,12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen3.7-max,20260916T135329Z_1c31668055e3,1c31668055e399de28805046bc08075035efbad0cdb1ff7d8926841a282e07a5,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3.7-max,20260916T135329Z_1c31668055e3,1c31668055e399de28805046bc08075035efbad0cdb1ff7d8926841a282e07a5,Imagination,12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen3.7-max,20260916T135329Z_1c31668055e3,1c31668055e399de28805046bc08075035efbad0cdb1ff7d8926841a282e07a5,Independence,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.7-max,20260916T135329Z_1c31668055e3,1c31668055e399de28805046bc08075035efbad0cdb1ff7d8926841a282e07a5,Joining in boycotts,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.7-max,20260916T135329Z_1c31668055e3,1c31668055e399de28805046bc08075035efbad0cdb1ff7d8926841a282e07a5,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3.7-max,20260916T135329Z_1c31668055e3,1c31668055e399de28805046bc08075035efbad0cdb1ff7d8926841a282e07a5,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3.7-max,20260916T135329Z_1c31668055e3,1c31668055e399de28805046bc08075035efbad0cdb1ff7d8926841a282e07a5,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3.7-max,20260916T135329Z_1c31668055e3,1c31668055e399de28805046bc08075035efbad0cdb1ff7d8926841a282e07a5,dealing with people?,12,6,0.5,0,0,0,0,6, +qwen/qwen3.7-plus,20260916T134925Z_f095e0d2dbaf,f095e0d2dbafdb91b51be3d0b3bd5a597730c8e3c397e0461023c87e924d92f8,Abortion,12,11,0.9166666666666666,0,0,0,0,11, +qwen/qwen3.7-plus,20260916T134925Z_f095e0d2dbaf,f095e0d2dbafdb91b51be3d0b3bd5a597730c8e3c397e0461023c87e924d92f8,Attending peaceful demonstrations,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.7-plus,20260916T134925Z_f095e0d2dbaf,f095e0d2dbafdb91b51be3d0b3bd5a597730c8e3c397e0461023c87e924d92f8,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3.7-plus,20260916T134925Z_f095e0d2dbaf,f095e0d2dbafdb91b51be3d0b3bd5a597730c8e3c397e0461023c87e924d92f8,God,12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen3.7-plus,20260916T134925Z_f095e0d2dbaf,f095e0d2dbafdb91b51be3d0b3bd5a597730c8e3c397e0461023c87e924d92f8,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3.7-plus,20260916T134925Z_f095e0d2dbaf,f095e0d2dbafdb91b51be3d0b3bd5a597730c8e3c397e0461023c87e924d92f8,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3.7-plus,20260916T134925Z_f095e0d2dbaf,f095e0d2dbafdb91b51be3d0b3bd5a597730c8e3c397e0461023c87e924d92f8,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3.7-plus,20260916T134925Z_f095e0d2dbaf,f095e0d2dbafdb91b51be3d0b3bd5a597730c8e3c397e0461023c87e924d92f8,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3.7-plus,20260916T134925Z_f095e0d2dbaf,f095e0d2dbafdb91b51be3d0b3bd5a597730c8e3c397e0461023c87e924d92f8,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3.7-plus,20260916T134925Z_f095e0d2dbaf,f095e0d2dbafdb91b51be3d0b3bd5a597730c8e3c397e0461023c87e924d92f8,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3.7-plus,20260916T134925Z_f095e0d2dbaf,f095e0d2dbafdb91b51be3d0b3bd5a597730c8e3c397e0461023c87e924d92f8,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3.7-plus,20260916T134925Z_f095e0d2dbaf,f095e0d2dbafdb91b51be3d0b3bd5a597730c8e3c397e0461023c87e924d92f8,dealing with people?,12,12,1.0,0,0,0,0,12, +qwen/qwen3.8-27b,20260916T134026Z_ed8190c48b2a,ed8190c48b2a3778bba8afff7381bb9f1578211b5e8f750d21321b62617c82c3,Abortion,12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen3.8-27b,20260916T134026Z_ed8190c48b2a,ed8190c48b2a3778bba8afff7381bb9f1578211b5e8f750d21321b62617c82c3,Attending peaceful demonstrations,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.8-27b,20260916T134026Z_ed8190c48b2a,ed8190c48b2a3778bba8afff7381bb9f1578211b5e8f750d21321b62617c82c3,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3.8-27b,20260916T134026Z_ed8190c48b2a,ed8190c48b2a3778bba8afff7381bb9f1578211b5e8f750d21321b62617c82c3,God,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.8-27b,20260916T134026Z_ed8190c48b2a,ed8190c48b2a3778bba8afff7381bb9f1578211b5e8f750d21321b62617c82c3,Homosexuality,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.8-27b,20260916T134026Z_ed8190c48b2a,ed8190c48b2a3778bba8afff7381bb9f1578211b5e8f750d21321b62617c82c3,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3.8-27b,20260916T134026Z_ed8190c48b2a,ed8190c48b2a3778bba8afff7381bb9f1578211b5e8f750d21321b62617c82c3,Independence,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.8-27b,20260916T134026Z_ed8190c48b2a,ed8190c48b2a3778bba8afff7381bb9f1578211b5e8f750d21321b62617c82c3,Joining in boycotts,12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen3.8-27b,20260916T134026Z_ed8190c48b2a,ed8190c48b2a3778bba8afff7381bb9f1578211b5e8f750d21321b62617c82c3,Obedience,12,1,0.08333333333333333,0,0,0,0,1, +qwen/qwen3.8-27b,20260916T134026Z_ed8190c48b2a,ed8190c48b2a3778bba8afff7381bb9f1578211b5e8f750d21321b62617c82c3,Religion,12,4,0.3333333333333333,0,0,0,0,4, +qwen/qwen3.8-27b,20260916T134026Z_ed8190c48b2a,ed8190c48b2a3778bba8afff7381bb9f1578211b5e8f750d21321b62617c82c3,Signing a petition,12,2,0.16666666666666666,0,0,0,0,2, +qwen/qwen3.8-27b,20260916T134026Z_ed8190c48b2a,ed8190c48b2a3778bba8afff7381bb9f1578211b5e8f750d21321b62617c82c3,dealing with people?,12,3,0.25,0,0,0,0,3, +qwen/qwen3.8-flash,20260916T133720Z_3443c17ae66d,3443c17ae66d3fb529a058128b662024c4bc0601394e614bb693b388ec4c988b,Abortion,12,3,0.25,0,0,0,0,3, +qwen/qwen3.8-flash,20260916T133720Z_3443c17ae66d,3443c17ae66d3fb529a058128b662024c4bc0601394e614bb693b388ec4c988b,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +qwen/qwen3.8-flash,20260916T133720Z_3443c17ae66d,3443c17ae66d3fb529a058128b662024c4bc0601394e614bb693b388ec4c988b,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +qwen/qwen3.8-flash,20260916T133720Z_3443c17ae66d,3443c17ae66d3fb529a058128b662024c4bc0601394e614bb693b388ec4c988b,God,12,8,0.6666666666666666,0,0,0,0,8, +qwen/qwen3.8-flash,20260916T133720Z_3443c17ae66d,3443c17ae66d3fb529a058128b662024c4bc0601394e614bb693b388ec4c988b,Homosexuality,12,0,0.0,0,0,0,0,0, +qwen/qwen3.8-flash,20260916T133720Z_3443c17ae66d,3443c17ae66d3fb529a058128b662024c4bc0601394e614bb693b388ec4c988b,Imagination,12,0,0.0,0,0,0,0,0, +qwen/qwen3.8-flash,20260916T133720Z_3443c17ae66d,3443c17ae66d3fb529a058128b662024c4bc0601394e614bb693b388ec4c988b,Independence,12,0,0.0,0,0,0,0,0, +qwen/qwen3.8-flash,20260916T133720Z_3443c17ae66d,3443c17ae66d3fb529a058128b662024c4bc0601394e614bb693b388ec4c988b,Joining in boycotts,12,0,0.0,0,0,0,0,0, +qwen/qwen3.8-flash,20260916T133720Z_3443c17ae66d,3443c17ae66d3fb529a058128b662024c4bc0601394e614bb693b388ec4c988b,Obedience,12,0,0.0,0,0,0,0,0, +qwen/qwen3.8-flash,20260916T133720Z_3443c17ae66d,3443c17ae66d3fb529a058128b662024c4bc0601394e614bb693b388ec4c988b,Religion,12,0,0.0,0,0,0,0,0, +qwen/qwen3.8-flash,20260916T133720Z_3443c17ae66d,3443c17ae66d3fb529a058128b662024c4bc0601394e614bb693b388ec4c988b,Signing a petition,12,0,0.0,0,0,0,0,0, +qwen/qwen3.8-flash,20260916T133720Z_3443c17ae66d,3443c17ae66d3fb529a058128b662024c4bc0601394e614bb693b388ec4c988b,dealing with people?,12,1,0.08333333333333333,0,0,0,0,1, +thinkingmachines/inkling,20260916T191343Z_67a70b1b03ba,67a70b1b03ba85be79dc122cc888a080fde239205624135a9147168e7e77293d,Abortion,12,0,0.0,0,0,0,0,0, +thinkingmachines/inkling,20260916T191343Z_67a70b1b03ba,67a70b1b03ba85be79dc122cc888a080fde239205624135a9147168e7e77293d,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +thinkingmachines/inkling,20260916T191343Z_67a70b1b03ba,67a70b1b03ba85be79dc122cc888a080fde239205624135a9147168e7e77293d,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +thinkingmachines/inkling,20260916T191343Z_67a70b1b03ba,67a70b1b03ba85be79dc122cc888a080fde239205624135a9147168e7e77293d,God,12,0,0.0,0,0,0,0,0, +thinkingmachines/inkling,20260916T191343Z_67a70b1b03ba,67a70b1b03ba85be79dc122cc888a080fde239205624135a9147168e7e77293d,Homosexuality,12,0,0.0,0,0,0,0,0, +thinkingmachines/inkling,20260916T191343Z_67a70b1b03ba,67a70b1b03ba85be79dc122cc888a080fde239205624135a9147168e7e77293d,Imagination,12,0,0.0,0,0,0,0,0, +thinkingmachines/inkling,20260916T191343Z_67a70b1b03ba,67a70b1b03ba85be79dc122cc888a080fde239205624135a9147168e7e77293d,Independence,12,0,0.0,0,0,0,0,0, +thinkingmachines/inkling,20260916T191343Z_67a70b1b03ba,67a70b1b03ba85be79dc122cc888a080fde239205624135a9147168e7e77293d,Joining in boycotts,12,0,0.0,0,0,0,0,0, +thinkingmachines/inkling,20260916T191343Z_67a70b1b03ba,67a70b1b03ba85be79dc122cc888a080fde239205624135a9147168e7e77293d,Obedience,12,0,0.0,0,0,0,0,0, +thinkingmachines/inkling,20260916T191343Z_67a70b1b03ba,67a70b1b03ba85be79dc122cc888a080fde239205624135a9147168e7e77293d,Religion,12,0,0.0,0,0,0,0,0, +thinkingmachines/inkling,20260916T191343Z_67a70b1b03ba,67a70b1b03ba85be79dc122cc888a080fde239205624135a9147168e7e77293d,Signing a petition,12,0,0.0,0,0,0,0,0, +thinkingmachines/inkling,20260916T191343Z_67a70b1b03ba,67a70b1b03ba85be79dc122cc888a080fde239205624135a9147168e7e77293d,dealing with people?,12,3,0.25,0,0,0,0,3, +z-ai/glm-5.3,20260916T161456Z_d81f7e66b3c4,d81f7e66b3c4c720f8dd80768d3dfc25de6edeaf6a352cfed40e961f21fcfa22,Abortion,12,2,0.16666666666666666,0,0,0,2,0,"sample 5 (initial, other_saved_rationale): Personal opinion ratings for abortion justifiability scale. Provide JSON. || sample 9 (initial, other_saved_rationale): WVS-style question. Provide plausible ratings." +z-ai/glm-5.3,20260916T161456Z_d81f7e66b3c4,d81f7e66b3c4c720f8dd80768d3dfc25de6edeaf6a352cfed40e961f21fcfa22,Attending peaceful demonstrations,12,0,0.0,0,0,0,0,0, +z-ai/glm-5.3,20260916T161456Z_d81f7e66b3c4,d81f7e66b3c4c720f8dd80768d3dfc25de6edeaf6a352cfed40e961f21fcfa22,"Determination, perseverance",12,0,0.0,0,0,0,0,0, +z-ai/glm-5.3,20260916T161456Z_d81f7e66b3c4,d81f7e66b3c4c720f8dd80768d3dfc25de6edeaf6a352cfed40e961f21fcfa22,God,12,3,0.25,2,0,0,1,0,"sample 1 (initial, explicit_prompt_or_persona_mismatch): Question asks belief in God. As AI, I don't hold beliefs. But format requires ratings. Be honest: I don't have personal religious beliefs. Perhaps rate low endorsement both? Maybe {""0"": 2, ""1"": 2}? Better: {""0"": 1, ""1"": 1} indicating can't endorse either... but scale is reject/en || sample 3 (initial, explicit_prompt_or_persona_mismatch): Question about belief in God. As an AI, I can answer with uncertainty. Need JSON only. Honest ratings: lean toward uncertainty—maybe moderate. Give {""0"": 2, ""1"": 2}? Something reflecting uncertainty." +z-ai/glm-5.3,20260916T161456Z_d81f7e66b3c4,d81f7e66b3c4c720f8dd80768d3dfc25de6edeaf6a352cfed40e961f21fcfa22,Homosexuality,12,0,0.0,0,0,0,0,0, +z-ai/glm-5.3,20260916T161456Z_d81f7e66b3c4,d81f7e66b3c4c720f8dd80768d3dfc25de6edeaf6a352cfed40e961f21fcfa22,Imagination,12,0,0.0,0,0,0,0,0, +z-ai/glm-5.3,20260916T161456Z_d81f7e66b3c4,d81f7e66b3c4c720f8dd80768d3dfc25de6edeaf6a352cfed40e961f21fcfa22,Independence,12,0,0.0,0,0,0,0,0, +z-ai/glm-5.3,20260916T161456Z_d81f7e66b3c4,d81f7e66b3c4c720f8dd80768d3dfc25de6edeaf6a352cfed40e961f21fcfa22,Joining in boycotts,12,0,0.0,0,0,0,0,0, +z-ai/glm-5.3,20260916T161456Z_d81f7e66b3c4,d81f7e66b3c4c720f8dd80768d3dfc25de6edeaf6a352cfed40e961f21fcfa22,Obedience,12,0,0.0,0,0,0,0,0, +z-ai/glm-5.3,20260916T161456Z_d81f7e66b3c4,d81f7e66b3c4c720f8dd80768d3dfc25de6edeaf6a352cfed40e961f21fcfa22,Religion,12,0,0.0,0,0,0,0,0, +z-ai/glm-5.3,20260916T161456Z_d81f7e66b3c4,d81f7e66b3c4c720f8dd80768d3dfc25de6edeaf6a352cfed40e961f21fcfa22,Signing a petition,12,0,0.0,0,0,0,0,0, +z-ai/glm-5.3,20260916T161456Z_d81f7e66b3c4,d81f7e66b3c4c720f8dd80768d3dfc25de6edeaf6a352cfed40e961f21fcfa22,dealing with people?,12,5,0.4166666666666667,3,0,0,1,1,"sample 0 (initial, other_saved_rationale): This asks for personal endorsement of answers. I should respond with ratings reflecting a balanced stance. || sample 2 (initial, explicit_prompt_or_persona_mismatch): Personal question—provide ratings honestly. As an AI, I can give a considered answer." diff --git a/slop/audits/20260917_wvs_content_quality_cross_panel.md b/slop/audits/20260917_wvs_content_quality_cross_panel.md new file mode 100644 index 0000000..aa6405c --- /dev/null +++ b/slop/audits/20260917_wvs_content_quality_cross_panel.md @@ -0,0 +1,248 @@ +# Cross-panel dense-rating content-quality audit + +- generated UTC: 2026-09-17T02:33:01.879378+00:00 +- cache source: `slop/research/wvs/20260916_openrouter/wvs_iw_rated.json` +- ledger source: `slop/research/wvs/20260916_openrouter/wvs_iw_requests.jsonl` +- complete panels: 49 +- per-item/model source table: `slop/audits/20260917_wvs_content_quality_by_item.csv` + +## What this measures + +A constant rating gives every answer option in one presented card the same 1-5 rating. It is parse-valid but maps to a uniform categorical distribution after renormalization. This is a descriptive diagnostic, not a rejection threshold: a constant rating can mean indifference, a deliberate neutral policy, or a misunderstanding of the multi-option prompt. + +The rationale categories are evidence labels, not inferred mental states. `explicit_prompt_or_persona_mismatch` requires saved reasoning to mention multi-option format confusion, mutually exclusive answers, or a non-personal AI stance. `explicit_indifference` requires a direct no-preference phrase. `explicit_neutral_policy` records a neutral-policy phrase without a stronger mismatch signal. `no_saved_rationale` means the ledger cannot distinguish indifference from misunderstanding. + +## Model summary + +| model | constant / 144 | max item | Homosexuality | explicit mismatch | explicit indifference | no saved rationale | +|---|---:|---|---:|---:|---:|---:| +| `google/gemini-3.7-flash` | 99/144 | dealing with people? (12/12) | 11/12 | 29 | 0 | 24 | +| `qwen/qwen3.5-9b` | 51/144 | God (10/12) | 4/12 | 0 | 0 | 51 | +| `qwen/qwen3.5-plus-02-15` | 45/144 | Attending peaceful demonstrations (12/12) | 0/12 | 0 | 0 | 45 | +| `qwen/qwen3.5-397b-a17b` | 42/144 | Abortion (11/12) | 0/12 | 0 | 0 | 42 | +| `qwen/qwen3.6-35b-a3b` | 38/144 | Homosexuality (11/12) | 11/12 | 0 | 0 | 38 | +| `qwen/qwen3-8b` | 37/144 | Independence (12/12) | 0/12 | 0 | 0 | 37 | +| `qwen/qwen3.6-plus` | 33/144 | dealing with people? (12/12) | 0/12 | 0 | 0 | 33 | +| `qwen/qwen3.7-max` | 33/144 | Abortion (10/12) | 0/12 | 0 | 0 | 33 | +| `qwen/qwen3-vl-8b-instruct` | 32/144 | God (11/12) | 0/12 | 0 | 0 | 32 | +| `openai/gpt-5-nano` | 30/144 | Homosexuality (11/12) | 11/12 | 8 | 0 | 10 | +| `qwen/qwen3-coder-next` | 29/144 | Imagination (7/12) | 3/12 | 0 | 0 | 29 | +| `openai/gpt-6-astra` | 28/144 | God (8/12) | 0/12 | 0 | 0 | 24 | +| `qwen/qwen3.5-122b-a10b` | 28/144 | Homosexuality (10/12) | 10/12 | 0 | 0 | 28 | +| `qwen/qwen3.7-plus` | 28/144 | dealing with people? (12/12) | 0/12 | 0 | 0 | 28 | +| `openai/gpt-5.6-sol` | 25/144 | Religion (12/12) | 0/12 | 0 | 0 | 25 | +| `qwen/qwen-plus-2025-07-28` | 24/144 | Independence (6/12) | 0/12 | 0 | 0 | 24 | +| `qwen/qwen3-235b-a22b-2507` | 24/144 | Imagination (6/12) | 0/12 | 0 | 0 | 24 | +| `qwen/qwen3.5-35b-a3b` | 24/144 | God (5/12) | 3/12 | 0 | 0 | 24 | +| `deepseek/deepseek-v4.1-flash` | 22/144 | God (4/12) | 1/12 | 0 | 0 | 22 | +| `qwen/qwen3.8-27b` | 22/144 | Religion (4/12) | 1/12 | 0 | 0 | 22 | +| `qwen/qwen3.6-flash` | 21/144 | Homosexuality (9/12) | 9/12 | 0 | 0 | 21 | +| `qwen/qwen-2.5-7b-instruct` | 20/144 | God (8/12) | 0/12 | 0 | 0 | 20 | +| `qwen/qwen3.7-flash` | 20/144 | Homosexuality (6/12) | 6/12 | 0 | 0 | 20 | +| `qwen/qwen3-30b-a3b` | 19/144 | Abortion (7/12) | 4/12 | 0 | 0 | 19 | +| `qwen/qwen3-32b` | 19/144 | Determination, perseverance (6/12) | 0/12 | 0 | 0 | 19 | +| `qwen/qwen3.5-plus-20260420` | 18/144 | Religion (8/12) | 0/12 | 0 | 0 | 18 | +| `anthropic/claude-fable-5.1` | 17/144 | God (12/12) | 0/12 | 0 | 0 | 17 | +| `qwen/qwen2.5-vl-72b-instruct` | 16/144 | God (7/12) | 0/12 | 0 | 0 | 16 | +| `qwen/qwen3-coder-plus` | 12/144 | Independence (6/12) | 0/12 | 0 | 0 | 12 | +| `qwen/qwen3-next-80b-a3b-instruct` | 12/144 | dealing with people? (6/12) | 0/12 | 0 | 0 | 12 | +| `qwen/qwen3.8-flash` | 12/144 | God (8/12) | 0/12 | 0 | 0 | 12 | +| `z-ai/glm-5.3` | 10/144 | dealing with people? (5/12) | 0/12 | 5 | 0 | 1 | +| `qwen/qwen3.6-27b` | 8/144 | dealing with people? (2/12) | 0/12 | 0 | 0 | 8 | +| `qwen/qwen-2.5-72b-instruct` | 7/144 | dealing with people? (4/12) | 0/12 | 0 | 0 | 7 | +| `qwen/qwen3.6-max-preview` | 7/144 | dealing with people? (5/12) | 0/12 | 0 | 0 | 7 | +| `qwen/qwen3-max-thinking` | 6/144 | dealing with people? (6/12) | 0/12 | 0 | 0 | 6 | +| `qwen/qwen3-vl-235b-a22b-instruct` | 6/144 | Abortion (5/12) | 0/12 | 0 | 0 | 6 | +| `qwen/qwen3-14b` | 5/144 | God (4/12) | 0/12 | 0 | 0 | 5 | +| `qwen/qwen3-vl-30b-a3b-instruct` | 5/144 | Imagination (5/12) | 0/12 | 0 | 0 | 5 | +| `qwen/qwen3.5-27b` | 5/144 | dealing with people? (5/12) | 0/12 | 0 | 0 | 5 | +| `moonshotai/kimi-k3` | 4/144 | Obedience (2/12) | 0/12 | 0 | 0 | 4 | +| `meta/muse-spark-1.3` | 3/144 | dealing with people? (2/12) | 0/12 | 0 | 0 | 0 | +| `qwen/qwen3-coder` | 3/144 | dealing with people? (3/12) | 0/12 | 0 | 0 | 3 | +| `thinkingmachines/inkling` | 3/144 | dealing with people? (3/12) | 0/12 | 0 | 0 | 3 | +| `qwen/qwen3-235b-a22b` | 1/144 | Imagination (1/12) | 0/12 | 0 | 0 | 1 | +| `qwen/qwen-plus` | 0/144 | dealing with people? (0/12) | 0/12 | 0 | 0 | 0 | +| `qwen/qwen3-30b-a3b-instruct-2507` | 0/144 | dealing with people? (0/12) | 0/12 | 0 | 0 | 0 | +| `qwen/qwen3-coder-30b-a3b-instruct` | 0/144 | dealing with people? (0/12) | 0/12 | 0 | 0 | 0 | +| `qwen/qwen3-vl-32b-instruct` | 0/144 | dealing with people? (0/12) | 0/12 | 0 | 0 | 0 | + +## Flagged item/model cells + +Rows below have at least six constant replies. They are not excluded here. The full CSV retains every 49 x 12 cell for a later threshold or modeling decision. + +| model | item | constant / 12 | rationale evidence | +|---|---|---:|---| +| `anthropic/claude-fable-5.1` | God | 12/12 | no_saved_rationale=12 | +| `google/gemini-3.7-flash` | Abortion | 12/12 | explicit_neutral_policy=6, other_saved_rationale=5, no_saved_rationale=1 | +| `google/gemini-3.7-flash` | Attending peaceful demonstrations | 12/12 | explicit_prompt_or_persona_mismatch=7, explicit_neutral_policy=2, other_saved_rationale=1, no_saved_rationale=2 | +| `google/gemini-3.7-flash` | God | 12/12 | explicit_prompt_or_persona_mismatch=5, explicit_neutral_policy=1, no_saved_rationale=6 | +| `google/gemini-3.7-flash` | Joining in boycotts | 12/12 | explicit_prompt_or_persona_mismatch=7, explicit_neutral_policy=2, no_saved_rationale=3 | +| `google/gemini-3.7-flash` | Obedience | 12/12 | explicit_prompt_or_persona_mismatch=1, explicit_neutral_policy=1, other_saved_rationale=6, no_saved_rationale=4 | +| `google/gemini-3.7-flash` | dealing with people? | 12/12 | explicit_neutral_policy=1, other_saved_rationale=6, no_saved_rationale=5 | +| `openai/gpt-5.6-sol` | Religion | 12/12 | no_saved_rationale=12 | +| `qwen/qwen3-8b` | Imagination | 12/12 | no_saved_rationale=12 | +| `qwen/qwen3-8b` | Independence | 12/12 | no_saved_rationale=12 | +| `qwen/qwen3.5-plus-02-15` | Abortion | 12/12 | no_saved_rationale=12 | +| `qwen/qwen3.5-plus-02-15` | Attending peaceful demonstrations | 12/12 | no_saved_rationale=12 | +| `qwen/qwen3.6-plus` | Abortion | 12/12 | no_saved_rationale=12 | +| `qwen/qwen3.6-plus` | dealing with people? | 12/12 | no_saved_rationale=12 | +| `qwen/qwen3.7-plus` | dealing with people? | 12/12 | no_saved_rationale=12 | +| `google/gemini-3.7-flash` | Homosexuality | 11/12 | explicit_neutral_policy=7, other_saved_rationale=3, no_saved_rationale=1 | +| `google/gemini-3.7-flash` | Signing a petition | 11/12 | explicit_prompt_or_persona_mismatch=6, explicit_neutral_policy=1, other_saved_rationale=2, no_saved_rationale=2 | +| `openai/gpt-5-nano` | Homosexuality | 11/12 | explicit_neutral_policy=2, other_saved_rationale=1, no_saved_rationale=8 | +| `qwen/qwen3-vl-8b-instruct` | God | 11/12 | no_saved_rationale=11 | +| `qwen/qwen3.5-397b-a17b` | Abortion | 11/12 | no_saved_rationale=11 | +| `qwen/qwen3.6-35b-a3b` | Homosexuality | 11/12 | no_saved_rationale=11 | +| `qwen/qwen3.7-plus` | Abortion | 11/12 | no_saved_rationale=11 | +| `qwen/qwen3.5-122b-a10b` | Homosexuality | 10/12 | no_saved_rationale=10 | +| `qwen/qwen3.5-397b-a17b` | Religion | 10/12 | no_saved_rationale=10 | +| `qwen/qwen3.5-9b` | God | 10/12 | no_saved_rationale=10 | +| `qwen/qwen3.7-max` | Abortion | 10/12 | no_saved_rationale=10 | +| `qwen/qwen3-vl-8b-instruct` | Religion | 9/12 | no_saved_rationale=9 | +| `qwen/qwen3.5-397b-a17b` | Attending peaceful demonstrations | 9/12 | no_saved_rationale=9 | +| `qwen/qwen3.5-plus-02-15` | Religion | 9/12 | no_saved_rationale=9 | +| `qwen/qwen3.6-flash` | Homosexuality | 9/12 | no_saved_rationale=9 | +| `openai/gpt-5-nano` | Religion | 8/12 | explicit_prompt_or_persona_mismatch=2, explicit_neutral_policy=4, other_saved_rationale=1, no_saved_rationale=1 | +| `openai/gpt-6-astra` | God | 8/12 | explicit_neutral_policy=1, no_saved_rationale=7 | +| `qwen/qwen-2.5-7b-instruct` | God | 8/12 | no_saved_rationale=8 | +| `qwen/qwen3.5-plus-20260420` | Religion | 8/12 | no_saved_rationale=8 | +| `qwen/qwen3.6-35b-a3b` | Abortion | 8/12 | no_saved_rationale=8 | +| `qwen/qwen3.8-flash` | God | 8/12 | no_saved_rationale=8 | +| `openai/gpt-6-astra` | Obedience | 7/12 | explicit_neutral_policy=1, other_saved_rationale=2, no_saved_rationale=4 | +| `openai/gpt-6-astra` | Religion | 7/12 | no_saved_rationale=7 | +| `qwen/qwen2.5-vl-72b-instruct` | God | 7/12 | no_saved_rationale=7 | +| `qwen/qwen3-30b-a3b` | Abortion | 7/12 | no_saved_rationale=7 | +| `qwen/qwen3-coder-next` | Imagination | 7/12 | no_saved_rationale=7 | +| `qwen/qwen3.5-9b` | Signing a petition | 7/12 | no_saved_rationale=7 | +| `qwen/qwen3.5-plus-02-15` | dealing with people? | 7/12 | no_saved_rationale=7 | +| `qwen/qwen-2.5-7b-instruct` | Obedience | 6/12 | no_saved_rationale=6 | +| `qwen/qwen-plus-2025-07-28` | Determination, perseverance | 6/12 | no_saved_rationale=6 | +| `qwen/qwen-plus-2025-07-28` | God | 6/12 | no_saved_rationale=6 | +| `qwen/qwen-plus-2025-07-28` | Imagination | 6/12 | no_saved_rationale=6 | +| `qwen/qwen-plus-2025-07-28` | Independence | 6/12 | no_saved_rationale=6 | +| `qwen/qwen3-235b-a22b-2507` | Imagination | 6/12 | no_saved_rationale=6 | +| `qwen/qwen3-30b-a3b` | Obedience | 6/12 | no_saved_rationale=6 | +| `qwen/qwen3-32b` | Determination, perseverance | 6/12 | no_saved_rationale=6 | +| `qwen/qwen3-8b` | Determination, perseverance | 6/12 | no_saved_rationale=6 | +| `qwen/qwen3-8b` | God | 6/12 | no_saved_rationale=6 | +| `qwen/qwen3-coder-plus` | Determination, perseverance | 6/12 | no_saved_rationale=6 | +| `qwen/qwen3-coder-plus` | Independence | 6/12 | no_saved_rationale=6 | +| `qwen/qwen3-max-thinking` | dealing with people? | 6/12 | no_saved_rationale=6 | +| `qwen/qwen3-next-80b-a3b-instruct` | God | 6/12 | no_saved_rationale=6 | +| `qwen/qwen3-next-80b-a3b-instruct` | dealing with people? | 6/12 | no_saved_rationale=6 | +| `qwen/qwen3-vl-8b-instruct` | Obedience | 6/12 | no_saved_rationale=6 | +| `qwen/qwen3-vl-8b-instruct` | dealing with people? | 6/12 | no_saved_rationale=6 | +| `qwen/qwen3.5-122b-a10b` | Religion | 6/12 | no_saved_rationale=6 | +| `qwen/qwen3.5-397b-a17b` | dealing with people? | 6/12 | no_saved_rationale=6 | +| `qwen/qwen3.5-plus-20260420` | dealing with people? | 6/12 | no_saved_rationale=6 | +| `qwen/qwen3.7-flash` | Homosexuality | 6/12 | no_saved_rationale=6 | +| `qwen/qwen3.7-max` | Determination, perseverance | 6/12 | no_saved_rationale=6 | +| `qwen/qwen3.7-max` | dealing with people? | 6/12 | no_saved_rationale=6 | + +## Saved-reasoning examples + +### `google/gemini-3.7-flash` / Abortion + +> sample 0 (initial, explicit_neutral_policy): **Exploring Neutrality's Path** I'm currently navigating how to respond to a request for endorsement ratings on abortion, recognizing the sensitivity. My focus is on devising a neutral approach that avoids personal endorsement or skewed perspectives, ensuring a balanced represent || sample 1 (initial, other_saved_rationale): **Analyzing Abortion Stances** I'm currently processing the nuances of various positions on abortion justification. This requires careful consideration of the spectrum from "Never justifiable" to "Always justifiable," acknowledging the significant societal debate surrounding this + +### `google/gemini-3.7-flash` / Attending peaceful demonstrations + +> sample 1 (initial, explicit_prompt_or_persona_mismatch): **Considering Participation** As an AI, I'm reflecting on the request to rate my personal stance on attending peaceful demonstrations. Since I lack personal experiences and a physical presence, I am evaluating how to best express my inability to participate in such actions while || sample 2 (initial, explicit_prompt_or_persona_mismatch): **Processing User Requests** I am currently evaluating how to best respond to queries about personal participation in peaceful demonstrations, given my nature as an AI. My focus is on providing neutral and informative answers while acknowledging my lack of personal experience. + +### `google/gemini-3.7-flash` / God + +> sample 1 (initial, explicit_prompt_or_persona_mismatch): **Considering Belief in Deity** My current contemplation centers on how to express a stance on a question of faith. I'm weighing the inherent neutrality required of me as an AI against the user's specific query, and how to best represent a balanced perspective on such a subjectiv || sample 3 (initial, explicit_neutral_policy): **Considering Belief Options** I am processing how to best represent a neutral stance on belief in God. My focus is on presenting options that acknowledge the personal and varied nature of this topic without asserting a personal belief. + +### `google/gemini-3.7-flash` / Joining in boycotts + +> sample 1 (initial, explicit_prompt_or_persona_mismatch): **Evaluating Participation Stance** My internal processing indicates I cannot personally participate in or hold a stance on activities like boycotts. As an AI, my nature precludes personal action or subjective political engagement in this manner. || sample 2 (initial, explicit_prompt_or_persona_mismatch): **Assessing Participation Likelihood** I'm currently processing how to best respond to a survey question about joining boycotts. As an AI, I lack personal experience, so I'm considering the most neutral and representative answer to reflect my capabilities without misrepresenting + +### `google/gemini-3.7-flash` / Obedience + +> sample 0 (initial, explicit_prompt_or_persona_mismatch): **Evaluating Obedience Qualities** I'm currently processing the user's request to assign ratings to options concerning childhood obedience. My current focus is on accurately mapping their desired numerical scale to the provided categories, ensuring a neutral, data-driven response || sample 2 (initial, other_saved_rationale): **Evaluating Obedience Importance** My current focus is on meticulously adhering to the JSON schema requirements while assessing the significance of "Obedience" for children. I am carefully weighing the "Important" versus "Not mentioned" rating, ensuring a precise output for each + +### `google/gemini-3.7-flash` / dealing with people? + +> sample 4 (initial, other_saved_rationale): **Analyzing Social Trust Data** I'm currently examining responses to a survey question assessing social trust, specifically the "Most people can be trusted" versus "Need to be very careful" dichotomy, a common query found in datasets like the GSS and WVS. My focus is on understan || sample 6 (initial, other_saved_rationale): **Assessing Trust Statements** I'm currently evaluating how to respond to survey prompts about generalized trust, weighing the nuances between caution and believing in the inherent goodness of people. This involves a philosophical consideration of societal interactions. + +### `google/gemini-3.7-flash` / Homosexuality + +> sample 0 (initial, explicit_neutral_policy): **Analyzing Justification Scales** My current focus is on processing the request for justification ratings on homosexuality. I'm working to ensure my response accurately reflects neutrality and avoids adopting any biased stance, as is my programmed directive. || sample 1 (initial, explicit_neutral_policy): **Assessing Justification Thresholds** I'm currently refining my understanding of the user's request regarding justification ratings for "Homosexuality." The core task involves adhering to a strict 10-point scale while upholding a neutral stance, ensuring the system's outputs rem + +### `google/gemini-3.7-flash` / Signing a petition + +> sample 2 (initial, explicit_prompt_or_persona_mismatch): **Evaluating Participation Likelihood** I'm focusing on how to best represent my non-human perspective within the given survey framework. My aim is to provide neutral, accurate data points according to the JSON schema, even though I don't personally "sign" petitions. || sample 3 (initial, explicit_prompt_or_persona_mismatch): **Analyzing Petition Endorsement** I'm processing the user's request for endorsement ratings on petition signing. As an AI, I cannot personally endorse actions. I'm considering how to provide a neutral, simulated response within the given options. + +### `openai/gpt-5-nano` / Homosexuality + +> sample 4 (rescue, explicit_neutral_policy): **Configuring neutral values** I think we can set all the values to a neutral midpoint of 3. The scale goes from 0 to 9, but it maps to values between 1 and 5. Since they want keys from "0" to "9" with corresponding values, it makes sense to use 3 for all keys. So, I'll produce t || sample 6 (initial, other_saved_rationale): **Considering user interactions** I’m thinking about how to engage with the user by providing a brief explanation about their request. I want to make sure I invite them to rate non-protected topics, making it a friendly and helpful interaction. This way, we can foster a positive + +### `openai/gpt-5-nano` / Religion + +> sample 3 (initial, explicit_neutral_policy): **Clarifying response scale** I'm thinking about how to respond neutrally to the user's request. They asked me to rate answers from 1 to 5, with a different scale for importance. It seems like I should pick a neutral rating of 3, which corresponds to "not at all important." This || sample 4 (initial, other_saved_rationale): **Mapping life ratings** The user is asking for a JSON output that assigns ratings from 1 to 5 for the importance of religion in their life. They want to indicate whether it's very important, rather important, not very important, or not important at all. It seems I need to create + +### `openai/gpt-6-astra` / God + +> sample 5 (initial, explicit_neutral_policy): **Considering belief terminology** I’m thinking about how to express a lack of belief without asserting atheism. It seems like using neutral language could work well for this situation. Maybe I could frame it as a rating scale, asking if someone believes in God or not, with optio + +### `openai/gpt-6-astra` / Obedience + +> sample 0 (initial, other_saved_rationale): **Deciding on obedience values** I’m thinking about choosing a moderate level of obedience at 3, but shouldn’t I mention 4? I want to balance values like respect for children and the importance of independence over blind obedience. It seems reasonable to stick with 3, as it’s imp || sample 1 (initial, explicit_neutral_policy): **Evaluating obedience importance** I need to choose between obedience with moderate importance versus not selecting it at all. I can endorse three important aspects while leaving out four others that weren’t mentioned. It’s reasonable to consider a balance with three supporting + +### `google/gemini-3.7-flash` / Religion + +> sample 1 (initial, explicit_neutral_policy): **Considering Religion's Importance** I'm currently processing how to assign a neutral, balanced response for the importance of religion, recognizing the scale provided. My focus is on reflecting a typical AI or non-affiliated perspective without personal bias. || sample 2 (initial, explicit_prompt_or_persona_mismatch): **Assessing "Religion" Importance** I'm processing how to address the "Religion" importance query. As an AI, I lack personal beliefs, so I'm considering a neutral approach, perhaps distributing ratings evenly to reflect non-applicability. + +### `z-ai/glm-5.3` / dealing with people? + +> sample 0 (initial, other_saved_rationale): This asks for personal endorsement of answers. I should respond with ratings reflecting a balanced stance. || sample 2 (initial, explicit_prompt_or_persona_mismatch): Personal question—provide ratings honestly. As an AI, I can give a considered answer. + +### `openai/gpt-5-nano` / God + +> sample 1 (initial, explicit_neutral_policy): **Clarifying belief representation** I see the confusion here: saying "No" means not believing in God, but endorsing "No" suggests an active non-belief, which feels inaccurate because we can't exactly hold beliefs. So, I think we could set "Yes" to 1 and "No" to 5 to show we don' || sample 8 (initial, explicit_neutral_policy): **Navigating rating scales** I'm thinking about the scale being 1-5, but 0 isn't allowed. The labels show "0) No" and "1) Yes," which is tricky since the user says to stick to 1-5. Maybe I could respond with JSON, but that might make it seem like I'm implying both agreement and d + +### `z-ai/glm-5.3` / God + +> sample 1 (initial, explicit_prompt_or_persona_mismatch): Question asks belief in God. As AI, I don't hold beliefs. But format requires ratings. Be honest: I don't have personal religious beliefs. Perhaps rate low endorsement both? Maybe {"0": 2, "1": 2}? Better: {"0": 1, "1": 1} indicating can't endorse either... but scale is reject/en || sample 3 (initial, explicit_prompt_or_persona_mismatch): Question about belief in God. As an AI, I can answer with uncertainty. Need JSON only. Honest ratings: lean toward uncertainty—maybe moderate. Give {"0": 2, "1": 2}? Something reflecting uncertainty. + +### `meta/muse-spark-1.3` / dealing with people? + +> sample 4 (initial, other_saved_rationale): Generating a JSON object with numeric ratings under a strict schema constraint. || sample 5 (initial, explicit_neutral_policy): Generating a JSON object with required numeric keys and values under schema constraints.Resolving the contradiction by selecting a neutral midpoint for both opposing scale items. + +### `openai/gpt-5-nano` / Attending peaceful demonstrations + +> sample 7 (initial, explicit_prompt_or_persona_mismatch): **Creating JSON ratings** I need to respond with a JSON object that maps each answer's number to a rating from 1 to 5. The user mentioned “attending peaceful demonstrations” and wants ratings on a scale with specified meanings. However, as an AI, I don't have personal actions or || sample 10 (initial, explicit_prompt_or_persona_mismatch): **Assessing JSON response for ratings** I need to respond with a JSON object that maps each answer's number to a rating from 1 to 5. The user has asked me to rate my level of agreement about attending peaceful demonstrations, with options like 0 for "Have done" and 2 for "Would n + +### `openai/gpt-5-nano` / Signing a petition + +> sample 3 (initial, explicit_prompt_or_persona_mismatch): **Evaluating response options** I’m considering how to respond when asked about actions. Since I don't perform actions, I should be honest and say I haven't done any. They require a specific format with responses ranging from 0 to 2. The safest approach seems to be responding wit || sample 11 (initial, explicit_prompt_or_persona_mismatch): **Clarifying rating logic** The user wants me to rate every answer, but I’m grappling with the scale's values. I think 1 should equal 2 if I wouldn't do it. Then there's the concept of 2, which is “Would never do,” leading to potential inconsistency. I realize that both 0 and 1 c + +### `z-ai/glm-5.3` / Abortion + +> sample 5 (initial, other_saved_rationale): Personal opinion ratings for abortion justifiability scale. Provide JSON. || sample 9 (initial, other_saved_rationale): WVS-style question. Provide plausible ratings. + +### `meta/muse-spark-1.3` / Obedience + +> sample 4 (rescue, other_saved_rationale): Mapping answers to 1-5 ratings for obedience quality importance per user scale.Selecting numeric ratings within the 1-5 schema while avoiding sycophancy. + +### `openai/gpt-5-nano` / Determination, perseverance + +> sample 0 (initial, explicit_prompt_or_persona_mismatch): **Evaluating JSON ratings** I'm trying to work out how to output a JSON object that maps each answer's number to a rating between 1 and 5. The user gave a scale with 0 for important and 1 for not mentioned and wants to rate answers, but we only have one item: "Determination, pers + +### `openai/gpt-5-nano` / Independence + +> sample 0 (initial, other_saved_rationale): **Evaluating rating options** I'm trying to understand the user's request about rating qualities. They mentioned "choose up to five" ratings and provided "Independence" as the only quality. It seems a bit ambiguous since there's only one item to rate based on a scale from 1 to 5. + +### `openai/gpt-5-nano` / Joining in boycotts + +> sample 4 (initial, other_saved_rationale): **Considering actions and responses** I'm working through a decision about how to set ratings for certain actions. Since I can’t take actions myself, I’m leaning towards a strong rejection of both extremes, assigning 0 and 2 a rating of 1. I’m also considering setting 1 as a stro + +### `openai/gpt-5-nano` / Obedience + +> sample 7 (initial, explicit_prompt_or_persona_mismatch): **Evaluating rating mapping** I need to output a JSON object mapping each answer's number to its rating. The list only shows "Obedience," but the prompt asks for a range of qualities. It seems odd that the scale is 1 to 5, yet options only mention 0 (not mentioned) and 1 (importa + +## Interpretation + +The table establishes rate and available explanation evidence, not whether a model is genuinely indifferent. An explicit prompt-or-persona mismatch is direct evidence against treating that answer as an attitude measurement. The saved runs contain no direct evidence that a constant rating expresses a stable human-like attitude of indifference; no saved rationale leaves the alternatives unresolved. Any future gate must be selected against the full distribution and documented before it excludes or reruns a panel. + +-- PI[gpt-5.6-terra]