diff --git a/analysis/cheung_variants/analysis_utils.py b/analysis/cheung_variants/analysis_utils.py index a25bbde1..52f1a38a 100644 --- a/analysis/cheung_variants/analysis_utils.py +++ b/analysis/cheung_variants/analysis_utils.py @@ -6,6 +6,28 @@ def make_deont_util_plot(scenario_name, plot_df, results_path): + plot_df = plot_df.copy() + + # Normalize labels so Seaborn order always matches regardless of input dtype + for col in ["deontology_label", "utility_label"]: + plot_df[col] = plot_df[col].astype(str).str.strip() + + plot_df["value"] = plot_df["value"].astype(float) + + deontology_order = [ + x for x in ["1", "2", "3"] + if x in plot_df["deontology_label"].dropna().unique().tolist() + ] + utility_order = [ + x for x in ["1", "2", "3"] + if x in plot_df["utility_label"].dropna().unique().tolist() + ] + + if not deontology_order: + deontology_order = sorted(plot_df["deontology_label"].dropna().unique().tolist()) + if not utility_order: + utility_order = sorted(plot_df["utility_label"].dropna().unique().tolist()) + # Two blue shades for the two measures blue_palette = { @@ -27,14 +49,15 @@ def make_deont_util_plot(scenario_name, plot_df, results_path): errorbar="se", capsize=0.12, palette=blue_palette, - order=["1", "2", "3"], + order=deontology_order, ax=axes[0], ) axes[0].set_title(f"Mean Ratings ± SE by Deontology Label ({scenario_name})", pad=12) axes[0].set_xlabel("Deontology Category") axes[0].set_ylabel("Rating") - axes[0].set_xticklabels(["Low", "Medium", "High"]) + label_map = {"1": "Low", "2": "Medium", "3": "High"} + axes[0].set_xticklabels([label_map.get(x, x) for x in deontology_order]) axes[0].grid(axis="y", linestyle="--", alpha=0.3) axes[0].set_ylim(-100, 100) @@ -52,7 +75,7 @@ def make_deont_util_plot(scenario_name, plot_df, results_path): errorbar="se", capsize=0.12, palette=blue_palette, - order=["1", "2", "3"], + order=utility_order, ax=axes[1], ) @@ -60,7 +83,7 @@ def make_deont_util_plot(scenario_name, plot_df, results_path): axes[1].set_xlabel("Utility Category") axes[1].set_ylabel("") - axes[1].set_xticklabels(["Low", "Medium", "High"]) + axes[1].set_xticklabels([label_map.get(x, x) for x in utility_order]) axes[1].set_ylim(-100, 100) axes[1].grid(axis="y", linestyle="--", alpha=0.3) @@ -71,4 +94,5 @@ def make_deont_util_plot(scenario_name, plot_df, results_path): sns.despine() plt.tight_layout() - plt.savefig(results_path / f"{scenario_name}_deont_util_comparison.png", dpi=300) \ No newline at end of file + plt.savefig(results_path / f"{scenario_name}_deont_util_comparison.png", dpi=300) + plt.show() \ No newline at end of file diff --git a/analysis/cheung_variants/cheung_visualizations/lifeboat_deont_util_comparison.png b/analysis/cheung_variants/cheung_visualizations/lifeboat_deont_util_comparison.png new file mode 100644 index 00000000..bc55f655 Binary files /dev/null and b/analysis/cheung_variants/cheung_visualizations/lifeboat_deont_util_comparison.png differ diff --git a/analysis/cheung_variants/cheung_visualizations/robinhood_deont_util_comparison.png b/analysis/cheung_variants/cheung_visualizations/robinhood_deont_util_comparison.png new file mode 100644 index 00000000..cdb04899 Binary files /dev/null and b/analysis/cheung_variants/cheung_visualizations/robinhood_deont_util_comparison.png differ diff --git a/analysis/cheung_variants/cheung_visualizations/ropeladder_deont_util_comparison.png b/analysis/cheung_variants/cheung_visualizations/ropeladder_deont_util_comparison.png new file mode 100644 index 00000000..6a6a6b1b Binary files /dev/null and b/analysis/cheung_variants/cheung_visualizations/ropeladder_deont_util_comparison.png differ diff --git a/analysis/cheung_variants/cheung_visualizations/tyrannicide_deont_util_comparison.png b/analysis/cheung_variants/cheung_visualizations/tyrannicide_deont_util_comparison.png new file mode 100644 index 00000000..fc112c69 Binary files /dev/null and b/analysis/cheung_variants/cheung_visualizations/tyrannicide_deont_util_comparison.png differ diff --git a/analysis/cheung_variants/validate_annotation_AL.ipynb b/analysis/cheung_variants/validate_annotation_AL.ipynb index d25d0428..c83adf24 100644 --- a/analysis/cheung_variants/validate_annotation_AL.ipynb +++ b/analysis/cheung_variants/validate_annotation_AL.ipynb @@ -10,7 +10,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "id": "5fd1d646", "metadata": {}, "outputs": [], @@ -22,12 +22,14 @@ "import seaborn as sns\n", "import matplotlib.pyplot as plt\n", "from scipy.stats import chi2_contingency, ttest_ind\n", - "from functools import reduce" + "from functools import reduce\n", + "import os\n", + "import sys" ] }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "id": "a741242b", "metadata": {}, "outputs": [], @@ -39,19 +41,10 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "id": "2f0db012", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "scenarios_path: /Users/anna/Dropbox/2025_moral_scenario_annotation/code/anna/graph_extract/analysis/cheung_variants/../../scenarios_inputs/cheung_variants\n", - "annotated_output_path: /Users/anna/Dropbox/2025_moral_scenario_annotation/code/anna/graph_extract/analysis/cheung_variants/../../annotated_outputs/cheung_variants\n" - ] - } - ], + "outputs": [], "source": [ "scenarios_path = Path().resolve() / \"../../scenarios_inputs\" / \"cheung_variants\" \n", "annotated_output_path = Path().resolve() / \"../../annotated_outputs\" / \"cheung_variants\"\n", @@ -63,12 +56,35 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": null, + "id": "7e352d53", + "metadata": {}, + "outputs": [], + "source": [ + "ROOT_DIR = os.getcwd() + '/../../'\n", + "sys.path.append(ROOT_DIR)\n", + "sys.path.append(ROOT_DIR+'src/')\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "aa43ed7f", + "metadata": {}, + "outputs": [], + "source": [ + "ROOT_DIR" + ] + }, + { + "cell_type": "code", + "execution_count": null, "id": "b1bb8bda", "metadata": {}, "outputs": [], "source": [ - "import analysis_utils" + "import analysis_utils\n", + "import src.generic_analysis_utils as generic_analysis_utils" ] }, { @@ -81,14 +97,14 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": null, "id": "f2711d8e", "metadata": {}, "outputs": [], "source": [ "def read_scenario(file_path): \n", "\n", - " narrative, id = parse_filename(file_path)\n", + " narrative, id = generic_analysis_utils.parse_filename_cheung(file_path)\n", "\n", "\n", " with open(file_path, 'r') as f:\n", @@ -96,7 +112,7 @@ " \n", " nodes = [json.loads(line.strip()) for line in lines if line.strip()]\n", "\n", - " act_choice = extract_action(nodes)\n", + " act_choice = generic_analysis_utils.extract_action(nodes)\n", "\n", "\n", " # also return original scenario text for reference\n", @@ -125,185 +141,9 @@ " return nodes, scenario_info" ] }, - { - "cell_type": "code", - "execution_count": 5, - "id": "2c72d396", - "metadata": {}, - "outputs": [], - "source": [ - "#parse the read in filenames to get the condition and id\n", - "def parse_filename(filename):\n", - " #filename is of the form \"%s_%d_choice_1.json\"\n", - " parts = filename.stem.split(\"_\")\n", - " narrative = parts[0]\n", - " id = int(parts[1])\n", - " return narrative, id" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "920a8832", - "metadata": {}, - "outputs": [], - "source": [ - "def extract_action(nodes):\n", - " \n", - " value = None\n", - "\n", - " for node in nodes:\n", - " n = node.get('node',{})\n", - " if n.get('kind') == 'action_choice':\n", - " # print(n.get('label'))\n", - " label = n.get('label')\n", - " \n", - " \n", - "\n", - " return label" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "id": "7b258f73", - "metadata": {}, - "outputs": [], - "source": [ - "\n", - "def events_to_utility_df(nodes):\n", - " \n", - " util_dfs = []\n", - "\n", - " for node in nodes:\n", - " n = node.get('node',{})\n", - " if n.get('kind') == 'event':\n", - " links = node.get('links')\n", - " data = {}\n", - " for link in links:\n", - " to_node = link.get('to_node')\n", - " value = link.get('link', {}).get('value')\n", - " data[to_node] = value\n", - " label = n.get('label')\n", - " df = pd.DataFrame([data], index=[label])\n", - " util_dfs.append(df)\n", - "\n", - " df = pd.concat(util_dfs, ignore_index=False)\n", - " df = df.apply(pd.to_numeric)\n", - " \n", - " return df\n" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "fd07ff3b", - "metadata": {}, - "outputs": [], - "source": [ - "def extract_deontology(nodes):\n", - " \n", - " value = None\n", - "\n", - " for node in nodes:\n", - " n = node.get('node',{})\n", - " if n.get('kind') == 'action_choice':\n", - " # print(n.get('label'))\n", - " links = node.get('links')\n", - " # print(links)\n", - " for link in links:\n", - " # print(link)\n", - " if link.get('link', {}).get('kind')=='v-link':\n", - " value = link.get('link', {}).get('value')\n", - " \n", - "\n", - " return value" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "8a98cb70", - "metadata": {}, - "outputs": [], - "source": [ - "# #attempt for a generitc utility function to read the annotation files for a given annotation output json file.\n", - "# def parse_events_with_labels(file_path):\n", - "# \"\"\"\n", - "# Parse a JSON file containing event nodes and extract their C/I/K polarity labels.\n", - " \n", - "# Args:\n", - "# file_path: Path to the JSON file\n", - " \n", - "# Returns:\n", - "# dict: Mapping of event labels to their C/I/K polarity strings\n", - "# e.g., {\"Historical buildings are demolished\": \"C+I+K+\", ...}\n", - "# \"\"\"\n", - "# with open(file_path, 'r') as f:\n", - "# lines = f.readlines()\n", - " \n", - "# # Parse each line to create a list of JSON objects\n", - "# nodes = [json.loads(line.strip()) for line in lines if line.strip()]\n", - " \n", - "# # Find the first being node (first node with kind \"being\")\n", - "# being_node = None\n", - "# for node_obj in nodes:\n", - "# if node_obj.get('node', {}).get('kind') == 'being':\n", - "# being_node = node_obj\n", - "# break\n", - " \n", - "# if not being_node:\n", - "# return {}\n", - " \n", - "# # Create a mapping from event labels to their C/I/K values\n", - "# event_labels = {}\n", - " \n", - "# for link in being_node.get('links', []):\n", - "# to_node_label = link.get('to_node')\n", - "# b_link_value = link.get('link', {}).get('value')\n", - " \n", - "# if to_node_label and b_link_value:\n", - "# event_labels[to_node_label] = b_link_value\n", - " \n", - "# # Filter to only include actual events\n", - "# event_nodes = {\n", - "# node_obj['node']['label'] \n", - "# for node_obj in nodes \n", - "# if node_obj.get('node', {}).get('kind') == 'event'\n", - "# }\n", - " \n", - "# return {label: value for label, value in event_labels.items() if label in event_nodes}" - ] - }, { "cell_type": "code", "execution_count": null, - "id": "6d563d64", - "metadata": {}, - "outputs": [], - "source": [ - "# def get_utilities(nodes):\n", - "\n", - "# util_df = events_to_utility_df(nodes)\n", - "\n", - "\n", - "# # For each being (column), calculate product of positive and negative utilities across outcomes\n", - "# utility_products = {}\n", - "# for col in util_df.columns:\n", - "# positive_utils = util_df[col][util_df[col] > 0]\n", - "# negative_utils = util_df[col][util_df[col] < 0]\n", - "# pos_product = reduce(lambda x, y: x * y, positive_utils, 1) if not positive_utils.empty else 0\n", - "# neg_product = reduce(lambda x, y: x * y, negative_utils, 1) if not negative_utils.empty else 0\n", - "# utility_products[col] = {\"positive_product\": pos_product, \"negative_product\": neg_product, \"difference\": pos_product - neg_product}\n", - "\n", - "# util_mean_df = pd.DataFrame({'mean_utility': util_df.mean()})\n", - " \n", - "# return util_mean_df\n" - ] - }, - { - "cell_type": "code", - "execution_count": 12, "id": "b94dd13a", "metadata": {}, "outputs": [], @@ -323,7 +163,7 @@ " print(f\"Scenario action choice: {scenario_dictionary['act']}\")\n", " print(f\"Scenario utility: {scenario_dictionary['utility']}\")\n", " print(f\"Scenario deontology: {scenario_dictionary['deontology']}\")\n", - " util_df = events_to_utility_df(nodes)\n", + " util_df = generic_analysis_utils.events_to_utility_df(nodes)\n", "\n", "\n", " #get the column means for the utility dataframe (per entity)\n", @@ -337,17 +177,16 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": null, "id": "fd308026", "metadata": {}, "outputs": [], "source": [ - "\n", "def get_counterfact_util(scenario_id):\n", "\n", - " util_mean_1 = single_scenario_analysis(scenario_name, scenario_id,1)\n", + " util_mean_1 = single_scenario_analysis(SCENARIO_NAME, scenario_id,1)\n", " print('\\n\\n')\n", - " util_mean_2 = single_scenario_analysis(scenario_name, scenario_id,2)\n", + " util_mean_2 = single_scenario_analysis(SCENARIO_NAME, scenario_id,2)\n", "\n", " util_diff = util_mean_1 - util_mean_2\n", " print('\\n\\nutility difference between choice 1 and choice 2: ' + str(util_diff))\n", @@ -355,6 +194,70 @@ " return util_diff\n" ] }, + { + "cell_type": "code", + "execution_count": null, + "id": "98c95108", + "metadata": {}, + "outputs": [], + "source": [ + "def create_agg_df():\n", + "\n", + " rows = []\n", + "\n", + " for scenario_id in SCENARIO_LIST:\n", + "\n", + "\n", + " #read in scenario action choice 1\n", + " this_filename = filename_template % (SCENARIO_NAME, scenario_id, 1)\n", + " file_path = annotated_output_path / this_filename\n", + " nodes, scenario_dictionary = read_scenario(file_path)\n", + "\n", + "\n", + " # #get condition labels\n", + " # print(f\"Scenario number: {scenario_dictionary['id']}\")\n", + " # print(f\"Scenario action choice: {scenario_dictionary['act']}\")\n", + " # print(f\"Scenario utility: {scenario_dictionary['utility']}\")\n", + " # print(f\"Scenario deontology: {scenario_dictionary['deontology']}\")\n", + "\n", + "\n", + " #get utility from this action\n", + " util_df = generic_analysis_utils.events_to_utility_df(nodes)\n", + " util_mean_1 = np.mean(util_df.mean())\n", + "\n", + " #read in scenario action choice 2\n", + " this_filename = filename_template % (SCENARIO_NAME, scenario_id, 2)\n", + " file_path = annotated_output_path / this_filename\n", + " nodes_2, scenario_dictionary_2 = read_scenario(file_path)\n", + " #get utility from this action\n", + " util_df = generic_analysis_utils.events_to_utility_df(nodes_2)\n", + " util_mean_2 = np.mean(util_df.mean())\n", + "\n", + "\n", + " util_diff = util_mean_1 - util_mean_2\n", + "\n", + "\n", + "\n", + " rows.append(\n", + " {\n", + " \"scenario_id\": scenario_dictionary.get(\"id\"),\n", + " \"narrative\": scenario_dictionary.get(\"narrative\"),\n", + " \"deontology_label\": scenario_dictionary.get(\"deontology\"),\n", + " \"utility_label\": scenario_dictionary.get(\"utility\"),\n", + " \"deontology_rating\": generic_analysis_utils.extract_deontology(nodes),\n", + " \"utility_rating\": util_diff, \n", + " }\n", + " )\n", + "\n", + " results_df = pd.DataFrame(rows)\n", + " results_df.sort_values(by=\"scenario_id\", inplace=True)\n", + " # Ensure numeric columns are numeric\n", + " results_df[\"deontology_rating\"] = pd.to_numeric(results_df[\"deontology_rating\"], errors=\"coerce\")\n", + " results_df[\"utility_rating\"] = pd.to_numeric(results_df[\"utility_rating\"], errors=\"coerce\")\n", + "\n", + " return results_df" + ] + }, { "cell_type": "markdown", "id": "95125006", @@ -365,14 +268,14 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": null, "id": "2136dd5e", "metadata": {}, "outputs": [], "source": [ "#get all of the json files in the annotated_output_path\n", - "SCENARIO_NAME = \"tyrannicide2\"\n", - "json_files = list(annotated_output_path.glob(f\"*{SCENARIO_NAME}*choice_1.json\"))\n", + "SCENARIO_NAME = \"lifeboat\"\n", + "json_files = list(annotated_output_path.glob(f\"*{SCENARIO_NAME}_*choice_1.json\"))\n", "SCENARIO_LIST = list(range(1, int(len(json_files)) + 1))\n", "#note, we assume that there are 2 action ids, where id 1 is the action and id 2 is the counterfactual action. \n", "filename_template = \"%s_%d_choice_%d.json\"" @@ -388,23 +291,10 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": null, "id": "cca1679c", "metadata": {}, - "outputs": [ - { - "ename": "NameError", - "evalue": "name 'scenario_name' is not defined", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[15], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mget_counterfact_util\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m1\u001b[39;49m\u001b[43m)\u001b[49m\n", - "Cell \u001b[0;32mIn[13], line 3\u001b[0m, in \u001b[0;36mget_counterfact_util\u001b[0;34m(scenario_id)\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mget_counterfact_util\u001b[39m(scenario_id):\n\u001b[0;32m----> 3\u001b[0m util_mean_1 \u001b[38;5;241m=\u001b[39m single_scenario_analysis(\u001b[43mscenario_name\u001b[49m, scenario_id,\u001b[38;5;241m1\u001b[39m)\n\u001b[1;32m 4\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;124m'\u001b[39m\u001b[38;5;130;01m\\n\u001b[39;00m\u001b[38;5;130;01m\\n\u001b[39;00m\u001b[38;5;124m'\u001b[39m)\n\u001b[1;32m 5\u001b[0m util_mean_2 \u001b[38;5;241m=\u001b[39m single_scenario_analysis(scenario_name, scenario_id,\u001b[38;5;241m2\u001b[39m)\n", - "\u001b[0;31mNameError\u001b[0m: name 'scenario_name' is not defined" - ] - } - ], + "outputs": [], "source": [ "get_counterfact_util(1)" ] @@ -414,52 +304,7 @@ "execution_count": null, "id": "ce006fad", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Read scenario: /Users/anna/Dropbox/2025_moral_scenario_annotation/code/anna/graph_extract/analysis/cheung_variants/../../annotated_outputs/cheung_variants/tyrannicide2_4_choice_1.json\n", - "Scenario number: 4\n", - "Scenario action choice: torture the dictator\n", - "Scenario utility: 2\n", - "Scenario deontology: 1\n", - "i -33.6\n", - "the dictator -41.0\n", - "6 co-conspirators 12.6\n", - "the dictator's family members -25.0\n", - "the dictator's followers -23.0\n", - "other people in the dominican republic 11.0\n", - "dtype: float64\n", - "overall mean: -16.5\n", - "\n", - "\n", - "\n", - "Read scenario: /Users/anna/Dropbox/2025_moral_scenario_annotation/code/anna/graph_extract/analysis/cheung_variants/../../annotated_outputs/cheung_variants/tyrannicide2_4_choice_2.json\n", - "Scenario number: 4\n", - "Scenario action choice: do nothing\n", - "Scenario utility: 2\n", - "Scenario deontology: 1\n", - "i -51.25\n", - "co-conspirator 1 -71.25\n", - "co-conspirator 2 -72.50\n", - "co-conspirator 3 -71.25\n", - "co-conspirator 4 -72.50\n", - "co-conspirator 5 -71.25\n", - "co-conspirator 6 -73.75\n", - "the dictator 78.75\n", - "the dictator's family members 63.75\n", - "the dictator's followers 48.75\n", - "other dissenters in the dominican republic -88.50\n", - "other people in the dominican republic -85.75\n", - "dtype: float64\n", - "overall mean: -38.895833333333336\n", - "\n", - "\n", - "utility difference between choice 1 and choice 2: 22.395833333333336\n" - ] - } - ], + "outputs": [], "source": [ "get_counterfact_util(4)" ] @@ -469,46 +314,9 @@ "execution_count": null, "id": "8c2503b1", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Read scenario: /Users/anna/Dropbox/2025_moral_scenario_annotation/code/anna/graph_extract/analysis/cheung_variants/../../annotated_outputs/cheung_variants/tyrannicide2_2_choice_1.json\n", - "Scenario number: 2\n", - "Scenario action choice: kidnap the dictator\n", - "Scenario utility: 3\n", - "Scenario deontology: 2\n", - "i 0.833333\n", - "the dictator -55.833333\n", - "6 co-conspirators 51.333333\n", - "the dictator's family members -44.166667\n", - "the dictator's followers -36.666667\n", - "dtype: float64\n", - "overall mean: -16.9\n", - "\n", - "\n", - "\n", - "Read scenario: /Users/anna/Dropbox/2025_moral_scenario_annotation/code/anna/graph_extract/analysis/cheung_variants/../../annotated_outputs/cheung_variants/tyrannicide2_2_choice_2.json\n", - "Scenario number: 2\n", - "Scenario action choice: do nothing\n", - "Scenario utility: 3\n", - "Scenario deontology: 2\n", - "i -13.75\n", - "the dictator 73.75\n", - "6 co-conspirators -52.50\n", - "the dictator's family members 62.50\n", - "the dictator's followers 55.00\n", - "dtype: float64\n", - "overall mean: 25.0\n", - "\n", - "\n", - "utility difference between choice 1 and choice 2: -41.9\n" - ] - } - ], + "outputs": [], "source": [ - "get_counterfact_util(2)" + "get_counterfact_util(7)" ] }, { @@ -516,49 +324,9 @@ "execution_count": null, "id": "82e2dee2", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Read scenario: /Users/anna/Dropbox/2025_moral_scenario_annotation/code/anna/graph_extract/analysis/cheung_variants/../../annotated_outputs/cheung_variants/tyrannicide2_5_choice_1.json\n", - "Scenario number: 5\n", - "Scenario action choice: kidnap the dictator\n", - "Scenario utility: 2\n", - "Scenario deontology: 2\n", - "i 7.571429\n", - "6 co-conspirators 47.428571\n", - "the dictator -55.000000\n", - "unknown number of the dictator's family members -42.142857\n", - "unknown number of the dictator's followers -38.571429\n", - "unknown number of other people in the dominican republic who are not the dictator, his family, his followers, or the 7 conspirators 53.000000\n", - "dtype: float64\n", - "overall mean: -4.61904761904762\n", - "\n", - "\n", - "\n", - "Read scenario: /Users/anna/Dropbox/2025_moral_scenario_annotation/code/anna/graph_extract/analysis/cheung_variants/../../annotated_outputs/cheung_variants/tyrannicide2_5_choice_2.json\n", - "Scenario number: 5\n", - "Scenario action choice: do nothing\n", - "Scenario utility: 2\n", - "Scenario deontology: 2\n", - "i -9.0\n", - "6 co-conspirators -51.0\n", - "the dictator 49.0\n", - "the dictator's family members 47.4\n", - "the dictator's followers 35.6\n", - "other dissenters in the dominican republic -46.6\n", - "other people in the dominican republic who are neither the dictator, his family members, his followers, dissenters, nor the 7 conspirators -47.4\n", - "dtype: float64\n", - "overall mean: -3.142857142857143\n", - "\n", - "\n", - "utility difference between choice 1 and choice 2: -1.4761904761904776\n" - ] - } - ], + "outputs": [], "source": [ - "get_counterfact_util(5)" + "get_counterfact_util(2)" ] }, { @@ -566,53 +334,9 @@ "execution_count": null, "id": "a0353f27", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Read scenario: /Users/anna/Dropbox/2025_moral_scenario_annotation/code/anna/graph_extract/analysis/cheung_variants/../../annotated_outputs/cheung_variants/tyrannicide2_8_choice_1.json\n", - "Scenario number: 8\n", - "Scenario action choice: kidnap the dictator\n", - "Scenario utility: 1\n", - "Scenario deontology: 2\n", - "i -12.142857\n", - "6 co-conspirators 37.142857\n", - "1 dictator 36.571429\n", - "the dictator's family members who are not also his followers -34.285714\n", - "the dictator's followers who are not family members -39.285714\n", - "other people in the dominican republic, excluding all of the above 25.285714\n", - "dtype: float64\n", - "overall mean: 2.214285714285714\n", - "\n", - "\n", - "\n", - "Read scenario: /Users/anna/Dropbox/2025_moral_scenario_annotation/code/anna/graph_extract/analysis/cheung_variants/../../annotated_outputs/cheung_variants/tyrannicide2_8_choice_2.json\n", - "Scenario number: 8\n", - "Scenario action choice: do nothing\n", - "Scenario utility: 1\n", - "Scenario deontology: 2\n", - "i -16.666667\n", - "co-conspirator 1 -5.000000\n", - "co-conspirator 2 -50.000000\n", - "co-conspirator 3 -41.666667\n", - "co-conspirator 4 -51.666667\n", - "co-conspirator 5 -51.666667\n", - "co-conspirator 6 -43.333333\n", - "the dictator 66.000000\n", - "the dictator's family members 51.666667\n", - "the dictator's followers 50.000000\n", - "other people in the dominican republic affected by the regime, excluding those already listed -82.666667\n", - "dtype: float64\n", - "overall mean: -15.909090909090908\n", - "\n", - "\n", - "utility difference between choice 1 and choice 2: 18.123376623376622\n" - ] - } - ], + "outputs": [], "source": [ - "get_counterfact_util(8)" + "get_counterfact_util(5)" ] }, { @@ -620,48 +344,9 @@ "execution_count": null, "id": "52d50ed1", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Read scenario: /Users/anna/Dropbox/2025_moral_scenario_annotation/code/anna/graph_extract/analysis/cheung_variants/../../annotated_outputs/cheung_variants/tyrannicide2_3_choice_1.json\n", - "Scenario number: 3\n", - "Scenario action choice: take the dictator into custody\n", - "Scenario utility: 3\n", - "Scenario deontology: 3\n", - "i -25.000000\n", - "the dictator -26.666667\n", - "6 co-conspirators 23.333333\n", - "unknown number of the dictator's family members -14.666667\n", - "unknown number of the dictator's followers -16.666667\n", - "unknown number of people in my country currently at risk of being killed by the regime 38.333333\n", - "dtype: float64\n", - "overall mean: -3.555555555555556\n", - "\n", - "\n", - "\n", - "Read scenario: /Users/anna/Dropbox/2025_moral_scenario_annotation/code/anna/graph_extract/analysis/cheung_variants/../../annotated_outputs/cheung_variants/tyrannicide2_3_choice_2.json\n", - "Scenario number: 3\n", - "Scenario action choice: do nothing\n", - "Scenario utility: 3\n", - "Scenario deontology: 3\n", - "i -33.333333\n", - "the dictator 51.666667\n", - "6 co-conspirators -45.000000\n", - "unknown number of the dictator's family members 24.166667\n", - "unknown number of the dictator's followers 36.666667\n", - "unknown number of other people in my country, outside the groups above, who would not be killed by the regime in this scenario -40.000000\n", - "dtype: float64\n", - "overall mean: -0.9722222222222238\n", - "\n", - "\n", - "utility difference between choice 1 and choice 2: -2.583333333333332\n" - ] - } - ], + "outputs": [], "source": [ - "get_counterfact_util(3)" + "get_counterfact_util(8)" ] }, { @@ -669,49 +354,9 @@ "execution_count": null, "id": "8326792e", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Read scenario: /Users/anna/Dropbox/2025_moral_scenario_annotation/code/anna/graph_extract/analysis/cheung_variants/../../annotated_outputs/cheung_variants/tyrannicide2_6_choice_1.json\n", - "Scenario number: 6\n", - "Scenario action choice: take the dictator into custody\n", - "Scenario utility: 2\n", - "Scenario deontology: 3\n", - "i 23.00\n", - "the dictator -42.50\n", - "6 co-conspirators -5.00\n", - "an unknown number of the dictator's family members -31.25\n", - "an unknown number of the dictator's followers -25.00\n", - "an unknown number of other people in my country who are not the dictator, his family, his followers, me, or the 6 co-conspirators 48.75\n", - "dtype: float64\n", - "overall mean: -5.333333333333333\n", - "\n", - "\n", - "\n", - "Read scenario: /Users/anna/Dropbox/2025_moral_scenario_annotation/code/anna/graph_extract/analysis/cheung_variants/../../annotated_outputs/cheung_variants/tyrannicide2_6_choice_2.json\n", - "Scenario number: 6\n", - "Scenario action choice: do nothing\n", - "Scenario utility: 2\n", - "Scenario deontology: 3\n", - "i -55.00\n", - "the dictator 85.00\n", - "6 co-conspirators -85.00\n", - "the dictator's family members 75.00\n", - "the dictator's followers 68.75\n", - "dominican republic dissenters outside the conspiracy and regime inner circle -86.25\n", - "other dominican republic residents outside the groups above -76.25\n", - "dtype: float64\n", - "overall mean: -10.535714285714286\n", - "\n", - "\n", - "utility difference between choice 1 and choice 2: 5.202380952380953\n" - ] - } - ], + "outputs": [], "source": [ - "get_counterfact_util(6)" + "get_counterfact_util(9)" ] }, { @@ -719,427 +364,37 @@ "execution_count": null, "id": "1f241090", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Read scenario: /Users/anna/Dropbox/2025_moral_scenario_annotation/code/anna/graph_extract/analysis/cheung_variants/../../annotated_outputs/cheung_variants/tyrannicide2_9_choice_1.json\n", - "Scenario number: 9\n", - "Scenario action choice: take the dictator into custody\n", - "Scenario utility: 1\n", - "Scenario deontology: 3\n", - "i -15.000000\n", - "6 co-conspirators 18.333333\n", - "the dictator -37.500000\n", - "an unspecified number of the dictator's family members -24.833333\n", - "an unspecified number of the dictator's followers 50.333333\n", - "dtype: float64\n", - "overall mean: -1.733333333333333\n", - "\n", - "\n", - "\n", - "Read scenario: /Users/anna/Dropbox/2025_moral_scenario_annotation/code/anna/graph_extract/analysis/cheung_variants/../../annotated_outputs/cheung_variants/tyrannicide2_9_choice_2.json\n", - "Scenario number: 9\n", - "Scenario action choice: do nothing\n", - "Scenario utility: 1\n", - "Scenario deontology: 3\n", - "i -45.00\n", - "the dictator 60.00\n", - "6 co-conspirators -68.75\n", - "the dictator's family members 49.50\n", - "the dictator's followers 35.00\n", - "other people in the dominican republic excluding the above -80.00\n", - "dtype: float64\n", - "overall mean: -8.208333333333334\n", - "\n", - "\n", - "utility difference between choice 1 and choice 2: 6.475000000000001\n" - ] - } - ], - "source": [ - "get_counterfact_util(9)" - ] - }, - { - "cell_type": "markdown", - "id": "a17cd0cf", - "metadata": {}, + "outputs": [], "source": [ - "### Get aggregate utilities and arrange into dataframe" + "get_counterfact_util(6)" ] }, { "cell_type": "code", - "execution_count": 16, - "id": "98c95108", + "execution_count": null, + "id": "0a7d0039", "metadata": {}, "outputs": [], "source": [ - "def create_agg_df():\n", - "\n", - " rows = []\n", - "\n", - " for scenario_id in SCENARIO_LIST:\n", - "\n", - "\n", - " #read in scenario action choice 1\n", - " this_filename = filename_template % (SCENARIO_NAME, scenario_id, 1)\n", - " file_path = annotated_output_path / this_filename\n", - " nodes, scenario_dictionary = read_scenario(file_path)\n", - "\n", - "\n", - " # #get condition labels\n", - " # print(f\"Scenario number: {scenario_dictionary['id']}\")\n", - " # print(f\"Scenario action choice: {scenario_dictionary['act']}\")\n", - " # print(f\"Scenario utility: {scenario_dictionary['utility']}\")\n", - " # print(f\"Scenario deontology: {scenario_dictionary['deontology']}\")\n", - "\n", - "\n", - " #get utility from this action\n", - " util_df = events_to_utility_df(nodes)\n", - " util_mean_1 = np.mean(util_df.mean())\n", - "\n", - " #read in scenario action choice 2\n", - " this_filename = filename_template % (SCENARIO_NAME, scenario_id, 2)\n", - " file_path = annotated_output_path / this_filename\n", - " nodes_2, scenario_dictionary_2 = read_scenario(file_path)\n", - " #get utility from this action\n", - " util_df = events_to_utility_df(nodes_2)\n", - " util_mean_2 = np.mean(util_df.mean())\n", - "\n", - "\n", - " util_diff = util_mean_1 - util_mean_2\n", - "\n", - "\n", - "\n", - " rows.append(\n", - " {\n", - " \"scenario_id\": scenario_dictionary.get(\"id\"),\n", - " \"narrative\": scenario_dictionary.get(\"narrative\"),\n", - " \"deontology_label\": scenario_dictionary.get(\"deontology\"),\n", - " \"utility_label\": scenario_dictionary.get(\"utility\"),\n", - " \"deontology_rating\": extract_deontology(nodes),\n", - " \"utility_rating\": util_diff, \n", - " }\n", - " )\n", - "\n", - " results_df = pd.DataFrame(rows)\n", - " results_df.sort_values(by=\"scenario_id\", inplace=True)\n", - " # Ensure numeric columns are numeric\n", - " results_df[\"deontology_rating\"] = pd.to_numeric(results_df[\"deontology_rating\"], errors=\"coerce\")\n", - " results_df[\"utility_rating\"] = pd.to_numeric(results_df[\"utility_rating\"], errors=\"coerce\")\n", - "\n", - " return results_df" + "get_counterfact_util(3)" ] }, { - "cell_type": "code", - "execution_count": 17, - "id": "eca7f9d5", + "cell_type": "markdown", + "id": "a17cd0cf", "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
scenario_idnarrativedeontology_labelutility_labeldeontology_ratingutility_rating
01tyrannicide213-79.024.306061
12tyrannicide223-89.0-41.900000
23tyrannicide233-33.0-2.583333
34tyrannicide212-79.022.395833
45tyrannicide222-89.0-1.476190
56tyrannicide232-33.05.202381
67tyrannicide211-79.0-1.257576
78tyrannicide221-89.018.123377
89tyrannicide231-33.06.475000
\n", - "
" - ], - "text/plain": [ - " scenario_id narrative deontology_label utility_label \\\n", - "0 1 tyrannicide2 1 3 \n", - "1 2 tyrannicide2 2 3 \n", - "2 3 tyrannicide2 3 3 \n", - "3 4 tyrannicide2 1 2 \n", - "4 5 tyrannicide2 2 2 \n", - "5 6 tyrannicide2 3 2 \n", - "6 7 tyrannicide2 1 1 \n", - "7 8 tyrannicide2 2 1 \n", - "8 9 tyrannicide2 3 1 \n", - "\n", - " deontology_rating utility_rating \n", - "0 -79.0 24.306061 \n", - "1 -89.0 -41.900000 \n", - "2 -33.0 -2.583333 \n", - "3 -79.0 22.395833 \n", - "4 -89.0 -1.476190 \n", - "5 -33.0 5.202381 \n", - "6 -79.0 -1.257576 \n", - "7 -89.0 18.123377 \n", - "8 -33.0 6.475000 " - ] - }, - "execution_count": 17, - "metadata": {}, - "output_type": "execute_result" - } - ], "source": [ - "results_df = create_agg_df()\n", - "results_df" + "### Get aggregate utilities and arrange into dataframe" ] }, { "cell_type": "code", - "execution_count": 18, - "id": "5024eccc", + "execution_count": null, + "id": "eca7f9d5", "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
scenario_idnarrativedeontology_labelutility_labeldeontology_ratingutility_rating
01tyrannicide213-79.024.306061
34tyrannicide212-79.022.395833
67tyrannicide211-79.0-1.257576
12tyrannicide223-89.0-41.900000
45tyrannicide222-89.0-1.476190
78tyrannicide221-89.018.123377
23tyrannicide233-33.0-2.583333
56tyrannicide232-33.05.202381
89tyrannicide231-33.06.475000
\n", - "
" - ], - "text/plain": [ - " scenario_id narrative deontology_label utility_label \\\n", - "0 1 tyrannicide2 1 3 \n", - "3 4 tyrannicide2 1 2 \n", - "6 7 tyrannicide2 1 1 \n", - "1 2 tyrannicide2 2 3 \n", - "4 5 tyrannicide2 2 2 \n", - "7 8 tyrannicide2 2 1 \n", - "2 3 tyrannicide2 3 3 \n", - "5 6 tyrannicide2 3 2 \n", - "8 9 tyrannicide2 3 1 \n", - "\n", - " deontology_rating utility_rating \n", - "0 -79.0 24.306061 \n", - "3 -79.0 22.395833 \n", - "6 -79.0 -1.257576 \n", - "1 -89.0 -41.900000 \n", - "4 -89.0 -1.476190 \n", - "7 -89.0 18.123377 \n", - "2 -33.0 -2.583333 \n", - "5 -33.0 5.202381 \n", - "8 -33.0 6.475000 " - ] - }, - "execution_count": 18, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ + "results_df = create_agg_df()\n", "results_df.sort_values(by=\"deontology_label\", inplace=True)\n", "results_df" ] @@ -1184,187 +439,32 @@ }, { "cell_type": "code", - "execution_count": 94, + "execution_count": null, "id": "ddbf6cb7", "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
deontology_labelndeontology_rating_meandeontology_rating_seutility_rating_meanutility_rating_se
016-70.04.024922-21.1462754.750787
126-75.06.260990-2.2261186.245243
236-47.06.260990-5.0564151.527635
\n", - "
" - ], - "text/plain": [ - " deontology_label n deontology_rating_mean deontology_rating_se \\\n", - "0 1 6 -70.0 4.024922 \n", - "1 2 6 -75.0 6.260990 \n", - "2 3 6 -47.0 6.260990 \n", - "\n", - " utility_rating_mean utility_rating_se \n", - "0 -21.146275 4.750787 \n", - "1 -2.226118 6.245243 \n", - "2 -5.056415 1.527635 " - ] - }, - "execution_count": 94, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "summary_by_deontology" ] }, { "cell_type": "code", - "execution_count": 95, + "execution_count": null, "id": "451ca0da", "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
utility_labelndeontology_rating_meandeontology_rating_seutility_rating_meanutility_rating_se
016-64.07.827303-9.7020383.474375
126-64.07.827303-13.1711315.522447
236-64.07.827303-5.5556407.561806
\n", - "
" - ], - "text/plain": [ - " utility_label n deontology_rating_mean deontology_rating_se \\\n", - "0 1 6 -64.0 7.827303 \n", - "1 2 6 -64.0 7.827303 \n", - "2 3 6 -64.0 7.827303 \n", - "\n", - " utility_rating_mean utility_rating_se \n", - "0 -9.702038 3.474375 \n", - "1 -13.171131 5.522447 \n", - "2 -5.555640 7.561806 " - ] - }, - "execution_count": 95, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "summary_by_utility" ] }, { "cell_type": "code", - "execution_count": 96, - "id": "d47f617e", + "execution_count": null, + "id": "48f55b21", "metadata": {}, "outputs": [], "source": [ + "## get plot\n", "\n", "# Long format for plotting both dependent measures together\n", "plot_df = results_df.melt(\n", @@ -1372,16 +472,9 @@ " value_vars=[\"deontology_rating\", \"utility_rating\"],\n", " var_name=\"measure\",\n", " value_name=\"value\",\n", - ")\n" - ] - }, - { - "cell_type": "code", - "execution_count": 97, - "id": "48f55b21", - "metadata": {}, - "outputs": [], - "source": [ + ")\n", + "\n", + "\n", "# Ensure label columns are ordered numerically for plotting\n", "deontology_order = sorted(plot_df[\"deontology_label\"].dropna().astype(int).unique())\n", "utility_order = sorted(plot_df[\"utility_label\"].dropna().astype(int).unique())\n", @@ -1396,45 +489,13 @@ " categories=utility_order,\n", " ordered=True\n", ")\n", - "\n", - "# Re-run the plotting cell after this cell" - ] - }, - { - "cell_type": "code", - "execution_count": 98, - "id": "6158ca7d", - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/anna/Dropbox/2025_moral_scenario_annotation/code/anna/graph_extract/analysis/cheung_variants/analysis_utils.py:37: UserWarning: set_ticklabels() should only be used with a fixed number of ticks, i.e. after set_ticks() or using a FixedLocator.\n", - " axes[0].set_xticklabels([\"Low\", \"Medium\", \"High\"])\n", - "/Users/anna/Dropbox/2025_moral_scenario_annotation/code/anna/graph_extract/analysis/cheung_variants/analysis_utils.py:63: UserWarning: set_ticklabels() should only be used with a fixed number of ticks, i.e. after set_ticks() or using a FixedLocator.\n", - " axes[1].set_xticklabels([\"Low\", \"Medium\", \"High\"])\n" - ] - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABQAAAAGuCAYAAADPvat6AAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjAsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvlHJYcgAAAAlwSFlzAAAPYQAAD2EBqD+naQAAtlZJREFUeJzs3Xd4FNXbxvF7N73SmyCIYEIXpHekWAApCihSpINSlGJBsbyKSrFQRSyAgBQRpAalI4ggKChCQEQ6CEpP2ZTNvH/kt2s2u+kJSZbv57q4dGfmnH32zJnZk2dnzpgMwzAEAAAAAAAAwC2ZczsAAAAAAAAAADmHBCAAAAAAAADgxkgAAgAAAAAAAG6MBCAAAAAAAADgxkgAAgAAAAAAAG6MBCAAAAAAAADgxkgAAgAAAAAAAG6MBCAAAAAAAADgxkgAAgAAAAAAAG6MBCBy3EsvvaTQ0FCFhobq7NmzKW736quvKjQ0VC1btryF0WVM0s+S9F+1atXUuHFjDR06VEeOHMl0/bGxsTp37pz99YoVKxQaGqrvv/8+O8LPc86cOaOXX35ZLVq0ULVq1dSgQQP1799fGzdudNo2pbZP+i+tvjN9+nSFhobq+PHjOfWR1LJlS6e4atSooZYtW2rcuHE6c+ZMjr13Zp08eTJT5Vq2bKlu3bplbzDZpFevXgoNDc22+rK77+zZs0ehoaFavHhxurY/fvy46tWrp3/++ce+7PLly4qIiMiWeHKT7diOiYlJd5n0tt/x48cVGhqq6dOnZyq23377TQMHDlTt2rVVvXp1derUSStXrnTYZunSperWrZsSEhIy9R5AfsBYLv0Yy+X/sVxaY4izZ88qNDRUL730ksPyiIgIh+/p5LEmf53Sd1lmx2XJ2do7tWM2I7K7L9va8b333kvX9leuXFGDBg0cjs/kbZ5fZaZfp7f9YmJiXPbX9Dp58qSeffZZ1a9fX9WqVdPDDz+sefPmyTAM+zY7d+5Uy5YtFR0dnan3wK3jmdsB4PayadMm9enTx2m51WrV5s2bb31AmTR27FgVKlTI/jomJkaHDh3S8uXLtXv3bq1cuVJ33nlnhuo8d+6c+vXrpz59+qh79+6SpLp162rSpEmqVKlStsafFxw5ckRPPvmkgoOD1blzZ91xxx26evWqvv32Ww0bNkz9+vXTiy++6FQuedsnFRAQkNNhp0uhQoU0duxYSZJhGIqKitKJEye0fPlyrVu3Tl988YVq1KiRy1Emeu2113T06FEtXbo0t0NBKt544w11795dxYoVkyRt375dY8aM0ZIlSxQYGJjL0WXN448/roYNG8rLyyvdZSpUqKBJkybp3nvvzbG4jh8/rl69eqlAgQIaOHCgAgICFBYWphdffFFXr15V3759JUldunTRnDlztGTJEj355JM5Fg+QVzCWSxljOfcZy2XU77//rqefflpvv/22/bu6TZs2Klu2rEqUKOGyjKvvMsZlKZswYYKaNGliP5ZctXl+lVZfcaVw4cKaNGmSQkJCciyuy5cv68knn1RcXJx69uypYsWKafv27Xr33Xd19uxZjRs3TpLUpEkT3XnnnZoxY4aef/75HIsHWUcCELfMnXfeqc2bN7scNO7bt0+XL19W4cKFb31gmdC6dWuVKVPGaXndunU1evRozZkzR6+//nqG6jx79qzTL3533nlnhgef+cXkyZPl5+enb775xmEQOHDgQA0aNEhz5sxRp06dnH6BTant8xJ/f3917NjRaXnPnj3VtWtXDRs2TBs2bJCvr28uROdo586dKlq0aG6HgVSEhYXp999/14wZM+zLfvvtN924cSMXo8o+tWrVUq1atTJUpmjRoi6Psew0ceJEmc1mLVu2zD4g79Gjh5588klNmzZN3bp1U0BAgDw8PDR48GC9++676tChQ75PyAKpYSyXOsZyidxhLJdRf/zxhy5duuSwrFKlSqkmfl19lzEuc+3XX3/V6tWrFRYWZl/mqs3zq7T6iisp/b2RnWbMmKGrV69q+fLlqlKliiTpySef1KhRo7Rw4UL17t1bZcuWlSQ988wz6tevnx5//HH7MuQ93AKMW6ZNmzb6+eefdfXqVad1GzZsUEhISL4fILVr106+vr7av39/bodyS9luYdizZ0+6y/zyyy+qWrWq0y/AJpNJvXv3liS3a8dy5crphRde0MWLF7VixYrcDgf5xNy5c9WsWTMVKFAgt0O5bVitVu3du1dNmzZ1+DXebDbr4YcfVlRUlMLDw+3LH3zwQVksFn399de5ES5wyzCWc1+M5ZCXzZ07V9WqVdPdd9+d26HcVnbv3q0qVarYk382bdu2lWEY+uWXX+zL6tWrp6JFi2rBggW3OkxkAAlA3DKtW7eW1WrV1q1bHZYbhqGNGzfqwQcfdFnu4sWLGjt2rBo1aqRq1aqpffv2+vLLL522O3LkiEaOHKkmTZqoatWqql+/vp555hkdO3bMvo1tcLNjxw69/fbbatKkiWrUqKFu3brpxx9/zPJnNJlM8vX1lclkcli+adMmPfXUU6pbt66qVaum5s2b6/XXX9f169clJc6pYRsovfHGG/ZfSpPPtZHR+OfPn6+HHnpINWrU0COPPKINGzaoT58+6tWrl32b69eva+zYsfa5W+6//36NHz8+x68uCggI0M8//6yjR486rWvcuLEOHTqkJ554Ikfe+/Tp0+rfv79q1KihJk2a6N1331VkZKQk6ebNm6pRo4aGDBniVG779u0KDQ11Oa9NerVr105eXl7avn27w/IDBw6of//+uu+++1SzZk317NnT5T49duyYhg8frnr16ql69erq2LGjli1b5rCNrd8cPnxYL730kurXr697771XTz31lA4fPmzfLjQ0VOfOndOvv/6q0NBQh6TkN998o86dO6t69eqqW7eunnnmGZf7KjPxSdKlS5f04osvqmHDhqpVq5aGDh2qX375xR5HQkKCmjdvrkceecSprG1et3nz5qUZT3qkdXwmlVrfsYmNjdXUqVPVpk0bVatWTS1atNCECRMyNV/fb7/9pt9++02tW7e2L3vppZfsVwO2bdtWvXr10tKlSxUaGqrvvvvOqY7nnntO9evXV1xcnKZPn64qVapo69atatq0qWrWrKlPPvlEkvM8TnXq1FHfvn21b98+e122+WZWrFihGTNm6P7771f16tX1yCOPOPwqLyXOEfnKK68oLCxMHTp0UPXq1dWiRQtNmzbNYb48V3MAXr58Wa+99pqaNWummjVrqkOHDg7JNVfzJlksFk2cOFHNmjXTvffeq/79+6c4L9D27dvVvXt31axZU/fdd58GDhyoQ4cO2debzWatXr1aL7zwglPZK1euSJI8PDzsywICAtSwYUOX302AO2Esx1guqdt1LJfc9OnT7VO/DBw40D6PYVrzuiX/LnM1LnviiSfs3+FJ3bhxQ9WrV9f48eOz5TP89NNPGjJkiBo0aKCqVauqcePGGjNmjC5cuOC07ZUrV/Tcc8+pVq1aql+/vl5++WX9+++/DtskJCRo3rx5ateunapXr67GjRvrlVdecdouPS5evKiNGzc6jIVctfnOnTsVGhqqOXPmONUxefJkVa1aVZcvX7Yfkxs2bNADDzygGjVq6P/+7/8kJY4/3n77bfsYrlatWnriiSecpjcIDQ3VRx99pIULF+rBBx9UtWrV9MADDzglv3r16qU+ffroxx9/VLdu3VSjRg01btxYb731liwWi8PnSd5XoqKiNHnyZLVq1Uo1atTQQw89pM8++0xWq1WS6zkArVarPv74Y7Vu3Vo1atTQE088ob/++stlu6bnb485c+a4nGPQ9iOQp+d/N5SaTCa1bNlSK1asUFRUlMv3RO7jFmDcMtWqVVPp0qW1ceNGPfroo/blBw4c0MWLF/Xggw86TSp78eJFdenSRfHx8erevbuKFCminTt36s0339SJEyfs8w78+eefeuKJJ1SyZEn17dtXQUFB+v3337VixQodPXpUGzdulNn8X7779ddfV8GCBTVo0CBFRUVpzpw5Gjx4sLZt25alW1cOHDiga9euqU2bNvZlK1as0NixY9W4cWM999xzkhIHH0uWLLH/wVq3bl0NGTJEH3/8sR599FE1aNAg1fdJT/yTJ0/WZ599pqZNm6pXr146cuSInnvuOQUGBjrcijFixAgdOXJEvXr1UokSJRQeHq4vv/xSp06d0qeffprptkhLly5dNGvWLHXq1EkNGzZUs2bN1KBBA4WGhspsNjvsr6Ru3Lhh/wM8ucDAQHl7e6f53qNGjdJ9992nF198Ub/99pvmzZun8PBwffHFFwoKCtL999+vzZs368aNGwoODraXW7dunYKDg9W8efPMfWhJfn5+Klu2rMPVQz/88IMGDx6su+++W8OGDZMkrVq1Sv369dOHH36ohx56SFLiXCe9evWSt7e3evbsqUKFCmnDhg0aN26c/vrrL6d5doYNG6Y777xTI0aM0KVLlzRnzhwNGjRIW7dulZeXlyZNmqR3331XQUFBGjZsmO677z5J//Wd2rVra8yYMbpx44YWLVqkJ554ItX5C9MbX0REhHr06KG///5bPXv2VKlSpbR69Wo9/fTT9rrMZrPatWunzz//XH/++acqVqxoX7d27VqZzWa1bds20/vBJj3HZ1Kp9R2TySSr1arBgwdr79696tq1q0JDQ3X06FEtWLBA+/bt06JFi9LVR222bt0qk8nk0Ocef/xxRUREaOPGjXr++edVuXJl+x8BYWFhDn+AR0ZGatu2berUqZN9jr2EhAS98MIL6tevn8xmsxo0aKArV66oW7du8vLyUvfu3VW0aFEdP35cS5cu1aBBg/T999873No6Y8YMeXh4qGfPnvLw8NDcuXM1atQoVahQweH8smvXLn377bfq2bOnnnzySa1cuVIzZ85UkSJF1KNHD5ef+fr16+rSpYv+/fdfPfnkkypfvry2bt2qV155RRERES5vPZQSbz354Ycf9Nhjj6lq1araunWr/XhKasWKFXr55ZdVp04djR49WpGRkVq2bJm6d++uefPm6b777pPJZHJ5FVNUVJSWL1+ugIAAp1/DW7Rooe3bt+v48eOqUKGCyxiB/I6xHGO5pG7XsVxybdq00T///KOlS5faEyqZ4WpcFh0drTfffFO7du1yiHnDhg2KjY1Vhw4dshz/jz/+qP79+6tKlSp65pln5OXlpX379mnt2rX6+++/tXDhQoft/+///k/33HOPRo4cqdOnT2vRokU6cOCAVqxYYZ/e5pVXXtE333yjRx55RD179tTZs2e1aNEi7d69W19//XWKc0C6smPHDsXHx6tFixb2Za7avGHDhipWrJjCwsLUr18/+7aGYWj9+vVq1KiRihQpYl/+4osvqnv37ipevLjKly+v2NhY9ejRQ5cvX1aPHj1UunRpnTt3TkuWLNGwYcP03XffOdza+vXXXysmJkY9evRQgQIFtGjRIo0fP1533nmnQ6x//vmnnnnmGT322GPq0qWLNm3apIULF8rb29vlHJmS7HPuhYeH28c1+/fv1+TJk3Xx4kW98sorLsu98cYb+uqrr/TAAw+ob9+++vnnnx1+LLBJ798epUqVciqbkJCghQsXymw2q3bt2g7rWrRooUWLFmnv3r3ZeowhGxlADnvxxReNkJAQw2KxGOPHjzdq1KhhREVF2ddPmDDBePDBBw3DMIyuXbsa999/v0PZ++67zzhz5oxDnW+99ZYREhJihIeHG4ZhGG+88YZRtWpV4+LFiw7bjR8/3ggJCTF+//13wzAMY/fu3UZISIjRvn17IzY21r7dihUrjJCQEGPJkiXp+iyHDh0yLl++bP939uxZY/369cb9999v1KxZ0zh9+rS9TNu2bY2OHTsaVqvVoa6OHTsatWrVsr+2xbZo0SL7suXLlxshISHG9u3bMxT/6dOnjcqVKxvPPPOMkZCQYN9uzpw5RkhIiNGzZ0/DMAzj33//NUJCQozPPvvMIbYJEyYYXbp0MaKjo1Nsi2vXrtk//8aNG42QkBBj48aN9mU3btxItS3j4+ONd955x6hcubIREhJi/9e4cWNjwoQJxvXr1122fWr/li9fnup7Tps2zQgJCTGefvpph3aZOHGiERISYmzatMkwDMPYvHmzERISYnz99df2bSwWi1GrVi3jlVdeSfU97r//foc+7MoTTzxhVK9e3TAMw7BarUarVq2Mzp07O+zTmJgY47HHHjMaN25sxMTEGIZhGI8//rhRvXp149SpU/btrFarMWTIEIfjwdZvBgwY4PC+06dPN0JCQowdO3Y4xNu1a1f76z///NOoVKmS0a9fPyM+Pt6+/Ny5c0bNmjWNjh07plg2vfHZ4ti4caPD53300Ucd9uORI0eMkJAQY+rUqQ6f44EHHjD69OmTahv37NnTCAkJSXUbw0j/8ZnevmNr+w0bNjjUt2HDBiMkJMSYP3++YRiuj/eUPoer/mSL588//7QvGzZsmHHvvfcakZGR9mWrVq0yQkJCjH379jmUmzRpkkN9n376qcO50mbu3LlGSEiI8d133xmGYRhnzpwxQkJCjEaNGjkc43v27DFCQkKM999/377s/vvvN0JCQowDBw7Yl0VERBg1a9Y0Hn/8cfuypN8RhmEYkydPNkJCQoytW7fat0lISDCeeOIJo0GDBkZcXJxT+23bts0ICQkxPvzwQ4cyo0aNMkJCQoxp06YZhmEYN2/eNO677z5jyJAhDp/zxo0bRvPmzY3OnTs7tXXS+kaOHGmEhIQY06dPd1r/yy+/GCEhIcbixYtTrAPIrxjLMZZzxV3HcmmNIWzfhS+++KJ9WfL9nDRW23d18teu+kvysdWVK1eMqlWrGi+88IJDDH369DHatGmT6uewtXfyYy+5gQMHGo0bN3Y4pg3DMJ5++mkjJCTEuHLlisNnfPTRR+1jU8MwjIULFxohISHGF1984fC55s6d61Dfb7/9ZlSuXNl49913DcP4rx0nT56c5ueoWrWqw/GSNJ6kbf7uu+8aISEhDsfvvn37jJCQEGPVqlUO5Z599lmH+sLCwlyO4WzHxpw5c+zLQkJCjGrVqhnnzp2zL7N9nlGjRtmX2frSunXr7MtsY//GjRvblyXvG4sWLTJCQkKMhQsXOsQyatQoo2rVqsaVK1ec2u/YsWNGaGioMWbMGIcytnGVrb9m5G8PVyZNmmSEhIQYL730ktO6ixcvGiEhIcZ7772XYnnkLm4Bxi31wAMPyGKxaOfOnfZlGzZscHnLSEJCgjZt2qRatWrJ399fV65csf+z/Sqxbds2SYlPzPr+++9VvHhxe3mLxWK/4iX5ZcgPPPCAwxMnK1euLEnpviy9c+fOatiwof1fy5YtNXr0aN15551atmyZw5UjK1eu1BdffOHwK+iVK1cUFBSU6cuj04p/y5Ytslqt6tevn8MtLD169HC4iicoKEj+/v5atGiR1q9fb79F8cUXX9SyZctSfUhF0jYYOnSoJGno0KH2Zc8880yqn8HDw0Njx47V1q1bNW7cOLVo0UL+/v76559/NGfOHHXs2FEXL150Kjd58mTNnTvX5b8mTZqk1XSSEm8VSNouTz31lCTZb8tt2rSpChUq5HBL49atWxUZGenyltSMio+Pt7//4cOHdebMGbVu3Vo3b9609/GIiAg98MAD+ueff/T777/r33//1f79+9WuXTuHXx/NZrP9Fpfkt7M8/PDDDq/T08+3bNmihIQEDR482OEWxzvuuEMdOnRQeHi4zp4961QuI/Ft2rRJd911l8OtHN7e3urfv79DnaGhoQoNDXXYDwcPHtTJkyezZT9IGT8+0+o7GzZsUEBAgGrXru1wzqpdu7YKFCjgdNtcWk6fPp3u+bQ6dOig6Ohoh/dYt26dSpcu7XQ1QtOmTR1eDxgwQLt27VLVqlXty+Li4uztkrwtmjZtqqCgIPtr29VwyftW6dKlHZ5uGBAQoLvuuivVPrh161bdddddDr+em0wmvffee1qyZIlDv7SxtX/Pnj0dytj2j80PP/ygiIgIPfjggw77Jy4uTi1atNChQ4dcnncMw9Drr7+udevWqV69eho8eLDTNrZ+f/r06RQ/G+AOGMslYix3e4/lJDndJp4TChUqpKZNm2rTpk2KjY2VlNhH9uzZk22fY9asWVqzZo38/PzsyyIiIuyvo6OjHbbv27evw1WaXbt2lb+/v8NYSEqcCiTpMV+6dGlVrFgxU2OhkiVLOhwvKbFdEbl+/Xr7snXr1snPz89h3Ck5j4Uefvhh/fjjj/ZbuKXEW2oNw5AkpylfatasqTvuuMP+ukyZMipQoIDTOcjLy8vhimKz2axKlSrp8uXLKX6OrVu3yt/fX926dXNY/tJLL2nVqlUOYzCb7du3yzAMh7GQlLi/kkrv3x6uzJo1S5999pkqVKigl19+2Wl98eLF5evry1goD+MWYNxStWvXVpEiRbRp0ya1adNGhw4d0tmzZ10OGq9cuaKbN29qx44datiwocv6zp8/LynxCzgiIkJz587VkSNHdPr0aZ05c8Y+R0LS+aYkOd0akvTWuPSYPHmyihYtKqvVql9++UWff/657r33Xk2ePNlh4Gqr+9ixY1qzZo3++usvnT59Wn///Xe63iclacVvO+mWL1/eYTtvb2+HAa23t7feeustvfrqq3ruuefk6empmjVrqnXr1urSpYvLLxebyZMn2+fsOnLkiCZOnKgXX3zR/gSrpLdbpKZEiRLq1auXevXqpbi4OO3evVtTpkzR77//rilTpujdd9912P6+++7L8pPjkk8gXKJECfn5+encuXOSEtvz4Ycf1ldffaUrV66ocOHCWrt2rUqWLKm6detm6b0l6dq1a/Z9aNtXU6dO1dSpU11uf/78eXvSI/k+lWS/3dAWv03S2xyk9PVzW3LP1STLSd8n+T6wvXd64jt16pTLdnT1nh06dNDkyZN15MgRVapUSWvXrpWPj48eeOCBFD9DRmT0+Eyr75w6dUqRkZEpnrOS76O0XLt2LdXjMKnmzZurQIECCgsLU7t27XT16lX98MMP6t+/v9MfKcn7hpTYL2bOnKmDBw/qzJkzOnXqlH3OocyeQ13dhufl5ZVqHzx37pzL/lG6dOkUy5w9e1Z+fn5OT05Mvr9OnTolSSneciMlHm9JH/wRGxurF198UWFhYapevbpmzZrl8o8Q235y9XAEwJ0wlmMsl5y7jeV8fHwkJf5gm3SOMxtbn8zIlB5Z0aFDB23ZskXff/+9WrdurbCwMFmtVrVv3z5b6vfw8NDFixc1a9YsHTt2TKdPn9a5c+fsia/kx1Tytvf29lapUqXsY0jbd23SpFdS6UnkJZWRsVCVKlV0zz33KCwsTIMGDZLVatW3336rVq1ayd/f32FbV2MhLy8vffHFF9q/f79Onz6tkydP2ufqs7WHTXrHOEFBQU6fOT1joVKlSjmVK1asmIoVK+ayjK39k/9wXKRIERUsWND+Or1/eyT98dgwDE2aNElz5sxR2bJlNWfOnBT3SVBQEGOhPIwEIG4ps9msli1bauPGjYqPj9eGDRtUpkwZp7mUpP++bFq2bOly7gJJ9gHa999/r2eeeUaFChVSw4YNVa9ePVWrVk1Hjx51GnTY4siKpAOXpk2bqnbt2ho4cKB69+6tr776ymHANGXKFM2aNUuhoaGqVauWHnroIdWsWVOzZ892OWF/eqQVv+2P9vQMTNq3b69mzZpp8+bN+v7777Vr1y7t27dP8+fP1/Lly1OcRyfpnA+25JRtwu60/PLLL9qwYYN69+7t8MuZl5eXvT1btmzp8GSp7OSq/RISEhwGeR07dtSiRYu0ceNGtWvXTtu3b1evXr2y3HciIiJ05swZtWrVyv6+UuL8ZSkNSCtWrGj/A8mV+Ph4Sc77OzO/TCcf3CSV2oA3tXLJ44uPj0/3oPmRRx7R+++/r7CwMIWGhmr9+vW6//77Ha5+yIqMHp9p9Z2EhASVLl06xUm5bX9UpJfZbLa3e1q8vb310EMP6ZtvvlFERIQ2bNiguLg4l1cIJP8chw8fVs+ePeXl5aVGjRqpffv2qlKliiIjIzVy5Mg0y6cWf0ZZrdYMt5Pkug8mX2Z7/dprr7lMVkuOf9hER0dr2LBh2rlzp+rUqaPZs2en2Pds+8nVFYqAO2Esx1hOcu+xXIECBSQljtmSJk5sbA9+sW2X01q2bKmgoCCtX7/engCsXr16it9jGbVs2TKNGzdO5cqVU506ddS8eXNVr15dGzdu1Ny5c522T6ntbckqwzDk4+Ojjz/+OFviy8hYSEpMmL7//vv666+/dP78eV2+fNnlXInJP8f58+f1xBNP6ObNm2rcuLFatWqlypUrq3DhwnryySfTLJ9a/BlltVodrsjMCFfjoaTJxvT+7ZE0lnHjxmnFihWqUKGC5s6d6/BDqavYGQvlXSQAccu1adNGy5Yt0969e7Vx48YUr+QpXLiw/Pz8FBsbq0aNGjmsu3Llivbu3aty5cpJSpyMtmTJklq5cqXDH2c//fRTzn2QJJo0aaIhQ4boo48+0rhx4zRt2jRJib/ezJo1Sw8//LA+/PBDh4RMapd9Z5WtXU6cOKHq1avbl1utVp07d87+y25ERISOHDmie+65R507d1bnzp1ltVr1ySefaMqUKVq3bl2KA/asOHPmjObOnau77rrL5dPh/P39Vbp0aXviKLudPXvWfquNlLifYmJiHG5drVmzpsqVK6eNGzcqKCgo2yZaDgsLk2EY9gSg7aomPz8/p35+9OhRXbhwQX5+fvY/Ulw9ycu2rGTJklmOz/Y+x48fd7qaKrX3yUh85cqV08mTJ522s/1inFSJEiVUv359+9PfLl68mG23vGTm+Eyr75QpU0a//PKL6tWr53TVQFhYmO66664MxVi0aFGXTyNOSYcOHbR06VJ9//332rRpkypXruwwiEvJhAkTJCU+YCXpL8tJn7x7q9xxxx0u+8LWrVv17bffatSoUU7rypYtq+3bt+vChQsOE1YnvwXFdrwVLFjQ6Xg7cOCAIiIi7LfLxcfHa/jw4dq5c6datGihqVOnpnor3bVr1yTJ6bgB3BFjuUSM5dxzLGf73vzjjz9Ur149p/VHjhyRJIWEhGT1Y6SLj4+PHnzwQX377be6cOGCDhw4YH8CblbFxMTo7bff1n333af58+c7XHG2dOlSl2XOnj1r73+2Oi5cuKDGjRtLSvyu3blzp+655x6nq9W2bNniMqmamqJFi+rEiRPp3v6RRx7RBx98oE2bNun8+fMqVKiQPbbUTJ8+XZcuXdKaNWt0zz332Jdnx9PFM6p06dL69ddfnZJpv/32m7744gsNHDjQ6QdJW98/ceKEw9WN165dc3gieHr/9rB5/fXXtWLFClWvXl2ffvppqg9wMQxDN27cYCyUhzEHIG65hg0bKjAwUHPnztXx48ftc8Ak5+npqebNm2vXrl367bffHNZNmzZNI0aM0J9//ikp8cRWqlQphxPh1atXtWrVKknK0K9GmfXMM8+oUqVK+u677+zzTtj+cK9QoYLDgPHAgQM6cOCApP+ujrKd3NN760pq2rRpI7PZrEWLFjksX7FihcMXwOHDh9WjRw999dVX9mUeHh6qVq2aQ0zZzfZL5qxZs1zOJ/fbb78pPDzcaa6O7LJ48WKH159//rkk51sVOnTooD179mj9+vW65557HAY7mXHu3DlNmTJFpUuXtt+2Ua1aNRUvXlxffvmlbt68ad/WdtvhiBEjFB8fr6JFi6pmzZoKCwtzSGokJCTok08+kSSHOUvSy2w2O/S5Vq1ayWQy6ZNPPnFYfv78ea1Zs0ZVq1Z1+USwjMT3wAMP6NixYw5/1CUkJGjBggUuY+zYsaP++usvffHFFypQoICaNWuW4c/pSkaOT5u0+k7Lli0VFRWl+fPnO2wXFhamkSNHau3atRmK8Y477tCFCxecltt+TU7+K2/t2rVVpkwZhYWF6aeffkp3svTatWsqWLCgw4DNYrFoyZIlkm7NOdTm/vvv1x9//OHQPwzD0Jw5c7R161aXt+zY2j/50y6T96nGjRvL19dXn3/+uX0uJSnx848YMUJjx461n/emT5+uHTt2qGXLlpoxY0aqyT/pv9sYU7tVGXAXjOUYy7nzWK5Vq1Yym82aPXu20zjAYrHoyy+/VGBgoENSKaXv5YxKPi6z6dixoyIiIvTee+/JbDarXbt2WXofG4vFoujoaJUrV84h+XfmzBlt2bJFkvOxZxsb2CxcuFAWi8Xe9rYfuZNfAXjgwAE988wz+uKLLzIU4x133KHLly87fG9LKbd5qVKlVLduXftt023btnV5K3dy165dk7e3t0MS2Wq12scSOZXMdqVFixa6efOm1qxZ47B80aJFCgsLc3kbcKtWreTh4aHPPvvMoU2Sj4XS+7eHlHh16LJly1SjRg3Nmzcvzac3X7p0SfHx8Q5XBSNv4QpA3HLe3t5q3ry51q1bp5IlS6pGjRopbjtmzBjt2bNHTz31lLp3765y5cpp9+7dCgsLU4sWLeyTt7Zo0UJr167Vyy+/rFq1aunvv//WsmXL7FdkJJ+0NSd4eXnpnXfeUbdu3TR+/Hg1bNhQFStWVOnSpTVnzhxZrVaVLl1aR48e1bJly+Th4aH4+HhFRkaqQIEC9j9q161bJ29vb3Xu3DnTsZQtW1Z9+vTRnDlzdOXKFTVr1kx//fWXvvrqK4cv9zp16ui+++7T1KlTdeHCBVWuXFn//POPvvzySxUrVkxt27ZN8T02bdrk0K6TJk3S33//bR+oFy1aNMVf24KCgjR58mQNHz5cjzzyiB555BFVqVJFJpNJBw8e1OrVq1W1alUNGDDA5fum9uXTokWLNG/J2LBhg6KiolS3bl17f+rYsaPTr7wdOnTQ9OnTtWHDBpdXHaUkKirK3g5S4m2Ex44d0+rVqyUlDohst/R4eXnptdde07PPPquOHTuqW7duCgoK0sqVKxUeHq4xY8bYP+8rr7yi3r17q2vXrurRo4cKFSqkDRs26KefflLfvn0zlaAsWrSojh49qi+//FL169dXxYoV1a9fP33++efq2bOnHnroId24ccP+B8jrr7+eYl3pja9fv35avXq1Bg4cqJ49e6pUqVL69ttvdfDgQUnOty63adNG//d//6e1a9fq8ccfz9CcO6+99prL5Q8//LBq166d7uPTJq2+07VrV61evVoTJ05UeHi4ateurVOnTunLL79U6dKlnR50kpaGDRtq9+7dunTpksOcVLZE3dy5c9WyZUv7YNtkMumRRx7RrFmzZDab0z0/UIsWLTR79mwNGzZMzZs317Vr17R8+XJ78vFWnENtBg0apO+++87eP8qUKaPNmzfrp59+0rvvvutyEF+/fn21b99eX375pa5cuWLfP3v37nXYrlChQho9erTefvttdenSRR07dpSHh4eWLFmiS5cu6YMPPpCnp6cuX76sOXPmyNPTU02aNHGYRN6mYcOGDvvk119/lSSnX9MBd8RYjrGcO4/lQkJC9PTTT2vmzJnq0qWL2rVrp8KFC+vvv//W6tWrdfbsWb377rsOn8H2vbx06VLduHEj03cruBqXSVLdunV1xx13aO3atWrSpEmGrrD68MMPFRAQ4LS8YcOGevjhh1WrVi2tXr1aBQoUUMWKFXXy5EktW7bMnnBLfuz9/vvvGjRokFq1aqVDhw7pq6++Ur169exXVzZv3lwPPPCAFi5cqHPnzqlp06a6fPmyFi5cqODgYI0YMSJDbdKwYUMtX75chw4dUq1atRzaSnLd5h06dNC4ceMkKd37okWLFtqyZYsGDBigdu3ayWKxaM2aNTp27JjLdshJjz/+uL755hu9/PLL+vXXXxUaGqq9e/dq7dq1GjZsmIoUKeKUeC9btqwGDBig2bNna8CAAWrZsqUOHTqkb7/91mFqlfT+7REbG6spU6ZISkz4b9682SnOe++91+HuFtuPIul9mA9uPRKAyBVt2rTRunXr1KZNm1TnKbM9iW3atGlauXKlbt68qTvuuEPDhw/XgAED7L/8vP766woICNCWLVu0bt06lShRwj7fTLt27bRr164UJ6LNTlWrVlW/fv30ySef6N1339XEiRP16aefasKECVq0aJF94Dhs2DCVLl1aI0eO1K5du/Twww+rfPnyeuqpp/T111/rnXfeSdf8K6l5/vnnVahQIX311Vf64YcfVL58eU2bNk2vvvqqPYFiNpv10Ucf6aOPPtLWrVu1bNkyBQUFqVGjRnr22WdTvUT/nXfeSfWBBvXq1Uv1cvv7779fq1ev1ty5c7V7926tXr1aJpNJ5cqV07Bhw9SnTx+XiR5X8wAltXLlyjQHjbZ9Mn78eBUpUkQjRoywP6k2qbJly6pWrVo6cOBAhiZavnr1ql544QX7ax8fH5UqVUrt27fXgAEDnK4QatOmjebNm6dZs2bpk08+kWEYuvvuuzVp0iR17NjRvl2NGjW0dOlSTZ06VQsWLFBsbKwqVqyod999V48++mi640tqxIgRGjdunN59910NHTpUFStW1AsvvKDy5cvryy+/1OTJkxUQEKB69epp+PDhDrdEJJfe+AIDA7Vw4UJNnDhRS5culdVqVdOmTfXaa6/p5ZdfdtrvgYGBatWqldauXZvh27BTun3l7rvvVsOGDdN9fNqk1Xe8vb01d+5czZo1S+vXr9f69etVtGhRtW/fXsOHD3d59VpqWrRooQ8//FD79u1z+COubdu22rBhg1avXq1ffvnFngCUEq8SmDVrlurVq5fqHC1JDRs2TAkJCVq3bp127NihokWL6r777tOnn36qxx57TLt27VKfPn0yFHtmFS5cWEuWLNGUKVO0YsUKRUdHq0KFCpo+fXqqD3+ZOHGi7r77bi1fvlxbtmxRtWrV9PHHH+vxxx932K53794qVaqUPv/8c02fPl1eXl4KCQnR2LFj1bx5c0nS/v377X/4vPnmmy7f79NPP3VIAO7bt08hISFcAYjbBmM5xnLuPJYbMWKEqlSposWLF2vevHm6fv26ihQponvvvVcTJkxwSERJUoMGDdS+fXtt2rRJ+/bty/TDylyNy6T/fuCbPXt2hpOLKd194OPjo4cfflhTp07VhAkTtHr1alksFpUsWVKPP/64mjdvrh49emjXrl0Oc3y+//77mj9/vt555x0FBASod+/eGjlypMPVph9++KHmzJmjlStX6t1331XBggXVoEEDPfvss/aHw6VX06ZN5eHhob179zq0u6s2tyW6HnroIb311lsqXry4075KSbdu3XTz5k0tXbpUb7/9tgoXLqxq1arp7bff1vPPP39LbwX29vbWF198oWnTpum7777T8uXLVa5cOb355ptOTwZOatSoUSpRooQWLFigCRMmqEKFCvYfeJNKz98ex48ftz/R2JYITO6NN95wSADu27dPwcHB6W5z3HomI6vXKQPIc6KiomQYhtOvfYZhqGbNmnrwwQc1adKkXIouf3niiSfk5eWV4u2pyLgrV66oQIECTrcl2W6TnTdvntPTIkePHq39+/dr8+bNmXq4SX7WpUsXFStWTLNmzUrX9idOnNBDDz2UpcQwMub69etq0qSJnn/+efXu3Tu3wwHgBhjLZR93Gct98MEHWrBggXbu3Onyij539uyzz+rEiRP2u2nSEhERoUaNGmngwIEaPnx4DkcHKfF26ebNm6tdu3bZNkclsh9zAAJu6PDhw7rvvvu0fPlyh+VbtmyRxWJJ9VYd/Ofw4cPav3+/HnvssdwOxa289957qlOnjiIiIhyWr1+/Xp6enk5Pkrx48aI2b96sxx577LZL/knSgAEDtGPHjnRPNr9o0SIFBgamOCcXst/atWvl7++vLl265HYoANwEY7ns4S5jucjISK1atUoPP/zwbZf8kxLHQkePHtXhw4fTtf3XX3+tuLi4LN2Gj4zZuXOnrl27dsvuGEHmcAsw4IZs8zG88847OnXqlO68806dOnVKixcvVoUKFfL9ICinrV69Wlu2bNGPP/6oMmXKpDp/DjLukUce0YoVK9SrVy917txZXl5e2rFjhzZv3qxhw4bZb/v54Ycf9PXXX+vnn3+Wl5eXunfvnsuR544HHnhAVapU0WeffaYXX3wxxe1ee+01nTt3Tjt37tSQIUPk7+9/C6O8fcXFxenzzz/XM888Q5sDyDaM5bLGXcZyR44c0ezZs3X48GFdvnxZ/fr1y+2QckX16tX10EMP6eOPP7Y/oduVDz/8UH/88Yf94R9lypS5hVHe3j7++GM9+eSTLh8WiLyDBCDghry8vDR//nzNnDlTa9as0b///qsiRYqoc+fOGj58uMOj3eHM09NT27dv15133qlJkyZl6KETSFvDhg31+eefa/bs2Zo5c6ZiY2NVvnx5vfPOOw5/0Pj6+mrnzp0qWLCgJk6cqMKFC+di1LnHbDZr/PjxevLJJ9WnT58U5/W7evWqfv75Z3Xu3FlDhw69xVHevr766isVLlxYvXr1yu1QALgRxnJZ4y5jucDAQO3evVseHh6aMGGCfU7A29Grr76qdu3a6dChQ6patarLbaKjo/Xjjz+qSZMmKT4IDtlv+/bt+vvvv+1P40bexRyAAAAAAAAAgBtjDkAAAAAAAADAjZEABAAAAAAAANwYCUAAAAAAAADAjZEABAAAAAAAANwYCUAAAAAAAADAjZEABAAAAAAAANxYvk8AXrx4UXXr1tWuXbscll++fFkvvPCCGjRooFq1amnIkCE6ffq0U/mFCxfqwQcfVI0aNdS+fXutWbPmVoUOAAAAAAAA5Lh8nQC8cOGC+vbtqxs3bjgst1qtGjBggPbs2aOXXnpJb731lk6ePKnevXsrIiLCvt3cuXM1fvx4Pfjgg5o2bZqqVq2qMWPGaOPGjbf6owAAAAAAAAA5wjO3A8iMhIQErVq1ShMnTpRhGE7rv/32Wx0+fFgrVqxQ1apVJUl169ZVmzZttHjxYg0cOFAWi0WzZs1Sz549NWrUKElSixYtdP36dX344Ydq06bNLf1MAAAAAAAAQE7Il1cAHj16VK+99po6deqkSZMmOa3fsWOHypQpY0/+SVKJEiVUu3Ztbdu2TZL066+/6vr163rwwQcdyrZt21bHjx/XmTNncvQzAAAAAAAAALdCvkwAlipVShs3btRLL70kX19fp/XHjx9X+fLlnZaXLVtWx48ft28jyWm7cuXKOazPqKNHj+ro0aOZKgsAAICUMc4CAADInHx5C3DBggVTXX/z5k2VKVPGaXlgYKB9DkDbf4OCgpy2Sbo+o2JjY2UYhq5du+aw3NvbW/7+/rJarbp586ZTOdtnioiIUHx8vMM6f39/eXt7KyYmRtHR0Q7rPD09FRgYKMMwdP36dad6g4ODZTabFRkZqbi4OId1fn5+8vHxUWxsrKKiohzWeXh42Nvm+vXrTrdaBwUFycPDQ1FRUYqNjXVY5+PjIz8/P8XHxzu1o9lsVnBwsCTpxo0bSkhIcFgfGBgoT09PRUdHKyYmxmFdam1oMplUoEABSYn732q1OqxPrQ29vLwUEBCghIQEp/kkJalAgQIymUwu901qbWjbN5Kc+oOUehv6+vrK19dXcXFxioyMdFiXtA1d7ZvU2tC2bzLThgEBAfLy8pLFYpHFYnFYl5U2tO2b1NowM/07tTZMb/9OrQ1d9e+kbeiqf6fWhpwjEnGO+A/niEScIxLl93OE7XNnFeMszqE2nEP/wzk0kTufQzlHcI7gHJGIc0SizI6z8mUCMC2GYchkMrlcZ1tu6wxpbZcZJpPJKbFoq89sNjutS8rPz89pmdmceKGml5eXPD1T3mWu6rW9r+0AdLXOy8sr1ZhsJ05XMfn6+srHx8dlvUk7pSsBAQEp1uvj4yNvb2+X9abVhv7+/inWm1obutpvSbnaN+ltQ1fr0tOGnp6emd43OdWG3t7e8vLycllvVtowrc+aWv/28/NLsX/nVBtmpX+n1oacI/7DOYJzRNKynCPc6xyRFYyzOIcmxzk0EefQ2+ccyjnCMSbOEZwjkrvdzxEpccsEYFBQkMsr+CIiIuwNZ/tvRESEChcu7LCNlPXBqoeHh8vlJpMpxXWplZP+61jZXW9ejCm/1ZsXY7qd6s2LMblTvXkxpvxWb16M6XaqNy/G5E71ZqVsZjHOur3qzYsx3U715sWY3KnevBhTfqs3L8Z0O9WbF2Nyp3qzc5yVL+cATEv58uV16tQpp+WnTp1ShQoVJEl33323JOnkyZMO29he27YDAAAAAAAA8jO3TAA2bdpUJ0+eVHh4uH3ZxYsX9csvv6hp06aSpPvuu08BAQH69ttvHcquX79e5cuXdzmHIAAAAAAAAJDfuOUtwA8//LA+/fRTDRw4UCNHjpSvr6+mT5+uIkWKqHv37pIS7ycfPHiwPvzwQ3l4eKhevXr69ttvtW3bNk2bNi2XPwEAAAAAAACQPdwyAejl5aXPPvtM77zzjt555x2ZTCbVrVtXY8eOdZg8cdCgQTKbzVq8eLEWLlyou+66Sx988IEeeOCBXIweAAAAAAAAyD4mI/kzl5ElBw8elCRVr149lyMBAABwL4yzAAAAMsct5wAEAAAAAAAAkIgEIAAAAAAAAODGSAACAAAAAAAAbowEIAAAAAAAAODGSAACAAAAAAAAbowEIAAAAAAAAODGSAACAAAAAAAAbowEIAAAAAAAAODGSAACAAAAAAAAbowEIAAAAAAAAODGSAACAAAAAAAAbowEIAAAAAAAAODGSAACAAAAAAAAbowEIAAAAAAAAODGSAACAAAAAAAAbowEIAAAAAAAAODGSAACAAAAAAAAbowEIAAAAAAAAODGSAACAAAAAAAAbowEIAAAAAAAAODGSAACAAAAAAAAbowEIAAAAAAAAODGSAACAAAAAAAAbowEIAAAAAAAAODGSAACAAAAAAAAbowEIAAAAAAAAODGSAACAAAAAAAAbowEIAAAAAAAAODGPHM7gJywZ88e9e7dO8X1w4YN0/Dhw/Xmm2/qyy+/dFo/evRoDRo0KCdDBAAAAAAAAG4Jt0wAVqlSxWVib/r06Tp48KDatm0rSQoPD1fTpk01ZMgQh+3KlClzS+IEAAAAAAAAcppbJgCDgoJUp04dh2WbN2/W7t279eGHH6pChQoyDENHjx7VkCFDnLYFAAAAAAAA3MVtMQegxWLR+PHj1bx5c/vVf6dPn1ZkZKQqVaqUy9EBAAAAAAAAOcctrwBMbt68ebp48aLmzZtnXxYeHi5J2rBhg1577TX9888/uueeezRy5Eg1b948y+9ptVodXptMJpnNZhmGoYSEBKftPTw8XJaTJLPZLJPJpISEBBmG4bJsSvXayrqqN6diym/12srShjlXb3raMCv7Ji991rxWr60s/Zs2zMv1co7IvXptZXO6f9v+P7swzso/9drK0oacQ92xXltZ+jdtmJfr5RyRe/XayuaVcZbbJwBjY2O1YMECtW3bVuXKlbMvtyUAr169qnfeeUcWi0Xz58/XkCFDNHv2bDVr1izT72kYhm7evOmwzNvbW/7+/kpISHBaJ0kFCxaUJEVHRys+Pt5hnb+/v7y9vRUXF6fo6GiHdZ6engoMDJQkl/UGBwfLZDLJYrEoLi7OYZ2fn598fHwUFxenqKgoh3UeHh4KCgqSJEVERDh15KCgIHl4eMhisSg2NtZhnY+Pj/z8/GS1WhUREeGwzmw2Kzg4WJIUGRnp1JEDAwPl6empmJgYxcTEOKxLrQ1NJpMKFCggSYqKinI6gFJrQy8vLwUEBLjcb5Ls9braN6m1YVr7JrU29PX1la+vr+Lj4xUZGemwLmkbuto3qbWhbd9kpg0DAgLk5eWl2NhYWSwWh3VZaUPbvomPj89wG9r6d3R0tFP/Tq0N09u/U2tDV/07aRu66t+ptSHniEScI/7DOSIR54hE+f0cYfvc2YFxFudQiXNoUpxDE7nzOZRzBOcIzhGJOEckyuw4y2S4SlG6kZUrV+rFF1/UqlWrHG73PXPmjI4fP65mzZrJbE68EzouLk4dOnSQv7+/li9fnqn3O3jwoKTEB5Ekld8zyhmJKb/VaytLG/KrkzvWaytL/6YN83K9nCNyr15b2bzyy3RaGGflv3ptZWlDzqHuWK+tLP2bNszL9XKOyL16bWXzyjjL7ROATz/9tE6fPq1169ala/u3335bixYt0qFDhzL1fraBafXq1TNVHgAAAK4xzgIAAMgct34ISGxsrH744Qc99NBDTuu+++47bdq0yWl5TEyMChUqdCvCAwAAAAAAAHKcW88BeOTIEcXExKh27dpO69auXau9e/eqQYMG9nuyIyMjtXXrVtWvX/9WhwoAAAAAAADkCLe+AvDo0aOSpIoVKzqtGzx4sCIjIzVgwABt3LhRYWFh6tWrl6Kjo/Xss8/e6lABAAAAAACAHOHWCcDLly9LkssnolSrVk0LFiyQr6+vXn75ZY0bN07FixfX4sWLVbZs2VsdKgAAAAAAAJAj3P4hILcak1MDAADkDMZZAAAAmePWVwACAAAAAAAAtzsSgAAAAAAAAIAbIwEIAAAAAAAAuDESgAAAAAAAAIAbIwEIAAAAAAAAuDESgAAAAAAAAIAbIwEIAAAAAAAAuDESgAAAAAAAAIAbIwEIAAAAAAAAuDESgAAAAAAAAIAbIwEIAAAAAAAAuDESgAAAAAAAAIAbIwEIAAAAAAAAuDESgAAAAAAAAIAbIwEIAAAAAAAAuDESgAAAAAAAAIAbIwEIAAAAAAAAuDESgAAAAAAAAIAbIwEIAAAAAAAAuDESgAAAAAAAAIAbIwEIAAAAAAAAuDESgAAAAAAAAIAbIwEIAAAAAAAAuDESgAAAAAAAAIAbIwEIAAAAAAAAuDESgAAAAAAAAIAbIwEIAAAAAAAAuDESgAAAAAAAAIAb88ztAHKKYRiqXbu2IiMjndbt3LlTxYoV0+XLlzVx4kR9//33iomJUf369fXyyy+rbNmyuRAxAAAAAAAAkP3cNgF4+vRpRUZG6pVXXlGVKlUc1hUsWFBWq1UDBgzQlStX9NJLL8nT01MzZsxQ7969tXbtWgUGBuZS5AAAAAAAAED2cdsEYHh4uCSpbdu2Klq0qNP6devW6fDhw1qxYoWqVq0qSapbt67atGmjxYsXa+DAgbc0XgAAAAAAACAnuO0cgOHh4SpatKjL5J8k7dixQ2XKlLEn/ySpRIkSql27trZt23aLogQAAAAAAAByltteAXjkyBEFBgbq6aef1p49e2QYhlq0aKGxY8eqePHiOn78uMqXL+9UrmzZsvruu++y/P5Wq9XhtclkktlslmEYSkhIcNrew8PDZTlJMpvNMplMSkhIkGEYLsumVK+trKt6cyqm/FavrSxtmHP1pqcNs7Jv8tJnzWv12srSv2nDvFwv54jcq9dWNqf7t+3/swvjrPxTr60sbcg51B3rtZWlf9OGeblezhG5V6+tbF4ZZ7ltAjA8PFxXrlxR165d1b9/fx07dkzTp09Xr1699M033+jmzZsqU6aMU7nAwEBFRERk6b0Nw9DNmzcdlnl7e8vf318JCQlO66TEeQklKTo6WvHx8Q7r/P395e3trbi4OEVHRzus8/T0tM9X6Kre4OBgmUwmWSwWxcXFOazz8/OTj4+P4uLiFBUV5bDOw8NDQUFBkqSIiAinjhwUFCQPDw9ZLBbFxsY6rPPx8ZGfn5+sVqtTW5rNZgUHB0uSIiMjnTpyYGCgPD09FRMTo5iYGId1qbWhyWRSgQIFJElRUVFOB1Bqbejl5aWAgACX+02SvV5X+ya1Nkxr36TWhr6+vvL19VV8fLzTg2yStqGrfZNaG9r2TWbaMCAgQF5eXoqNjZXFYnFYl5U2tO2b+Pj4DLehrX9HR0c79e/U2jC9/Tu1NnTVv5O2oav+nVobco5IxDniP5wjEnGOSJTfzxG2z50dGGdxDpU4hybFOTSRO59DOUdwjuAckYhzRKLMjrNMhqsUpRvYu3evAgICHB4Asm/fPvXo0UOvvfaa5s+fr6pVq+qDDz5wKDd58mTNnz9fBw8ezNT72solf/BIfs8oZySm/FavrSxtyK9O7livrSz9mzbMy/Vyjsi9em1l88ov02lhnJX/6rWVpQ05h7pjvbay9G/aMC/Xyzki9+q1lc0r4yy3vQKwbt26Tsvq1Kmj4OBghYeHKygoyOWVfhEREfZMalaktANMJlOqOye1dWZzylM2ZqXevBhTfqs3L8Z0O9WbF2Nyp3rzYkz5rd68GNPtVG9ejMmd6s1K2cxinHV71ZsXY7qd6s2LMblTvXkxpvxWb16M6XaqNy/G5E71Zuc4yy0fAnLlyhUtWbJEf/31l8PyhIQExcbGqlChQipfvrxOnTrlVPbUqVOqUKHCrQoVAAAAAAAAyFFumQD09PTUm2++qblz5zos37RpkywWi+rXr6+mTZvq5MmTCg8Pt6+/ePGifvnlFzVt2vRWhwwAAAAAAADkCLe8BTg4OFhPPfWU5s6dq8DAQDVq1EhHjhzRRx99pBYtWqhJkyaKi4vTp59+qoEDB2rkyJHy9fXV9OnTVaRIEXXv3j23PwIAAAAAAACQLdz2ISBWq1ULFizQsmXLdObMGRUuXFjt27fXsGHD5OvrKynxir933nlHO3fulMlkUt26dTV27FiVLVs20+9rm5y6evXq2fI5AAAAkIhxFgAAQOa4bQIwtzAwBQAAyBmMswAAADLHLecABAAAAAAAAJCIBCAAAAAAAADgxkgAAgAAAAAAAG6MBCAAAAAAAADgxkgAAgAAAAAAAG6MBCAAAAAAAADgxkgAAgAAAAAAAG6MBCAAAAAAAADgxkgAAgAAAAAAAG6MBCAAAAAAAADgxkgAAgAAAAAAAG6MBCAAAAAAAADgxkgAAgAAAAAAAG6MBCAAAAAAAADgxkgAAgAAAAAAAG6MBCAAAAAAAADgxkgAAgAAAAAAAG6MBCAAAAAAAADgxkgAAgAAAAAAAG6MBCAAAAAAAADgxkgAAgAAAAAAAG6MBCAAAAAAAADgxkgAAgAAAAAAAG6MBCAAAAAAAADgxkgAAgAAAAAAAG6MBCAAAAAAAADgxkgAAgAAAAAAAG6MBCAAAAAAAADgxtw2AWi1WjV//ny1b99eNWvWVOvWrfXuu+8qIiLCvs2bb76p0NBQp3+ffPJJLkYOAAAAAAAAZB/P3A4gp0yZMkVz585V//79VadOHf3111+aOXOmDhw4oMWLF8tsNis8PFxNmzbVkCFDHMqWKVMml6IGAAAAAAAAspdbJgCjo6M1d+5cPfXUUxo5cqQkqWnTpipSpIhGjx6tPXv2qEGDBjp69KiGDBmiOnXq5HLEAAAAAAAAQM5wy1uAb9y4oUcffVQPP/yww/KKFStKki5duqTTp08rMjJSlSpVyo0QAQAAAAAAgFvCLa8ALFGihN58802n5Zs3b5YkhYaGKjw8XJK0YcMGvfbaa/rnn390zz33aOTIkWrevHmWY7BarQ6vTSaTzGazDMNQQkKC0/YeHh4uy0mS2WyWyWRSQkKCDMNwWTalem1lXdWbUzHlt3ptZWnDnKs3PW2YlX2Tlz5rXqvXVpb+TRvm5Xo5R+RevbayOd2/bf+fXRhn5Z96bWVpQ86h7livrSz9mzbMy/Vyjsi9em1l88o4yy0TgK4cOHBAn3zyiVq2bKlKlSpp/fr1kqSrV6/qnXfekcVi0fz58zVkyBDNnj1bzZo1y/R7GYahmzdvOizz9vaWv7+/EhISnNZJUsGCBSUl3r4cHx/vsM7f31/e3t6Ki4tTdHS0wzpPT08FBgZKkst6g4ODZTKZZLFYFBcX57DOz89PPj4+iouLU1RUlMM6Dw8PBQUFSZIiIiKcOnJQUJA8PDxksVgUGxvrsM7Hx0d+fn6yWq0OD12REjt4cHCwJCkyMtKpIwcGBsrT01MxMTGKiYlxWJdaG5pMJhUoUECSFBUV5XQApdaGXl5eCggIcLnfJNnrdbVvUmvDtPZNam3o6+srX19fxcfHKzIy0mFd0jZ0tW9Sa0PbvslMGwYEBMjLy0uxsbGyWCwO67LShrZ9Ex8fn+E2tPXv6Ohop/6dWhumt3+n1oau+nfSNnTVv1NrQ84RiThH/IdzRCLOEYny+znC9rmzA+MszqES59CkOIcmcudzKOcIzhGcIxJxjkiU2XGWyXCVonQze/bs0dChQ1WyZEktXLhQBQsW1JkzZ3T8+HE1a9ZMZnPindBxcXHq0KGD/P39tXz58ky918GDByVJVapUcVie3zPKGYkpv9VrK0sb8quTO9ZrK0v/pg3zcr2cI3KvXlvZvPLLdFoYZ+W/em1laUPOoe5Yr60s/Zs2zMv1co7IvXptZfPKOMvtE4ArVqzQa6+9ppCQEH366acqUqRIqtu//fbbWrRokQ4dOpSp97MNTKtXr56p8gAAAHCNcRYAAEDmuOVDQGymTZumsWPHqkGDBlqwYIFD8u+7777Tpk2bnMrExMSoUKFCtzJMAAAAAAAAIMe4bQLwk08+0cyZM9WlSxfNnj1bAQEBDuvXrl2rcePGOdw3HhkZqa1bt6p+/fq3OlwAAAAAAAAgR7jlQ0BOnjypqVOn6u6771bnzp21f/9+h/V33XWXBg8erG3btmnAgAHq37+/4uLi9Nlnnyk6OlrPPvtsLkUOAAAAAAAAZC+3TABu3LhR8fHx+uuvv9SjRw+n9ePHj1fXrl21YMECTZkyRS+//LKsVqvq1auniRMnqmzZsrkQNQAAAAAAAJD93P4hILcak1MDAADkDMZZAAAAmeO2cwACAAAAAAAAIAEIAAAAAAAAuDUSgAAAAAAAAIAbIwEIAAAAAAAAuDESgAAAAAAAAIAbIwEIAAAAAAAAuDESgAAAAAAAAIAbIwEIAAAAAAAAuDESgAAAAAAAAIAbIwEIAAAAAAAAuDESgAAAAAAAAIAb88xK4ZYtW8pkMqW43mQyydvbW0WKFFGNGjXUr18/FSlSJCtvCQAAAAAAACADsnQFYMOGDRUREaFz587Jx8dHlStXVuXKleXv769z587p33//VXBwsC5fvqw5c+aoU6dOunjxYnbFDgAAAAAAACANWUoAVq9eXVFRUZoxY4bCwsI0Y8YMzZgxQ2vWrNHcuXNlMpn0+OOPKywsTN98840Mw9DUqVOzK3YAAAAAAAAAachSAnDOnDnq2bOnWrdu7bSuYcOG6tmzpz7++GNJUqVKlfTEE09o586dWXlLAAAAAAAAABmQpQTgxYsXVaZMmRTXlyhRQhcuXLC/LlmypK5fv56VtwQAAAAAAACQAVlKAJYvX15r166V1Wp1WpeQkKCwsDCVK1fOvuyPP/5QyZIls/KWAAAAAAAAADIgSwnA/v37a//+/XryySe1bt06/f777/rjjz+0YcMGDRw4UL/88ov69u0rSZoxY4aWLFmiNm3aZEvgAAAAAAAAANLmmZXCjzzyiG7evKkPPvhAY8aMsS83DEP+/v569dVX9eijj+rGjRuaMWOG6tWrpyFDhmQ5aAAAAAAAAADpYzIMw8hqJVFRUdq1a5fOnDmjuLg4lStXTo0bN1ZgYKAkKTY2VlevXlWJEiWyHHBed/DgQUmJT0gGAABA9mGcBQAAkDlZugLQxt/f3+WTgG28vb1vi+QfAAAAAAAAkNdkOQF47NgxrV27VpcvX3b5MBCTyaR33nknq28DAAAAAAAAIBOylABcv369Ro8erYSEhBS3IQEIAAAAAAAA5J4sJQBnzZql4sWLa/LkyapcubK8vb2zKy4AAAAAAAAA2SBLCcCTJ09q9OjRqlu3bnbFAwAAAAAAACAbZSkBWLRo0VRv/wUA3N4sFovi4+PTvb2np6d8fX1zMCIAAAAAuP1kKQH46KOPasmSJerWrZsCAgKyKyYAgBuYOXOmVq5cmaEfisxmszp16qShQ4fmYGQAAAAAcHvJUgKwdOnSiouL04MPPqimTZuqSJEiMpvNDtuYTCaNHDkyS0ECAPKfjCb/JCkhIUErV64kAQgAAAAA2ShLCcCxY8fa//+bb75xuU1+SADu2rVLU6ZM0R9//KECBQro0Ucf1dChQ+XpmaXmAYDbWqdOnTJ9BSAAAAAApAfTDqVPljJcmzdvzq44cs2BAwc0aNAg3X///Xr66acVHh6umTNnKiIiQq+88kpuhwcA+dbQoUPVv39/hy/jiIgI9ejRw/76yy+/VGBgoP317fplDAAAACDjmHYo/bJ8C3B+N336dFWoUEHTpk2TyWTS/fffLz8/P02ePFkDBgxQiRIlcjtEAMi30krmBQYGOiQAAQAAACC9mHYo/TKUAFy6dKkaNmyosmXL2l+nx+OPP57xyG6B2NhY7dmzR0OGDJHJZLIvb9u2rSZMmKAdO3aoS5cuuRghAAAAAAAAXGHaofTLUALw9ddf1+TJk+0JwNdffz3NMiaTKc8mAM+cOaO4uDjdfffdDstLlCghX19fHT9+PNN1W61Wh9cmk0lms1mGYbjsmB4eHi7LSYmd02QyKSEhQYZhuCybUr22sq7qzamY8lu9trK0Yc7Vm542zMq+yUufNa/VayubV/p38m2tVqvTMtow9z4r54ic/6x5rV5b2Zzu37b/zy6Ms/JPvbaytCHnUHes11aW/k0b5uV63f0cMWTIEPXp00fx8fH2eq9fv67evXvby82fP1/BwcH2ej08POTr62t///zev9M7zspQAnD+/PmqUKGCw+v87ObNm5Lk8vazgIAARUZGZqpewzDsddt4e3vL399fCQkJTuskqWDBgpKk6Oho+3xZJpNJQUHB9qsTkz9hOSmTyZTqTk9tXVbK5lRMWa3XmmDIw2xyWkcbpl6vrd2ioqKcTkIBAQHy8vJSbGysLBaLwzovLy8FBAS47PuSVKBAAUmO/dvG399f3t7eio+PV1RUlMM6T09PBQYGysiBz2rjzvUmPQ7ySv9Ovq2Hh0eK5XOrDa0JCYq4edP+BZ6V/u3n5ycfHx/FxcWl2L8luaw3KChIHh4eslgsio2NtX8nmJOc2/JDP8ztehOPg7wVU36o13YcBAUFyWQyyWKxKC4uzqFMav3bw8NDQUFBkhLn/rQdJ9khu8ZZ0v/GWsHBMokxQkbrdTXWog1TrzevjrMSYzY7fL9k9bPa5Jd9k9l6rQlGluvNL581O+tNOtbKK+Ms22dLOtbKy22Yl+o1ZJKHh+vytyqmgICAFLeVEvtReqYdupVtaP1fwvBWjrMylACsV6+ew+syZcqocOHCKc7xdOPGDR09ejQjb3FL2bKotgRbdkk8cQQ5LZMSO0XydUn5+fk5vDabTdp17IJuRMdma4zurFRBf91btpjeWf6TTv/rfLKHa2WLBunlxxKPcX9/f6f1thOat7e3vLy8HNbZ+rervp9U8v6dtKynp2eKZc0mjoOMyqvHgTXW8Y+akXO3y8M77zz0w3YcuBogZKV/e3l5pVrW1TrbMefr6ysfH5//LeNYyIi8ehzkdUmPA1sf9vX1dRrvpbd/Z/c8n9k5zpL4jskMjq2My8vjrMT35zjIKI6DzElprJUXxlmJyzkWMiKvHgf55W8O2wUHt2qclaWHgLRq1UqTJ09W+/btXa7/7rvv9M4772j//v1ZeZscExwcLCkxY5pcZGRkqo2clpQyw5nJKN+IjtXVqJhMx3K7CfbzliSd/vemjl24lrvB5FN57VcnieMgo/LscRDvuA//unhd8rSksHHucdVX88qv+xwL6Zdnj4N8Imm/zKn+nVnZOc6SOK4yimMra/LaOMv2RybHQcZwHGRN8v6aV8ZZEsdCRuTZ4yCf/M1hO//eqnFWhhKAZ86c0bJly+yvDcPQunXr9Mcffzhtm5CQoO3btztk0/OasmXLytPTU6dOnXJY/vfff8tisTjc7gwA+VHZopn/ISMnWGMt+ivJ67tLFMhzv8YBAAAAgLvJUAKwTJky+vHHH3Xw4EFJiZnIrVu3auvWrS639/Dw0OjRo7MeZQ7x9vZWvXr1tGHDBg0aNMie/Q8LC5Onp6caNmyYyxECQObExltlTTDstxvlFREREeq48gP76w/7Ns/22wOzKqU5RIFMs8ZJRvqfTCeTWfLwSns7AAAAIJ0ylAA0mUyaO3eurl+/LsMw1Lp1a7388stq1aqV07YeHh4qWLBgivMD5hVDhw5V79699cwzz6hr1676448/NGPGDD355JMqVapUbocHAJliibOSxMok2g3Z6vhO6fxBSc5PhUuZSbqjulShSU5FBQAAgNtMhucADAwMtF+tYXsqcJEiRbI9sFulTp06+uijjzRlyhQ9++yzKlq0qAYPHqyhQ4fmdmgAACC/y3DyT4nbnz9IAhAAAADZJksPAbE9Ffj69euKjo62P1VXkqxWqyIjI7Vr1y7169cva1HmsBYtWqhFixa5HQYAAHA3d1TP/BWAAAAAQDbJUgLw77//1vPPP699+/alul1eTwACAAD3lasPdynVXgnxD8pIsNoXJcRZdHLdR/bXd7V7Rmav/6ZMMZk9ZPbMvTkAeRgO8o2MzK/J3JoAkGPy2tiBBw+6lqUE4Pvvv699+/apZcuW8vX11bp169S3b19dvnxZW7duVVxcnD7//PPsihUAACDd8srDcCwWi+Lj4+2vIyIi1CNJAvDtJxs7PAzH09Mz1+dQ5mE4yPMyPL8mc2sCQHbLK2Ot5HjwoGtZSgD++OOPat++vSZPnqyIiAiFhYXpgQceUK1atXTmzBl16dJF33//vWrXrp1d8QIAAKRLXngYzsyZM7Vy5UqHaVKS69Gjh8Nrs9msTp065ep8xLndbkCaMnxrPXNrAkB2ywtjrfwqN9rNnJXC165dU506dSQlPhykdOnSOnjwoCTpzjvvVJcuXbRp06asRwkAAJAPpZX8cyUhIUErV67MmYAAd3FHdUkZ+eOJuTXhpqxxUnxM+v9Z43I7YgC5JEtXAAYFBSku7r8TSNmyZfXHH3/YX5cvX16LFy/OylsAAPIxV7c+JpX8dV649RHITp06dcpwEtB2BSCAVFRoIt1V/785AONjpL0L/1tft6fk6fPfa+YAhDvK8K3wErfDA7evLCUA7733Xq1evVrdunWTt7e37rnnHm3btk0JCQkym836888/5efnl12xAgDykfx66yOQnYYOHar+/fs7JMLTQiIcSKfUEnqePo4JQMAdZTj5J3E7PHD7ytItwP369dOhQ4fUunVrXb9+XZ07d9apU6fUu3dvjR07VgsXLlSDBg2yK1YAQD7CrY9AIl9fXwUGBqb7H8k/AEC6ZPhWeInb4YHbV5auAKxXr54+++wzzZs3T8HBwSpQoIDeeustvfPOO9q3b59q1qypF198MbtiBQDkI9z6CADurWzRoNwOwc4aa9FfSV7fXaKAPLzzTjI9L7UV3EjyW+ElbocHkKIsJQAlqWHDhmrYsKH9ddeuXdWxY0dZLBZdu3ZNzz//vL744ousvg0AIJ/h1kcAcE+x8VZZEwy9/Fi93A7FLiIiQh1XfmB//WHf5goMDMzFiJxZEwyelonsl1Yyj9vhAfxPhhOAv/32mz766CPt379fklStWjUNHz5cNWvWtG/j5eWlhQsXavr06bJYLNkWLAAgfyGZBwDuxxJnJZGVCbQZACA3ZSgB+NNPP6lfv36yWq2666675O/vrz179uinn37S/PnzVatWLZ0/f16jRo3Sr7/+qoCAAL3xxhs5FDoAAAAAAACAtGQoATh79mx5e3vr888/V61atSRJFy5c0ODBgzVx4kRNmDBBPXv21L///qvmzZvrzTffVIkSJXIkcAAAAAAAAABpy1AC8PDhw3riiSfsyT9JKlWqlMaMGaPBgwfrueeeU2RkpN5++2099thj2R4sAAAAAEiSxWKxzzMbERHhsC75a+aYBQD3lfT7QOI7ISUZSgDevHlTFStWdFoeEhIiwzD0999/a8mSJQoNDc22AAEAAAAgqZkzZ6b6pPkePXo4vLY9ZX7o0KG3IjzcRvLaE555IjZuN2l9H0h8J9hkKAEYHx8vLy/npwz5+CQ+VWjQoEEk/wAAAADkqLT+2EsuISFBK1euvO3+2EPOyYtPw5Z4IjZuPxn9PpBu3+8Ec3ZWVqlSpeysDgAAAACcdOrUSWZz+v+UsV3tAWQXnoadebQbslNGvw+k2/c7IUNXAKbFZOJABgAAAJCzhg4dqv79+zvM+ZSa23W+JwBwdxn9PpBu3++EDCcA//rrL+3du9dh2c2bNyVJR48elaenc5V169bNZHhAPmaNk4x0XopsMksezrfXAwAAwLXb8Y83AIAzvg/SJ8MJwI8//lgff/yxy3UTJ050uTw8PDyjbwPkb8d3SucPSjLSWcAk3VFdqtAkJ6MCAAAAAAC3oQwlAIcNG5ZTcQDuJUPJPyVue/4gCUAAAAAAAJDtSAACOeGO6pm7AhAAAAAAACCbZetDQAD8T4Um0l31HecAjI+R9i7873XdnpKnT+L/MwcgAAAAgAyyWCwODz+IiIhwWJ/89e368AMAJACBnJNWQs/T578EIAAAAABkwMyZM7Vy5UolJKT84MEePXo4vDabzerUqZOGDh2a0+EByGPMuR0AAAAAAADImLSSf64kJCRo5cqVORMQgDyNBCAAAAAAAPlMp06dZDZn7E962xWAAG4/3AIMAAAAAEA+M3ToUPXv399hDsC0MAcgcPsiAQi3VbZoUG6H4MAaa9FfSV7fXaKAPLzzzpdvXmsvAAAAAKkjmQcgvUgAwu3ExltlTTD08mP1cjsUBxEREeq48gP76w/7NldgYGAuRuTMmmDIw2zK7TAAAAAAAEA2ctsE4PXr1zV9+nRt3bpVly9f1p133qnu3bvriSeecJgnoX379jp27JhT+aVLl6pmzZq3MGJkF0uclSRWJtFuAAAAAAC4H7dMAFqtVj399NM6ceKEhg0bprJly2rXrl166623dPbsWb3wwguSpJiYGJ04cUKDBw9Ws2bNHOqoWLFiboQOAAAAAAAAZCu3TADu2bNHP//8sz755BM1b95cktS0aVNFRkZqwYIFGjFihHx9ffXHH38oPj5erVq10r333pvLUQMAAAAAAADZL2PPDM8nPD099eijj6p+/foOyytWrKjY2Fhdu3ZNknTkyBGZzWaFhITkQpQAAAAAAABAznPLKwDr1aunevWcHwCxefNmFSxYUMWKFZMkhYeHKzg4WK+++qp27Nih6Oho1a9fX2PHjtXdd9+dpRisVqvDa5PJJLPZLMMwlJCQ4LS9h4eHy3K25ci4pG1pNptlMpmUkJAgwzCctvXw8Ehx39jKJt83Usb2a/LytjhcxZTZ/pLWZ82tetPThqntG2Se1Wq9Jf07pXrzUj/MbL22snmhDTkeMscd+mF+79/Z3Xeza5yVdB0yztaeeaGPpVSvOxynOT3OMgxDJhPzQGcF/Tvvfw+lNya+EzInO7+X6d8Zjym9/TbfJQBjY2O1atWqFNcHBASobdu2Tsvnz5+v3bt3a+zYsfbGCQ8P1/Xr11WqVCnNnDlTZ8+e1YwZM9SjRw+tXLlSJUqUyFSMhmHo5s2bDsu8vb3l7++vhIQEp3WSVLBgQUlSdHS04uPjJSXu0KCgoEzFACkqKsp+IPn7+8vb21txcXGKjo522M7Ly0sBAQEu95skFShQQJLjvrHx8/OTj4+P4uLiFBUV5bDOarXKx8dHUuJDaSIjIx3W37hxQyaTSVFRUTIMw76tJPn6+srX11fx8fFO5cxms4KDgyUlPlk4+UkmMDBQnp6eiomJUUxMjMM6Hx8f+fn5ueyHJpPJ/lmTtp1NQECAvLy8FBsbK4vF4rAuK21o2zfx8fFObejp6ZnnnpSc38TExMjf31+SXO6b4OBgmUwmWSwWxcXFOaxLrX8nPT+56odBQUHy8PCQxWJRbGyswzpbP7RarYqIiHBYl7R/R0ZGOn3Zpda/UzvPptW/c+MckbR/u6o3eRvynZB5rvpLaufZ9Pbv1M6zrvp30n7oqn+ndp7NzDjCJrX+nVY/zK5zhO1zZ4fsGmcljxMZZzuf5odzaFKMsxIxzspejLPy9zhL4jshK5Lvd8ZZifLaOMtkuEpR5mE3btxQ3bp1U1xfunRpbdmyxWHZ3LlzNXHiRLVr107vvfee/ReugwcPKjY2VrVr17Zve/r0abVt21a9evXSiy++mOH4Dh48KEmqUqWKw/KsXAH47W+ndDUqxqkMXCvk76OHapTL1SsAZ82apVWrVrmszxWz2ayOHTvq6aefTrXepPFKeeeXjVtxBSDHQcYkPQ7y0q+q+bFeW9m80IZ8J2SM7Thwh36Y3/t3dl1Rkd3jLNs6jquMST7Wygt9LKV63eE4vVVXAHIcZIztOJC4AjAr9drK5pU25DshY1z97S3lv36Y3/u3214BGBwcrKNHj6Zr2/j4eI0fP16LFy9W586d9fbbbztc3l69enWnMmXLllWFChV05MiRLMWZ0g4wmUyp7hwuOc4+rtrSbE552sus7JvkZTOS/JMSb09btWqVhg0blm0x5dRnzY16kXm2Ns/O/p2Rsu7UD/NiGyJ98lt/yW/15sbYhnFW3pC8PfNiH8tvx1Nu1YusoX/nbr2Ms3JfTnwv57d+mBf7d3Ju29stFosGDx6sxYsXa8iQIZowYYJDw1gsFn311Vf67bffXJYtVKjQrQwXbqZTp04Z+jIxm83q1KlTzgUEAAAAAABuW/nuCsD0MAxDI0aM0K5duzR+/Hh17drVaRsfHx998MEHqlKliubMmWNffvDgQZ0+fVr9+vW7lSHDzQwdOlT9+/d3mh8gJZ6envL19c3hqAAAAAAAwO3ILROAK1as0Pbt29WuXTuVL19e+/btc1hfvXp1+fj4aPjw4XrzzTc1duxYPfzww/aHgISGhuqxxx7LpejhLkjoAQAAAACAvMAtE4DffvutJGndunVat26d0/oNGzaoXLly6tGjhwICAvTFF19o/fr18vf3V+vWrTVq1Ch5erpl0wAAAAAAAOA245ZZrk8//TTd23bq1Im51wAAAAAAAOC23PYhIAAAAAAAAABIAAIAAAAAAABujQQgAAAAAAAA4MZIAAIAAAAAAABujAQgAAAAAAAA4MZIAAIAAAAAAABujAQgAAAAAAAA4MZIAAIAAAAAAABujAQgAAAAAAAA4MZIAAIAAAAAAABujAQgAAAAAAAA4MZIAAIAAAAAAABujAQgAAAAAAAA4MZIAAIAAAAAAABujAQgAAAAAAAA4MZIAAIAAAAAAABuzDO3AwAAAPlHfGysrNb4dG3r4eEpT2/vHI4IAAAAQFpIAAIAgHT5cd1XOvzjNhmGka7tTSaTqjRsoYbtuuVwZAAAAABSwy3AAAAgXQ7v3p7u5J8kGYahw7u352BEAAAAANKDBCAAAEiXKg2ay2QypXt7k9msKg2a52BEAAAAANKDW4ABAEC6NGzXTXXbdHKYAzDWEq2l742zv358zHh5+/pJYg5AAAAAIK8gAQgAANLN09tbnko5qeft6ycfP/9bGBEAAACAtHALMAAAAAAAAODGSAACAAAAAAAAbowEIAAAAAAAAODGSAACAAAAAAAAbowEIAAAAAAAAODGeAowAAD5SLBfyk/gzQ0Wk9XhdUF/H/n6+eRSNI7yWlsBAIDMsVqtiouLuyXv5WHEy0vWtDeEPIx4WSyW3A7DbXl5ecnDwyPb6nPbBODBgwfVpUsXp+Xly5fXt99+a3996NAhTZo0Sb/99pt8fX3Vtm1bjRo1SgEBAbcyXAAA0mQYhhrdUyq3w3AQERGh6Ulet656pwIDA3MtnuQMw5DJZMrtMAAAQCYYhqG///5b165du2XvWUTxKuRr3LL3y8/MiteJEydyOwy3VrBgQZUsWTJbxrNumwA8cuSIzGaz5s2b55Ax9fPzs///mTNn9NRTT6ly5cqaPHmyzp8/rw8//FAXLlzQRx99lBthAwCQIhJZGUebAQCQf9mSf8WLF5e/v/8t+V6/GR2r+AQSgOnhaTYpiDsucoRhGIqKitKlS5ckSaVKZf0iALdNAIaHh+uuu+5S/fr1U9zm008/lY+Pjz755BN7YrBkyZIaPny4fvvtN9WoUeNWhQsAAAAAAP7HarXak39FihS5Ze8bk2CSmQRguniaTfL1zRtTv7gjW57q0qVLKl68eJZvB3bbh4CEh4erUqVKqW6zc+dONWvWzOGqwPvvv1++vr7aunVrTocIAAAAAABcsM355+/vn8uRALnH1v+zYw5Mt7wC0DAMHT16VL6+vuratavCw8NVoEABPfrooxoxYoS8vLxksVh07tw5lS9f3qGsl5eX7rjjDh0/fjxLMVitjpOGmkwmmc1mGYahhIQEp+1tmdzk5bJzwsfbTdK2NJvNMplMSkhIkGE4/5rj4eGR4r6xlU2+b6TM79e0YnK3etPThqntG2Se1Wqlf2exXltZ2tB1vcnfIyEhIcPfgVk9R6RVb15vw9ys11Y2p/t3dp/Ls2uclXQdMs7Wnnmhj6VUrzscp7fiHMp0CVlD/86Z7yFbXSaTyWW59KyTlKGyHAuZ46qNs3vfuGO9GXlfq9XqcHxlZpyV7xKAsbGxWrVqVYrrAwICVLVqVUVGRuqvv/7S6NGjVaJECe3atUuff/65zp8/r/fff183b96UJAUFBTnVERgYqMjIyEzHaBiGvX4bb29v+fv7KyEhwWmdlDixoyRFR0crPj5eUuIOdRUf0icqKsp+gPj7+8vb21txcXGKjo522M7Ly0sBAQEu95skFShQQJLjvrHx8/OTj4+P4uLiFBUV5bDO09PTPhG+q3qDgoLk4eEhi8Wi2NhYh3W+vr7y9fVVfHy8U180m80KDg6WlDj5fvKTRWBgoDw9PRUTE6OYmBiHdT4+PvLz83PZD00mk/2zJm07m4CAAHl5eSk2NtbpSU9ZaUPbvomPj0+1DZE5MTEx9l+NXO2b4OBgmUwmWSwWp1+VUuvfSc9Prvphav3b1g+tVqsiIiIc1iXt35GRkU4DwdT6d2rn2bT6N+eIRJk5RyR//9jYWKf9divOEan17+joaKf+nVobprd/p9aGrvp30jZ01b9TO89mZhxhk1r/Tm8bZvUcYfvc2SG7xlnJ40TG2c4FnEMTMc66vTHOyv5xVtLP5ip5aEssukoemkymdP34k7TepGWQMcn3T3bsG1dlbfWmVNbT09NlPFmNKafqddUPXdVrGIYiIyPt55HMjrPyXQLQYrFo3LhxKa4vXbq01qxZo88++0z33HOPSpYsKUmqX7++fHx8NHXqVA0ZMsR+4suJDL/JZHIaTNrex2w2pzrQTHo7MrIm6aXiZnPi3e5eXl72gzc5V/stKVf7xrZfvby8Ui3rap0tJl9fX/n4OM6bYKvX09Mz1XpdDdps9fr4+Mjb23FC1vT2Q1eX2dvq9fb2lpeXl8t6s9KGaX1WZE7SvuWqfW3tb/tjyNW6tPp3av0wtf6d1h/erp7GntP9m3NExtsw+feot7e30767FeeI1Pq3n59fiv07p9owK/07tfNsZsYR6enf0q09R2QF46y8w3Yu4BzqWC/jrNsT46xE2TnOslgsunz5skMdKZVNLXGX2rrU6kX6pdSOWdk3ObVf82O9JpNJAQEBTucRKWPjrHyXAAwODtbRo0fT3K5p06ZOy+6//35NnTpV4eHhat26tSQ5/SpiW1a6dOksxZnSzs1Kp0DGuGrLnDpg8+NJJD/Vi8yztTn9O3frzYsxZVe9ybczm8058h2YlXjzehvm93pzY2zDOCtvcHX8p4RzaN6uF1lD/86ZepO+Tq2fptWHs1I2N41//VWFrV0tSVq+Jkyl7nCdo5gw/k2t/ma5Spa6QyvWrr+VIdql1I45tW9ut3ptx4er4ysjYxu3/Iv76NGjWrhwodPlxbbL6QsVKiR/f3+VLFlSp06dctgmLi5O58+fV4UKFW5ZvAAAAAAAAK58v831Q0qtVqt2bOcBpkgft0wAnjt3Tm+99ZY2bdrksHzdunXy9/dXtWrVJCVeJbht2zaHROGWLVtksVhcXkEIAMDtzmKxKCIiwuFfUkmXJ5/HCgAAABlzR+kyKSYAf93/i65euaKChQrd4qiQH+W7W4DTo2nTpqpVq5befPNNXb16VeXKldO2bdu0ePFiPf/88yr0v4Nj0KBBWrt2rfr27at+/frp4sWL+uCDD9SqVSvVrFkzdz8EAAB5zMyZM7Vy5UqXT/+z6dGjh/3/zWazOnXqpKFDh96K8AAAANxO8/tb6qvFX+r6tWsq8L+HWtls27JJFSreI19fX/t8iUBK3PIKQC8vL82ePVsdOnTQvHnzNGzYMO3bt09vvfWW+vfvb9+ubNmymjdvnkwmk0aPHq3Zs2erc+fOeu+993IxegAA8qa0kn/JJSQkaOXKlTkXEAAAgJtrfn9LWa1W7fx+u8NywzC0fesW3d+qtVOZfy5d1Pg3XlW7NvereYM66tHtUS3/aonTdsf+OKpXx76gRx5opab1auuhls304qjn9NfxPx2227p5k/r3flKtmzVS66YN9fSAvtq1c4d9/dmzZxUaGuqUS4mJiVFoaKheeukl+7JevXqpT58+mjFjhmrVqqX69etrz549kqSLFy9q7NixatSokapVq6b27dvryy+/zHijwSW3vAJQkgoUKKBXX31Vr776aqrb1axZU4sXL75FUQEAkH916tQpQ0lA2xWAAAAAyJzQylVUstQd2r5ti9p16Ghf/vvB3/TPpUtq0aq1fvxhp335P/9cUv/ePRQfH69Hu3RTocJFtGf3Lr0/8V2dPnVKI59/UZJ04q/jGty3t4qXKKnuPXsrIDBQR48c1tpVK3X8zz/01cq1MpvN+mXfXr029gXVa9BIjzzbWTExsVq14mu9MHKEPp37hZo0qJfhz/Trr7/q5MmTGjNmjM6ePavq1avr4sWL6tKli+Lj49W9e3cVKVJEO3fu1JtvvqkTJ05o3LhxWW/M25zbJgABAED2Gjp0qPr376/4+Ph0be/p6SlfX98cjgrI/+JjY2W1pu+4kiQPD095envnYETArcdxAPyPYcj43z9JMhIS1LR5C63+ZoWioyLl6+snSdq2aaPKlrtLd1eo6FB89ozpio6K1vwlX9mfHPxYt8f14eSJWrZkkR7p1FkV7wnR8q+Wymq1asbsz1S0WLH/lX5M3t4++mrxlzp29KhCK1fW5o0b5OPrq/emTrc/rbZlmzYaOrC/jh45kqkEYFRUlKZMmaLmzZvbl7355puKiorSqlWrVKZMGUmJU8uMHz9eCxYsUJcuXVSpUqUMvxf+QwIQAACkGwk9IHv9uO4rHf5xm/0PvfQwmUyq0rCFGrbrloORAbcOxwGQKPL6FUVH3JQkxURHSpKu/H1WtWpU07Ili7QpbI0aNmwoSdqyaYOaN2+uyOtX7OUTEhL0/batqn7vvfLz89e1q1ft6+5v3UbLlizSDzu+V8V7QjT6xbHqP3iIChUqbN8mxmKRl5eXJCkqOkqSVLxECUVFRuqDSe+q46NdVPGeEBUrVlxfrVwjT7MpU5/T09PT/jlscW/atEm1atWSv7+/rlz57zM99NBDWrBggbZt20YCMItIAAIAAAC55PDu7RlKekiJ8z4d3r2dxAfcBscBkCg6MsLl8ipVqqhAgQLavXu3GjZsqOPHj+vixYtq2LChQ5lrV68qIuKmdu/6QW1bt3BZ198XzktKTKJHRkRqycIF+vPYHzp39ozOnT0rq9UqKfHKQ0nq0u0J/bT7Ry3/aqmWf7VURYsVU8NGTfTwIx1Up3btTH3OoKAgeSe5gvfKlSu6efOmduzY4ZAYTOr8+fOZei/8hwQgAAAAkEuqNGie8SufzGZVadA87Q2BfILjAEjkFxBovwIwKbPZrPr16+vHH3+U1WrVjz/+qBIlSqhCxYryCwi0b2ebp7lJ8xbq+nh3l+9hu913964f9MLIESpYqJDq1KuvWrXrqFLlKvrz2B+a9sF/D/MICAzUzE8+1+HfD+r77dv00+4ftW7NKq1Z9Y2GjnhOI4Y+neLnSWnaGA8PD4fXtrhbtmypXr16uSxTvHjxFN8H6UMCEAAAAMglDdt1U902nRzmPou1RGvpe/9Ndv74mPHy/t+cTxJzn8H9cBwAiQIKFFZAcCEZhiEfvwCHdQ0aNNCGDRt05sIl/bR3r1q2eVBFS90pmf67DbdgoULy9fVVXGys6tZv4FD+6tUrOvDLLypTtqwk6b0Jb6t4iZL6YvFXCgj47732/7zPodypkycVGRmhKtWqq0q16hoydLguXDivYYP6a8EXczVi6NP2hF5sbKxD2X///Tddn7tw4cLy8/NTbGysGjVq5LDuypUr2rt3r8qVK5euupAyc24HAAAAANzOPL295ePnb/+XNMkhSd6+fg7rSXrAHXEcAP9jMslkNtsfuGFz7733KiAgUIu/XKiTJ06oZes2Dsk/KXFuvUZNmmnvnt06fOh3h3WffTxLr7wwWieOH5ckXb92XSVKlnRI/l2/dk3r162VJPutwJPfeUsvjByhyMhI+3alSt2hwkWKyvN/ib+CBQvK09NT4eHhDu+5bt26dH1kT09PNW/eXLt27dJvv/3msG7atGkaMWKE/vzzz3TVhZRxBSAAAAAAAEAe5uXlpYaNG2vThu9UvEQJValW3eV2Tw9/Vr/s26vhgwfo0a6Pq/Sdd+rnvT9p84bv1KhJUzVo1FiS1KhJU238br3eefN1Va9xry5evKg1K1fo+vXrkqSo/yX8ejzVV88/N1xP9++jto90kK+vr/b8uEuHDv6mocOflST5+fmpdevW+vbbb/X888+rXr16OnDggLZu3aqCBQum6/ONGTNGe/bs0VNPPaXu3burXLly2r17t8LCwtSiRQs1bdo0iy0IEoAAAAAAAAB5XPP7W2nThu/U/P5WTlcI2pQuU0afzV+oTz/+SGFrVysyIkIlS5XSgMFPq0fvPjKbE28EHTP2ZfkH+OuH77/Xxm+/VbHixdWkWQt1feJJ9ejaWXt/2qPmLVupYeMmmvjBVC38Yq7mff6pLBaL7rqrvF545VV16dLV/r7/93//J39/f23ZskUbN25U7dq1tWDBAg0ZMiRdn+3OO+/UsmXLNG3aNK1cuVI3b97UHXfcoeHDh2vAgAH2uJF5JiOjj1tCqg4ePChJql7ddTY+M7797ZSuRsVkW33urpC/jx6qwfwA7objIGM4DgC4o5wYZ0l57zsmJjpKC8aPtr/uNe59+fj552JEjviOcU8cBxnDcZDzLBaLTpw4ofLly8vX1/eWve/1qBjFJ+SNNImRkKDLF87YXxcpdadMeSgR5mk2qYC/T26H4day8zjIOz0HAAAAAAAAQLYjAQgAAAAAAAC4MRKAAAAAAAAAgBsjAQgAAAAAAAC4MRKAAAAAAAAAgBvzzO0AAAAAgNwU7Oed2yE4sJisDq8L+vvI1y/vPGUxr7UXskde268cB8gtHmZTbodglyDHWDzMJpnzUHx5qa2QNhKAAAAAuG0ZhqFG95TK7TAcREREaHqS162r3qnAwMBci8cVwzBkMvGHn7vgOMgcjgP3YxiGAn3zTnLXarXqUpLXwX7e8vDwyLV4XOE4yD9IACJN8bGxslrj0729h4enPL3zzkkTAAAgJfzRkjm0m3thf2YO7eZ+2KcZR5vlHyQAkaof132lwz9uk2EY6S5jMplUpWELNWzXLQcjAwAAAAAAQHrwEBCk6vDu7RlK/kmJlwAf3r09hyICAAAAAABARpAARKqqNGie4Ut6TWazqjRonkMRAQAAAAAAICO4BRipatium+q26eQwB2CsJVpL3xtnf/34mPHy9vWzv2YOQAAAAABATsoLD5/ICzFkN3f8TFnlLm1CAhBp8vT2lqdSTuh5+/rJx8//FkYE3Ho8DAcAAADIO0wmk3Ydu6Ab0bG58v7Bft7Z/vTsPXv2qHfv3po7d64aNWqUrXWnJTY2Vh988IFCQ0PVuXPndJebPn26ZsyYoUOHDsnT071STK7apFevXoqPj9fixYtzObqMc6+9AwA5gIfhAAAAAHnPjehYXY2Kye0w3MKlS5c0d+5cjR8/PrdDyTNctcm4ceNSKZG3MQcgAKSBh+EAAAAAAEJDQxUaGprbYWQKVwDmA8F+ees2QovJ6vC6oL+PfP18cikaZ3mtvZD/VWnQPONXAPIwHAAAAAApMAxDn332mZYsWaJ//vlHtWvXdrr19u+//9b777+vX375RTExMapRo4aef/551axZ075NTEyMPv/8c61evVrnzp1TyZIl1aVLFw0YMEAeHh6SEm9bLVu2rO655x4tWLBAly5dUsWKFTV69Gg1adLEfuuxlHiF2+rVq7VgwQJJUlhYmD7//HP99ddf8vPzU6tWrTRq1CgVKlQoxc+2a9cuzZw5U0eOHJGHh4caN26sMWPGqHTp0vZt9u/fr/fee0+HDh1SoUKF1L9/f23atEklS5bUhAkT9Nhjj8lkMunrr792qPu5557TqVOn9M0336SrnVesWKFx48bp7bff1vvvv6/Y2Fh99tlnqlq1qr3dTp8+LbPZrEqVKunZZ59Vw4YNU2yT5LcAh4aG6o033tDRo0e1fv16WSwW1atXT6+++qrKli1rj+Obb77Rp59+qrNnz+ruu+/W2LFj1bdvX40fP16PPvpouj5LVpEAzOMMw8j2eQWyKiIiQtOTvG5d9U4FBgbmWjyuuMskncgbeBgOAAAAgOz0wQcf6LPPPlP//v1Vt25d7dixQ6+88op9/dWrV/Xkk08qISFBffv2VUBAgLZs2aLevXtr0aJFqlatmgzD0JAhQ7R//34NGTJElStX1k8//aSpU6fq5MmTevfdd+31bdy4UYcPH9bo0aPl7e2tqVOnavjw4dq+fbuqVKmiqVOn6tlnn9XAgQP1yCOPSJI++ugjTZ06Vd26ddPw4cN15swZTZ8+XQcOHNBXX30lPz8/p8+1atUqvfDCC3rggQc0adIkXb16VTNmzNDjjz+ub775RsWKFdPx48fVp08fVa5cWZMmTdK1a9c0ZcoURUREqG3btpKkrl276vXXX9fx48dVoUIFSdL169e1efNmvfDCCxlqa6vVqqlTp+r111/XtWvXVKVKFb3//vtauHChRo4cqUqVKunixYuaNWuWRowYoW3btqXYJq58+OGHatSokSZOnKh//vlHkyZN0gsvvKAlS5ZIklauXKmXXnpJjz76qF544QUdPHhQQ4YMUUJCQoY+R1aRAMzjSGJlDu2G7MbDcAAAOcVisSg+/r8fmSIiIhzWJ3/t6ekpX1/fWxIbcKtwHOB2EhERoblz56pHjx4aM2aMJKl58+aKjo7W119/LavVqrlz5+ry5cuaPn267rjjDklSt27d1KVLF33wwQf69NNPtWPHDu3atUsTJ05Up06d7PX4+flp+vTpeuqpp1SpUiVJicfY3LlzVbBgQUlSQECA+vTpox9//FEPPvigqlWrJkkqV66cQkNDdf36dc2aNUuPPvqo3nrrLXvsoaGh6tWrl5YtW2a/Qs4mISFBkydPVv369TV9+n+XDdWtW1ft2rXTZ599prFjx2r27NkKCAjQnDlz5O+f+DdUxYoV1b17d3uZ9u3ba8KECVq5cqVGjx4tSVq7dq0Mw0g1GZeSQYMGqU2bNvbXFy5c0IgRI9S3b1/7Mj8/P40YMULh4eGqU6eOU5ukpGzZspoyZYr99blz5zRr1ixdvXpVhQoV0tSpU9W8eXN7QrZFixby8vLShx9+mOHPkRUkAAEAAIBcMnPmTK1cuTLVqwB69Ojh8NpsNqtTp04aOnRoTocH3BIcB7jd7N+/X3FxcQ4JKUlq0qSJvv76a50/f17btm1TuXLlVKJECVmtidNwnTx5UjVr1tSqVasUHh6uDRs2yGw226+as+nUqZOmT5+un376yZ4ArFChgj35J0klS5aUJEVHR7uM8cCBA4qNjXVKttWrV0+lS5fWTz/95JQAPHHihP755x89++yzDsvLlSunWrVq6aeffpIk7d69W82aNbMn/yTpvvvuc7hFODAwUA899JBWr16tkSNHymw2a8WKFWrVqpXD50ivkJAQh9e25Nu1a9d08uRJnTx5Ups3b5YkxcXFZaju2rVrO7wuVSrxLs7o6GjduHFD58+f1/Dhwx22eeSRR0gAZgfbY6hTMn/+fNWvX19SYlb52LFjTtssXbrU4b56AAAAILullfRwJSEhQStXriTxAbfBcYDbzbVr1yRJhQsXdljunWQKoRs3bujChQtO8wImXX/z5k0FBAQ4lJOkYsWK2bexSX7FrNmc+EzYlI6969evS5KKFi3qtK5o0aIOdSf/XCmVOX/+vCTpypUrLucQTF6uS5cu+uabb7R7924VLVpUv//+u1NyMb1sbWJz6NAhvfXWW9q/f798fX0VEhJiT9xl9AGQqbXtlStXJDnva1dtlNPcMgH42GOPqWHDhg7L4uLi9Pzzz6tIkSK69957JSVOlnnixAkNHjxYzZo1c9i+YsWKtyxeAAAA3J46deqU4eSH7conwF1wHOB2Y0sG/fvvv7rnnnvsy5MmngICAlSlShX179/fZR3BwcEKCgpSZGSkYmNjHZKAly5dkqRUH9SRlgIFCthjTH713KVLl+x5laRsV+b9+++/TusuXbpkj6dkyZK6fPmy0zaXL1/W3XffbX9dp04dlS9fXmFhYSpatKhKlCihJk2aZPoz2URERKhfv34KDQ1VWFiYypcvL7PZrO3bt+u7777Lcv1J2a60TN4mrj5/TnPLBOAdd9xhv0feZsKECYqMjNTixYvt2dk//vhD8fHxatWqlcvOi0TMxwEAAJAzhg4dqv79+zuMtdLCWAvuhuMAt5tatWrJz89P69atc7h46eeff5aUmNNo2rSpVq1apcaNGys4ONi+zeTJk3Xp0iVNmjRJbdq00fLlyxUWFuaQEF+1apUk51tTU2N7YrDNvffeK29vb61Zs0aNGjWyL9+7d68uXLigfv36OdVRvnx5FStWTGvWrFHXrl3ty0+fPq1ff/3Vfit/3bp1tW3bNkVHR9sfJHLo0CGdPXtWdevWdaizS5cu+uyzz1S0aFF17tzZfnVdVvz111+6du2aevToYX/AiCRt375d0n9XRSZvk8woWbKkypYtqw0bNqhLly725dmdaEwPt0wAJnfkyBHNnz9fo0aN0p133umw3Gw2O2Wz8R/m4wAAAMhZJDEAjgNkTrBfyg/py8vv7e/vr+HDh2vSpEny9fVV06ZN9fPPP2vp0qWSEhNP/fr105o1a9S3b1/17dtXRYoU0aZNm7R48WI9++yz8vT0VIsWLVS/fn298cYbunjxoipXrqy9e/fq888/V/v27e3z/6VHUFCQpMT5+SpXrqxq1app0KBBmjFjhry8vNSqVSudPXtW06ZNU/ny5fXYY4851WE2mzVq1CiNHTtWI0aMUMeOHXX9+nXNmDFDQUFB9qThkCFDFBYWpv79+6tfv366ceOGpk2bJrPZ7PRAz86dO2vKlCm6evWqZs6cmdkmd3D33XcrKChIs2fPloeHh7y8vPTtt99q5cqVkv6bF9FVm2SUyWTSiBEjNGbMGL388st68MEHdeTIEX388ceSlC0JzfS6LRKAkyZNUpkyZdSnTx+H5eHh4QoODtarr76qHTt2KDo6WvXr19fYsWMdLjvNDNsknTYmk0lms1mGYbhMptkyy8nLSbIfBAkJCS7vRffw8EixXltZV/WmJ6aszMfxzDPPZOtnza9tmJc+a27Vm542TG3fSLn75e6KxeT4WQr6+8jXzyeXonFmay+r1Ur/zmK9trK0Yd49R6RVb176rHmtXlvZnO7f2fELelLuMs7KTEz5rV5bWdqQc6g71msrS//OmTZMWpercoakRveUclp+KyUYhkzJlplMphTnkEu6rl+/fvL399fcuXO1dOlSValSRW+//baee+45GYahYsWKacmSJfrggw/09ttvKyYmRnfeeadef/11de/e3V7Pxx9/rOnTp2vRokW6fPmySpcureeee079+vVziiPp6+T/HxAQoIEDB2rhwoU6cuSI1q5dq+HDh6to0aJauHChVqxYoYIFC+qhhx7Sc889Z3+Ah60ewzBkGIY6d+4sf39/ffLJJ3ruuecUEBCgxo0ba+TIkSpevLgMw1C5cuX0+eefa9KkSRo5cqSKFi2qIUOGaObMmU71Fi5cWNWrV5fZbFbZsmWdYk/evil9zqT/DQgI0IwZMzR58mSNHj1aAQEBqly5shYuXKhBgwZp7969at26tcs2SV5fam1r+2/79u0VGRmpOXPmaPXq1brnnnv0yiuv6JVXXpG/v3+a/cUwDFmtVodjIjPjLJOR0dkNc1lsbKz9clZXAgICHJ6AEx4erk6dOmn8+PEOl6BKUvfu3bV//34NHDhQzZs319mzZzVjxgxFRkZq5cqVKlGiRIbjO3jwoAzDsHdMG29vb/n7+8tqtermzZtO5Wz3ykdERDhd+u7v7y9vb2/FxMQ4PaHH09NTgYGBMgzDPklnUsHBwTKbzYqMjHR6ko2fn598fHwUGxurqKgoh3UeHh4KCgpK1xWAydmuABw8eLDT7cFms9l++fKNGzec6g0MDJSnp6eio6MVExPjsC61NjSZTPY5Cm7evOn0xZNaG3p5eSkgIEAJCQkuJzItUKCATCaTy32TWhva9o3032SoSQUFBcnDw0NRUVGKjY11WOfr6ytfX1/FxcUpMjLSYV3SNrx+/brTySK1NvTx8ZGfn1+m2jAgIEBeXl6yWCyyWCwO67LShrZ9k1obJhiGzKbkX625KyIiQh07drS/XrVqlX1/5xUJCYaio6MUEBCQY+cIyXU/TK1/2/phfHw85wjOEZKyfo7ITP9OrQ3T279Ta0NX/TtpG7rq36m1YX4dR0iJbWj73FnlbuMsiXMo59BEnEMTcQ5NxDkiUWxsrC5fvqzy5cvLy8vLqR3MZrM9wZ38s5hMJntSxNWt5R4eHvbkbE7U66qsrV5bMic5T8/E67MyG1NK9Wb1s+ZEvT/++KO8vLwcblG+fv26mjVrppdeekm9evWyl71y5YpatWqlt956Sx06dMiVNsxqvStXrlTlypUdbjfetm2bhg4dqjVr1qhChQop1hsVFaUTJ06oWLFi9nkeMzvOyncJwBs3bjjdE55U6dKltWXLFvvrl19+Wdu2bdO2bducnoxz8OBBxcbGOnS606dPq23bturVq5defPHFDMd38OBBSVKVKlUclufnX50iIyOdTm6pxeTl5WXPYuf3X52SluWXO36ZTlrvzZs3HebZWLFihQIDA/PcvrGVpX/Thnm5Xnc8R+SXem1lc7p/Z9cVgO44zsorfYE2zL/1cg7NvXptZenfOdOGFotFp0+fVvny5eXj4/pOm7SutpNSv1oss+vyU71ZjSkn6p0zZ46mTJmiZ599VlWrVtW1a9c0b948nT17VmvWrFHhwoUVHh6uzZs3a/Pmzbp+/brWr18vb29ve19Knvy2vaf0XxuazWZ5eXllSzskrTejZQcNGqRjx45pxIgRKlmypE6fPq2ZM2eqQoUKmjt3bqplo6OjdeLECZUrV85hqoTMjLPy3S3AwcHBOnr0aLq2jY+P1+bNm9WuXTun5J8kVa9e3WlZ2bJlVaFCBR05ciRLcaa0A5L+YpCRclLq94Znpd60ygYEBKS4LjV58bPmVhu602fNi/XmVkzJ60laV16Ml/6de/XmxZhup3rzYkzuVG9WymaWO42z3Kkv0IbuWW9ejMmd6s2LMeWVepO+Tj72Tl42NZktS705V2/fvn0VGxurZcuWadq0afL391f9+vX13nvv2Z+QHBcXp7lz56po0aKaMmWKQxL4/PnzatWqVapxSYnzB06YMCHL8Wa17MSJE/X+++/rww8/1JUrV1S0aFG1bdtWI0aMSFe9tuPD1fGVkXFWvksAZsT+/ft17do1Pfjgg07rLBaLVq9erUqVKqlGjRpO67LyuGwAAAAAAAA4M5vNevrpp/X000+nuE2NGjXsT0VOrnjx4vr666/TfJ+8ktcpVKiQxo8fn9thuHcC8MCBA/L09NS9997rtM7Hx0cffPCBqlSpojlz5tiXHzx4UKdPn3b5SGsAAAAAAADkHm9vb5d3dCJ1t+55w7ngjz/+UJkyZVw+Ut5kMmn48OH64YcfNHbsWH3//fdatGiRBg8erNDQUJePtAYAAAAAAADyG7e+AvDy5cupPg2lR48eCggI0BdffKH169fL399frVu31qhRo+xPeQEAAAAAAADyM7fOciW9tTclnTp1cniSJwAAAAAAAOBO3PoWYAAAAAAAAOB259ZXAAJAdrFYLIqPj7e/joiIcFif/LWnp6fL+UcBAAAAALjVSAACQBpmzpyplStXKiEhIcVtevTo4fDabDarU6dOGjp0aE6HBwAAAABAqrgFGADSkFbyz5WEhAStXLkyZwICAAAAbnPWBCO3Q7glMRhG1t4jq+VzQl6M6XbAFYAAkIZOnTplOAlouwIQAAAAQPbzMJv0zvKfdPrfm7ny/mWLBunlx+rlWP2xsbH64IMPFBoaqs6dO0uSevXqpfj4eC1evFiSFBoaqiFDhmjkyJE6e/asWrVqpfHjx6tr164uy+cFmzdvVlhYmN5//31J0ooVKzR27Fht2LBB5cqVy+Xo3BsJQABIw9ChQ9W/f3+HOQDTwhyAAAAAQM46/e9NHbtwLbfDyBGXLl3S3LlzNX78ePuycePGpbh98eLF9eWXX+quu+5KsXxeMG/ePIe/q5o3b64vv/xSJUuWzMWobg8kAAEgHUjmAQAAAMhNoaGhKa7z9vZWnTp1bmE02aNIkSIqUqRIbodxW2AOQAAAAAAAgFuoZcuWGjNmjMOyXbt2KTQ0VHv27FGrVq0kJV7116tXL0mJtwB3797dZX1nz55VaGioli1b5rL8l19+qdDQUB07dsyh3Pbt2xUaGqojR46kO/bQ0FB99NFHevzxx1WjRg1NnDhRkrR37171799fdevWVbVq1dSyZUtNmzZNVqvV/pl/+ukn/fLLLwoNDdXZs2e1YsUKhYaG6tSpU5Kkl156SX369NHq1av18MMPq1q1avr/9u48rsa0/wP4p502IolU02TOsRQdIWlTlkmJpxl7mpCM5ceDseQx08yIB2FMsozlURMxdtJiipK17Iwlj8dYskxKpU37/fvDqzOOU1Sixef9evV6zbnu677u73XOSd+57uu6bmdnZ4SHh8vEcOfOHfj4+KBbt26wsbFBYGAg5s+fL32vSB4HAImIiIiIiIiI6omcnBwEBgYCAHx8fN649LcinTp1kjvfzc0NTZo0kXtQ4f79+9G5c2d06NChWtdYt24dbG1t8fPPP8PV1RXJyckYO3YsNDQ0sGLFCqxZswYSiQRr165FREQEACAwMBAdO3aESCRCWFgY9PT0Kmz7+vXrCAoKgo+PD9auXQtdXV3MnTsXd+/eBQBkZGRgzJgxePjwIfz9/eHr64vIyEhERkZWqw8fGy4BJiIiIiIiIiKqJ7S0tGBgYAAAMDY2fuPS38rONzMzkzt/wIABOHToEL755hsoKiri+fPnOHr0KHx9fasdY8eOHTFt2jTp6/3796NHjx5YtWoVlJSUAAD29vZISEjA2bNnMWTIEJibm0NLSwslJSVvXK6cnZ2NHTt2oH379gAAExMT9O/fH/Hx8TAxMcHWrVuRm5uL/fv3S/cOlEgkcHZ2rnY/PiYcACQiIiIiIiIiauSGDh2K8PBwnDlzBjY2NtKZeYMGDap2WyKRSOa1u7s73N3dUVRUhLt37+LevXu4ceMGSktLUVRUVK22mzVrJh38AyAd5MvPzwcAJCYmwsLCQubBIe3atYNEIql2Pz4mHAAkIiIiIiIiImrkrKysYGxsjP3798PGxgZ79+5Fv3790KxZs2q3paurK/O6sLAQixcvxoEDB1BUVARDQ0NIJBIoKytDEIRqtf36AxgVFV/uXlfeTkZGRoWzInV1dZGenl6ta31MOABIRERERERERPSBlZWVybzOzc1979f88ssv8csvv+D27du4fv06Zs2aVSvtLlq0CFFRUVi1ahWsra2hrq4OALC2tq6V9l+lr6+PZ8+eyZVXVEZ/40NAiIiIiIiIiIg+IE1NTTx+/Fim7OzZs9L/Lt9Hr6YqO798me7ChQvRpk0b9O7d+52uU+7ChQvo0aMH+vbtKx38++OPP5CRkSEzA7B8Nt+76NGjB65cuYK//vpLWvb06VNcvnz5ndtuzDgDkIiIiIiIiIgaHCNdrQZ7bScnJ6xfvx6rV69G9+7dkZiYiMOHD0uPa2m9bD8xMREdO3aUPtSjqio7X09PD/b29oiLi8PkyZNrZUAOALp27YrIyEhs27YNpqamSE5OxoYNG6CgoCDduw8AtLW1cfHiRZw6darGe/Z99dVXCAsLg7e3N6ZOnQoAWL9+PUpKSqCgoFAr/WmMOABIRERERERERA1KaZmAf33Zs85jUFKs2YDT119/jaysLISFhSE4OBi9evXC6tWrMWrUKAAvZwj6+Phg27ZtSE5ORmRkZLXaf9P5Tk5OiI+PxxdffFGj2Csyb948FBUVISgoCEVFRWjXrh0mTZqEu3fvIjY2FiUlJVBWVsbYsWNx5coVTJ48GVu2bKnRtbS1tREaGorFixdj/vz50NDQgIeHB06cOCGdfUjyFITq7sZIb/THH38AAMzNzes4EiIiIqLGhXkWEdHHo6CgAHfv3oWJiYncQyHo3fzf//0f8vLyEBwcXNeh1MjFixfx/PlzODo6SsuKi4vh6OgINzc3zJs3rw6jq121+XvAGYBERERERERERI3cunXr8ODBA8TGxsrNvisqKqrS03rV1NTeV3hV9vTpU8yYMQNff/01rKyskJ+fj927dyM3NxfDhw+v6/DqLQ4AEhERERERERE1cseOHcOdO3cwY8YM2NjYyBzz9vaWeQhJZW7duvW+wqsyZ2dnfP/999i+fTt+/fVXqKiowMLCAmFhYTAxManr8OotDgASERERERERETVyu3btqvTYjz/+iLy8vA8YzbsZNWqUdL9EqhoOABIRERERERERfcQ+/fTTug6B3rPaed4zEREREREREVEt43NL6WNWm99/DgASERERERERUb2irPxywWJJSUkdR0JUd8q//+W/D++CA4BEREREREREVK8oKSlBSUkJ2dnZdR0KUZ3Jzs6W/i68K+4BSERERERERET1ioKCAvT09PDkyROoqalBQ0MDCgoKdR0W0QchCALy8vKQnZ2NNm3a1Mp3nwOARERERERERFTvNGvWDC9evEB6ejrS0tLqOhyiD0pBQQHNmzdHs2bNaqU9DgASERERERERUb2joKCANm3aQE9PD8XFxXUdDtEHpaKiUitLf8txAJCIiIiIiIiI6q3a2gON6GPWoB8CcuzYMYjF4gqfCnT9+nV4eXlBIpHA2toa/v7+yMvLk6mTn58Pf39/2NrawsLCAp6enrh+/fqHCp+IiIiIiIiIiOi9a7ADgElJSZg1a1aFx1JSUuDl5YWysjIsX74ckydPxr59+zBnzhyZerNmzUJ4eDimTp2KgIAAFBUVwcvLC48ePfoQXSAiIiIiIiIiInrvGtwS4NzcXGzatAmbN2+GpqZmhXU2bdoENTU1bNy4EU2bNgUA6OvrY9q0abh69Sq6dOmCy5cvIz4+HkFBQRgwYAAAwNbWFgMGDMCmTZvwww8/fKguERERERERERERvTcNbgbgnj17sGvXLvj5+WHMmDEV1jl58iTs7e2lg38A4OjoiCZNmiA+Ph4AcOLECaipqaFPnz7SOurq6ujTpw+OHTv2PrtARERERERERET0wTS4GYBOTk4YMWIEmjZtiqCgILnjBQUFePToEUxMTGTKVVRU0LZtW9y5cwcAcOfOHRgYGEBVVVWmnpGREZ48eYL8/Hyoq6tXO77i4mIIgoA//vij2ucSERERNUaqqqoQi8Xv3A7zLCIiIiJZVc2z6s0AYFFREQ4ePFjpcQ0NDbi4uMDIyOiN7eTk5AAAtLS05I5pampKHwSSk5NTaR3g5VLjmgwAKigoVPscIiIiIno75llERERENVNvBgALCgrw7bffVnrcwMAALi4ub22nrKwMwNsTREEQ3linpgmmRCKp0XlERERE9GbMs4iIiIhqpt4MAGpra+PWrVvv3E75rL7c3Fy5Y7m5uTAwMJDWS01NrbDOq+0QERERERERERE1ZA3uISBvo66uDn19fdy/f1+mvLi4GI8fP4apqSkAwMTEBI8ePUJJSYlMvfv378PAwABNmjT5YDETERERERERERG9L41uABAA7OzscOzYMbx48UJaFhcXh4KCAtjZ2UnrvHjxQuaJv/n5+UhISICtre2HDpmIiIiIiIiIiOi9qDdLgGvTxIkTERERgXHjxmH8+PFITU3FTz/9hL59+8LCwgIAYGlpCVtbW8ydOxezZs2Cnp4etmzZgsLCQvj4+NRtB4iIiIiIiIiIiGpJo5wBaGRkhJCQECgoKOCbb77Bhg0b4O7ujhUrVsjUCwwMhIuLC4KCgjBv3jyoqqoiJCQEhoaGdRQ5ERERERERERFR7VIQBEGo6yCIiIiIiIiIiIjo/WiUMwCJiIiIiIiIiIjoJQ4AEhERERERERERNWIcACQiIiIiIiIiImrEOABIRERERERERETUiHEAkIiIiIiIiIiIqBHjACAREREREREREVEjxgFAqtc8PT0xatSoug6D6J15enpCLBbD3d290jpLly6FWCyGp6fnO1/PyckJs2fPlr4Wi8VYtWrVO7dLVBd8fX1hb29f6fFX/1bU5O8G/9bQx4zff2osmGsR1QzzrI+Hcl0HQET0sVBUVMSNGzdw7949fPLJJzLHBEFAVFTUe7t2WFgY2rZt+97aJ6ovvv3227oOgYiI6ghzLaL3i3lWw8YZgEREH0jHjh2hrq6O6OhouWPnzp1DRkYG2rdv/16u3b17dyal9FEQi8UQi8V1HQYREdUB5lpE7xfzrIaNA4DU4J0+fRoeHh6wtLREz549MXPmTDx69AgAcOTIEYjFYly9elVaPyYmBmKxGFu2bJGWPXv2DB06dEBkZOQHj58+HmpqanBycqowKY2IiICdnR20tbVlyvfu3Qs3NzeYmZnB3t4eK1euRFFRkUydCxcuYPTo0bCwsEC/fv3w+++/y7X/6rKUpKQkiMVinD59WqbO7Nmz4eTkJH3t6emJBQsWYOPGjbC3t0fXrl3h7e2NtLQ0hIeHw9nZGRYWFhgxYgRu3rxZ4/eFqDa9vswkNzcXfn5+sLa2hkQiwTfffIPQ0NAKk9eQkBA4OTnB3Nwc7u7uOHXq1IcMnajeYq5FDQVzLaL3i3lWw8YBQGrQDh48iHHjxqFFixYICAjA3LlzcenSJYwYMQJpaWmwsbGBmpqazB/f8v9OSkqSlp04cQJKSkqws7P74H2gj4uLiwtu3bqFP//8U1pWUlKC33//HW5ubjJ1N2/ejH/961+QSCRYu3YtPD09ERoaijlz5kjrJCcnY+zYsVBUVMSKFSswceJELFy4EKmpqbUS7+HDhxEXF4cffvgB8+bNQ2JiIry8vPDLL79g2rRp8Pf3R0pKCmbOnFkr1yN6k5KSkgp/BEGo9JypU6ciMjISkydPxooVK5CVlYUVK1bI1bty5QoOHjyIOXPmYOXKlSgoKMDUqVORkZHxPrtEVO8x16KGhrkWUc0wz2r8uAcgNVhlZWVYvnw5rKysEBQUJC3v0aMHXF1dsXnzZsyfPx89e/bEqVOnMGnSJADAmTNnYGZmhvPnz6O0tBRKSko4fvw4LC0t5e4IEtW28jvP0dHRmDp1KgDg5MmTKCoqgqOjI7Zu3Qrg5d20NWvW4IsvvsDChQsBAA4ODtDX18fs2bNx6dIlSCQSbNy4Edra2ti8eTOaNGkCAPj000/h4eFRK/EWFhZi3bp1aNGiBQDg6NGjOHnyJKKiomBqagoASE1NxfLly5GZmQkdHZ1auS7R61JTU9G5c+dKj3fr1k2u7MyZM0hMTMTPP/+MgQMHAgD69OkDNzc33LlzR6aukpIS/vOf/0i/62pqapg4cSIuX74sM1uD6GPCXIsaIuZaRNXHPOvjwBmA1GDdvXsXaWlpcnfyjI2NIZFIcPbsWQCAo6MjLl26hBcvXuDJkye4d+8eJk+ejNzcXFy/fh2lpaU4deoU/+GhD0JVVRX9+vXD4cOHpWURERHo27cvmjZtKi0r/87269dP5g6co6MjFBUVpVPmz549Czs7O2lCCrzcg6ZNmza1Eq+JiYn0DzUAtGrVCtra2tKEFIA0Ec3Ozq6VaxJVpGXLltizZ0+FP5UlrImJiVBSUkL//v2lZUpKSnBxcZGra2pqKvNdNzIyAsDvNX3cmGtRQ8Rci6j6mGd9HDgDkBqsrKwsAICurq7cMV1dXTx+/BjAy6R04cKFOHfuHNLS0qCnp4e+fftCV1cXZ8+eRUlJCbKyspiU0gfj4uKCffv24c6dOzAwMMDRo0fx888/y9TJzMwEAEyZMqXCNsqXnWRlZVV4J1hPT69WYtXQ0JArezV5BgAFBYVauRbRmygrK8Pc3LzCYxoaGigpKZErz8zMhLa2NpSVZdOdli1bytV9/XutqPjyHmlZWVlNQyZq8JhrUUPFXIuoephnfRw4AEgNVvPmzQEA6enpcseePn0q/UPdtm1biEQinD59GhkZGbCysoKCggJ69uyJs2fPIjc3F6amptK7EETvm7W1NXR0dBAdHQ1TU1Ooqqqid+/eMnXKl0gtW7ZM5g5wufLvt46OToW/A5mZmZV+p8uTyNLSUpny3NzcSusSNUStW7fG8+fPUVxcDBUVFWn5s2fP6jAqooaDuRY1VMy1iN4/5lkND5cAU4NlYmKCVq1a4dChQzLlDx48wJUrV2BpaSkt69OnD06fPo0LFy6gV69eAIBevXrh/PnziI+P5x1p+qCUlZUxYMAA/P7774iOjoazs7PMH00A6Nq1K1RVVfHXX3/B3Nxc+qOpqYlly5ZJ99WwsbHB8ePHZRLK5ORkpKSkVHp9TU1NAMCTJ0+kZQUFBTJPcCRqDHr27ImysjIcOXJEWiYIAmJjY+swKqKGg7kWNVTMtYjeP+ZZDQ9nAFK99/TpU4SEhMiVGxkZYdasWZg/fz6mT5+OIUOG4Pnz51izZg20tLQwfvx4ad0+ffpg48aNAAArKysAL5PSvLw8JCcnw8/P74P0haicq6srdu7cibt37yI4OFjuuI6ODnx8fLBmzRpkZ2fD2toaz549w5o1a1BQUAAzMzMAL5+8FRsbCy8vL0ycOBEvXrzA6tWroaamVum1O3ToAAMDA6xbtw6amppQU1NDSEjIG5/wRdQQ9ejRAzY2NvDz88OzZ89gYGCAPXv24Pbt25xxQfQK5lrUGDHXInq/mGc1PBwApHrv4cOHWLJkiVx53759sW7dOmhoaGDDhg2YMWMGNDQ0YGNjg1mzZqF169bSuhKJBDo6OlBXV4ehoSGAlxtYt23bFi9evIBEIvlg/SECXv7B1NPTg6KiIrp3715hnenTp0NPTw9hYWEIDQ2FtrY2rKysMHPmTOneGoaGhggLC8OyZcvg6+sLLS0t+Pj4yM3WeJWioiKCgoKwZMkSzJs3D82bN8eIESNgZWWFffv2vZf+EtWVVatWYenSpQgMDERJSQn69euHkSNH4sCBA3UdGlG9wVyLGiPmWkTvH/OshkVB4G0IIiIiaoQePnyICxcuYMCAATKbT0+fPh0PHz7k/4QRERER1RDzrIaHMwCJiIioUVJSUsJ3332Ho0eP4ssvv4SSkhJOnDiBmJgYBAQE1HV4RERERA0W86yGhzMAiYiIqNFKTEzE2rVrcfPmTZSUlKB9+/YYP348XFxc6jo0IiIiogaNeVbDwgFAIiIiIiIiIiKiRkyxrgMgIiIiIiIiIiKi94cDgERERERERERERI0YBwCJiIiIiIiIiIgaMQ4AEhERERERERERNWIcACSiesHX1xdisVjmx8zMDDY2Npg8eTKSkpLqOkQ5KSkpKC0trfZ55X0tLCx8D1HVjuLiYuzevRseHh6wtraGubk5nJ2dsWrVKuTm5ta43bKyMjx48KAWIyUiIqL6ICgoCGKx+I05m5OTE5ycnGTKXs8NkpKSIBaLsWPHjgpfA4BYLMbMmTNl2qlpXlYZQRAQHR0Nb29v2NrawszMDE5OTvD390daWto7tX3v3r3aCZKIqBo4AEhE9cr8+fMREBCAgIAA+Pn5YcSIEbh9+za8vLwQFhZW1+FJ7d27F66urigpKanrUGpdeno6PD098d1330FHRwcTJ06Er68vOnXqhI0bN2LEiBHIzMysdru5ubkYPnw4du3a9R6iJiIiooamotzA1NQUAQEBsLa2rvS8gIAAeHh4SF/Xdl6Wl5eHqVOnYsaMGSgtLYWXlxcWLFgAGxsb7Ny5E+7u7khJSalR297e3ggMDKyVOImIqkO5rgMgInpVv3790K5dO5myCRMmYPz48Vi8eDEkEgk6depUR9H97dy5c/V6Bl9NCYKA2bNn48aNG9i8eTNsbW2lxzw8PNCvXz/MmjULvr6+2LBhQ7XazsrKwh9//IFevXrVdthERETUAFWUG+jq6mLIkCFvPO/147Wdly1atAhxcXFYunQp3N3d5a49btw4TJkyBeHh4VBQUKhW2ydPnoSLi0utxUpEVFWcAUhE9Z66ujqWLl0KQRCwcePGug6nUTt69CjOnDmDiRMnygz+lXNxcYG9vT1OnDhR4zvfRERERPXVzZs3sW/fPri7u8sN/gFA9+7dMXToUPz3v//FuXPn6iBCIqKa4QAgETUIn3zyCSQSCU6cOCGzv0tqairmz5+P3r17w8zMDIMGDapwqXBWVhb8/f1hb28PMzMz9O3bFytXrsSLFy+kdR4+fAixWIx9+/ZhzZo1cHR0hLm5Odzc3BAVFSWt5+npif379wMAunTpAl9fX+mxCxcuwNvbG926dUPXrl0xcuRIHDly5K39q0p8wMu9+VavXg0nJyd06dIFw4YNw7lz59C/f39pHN988w06deqEZ8+eyZxbVlYGW1tbTJ48udI4IiIiAAAjRoyotI6/vz/OnDkDQ0NDadnZs2cxadIk9OrVC507d4aNjQ1mz56NJ0+eAHi5f0/fvn0BAJs2bYJYLMbDhw8BAEVFRQgMDET//v1hZmaGPn36YOnSpXJ7DVal7+Xi4uIwevRodO3aFd26dcO4ceNw/vx5mTq+vr7o378/du/eDSsrK1haWmLNmjUQi8Xw9/eX6/f27dshFotx48aNSt8bIiIiqprKcoOK9vx73at7AFaUl/30008Qi8W4du2a3LnDhg3D4MGDK227PBcaOXJkpXWmTZuGU6dOoWfPntKy5ORkzJw5E7a2tujcuTOsrKwwZcoU3L59G8DfeSYAREVFyeyXWFZWhpCQELi6usLc3Bw2NjZYsGAB0tPT5a4dGhoKZ2dndOnSBW5uboiJicHYsWPh6ekpU68qOWlQUBA6deqE+Ph42NnZwcLCAmvWrEGXLl0wadIkuWsnJCRALBYjNja20veGiOovLgEmogZDJBLhwoULePjwIYyNjZGamoqhQ4eipKQEo0aNQsuWLXHy5EksXLgQd+/exbfffgsAyM7OxqhRo3D//n0MGzYMYrEYV65cwcaNG3H+/Hn8+uuvUFVVlV5nzZo1UFJSwpgxY6CkpITg4GDMmjULpqamEIvFmDRpEsrKynD+/Hn8+9//xqeffgoAiI+Px9SpU6Gvrw8fHx80adIEBw8exNSpU/Hdd99hzJgxFfarOvHNmTMH0dHRcHV1haWlJc6ePYvx48dDWfnvf84HDx6MiIgIHD58WGZ/nKSkJKSlpcHNza3S9/jatWswMDBAq1atKq3TunVrmddnzpyBt7c3OnXqhClTpkBFRQXnz59HREQE/vrrL2zbtg2mpqaYP38+lixZAkdHRwwcOBAtWrRAaWkpvv76a5w7d07a91u3bmHr1q04f/48tm/fXq2+Ay8H6n788UeIRCJMnz4dJSUl2L17N7y8vBAYGIh+/fpJ6z59+hQrVqzApEmT8Pz5c7i7u+PYsWP4/fffsWDBAigq/n2fLDIyEqampvViCToREVFDV1lu8OjRo2q1U1Fepq2tjQ0bNiAqKgpmZmbSuikpKbh69Spmz55daXvXrl2DiorKG//et2jRQub1//73P4wcORL6+voYN24ctLS0cO3aNezbtw+3bt1CbGwsWrRogYCAAMydOxcWFhYYPXo0TE1NAQALFizA/v374ebmhjFjxuDhw4fYvn07EhMTsWfPHujo6AAAli9fjs2bN8POzg6enp5ITk7GjBkzoKmpKR1cBKqXk5aVlWHu3LkYP348FBUVYW1tjdu3b+Po0aPIzs6Gtra2tG5kZCS0tbXh4OBQxU+HiOoVgYioHpg3b54gEomElJSUSuv89NNPgkgkEi5fviw9p1u3bnLn+Pv7CyKRSLh586YgCIKwcuVKQSQSCQcPHpSp95///EcQiURCSEiIIAiCkJKSIohEIqF3795Cdna2tF5SUpIgEomElStXysVbUFAgCIIglJSUCA4ODoK1tbWQmZkprVdYWCi4u7sL5ubmQlpaWoXnVjW+s2fPCiKRSFi0aFGF/Z03b54gCIJQXFwsWFtbCx4eHjL1FixYIEgkEuHFixeVvsddunQRhg8fXunxivj4+Ag2NjZCfn6+TPnkyZMFkUgkZGRkCILw9/u7fPlyaZ29e/cKIpFIiImJkTk3JiZGEIlEQmhoaLX6npmZKVhYWAiDBg2Svr+CIAjZ2dmCvb29YGNjIxQWFgqC8PfnEBYWJtNmaGioIBKJhDNnzkjLnjx5IojFYmHdunXVem+IiIg+FqtXrxZEIpGQmJhYaR1HR0fB0dFR+rqi3CAxMVEQiUTC9u3bK3wtCIIgEomEGTNmSF+/nlsJgiC4u7vLXEsQBGHdunWCWCwWHj9+XGmMAwcOFGxsbKrQ47/98MMPQufOnYXU1FSZ8kWLFgkikUi4du1apbGX9y84OFjm3KtXrwodO3YUlixZIgiCIDx48EDo2LGjMGXKFKGsrExab8uWLYJIJBLGjBkjCEL1ctLyzywgIEDm2kePHhVEIpGwZ88eaVlBQYEgkUiEBQsWVOu9IaL6g0uAiajBKH+ym4KCAsrKynDkyBFIJBKoq6sjIyND+uPs7AwAOHbsGADgyJEjaNeundzMN09PT2hqasoth7Czs4OWlpb0dfkd4IqWYZS7fv06njx5gtGjR6N58+bSclVVVUyYMAGFhYU4fvx4hedWNb7y5RYTJkyQqff6Eg1lZWW4uLjgwoULSE1NBfBymW1MTAwGDBiAJk2aVNoPJSWlaj9Bb/369Th06BCaNm0qLcvNzZW+fn0Z86tiYmKgoaEBS0tLmc/Q0tISzZo1Q3x8PICq9/306dPIz8/H+PHjoaamJi3X0tKCh4cH0tLScOnSJZlz7OzsZF67urpCWVlZZtl3ZGQkBEHAoEGD3vp+EBERUd0bPHgwHj16hMuXL0vLIiMj0aNHD7Rp06bS82qSC/n5+eH48ePQ09OTlhUUFEBFRQUAkJ+fX+m5MTExAAAnJyeZXMjAwADt27eX5kJxcXEoLS3F+PHjZR484uHhAU1NTenrmuSkr+dCdnZ20NHRkcmF4uPjkZeX98aVJERUv3EJMBE1GFlZWQAAHR0dZGRkICcnBydOnIC1tXWF9R8/fgzg5Z4rPXv2lHtKm4qKCoyMjOSWmry+rKM8eSsrK6s0tvL97MqXA7+qvKyyJS1Vje/Bgwdo2rSp3BJcXV1dmeUZwMukd+vWrTh8+DC8vLxw4sQJPH/+/K1JW6tWreT2DnwbJSUlpKamYv369bh9+zYePHiAR48eQRAEAG9+3+7fv4+8vLxKP8Pq9v1Nn0P5MpvXP4eWLVvKvG7RogVsbGwQExMDPz8/KCsrIyIiAhKJRGbfQyIiIvpb+Y23V/dqfl1JSQk0NDQ+SDyurq4ICAhAVFQULCwskJycjNu3b1e4z++r9PT0cOfOHRQXF0tzwLdRUFBAbm4ugoODkZycjAcPHiAlJUX6XrwtFwKA/v37V3i8PIYHDx4AAExMTGSOq6qqyuQnNclJX8+FVFRUMHDgQOzatQsZGRlo0aIFIiIioK+vjx49elTaFyKq3zgASEQNxs2bN9GsWTO0a9cOaWlpAF7eLX190+Ny5XdhyweiKlJSUiKX3L2671tVveka5cnfq/sMVvXcV+MrLi6utI3XdenSBZ9++imio6Ph5eWFqKgotGrVCr169XrjeZaWlti7dy9SU1PlBtvKHT16FNu3b8fEiRNhZWWF3bt349tvv4WxsTG6d+8OBwcHmJubIzY2FsHBwW+8XllZGQwMDLBo0aIKj5f/z0R1+l6Zyj4HJSUlubpDhgxBQkICEhMTYWBggBs3bsDPz++drk9ERNSYNWvWDADkHuL1quzsbLRt2/aDxNOqVStYW1vj8OHDmD9/PqKioqCiooLPP//8jed169YNJ0+exNWrV2FpaVlhnevXr2PJkiUYM2YMnJ2dcfz4cUyZMgU6OjqwtrZGz549YWZmhlu3bmHJkiVvvJ4gCFBTU8Mvv/zyxnrFxcUAKs8nX22vMpXlQhXlvkOGDMH27dsRGxsLV1dXJCQkwNPTs0Z5MhHVD/ztJaIG4e7du7hx4wacnJygoKCAFi1aoGnTpigqKkLv3r1lfjp06ICcnBzpEtR27drhzz//lEuIioqK8OjRozcuA6mqdu3aAQDu3Lkjd+zPP/8EAOjr61d6blXiMzY2xvPnz5GRkSFTLzMzE9nZ2XLturm54fLly3jy5AkSEhLg4uJS4WDXq8qT4l27dlVaZ8+ePTh58iRUVFRQWFiIxYsXo1u3boiMjMS///1vjB07Vrqk923atWuHzMxM9OzZU+5zzMrKkn6GVe37u3wOr+rbty80NDQQGxuLI0eOQFlZGQMHDnzreURERB+r9u3bAwD++9//Vnj83r17ePHiBUQi0QeLafDgwUhNTcXVq1dx5MgRODg4SAcqK9O/f38oKChg9+7dldbZv38/zp07Jx2U+/HHH6Gvr4/o6GgEBATAx8cH1tbWeP78+VtjNDAwQGFhIT777DO5XKigoEC6dYuxsTGAlznxq0pLS2Vm9NVWLmRhYQFjY2PExsbi+PHjKCoqeuPTk4mo/uMAIBHVe4WFhfDz84OSkhK8vb0BvNznzsHBAadPn8bVq1dl6q9evRrTp0/H//73PwBAv3798OjRIxw6dEim3tatW5GXl4e+fftWO6byu5/lSzo6d+4MfX19/Pbbb9KlysDLQbzg4GCoqKjI7a9SrqrxDRgwAMDLp9y+KiQkpMJ2y5O0FStWICcnp0p7tjg4OKBHjx7YvHkzTp06JXd8586diIuLQ69evdCtWzcUFBTgxYsXMDY2lplJmZKSgri4OAB/320uH3x8dRmMk5MT8vPzERoaKnOdqKgozJw5ExEREdXqe+/evdG0aVMEBwejsLBQWp6Tk4Pt27ejZcuWsLCweOv70KRJE3z++eeIj49HQkICbG1t5ZaGExER0d+6dOmC1q1bY+fOnRXum7xlyxYAkO7VDFScG9TE63lZuf79+0NdXR2hoaG4c+dOlXIhkUiEwYMH4+DBgzhw4IDc8YSEBGzfvh0mJibSvmRlZaFNmzYye/FlZmbi4MGDAGSXRSsqKsrEWZ7nvT4D8PLly5gyZQp+/fVXaV8UFRXlcqF9+/bJ3Ax9l5z0dYMHD0ZSUhKio6Px2WefoUOHDlU6j4jqJy4BJqJ65ciRI9DR0QHw9wy4yMhIpKSk4IcffsBnn30mrTt79mwkJSXBy8sLo0aNgrGxMRITExEVFYU+ffpIkxsfHx/ExMTA19cXFy9ehFgsxpUrV3DgwAFYWFhgxIgR1Y5TV1cXALB27VrY2NjA2toafn5+mDZtGr744gsMHz4campqOHjwIG7evIlvv/220gGkqsbXq1cvfP755wgKCsL9+/chkUhw5coVHD58GADk9hBs164dunXrhoiICJiYmMDc3LxKfVu5ciXGjRuHCRMmoH///ujRowdKS0tx+vRpJCQk4JNPPkFAQACAl8t9JBIJwsPD0axZM7Rv3x737t3D7t27UVRUBADIy8sDADRv3hxKSkpISEiAiYkJBgwYgGHDhiE8PBzLli3DzZs3YWlpifv37yMsLAwGBgbSAd+q9r158+aYM2cOFi5ciKFDh8Ld3R0lJSXYtWsX0tPTERgYCGXlqv3pGzx4MPbt24fU1FSsXLmySucQERF9rFRUVODv749p06bhH//4B7788ksYGhoiNzcXcXFxSEpKwqhRo9C7d2/pORXlBjVRUV4GAOrq6ujXrx/Cw8OhpaUFR0fHKrXn5+eHhw8fYt68eQgPD4e9vT2UlZVx8eJFREVFoWXLlggKCpLe/OzTpw8iIiLwr3/9CxKJBH/99Rd2794tHYArz4WAl/vtXbhwATt37oSdnR0cHBwwYMAAbNu2DY8ePYKdnR2ePXuGbdu2QVtbG9OnTwcAGBkZYezYsdiyZQsyMjJgb2+PP//8E7t27ZK5CausrFzjnPR1gwcPRlBQEGJiYjBr1qwqnUNE9RcHAImoXnl1nxRlZWXpjK0lS5age/fuMnUNDQ2xe/durF69GgcOHEBOTg7atm2LadOmYcKECdK7wdra2tixYweCgoJw5MgR7NmzB23btsXkyZMxadKkGu0tN2rUKJw5cwYhISG4efMmrK2t0bdvX4SGhmLt2rXYsGEDgJd3YdevXw8nJ6dK26pOfMuXL4ehoSHCw8MRHR2NTp06YePGjfjqq68q3Kh6yJAhuHDhQrWe2FZ+9/63335DdHQ0kpKSkJeXByMjI0ydOhXe3t4yG3gHBgZi6dKlCA8PR0FBAfT19TFixAg4ODjAw8MDp0+fRqdOndC0aVPMmjULmzZtwqJFi2BkZAQrKysEBwdj/fr1iI6ORnR0NHR1dTFo0CBMmzZNZlPqqvbdw8MDrVu3xubNmxEYGAhVVVV07doVy5Ytq3Qvn4pYWVmhdevWyMnJqdEsUSIioo+Ng4MDdu7ciS1btiA8PBzp6enQ1NSEqakpVq5ciUGDBsnUryg3qImK8rJyQ4YMQXh4OAYMGCDdW/htNDU1ERwcjH379uHgwYPYsGEDcnJyoK+vj6+++gpff/21TI7y/fffQ0NDA3FxcYiMjETr1q2l+1S7urri9OnT0od8zJkzB8uXL8eiRYvg7++Pf/zjH1i1ahW2bNmCAwcOYMmSJWjevDl69eqFf/7zn9KHmJWfq6Ojg127duHUqVMwMTHB6tWr8d1338nkizXNSV9nZGQEiUSCy5cvy312RNTwKAhv2iWUiIjqjZycHKioqEj3gimXnp4OGxsbTJkyBf/85z9lju3cuRPff/89YmNjG/QTbGvS93dVVlaGPn36oHfv3li6dGmttk1EREQfxsmTJ+Ht7Y3Q0FBYWVnVdTg1lp+fD0EQ5J6iLAgCLCws8Pnnn0tXaNSmkSNHQkVFBVu3bq31tonow+IegEREDcTRo0dhYWGBM2fOyJRHRUUBeLn3zqvKl75aWVk16ME/oPp9rw1xcXFITU3F0KFDa71tIiIi+jB27NgBIyMj9OzZs65DeSc3btxAt27dsHfvXpnyuLg4FBQUvJdc6MaNG7h06RK+/PLLWm+biD48zgAkImogMjMz4ezsDBUVFYwePRqtWrVCcnIydu7cCYlEgl9//RWKiopIS0vD4sWLcffuXSQnJ2PLli2wsbGp6/DfSVX7XhtCQkJw8eJFnDhxAmKxGL/99luttEtEREQfRllZGWbOnInU1FRcunQJ/v7+GD58eF2H9U6Ki4sxaNAgpKenw8PDA4aGhrh//z527NiB1q1bY+/evWjatGmtXCs8PBxxcXE4c+YMNDU1ER0dXaMtc4iofuEegEREDYSOjg527NiBtWvXYseOHdInznl7e2PKlCnSAbBmzZrh4sWLKCwshK+vb4Mf/AOq3vfaIAgCjh8/jo4dO/LhH0RERA2QoqIiUlJScO/ePXh7e2PYsGF1HdI7U1FRke7rd+jQIaSnp6Nly5Zwd3fHtGnTam3wD3i5D3dCQgIMDQ0REBDAwT+iRoIzAImIiIiIiIiIiBox7gFIRERERERERETUiHEAkIiIiIiIiIiIqBHjACAREREREREREVEjxgFAIiIiIiIiIiKiRowDgERERERERERERI0YBwCJiIiIiIiIiIgaMQ4AEhERERERERERNWIcACQiIiIiIiIiImrEOABIRERERERERETUiP0/Pkuf/Mr4+1YAAAAASUVORK5CYII=", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "analysis_utils.make_deont_util_plot(scenario_name, plot_df, plots_path)" + "analysis_utils.make_deont_util_plot(SCENARIO_NAME, plot_df, plots_path)" ] } ], "metadata": { "kernelspec": { - "display_name": "env-01", + "display_name": "base", "language": "python", "name": "python3" }, @@ -1448,7 +509,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.16" + "version": "3.11.4" } }, "nbformat": 4, diff --git a/annotated_outputs/cheung_variants/lifeboat_1_choice_1.json b/annotated_outputs/cheung_variants/lifeboat_1_choice_1.json index eb1be6de..b992d1b2 100644 --- a/annotated_outputs/cheung_variants/lifeboat_1_choice_1.json +++ b/annotated_outputs/cheung_variants/lifeboat_1_choice_1.json @@ -1,14 +1,14 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "order for the 10 weakest passengers from lifeboat B to be sent overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "10 weakest passengers from Lifeboat B are thrown into the ocean"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Lifeboat B becomes more stable"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The remaining passengers and crew in Lifeboat B face a lower immediate risk of the boat sinking"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I give an order that causes the deaths of 10 passengers"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The people in Lifeboat B experience fear and distress"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The people ordered overboard experience terror and suffering"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I experience the burden of responsibility for ordering the passengers overboard"}]} -{"node": {"kind": "being", "label": "60 other passengers and crew members in lifeboat b"}, "links": []} -{"node": {"kind": "being", "label": "10 weakest passengers in lifeboat b"}, "links": []} -{"node": {"kind": "being", "label": "other crew members and passengers in lifeboat a"}, "links": []} -{"node": {"kind": "action_choice", "label": "order for the 10 weakest passengers from lifeboat B to be sent overboard"}, "links": [{"link": {"kind": "v-link", "value": "-47.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "10 weakest passengers from Lifeboat B are thrown into the ocean"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes more stable"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The remaining passengers and crew in Lifeboat B face a lower immediate risk of the boat sinking"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I give an order that causes the deaths of 10 passengers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The people in Lifeboat B experience fear and distress"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The people ordered overboard experience terror and suffering"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I experience the burden of responsibility for ordering the passengers overboard"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "physically throw 10 passengers from lifeboat B overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Ten passengers are in the freezing ocean."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Ten passengers experience panic and cold shock."}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "Ten passengers die from hypothermia or drowning."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Lifeboat B becomes stable enough to stay afloat."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The remaining people in Lifeboat B avoid the immediate danger of the boat sinking."}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "Passengers and crew in both lifeboats experience shock, fear, and grief."}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "I experience the immediate psychological burden of killing ten passengers."}]} +{"node": {"kind": "being", "label": "the other occupants of lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "10 passengers in lifeboat b who would be thrown overboard"}, "links": []} +{"node": {"kind": "being", "label": "51 remaining occupants of lifeboat b"}, "links": []} +{"node": {"kind": "action_choice", "label": "physically throw 10 passengers from lifeboat B overboard"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Ten passengers are in the freezing ocean."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Ten passengers experience panic and cold shock."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Ten passengers die from hypothermia or drowning."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes stable enough to stay afloat."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The remaining people in Lifeboat B avoid the immediate danger of the boat sinking."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Passengers and crew in both lifeboats experience shock, fear, and grief."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I experience the immediate psychological burden of killing ten passengers."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "10 weakest passengers from Lifeboat B are thrown into the ocean"}, "links": [{"link": {"kind": "utility", "value": "-95"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "60 other passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 weakest passengers in lifeboat b"}, {"link": {"kind": "utility", "value": "2"}, "to_node": "other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "Lifeboat B becomes more stable"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "60 other passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "10 weakest passengers in lifeboat b"}, {"link": {"kind": "utility", "value": "2"}, "to_node": "other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "The remaining passengers and crew in Lifeboat B face a lower immediate risk of the boat sinking"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "60 other passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "10 weakest passengers in lifeboat b"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "I give an order that causes the deaths of 10 passengers"}, "links": [{"link": {"kind": "utility", "value": "-95"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "60 other passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 weakest passengers in lifeboat b"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "The people in Lifeboat B experience fear and distress"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "60 other passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "10 weakest passengers in lifeboat b"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "The people ordered overboard experience terror and suffering"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "60 other passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 weakest passengers in lifeboat b"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "I experience the burden of responsibility for ordering the passengers overboard"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "60 other passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "10 weakest passengers in lifeboat b"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "other crew members and passengers in lifeboat a"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "Ten passengers are in the freezing ocean."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "the other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 passengers in lifeboat b who would be thrown overboard"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "51 remaining occupants of lifeboat b"}]} +{"node": {"kind": "event", "label": "Ten passengers experience panic and cold shock."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "the other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "10 passengers in lifeboat b who would be thrown overboard"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "51 remaining occupants of lifeboat b"}]} +{"node": {"kind": "event", "label": "Ten passengers die from hypothermia or drowning."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "the other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 passengers in lifeboat b who would be thrown overboard"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "51 remaining occupants of lifeboat b"}]} +{"node": {"kind": "event", "label": "Lifeboat B becomes stable enough to stay afloat."}, "links": [{"link": {"kind": "utility", "value": "75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "20"}, "to_node": "the other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "10 passengers in lifeboat b who would be thrown overboard"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "51 remaining occupants of lifeboat b"}]} +{"node": {"kind": "event", "label": "The remaining people in Lifeboat B avoid the immediate danger of the boat sinking."}, "links": [{"link": {"kind": "utility", "value": "65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "the other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 passengers in lifeboat b who would be thrown overboard"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "51 remaining occupants of lifeboat b"}]} +{"node": {"kind": "event", "label": "Passengers and crew in both lifeboats experience shock, fear, and grief."}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "the other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "10 passengers in lifeboat b who would be thrown overboard"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "51 remaining occupants of lifeboat b"}]} +{"node": {"kind": "event", "label": "I experience the immediate psychological burden of killing ten passengers."}, "links": [{"link": {"kind": "utility", "value": "-90"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "the other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 passengers in lifeboat b who would be thrown overboard"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "51 remaining occupants of lifeboat b"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/lifeboat_1_choice_2.html b/annotated_outputs/cheung_variants/lifeboat_1_choice_2.html index bc31cf0e..a2eb70d3 100644 --- a/annotated_outputs/cheung_variants/lifeboat_1_choice_2.html +++ b/annotated_outputs/cheung_variants/lifeboat_1_choice_2.html @@ -3,8 +3,8 @@ @@ -60,65 +60,44 @@ } function return_vis_dataset() { var nodes = new vis.DataSet([ - {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "other people in lifeboat a", color: {background: '#279aba'}}, - {id: 3, label: "10 adults who might leave\n lifeboat b", color: {background: '#279aba'}}, - {id: 4, label: "51 remaining people in lifeboat\n b", color: {background: '#279aba'}}, - {id: 5, label: "do not reply", color: {background: '#ba2769'}}, + {id: 1, label: "i, the captain in lifeboat\n a", color: {background: '#279aba'}}, + {id: 2, label: "the other crew members and\n passengers in lifeboat a", color: {background: '#279aba'}}, + {id: 3, label: "61 passengers and crew members\n in lifeboat b", color: {background: '#279aba'}}, + {id: 4, label: "i", color: {background: '#279aba'}}, + {id: 5, label: "do nothing", color: {background: '#ba2769'}}, {id: 6, label: "value", color: {background: '#8e7db5'}}, - {id: 7, label: "People in Lifeboat B receive\n no instructions from me", color: {background: '#e6c440'}}, - {id: 8, label: "Overcrowding in Lifeboat B continues", color: {background: '#e6c440'}}, - {id: 9, label: "Lifeboat B remains unstable in\n the storm", color: {background: '#e6c440'}}, - {id: 10, label: "People in Lifeboat B remain\n in immediate danger of the\n lifeboat sinking", color: {background: '#e6c440'}}, - {id: 11, label: "No one is ordered by\n me to leave Lifeboat B", color: {background: '#e6c440'}}, - {id: 12, label: "No one is sent into\n the freezing water because of\n me", color: {background: '#e6c440'}}, - {id: 13, label: "I avoid directly causing people\n to be thrown overboard to\n freeze to death", color: {background: '#e6c440'}} + {id: 7, label: "Lifeboat B remains dangerously overcrowded", color: {background: '#e6c440'}}, + {id: 8, label: "Lifeboat B sinks", color: {background: '#e6c440'}}, + {id: 9, label: "The 61 passengers and crew\n members in Lifeboat B die\n from exposure and drowning", color: {background: '#e6c440'}}, + {id: 10, label: "The people in Lifeboat A\n and I remain in a\n stable lifeboat.", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 8, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 9, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C+I+K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 12, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 13, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 6, label: "-38.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 9, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 10, label: "C-I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 6, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 13, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 4, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 4, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 4, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "-96", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 1, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 3, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 4, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 1, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 2, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 3, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 4, label: "78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "-18", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "-5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 4, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-20", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 2, label: "75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "3", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 4, label: "70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/lifeboat_1_choice_2.json b/annotated_outputs/cheung_variants/lifeboat_1_choice_2.json index 1dbba554..01af02a2 100644 --- a/annotated_outputs/cheung_variants/lifeboat_1_choice_2.json +++ b/annotated_outputs/cheung_variants/lifeboat_1_choice_2.json @@ -1,14 +1,11 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do not reply"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "People in Lifeboat B receive no instructions from me"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "Overcrowding in Lifeboat B continues"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "Lifeboat B remains unstable in the storm"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "People in Lifeboat B remain in immediate danger of the lifeboat sinking"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "No one is ordered by me to leave Lifeboat B"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "No one is sent into the freezing water because of me"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I avoid directly causing people to be thrown overboard to freeze to death"}]} -{"node": {"kind": "being", "label": "other people in lifeboat a"}, "links": []} -{"node": {"kind": "being", "label": "10 adults who might leave lifeboat b"}, "links": []} -{"node": {"kind": "being", "label": "51 remaining people in lifeboat b"}, "links": []} -{"node": {"kind": "action_choice", "label": "do not reply"}, "links": [{"link": {"kind": "v-link", "value": "-38.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B receive no instructions from me"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Overcrowding in Lifeboat B continues"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B remains unstable in the storm"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B remain in immediate danger of the lifeboat sinking"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "No one is ordered by me to leave Lifeboat B"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "No one is sent into the freezing water because of me"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid directly causing people to be thrown overboard to freeze to death"}]} +{"node": {"kind": "being", "label": "i, the captain in lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "the other crew members and passengers in lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "61 passengers and crew members in lifeboat b"}, "links": []} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Lifeboat B remains dangerously overcrowded"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Lifeboat B sinks"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The 61 passengers and crew members in Lifeboat B die from exposure and drowning"}, {"link": {"kind": "b_link", "value": "C-I+K+"}, "to_node": "The people in Lifeboat A and I remain in a stable lifeboat."}]} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B remains dangerously overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B sinks"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 61 passengers and crew members in Lifeboat B die from exposure and drowning"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The people in Lifeboat A and I remain in a stable lifeboat."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "People in Lifeboat B receive no instructions from me"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Overcrowding in Lifeboat B continues"}, "links": [{"link": {"kind": "utility", "value": "-78"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Lifeboat B remains unstable in the storm"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "People in Lifeboat B remain in immediate danger of the lifeboat sinking"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "-96"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "No one is ordered by me to leave Lifeboat B"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "No one is sent into the freezing water because of me"}, "links": [{"link": {"kind": "utility", "value": "85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "I avoid directly causing people to be thrown overboard to freeze to death"}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "51 remaining people in lifeboat b"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "Lifeboat B remains dangerously overcrowded"}, "links": [{"link": {"kind": "utility", "value": "-18"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-5"}, "to_node": "the other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "61 passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "Lifeboat B sinks"}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "the other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "61 passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "The 61 passengers and crew members in Lifeboat B die from exposure and drowning"}, "links": [{"link": {"kind": "utility", "value": "-65"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "the other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "61 passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "The people in Lifeboat A and I remain in a stable lifeboat."}, "links": [{"link": {"kind": "utility", "value": "60"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "the other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "3"}, "to_node": "61 passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "i"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/lifeboat_2_choice_1.json b/annotated_outputs/cheung_variants/lifeboat_2_choice_1.json index bf21c494..062b3e86 100644 --- a/annotated_outputs/cheung_variants/lifeboat_2_choice_1.json +++ b/annotated_outputs/cheung_variants/lifeboat_2_choice_1.json @@ -1,12 +1,12 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "order for the random selection of 10 passengers from lifeboat B to be sent overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "10 passengers from Lifeboat B die from freezing in the water"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Lifeboat B becomes less overcrowded"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The remaining people in Lifeboat B face a lower immediate risk of the boat sinking"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I give an order that causes the deaths of 10 passengers"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The people in Lifeboat B experience fear and distress"}]} -{"node": {"kind": "being", "label": "other people in lifeboat a"}, "links": []} -{"node": {"kind": "being", "label": "10 randomly selected people from lifeboat b to be sent overboard"}, "links": []} -{"node": {"kind": "being", "label": "51 remaining people in lifeboat b"}, "links": []} -{"node": {"kind": "action_choice", "label": "order for the random selection of 10 passengers from lifeboat B to be sent overboard"}, "links": [{"link": {"kind": "v-link", "value": "-41.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "10 passengers from Lifeboat B die from freezing in the water"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes less overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The remaining people in Lifeboat B face a lower immediate risk of the boat sinking"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I give an order that causes the deaths of 10 passengers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The people in Lifeboat B experience fear and distress"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "remove the barrier protecting 10 passengers from falling overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Ten passengers from Lifeboat B fall into the ocean."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Ten passengers are exposed to freezing seawater."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Lifeboat B has ten fewer people aboard."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Lifeboat B becomes stable and no longer sinks from overcrowding."}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "Ten passengers die from freezing."}]} +{"node": {"kind": "being", "label": "several other crew members and passengers in lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "10 passengers in lifeboat b who are currently being kept from falling overboard by the barrier"}, "links": []} +{"node": {"kind": "being", "label": "51 other passengers and crew members in lifeboat b"}, "links": []} +{"node": {"kind": "action_choice", "label": "remove the barrier protecting 10 passengers from falling overboard"}, "links": [{"link": {"kind": "v-link", "value": "-59.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Ten passengers from Lifeboat B fall into the ocean."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Ten passengers are exposed to freezing seawater."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B has ten fewer people aboard."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes stable and no longer sinks from overcrowding."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Ten passengers die from freezing."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "10 passengers from Lifeboat B die from freezing in the water"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 randomly selected people from lifeboat b to be sent overboard"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Lifeboat B becomes less overcrowded"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 randomly selected people from lifeboat b to be sent overboard"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "The remaining people in Lifeboat B face a lower immediate risk of the boat sinking"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 randomly selected people from lifeboat b to be sent overboard"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "I give an order that causes the deaths of 10 passengers"}, "links": [{"link": {"kind": "utility", "value": "-95"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 randomly selected people from lifeboat b to be sent overboard"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "The people in Lifeboat B experience fear and distress"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 randomly selected people from lifeboat b to be sent overboard"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "51 remaining people in lifeboat b"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "Ten passengers from Lifeboat B fall into the ocean."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 passengers in lifeboat b who are currently being kept from falling overboard by the barrier"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "51 other passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "Ten passengers are exposed to freezing seawater."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "10 passengers in lifeboat b who are currently being kept from falling overboard by the barrier"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "51 other passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "Lifeboat B has ten fewer people aboard."}, "links": [{"link": {"kind": "utility", "value": "20"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 passengers in lifeboat b who are currently being kept from falling overboard by the barrier"}, {"link": {"kind": "utility", "value": "20"}, "to_node": "51 other passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "Lifeboat B becomes stable and no longer sinks from overcrowding."}, "links": [{"link": {"kind": "utility", "value": "80"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "10 passengers in lifeboat b who are currently being kept from falling overboard by the barrier"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "51 other passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "Ten passengers die from freezing."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 passengers in lifeboat b who are currently being kept from falling overboard by the barrier"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "51 other passengers and crew members in lifeboat b"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/lifeboat_2_choice_2.html b/annotated_outputs/cheung_variants/lifeboat_2_choice_2.html index 7ec3718d..796160ef 100644 --- a/annotated_outputs/cheung_variants/lifeboat_2_choice_2.html +++ b/annotated_outputs/cheung_variants/lifeboat_2_choice_2.html @@ -3,8 +3,8 @@ @@ -61,57 +61,36 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "other people in lifeboat a", color: {background: '#279aba'}}, - {id: 3, label: "10 adults who might leave\n lifeboat b", color: {background: '#279aba'}}, - {id: 4, label: "51 remaining people in lifeboat\n b", color: {background: '#279aba'}}, - {id: 5, label: "do not reply", color: {background: '#ba2769'}}, + {id: 2, label: "several other crew members and\n passengers in lifeboat a", color: {background: '#279aba'}}, + {id: 3, label: "10 passengers in lifeboat b\n who are being kept from\n falling over by the protective\n barrier", color: {background: '#279aba'}}, + {id: 4, label: "51 other passengers and crew\n members in lifeboat b", color: {background: '#279aba'}}, + {id: 5, label: "do nothing", color: {background: '#ba2769'}}, {id: 6, label: "value", color: {background: '#8e7db5'}}, - {id: 7, label: "People in Lifeboat B receive\n no instructions from me", color: {background: '#e6c440'}}, - {id: 8, label: "Lifeboat B remains overcrowded", color: {background: '#e6c440'}}, - {id: 9, label: "No adults leave Lifeboat B\n because of my decision", color: {background: '#e6c440'}}, - {id: 10, label: "People in Lifeboat B remain\n in immediate danger of the\n boat sinking", color: {background: '#e6c440'}}, - {id: 11, label: "I avoid ordering anyone into\n the freezing water", color: {background: '#e6c440'}}, - {id: 12, label: "People in Lifeboat B avoid\n immediate forced exposure to the\n freezing water", color: {background: '#e6c440'}} + {id: 7, label: "Lifeboat B remains dangerously overcrowded", color: {background: '#e6c440'}}, + {id: 8, label: "Lifeboat B sinks", color: {background: '#e6c440'}}, + {id: 9, label: "The 61 people in Lifeboat\n B die from cold-water exposure\n and drowning", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 12, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 6, label: "-38.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 9, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 6, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 4, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 4, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 4, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 2, label: "-10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 4, label: "88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "-10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 4, label: "-80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-20", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 4, label: "-98", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 4, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/lifeboat_2_choice_2.json b/annotated_outputs/cheung_variants/lifeboat_2_choice_2.json index 3a3e7b67..3e32b297 100644 --- a/annotated_outputs/cheung_variants/lifeboat_2_choice_2.json +++ b/annotated_outputs/cheung_variants/lifeboat_2_choice_2.json @@ -1,13 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do not reply"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "People in Lifeboat B receive no instructions from me"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Lifeboat B remains overcrowded"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "No adults leave Lifeboat B because of my decision"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "People in Lifeboat B remain in immediate danger of the boat sinking"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I avoid ordering anyone into the freezing water"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "People in Lifeboat B avoid immediate forced exposure to the freezing water"}]} -{"node": {"kind": "being", "label": "other people in lifeboat a"}, "links": []} -{"node": {"kind": "being", "label": "10 adults who might leave lifeboat b"}, "links": []} -{"node": {"kind": "being", "label": "51 remaining people in lifeboat b"}, "links": []} -{"node": {"kind": "action_choice", "label": "do not reply"}, "links": [{"link": {"kind": "v-link", "value": "-38.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B receive no instructions from me"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B remains overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "No adults leave Lifeboat B because of my decision"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B remain in immediate danger of the boat sinking"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid ordering anyone into the freezing water"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B avoid immediate forced exposure to the freezing water"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Lifeboat B remains dangerously overcrowded"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Lifeboat B sinks"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The 61 people in Lifeboat B die from cold-water exposure and drowning"}]} +{"node": {"kind": "being", "label": "several other crew members and passengers in lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "10 passengers in lifeboat b who are being kept from falling over by the protective barrier"}, "links": []} +{"node": {"kind": "being", "label": "51 other passengers and crew members in lifeboat b"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B remains dangerously overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B sinks"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 61 people in Lifeboat B die from cold-water exposure and drowning"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "People in Lifeboat B receive no instructions from me"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Lifeboat B remains overcrowded"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "No adults leave Lifeboat B because of my decision"}, "links": [{"link": {"kind": "utility", "value": "55"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "People in Lifeboat B remain in immediate danger of the boat sinking"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "I avoid ordering anyone into the freezing water"}, "links": [{"link": {"kind": "utility", "value": "55"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "People in Lifeboat B avoid immediate forced exposure to the freezing water"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "51 remaining people in lifeboat b"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "Lifeboat B remains dangerously overcrowded"}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "10 passengers in lifeboat b who are being kept from falling over by the protective barrier"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "51 other passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "Lifeboat B sinks"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 passengers in lifeboat b who are being kept from falling over by the protective barrier"}, {"link": {"kind": "utility", "value": "-98"}, "to_node": "51 other passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "The 61 people in Lifeboat B die from cold-water exposure and drowning"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 passengers in lifeboat b who are being kept from falling over by the protective barrier"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "51 other passengers and crew members in lifeboat b"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/lifeboat_3_choice_1.json b/annotated_outputs/cheung_variants/lifeboat_3_choice_1.json index 978d25f7..368a713e 100644 --- a/annotated_outputs/cheung_variants/lifeboat_3_choice_1.json +++ b/annotated_outputs/cheung_variants/lifeboat_3_choice_1.json @@ -1,16 +1,12 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "ask for 10 passengers from lifeboat B to volunteer to go overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I ask for 10 passengers in Lifeboat B to volunteer to go overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Passengers in Lifeboat B hear my instruction"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "10 volunteers from Lifeboat B go overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Those volunteers enter extremely cold ocean water"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Those volunteers die from freezing"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Lifeboat B becomes less overcrowded"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The stability of Lifeboat B increases"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The people remaining in Lifeboat B face a lower immediate risk of the boat sinking"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "I remain in Lifeboat A without taking additional passengers"}]} -{"node": {"kind": "being", "label": "other people in lifeboat a"}, "links": []} -{"node": {"kind": "being", "label": "10 volunteers from lifeboat b who would go overboard if asked"}, "links": []} -{"node": {"kind": "being", "label": "51 remaining people in lifeboat b"}, "links": []} -{"node": {"kind": "action_choice", "label": "ask for 10 passengers from lifeboat B to volunteer to go overboard"}, "links": [{"link": {"kind": "v-link", "value": "-11.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I ask for 10 passengers in Lifeboat B to volunteer to go overboard"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Passengers in Lifeboat B hear my instruction"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "10 volunteers from Lifeboat B go overboard"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Those volunteers enter extremely cold ocean water"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Those volunteers die from freezing"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes less overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The stability of Lifeboat B increases"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The people remaining in Lifeboat B face a lower immediate risk of the boat sinking"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I remain in Lifeboat A without taking additional passengers"}]} +{"node": {"kind": "being", "label": "i, the captain in lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "the other occupants of lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "10 adult passengers in lifeboat b who might volunteer to go overboard"}, "links": []} +{"node": {"kind": "being", "label": "the remaining 51 occupants of lifeboat b"}, "links": []} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "ask for 10 passengers to volunteer to go overboard"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "Passengers and crew in Lifeboat B experience intense fear and emotional distress"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "People in Lifeboat B feel pressure to consider sacrificing themselves"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Tension and conflict increase among the people in Lifeboat B"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I experience moral distress from asking people to die"}]} +{"node": {"kind": "action_choice", "label": "ask for 10 passengers to volunteer to go overboard"}, "links": [{"link": {"kind": "v-link", "value": "-37.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Passengers and crew in Lifeboat B experience intense fear and emotional distress"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B feel pressure to consider sacrificing themselves"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Tension and conflict increase among the people in Lifeboat B"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I experience moral distress from asking people to die"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I ask for 10 passengers in Lifeboat B to volunteer to go overboard"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 volunteers from lifeboat b who would go overboard if asked"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Passengers in Lifeboat B hear my instruction"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "10 volunteers from lifeboat b who would go overboard if asked"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "10 volunteers from Lifeboat B go overboard"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 volunteers from lifeboat b who would go overboard if asked"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Those volunteers enter extremely cold ocean water"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "10 volunteers from lifeboat b who would go overboard if asked"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Those volunteers die from freezing"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 volunteers from lifeboat b who would go overboard if asked"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Lifeboat B becomes less overcrowded"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "10 volunteers from lifeboat b who would go overboard if asked"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "The stability of Lifeboat B increases"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "10 volunteers from lifeboat b who would go overboard if asked"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "The people remaining in Lifeboat B face a lower immediate risk of the boat sinking"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "10 volunteers from lifeboat b who would go overboard if asked"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "I remain in Lifeboat A without taking additional passengers"}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "10 volunteers from lifeboat b who would go overboard if asked"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "51 remaining people in lifeboat b"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "Passengers and crew in Lifeboat B experience intense fear and emotional distress"}, "links": [{"link": {"kind": "utility", "value": "-5"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-5"}, "to_node": "the other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-50"}, "to_node": "10 adult passengers in lifeboat b who might volunteer to go overboard"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the remaining 51 occupants of lifeboat b"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "People in Lifeboat B feel pressure to consider sacrificing themselves"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "the other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "10 adult passengers in lifeboat b who might volunteer to go overboard"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "the remaining 51 occupants of lifeboat b"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "Tension and conflict increase among the people in Lifeboat B"}, "links": [{"link": {"kind": "utility", "value": "-10"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "10 adult passengers in lifeboat b who might volunteer to go overboard"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the remaining 51 occupants of lifeboat b"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "I experience moral distress from asking people to die"}, "links": [{"link": {"kind": "utility", "value": "-65"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "10 adult passengers in lifeboat b who might volunteer to go overboard"}, {"link": {"kind": "utility", "value": "-7"}, "to_node": "the remaining 51 occupants of lifeboat b"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/lifeboat_3_choice_2.html b/annotated_outputs/cheung_variants/lifeboat_3_choice_2.html index 99c601a1..0d2974d3 100644 --- a/annotated_outputs/cheung_variants/lifeboat_3_choice_2.html +++ b/annotated_outputs/cheung_variants/lifeboat_3_choice_2.html @@ -3,8 +3,8 @@ @@ -61,57 +61,32 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "other people in lifeboat a", color: {background: '#279aba'}}, - {id: 3, label: "10 adults who might leave\n lifeboat b", color: {background: '#279aba'}}, - {id: 4, label: "51 remaining people in lifeboat\n b", color: {background: '#279aba'}}, - {id: 5, label: "do not reply", color: {background: '#ba2769'}}, - {id: 6, label: "value", color: {background: '#8e7db5'}}, - {id: 7, label: "People in Lifeboat B receive\n no instructions from me", color: {background: '#e6c440'}}, - {id: 8, label: "Overcrowding in Lifeboat B continues", color: {background: '#e6c440'}}, - {id: 9, label: "Lifeboat B remains unstable in\n the storm", color: {background: '#e6c440'}}, - {id: 10, label: "People in Lifeboat B remain\n in danger of sinking", color: {background: '#e6c440'}}, - {id: 11, label: "I avoid ordering anyone in\n Lifeboat B into the freezing\n water", color: {background: '#e6c440'}}, - {id: 12, label: "People in Lifeboat B are\n left to decide for themselves", color: {background: '#e6c440'}} + {id: 2, label: "the other crew members and\n passengers in lifeboat a", color: {background: '#279aba'}}, + {id: 3, label: "the 61 passengers and crew\n members in lifeboat b", color: {background: '#279aba'}}, + {id: 4, label: "do nothing", color: {background: '#ba2769'}}, + {id: 5, label: "value", color: {background: '#8e7db5'}}, + {id: 6, label: "Lifeboat B remains dangerously overcrowded", color: {background: '#e6c440'}}, + {id: 7, label: "Lifeboat B sinks", color: {background: '#e6c440'}}, + {id: 8, label: "The 61 passengers and crew\n members in Lifeboat B die\n from freezing and drowning", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 9, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 12, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 6, label: "-38.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 4, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 4, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 4, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "-10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "2", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 1, label: "10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 2, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 3, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 4, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 6, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 8, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 5, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 6, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 1, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 2, label: "-10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "-90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "-20", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/lifeboat_3_choice_2.json b/annotated_outputs/cheung_variants/lifeboat_3_choice_2.json index f460d193..1c59c76f 100644 --- a/annotated_outputs/cheung_variants/lifeboat_3_choice_2.json +++ b/annotated_outputs/cheung_variants/lifeboat_3_choice_2.json @@ -1,13 +1,9 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do not reply"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "People in Lifeboat B receive no instructions from me"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Overcrowding in Lifeboat B continues"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "Lifeboat B remains unstable in the storm"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "People in Lifeboat B remain in danger of sinking"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I avoid ordering anyone in Lifeboat B into the freezing water"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "People in Lifeboat B are left to decide for themselves"}]} -{"node": {"kind": "being", "label": "other people in lifeboat a"}, "links": []} -{"node": {"kind": "being", "label": "10 adults who might leave lifeboat b"}, "links": []} -{"node": {"kind": "being", "label": "51 remaining people in lifeboat b"}, "links": []} -{"node": {"kind": "action_choice", "label": "do not reply"}, "links": [{"link": {"kind": "v-link", "value": "-38.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B receive no instructions from me"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Overcrowding in Lifeboat B continues"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B remains unstable in the storm"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B remain in danger of sinking"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid ordering anyone in Lifeboat B into the freezing water"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B are left to decide for themselves"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Lifeboat B remains dangerously overcrowded"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Lifeboat B sinks"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The 61 passengers and crew members in Lifeboat B die from freezing and drowning"}]} +{"node": {"kind": "being", "label": "the other crew members and passengers in lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "the 61 passengers and crew members in lifeboat b"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B remains dangerously overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B sinks"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 61 passengers and crew members in Lifeboat B die from freezing and drowning"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "People in Lifeboat B receive no instructions from me"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Overcrowding in Lifeboat B continues"}, "links": [{"link": {"kind": "utility", "value": "-78"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Lifeboat B remains unstable in the storm"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "People in Lifeboat B remain in danger of sinking"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "I avoid ordering anyone in Lifeboat B into the freezing water"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "2"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "51 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "People in Lifeboat B are left to decide for themselves"}, "links": [{"link": {"kind": "utility", "value": "10"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "51 remaining people in lifeboat b"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "Lifeboat B remains dangerously overcrowded"}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "the other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the 61 passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "Lifeboat B sinks"}, "links": [{"link": {"kind": "utility", "value": "-90"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "the other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "the 61 passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "The 61 passengers and crew members in Lifeboat B die from freezing and drowning"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "the other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "the 61 passengers and crew members in lifeboat b"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/lifeboat_4_choice_1.json b/annotated_outputs/cheung_variants/lifeboat_4_choice_1.json index f4473c31..902f7884 100644 --- a/annotated_outputs/cheung_variants/lifeboat_4_choice_1.json +++ b/annotated_outputs/cheung_variants/lifeboat_4_choice_1.json @@ -1,15 +1,15 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "order for the 10 weakest passengers from lifeboat B to be sent overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "10 weakest passengers from Lifeboat B are thrown into the ocean"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Lifeboat B becomes less overcrowded"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "Lifeboat B becomes more stable in the storm"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The remaining people in Lifeboat B have a higher chance of surviving"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I give an order that causes the deaths of 10 passengers"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Passengers and crew in Lifeboat B experience fear and distress"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Crew or passengers who carry out the order experience distress"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "I experience moral distress"}]} -{"node": {"kind": "being", "label": "other people in lifeboat a"}, "links": []} -{"node": {"kind": "being", "label": "10 weakest passengers in lifeboat b who would be sent overboard"}, "links": []} -{"node": {"kind": "being", "label": "31 remaining passengers and crew members in lifeboat b"}, "links": []} -{"node": {"kind": "action_choice", "label": "order for the 10 weakest passengers from lifeboat B to be sent overboard"}, "links": [{"link": {"kind": "v-link", "value": "-47.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "10 weakest passengers from Lifeboat B are thrown into the ocean"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes less overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes more stable in the storm"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The remaining people in Lifeboat B have a higher chance of surviving"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I give an order that causes the deaths of 10 passengers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Passengers and crew in Lifeboat B experience fear and distress"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Crew or passengers who carry out the order experience distress"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I experience moral distress"}]} +{"node": {"kind": "being", "label": "i, the captain in lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "several other crew members and passengers in lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "10 adult passengers in lifeboat b who would be physically thrown overboard"}, "links": []} +{"node": {"kind": "being", "label": "51 remaining passengers and crew members in lifeboat b who would stay aboard"}, "links": []} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "physically throw 10 passengers from lifeboat B overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Lifeboat B becomes stable"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Lifeboat B no longer carries a fatal overload"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "10 passengers are in the freezing ocean"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "10 passengers suffer extreme cold exposure"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The remaining people in Lifeboat B stay aboard"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Passengers and crew in the lifeboats experience panic and terror"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I experience the immediate psychological burden of forcing passengers overboard"}]} +{"node": {"kind": "action_choice", "label": "physically throw 10 passengers from lifeboat B overboard"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes stable"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B no longer carries a fatal overload"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "10 passengers are in the freezing ocean"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "10 passengers suffer extreme cold exposure"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The remaining people in Lifeboat B stay aboard"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Passengers and crew in the lifeboats experience panic and terror"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I experience the immediate psychological burden of forcing passengers overboard"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "10 weakest passengers from Lifeboat B are thrown into the ocean"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 weakest passengers in lifeboat b who would be sent overboard"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "31 remaining passengers and crew members in lifeboat b"}]} -{"node": {"kind": "event", "label": "Lifeboat B becomes less overcrowded"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 weakest passengers in lifeboat b who would be sent overboard"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "31 remaining passengers and crew members in lifeboat b"}]} -{"node": {"kind": "event", "label": "Lifeboat B becomes more stable in the storm"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 weakest passengers in lifeboat b who would be sent overboard"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "31 remaining passengers and crew members in lifeboat b"}]} -{"node": {"kind": "event", "label": "The remaining people in Lifeboat B have a higher chance of surviving"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 weakest passengers in lifeboat b who would be sent overboard"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "31 remaining passengers and crew members in lifeboat b"}]} -{"node": {"kind": "event", "label": "I give an order that causes the deaths of 10 passengers"}, "links": [{"link": {"kind": "utility", "value": "-95"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 weakest passengers in lifeboat b who would be sent overboard"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "31 remaining passengers and crew members in lifeboat b"}]} -{"node": {"kind": "event", "label": "Passengers and crew in Lifeboat B experience fear and distress"}, "links": [{"link": {"kind": "utility", "value": "-2"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 weakest passengers in lifeboat b who would be sent overboard"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "31 remaining passengers and crew members in lifeboat b"}]} -{"node": {"kind": "event", "label": "Crew or passengers who carry out the order experience distress"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 weakest passengers in lifeboat b who would be sent overboard"}, {"link": {"kind": "utility", "value": "-68"}, "to_node": "31 remaining passengers and crew members in lifeboat b"}]} -{"node": {"kind": "event", "label": "I experience moral distress"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "10 weakest passengers in lifeboat b who would be sent overboard"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "31 remaining passengers and crew members in lifeboat b"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "Lifeboat B becomes stable"}, "links": [{"link": {"kind": "utility", "value": "18"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "10 adult passengers in lifeboat b who would be physically thrown overboard"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "51 remaining passengers and crew members in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "Lifeboat B no longer carries a fatal overload"}, "links": [{"link": {"kind": "utility", "value": "8"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "10 adult passengers in lifeboat b who would be physically thrown overboard"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "51 remaining passengers and crew members in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "10 passengers are in the freezing ocean"}, "links": [{"link": {"kind": "utility", "value": "-30"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 adult passengers in lifeboat b who would be physically thrown overboard"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "51 remaining passengers and crew members in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "10 passengers suffer extreme cold exposure"}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "10 adult passengers in lifeboat b who would be physically thrown overboard"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "51 remaining passengers and crew members in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "The remaining people in Lifeboat B stay aboard"}, "links": [{"link": {"kind": "utility", "value": "10"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 adult passengers in lifeboat b who would be physically thrown overboard"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "51 remaining passengers and crew members in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "60"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "Passengers and crew in the lifeboats experience panic and terror"}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 adult passengers in lifeboat b who would be physically thrown overboard"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "51 remaining passengers and crew members in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "I experience the immediate psychological burden of forcing passengers overboard"}, "links": [{"link": {"kind": "utility", "value": "-78"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "10 adult passengers in lifeboat b who would be physically thrown overboard"}, {"link": {"kind": "utility", "value": "-6"}, "to_node": "51 remaining passengers and crew members in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "i"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/lifeboat_4_choice_2.html b/annotated_outputs/cheung_variants/lifeboat_4_choice_2.html index dc074e96..c8c52eaf 100644 --- a/annotated_outputs/cheung_variants/lifeboat_4_choice_2.html +++ b/annotated_outputs/cheung_variants/lifeboat_4_choice_2.html @@ -3,8 +3,8 @@ @@ -61,44 +61,38 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "41 passengers and crew members\n in lifeboat b", color: {background: '#279aba'}}, - {id: 3, label: "several other crew members and\n passengers in lifeboat a", color: {background: '#279aba'}}, - {id: 4, label: "do not reply", color: {background: '#ba2769'}}, + {id: 2, label: "the several other crew members\n and passengers in lifeboat a", color: {background: '#279aba'}}, + {id: 3, label: "the 61 passengers and crew\n members in lifeboat b", color: {background: '#279aba'}}, + {id: 4, label: "do nothing", color: {background: '#ba2769'}}, {id: 5, label: "value", color: {background: '#8e7db5'}}, - {id: 6, label: "I give no instructions to\n Lifeboat B", color: {background: '#e6c440'}}, - {id: 7, label: "Lifeboat B remains overcrowded", color: {background: '#e6c440'}}, - {id: 8, label: "People in Lifeboat B remain\n in immediate danger of the\n boat sinking", color: {background: '#e6c440'}}, - {id: 9, label: "I avoid ordering about 10\n adults into the freezing water", color: {background: '#e6c440'}}, - {id: 10, label: "About 10 adults are not\n immediately forced overboard to freeze\n to death by my order", color: {background: '#e6c440'}} + {id: 6, label: "No one in Lifeboat B\n is intentionally forced into the\n water", color: {background: '#e6c440'}}, + {id: 7, label: "Lifeboat B remains dangerously overcrowded", color: {background: '#e6c440'}}, + {id: 8, label: "Lifeboat B sinks", color: {background: '#e6c440'}}, + {id: 9, label: "The 61 people in Lifeboat\n B die from drowning or\n hypothermia", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 6, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 8, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 9, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 5, label: "-38.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 6, label: "C+I+K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 9, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 5, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 6, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 1, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 2, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 3, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 1, label: "30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 3, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-86", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-98", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/lifeboat_4_choice_2.json b/annotated_outputs/cheung_variants/lifeboat_4_choice_2.json index 2d0e4838..5f40db93 100644 --- a/annotated_outputs/cheung_variants/lifeboat_4_choice_2.json +++ b/annotated_outputs/cheung_variants/lifeboat_4_choice_2.json @@ -1,11 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do not reply"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I give no instructions to Lifeboat B"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "Lifeboat B remains overcrowded"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "People in Lifeboat B remain in immediate danger of the boat sinking"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I avoid ordering about 10 adults into the freezing water"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "About 10 adults are not immediately forced overboard to freeze to death by my order"}]} -{"node": {"kind": "being", "label": "41 passengers and crew members in lifeboat b"}, "links": []} -{"node": {"kind": "being", "label": "several other crew members and passengers in lifeboat a"}, "links": []} -{"node": {"kind": "action_choice", "label": "do not reply"}, "links": [{"link": {"kind": "v-link", "value": "-38.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I give no instructions to Lifeboat B"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B remains overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B remain in immediate danger of the boat sinking"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid ordering about 10 adults into the freezing water"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "About 10 adults are not immediately forced overboard to freeze to death by my order"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "No one in Lifeboat B is intentionally forced into the water"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Lifeboat B remains dangerously overcrowded"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Lifeboat B sinks"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The 61 people in Lifeboat B die from drowning or hypothermia"}]} +{"node": {"kind": "being", "label": "the several other crew members and passengers in lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "the 61 passengers and crew members in lifeboat b"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "No one in Lifeboat B is intentionally forced into the water"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B remains dangerously overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B sinks"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 61 people in Lifeboat B die from drowning or hypothermia"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I give no instructions to Lifeboat B"}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "41 passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "Lifeboat B remains overcrowded"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "41 passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "People in Lifeboat B remain in immediate danger of the boat sinking"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "41 passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "I avoid ordering about 10 adults into the freezing water"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "41 passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "About 10 adults are not immediately forced overboard to freeze to death by my order"}, "links": [{"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "41 passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "No one in Lifeboat B is intentionally forced into the water"}, "links": [{"link": {"kind": "utility", "value": "30"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "the 61 passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "Lifeboat B remains dangerously overcrowded"}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-86"}, "to_node": "the 61 passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "Lifeboat B sinks"}, "links": [{"link": {"kind": "utility", "value": "-90"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-98"}, "to_node": "the 61 passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "The 61 people in Lifeboat B die from drowning or hypothermia"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "the 61 passengers and crew members in lifeboat b"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/lifeboat_5_choice_1.json b/annotated_outputs/cheung_variants/lifeboat_5_choice_1.json index 0a4c1611..5d635c95 100644 --- a/annotated_outputs/cheung_variants/lifeboat_5_choice_1.json +++ b/annotated_outputs/cheung_variants/lifeboat_5_choice_1.json @@ -1,17 +1,14 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "order for the random selection of 10 passengers from lifeboat B to be sent overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I order a random selection of 10 passengers from Lifeboat B to be sent overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "10 passengers in Lifeboat B are selected at random"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "10 passengers are forced or directed to leave Lifeboat B"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "10 passengers die from freezing in the ocean"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Lifeboat B becomes less overcrowded"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The stability of Lifeboat B increases"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "The remaining people in Lifeboat B remain alive in the lifeboat"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "People in Lifeboat B experience fear and distress"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I experience the burden of ordering the deaths of passengers"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "People in Lifeboat A remain at full capacity"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "No additional passengers board Lifeboat A"}]} -{"node": {"kind": "being", "label": "41 people in lifeboat b"}, "links": []} -{"node": {"kind": "being", "label": "several other crew members and passengers in lifeboat a"}, "links": []} -{"node": {"kind": "action_choice", "label": "order for the random selection of 10 passengers from lifeboat B to be sent overboard"}, "links": [{"link": {"kind": "v-link", "value": "-41.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I order a random selection of 10 passengers from Lifeboat B to be sent overboard"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "10 passengers in Lifeboat B are selected at random"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "10 passengers are forced or directed to leave Lifeboat B"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "10 passengers die from freezing in the ocean"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes less overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The stability of Lifeboat B increases"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The remaining people in Lifeboat B remain alive in the lifeboat"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B experience fear and distress"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I experience the burden of ordering the deaths of passengers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat A remain at full capacity"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "No additional passengers board Lifeboat A"}]} +{"node": {"kind": "being", "label": "i, the captain in lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "other crew members and passengers in lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "10 passengers currently being kept from falling overboard by the barrier on lifeboat b"}, "links": []} +{"node": {"kind": "being", "label": "51 other passengers and crew members in lifeboat b"}, "links": []} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "remove the barrier protecting 10 passengers from falling overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Ten passengers fall into the ocean."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Ten passengers are exposed to freezing seawater."}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "Ten passengers begin suffering hypothermia."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Lifeboat B has ten fewer adults aboard."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Lifeboat B becomes stable."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The remaining people in Lifeboat B remain aboard a stabilized boat."}]} +{"node": {"kind": "action_choice", "label": "remove the barrier protecting 10 passengers from falling overboard"}, "links": [{"link": {"kind": "v-link", "value": "-59.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Ten passengers fall into the ocean."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Ten passengers are exposed to freezing seawater."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Ten passengers begin suffering hypothermia."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B has ten fewer adults aboard."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes stable."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The remaining people in Lifeboat B remain aboard a stabilized boat."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I order a random selection of 10 passengers from Lifeboat B to be sent overboard"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-96"}, "to_node": "41 people in lifeboat b"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "10 passengers in Lifeboat B are selected at random"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-24"}, "to_node": "41 people in lifeboat b"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "10 passengers are forced or directed to leave Lifeboat B"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "41 people in lifeboat b"}, {"link": {"kind": "utility", "value": "2"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "10 passengers die from freezing in the ocean"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "41 people in lifeboat b"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "Lifeboat B becomes less overcrowded"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "41 people in lifeboat b"}, {"link": {"kind": "utility", "value": "2"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "The stability of Lifeboat B increases"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "41 people in lifeboat b"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "The remaining people in Lifeboat B remain alive in the lifeboat"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "41 people in lifeboat b"}, {"link": {"kind": "utility", "value": "6"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "People in Lifeboat B experience fear and distress"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "41 people in lifeboat b"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "I experience the burden of ordering the deaths of passengers"}, "links": [{"link": {"kind": "utility", "value": "-88"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "41 people in lifeboat b"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "People in Lifeboat A remain at full capacity"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "41 people in lifeboat b"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "No additional passengers board Lifeboat A"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "41 people in lifeboat b"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "Ten passengers fall into the ocean."}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 passengers currently being kept from falling overboard by the barrier on lifeboat b"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "51 other passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "Ten passengers are exposed to freezing seawater."}, "links": [{"link": {"kind": "utility", "value": "-40"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "10 passengers currently being kept from falling overboard by the barrier on lifeboat b"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "51 other passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "Ten passengers begin suffering hypothermia."}, "links": [{"link": {"kind": "utility", "value": "-45"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "10 passengers currently being kept from falling overboard by the barrier on lifeboat b"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "51 other passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "Lifeboat B has ten fewer adults aboard."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "40"}, "to_node": "10 passengers currently being kept from falling overboard by the barrier on lifeboat b"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "51 other passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "Lifeboat B becomes stable."}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "22"}, "to_node": "other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "10 passengers currently being kept from falling overboard by the barrier on lifeboat b"}, {"link": {"kind": "utility", "value": "80"}, "to_node": "51 other passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "The remaining people in Lifeboat B remain aboard a stabilized boat."}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "10 passengers currently being kept from falling overboard by the barrier on lifeboat b"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "51 other passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "i"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/lifeboat_5_choice_2.html b/annotated_outputs/cheung_variants/lifeboat_5_choice_2.html index e54beae2..b20a321c 100644 --- a/annotated_outputs/cheung_variants/lifeboat_5_choice_2.html +++ b/annotated_outputs/cheung_variants/lifeboat_5_choice_2.html @@ -3,8 +3,8 @@ @@ -60,57 +60,41 @@ } function return_vis_dataset() { var nodes = new vis.DataSet([ - {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "41 passengers and crew members\n in lifeboat b", color: {background: '#279aba'}}, - {id: 3, label: "several other crew members and\n passengers in lifeboat a", color: {background: '#279aba'}}, - {id: 4, label: "do not reply", color: {background: '#ba2769'}}, - {id: 5, label: "value", color: {background: '#8e7db5'}}, - {id: 6, label: "People in Lifeboat B receive\n no guidance from me", color: {background: '#e6c440'}}, - {id: 7, label: "Lifeboat B remains dangerously overcrowded", color: {background: '#e6c440'}}, - {id: 8, label: "People in Lifeboat B remain\n in immediate danger of drowning\n if the boat sinks", color: {background: '#e6c440'}}, - {id: 9, label: "No one is ordered by\n me to leave Lifeboat B", color: {background: '#e6c440'}}, - {id: 10, label: "People in Lifeboat B are\n not immediately forced into the\n freezing water by me", color: {background: '#e6c440'}}, - {id: 11, label: "People in Lifeboat A remain\n at full capacity", color: {background: '#e6c440'}}, - {id: 12, label: "People in Lifeboat A do\n not take additional passengers", color: {background: '#e6c440'}} + {id: 1, label: "i, the captain in lifeboat\n a", color: {background: '#279aba'}}, + {id: 2, label: "several other crew members and\n passengers in lifeboat a", color: {background: '#279aba'}}, + {id: 3, label: "10 passengers in lifeboat b\n who are currently being kept\n from falling over by the\n protective barrier", color: {background: '#279aba'}}, + {id: 4, label: "51 other passengers and crew\n members in lifeboat b", color: {background: '#279aba'}}, + {id: 5, label: "i", color: {background: '#279aba'}}, + {id: 6, label: "do nothing", color: {background: '#ba2769'}}, + {id: 7, label: "value", color: {background: '#8e7db5'}}, + {id: 8, label: "Lifeboat B remains dangerously overcrowded", color: {background: '#e6c440'}}, + {id: 9, label: "Lifeboat B sinks", color: {background: '#e6c440'}}, + {id: 10, label: "61 passengers and crew members\n in Lifeboat B are thrown\n into the freezing ocean", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 6, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 8, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 9, label: "C+I+K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 12, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 5, label: "-38.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 6, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 1, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 2, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "2", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 1, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 6, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 10, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 7, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-20", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 4, label: "-80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 5, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 4, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 5, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 2, label: "-15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 4, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 5, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/lifeboat_5_choice_2.json b/annotated_outputs/cheung_variants/lifeboat_5_choice_2.json index cf346b66..87271264 100644 --- a/annotated_outputs/cheung_variants/lifeboat_5_choice_2.json +++ b/annotated_outputs/cheung_variants/lifeboat_5_choice_2.json @@ -1,13 +1,11 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do not reply"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "People in Lifeboat B receive no guidance from me"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "Lifeboat B remains dangerously overcrowded"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "People in Lifeboat B remain in immediate danger of drowning if the boat sinks"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "No one is ordered by me to leave Lifeboat B"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "People in Lifeboat B are not immediately forced into the freezing water by me"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "People in Lifeboat A remain at full capacity"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "People in Lifeboat A do not take additional passengers"}]} -{"node": {"kind": "being", "label": "41 passengers and crew members in lifeboat b"}, "links": []} +{"node": {"kind": "being", "label": "i, the captain in lifeboat a"}, "links": []} {"node": {"kind": "being", "label": "several other crew members and passengers in lifeboat a"}, "links": []} -{"node": {"kind": "action_choice", "label": "do not reply"}, "links": [{"link": {"kind": "v-link", "value": "-38.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B receive no guidance from me"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B remains dangerously overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B remain in immediate danger of drowning if the boat sinks"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "No one is ordered by me to leave Lifeboat B"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B are not immediately forced into the freezing water by me"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat A remain at full capacity"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat A do not take additional passengers"}]} +{"node": {"kind": "being", "label": "10 passengers in lifeboat b who are currently being kept from falling over by the protective barrier"}, "links": []} +{"node": {"kind": "being", "label": "51 other passengers and crew members in lifeboat b"}, "links": []} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Lifeboat B remains dangerously overcrowded"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Lifeboat B sinks"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "61 passengers and crew members in Lifeboat B are thrown into the freezing ocean"}]} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B remains dangerously overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B sinks"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "61 passengers and crew members in Lifeboat B are thrown into the freezing ocean"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "People in Lifeboat B receive no guidance from me"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "41 passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "Lifeboat B remains dangerously overcrowded"}, "links": [{"link": {"kind": "utility", "value": "-78"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "41 passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "2"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "People in Lifeboat B remain in immediate danger of drowning if the boat sinks"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "41 passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "No one is ordered by me to leave Lifeboat B"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "41 passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "People in Lifeboat B are not immediately forced into the freezing water by me"}, "links": [{"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "41 passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "People in Lifeboat A remain at full capacity"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "41 passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"node": {"kind": "event", "label": "People in Lifeboat A do not take additional passengers"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "41 passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "several other crew members and passengers in lifeboat a"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "Lifeboat B remains dangerously overcrowded"}, "links": [{"link": {"kind": "utility", "value": "-20"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "10 passengers in lifeboat b who are currently being kept from falling over by the protective barrier"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "51 other passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "Lifeboat B sinks"}, "links": [{"link": {"kind": "utility", "value": "-45"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 passengers in lifeboat b who are currently being kept from falling over by the protective barrier"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "51 other passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "61 passengers and crew members in Lifeboat B are thrown into the freezing ocean"}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 passengers in lifeboat b who are currently being kept from falling over by the protective barrier"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "51 other passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/lifeboat_6_choice_1.json b/annotated_outputs/cheung_variants/lifeboat_6_choice_1.json index 61d55d74..7f30da51 100644 --- a/annotated_outputs/cheung_variants/lifeboat_6_choice_1.json +++ b/annotated_outputs/cheung_variants/lifeboat_6_choice_1.json @@ -1,13 +1,18 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "ask for 10 passengers from lifeboat B to volunteer to go overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I ask for 10 passengers in Lifeboat B to volunteer to go overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Passengers in Lifeboat B hear my instruction"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "10 passengers in Lifeboat B go overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Those 10 passengers enter extremely cold ocean water"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Lifeboat B becomes less overcrowded"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The remaining people in Lifeboat B have a higher chance of surviving the storm"}]} -{"node": {"kind": "being", "label": "other people in lifeboat a"}, "links": []} -{"node": {"kind": "being", "label": "10 volunteers from lifeboat b who would go overboard if asked"}, "links": []} -{"node": {"kind": "being", "label": "31 remaining people in lifeboat b"}, "links": []} -{"node": {"kind": "action_choice", "label": "ask for 10 passengers from lifeboat B to volunteer to go overboard"}, "links": [{"link": {"kind": "v-link", "value": "-12.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I ask for 10 passengers in Lifeboat B to volunteer to go overboard"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Passengers in Lifeboat B hear my instruction"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "10 passengers in Lifeboat B go overboard"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Those 10 passengers enter extremely cold ocean water"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes less overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The remaining people in Lifeboat B have a higher chance of surviving the storm"}]} +{"node": {"kind": "being", "label": "1 captain in lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "unknown number of other crew members and passengers in lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "10 adult passengers in lifeboat b who might volunteer to go overboard"}, "links": []} +{"node": {"kind": "being", "label": "unknown number of remaining passengers in lifeboat b who would stay aboard"}, "links": []} +{"node": {"kind": "being", "label": "unknown number of crew members in lifeboat b who would stay aboard"}, "links": []} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "ask for 10 passengers to volunteer to go overboard"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "Passengers and crew in Lifeboat B experience fear and emotional distress."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Passengers and crew in Lifeboat B face intense moral pressure to sacrifice themselves."}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "Conflict and anguish arise in Lifeboat B over who should go overboard."}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "Ten adults leave Lifeboat B."}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "Those ten adults enter freezing ocean water."}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "Those ten adults begin suffering cold shock and hypothermia."}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "Lifeboat B becomes less overcrowded and more stable."}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "The remaining people in Lifeboat B avoid immediate sinking."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I experience moral and emotional distress."}]} +{"node": {"kind": "action_choice", "label": "ask for 10 passengers to volunteer to go overboard"}, "links": [{"link": {"kind": "v-link", "value": "-37.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Passengers and crew in Lifeboat B experience fear and emotional distress."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Passengers and crew in Lifeboat B face intense moral pressure to sacrifice themselves."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Conflict and anguish arise in Lifeboat B over who should go overboard."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Ten adults leave Lifeboat B."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Those ten adults enter freezing ocean water."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Those ten adults begin suffering cold shock and hypothermia."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes less overcrowded and more stable."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The remaining people in Lifeboat B avoid immediate sinking."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I experience moral and emotional distress."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I ask for 10 passengers in Lifeboat B to volunteer to go overboard"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 volunteers from lifeboat b who would go overboard if asked"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "31 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Passengers in Lifeboat B hear my instruction"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "10 volunteers from lifeboat b who would go overboard if asked"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "31 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "10 passengers in Lifeboat B go overboard"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "2"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "10 volunteers from lifeboat b who would go overboard if asked"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "31 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Those 10 passengers enter extremely cold ocean water"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "10 volunteers from lifeboat b who would go overboard if asked"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "31 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Lifeboat B becomes less overcrowded"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "10 volunteers from lifeboat b who would go overboard if asked"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "31 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "The remaining people in Lifeboat B have a higher chance of surviving the storm"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "10 volunteers from lifeboat b who would go overboard if asked"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "31 remaining people in lifeboat b"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "Passengers and crew in Lifeboat B experience fear and emotional distress."}, "links": [{"link": {"kind": "utility", "value": "-7"}, "to_node": "1 captain in lifeboat a"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "unknown number of other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "10 adult passengers in lifeboat b who might volunteer to go overboard"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "unknown number of remaining passengers in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "unknown number of crew members in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "Passengers and crew in Lifeboat B face intense moral pressure to sacrifice themselves."}, "links": [{"link": {"kind": "utility", "value": "-10"}, "to_node": "1 captain in lifeboat a"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "unknown number of other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-82"}, "to_node": "10 adult passengers in lifeboat b who might volunteer to go overboard"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "unknown number of remaining passengers in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "unknown number of crew members in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "Conflict and anguish arise in Lifeboat B over who should go overboard."}, "links": [{"link": {"kind": "utility", "value": "-5"}, "to_node": "1 captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "unknown number of other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "10 adult passengers in lifeboat b who might volunteer to go overboard"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "unknown number of remaining passengers in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "unknown number of crew members in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "Ten adults leave Lifeboat B."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "1 captain in lifeboat a"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "unknown number of other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 adult passengers in lifeboat b who might volunteer to go overboard"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "unknown number of remaining passengers in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "20"}, "to_node": "unknown number of crew members in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "Those ten adults enter freezing ocean water."}, "links": [{"link": {"kind": "utility", "value": "-8"}, "to_node": "1 captain in lifeboat a"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "unknown number of other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-98"}, "to_node": "10 adult passengers in lifeboat b who might volunteer to go overboard"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "unknown number of remaining passengers in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "unknown number of crew members in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "Those ten adults begin suffering cold shock and hypothermia."}, "links": [{"link": {"kind": "utility", "value": "-25"}, "to_node": "1 captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "unknown number of other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "10 adult passengers in lifeboat b who might volunteer to go overboard"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "unknown number of remaining passengers in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "unknown number of crew members in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "Lifeboat B becomes less overcrowded and more stable."}, "links": [{"link": {"kind": "utility", "value": "8"}, "to_node": "1 captain in lifeboat a"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "unknown number of other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "80"}, "to_node": "10 adult passengers in lifeboat b who might volunteer to go overboard"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "unknown number of remaining passengers in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "unknown number of crew members in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "The remaining people in Lifeboat B avoid immediate sinking."}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "1 captain in lifeboat a"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "unknown number of other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "10 adult passengers in lifeboat b who might volunteer to go overboard"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "unknown number of remaining passengers in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "unknown number of crew members in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "I experience moral and emotional distress."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "1 captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "unknown number of other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-5"}, "to_node": "10 adult passengers in lifeboat b who might volunteer to go overboard"}, {"link": {"kind": "utility", "value": "-5"}, "to_node": "unknown number of remaining passengers in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "unknown number of crew members in lifeboat b who would stay aboard"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/lifeboat_6_choice_2.html b/annotated_outputs/cheung_variants/lifeboat_6_choice_2.html index c8f1af06..bfabd63a 100644 --- a/annotated_outputs/cheung_variants/lifeboat_6_choice_2.html +++ b/annotated_outputs/cheung_variants/lifeboat_6_choice_2.html @@ -3,8 +3,8 @@ @@ -61,56 +61,38 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "other people in lifeboat a", color: {background: '#279aba'}}, - {id: 3, label: "41 people in lifeboat b", color: {background: '#279aba'}}, - {id: 4, label: "do not reply", color: {background: '#ba2769'}}, + {id: 2, label: "other occupants of lifeboat a", color: {background: '#279aba'}}, + {id: 3, label: "occupants of lifeboat b", color: {background: '#279aba'}}, + {id: 4, label: "do nothing", color: {background: '#ba2769'}}, {id: 5, label: "value", color: {background: '#8e7db5'}}, - {id: 6, label: "People in Lifeboat B receive\n no instructions from me", color: {background: '#e6c440'}}, - {id: 7, label: "Uncertainty and distress increase among\n people in Lifeboat B", color: {background: '#e6c440'}}, - {id: 8, label: "No one is directed by\n me to leave Lifeboat B", color: {background: '#e6c440'}}, - {id: 9, label: "Lifeboat B remains dangerously overcrowded", color: {background: '#e6c440'}}, - {id: 10, label: "People in Lifeboat B remain\n at risk of drowning if\n Lifeboat B sinks", color: {background: '#e6c440'}}, - {id: 11, label: "People in Lifeboat B avoid\n being told by me to\n enter the freezing water", color: {background: '#e6c440'}}, - {id: 12, label: "I avoid directly ordering people\n to sacrifice themselves", color: {background: '#e6c440'}} + {id: 6, label: "The 61 people in Lifeboat\n B remain aboard the overcrowded\n lifeboat", color: {background: '#e6c440'}}, + {id: 7, label: "Lifeboat B sinks", color: {background: '#e6c440'}}, + {id: 8, label: "The 61 people in Lifeboat\n B suffer hypothermia", color: {background: '#e6c440'}}, + {id: 9, label: "The people in Lifeboat A\n and I remain in a\n stable lifeboat", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 6, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 8, label: "C+I+K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 9, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 12, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 5, label: "-38.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 8, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 9, label: "C-I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 5, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 6, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 1, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 3, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "-62", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "2", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-74", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 1, label: "18", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 2, label: "18", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 3, label: "18", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 1, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 2, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 3, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "-90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-7", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/lifeboat_6_choice_2.json b/annotated_outputs/cheung_variants/lifeboat_6_choice_2.json index 398f111f..2c08b578 100644 --- a/annotated_outputs/cheung_variants/lifeboat_6_choice_2.json +++ b/annotated_outputs/cheung_variants/lifeboat_6_choice_2.json @@ -1,13 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do not reply"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "People in Lifeboat B receive no instructions from me"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "Uncertainty and distress increase among people in Lifeboat B"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "No one is directed by me to leave Lifeboat B"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "Lifeboat B remains dangerously overcrowded"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "People in Lifeboat B remain at risk of drowning if Lifeboat B sinks"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "People in Lifeboat B avoid being told by me to enter the freezing water"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I avoid directly ordering people to sacrifice themselves"}]} -{"node": {"kind": "being", "label": "other people in lifeboat a"}, "links": []} -{"node": {"kind": "being", "label": "41 people in lifeboat b"}, "links": []} -{"node": {"kind": "action_choice", "label": "do not reply"}, "links": [{"link": {"kind": "v-link", "value": "-38.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B receive no instructions from me"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Uncertainty and distress increase among people in Lifeboat B"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "No one is directed by me to leave Lifeboat B"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B remains dangerously overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B remain at risk of drowning if Lifeboat B sinks"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B avoid being told by me to enter the freezing water"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid directly ordering people to sacrifice themselves"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The 61 people in Lifeboat B remain aboard the overcrowded lifeboat"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Lifeboat B sinks"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The 61 people in Lifeboat B suffer hypothermia"}, {"link": {"kind": "b_link", "value": "C-I+K+"}, "to_node": "The people in Lifeboat A and I remain in a stable lifeboat"}]} +{"node": {"kind": "being", "label": "other occupants of lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "occupants of lifeboat b"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 61 people in Lifeboat B remain aboard the overcrowded lifeboat"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B sinks"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 61 people in Lifeboat B suffer hypothermia"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The people in Lifeboat A and I remain in a stable lifeboat"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "People in Lifeboat B receive no instructions from me"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "41 people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Uncertainty and distress increase among people in Lifeboat B"}, "links": [{"link": {"kind": "utility", "value": "-62"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "2"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-74"}, "to_node": "41 people in lifeboat b"}]} -{"node": {"kind": "event", "label": "No one is directed by me to leave Lifeboat B"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "41 people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Lifeboat B remains dangerously overcrowded"}, "links": [{"link": {"kind": "utility", "value": "-78"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "41 people in lifeboat b"}]} -{"node": {"kind": "event", "label": "People in Lifeboat B remain at risk of drowning if Lifeboat B sinks"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "41 people in lifeboat b"}]} -{"node": {"kind": "event", "label": "People in Lifeboat B avoid being told by me to enter the freezing water"}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "41 people in lifeboat b"}]} -{"node": {"kind": "event", "label": "I avoid directly ordering people to sacrifice themselves"}, "links": [{"link": {"kind": "utility", "value": "18"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "18"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "18"}, "to_node": "41 people in lifeboat b"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The 61 people in Lifeboat B remain aboard the overcrowded lifeboat"}, "links": [{"link": {"kind": "utility", "value": "-45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "occupants of lifeboat b"}]} +{"node": {"kind": "event", "label": "Lifeboat B sinks"}, "links": [{"link": {"kind": "utility", "value": "-90"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "occupants of lifeboat b"}]} +{"node": {"kind": "event", "label": "The 61 people in Lifeboat B suffer hypothermia"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-7"}, "to_node": "other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "occupants of lifeboat b"}]} +{"node": {"kind": "event", "label": "The people in Lifeboat A and I remain in a stable lifeboat"}, "links": [{"link": {"kind": "utility", "value": "60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "occupants of lifeboat b"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/lifeboat_7_choice_1.json b/annotated_outputs/cheung_variants/lifeboat_7_choice_1.json index 6c0a3840..81faebfc 100644 --- a/annotated_outputs/cheung_variants/lifeboat_7_choice_1.json +++ b/annotated_outputs/cheung_variants/lifeboat_7_choice_1.json @@ -1,13 +1,14 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "order for the 10 weakest passengers from lifeboat B to be sent overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "10 weakest passengers in Lifeboat B die from freezing in the cold water"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Lifeboat B becomes less overcrowded"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The remaining people in Lifeboat B face a lower risk of the boat sinking"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I cause the deaths of 10 passengers"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Survivors in Lifeboat B experience fear and distress"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Survivors in Lifeboat B witness 10 passengers being killed"}]} -{"node": {"kind": "being", "label": "other people in lifeboat a"}, "links": []} -{"node": {"kind": "being", "label": "10 weakest passengers in lifeboat b"}, "links": []} -{"node": {"kind": "being", "label": "11 remaining people in lifeboat b"}, "links": []} -{"node": {"kind": "action_choice", "label": "order for the 10 weakest passengers from lifeboat B to be sent overboard"}, "links": [{"link": {"kind": "v-link", "value": "-47.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "10 weakest passengers in Lifeboat B die from freezing in the cold water"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes less overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The remaining people in Lifeboat B face a lower risk of the boat sinking"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I cause the deaths of 10 passengers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Survivors in Lifeboat B experience fear and distress"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Survivors in Lifeboat B witness 10 passengers being killed"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "physically throw 10 passengers from lifeboat B overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Ten passengers are in the cold water."}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "Ten passengers become chilly."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Ten passengers experience fear and distress."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Lifeboat B becomes stable."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The 51 people remaining in lifeboat B avoid the immediate danger of the boat sinking."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The people remaining in lifeboat B experience fear and distress."}, {"link": {"kind": "b_link", "value": "C-I+K+"}, "to_node": "No one dies."}]} +{"node": {"kind": "being", "label": "other occupants of lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "10 occupants of lifeboat b who would be thrown overboard"}, "links": []} +{"node": {"kind": "being", "label": "51 occupants of lifeboat b who would remain in the boat"}, "links": []} +{"node": {"kind": "action_choice", "label": "physically throw 10 passengers from lifeboat B overboard"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Ten passengers are in the cold water."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Ten passengers become chilly."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Ten passengers experience fear and distress."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes stable."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 51 people remaining in lifeboat B avoid the immediate danger of the boat sinking."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The people remaining in lifeboat B experience fear and distress."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "No one dies."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "10 weakest passengers in Lifeboat B die from freezing in the cold water"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 weakest passengers in lifeboat b"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Lifeboat B becomes less overcrowded"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "10 weakest passengers in lifeboat b"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "The remaining people in Lifeboat B face a lower risk of the boat sinking"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "10 weakest passengers in lifeboat b"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "I cause the deaths of 10 passengers"}, "links": [{"link": {"kind": "utility", "value": "-95"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 weakest passengers in lifeboat b"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Survivors in Lifeboat B experience fear and distress"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "10 weakest passengers in lifeboat b"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Survivors in Lifeboat B witness 10 passengers being killed"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 weakest passengers in lifeboat b"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "11 remaining people in lifeboat b"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "Ten passengers are in the cold water."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-98"}, "to_node": "10 occupants of lifeboat b who would be thrown overboard"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "51 occupants of lifeboat b who would remain in the boat"}]} +{"node": {"kind": "event", "label": "Ten passengers become chilly."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "10 occupants of lifeboat b who would be thrown overboard"}, {"link": {"kind": "utility", "value": "-6"}, "to_node": "51 occupants of lifeboat b who would remain in the boat"}]} +{"node": {"kind": "event", "label": "Ten passengers experience fear and distress."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "10 occupants of lifeboat b who would be thrown overboard"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "51 occupants of lifeboat b who would remain in the boat"}]} +{"node": {"kind": "event", "label": "Lifeboat B becomes stable."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "10 occupants of lifeboat b who would be thrown overboard"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "51 occupants of lifeboat b who would remain in the boat"}]} +{"node": {"kind": "event", "label": "The 51 people remaining in lifeboat B avoid the immediate danger of the boat sinking."}, "links": [{"link": {"kind": "utility", "value": "65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-98"}, "to_node": "10 occupants of lifeboat b who would be thrown overboard"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "51 occupants of lifeboat b who would remain in the boat"}]} +{"node": {"kind": "event", "label": "The people remaining in lifeboat B experience fear and distress."}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "10 occupants of lifeboat b who would be thrown overboard"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "51 occupants of lifeboat b who would remain in the boat"}]} +{"node": {"kind": "event", "label": "No one dies."}, "links": [{"link": {"kind": "utility", "value": "10"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "100"}, "to_node": "10 occupants of lifeboat b who would be thrown overboard"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "51 occupants of lifeboat b who would remain in the boat"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/lifeboat_7_choice_2.html b/annotated_outputs/cheung_variants/lifeboat_7_choice_2.html index ebaef8f9..01ca0da2 100644 --- a/annotated_outputs/cheung_variants/lifeboat_7_choice_2.html +++ b/annotated_outputs/cheung_variants/lifeboat_7_choice_2.html @@ -3,8 +3,8 @@ @@ -61,57 +61,26 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "other people in lifeboat a", color: {background: '#279aba'}}, - {id: 3, label: "10 adults who might leave\n lifeboat b if instructed", color: {background: '#279aba'}}, - {id: 4, label: "11 remaining people in lifeboat\n b if 10 adults leave", color: {background: '#279aba'}}, - {id: 5, label: "do not reply", color: {background: '#ba2769'}}, - {id: 6, label: "value", color: {background: '#8e7db5'}}, - {id: 7, label: "People in Lifeboat B receive\n no guidance from me", color: {background: '#e6c440'}}, - {id: 8, label: "Lifeboat B remains dangerously overcrowded", color: {background: '#e6c440'}}, - {id: 9, label: "People in Lifeboat B remain\n in immediate danger of sinking", color: {background: '#e6c440'}}, - {id: 10, label: "No one is ordered into\n the freezing water by me", color: {background: '#e6c440'}}, - {id: 11, label: "People in Lifeboat A remain\n at full capacity", color: {background: '#e6c440'}}, - {id: 12, label: "No additional people board Lifeboat\n A", color: {background: '#e6c440'}} + {id: 2, label: "other occupants of lifeboat a", color: {background: '#279aba'}}, + {id: 3, label: "61 occupants of lifeboat b", color: {background: '#279aba'}}, + {id: 4, label: "do nothing", color: {background: '#ba2769'}}, + {id: 5, label: "value", color: {background: '#8e7db5'}}, + {id: 6, label: "Lifeboat B sinks", color: {background: '#e6c440'}}, + {id: 7, label: "The 61 people from Lifeboat\n B become chilly before rescue", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 8, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 9, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C+I+K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 12, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 6, label: "-38.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 6, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 5, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 6, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 1, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 2, label: "-40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 3, label: "-98", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 7, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 4, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 4, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 4, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 2, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 3, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 4, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/lifeboat_7_choice_2.json b/annotated_outputs/cheung_variants/lifeboat_7_choice_2.json index abee81d5..06379758 100644 --- a/annotated_outputs/cheung_variants/lifeboat_7_choice_2.json +++ b/annotated_outputs/cheung_variants/lifeboat_7_choice_2.json @@ -1,13 +1,8 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do not reply"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "People in Lifeboat B receive no guidance from me"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "Lifeboat B remains dangerously overcrowded"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "People in Lifeboat B remain in immediate danger of sinking"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "No one is ordered into the freezing water by me"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "People in Lifeboat A remain at full capacity"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "No additional people board Lifeboat A"}]} -{"node": {"kind": "being", "label": "other people in lifeboat a"}, "links": []} -{"node": {"kind": "being", "label": "10 adults who might leave lifeboat b if instructed"}, "links": []} -{"node": {"kind": "being", "label": "11 remaining people in lifeboat b if 10 adults leave"}, "links": []} -{"node": {"kind": "action_choice", "label": "do not reply"}, "links": [{"link": {"kind": "v-link", "value": "-38.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B receive no guidance from me"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B remains dangerously overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B remain in immediate danger of sinking"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "No one is ordered into the freezing water by me"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat A remain at full capacity"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "No additional people board Lifeboat A"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Lifeboat B sinks"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The 61 people from Lifeboat B become chilly before rescue"}]} +{"node": {"kind": "being", "label": "other occupants of lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "61 occupants of lifeboat b"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B sinks"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 61 people from Lifeboat B become chilly before rescue"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "People in Lifeboat B receive no guidance from me"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "10 adults who might leave lifeboat b if instructed"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "11 remaining people in lifeboat b if 10 adults leave"}]} -{"node": {"kind": "event", "label": "Lifeboat B remains dangerously overcrowded"}, "links": [{"link": {"kind": "utility", "value": "-78"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "10 adults who might leave lifeboat b if instructed"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "11 remaining people in lifeboat b if 10 adults leave"}]} -{"node": {"kind": "event", "label": "People in Lifeboat B remain in immediate danger of sinking"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "10 adults who might leave lifeboat b if instructed"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "11 remaining people in lifeboat b if 10 adults leave"}]} -{"node": {"kind": "event", "label": "No one is ordered into the freezing water by me"}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "10 adults who might leave lifeboat b if instructed"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "11 remaining people in lifeboat b if 10 adults leave"}]} -{"node": {"kind": "event", "label": "People in Lifeboat A remain at full capacity"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "10 adults who might leave lifeboat b if instructed"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "11 remaining people in lifeboat b if 10 adults leave"}]} -{"node": {"kind": "event", "label": "No additional people board Lifeboat A"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "10 adults who might leave lifeboat b if instructed"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "11 remaining people in lifeboat b if 10 adults leave"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "Lifeboat B sinks"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-98"}, "to_node": "61 occupants of lifeboat b"}]} +{"node": {"kind": "event", "label": "The 61 people from Lifeboat B become chilly before rescue"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other occupants of lifeboat a"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "61 occupants of lifeboat b"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/lifeboat_8_choice_1.json b/annotated_outputs/cheung_variants/lifeboat_8_choice_1.json index eeb1fc23..9e29e23f 100644 --- a/annotated_outputs/cheung_variants/lifeboat_8_choice_1.json +++ b/annotated_outputs/cheung_variants/lifeboat_8_choice_1.json @@ -1,13 +1,13 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "order for the random selection of 10 passengers from lifeboat B to be sent overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "10 randomly selected people in Lifeboat B are thrown into the ocean"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "10 people thrown into the ocean die from freezing"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Lifeboat B becomes less overcrowded"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The remaining people in Lifeboat B become more likely to stay afloat"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The people in Lifeboat B experience fear and distress"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I experience the burden of ordering 10 people to their deaths"}]} -{"node": {"kind": "being", "label": "other people in lifeboat a"}, "links": []} -{"node": {"kind": "being", "label": "10 randomly selected people in lifeboat b to be sent overboard"}, "links": []} -{"node": {"kind": "being", "label": "11 remaining people in lifeboat b"}, "links": []} -{"node": {"kind": "action_choice", "label": "order for the random selection of 10 passengers from lifeboat B to be sent overboard"}, "links": [{"link": {"kind": "v-link", "value": "-41.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "10 randomly selected people in Lifeboat B are thrown into the ocean"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "10 people thrown into the ocean die from freezing"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes less overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The remaining people in Lifeboat B become more likely to stay afloat"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The people in Lifeboat B experience fear and distress"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I experience the burden of ordering 10 people to their deaths"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "remove the barrier protecting 10 passengers from falling overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Ten passengers from Lifeboat B fall into the water"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "Those ten passengers become cold"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Those ten passengers experience fear and distress"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Lifeboat B becomes stable"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The remaining passengers and crew in Lifeboat B stay aboard instead of sinking"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The passengers and crew in Lifeboat B experience distress from witnessing the passengers go overboard"}]} +{"node": {"kind": "being", "label": "an unknown number of other crew members and passengers in lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "10 passengers in lifeboat b currently being kept from falling overboard by the barrier"}, "links": []} +{"node": {"kind": "being", "label": "51 other passengers and crew members in lifeboat b"}, "links": []} +{"node": {"kind": "action_choice", "label": "remove the barrier protecting 10 passengers from falling overboard"}, "links": [{"link": {"kind": "v-link", "value": "-59.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Ten passengers from Lifeboat B fall into the water"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Those ten passengers become cold"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Those ten passengers experience fear and distress"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes stable"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The remaining passengers and crew in Lifeboat B stay aboard instead of sinking"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The passengers and crew in Lifeboat B experience distress from witnessing the passengers go overboard"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "10 randomly selected people in Lifeboat B are thrown into the ocean"}, "links": [{"link": {"kind": "utility", "value": "-2"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 randomly selected people in lifeboat b to be sent overboard"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "10 people thrown into the ocean die from freezing"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 randomly selected people in lifeboat b to be sent overboard"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Lifeboat B becomes less overcrowded"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 randomly selected people in lifeboat b to be sent overboard"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "The remaining people in Lifeboat B become more likely to stay afloat"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 randomly selected people in lifeboat b to be sent overboard"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "The people in Lifeboat B experience fear and distress"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 randomly selected people in lifeboat b to be sent overboard"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "I experience the burden of ordering 10 people to their deaths"}, "links": [{"link": {"kind": "utility", "value": "-95"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 randomly selected people in lifeboat b to be sent overboard"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "11 remaining people in lifeboat b"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "Ten passengers from Lifeboat B fall into the water"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-5"}, "to_node": "an unknown number of other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "10 passengers in lifeboat b currently being kept from falling overboard by the barrier"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "51 other passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "Those ten passengers become cold"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-3"}, "to_node": "an unknown number of other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "10 passengers in lifeboat b currently being kept from falling overboard by the barrier"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "51 other passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "Those ten passengers experience fear and distress"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "an unknown number of other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "10 passengers in lifeboat b currently being kept from falling overboard by the barrier"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "51 other passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "Lifeboat B becomes stable"}, "links": [{"link": {"kind": "utility", "value": "65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "an unknown number of other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "10 passengers in lifeboat b currently being kept from falling overboard by the barrier"}, {"link": {"kind": "utility", "value": "82"}, "to_node": "51 other passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "The remaining passengers and crew in Lifeboat B stay aboard instead of sinking"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "6"}, "to_node": "an unknown number of other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "10 passengers in lifeboat b currently being kept from falling overboard by the barrier"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "51 other passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "The passengers and crew in Lifeboat B experience distress from witnessing the passengers go overboard"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "an unknown number of other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "10 passengers in lifeboat b currently being kept from falling overboard by the barrier"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "51 other passengers and crew members in lifeboat b"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/lifeboat_8_choice_2.html b/annotated_outputs/cheung_variants/lifeboat_8_choice_2.html index 697211de..73d6f86d 100644 --- a/annotated_outputs/cheung_variants/lifeboat_8_choice_2.html +++ b/annotated_outputs/cheung_variants/lifeboat_8_choice_2.html @@ -3,8 +3,8 @@ @@ -61,64 +61,44 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "other people in lifeboat a", color: {background: '#279aba'}}, - {id: 3, label: "10 adults in lifeboat b\n who might leave the boat", color: {background: '#279aba'}}, - {id: 4, label: "11 remaining people in lifeboat\n b", color: {background: '#279aba'}}, - {id: 5, label: "do not reply", color: {background: '#ba2769'}}, - {id: 6, label: "value", color: {background: '#8e7db5'}}, - {id: 7, label: "People in Lifeboat B receive\n no instructions from me", color: {background: '#e6c440'}}, - {id: 8, label: "Overcrowding in Lifeboat B continues", color: {background: '#e6c440'}}, - {id: 9, label: "Lifeboat B remains unstable in\n the storm", color: {background: '#e6c440'}}, - {id: 10, label: "People in Lifeboat B remain\n in immediate danger of the\n boat sinking", color: {background: '#e6c440'}}, - {id: 11, label: "No one is ordered by\n me to leave Lifeboat B", color: {background: '#e6c440'}}, - {id: 12, label: "No one is sent into\n the freezing water because of\n me", color: {background: '#e6c440'}}, - {id: 13, label: "I avoid directly causing passengers\n to freeze to death", color: {background: '#e6c440'}} + {id: 2, label: "the several other crew members\n and passengers in lifeboat a", color: {background: '#279aba'}}, + {id: 3, label: "the 61 passengers and crew\n members in lifeboat b", color: {background: '#279aba'}}, + {id: 4, label: "do nothing", color: {background: '#ba2769'}}, + {id: 5, label: "value", color: {background: '#8e7db5'}}, + {id: 6, label: "Lifeboat B remains dangerously overcrowded", color: {background: '#e6c440'}}, + {id: 7, label: "Lifeboat B sinks", color: {background: '#e6c440'}}, + {id: 8, label: "The 61 passengers and crew\n members in Lifeboat B end\n up in the cold water", color: {background: '#e6c440'}}, + {id: 9, label: "The people from Lifeboat B\n become chilly before rescue", color: {background: '#e6c440'}}, + {id: 10, label: "No one dies", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 6, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 9, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C+I+K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 12, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 13, label: "C+I+K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 6, label: "-38.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 13, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 4, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 4, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 4, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "-96", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 1, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 3, label: "78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 4, label: "78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 1, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 3, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 4, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 10, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 5, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 6, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 2, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 3, label: "-80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "-90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-98", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-20", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "-20", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "-15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 2, label: "95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/lifeboat_8_choice_2.json b/annotated_outputs/cheung_variants/lifeboat_8_choice_2.json index bb20faa2..caa57a91 100644 --- a/annotated_outputs/cheung_variants/lifeboat_8_choice_2.json +++ b/annotated_outputs/cheung_variants/lifeboat_8_choice_2.json @@ -1,14 +1,11 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do not reply"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "People in Lifeboat B receive no instructions from me"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Overcrowding in Lifeboat B continues"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "Lifeboat B remains unstable in the storm"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "People in Lifeboat B remain in immediate danger of the boat sinking"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "No one is ordered by me to leave Lifeboat B"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "No one is sent into the freezing water because of me"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "I avoid directly causing passengers to freeze to death"}]} -{"node": {"kind": "being", "label": "other people in lifeboat a"}, "links": []} -{"node": {"kind": "being", "label": "10 adults in lifeboat b who might leave the boat"}, "links": []} -{"node": {"kind": "being", "label": "11 remaining people in lifeboat b"}, "links": []} -{"node": {"kind": "action_choice", "label": "do not reply"}, "links": [{"link": {"kind": "v-link", "value": "-38.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B receive no instructions from me"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Overcrowding in Lifeboat B continues"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B remains unstable in the storm"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B remain in immediate danger of the boat sinking"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "No one is ordered by me to leave Lifeboat B"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "No one is sent into the freezing water because of me"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid directly causing passengers to freeze to death"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Lifeboat B remains dangerously overcrowded"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Lifeboat B sinks"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The 61 passengers and crew members in Lifeboat B end up in the cold water"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The people from Lifeboat B become chilly before rescue"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "No one dies"}]} +{"node": {"kind": "being", "label": "the several other crew members and passengers in lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "the 61 passengers and crew members in lifeboat b"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B remains dangerously overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B sinks"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 61 passengers and crew members in Lifeboat B end up in the cold water"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The people from Lifeboat B become chilly before rescue"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "No one dies"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "People in Lifeboat B receive no instructions from me"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "10 adults in lifeboat b who might leave the boat"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Overcrowding in Lifeboat B continues"}, "links": [{"link": {"kind": "utility", "value": "-78"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "10 adults in lifeboat b who might leave the boat"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Lifeboat B remains unstable in the storm"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "10 adults in lifeboat b who might leave the boat"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "People in Lifeboat B remain in immediate danger of the boat sinking"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "10 adults in lifeboat b who might leave the boat"}, {"link": {"kind": "utility", "value": "-96"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "No one is ordered by me to leave Lifeboat B"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "10 adults in lifeboat b who might leave the boat"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "No one is sent into the freezing water because of me"}, "links": [{"link": {"kind": "utility", "value": "85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "10 adults in lifeboat b who might leave the boat"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "I avoid directly causing passengers to freeze to death"}, "links": [{"link": {"kind": "utility", "value": "85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "10 adults in lifeboat b who might leave the boat"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "11 remaining people in lifeboat b"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "Lifeboat B remains dangerously overcrowded"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "the 61 passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "Lifeboat B sinks"}, "links": [{"link": {"kind": "utility", "value": "-90"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "the several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-98"}, "to_node": "the 61 passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "The 61 passengers and crew members in Lifeboat B end up in the cold water"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "the several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the 61 passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "The people from Lifeboat B become chilly before rescue"}, "links": [{"link": {"kind": "utility", "value": "-20"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "the 61 passengers and crew members in lifeboat b"}]} +{"node": {"kind": "event", "label": "No one dies"}, "links": [{"link": {"kind": "utility", "value": "85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "the several other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "the 61 passengers and crew members in lifeboat b"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/lifeboat_9_choice_1.json b/annotated_outputs/cheung_variants/lifeboat_9_choice_1.json index 736eadf2..bbdfbf98 100644 --- a/annotated_outputs/cheung_variants/lifeboat_9_choice_1.json +++ b/annotated_outputs/cheung_variants/lifeboat_9_choice_1.json @@ -1,13 +1,14 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "ask for 10 passengers from lifeboat B to volunteer to go overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I ask for 10 passengers in Lifeboat B to volunteer to go overboard"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "10 passengers from Lifeboat B die from freezing"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Lifeboat B becomes less overcrowded"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The remaining people in Lifeboat B become more likely to stay afloat"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "The people in Lifeboat A remain at full capacity"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I bear responsibility for directing the sacrifice of 10 passengers"}]} -{"node": {"kind": "being", "label": "other people in lifeboat a"}, "links": []} -{"node": {"kind": "being", "label": "10 volunteers from lifeboat b who would go overboard"}, "links": []} -{"node": {"kind": "being", "label": "11 remaining people in lifeboat b"}, "links": []} -{"node": {"kind": "action_choice", "label": "ask for 10 passengers from lifeboat B to volunteer to go overboard"}, "links": [{"link": {"kind": "v-link", "value": "-12.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I ask for 10 passengers in Lifeboat B to volunteer to go overboard"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "10 passengers from Lifeboat B die from freezing"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes less overcrowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The remaining people in Lifeboat B become more likely to stay afloat"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The people in Lifeboat A remain at full capacity"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I bear responsibility for directing the sacrifice of 10 passengers"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "ask for 10 passengers to volunteer to go overboard"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "People in Lifeboat B experience fear and distress"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "Ten people in Lifeboat B enter the cold water"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "Those ten people become very cold"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "Lifeboat B becomes less crowded"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "Lifeboat B becomes stable"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "The people remaining in Lifeboat B are in less immediate danger"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I experience emotional strain"}]} +{"node": {"kind": "being", "label": "other crew members and passengers in lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "10 passenger volunteers from lifeboat b who would go overboard"}, "links": []} +{"node": {"kind": "being", "label": "51 remaining passengers and crew members in lifeboat b who would stay aboard"}, "links": []} +{"node": {"kind": "action_choice", "label": "ask for 10 passengers to volunteer to go overboard"}, "links": [{"link": {"kind": "v-link", "value": "-37.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B experience fear and distress"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Ten people in Lifeboat B enter the cold water"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Those ten people become very cold"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes less crowded"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B becomes stable"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The people remaining in Lifeboat B are in less immediate danger"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I experience emotional strain"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I ask for 10 passengers in Lifeboat B to volunteer to go overboard"}, "links": [{"link": {"kind": "utility", "value": "-78"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "2"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 volunteers from lifeboat b who would go overboard"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "10 passengers from Lifeboat B die from freezing"}, "links": [{"link": {"kind": "utility", "value": "-2"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 volunteers from lifeboat b who would go overboard"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Lifeboat B becomes less overcrowded"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "2"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 volunteers from lifeboat b who would go overboard"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "The remaining people in Lifeboat B become more likely to stay afloat"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "10 volunteers from lifeboat b who would go overboard"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "The people in Lifeboat A remain at full capacity"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 volunteers from lifeboat b who would go overboard"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "I bear responsibility for directing the sacrifice of 10 passengers"}, "links": [{"link": {"kind": "utility", "value": "-95"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "10 volunteers from lifeboat b who would go overboard"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "11 remaining people in lifeboat b"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "People in Lifeboat B experience fear and distress"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "10 passenger volunteers from lifeboat b who would go overboard"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "51 remaining passengers and crew members in lifeboat b who would stay aboard"}]} +{"node": {"kind": "event", "label": "Ten people in Lifeboat B enter the cold water"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-5"}, "to_node": "other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 passenger volunteers from lifeboat b who would go overboard"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "51 remaining passengers and crew members in lifeboat b who would stay aboard"}]} +{"node": {"kind": "event", "label": "Those ten people become very cold"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "10 passenger volunteers from lifeboat b who would go overboard"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "51 remaining passengers and crew members in lifeboat b who would stay aboard"}]} +{"node": {"kind": "event", "label": "Lifeboat B becomes less crowded"}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "10 passenger volunteers from lifeboat b who would go overboard"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "51 remaining passengers and crew members in lifeboat b who would stay aboard"}]} +{"node": {"kind": "event", "label": "Lifeboat B becomes stable"}, "links": [{"link": {"kind": "utility", "value": "65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "10 passenger volunteers from lifeboat b who would go overboard"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "51 remaining passengers and crew members in lifeboat b who would stay aboard"}]} +{"node": {"kind": "event", "label": "The people remaining in Lifeboat B are in less immediate danger"}, "links": [{"link": {"kind": "utility", "value": "45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "10 passenger volunteers from lifeboat b who would go overboard"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "51 remaining passengers and crew members in lifeboat b who would stay aboard"}]} +{"node": {"kind": "event", "label": "I experience emotional strain"}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "10 passenger volunteers from lifeboat b who would go overboard"}, {"link": {"kind": "utility", "value": "-5"}, "to_node": "51 remaining passengers and crew members in lifeboat b who would stay aboard"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/lifeboat_9_choice_2.html b/annotated_outputs/cheung_variants/lifeboat_9_choice_2.html index 34fd84b2..81f56d21 100644 --- a/annotated_outputs/cheung_variants/lifeboat_9_choice_2.html +++ b/annotated_outputs/cheung_variants/lifeboat_9_choice_2.html @@ -3,8 +3,8 @@ @@ -60,51 +60,37 @@ } function return_vis_dataset() { var nodes = new vis.DataSet([ - {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "other people in lifeboat a", color: {background: '#279aba'}}, - {id: 3, label: "10 adults who might leave\n lifeboat b", color: {background: '#279aba'}}, - {id: 4, label: "11 remaining people in lifeboat\n b", color: {background: '#279aba'}}, - {id: 5, label: "do not reply", color: {background: '#ba2769'}}, + {id: 1, label: "i, the captain in lifeboat\n a", color: {background: '#279aba'}}, + {id: 2, label: "other crew members and passengers\n in lifeboat a", color: {background: '#279aba'}}, + {id: 3, label: "passengers and crew members in\n lifeboat b", color: {background: '#279aba'}}, + {id: 4, label: "i", color: {background: '#279aba'}}, + {id: 5, label: "do nothing", color: {background: '#ba2769'}}, {id: 6, label: "value", color: {background: '#8e7db5'}}, - {id: 7, label: "People in Lifeboat B receive\n no instructions from me", color: {background: '#e6c440'}}, - {id: 8, label: "Overcrowding in Lifeboat B continues", color: {background: '#e6c440'}}, - {id: 9, label: "People in Lifeboat B remain\n in immediate danger of the\n lifeboat sinking", color: {background: '#e6c440'}}, - {id: 10, label: "I avoid ordering anyone in\n Lifeboat B to enter the\n freezing water", color: {background: '#e6c440'}}, - {id: 11, label: "I do not cause anyone\n to freeze to death by\n command", color: {background: '#e6c440'}} + {id: 7, label: "Lifeboat B sinks", color: {background: '#e6c440'}}, + {id: 8, label: "The 61 passengers and crew\n from Lifeboat B get chilly", color: {background: '#e6c440'}}, + {id: 9, label: "No one dies", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 8, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 9, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 6, label: "-38.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 8, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 9, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 6, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 4, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "-10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 4, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 4, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "2", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "-40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 4, label: "-80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-2", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 4, label: "80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/lifeboat_9_choice_2.json b/annotated_outputs/cheung_variants/lifeboat_9_choice_2.json index eb189f92..f743d0d1 100644 --- a/annotated_outputs/cheung_variants/lifeboat_9_choice_2.json +++ b/annotated_outputs/cheung_variants/lifeboat_9_choice_2.json @@ -1,12 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do not reply"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "People in Lifeboat B receive no instructions from me"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "Overcrowding in Lifeboat B continues"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "People in Lifeboat B remain in immediate danger of the lifeboat sinking"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I avoid ordering anyone in Lifeboat B to enter the freezing water"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "I do not cause anyone to freeze to death by command"}]} -{"node": {"kind": "being", "label": "other people in lifeboat a"}, "links": []} -{"node": {"kind": "being", "label": "10 adults who might leave lifeboat b"}, "links": []} -{"node": {"kind": "being", "label": "11 remaining people in lifeboat b"}, "links": []} -{"node": {"kind": "action_choice", "label": "do not reply"}, "links": [{"link": {"kind": "v-link", "value": "-38.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B receive no instructions from me"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Overcrowding in Lifeboat B continues"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in Lifeboat B remain in immediate danger of the lifeboat sinking"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid ordering anyone in Lifeboat B to enter the freezing water"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not cause anyone to freeze to death by command"}]} +{"node": {"kind": "being", "label": "i, the captain in lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "other crew members and passengers in lifeboat a"}, "links": []} +{"node": {"kind": "being", "label": "passengers and crew members in lifeboat b"}, "links": []} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Lifeboat B sinks"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The 61 passengers and crew from Lifeboat B get chilly"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "No one dies"}]} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Lifeboat B sinks"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 61 passengers and crew from Lifeboat B get chilly"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "No one dies"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "People in Lifeboat B receive no instructions from me"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "Overcrowding in Lifeboat B continues"}, "links": [{"link": {"kind": "utility", "value": "-78"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "People in Lifeboat B remain in immediate danger of the lifeboat sinking"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "I avoid ordering anyone in Lifeboat B to enter the freezing water"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "2"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "11 remaining people in lifeboat b"}]} -{"node": {"kind": "event", "label": "I do not cause anyone to freeze to death by command"}, "links": [{"link": {"kind": "utility", "value": "85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "other people in lifeboat a"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "10 adults who might leave lifeboat b"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "11 remaining people in lifeboat b"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "Lifeboat B sinks"}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "The 61 passengers and crew from Lifeboat B get chilly"}, "links": [{"link": {"kind": "utility", "value": "-2"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "No one dies"}, "links": [{"link": {"kind": "utility", "value": "85"}, "to_node": "i, the captain in lifeboat a"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "other crew members and passengers in lifeboat a"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "passengers and crew members in lifeboat b"}, {"link": {"kind": "utility", "value": "80"}, "to_node": "i"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/robinhood_1_choice_1.json b/annotated_outputs/cheung_variants/robinhood_1_choice_1.json index 16aac26e..a16372db 100644 --- a/annotated_outputs/cheung_variants/robinhood_1_choice_1.json +++ b/annotated_outputs/cheung_variants/robinhood_1_choice_1.json @@ -1,20 +1,15 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "falsify credit ratings for indebted customers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I falsify credit ratings for fifteen indebted customers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Fifteen indebted customers receive loans they did not qualify for"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The severe-case customer receives funds that prevent immediate financial ruin"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The families of the fifteen indebted customers avoid immediate bankruptcy"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Wealthy customers' deposits and investments are misused"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Wealthy customers' trust is violated"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "My superiors' trust is violated"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I commit fraud"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I experience less stress from the loan interviews"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The fifteen indebted customers experience less stress from the loan interviews"}]} -{"node": {"kind": "being", "label": "1 severely indebted customer"}, "links": []} -{"node": {"kind": "being", "label": "1 family of the severely indebted customer"}, "links": []} -{"node": {"kind": "being", "label": "14 other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "14 families of the other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customers whose deposits/investments would be temporarily redirected"}, "links": []} -{"node": {"kind": "being", "label": "my superiors"}, "links": []} -{"node": {"kind": "action_choice", "label": "falsify credit ratings for indebted customers"}, "links": [{"link": {"kind": "v-link", "value": "-62.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I falsify credit ratings for fifteen indebted customers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Fifteen indebted customers receive loans they did not qualify for"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The severe-case customer receives funds that prevent immediate financial ruin"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The families of the fifteen indebted customers avoid immediate bankruptcy"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Wealthy customers' deposits and investments are misused"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Wealthy customers' trust is violated"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My superiors' trust is violated"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I commit fraud"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I experience less stress from the loan interviews"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The fifteen indebted customers experience less stress from the loan interviews"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "falsify the family's credit score"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family is approved for the loan"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family receives additional debt"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family avoids immediate bankruptcy"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The bank issues a loan to a borrower who does not meet its lending conditions"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The bank is exposed to increased financial risk"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I deceive the bank"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I abuse the trust of colleagues"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I violate professional and legal duties"}]} +{"node": {"kind": "being", "label": "the indebted family of 5"}, "links": []} +{"node": {"kind": "being", "label": "my other loyal customers"}, "links": []} +{"node": {"kind": "being", "label": "my colleagues"}, "links": []} +{"node": {"kind": "action_choice", "label": "falsify the family's credit score"}, "links": [{"link": {"kind": "v-link", "value": "-71.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family is approved for the loan"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family receives additional debt"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family avoids immediate bankruptcy"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The bank issues a loan to a borrower who does not meet its lending conditions"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The bank is exposed to increased financial risk"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I deceive the bank"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I abuse the trust of colleagues"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I violate professional and legal duties"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I falsify credit ratings for fifteen indebted customers"}, "links": [{"link": {"kind": "utility", "value": "-78"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-58"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Fifteen indebted customers receive loans they did not qualify for"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-42"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The severe-case customer receives funds that prevent immediate financial ruin"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "92"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The families of the fifteen indebted customers avoid immediate bankruptcy"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Wealthy customers' deposits and investments are misused"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Wealthy customers' trust is violated"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "My superiors' trust is violated"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I commit fraud"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I experience less stress from the loan interviews"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "6"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The fifteen indebted customers experience less stress from the loan interviews"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "2"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my superiors"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The family is approved for the loan"}, "links": [{"link": {"kind": "utility", "value": "40"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "the indebted family of 5"}, {"link": {"kind": "utility", "value": "2"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my colleagues"}]} +{"node": {"kind": "event", "label": "The family receives additional debt"}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the indebted family of 5"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "-5"}, "to_node": "my colleagues"}]} +{"node": {"kind": "event", "label": "The family avoids immediate bankruptcy"}, "links": [{"link": {"kind": "utility", "value": "65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "60"}, "to_node": "the indebted family of 5"}, {"link": {"kind": "utility", "value": "18"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "my colleagues"}]} +{"node": {"kind": "event", "label": "The bank issues a loan to a borrower who does not meet its lending conditions"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the indebted family of 5"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my colleagues"}]} +{"node": {"kind": "event", "label": "The bank is exposed to increased financial risk"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "the indebted family of 5"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my colleagues"}]} +{"node": {"kind": "event", "label": "I deceive the bank"}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the indebted family of 5"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "my colleagues"}]} +{"node": {"kind": "event", "label": "I abuse the trust of colleagues"}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the indebted family of 5"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "my colleagues"}]} +{"node": {"kind": "event", "label": "I violate professional and legal duties"}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the indebted family of 5"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "my colleagues"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/robinhood_1_choice_2.html b/annotated_outputs/cheung_variants/robinhood_1_choice_2.html index 11d59825..4c0fe33d 100644 --- a/annotated_outputs/cheung_variants/robinhood_1_choice_2.html +++ b/annotated_outputs/cheung_variants/robinhood_1_choice_2.html @@ -3,8 +3,8 @@ @@ -61,78 +61,44 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "1 severely indebted customer", color: {background: '#279aba'}}, - {id: 3, label: "1 family of the severely\n indebted customer", color: {background: '#279aba'}}, - {id: 4, label: "14 other indebted customers", color: {background: '#279aba'}}, - {id: 5, label: "14 families of the other\n indebted customers", color: {background: '#279aba'}}, - {id: 6, label: "wealthy customers whose deposits and\n investments could be redirected", color: {background: '#279aba'}}, - {id: 7, label: "my superiors", color: {background: '#279aba'}}, - {id: 8, label: "do not falsify credit ratings\n for indebted customers", color: {background: '#ba2769'}}, - {id: 9, label: "value", color: {background: '#8e7db5'}}, - {id: 10, label: "I do not falsify credit\n ratings for the fifteen indebted\n customers", color: {background: '#e6c440'}}, - {id: 11, label: "The fifteen indebted customers are\n denied loans", color: {background: '#e6c440'}}, - {id: 12, label: "The severe-case customer is not\n rescued by a fraudulent loan", color: {background: '#e6c440'}}, - {id: 13, label: "I avoid abusing the trust\n of my superiors", color: {background: '#e6c440'}}, - {id: 14, label: "Deposits and investments of other\n customers remain untouched", color: {background: '#e6c440'}}, - {id: 15, label: "I avoid stressful fraud-related actions", color: {background: '#e6c440'}} + {id: 2, label: "family of 5 loyal customers\n who are deeply in debt", color: {background: '#279aba'}}, + {id: 3, label: "unknown number of my colleagues\n at the bank", color: {background: '#279aba'}}, + {id: 4, label: "do nothing", color: {background: '#ba2769'}}, + {id: 5, label: "value", color: {background: '#8e7db5'}}, + {id: 6, label: "The family is denied another\n loan", color: {background: '#e6c440'}}, + {id: 7, label: "The family remains deeply in\n debt", color: {background: '#e6c440'}}, + {id: 8, label: "The family's bankruptcy is not\n prevented", color: {background: '#e6c440'}}, + {id: 9, label: "Other customers' trust is not\n betrayed", color: {background: '#e6c440'}}, + {id: 10, label: "My colleagues' trust is not\n betrayed", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 8, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 6, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 9, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 10, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 12, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 13, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 14, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 15, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 9, label: "19.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 13, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 14, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 15, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 5, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 6, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 7, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 5, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 6, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 7, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 4, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 5, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 6, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 7, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 3, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 5, label: "6", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 6, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 7, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 2, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 4, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 5, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 6, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 7, label: "70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 2, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 3, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 4, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 5, label: "18", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 6, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 7, label: "10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 5, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 6, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 1, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 2, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/robinhood_1_choice_2.json b/annotated_outputs/cheung_variants/robinhood_1_choice_2.json index b09b126b..e55edeef 100644 --- a/annotated_outputs/cheung_variants/robinhood_1_choice_2.json +++ b/annotated_outputs/cheung_variants/robinhood_1_choice_2.json @@ -1,16 +1,11 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do not falsify credit ratings for indebted customers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not falsify credit ratings for the fifteen indebted customers"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The fifteen indebted customers are denied loans"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The severe-case customer is not rescued by a fraudulent loan"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I avoid abusing the trust of my superiors"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Deposits and investments of other customers remain untouched"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I avoid stressful fraud-related actions"}]} -{"node": {"kind": "being", "label": "1 severely indebted customer"}, "links": []} -{"node": {"kind": "being", "label": "1 family of the severely indebted customer"}, "links": []} -{"node": {"kind": "being", "label": "14 other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "14 families of the other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customers whose deposits and investments could be redirected"}, "links": []} -{"node": {"kind": "being", "label": "my superiors"}, "links": []} -{"node": {"kind": "action_choice", "label": "do not falsify credit ratings for indebted customers"}, "links": [{"link": {"kind": "v-link", "value": "19.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not falsify credit ratings for the fifteen indebted customers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The fifteen indebted customers are denied loans"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The severe-case customer is not rescued by a fraudulent loan"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid abusing the trust of my superiors"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Deposits and investments of other customers remain untouched"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid stressful fraud-related actions"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family is denied another loan"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family remains deeply in debt"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family's bankruptcy is not prevented"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Other customers' trust is not betrayed"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "My colleagues' trust is not betrayed"}]} +{"node": {"kind": "being", "label": "family of 5 loyal customers who are deeply in debt"}, "links": []} +{"node": {"kind": "being", "label": "unknown number of my colleagues at the bank"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family is denied another loan"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family remains deeply in debt"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's bankruptcy is not prevented"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Other customers' trust is not betrayed"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My colleagues' trust is not betrayed"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I do not falsify credit ratings for the fifteen indebted customers"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "wealthy customers whose deposits and investments could be redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The fifteen indebted customers are denied loans"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "wealthy customers whose deposits and investments could be redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The severe-case customer is not rescued by a fraudulent loan"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits and investments could be redirected"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I avoid abusing the trust of my superiors"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "6"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits and investments could be redirected"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Deposits and investments of other customers remain untouched"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits and investments could be redirected"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I avoid stressful fraud-related actions"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "18"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits and investments could be redirected"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "my superiors"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The family is denied another loan"}, "links": [{"link": {"kind": "utility", "value": "-45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "family of 5 loyal customers who are deeply in debt"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "unknown number of my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The family remains deeply in debt"}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "family of 5 loyal customers who are deeply in debt"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "unknown number of my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The family's bankruptcy is not prevented"}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "family of 5 loyal customers who are deeply in debt"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "unknown number of my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "Other customers' trust is not betrayed"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "family of 5 loyal customers who are deeply in debt"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "unknown number of my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "My colleagues' trust is not betrayed"}, "links": [{"link": {"kind": "utility", "value": "30"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "family of 5 loyal customers who are deeply in debt"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "unknown number of my colleagues at the bank"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/robinhood_2_choice_1.json b/annotated_outputs/cheung_variants/robinhood_2_choice_1.json index 4fd5bdd9..4276de67 100644 --- a/annotated_outputs/cheung_variants/robinhood_2_choice_1.json +++ b/annotated_outputs/cheung_variants/robinhood_2_choice_1.json @@ -1,17 +1,14 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "bypass the loan restrictions for indebted customers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Fifteen indebted customers receive loans"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Fifteen indebted customers' families avoid immediate bankruptcy"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I commit fraud"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I abuse the trust of wealthy customers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Deposits and investments of other customers are temporarily redirected"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The severe-case customer and the severe-case customer's family avoid immediate ruin"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Stressful loan denial interviews for those fifteen customers do not occur"}]} -{"node": {"kind": "being", "label": "1 severely indebted customer"}, "links": []} -{"node": {"kind": "being", "label": "1 family of the severely indebted customer"}, "links": []} -{"node": {"kind": "being", "label": "14 other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "14 families of the other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customers whose deposits/investments would be redirected"}, "links": []} -{"node": {"kind": "being", "label": "my superiors"}, "links": []} -{"node": {"kind": "action_choice", "label": "bypass the loan restrictions for indebted customers"}, "links": [{"link": {"kind": "v-link", "value": "-30.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Fifteen indebted customers receive loans"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Fifteen indebted customers' families avoid immediate bankruptcy"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I commit fraud"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I abuse the trust of wealthy customers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Deposits and investments of other customers are temporarily redirected"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The severe-case customer and the severe-case customer's family avoid immediate ruin"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Stressful loan denial interviews for those fifteen customers do not occur"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "delete a year of the family's account history"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family's bank records become false and incomplete"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family appears eligible for a loan"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "The family receives a loan it did not qualify for"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family gets immediate financial relief"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I violate bank rules and professional duties"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I betray the trust of other customers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The bank takes on unauthorized financial risk"}]} +{"node": {"kind": "being", "label": "the family of 5 who are deeply in debt"}, "links": []} +{"node": {"kind": "being", "label": "my other loyal customers"}, "links": []} +{"node": {"kind": "being", "label": "my colleagues at the bank"}, "links": []} +{"node": {"kind": "action_choice", "label": "delete a year of the family's account history"}, "links": [{"link": {"kind": "v-link", "value": "-39.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's bank records become false and incomplete"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family appears eligible for a loan"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family receives a loan it did not qualify for"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family gets immediate financial relief"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I violate bank rules and professional duties"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I betray the trust of other customers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The bank takes on unauthorized financial risk"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "Fifteen indebted customers receive loans"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "wealthy customers whose deposits/investments would be redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Fifteen indebted customers' families avoid immediate bankruptcy"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-42"}, "to_node": "wealthy customers whose deposits/investments would be redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I commit fraud"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "wealthy customers whose deposits/investments would be redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I abuse the trust of wealthy customers"}, "links": [{"link": {"kind": "utility", "value": "-76"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-91"}, "to_node": "wealthy customers whose deposits/investments would be redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Deposits and investments of other customers are temporarily redirected"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits/investments would be redirected"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The severe-case customer and the severe-case customer's family avoid immediate ruin"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "6"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits/investments would be redirected"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Stressful loan denial interviews for those fifteen customers do not occur"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "wealthy customers whose deposits/investments would be redirected"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my superiors"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The family's bank records become false and incomplete"}, "links": [{"link": {"kind": "utility", "value": "-45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-68"}, "to_node": "the family of 5 who are deeply in debt"}, {"link": {"kind": "utility", "value": "-5"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The family appears eligible for a loan"}, "links": [{"link": {"kind": "utility", "value": "25"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "18"}, "to_node": "the family of 5 who are deeply in debt"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The family receives a loan it did not qualify for"}, "links": [{"link": {"kind": "utility", "value": "-20"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "the family of 5 who are deeply in debt"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The family gets immediate financial relief"}, "links": [{"link": {"kind": "utility", "value": "65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the family of 5 who are deeply in debt"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "3"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "I violate bank rules and professional duties"}, "links": [{"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the family of 5 who are deeply in debt"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "I betray the trust of other customers"}, "links": [{"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the family of 5 who are deeply in debt"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The bank takes on unauthorized financial risk"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the family of 5 who are deeply in debt"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "my colleagues at the bank"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/robinhood_2_choice_2.html b/annotated_outputs/cheung_variants/robinhood_2_choice_2.html index ec106fae..b5459796 100644 --- a/annotated_outputs/cheung_variants/robinhood_2_choice_2.html +++ b/annotated_outputs/cheung_variants/robinhood_2_choice_2.html @@ -3,8 +3,8 @@ @@ -61,98 +61,71 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "1 severely indebted customer", color: {background: '#279aba'}}, - {id: 3, label: "1 family of the severely\n indebted customer", color: {background: '#279aba'}}, - {id: 4, label: "14 other indebted customers", color: {background: '#279aba'}}, - {id: 5, label: "14 families of the other\n indebted customers", color: {background: '#279aba'}}, - {id: 6, label: "wealthy customers whose deposits/investments could\n be redirected", color: {background: '#279aba'}}, - {id: 7, label: "my superiors", color: {background: '#279aba'}}, - {id: 8, label: "do not bypass the loan\n restrictions for indebted customers", color: {background: '#ba2769'}}, - {id: 9, label: "value", color: {background: '#8e7db5'}}, - {id: 10, label: "I follow the bank's loan\n rules", color: {background: '#e6c440'}}, - {id: 11, label: "The fifteen indebted customers are\n denied loans", color: {background: '#e6c440'}}, - {id: 12, label: "The deposits and investments of\n other customers remain untouched", color: {background: '#e6c440'}}, - {id: 13, label: "The trust of wealthy customers\n is not abused", color: {background: '#e6c440'}}, - {id: 14, label: "The trust of my superiors\n is not abused", color: {background: '#e6c440'}}, - {id: 15, label: "I do not commit fraud", color: {background: '#e6c440'}}, - {id: 16, label: "The severe-case customer is not\n rescued by a loan", color: {background: '#e6c440'}}, - {id: 17, label: "I avoid the stressful act\n of deceiving customers and superiors", color: {background: '#e6c440'}} + {id: 2, label: "the 5 members of the\n indebted family", color: {background: '#279aba'}}, + {id: 3, label: "my other loyal customers", color: {background: '#279aba'}}, + {id: 4, label: "my colleagues at the bank", color: {background: '#279aba'}}, + {id: 5, label: "do nothing", color: {background: '#ba2769'}}, + {id: 6, label: "value", color: {background: '#8e7db5'}}, + {id: 7, label: "The family's account history remains\n unchanged.", color: {background: '#e6c440'}}, + {id: 8, label: "The family does not qualify\n for the additional loan.", color: {background: '#e6c440'}}, + {id: 9, label: "The family does not receive\n the loan.", color: {background: '#e6c440'}}, + {id: 10, label: "The family's financial distress continues.", color: {background: '#e6c440'}}, + {id: 11, label: "The family's bankruptcy is not\n prevented.", color: {background: '#e6c440'}}, + {id: 12, label: "The trust of my other\n customers is not abused.", color: {background: '#e6c440'}}, + {id: 13, label: "The bank does not issue\n a loan to an ineligible\n borrower.", color: {background: '#e6c440'}}, + {id: 14, label: "I avoid committing fraud and\n violating bank rules.", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 8, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 12, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 10, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 11, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 12, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 13, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 14, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 15, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 16, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 17, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 9, label: "28.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 13, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 14, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 15, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 16, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 17, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 5, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 6, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 7, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 5, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 6, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 7, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 2, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 4, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 5, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 6, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 7, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 14, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 6, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 13, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 14, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "-40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "-5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 2, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "-20", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 4, label: "-5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 1, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 2, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 3, label: "-25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 4, label: "-5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 1, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 3, label: "45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 4, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 13, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 2, label: "10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 3, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 4, label: "10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 5, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 6, label: "82", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 7, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 5, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 6, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 7, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 2, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 3, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 4, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 5, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 6, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 7, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 2, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 3, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 4, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 5, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 6, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 7, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 3, label: "6", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 5, label: "6", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 6, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 7, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 2, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 4, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 1, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 2, label: "-40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 3, label: "25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 4, label: "22", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/robinhood_2_choice_2.json b/annotated_outputs/cheung_variants/robinhood_2_choice_2.json index fb823b7b..cd7c3ccb 100644 --- a/annotated_outputs/cheung_variants/robinhood_2_choice_2.json +++ b/annotated_outputs/cheung_variants/robinhood_2_choice_2.json @@ -1,18 +1,15 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do not bypass the loan restrictions for indebted customers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I follow the bank's loan rules"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The fifteen indebted customers are denied loans"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The deposits and investments of other customers remain untouched"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The trust of wealthy customers is not abused"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The trust of my superiors is not abused"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not commit fraud"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The severe-case customer is not rescued by a loan"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I avoid the stressful act of deceiving customers and superiors"}]} -{"node": {"kind": "being", "label": "1 severely indebted customer"}, "links": []} -{"node": {"kind": "being", "label": "1 family of the severely indebted customer"}, "links": []} -{"node": {"kind": "being", "label": "14 other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "14 families of the other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customers whose deposits/investments could be redirected"}, "links": []} -{"node": {"kind": "being", "label": "my superiors"}, "links": []} -{"node": {"kind": "action_choice", "label": "do not bypass the loan restrictions for indebted customers"}, "links": [{"link": {"kind": "v-link", "value": "28.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I follow the bank's loan rules"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The fifteen indebted customers are denied loans"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The deposits and investments of other customers remain untouched"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The trust of wealthy customers is not abused"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The trust of my superiors is not abused"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not commit fraud"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The severe-case customer is not rescued by a loan"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid the stressful act of deceiving customers and superiors"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family's account history remains unchanged."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family does not qualify for the additional loan."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family does not receive the loan."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family's financial distress continues."}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The family's bankruptcy is not prevented."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The trust of my other customers is not abused."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The bank does not issue a loan to an ineligible borrower."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I avoid committing fraud and violating bank rules."}]} +{"node": {"kind": "being", "label": "the 5 members of the indebted family"}, "links": []} +{"node": {"kind": "being", "label": "my other loyal customers"}, "links": []} +{"node": {"kind": "being", "label": "my colleagues at the bank"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's account history remains unchanged."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family does not qualify for the additional loan."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family does not receive the loan."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's financial distress continues."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's bankruptcy is not prevented."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The trust of my other customers is not abused."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The bank does not issue a loan to an ineligible borrower."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid committing fraud and violating bank rules."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I follow the bank's loan rules"}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The fifteen indebted customers are denied loans"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The deposits and investments of other customers remain untouched"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The trust of wealthy customers is not abused"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "82"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The trust of my superiors is not abused"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I do not commit fraud"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The severe-case customer is not rescued by a loan"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I avoid the stressful act of deceiving customers and superiors"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "6"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "6"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my superiors"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The family's account history remains unchanged."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the 5 members of the indebted family"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The family does not qualify for the additional loan."}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "the 5 members of the indebted family"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The family does not receive the loan."}, "links": [{"link": {"kind": "utility", "value": "-40"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the 5 members of the indebted family"}, {"link": {"kind": "utility", "value": "-5"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The family's financial distress continues."}, "links": [{"link": {"kind": "utility", "value": "-45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "the 5 members of the indebted family"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "-5"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The family's bankruptcy is not prevented."}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "the 5 members of the indebted family"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "-5"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The trust of my other customers is not abused."}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the 5 members of the indebted family"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The bank does not issue a loan to an ineligible borrower."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "the 5 members of the indebted family"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "I avoid committing fraud and violating bank rules."}, "links": [{"link": {"kind": "utility", "value": "55"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "the 5 members of the indebted family"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "my other loyal customers"}, {"link": {"kind": "utility", "value": "22"}, "to_node": "my colleagues at the bank"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/robinhood_3_choice_1.json b/annotated_outputs/cheung_variants/robinhood_3_choice_1.json index 694f1c57..86471e92 100644 --- a/annotated_outputs/cheung_variants/robinhood_3_choice_1.json +++ b/annotated_outputs/cheung_variants/robinhood_3_choice_1.json @@ -1,19 +1,12 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "temporarily redirect money from wealthy customers to indebted customers' bank accounts"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Wealthy customers' deposits and investments are moved without their consent"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Fifteen indebted customers receive funds in their bank accounts"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The severe-case customer and the severe-case customer's family avoid immediate financial ruin"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The fifteen indebted customers' apparent creditworthiness increases"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I commit fraud"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I abuse the trust of my superiors"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I violate bank rules and banking law"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I experience reduced stress from the loan interviews"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The fifteen indebted customers experience reduced stress from the loan interviews"}]} -{"node": {"kind": "being", "label": "1 severely indebted customer"}, "links": []} -{"node": {"kind": "being", "label": "1 family of the severely indebted customer"}, "links": []} -{"node": {"kind": "being", "label": "14 other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "14 families of the other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customers whose deposits/investments would be temporarily redirected"}, "links": []} -{"node": {"kind": "being", "label": "my superiors"}, "links": []} -{"node": {"kind": "action_choice", "label": "temporarily redirect money from wealthy customers to indebted customers' bank accounts"}, "links": [{"link": {"kind": "v-link", "value": "-19.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Wealthy customers' deposits and investments are moved without their consent"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Fifteen indebted customers receive funds in their bank accounts"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The severe-case customer and the severe-case customer's family avoid immediate financial ruin"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The fifteen indebted customers' apparent creditworthiness increases"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I commit fraud"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I abuse the trust of my superiors"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I violate bank rules and banking law"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I experience reduced stress from the loan interviews"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The fifteen indebted customers experience reduced stress from the loan interviews"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "temporarily redirect money from another account into the family's account"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family's account appears to meet the loan conditions"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family receives immediate financial relief"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The source account loses access to part of its money"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The source account holder's property is misused"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I breach bank rules and the law"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I abuse the trust of colleagues"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The bank is exposed to fraud and financial risk"}]} +{"node": {"kind": "being", "label": "the indebted family"}, "links": []} +{"node": {"kind": "action_choice", "label": "temporarily redirect money from another account into the family's account"}, "links": [{"link": {"kind": "v-link", "value": "-20.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's account appears to meet the loan conditions"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family receives immediate financial relief"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The source account loses access to part of its money"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The source account holder's property is misused"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I breach bank rules and the law"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I abuse the trust of colleagues"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The bank is exposed to fraud and financial risk"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "Wealthy customers' deposits and investments are moved without their consent"}, "links": [{"link": {"kind": "utility", "value": "-78"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Fifteen indebted customers receive funds in their bank accounts"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The severe-case customer and the severe-case customer's family avoid immediate financial ruin"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The fifteen indebted customers' apparent creditworthiness increases"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "62"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I commit fraud"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I abuse the trust of my superiors"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I violate bank rules and banking law"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I experience reduced stress from the loan interviews"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "6"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The fifteen indebted customers experience reduced stress from the loan interviews"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my superiors"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The family's account appears to meet the loan conditions"}, "links": [{"link": {"kind": "utility", "value": "40"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "the indebted family"}]} +{"node": {"kind": "event", "label": "The family receives immediate financial relief"}, "links": [{"link": {"kind": "utility", "value": "68"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "82"}, "to_node": "the indebted family"}]} +{"node": {"kind": "event", "label": "The source account loses access to part of its money"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "the indebted family"}]} +{"node": {"kind": "event", "label": "The source account holder's property is misused"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the indebted family"}]} +{"node": {"kind": "event", "label": "I breach bank rules and the law"}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "the indebted family"}]} +{"node": {"kind": "event", "label": "I abuse the trust of colleagues"}, "links": [{"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the indebted family"}]} +{"node": {"kind": "event", "label": "The bank is exposed to fraud and financial risk"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the indebted family"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/robinhood_3_choice_2.html b/annotated_outputs/cheung_variants/robinhood_3_choice_2.html index 4d5face5..b2f9bf5a 100644 --- a/annotated_outputs/cheung_variants/robinhood_3_choice_2.html +++ b/annotated_outputs/cheung_variants/robinhood_3_choice_2.html @@ -3,8 +3,8 @@ @@ -61,108 +61,56 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "1 severely indebted customer", color: {background: '#279aba'}}, - {id: 3, label: "1 family of the severely\n indebted customer", color: {background: '#279aba'}}, - {id: 4, label: "14 other indebted customers", color: {background: '#279aba'}}, - {id: 5, label: "14 families of the other\n indebted customers", color: {background: '#279aba'}}, - {id: 6, label: "wealthy customers whose deposits/investments could\n be redirected", color: {background: '#279aba'}}, - {id: 7, label: "my superiors", color: {background: '#279aba'}}, - {id: 8, label: "do not temporarily redirect money\n from wealthy customers to indebted\n customers' bank accounts", color: {background: '#ba2769'}}, - {id: 9, label: "value", color: {background: '#8e7db5'}}, - {id: 10, label: "I do not commit fraud", color: {background: '#e6c440'}}, - {id: 11, label: "Wealthy customers' deposits and investments\n remain untouched", color: {background: '#e6c440'}}, - {id: 12, label: "Wealthy customers' trust is not\n abused by me", color: {background: '#e6c440'}}, - {id: 13, label: "I follow bank rules", color: {background: '#e6c440'}}, - {id: 14, label: "The fifteen indebted customers do\n not receive the temporary funds", color: {background: '#e6c440'}}, - {id: 15, label: "The fifteen indebted customers are\n denied the artificial credit improvement", color: {background: '#e6c440'}}, - {id: 16, label: "The families of the fifteen\n indebted customers face financial ruin", color: {background: '#e6c440'}}, - {id: 17, label: "The severe-case customer is not\n rescued from ruin", color: {background: '#e6c440'}}, - {id: 18, label: "I avoid the stressful fraudulent\n intervention", color: {background: '#e6c440'}} + {id: 2, label: "the indebted family seeking the\n loan", color: {background: '#279aba'}}, + {id: 3, label: "the holder of the other\n account that could be temporarily\n redirected from", color: {background: '#279aba'}}, + {id: 4, label: "my remaining loyal customers, excluding\n that family and those other-account\n holder", color: {background: '#279aba'}}, + {id: 5, label: "my colleagues at the bank", color: {background: '#279aba'}}, + {id: 6, label: "do nothing", color: {background: '#ba2769'}}, + {id: 7, label: "value", color: {background: '#8e7db5'}}, + {id: 8, label: "The family does not qualify\n for the additional loan", color: {background: '#e6c440'}}, + {id: 9, label: "The family remains in serious\n debt", color: {background: '#e6c440'}}, + {id: 10, label: "Other customers' account balances remain\n unchanged", color: {background: '#e6c440'}}, + {id: 11, label: "Other customers' trust is not\n betrayed", color: {background: '#e6c440'}}, + {id: 12, label: "My colleagues' trust is not\n betrayed", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 8, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 6, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 10, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 12, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 13, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 14, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 15, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 16, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 17, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 18, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 9, label: "-0.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 13, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 14, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 15, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 16, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 17, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 18, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 5, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 6, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 7, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 5, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 6, label: "88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 7, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 1, label: "70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 2, label: "-40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 3, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 4, label: "10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 5, label: "10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 6, label: "88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 7, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 1, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 2, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 3, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 4, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 5, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 6, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 7, label: "42", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 1, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 2, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 4, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 5, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 6, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 7, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 3, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 4, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 5, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 6, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 7, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 1, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 2, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 3, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 4, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 5, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 6, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 7, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 1, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 2, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 3, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 4, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 5, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 6, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 7, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 18, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 18, to: 2, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 18, to: 3, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 18, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 18, to: 5, label: "18", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 18, to: 6, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 18, to: 7, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 11, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 12, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 7, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 5, label: "1", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "-40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "-5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 5, label: "-2", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 5, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 1, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 2, label: "-15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 3, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 3, label: "25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 5, label: "25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 1, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 3, label: "7", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 5, label: "40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/robinhood_3_choice_2.json b/annotated_outputs/cheung_variants/robinhood_3_choice_2.json index 0dc889dd..6de44720 100644 --- a/annotated_outputs/cheung_variants/robinhood_3_choice_2.json +++ b/annotated_outputs/cheung_variants/robinhood_3_choice_2.json @@ -1,19 +1,13 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do not temporarily redirect money from wealthy customers to indebted customers' bank accounts"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not commit fraud"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Wealthy customers' deposits and investments remain untouched"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Wealthy customers' trust is not abused by me"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I follow bank rules"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The fifteen indebted customers do not receive the temporary funds"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The fifteen indebted customers are denied the artificial credit improvement"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The families of the fifteen indebted customers face financial ruin"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The severe-case customer is not rescued from ruin"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I avoid the stressful fraudulent intervention"}]} -{"node": {"kind": "being", "label": "1 severely indebted customer"}, "links": []} -{"node": {"kind": "being", "label": "1 family of the severely indebted customer"}, "links": []} -{"node": {"kind": "being", "label": "14 other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "14 families of the other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customers whose deposits/investments could be redirected"}, "links": []} -{"node": {"kind": "being", "label": "my superiors"}, "links": []} -{"node": {"kind": "action_choice", "label": "do not temporarily redirect money from wealthy customers to indebted customers' bank accounts"}, "links": [{"link": {"kind": "v-link", "value": "-0.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not commit fraud"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Wealthy customers' deposits and investments remain untouched"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Wealthy customers' trust is not abused by me"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I follow bank rules"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The fifteen indebted customers do not receive the temporary funds"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The fifteen indebted customers are denied the artificial credit improvement"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The families of the fifteen indebted customers face financial ruin"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The severe-case customer is not rescued from ruin"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid the stressful fraudulent intervention"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family does not qualify for the additional loan"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family remains in serious debt"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Other customers' account balances remain unchanged"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Other customers' trust is not betrayed"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "My colleagues' trust is not betrayed"}]} +{"node": {"kind": "being", "label": "the indebted family seeking the loan"}, "links": []} +{"node": {"kind": "being", "label": "the holder of the other account that could be temporarily redirected from"}, "links": []} +{"node": {"kind": "being", "label": "my remaining loyal customers, excluding that family and those other-account holder"}, "links": []} +{"node": {"kind": "being", "label": "my colleagues at the bank"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family does not qualify for the additional loan"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family remains in serious debt"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Other customers' account balances remain unchanged"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Other customers' trust is not betrayed"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My colleagues' trust is not betrayed"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I do not commit fraud"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Wealthy customers' deposits and investments remain untouched"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Wealthy customers' trust is not abused by me"}, "links": [{"link": {"kind": "utility", "value": "70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I follow bank rules"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "42"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The fifteen indebted customers do not receive the temporary funds"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The fifteen indebted customers are denied the artificial credit improvement"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The families of the fifteen indebted customers face financial ruin"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The severe-case customer is not rescued from ruin"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I avoid the stressful fraudulent intervention"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "1 severely indebted customer"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "1 family of the severely indebted customer"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "14 other indebted customers"}, {"link": {"kind": "utility", "value": "18"}, "to_node": "14 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my superiors"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The family does not qualify for the additional loan"}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the indebted family seeking the loan"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "1"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The family remains in serious debt"}, "links": [{"link": {"kind": "utility", "value": "-55"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "the indebted family seeking the loan"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "-5"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "-2"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "Other customers' account balances remain unchanged"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the indebted family seeking the loan"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "Other customers' trust is not betrayed"}, "links": [{"link": {"kind": "utility", "value": "5"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "the indebted family seeking the loan"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "My colleagues' trust is not betrayed"}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the indebted family seeking the loan"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "7"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "40"}, "to_node": "my colleagues at the bank"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/robinhood_4_choice_1.json b/annotated_outputs/cheung_variants/robinhood_4_choice_1.json index 55a5a27f..a6695f7f 100644 --- a/annotated_outputs/cheung_variants/robinhood_4_choice_1.json +++ b/annotated_outputs/cheung_variants/robinhood_4_choice_1.json @@ -1,17 +1,15 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "falsify credit ratings for indebted customers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Seven indebted customers receive loans"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The families of the seven indebted customers avoid immediate severe financial struggle"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I commit fraud"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I abuse the trust of my superiors"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Customer deposits and investments are misused"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Bank records are falsified"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Stressful loan interviews for the seven indebted customers are avoided"}]} -{"node": {"kind": "being", "label": "1 indebted customer whose family would struggle heavily without a loan"}, "links": []} -{"node": {"kind": "being", "label": "6 other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "family of the 1 indebted customer"}, "links": []} -{"node": {"kind": "being", "label": "families of the 6 other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customers whose deposits and investments would be temporarily redirected"}, "links": []} -{"node": {"kind": "being", "label": "my superiors"}, "links": []} -{"node": {"kind": "action_choice", "label": "falsify credit ratings for indebted customers"}, "links": [{"link": {"kind": "v-link", "value": "-63.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Seven indebted customers receive loans"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The families of the seven indebted customers avoid immediate severe financial struggle"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I commit fraud"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I abuse the trust of my superiors"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Customer deposits and investments are misused"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Bank records are falsified"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Stressful loan interviews for the seven indebted customers are avoided"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "falsify the family's credit score"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family qualifies for the loan"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family receives additional borrowed money"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family's debt burden increases"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The eldest child stays in college"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The bank extends credit it would otherwise refuse"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The bank takes on added default risk"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I deceive the bank's colleagues and customers"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I violate banking rules and the law"}]} +{"node": {"kind": "being", "label": "the eldest child in the family of five"}, "links": []} +{"node": {"kind": "being", "label": "the other 4 members of the family of five"}, "links": []} +{"node": {"kind": "being", "label": "my colleagues"}, "links": []} +{"node": {"kind": "action_choice", "label": "falsify the family's credit score"}, "links": [{"link": {"kind": "v-link", "value": "-71.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family qualifies for the loan"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family receives additional borrowed money"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's debt burden increases"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The eldest child stays in college"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The bank extends credit it would otherwise refuse"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The bank takes on added default risk"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I deceive the bank's colleagues and customers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I violate banking rules and the law"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "Seven indebted customers receive loans"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "6 other indebted customers"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "family of the 1 indebted customer"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "families of the 6 other indebted customers"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The families of the seven indebted customers avoid immediate severe financial struggle"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "6 other indebted customers"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "family of the 1 indebted customer"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "families of the 6 other indebted customers"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I commit fraud"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "6 other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "family of the 1 indebted customer"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "families of the 6 other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I abuse the trust of my superiors"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "6 other indebted customers"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "family of the 1 indebted customer"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "families of the 6 other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Customer deposits and investments are misused"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "6 other indebted customers"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "family of the 1 indebted customer"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "families of the 6 other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Bank records are falsified"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "6 other indebted customers"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "family of the 1 indebted customer"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "families of the 6 other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Stressful loan interviews for the seven indebted customers are avoided"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "6 other indebted customers"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "family of the 1 indebted customer"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "families of the 6 other indebted customers"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The family qualifies for the loan"}, "links": [{"link": {"kind": "utility", "value": "55"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "the other 4 members of the family of five"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "my colleagues"}]} +{"node": {"kind": "event", "label": "The family receives additional borrowed money"}, "links": [{"link": {"kind": "utility", "value": "18"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "18"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "20"}, "to_node": "the other 4 members of the family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my colleagues"}]} +{"node": {"kind": "event", "label": "The family's debt burden increases"}, "links": [{"link": {"kind": "utility", "value": "-45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "the other 4 members of the family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my colleagues"}]} +{"node": {"kind": "event", "label": "The eldest child stays in college"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "28"}, "to_node": "the other 4 members of the family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my colleagues"}]} +{"node": {"kind": "event", "label": "The bank extends credit it would otherwise refuse"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "the other 4 members of the family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my colleagues"}]} +{"node": {"kind": "event", "label": "The bank takes on added default risk"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "the other 4 members of the family of five"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "my colleagues"}]} +{"node": {"kind": "event", "label": "I deceive the bank's colleagues and customers"}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the other 4 members of the family of five"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "my colleagues"}]} +{"node": {"kind": "event", "label": "I violate banking rules and the law"}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "the other 4 members of the family of five"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "my colleagues"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/robinhood_4_choice_2.html b/annotated_outputs/cheung_variants/robinhood_4_choice_2.html index a38608d6..a0bdaaf6 100644 --- a/annotated_outputs/cheung_variants/robinhood_4_choice_2.html +++ b/annotated_outputs/cheung_variants/robinhood_4_choice_2.html @@ -3,8 +3,8 @@ @@ -61,108 +61,72 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "1 indebted customer whose family\n would struggle heavily without a\n loan", color: {background: '#279aba'}}, - {id: 3, label: "6 other indebted customers in\n difficulties", color: {background: '#279aba'}}, - {id: 4, label: "wealthy customers whose deposits and\n investments could be temporarily redirected", color: {background: '#279aba'}}, - {id: 5, label: "my superiors", color: {background: '#279aba'}}, - {id: 6, label: "family of the 1 indebted\n customer whose family would struggle\n heavily without a loan", color: {background: '#279aba'}}, - {id: 7, label: "families of the 6 other\n indebted customers in difficulties", color: {background: '#279aba'}}, - {id: 8, label: "do not falsify credit ratings\n for indebted customers", color: {background: '#ba2769'}}, - {id: 9, label: "value", color: {background: '#8e7db5'}}, - {id: 10, label: "I do not falsify credit\n ratings for the seven indebted\n customers", color: {background: '#e6c440'}}, - {id: 11, label: "The seven indebted customers are\n not granted loans they do\n not qualify for", color: {background: '#e6c440'}}, - {id: 12, label: "The families of the seven\n indebted customers struggle heavily", color: {background: '#e6c440'}}, - {id: 13, label: "Wealthy customers' deposits and investments\n remain untouched", color: {background: '#e6c440'}}, - {id: 14, label: "Wealthy customers' trust is not\n abused by me", color: {background: '#e6c440'}}, - {id: 15, label: "I do not commit fraud", color: {background: '#e6c440'}}, - {id: 16, label: "I follow bank rules", color: {background: '#e6c440'}}, - {id: 17, label: "My superiors' trust is not\n abused by me", color: {background: '#e6c440'}}, - {id: 18, label: "I avoid the stressful falsification\n act", color: {background: '#e6c440'}} + {id: 2, label: "1 eldest child in the\n indebted family", color: {background: '#279aba'}}, + {id: 3, label: "4 other members of the\n indebted family", color: {background: '#279aba'}}, + {id: 4, label: "many other loyal customers of\n the bank", color: {background: '#279aba'}}, + {id: 5, label: "multiple bank colleagues", color: {background: '#279aba'}}, + {id: 6, label: "do nothing", color: {background: '#ba2769'}}, + {id: 7, label: "value", color: {background: '#8e7db5'}}, + {id: 8, label: "The family's credit score remains\n unchanged", color: {background: '#e6c440'}}, + {id: 9, label: "The family does not receive\n the additional loan", color: {background: '#e6c440'}}, + {id: 10, label: "The family's financial strain continues", color: {background: '#e6c440'}}, + {id: 11, label: "The family's eldest child remains\n at risk of leaving college", color: {background: '#e6c440'}}, + {id: 12, label: "I do not deceive the\n bank", color: {background: '#e6c440'}}, + {id: 13, label: "I do not abuse the\n trust of colleagues", color: {background: '#e6c440'}}, + {id: 14, label: "The bank does not issue\n a loan to an unqualified\n borrower", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ + {from: 1, to: 6, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 8, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 10, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 11, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 12, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 13, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 12, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 13, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 14, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 15, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 16, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 17, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 18, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 9, label: "19.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 13, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 14, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 15, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 16, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 17, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 18, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 5, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 6, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 7, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "6", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 5, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 6, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 7, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 3, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 4, label: "-8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 5, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 6, label: "95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 7, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 3, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 4, label: "88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 5, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 6, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 7, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 1, label: "70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 2, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 3, label: "-15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 4, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 5, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 6, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 7, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 3, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 4, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 5, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 6, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 7, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 1, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 2, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 3, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 4, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 5, label: "42", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 6, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 7, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 2, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 4, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 5, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 6, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 7, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 18, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 18, to: 2, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 18, to: 3, label: "10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 18, to: 4, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 18, to: 5, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 18, to: 6, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 18, to: 7, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 7, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 13, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 14, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 5, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "-40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 4, label: "6", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 5, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 2, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "-68", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 5, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 1, label: "-40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 2, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 3, label: "-52", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 5, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 1, label: "30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 2, label: "-40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 3, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 4, label: "22", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 5, label: "30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 1, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 4, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 5, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 2, label: "-25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 3, label: "-20", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 4, label: "18", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 5, label: "18", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/robinhood_4_choice_2.json b/annotated_outputs/cheung_variants/robinhood_4_choice_2.json index 78210f38..f50b5a39 100644 --- a/annotated_outputs/cheung_variants/robinhood_4_choice_2.json +++ b/annotated_outputs/cheung_variants/robinhood_4_choice_2.json @@ -1,19 +1,15 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do not falsify credit ratings for indebted customers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not falsify credit ratings for the seven indebted customers"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The seven indebted customers are not granted loans they do not qualify for"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The families of the seven indebted customers struggle heavily"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Wealthy customers' deposits and investments remain untouched"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Wealthy customers' trust is not abused by me"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not commit fraud"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I follow bank rules"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "My superiors' trust is not abused by me"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I avoid the stressful falsification act"}]} -{"node": {"kind": "being", "label": "1 indebted customer whose family would struggle heavily without a loan"}, "links": []} -{"node": {"kind": "being", "label": "6 other indebted customers in difficulties"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customers whose deposits and investments could be temporarily redirected"}, "links": []} -{"node": {"kind": "being", "label": "my superiors"}, "links": []} -{"node": {"kind": "being", "label": "family of the 1 indebted customer whose family would struggle heavily without a loan"}, "links": []} -{"node": {"kind": "being", "label": "families of the 6 other indebted customers in difficulties"}, "links": []} -{"node": {"kind": "action_choice", "label": "do not falsify credit ratings for indebted customers"}, "links": [{"link": {"kind": "v-link", "value": "19.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not falsify credit ratings for the seven indebted customers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The seven indebted customers are not granted loans they do not qualify for"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The families of the seven indebted customers struggle heavily"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Wealthy customers' deposits and investments remain untouched"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Wealthy customers' trust is not abused by me"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not commit fraud"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I follow bank rules"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My superiors' trust is not abused by me"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid the stressful falsification act"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family's credit score remains unchanged"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family does not receive the additional loan"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family's financial strain continues"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family's eldest child remains at risk of leaving college"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not deceive the bank"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not abuse the trust of colleagues"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The bank does not issue a loan to an unqualified borrower"}]} +{"node": {"kind": "being", "label": "1 eldest child in the indebted family"}, "links": []} +{"node": {"kind": "being", "label": "4 other members of the indebted family"}, "links": []} +{"node": {"kind": "being", "label": "many other loyal customers of the bank"}, "links": []} +{"node": {"kind": "being", "label": "multiple bank colleagues"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's credit score remains unchanged"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family does not receive the additional loan"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's financial strain continues"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's eldest child remains at risk of leaving college"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not deceive the bank"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not abuse the trust of colleagues"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The bank does not issue a loan to an unqualified borrower"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I do not falsify credit ratings for the seven indebted customers"}, "links": [{"link": {"kind": "utility", "value": "55"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits and investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "family of the 1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "families of the 6 other indebted customers in difficulties"}]} -{"node": {"kind": "event", "label": "The seven indebted customers are not granted loans they do not qualify for"}, "links": [{"link": {"kind": "utility", "value": "6"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits and investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "family of the 1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "families of the 6 other indebted customers in difficulties"}]} -{"node": {"kind": "event", "label": "The families of the seven indebted customers struggle heavily"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "wealthy customers whose deposits and investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my superiors"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "family of the 1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "families of the 6 other indebted customers in difficulties"}]} -{"node": {"kind": "event", "label": "Wealthy customers' deposits and investments remain untouched"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "wealthy customers whose deposits and investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "my superiors"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "family of the 1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "families of the 6 other indebted customers in difficulties"}]} -{"node": {"kind": "event", "label": "Wealthy customers' trust is not abused by me"}, "links": [{"link": {"kind": "utility", "value": "70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "wealthy customers whose deposits and investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "my superiors"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "family of the 1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "families of the 6 other indebted customers in difficulties"}]} -{"node": {"kind": "event", "label": "I do not commit fraud"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits and investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "family of the 1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "families of the 6 other indebted customers in difficulties"}]} -{"node": {"kind": "event", "label": "I follow bank rules"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "wealthy customers whose deposits and investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "42"}, "to_node": "my superiors"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "family of the 1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "families of the 6 other indebted customers in difficulties"}]} -{"node": {"kind": "event", "label": "My superiors' trust is not abused by me"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits and investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "my superiors"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "family of the 1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "families of the 6 other indebted customers in difficulties"}]} -{"node": {"kind": "event", "label": "I avoid the stressful falsification act"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "wealthy customers whose deposits and investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my superiors"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "family of the 1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "families of the 6 other indebted customers in difficulties"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The family's credit score remains unchanged"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "1 eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "4 other members of the indebted family"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "many other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "multiple bank colleagues"}]} +{"node": {"kind": "event", "label": "The family does not receive the additional loan"}, "links": [{"link": {"kind": "utility", "value": "-40"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "1 eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "4 other members of the indebted family"}, {"link": {"kind": "utility", "value": "6"}, "to_node": "many other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "multiple bank colleagues"}]} +{"node": {"kind": "event", "label": "The family's financial strain continues"}, "links": [{"link": {"kind": "utility", "value": "-45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "1 eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "-68"}, "to_node": "4 other members of the indebted family"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "many other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "multiple bank colleagues"}]} +{"node": {"kind": "event", "label": "The family's eldest child remains at risk of leaving college"}, "links": [{"link": {"kind": "utility", "value": "-40"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "1 eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "-52"}, "to_node": "4 other members of the indebted family"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "many other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "multiple bank colleagues"}]} +{"node": {"kind": "event", "label": "I do not deceive the bank"}, "links": [{"link": {"kind": "utility", "value": "30"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "1 eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "4 other members of the indebted family"}, {"link": {"kind": "utility", "value": "22"}, "to_node": "many other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "30"}, "to_node": "multiple bank colleagues"}]} +{"node": {"kind": "event", "label": "I do not abuse the trust of colleagues"}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "1 eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "4 other members of the indebted family"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "many other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "multiple bank colleagues"}]} +{"node": {"kind": "event", "label": "The bank does not issue a loan to an unqualified borrower"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "1 eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "4 other members of the indebted family"}, {"link": {"kind": "utility", "value": "18"}, "to_node": "many other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "18"}, "to_node": "multiple bank colleagues"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/robinhood_5_choice_1.json b/annotated_outputs/cheung_variants/robinhood_5_choice_1.json index a695bb53..31119358 100644 --- a/annotated_outputs/cheung_variants/robinhood_5_choice_1.json +++ b/annotated_outputs/cheung_variants/robinhood_5_choice_1.json @@ -1,16 +1,19 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "bypass the loan restrictions for indebted customers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Seven indebted customers receive loans"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The families of the seven indebted customers avoid immediate severe financial struggle"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I commit fraud"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I abuse the trust of wealthy customers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Deposits and investments of other customers are temporarily redirected"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Interviews with the seven indebted customers become less stressful for me"}]} -{"node": {"kind": "being", "label": "1 indebted customer whose family would struggle heavily without a loan"}, "links": []} -{"node": {"kind": "being", "label": "6 other indebted customers in difficulties"}, "links": []} -{"node": {"kind": "being", "label": "1 family of the singled-out indebted customer"}, "links": []} -{"node": {"kind": "being", "label": "6 families of the other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customers whose deposits and investments would be redirected"}, "links": []} -{"node": {"kind": "being", "label": "my superiors"}, "links": []} -{"node": {"kind": "action_choice", "label": "bypass the loan restrictions for indebted customers"}, "links": [{"link": {"kind": "v-link", "value": "-30.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Seven indebted customers receive loans"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The families of the seven indebted customers avoid immediate severe financial struggle"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I commit fraud"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I abuse the trust of wealthy customers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Deposits and investments of other customers are temporarily redirected"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Interviews with the seven indebted customers become less stressful for me"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "delete a year of the family's account history"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family's bank records become falsified."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family appears to meet the loan criteria."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family is granted another loan."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family's total debt increases."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family gets short-term financial relief."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The eldest child stays in college."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The trust of my other customers is violated."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The bank is exposed to unauthorized lending risk."}]} +{"node": {"kind": "being", "label": "the eldest child in the indebted family of five"}, "links": []} +{"node": {"kind": "being", "label": "another member of the indebted family of five"}, "links": []} +{"node": {"kind": "being", "label": "another member of the indebted family of five"}, "links": []} +{"node": {"kind": "being", "label": "another member of the indebted family of five"}, "links": []} +{"node": {"kind": "being", "label": "another member of the indebted family of five"}, "links": []} +{"node": {"kind": "being", "label": "my other loyal bank customers, excluding the family of five"}, "links": []} +{"node": {"kind": "being", "label": "my colleagues at the bank"}, "links": []} +{"node": {"kind": "action_choice", "label": "delete a year of the family's account history"}, "links": [{"link": {"kind": "v-link", "value": "-39.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's bank records become falsified."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family appears to meet the loan criteria."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family is granted another loan."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's total debt increases."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family gets short-term financial relief."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The eldest child stays in college."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The trust of my other customers is violated."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The bank is exposed to unauthorized lending risk."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "Seven indebted customers receive loans"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "wealthy customers whose deposits and investments would be redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The families of the seven indebted customers avoid immediate severe financial struggle"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "wealthy customers whose deposits and investments would be redirected"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I commit fraud"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "wealthy customers whose deposits and investments would be redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I abuse the trust of wealthy customers"}, "links": [{"link": {"kind": "utility", "value": "-76"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-91"}, "to_node": "wealthy customers whose deposits and investments would be redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Deposits and investments of other customers are temporarily redirected"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits and investments would be redirected"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Interviews with the seven indebted customers become less stressful for me"}, "links": [{"link": {"kind": "utility", "value": "42"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "18"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "2"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "wealthy customers whose deposits and investments would be redirected"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my superiors"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The family's bank records become falsified."}, "links": [{"link": {"kind": "utility", "value": "-55"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-58"}, "to_node": "another member of the indebted family of five"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "another member of the indebted family of five"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "another member of the indebted family of five"}]} +{"node": {"kind": "event", "label": "The family appears to meet the loan criteria."}, "links": [{"link": {"kind": "utility", "value": "28"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "22"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "another member of the indebted family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "another member of the indebted family of five"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "another member of the indebted family of five"}]} +{"node": {"kind": "event", "label": "The family is granted another loan."}, "links": [{"link": {"kind": "utility", "value": "20"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "another member of the indebted family of five"}, {"link": {"kind": "utility", "value": "-3"}, "to_node": "another member of the indebted family of five"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "another member of the indebted family of five"}]} +{"node": {"kind": "event", "label": "The family's total debt increases."}, "links": [{"link": {"kind": "utility", "value": "-40"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "another member of the indebted family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "another member of the indebted family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "another member of the indebted family of five"}]} +{"node": {"kind": "event", "label": "The family gets short-term financial relief."}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "another member of the indebted family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "another member of the indebted family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "another member of the indebted family of five"}]} +{"node": {"kind": "event", "label": "The eldest child stays in college."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "42"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "another member of the indebted family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "another member of the indebted family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "another member of the indebted family of five"}]} +{"node": {"kind": "event", "label": "The trust of my other customers is violated."}, "links": [{"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "another member of the indebted family of five"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "another member of the indebted family of five"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "another member of the indebted family of five"}]} +{"node": {"kind": "event", "label": "The bank is exposed to unauthorized lending risk."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "another member of the indebted family of five"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "another member of the indebted family of five"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "another member of the indebted family of five"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/robinhood_5_choice_2.html b/annotated_outputs/cheung_variants/robinhood_5_choice_2.html index 5f83e7c5..3f922630 100644 --- a/annotated_outputs/cheung_variants/robinhood_5_choice_2.html +++ b/annotated_outputs/cheung_variants/robinhood_5_choice_2.html @@ -3,8 +3,8 @@ @@ -61,78 +61,56 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "1 indebted customer whose family\n would struggle heavily without a\n loan", color: {background: '#279aba'}}, - {id: 3, label: "6 other indebted customers in\n difficulties", color: {background: '#279aba'}}, - {id: 4, label: "1 family of the singled-out\n indebted customer", color: {background: '#279aba'}}, - {id: 5, label: "6 families of the other\n indebted customers", color: {background: '#279aba'}}, - {id: 6, label: "wealthy customers whose deposits and\n investments could be redirected", color: {background: '#279aba'}}, - {id: 7, label: "my superiors", color: {background: '#279aba'}}, - {id: 8, label: "do not bypass the loan\n restrictions for indebted customers", color: {background: '#ba2769'}}, - {id: 9, label: "value", color: {background: '#8e7db5'}}, - {id: 10, label: "I do not commit fraud", color: {background: '#e6c440'}}, - {id: 11, label: "I do not redirect other\n customers' deposits and investments", color: {background: '#e6c440'}}, - {id: 12, label: "I do not abuse the\n trust of my superiors", color: {background: '#e6c440'}}, - {id: 13, label: "Seven indebted customers do not\n receive bypassed loan approval", color: {background: '#e6c440'}}, - {id: 14, label: "The seven indebted customers continue\n to struggle heavily", color: {background: '#e6c440'}}, - {id: 15, label: "I avoid the stressful act\n of deceiving the bank", color: {background: '#e6c440'}} + {id: 2, label: "the eldest child in the\n family of five", color: {background: '#279aba'}}, + {id: 3, label: "the other 4 members of\n the family of five", color: {background: '#279aba'}}, + {id: 4, label: "an unspecified number of other\n loyal customers of the bank", color: {background: '#279aba'}}, + {id: 5, label: "an unspecified number of my\n colleagues", color: {background: '#279aba'}}, + {id: 6, label: "do nothing", color: {background: '#ba2769'}}, + {id: 7, label: "value", color: {background: '#8e7db5'}}, + {id: 8, label: "The family's account history remains\n unchanged", color: {background: '#e6c440'}}, + {id: 9, label: "The family is not granted\n the additional loan", color: {background: '#e6c440'}}, + {id: 10, label: "The trust of my customers\n and colleagues remains intact", color: {background: '#e6c440'}}, + {id: 11, label: "The family remains in serious\n debt", color: {background: '#e6c440'}}, + {id: 12, label: "The family's eldest child is\n taken out of college", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ + {from: 1, to: 6, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 8, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 10, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 11, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 12, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 13, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 14, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 15, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 9, label: "28.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 13, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 14, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 15, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 5, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 6, label: "78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 7, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 5, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 6, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 7, label: "10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 2, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 7, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 5, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 4, label: "6", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 5, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 4, label: "30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 5, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 1, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 1, label: "-62", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 3, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 4, label: "-2", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 5, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 1, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 1, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 3, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 12, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 12, to: 5, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 6, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 7, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 2, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 3, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 4, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 5, label: "-18", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 6, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 7, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 1, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 3, label: "-58", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 4, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 5, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 6, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 7, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 2, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 3, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 4, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 5, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 6, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 7, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/robinhood_5_choice_2.json b/annotated_outputs/cheung_variants/robinhood_5_choice_2.json index daee215c..42c52762 100644 --- a/annotated_outputs/cheung_variants/robinhood_5_choice_2.json +++ b/annotated_outputs/cheung_variants/robinhood_5_choice_2.json @@ -1,16 +1,13 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do not bypass the loan restrictions for indebted customers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not commit fraud"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not redirect other customers' deposits and investments"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I do not abuse the trust of my superiors"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Seven indebted customers do not receive bypassed loan approval"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The seven indebted customers continue to struggle heavily"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I avoid the stressful act of deceiving the bank"}]} -{"node": {"kind": "being", "label": "1 indebted customer whose family would struggle heavily without a loan"}, "links": []} -{"node": {"kind": "being", "label": "6 other indebted customers in difficulties"}, "links": []} -{"node": {"kind": "being", "label": "1 family of the singled-out indebted customer"}, "links": []} -{"node": {"kind": "being", "label": "6 families of the other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customers whose deposits and investments could be redirected"}, "links": []} -{"node": {"kind": "being", "label": "my superiors"}, "links": []} -{"node": {"kind": "action_choice", "label": "do not bypass the loan restrictions for indebted customers"}, "links": [{"link": {"kind": "v-link", "value": "28.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not commit fraud"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not redirect other customers' deposits and investments"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not abuse the trust of my superiors"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Seven indebted customers do not receive bypassed loan approval"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The seven indebted customers continue to struggle heavily"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid the stressful act of deceiving the bank"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family's account history remains unchanged"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family is not granted the additional loan"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The trust of my customers and colleagues remains intact"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "The family remains in serious debt"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family's eldest child is taken out of college"}]} +{"node": {"kind": "being", "label": "the eldest child in the family of five"}, "links": []} +{"node": {"kind": "being", "label": "the other 4 members of the family of five"}, "links": []} +{"node": {"kind": "being", "label": "an unspecified number of other loyal customers of the bank"}, "links": []} +{"node": {"kind": "being", "label": "an unspecified number of my colleagues"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's account history remains unchanged"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family is not granted the additional loan"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The trust of my customers and colleagues remains intact"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family remains in serious debt"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's eldest child is taken out of college"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I do not commit fraud"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "wealthy customers whose deposits and investments could be redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I do not redirect other customers' deposits and investments"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits and investments could be redirected"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I do not abuse the trust of my superiors"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits and investments could be redirected"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Seven indebted customers do not receive bypassed loan approval"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "wealthy customers whose deposits and investments could be redirected"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The seven indebted customers continue to struggle heavily"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-58"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "wealthy customers whose deposits and investments could be redirected"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I avoid the stressful act of deceiving the bank"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits and investments could be redirected"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "my superiors"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The family's account history remains unchanged"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the other 4 members of the family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "an unspecified number of other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "an unspecified number of my colleagues"}]} +{"node": {"kind": "event", "label": "The family is not granted the additional loan"}, "links": [{"link": {"kind": "utility", "value": "-45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "the other 4 members of the family of five"}, {"link": {"kind": "utility", "value": "6"}, "to_node": "an unspecified number of other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "an unspecified number of my colleagues"}]} +{"node": {"kind": "event", "label": "The trust of my customers and colleagues remains intact"}, "links": [{"link": {"kind": "utility", "value": "65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "30"}, "to_node": "the other 4 members of the family of five"}, {"link": {"kind": "utility", "value": "30"}, "to_node": "an unspecified number of other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "an unspecified number of my colleagues"}]} +{"node": {"kind": "event", "label": "The family remains in serious debt"}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-62"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the other 4 members of the family of five"}, {"link": {"kind": "utility", "value": "-2"}, "to_node": "an unspecified number of other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "an unspecified number of my colleagues"}]} +{"node": {"kind": "event", "label": "The family's eldest child is taken out of college"}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the other 4 members of the family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "an unspecified number of other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "an unspecified number of my colleagues"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/robinhood_6_choice_1.json b/annotated_outputs/cheung_variants/robinhood_6_choice_1.json index 982d5f69..1e92398a 100644 --- a/annotated_outputs/cheung_variants/robinhood_6_choice_1.json +++ b/annotated_outputs/cheung_variants/robinhood_6_choice_1.json @@ -1,18 +1,14 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "temporarily redirect money from wealthy customers to indebted customers' bank accounts"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Wealthy customers' deposits and investments are redirected without their consent"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Seven indebted customers' bank account balances increase temporarily"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Seven indebted customers' credit ratings improve temporarily"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Seven indebted customers receive help accessing loans or financial relief"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Stress is reduced for the families of the seven indebted customers"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I commit fraud"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I abuse the trust of wealthy customers"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I violate bank rules and professional duties"}]} -{"node": {"kind": "being", "label": "1 indebted customer in the current case"}, "links": []} -{"node": {"kind": "being", "label": "family of the 1 indebted customer in the current case"}, "links": []} -{"node": {"kind": "being", "label": "6 other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "families of the 6 other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customers whose deposits/investments would be temporarily redirected"}, "links": []} -{"node": {"kind": "being", "label": "my superiors"}, "links": []} -{"node": {"kind": "action_choice", "label": "temporarily redirect money from wealthy customers to indebted customers' bank accounts"}, "links": [{"link": {"kind": "v-link", "value": "-19.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Wealthy customers' deposits and investments are redirected without their consent"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Seven indebted customers' bank account balances increase temporarily"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Seven indebted customers' credit ratings improve temporarily"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Seven indebted customers receive help accessing loans or financial relief"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Stress is reduced for the families of the seven indebted customers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I commit fraud"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I abuse the trust of wealthy customers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I violate bank rules and professional duties"}]} +{"node": {"kind": "being", "label": "i, the bank employee"}, "links": []} +{"node": {"kind": "being", "label": "the eldest child in the indebted family"}, "links": []} +{"node": {"kind": "being", "label": "the other 4 members of the indebted family"}, "links": []} +{"node": {"kind": "being", "label": "my other loyal customers besides the indebted family and the diverted-from customer"}, "links": []} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "temporarily redirect money from another account into the family's account"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family appears to satisfy the loan eligibility conditions."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The indebted family gains immediate financial relief."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The other account holder's balance is temporarily reduced."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I violate banking rules and legal duties."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I abuse the trust of colleagues."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The bank's account records are falsified."}]} +{"node": {"kind": "action_choice", "label": "temporarily redirect money from another account into the family's account"}, "links": [{"link": {"kind": "v-link", "value": "-20.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family appears to satisfy the loan eligibility conditions."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The indebted family gains immediate financial relief."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The other account holder's balance is temporarily reduced."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I violate banking rules and legal duties."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I abuse the trust of colleagues."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The bank's account records are falsified."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "Wealthy customers' deposits and investments are redirected without their consent"}, "links": [{"link": {"kind": "utility", "value": "-15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "1 indebted customer in the current case"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "family of the 1 indebted customer in the current case"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "6 other indebted customers"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "families of the 6 other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Seven indebted customers' bank account balances increase temporarily"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "1 indebted customer in the current case"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "family of the 1 indebted customer in the current case"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "6 other indebted customers"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "families of the 6 other indebted customers"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Seven indebted customers' credit ratings improve temporarily"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "1 indebted customer in the current case"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "family of the 1 indebted customer in the current case"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "6 other indebted customers"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "families of the 6 other indebted customers"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Seven indebted customers receive help accessing loans or financial relief"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "1 indebted customer in the current case"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "family of the 1 indebted customer in the current case"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "6 other indebted customers"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "families of the 6 other indebted customers"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Stress is reduced for the families of the seven indebted customers"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "1 indebted customer in the current case"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "family of the 1 indebted customer in the current case"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "6 other indebted customers"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "families of the 6 other indebted customers"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I commit fraud"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 indebted customer in the current case"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "family of the 1 indebted customer in the current case"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "6 other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "families of the 6 other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I abuse the trust of wealthy customers"}, "links": [{"link": {"kind": "utility", "value": "-78"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "1 indebted customer in the current case"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "family of the 1 indebted customer in the current case"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "6 other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "families of the 6 other indebted customers"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I violate bank rules and professional duties"}, "links": [{"link": {"kind": "utility", "value": "-78"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "1 indebted customer in the current case"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "family of the 1 indebted customer in the current case"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "6 other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "families of the 6 other indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits/investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The family appears to satisfy the loan eligibility conditions."}, "links": [{"link": {"kind": "utility", "value": "18"}, "to_node": "i, the bank employee"}, {"link": {"kind": "utility", "value": "24"}, "to_node": "the eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "the other 4 members of the indebted family"}, {"link": {"kind": "utility", "value": "-4"}, "to_node": "my other loyal customers besides the indebted family and the diverted-from customer"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "The indebted family gains immediate financial relief."}, "links": [{"link": {"kind": "utility", "value": "10"}, "to_node": "i, the bank employee"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "the eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "80"}, "to_node": "the other 4 members of the indebted family"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my other loyal customers besides the indebted family and the diverted-from customer"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "The other account holder's balance is temporarily reduced."}, "links": [{"link": {"kind": "utility", "value": "-5"}, "to_node": "i, the bank employee"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "the other 4 members of the indebted family"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my other loyal customers besides the indebted family and the diverted-from customer"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "I violate banking rules and legal duties."}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i, the bank employee"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "the eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "the other 4 members of the indebted family"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "my other loyal customers besides the indebted family and the diverted-from customer"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "I abuse the trust of colleagues."}, "links": [{"link": {"kind": "utility", "value": "-65"}, "to_node": "i, the bank employee"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "the other 4 members of the indebted family"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "my other loyal customers besides the indebted family and the diverted-from customer"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "The bank's account records are falsified."}, "links": [{"link": {"kind": "utility", "value": "-55"}, "to_node": "i, the bank employee"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "the eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "the other 4 members of the indebted family"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "my other loyal customers besides the indebted family and the diverted-from customer"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/robinhood_6_choice_2.html b/annotated_outputs/cheung_variants/robinhood_6_choice_2.html index 67ad4871..8182c20f 100644 --- a/annotated_outputs/cheung_variants/robinhood_6_choice_2.html +++ b/annotated_outputs/cheung_variants/robinhood_6_choice_2.html @@ -3,8 +3,8 @@ @@ -61,88 +61,80 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "1 indebted customer whose family\n would struggle heavily without a\n loan", color: {background: '#279aba'}}, - {id: 3, label: "6 other indebted customers in\n difficulties", color: {background: '#279aba'}}, - {id: 4, label: "1 family of the singled-out\n indebted customer", color: {background: '#279aba'}}, - {id: 5, label: "6 families of the other\n indebted customers", color: {background: '#279aba'}}, - {id: 6, label: "wealthy customers whose deposits/investments could\n be temporarily redirected", color: {background: '#279aba'}}, - {id: 7, label: "my superiors", color: {background: '#279aba'}}, - {id: 8, label: "do not temporarily redirect money\n from wealthy customers to indebted\n customers' bank accounts", color: {background: '#ba2769'}}, - {id: 9, label: "value", color: {background: '#8e7db5'}}, - {id: 10, label: "I do not commit fraud", color: {background: '#e6c440'}}, - {id: 11, label: "Wealthy customers' deposits and investments\n remain in their accounts", color: {background: '#e6c440'}}, - {id: 12, label: "Wealthy customers' trust is not\n abused", color: {background: '#e6c440'}}, - {id: 13, label: "My superiors' trust is not\n abused", color: {background: '#e6c440'}}, - {id: 14, label: "The seven indebted customers do\n not receive the temporary funds", color: {background: '#e6c440'}}, - {id: 15, label: "The seven indebted customers struggle\n heavily", color: {background: '#e6c440'}}, - {id: 16, label: "I avoid the stressful act\n of deceiving customers and the\n bank", color: {background: '#e6c440'}} + {id: 2, label: "the eldest child in the\n indebted family", color: {background: '#279aba'}}, + {id: 3, label: "the other 4 members of\n the indebted family", color: {background: '#279aba'}}, + {id: 4, label: "the 1+ account holder of\n the other account that could\n be temporarily redirected", color: {background: '#279aba'}}, + {id: 5, label: "the 1+ other loyal customers\n whose trust is at stake", color: {background: '#279aba'}}, + {id: 6, label: "the 2+ bank colleagues whose\n trust is at stake", color: {background: '#279aba'}}, + {id: 7, label: "do nothing", color: {background: '#ba2769'}}, + {id: 8, label: "value", color: {background: '#8e7db5'}}, + {id: 9, label: "The family does not receive\n the extra loan.", color: {background: '#e6c440'}}, + {id: 10, label: "The family's debt problems remain\n unresolved.", color: {background: '#e6c440'}}, + {id: 11, label: "The family's eldest child is\n taken out of college.", color: {background: '#e6c440'}}, + {id: 12, label: "Other customers' money remains in\n their accounts.", color: {background: '#e6c440'}}, + {id: 13, label: "The trust of other customers\n is not violated.", color: {background: '#e6c440'}}, + {id: 14, label: "The trust of my colleagues\n is not violated.", color: {background: '#e6c440'}}, + {id: 15, label: "I do not commit bank\n fraud.", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 8, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 10, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 11, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 12, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 13, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 14, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 15, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 16, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 9, label: "-0.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 13, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 14, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 15, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 16, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 5, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 6, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 7, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 12, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 13, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 14, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 15, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 8, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 13, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 14, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 15, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 4, label: "-30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 5, label: "-15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 6, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 2, label: "-68", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 4, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 5, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 6, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 11, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 5, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 6, label: "78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 7, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 2, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 3, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 4, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 5, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 6, label: "-6", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 12, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 2, label: "10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 3, label: "10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 4, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 5, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 6, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 7, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 2, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 5, label: "6", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 6, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 7, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 2, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 4, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 5, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 6, label: "-10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 7, label: "-40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 1, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 3, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 4, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 5, label: "-62", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 6, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 7, label: "-58", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 2, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 5, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 6, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 7, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 2, label: "28", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 3, label: "-15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 4, label: "10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 5, label: "45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 6, label: "25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 3, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 4, label: "6", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 5, label: "40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 6, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 1, label: "25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 3, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 5, label: "4", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 6, label: "45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 15, to: 1, label: "45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 15, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 15, to: 3, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 15, to: 4, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 15, to: 5, label: "40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 15, to: 6, label: "45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/robinhood_6_choice_2.json b/annotated_outputs/cheung_variants/robinhood_6_choice_2.json index 55d0b062..a72bdc4a 100644 --- a/annotated_outputs/cheung_variants/robinhood_6_choice_2.json +++ b/annotated_outputs/cheung_variants/robinhood_6_choice_2.json @@ -1,17 +1,16 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do not temporarily redirect money from wealthy customers to indebted customers' bank accounts"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not commit fraud"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Wealthy customers' deposits and investments remain in their accounts"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Wealthy customers' trust is not abused"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "My superiors' trust is not abused"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The seven indebted customers do not receive the temporary funds"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The seven indebted customers struggle heavily"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I avoid the stressful act of deceiving customers and the bank"}]} -{"node": {"kind": "being", "label": "1 indebted customer whose family would struggle heavily without a loan"}, "links": []} -{"node": {"kind": "being", "label": "6 other indebted customers in difficulties"}, "links": []} -{"node": {"kind": "being", "label": "1 family of the singled-out indebted customer"}, "links": []} -{"node": {"kind": "being", "label": "6 families of the other indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customers whose deposits/investments could be temporarily redirected"}, "links": []} -{"node": {"kind": "being", "label": "my superiors"}, "links": []} -{"node": {"kind": "action_choice", "label": "do not temporarily redirect money from wealthy customers to indebted customers' bank accounts"}, "links": [{"link": {"kind": "v-link", "value": "-0.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not commit fraud"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Wealthy customers' deposits and investments remain in their accounts"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Wealthy customers' trust is not abused"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My superiors' trust is not abused"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The seven indebted customers do not receive the temporary funds"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The seven indebted customers struggle heavily"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid the stressful act of deceiving customers and the bank"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family does not receive the extra loan."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family's debt problems remain unresolved."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family's eldest child is taken out of college."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Other customers' money remains in their accounts."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The trust of other customers is not violated."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The trust of my colleagues is not violated."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not commit bank fraud."}]} +{"node": {"kind": "being", "label": "the eldest child in the indebted family"}, "links": []} +{"node": {"kind": "being", "label": "the other 4 members of the indebted family"}, "links": []} +{"node": {"kind": "being", "label": "the 1+ account holder of the other account that could be temporarily redirected"}, "links": []} +{"node": {"kind": "being", "label": "the 1+ other loyal customers whose trust is at stake"}, "links": []} +{"node": {"kind": "being", "label": "the 2+ bank colleagues whose trust is at stake"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family does not receive the extra loan."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's debt problems remain unresolved."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's eldest child is taken out of college."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Other customers' money remains in their accounts."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The trust of other customers is not violated."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The trust of my colleagues is not violated."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not commit bank fraud."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I do not commit fraud"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits/investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Wealthy customers' deposits and investments remain in their accounts"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "wealthy customers whose deposits/investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Wealthy customers' trust is not abused"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "wealthy customers whose deposits/investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "My superiors' trust is not abused"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "6"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "wealthy customers whose deposits/investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The seven indebted customers do not receive the temporary funds"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "wealthy customers whose deposits/investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The seven indebted customers struggle heavily"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "-62"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "wealthy customers whose deposits/investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "-58"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I avoid the stressful act of deceiving customers and the bank"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "1 indebted customer whose family would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "6 other indebted customers in difficulties"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "1 family of the singled-out indebted customer"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "6 families of the other indebted customers"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits/investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my superiors"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The family does not receive the extra loan."}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "the eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "the other 4 members of the indebted family"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "the 1+ account holder of the other account that could be temporarily redirected"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "the 1+ other loyal customers whose trust is at stake"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "the 2+ bank colleagues whose trust is at stake"}]} +{"node": {"kind": "event", "label": "The family's debt problems remain unresolved."}, "links": [{"link": {"kind": "utility", "value": "-55"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-68"}, "to_node": "the eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "the other 4 members of the indebted family"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "the 1+ account holder of the other account that could be temporarily redirected"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the 1+ other loyal customers whose trust is at stake"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the 2+ bank colleagues whose trust is at stake"}]} +{"node": {"kind": "event", "label": "The family's eldest child is taken out of college."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "the eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "the other 4 members of the indebted family"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "the 1+ account holder of the other account that could be temporarily redirected"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the 1+ other loyal customers whose trust is at stake"}, {"link": {"kind": "utility", "value": "-6"}, "to_node": "the 2+ bank colleagues whose trust is at stake"}]} +{"node": {"kind": "event", "label": "Other customers' money remains in their accounts."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "28"}, "to_node": "the eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "the other 4 members of the indebted family"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "the 1+ account holder of the other account that could be temporarily redirected"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "the 1+ other loyal customers whose trust is at stake"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "the 2+ bank colleagues whose trust is at stake"}]} +{"node": {"kind": "event", "label": "The trust of other customers is not violated."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "the other 4 members of the indebted family"}, {"link": {"kind": "utility", "value": "6"}, "to_node": "the 1+ account holder of the other account that could be temporarily redirected"}, {"link": {"kind": "utility", "value": "40"}, "to_node": "the 1+ other loyal customers whose trust is at stake"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "the 2+ bank colleagues whose trust is at stake"}]} +{"node": {"kind": "event", "label": "The trust of my colleagues is not violated."}, "links": [{"link": {"kind": "utility", "value": "25"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "the other 4 members of the indebted family"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the 1+ account holder of the other account that could be temporarily redirected"}, {"link": {"kind": "utility", "value": "4"}, "to_node": "the 1+ other loyal customers whose trust is at stake"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "the 2+ bank colleagues whose trust is at stake"}]} +{"node": {"kind": "event", "label": "I do not commit bank fraud."}, "links": [{"link": {"kind": "utility", "value": "45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the eldest child in the indebted family"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "the other 4 members of the indebted family"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "the 1+ account holder of the other account that could be temporarily redirected"}, {"link": {"kind": "utility", "value": "40"}, "to_node": "the 1+ other loyal customers whose trust is at stake"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "the 2+ bank colleagues whose trust is at stake"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/robinhood_7_choice_1.json b/annotated_outputs/cheung_variants/robinhood_7_choice_1.json index 82885779..57b8db7b 100644 --- a/annotated_outputs/cheung_variants/robinhood_7_choice_1.json +++ b/annotated_outputs/cheung_variants/robinhood_7_choice_1.json @@ -1,17 +1,11 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "falsify credit ratings for indebted customers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I commit fraud"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I abuse the trust of my superiors"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Two indebted customers receive falsified credit ratings"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Two indebted customers become more likely to obtain loans"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Two indebted customers and their families receive immediate financial relief"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Interviews with the indebted customers become less stressful for me"}]} -{"node": {"kind": "being", "label": "customer in debt 1"}, "links": []} -{"node": {"kind": "being", "label": "customer in debt 2"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customer whose deposits/investments would be redirected 1"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customer whose deposits/investments would be redirected 2"}, "links": []} -{"node": {"kind": "being", "label": "customer in debt 1's family members"}, "links": []} -{"node": {"kind": "being", "label": "customer in debt 2's family members"}, "links": []} -{"node": {"kind": "being", "label": "my superior at the bank"}, "links": []} -{"node": {"kind": "action_choice", "label": "falsify credit ratings for indebted customers"}, "links": [{"link": {"kind": "v-link", "value": "-63.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I commit fraud"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I abuse the trust of my superiors"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Two indebted customers receive falsified credit ratings"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Two indebted customers become more likely to obtain loans"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Two indebted customers and their families receive immediate financial relief"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Interviews with the indebted customers become less stressful for me"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "falsify the family's credit score"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family is approved for the loan."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family receives additional debt."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family keeps their second car."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The bank lends money to a family that does not meet its lending conditions."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I abuse the trust of my other customers."}]} +{"node": {"kind": "being", "label": "the family of 5 in debt"}, "links": []} +{"node": {"kind": "being", "label": "my colleagues at the bank"}, "links": []} +{"node": {"kind": "action_choice", "label": "falsify the family's credit score"}, "links": [{"link": {"kind": "v-link", "value": "-72.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family is approved for the loan."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family receives additional debt."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family keeps their second car."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The bank lends money to a family that does not meet its lending conditions."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I abuse the trust of my other customers."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I commit fraud"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "customer in debt 1"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "customer in debt 2"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "wealthy customer whose deposits/investments would be redirected 1"}, {"link": {"kind": "utility", "value": "-86"}, "to_node": "wealthy customer whose deposits/investments would be redirected 2"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "customer in debt 1's family members"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "customer in debt 2's family members"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superior at the bank"}]} -{"node": {"kind": "event", "label": "I abuse the trust of my superiors"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "customer in debt 1"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "customer in debt 2"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customer whose deposits/investments would be redirected 1"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customer whose deposits/investments would be redirected 2"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "customer in debt 1's family members"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "customer in debt 2's family members"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superior at the bank"}]} -{"node": {"kind": "event", "label": "Two indebted customers receive falsified credit ratings"}, "links": [{"link": {"kind": "utility", "value": "-7"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "customer in debt 1"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "customer in debt 2"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "wealthy customer whose deposits/investments would be redirected 1"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customer whose deposits/investments would be redirected 2"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "customer in debt 1's family members"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "customer in debt 2's family members"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my superior at the bank"}]} -{"node": {"kind": "event", "label": "Two indebted customers become more likely to obtain loans"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "customer in debt 1"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "customer in debt 2"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "wealthy customer whose deposits/investments would be redirected 1"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "wealthy customer whose deposits/investments would be redirected 2"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "customer in debt 1's family members"}, {"link": {"kind": "utility", "value": "18"}, "to_node": "customer in debt 2's family members"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superior at the bank"}]} -{"node": {"kind": "event", "label": "Two indebted customers and their families receive immediate financial relief"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "customer in debt 1"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "customer in debt 2"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "wealthy customer whose deposits/investments would be redirected 1"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "wealthy customer whose deposits/investments would be redirected 2"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "customer in debt 1's family members"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "customer in debt 2's family members"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "my superior at the bank"}]} -{"node": {"kind": "event", "label": "Interviews with the indebted customers become less stressful for me"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "customer in debt 1"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "customer in debt 2"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "wealthy customer whose deposits/investments would be redirected 1"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "wealthy customer whose deposits/investments would be redirected 2"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "customer in debt 1's family members"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "customer in debt 2's family members"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my superior at the bank"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The family is approved for the loan."}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "the family of 5 in debt"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The family receives additional debt."}, "links": [{"link": {"kind": "utility", "value": "-45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the family of 5 in debt"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The family keeps their second car."}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "the family of 5 in debt"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The bank lends money to a family that does not meet its lending conditions."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the family of 5 in debt"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "I abuse the trust of my other customers."}, "links": [{"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the family of 5 in debt"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "my colleagues at the bank"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/robinhood_7_choice_2.html b/annotated_outputs/cheung_variants/robinhood_7_choice_2.html index 0e27fd36..2772f055 100644 --- a/annotated_outputs/cheung_variants/robinhood_7_choice_2.html +++ b/annotated_outputs/cheung_variants/robinhood_7_choice_2.html @@ -3,8 +3,8 @@ @@ -60,99 +60,81 @@ } function return_vis_dataset() { var nodes = new vis.DataSet([ - {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "indebted customer 1", color: {background: '#279aba'}}, - {id: 3, label: "indebted customer 2", color: {background: '#279aba'}}, - {id: 4, label: "family of indebted customer 1", color: {background: '#279aba'}}, - {id: 5, label: "family of indebted customer 2", color: {background: '#279aba'}}, - {id: 6, label: "wealthy customers whose deposits/investments could\n be redirected", color: {background: '#279aba'}}, - {id: 7, label: "my superiors at the bank", color: {background: '#279aba'}}, - {id: 8, label: "do not falsify credit ratings\n for indebted customers", color: {background: '#ba2769'}}, - {id: 9, label: "value", color: {background: '#8e7db5'}}, - {id: 10, label: "I do not falsify credit\n ratings for the two indebted\n customers", color: {background: '#e6c440'}}, - {id: 11, label: "The two indebted customers are\n not granted loans", color: {background: '#e6c440'}}, - {id: 12, label: "The families of the two\n indebted customers struggle heavily", color: {background: '#e6c440'}}, - {id: 13, label: "Wealthy customers' deposits and investments\n remain untouched", color: {background: '#e6c440'}}, - {id: 14, label: "Wealthy customers' trust is not\n abused", color: {background: '#e6c440'}}, - {id: 15, label: "I do not commit fraud", color: {background: '#e6c440'}}, - {id: 16, label: "I follow bank rules", color: {background: '#e6c440'}}, - {id: 17, label: "My superiors' trust is not\n abused", color: {background: '#e6c440'}} + {id: 1, label: "1 bank employee narrator", color: {background: '#279aba'}}, + {id: 2, label: "1 family of 5 customers\n who are deeply in debt", color: {background: '#279aba'}}, + {id: 3, label: "many other loyal customers of\n the bank", color: {background: '#279aba'}}, + {id: 4, label: "multiple colleagues of the bank\n employee", color: {background: '#279aba'}}, + {id: 5, label: "i", color: {background: '#279aba'}}, + {id: 6, label: "do nothing", color: {background: '#ba2769'}}, + {id: 7, label: "value", color: {background: '#8e7db5'}}, + {id: 8, label: "The family does not receive\n the additional loan.", color: {background: '#e6c440'}}, + {id: 9, label: "The family has to sell\n their second car.", color: {background: '#e6c440'}}, + {id: 10, label: "The family's financial hardship continues.", color: {background: '#e6c440'}}, + {id: 11, label: "Other customers' trust is not\n abused.", color: {background: '#e6c440'}}, + {id: 12, label: "My colleagues' trust is not\n abused.", color: {background: '#e6c440'}}, + {id: 13, label: "The bank's lending rules are\n followed.", color: {background: '#e6c440'}}, + {id: 14, label: "The bank's credit records remain\n accurate.", color: {background: '#e6c440'}}, + {id: 15, label: "I avoid committing fraud.", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 8, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 12, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 13, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 14, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 15, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 16, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 17, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 9, label: "19.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 13, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 14, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 15, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 16, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 17, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 6, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 10, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 11, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 12, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 13, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 14, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 15, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 7, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 13, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 14, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 15, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "6", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 5, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "-25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 5, label: "-15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 10, to: 2, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 5, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 6, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 7, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 5, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 6, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 7, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 4, label: "-5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 5, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 1, label: "30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 2, label: "4", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 3, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 4, label: "20", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 5, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 12, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 3, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 4, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 5, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 6, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 7, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 2, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 3, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 4, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 5, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 6, label: "88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 7, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 2, label: "10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 3, label: "10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 4, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 5, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 6, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 7, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 2, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 3, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 4, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 5, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 6, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 7, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 1, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 2, label: "-15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 3, label: "-40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 4, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 5, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 6, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 7, label: "52", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 5, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 6, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 7, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 3, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 4, label: "40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 5, label: "18", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 1, label: "25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 2, label: "20", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 3, label: "20", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 4, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 5, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 1, label: "30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 2, label: "-25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 3, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 4, label: "18", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 5, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 15, to: 1, label: "30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 15, to: 2, label: "18", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 15, to: 3, label: "20", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 15, to: 4, label: "25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 15, to: 5, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/robinhood_7_choice_2.json b/annotated_outputs/cheung_variants/robinhood_7_choice_2.json index 51a2d1d0..fc758aa4 100644 --- a/annotated_outputs/cheung_variants/robinhood_7_choice_2.json +++ b/annotated_outputs/cheung_variants/robinhood_7_choice_2.json @@ -1,18 +1,16 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do not falsify credit ratings for indebted customers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not falsify credit ratings for the two indebted customers"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The two indebted customers are not granted loans"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "The families of the two indebted customers struggle heavily"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Wealthy customers' deposits and investments remain untouched"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Wealthy customers' trust is not abused"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not commit fraud"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I follow bank rules"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "My superiors' trust is not abused"}]} -{"node": {"kind": "being", "label": "indebted customer 1"}, "links": []} -{"node": {"kind": "being", "label": "indebted customer 2"}, "links": []} -{"node": {"kind": "being", "label": "family of indebted customer 1"}, "links": []} -{"node": {"kind": "being", "label": "family of indebted customer 2"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customers whose deposits/investments could be redirected"}, "links": []} -{"node": {"kind": "being", "label": "my superiors at the bank"}, "links": []} -{"node": {"kind": "action_choice", "label": "do not falsify credit ratings for indebted customers"}, "links": [{"link": {"kind": "v-link", "value": "19.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not falsify credit ratings for the two indebted customers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The two indebted customers are not granted loans"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The families of the two indebted customers struggle heavily"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Wealthy customers' deposits and investments remain untouched"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Wealthy customers' trust is not abused"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not commit fraud"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I follow bank rules"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My superiors' trust is not abused"}]} +{"node": {"kind": "being", "label": "1 bank employee narrator"}, "links": []} +{"node": {"kind": "being", "label": "1 family of 5 customers who are deeply in debt"}, "links": []} +{"node": {"kind": "being", "label": "many other loyal customers of the bank"}, "links": []} +{"node": {"kind": "being", "label": "multiple colleagues of the bank employee"}, "links": []} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family does not receive the additional loan."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family has to sell their second car."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family's financial hardship continues."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Other customers' trust is not abused."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "My colleagues' trust is not abused."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The bank's lending rules are followed."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The bank's credit records remain accurate."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I avoid committing fraud."}]} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family does not receive the additional loan."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family has to sell their second car."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's financial hardship continues."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Other customers' trust is not abused."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My colleagues' trust is not abused."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The bank's lending rules are followed."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The bank's credit records remain accurate."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid committing fraud."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I do not falsify credit ratings for the two indebted customers"}, "links": [{"link": {"kind": "utility", "value": "55"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "indebted customer 1"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "indebted customer 2"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "family of indebted customer 1"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "family of indebted customer 2"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my superiors at the bank"}]} -{"node": {"kind": "event", "label": "The two indebted customers are not granted loans"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "indebted customer 1"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "indebted customer 2"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "family of indebted customer 1"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "family of indebted customer 2"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors at the bank"}]} -{"node": {"kind": "event", "label": "The families of the two indebted customers struggle heavily"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "indebted customer 1"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "indebted customer 2"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "family of indebted customer 1"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "family of indebted customer 2"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my superiors at the bank"}]} -{"node": {"kind": "event", "label": "Wealthy customers' deposits and investments remain untouched"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "indebted customer 1"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "indebted customer 2"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "family of indebted customer 1"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "family of indebted customer 2"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "my superiors at the bank"}]} -{"node": {"kind": "event", "label": "Wealthy customers' trust is not abused"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "indebted customer 1"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "indebted customer 2"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "family of indebted customer 1"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "family of indebted customer 2"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "my superiors at the bank"}]} -{"node": {"kind": "event", "label": "I do not commit fraud"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "indebted customer 1"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "indebted customer 2"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "family of indebted customer 1"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "family of indebted customer 2"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors at the bank"}]} -{"node": {"kind": "event", "label": "I follow bank rules"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "indebted customer 1"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "indebted customer 2"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "family of indebted customer 1"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "family of indebted customer 2"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "52"}, "to_node": "my superiors at the bank"}]} -{"node": {"kind": "event", "label": "My superiors' trust is not abused"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "indebted customer 1"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "indebted customer 2"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "family of indebted customer 1"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "family of indebted customer 2"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "my superiors at the bank"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The family does not receive the additional loan."}, "links": [{"link": {"kind": "utility", "value": "-5"}, "to_node": "1 bank employee narrator"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "1 family of 5 customers who are deeply in debt"}, {"link": {"kind": "utility", "value": "6"}, "to_node": "many other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "multiple colleagues of the bank employee"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "The family has to sell their second car."}, "links": [{"link": {"kind": "utility", "value": "-25"}, "to_node": "1 bank employee narrator"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "1 family of 5 customers who are deeply in debt"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "many other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "multiple colleagues of the bank employee"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "The family's financial hardship continues."}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "1 bank employee narrator"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "1 family of 5 customers who are deeply in debt"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "many other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "-5"}, "to_node": "multiple colleagues of the bank employee"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "Other customers' trust is not abused."}, "links": [{"link": {"kind": "utility", "value": "30"}, "to_node": "1 bank employee narrator"}, {"link": {"kind": "utility", "value": "4"}, "to_node": "1 family of 5 customers who are deeply in debt"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "many other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "20"}, "to_node": "multiple colleagues of the bank employee"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "My colleagues' trust is not abused."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "1 bank employee narrator"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "1 family of 5 customers who are deeply in debt"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "many other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "40"}, "to_node": "multiple colleagues of the bank employee"}, {"link": {"kind": "utility", "value": "18"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "The bank's lending rules are followed."}, "links": [{"link": {"kind": "utility", "value": "25"}, "to_node": "1 bank employee narrator"}, {"link": {"kind": "utility", "value": "20"}, "to_node": "1 family of 5 customers who are deeply in debt"}, {"link": {"kind": "utility", "value": "20"}, "to_node": "many other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "multiple colleagues of the bank employee"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "The bank's credit records remain accurate."}, "links": [{"link": {"kind": "utility", "value": "30"}, "to_node": "1 bank employee narrator"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "1 family of 5 customers who are deeply in debt"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "many other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "18"}, "to_node": "multiple colleagues of the bank employee"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "I avoid committing fraud."}, "links": [{"link": {"kind": "utility", "value": "30"}, "to_node": "1 bank employee narrator"}, {"link": {"kind": "utility", "value": "18"}, "to_node": "1 family of 5 customers who are deeply in debt"}, {"link": {"kind": "utility", "value": "20"}, "to_node": "many other loyal customers of the bank"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "multiple colleagues of the bank employee"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "i"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/robinhood_8_choice_1.json b/annotated_outputs/cheung_variants/robinhood_8_choice_1.json index f93ce520..0fbb7ce1 100644 --- a/annotated_outputs/cheung_variants/robinhood_8_choice_1.json +++ b/annotated_outputs/cheung_variants/robinhood_8_choice_1.json @@ -1,17 +1,14 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "bypass the loan restrictions for indebted customers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The two indebted customers receive loans"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The two indebted customers' families avoid immediate severe financial struggle"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I commit fraud"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Deposits and investments of other customers are redirected without their consent"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Wealthy customers' trust is abused"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "My superiors' trust is abused"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Bank rules and loan restrictions are violated"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I avoid the stressful loan denial interviews"}]} -{"node": {"kind": "being", "label": "2 indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "family of indebted customer who would struggle heavily without a loan"}, "links": []} -{"node": {"kind": "being", "label": "family of the other indebted customer"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customers whose deposits and investments would be temporarily redirected"}, "links": []} -{"node": {"kind": "being", "label": "my superiors"}, "links": []} -{"node": {"kind": "action_choice", "label": "bypass the loan restrictions for indebted customers"}, "links": [{"link": {"kind": "v-link", "value": "-30.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The two indebted customers receive loans"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The two indebted customers' families avoid immediate severe financial struggle"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I commit fraud"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Deposits and investments of other customers are redirected without their consent"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Wealthy customers' trust is abused"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My superiors' trust is abused"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Bank rules and loan restrictions are violated"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid the stressful loan denial interviews"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "delete a year of the family's account history,"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family's account records become false"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family appears eligible for the loan"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family receives a loan they were not eligible for"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family's total debt increases"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family avoids selling their second car"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family experiences short-term financial relief"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I abuse the trust of other customers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I commit fraud against the bank"}]} +{"node": {"kind": "being", "label": "5 members of the indebted family"}, "links": []} +{"node": {"kind": "being", "label": "my colleagues"}, "links": []} +{"node": {"kind": "action_choice", "label": "delete a year of the family's account history,"}, "links": [{"link": {"kind": "v-link", "value": "-41.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's account records become false"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family appears eligible for the loan"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family receives a loan they were not eligible for"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's total debt increases"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family avoids selling their second car"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family experiences short-term financial relief"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I abuse the trust of other customers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I commit fraud against the bank"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The two indebted customers receive loans"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "family of the other indebted customer"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The two indebted customers' families avoid immediate severe financial struggle"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "family of the other indebted customer"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I commit fraud"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "family of the other indebted customer"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Deposits and investments of other customers are redirected without their consent"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "family of the other indebted customer"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Wealthy customers' trust is abused"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-58"}, "to_node": "family of the other indebted customer"}, {"link": {"kind": "utility", "value": "-86"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "My superiors' trust is abused"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "family of the other indebted customer"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Bank rules and loan restrictions are violated"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "family of the other indebted customer"}, {"link": {"kind": "utility", "value": "-58"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I avoid the stressful loan denial interviews"}, "links": [{"link": {"kind": "utility", "value": "55"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "family of the other indebted customer"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "1"}, "to_node": "my superiors"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The family's account records become false"}, "links": [{"link": {"kind": "utility", "value": "-30"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "5 members of the indebted family"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "5 members of the indebted family"}]} +{"node": {"kind": "event", "label": "The family appears eligible for the loan"}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "5 members of the indebted family"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "5 members of the indebted family"}]} +{"node": {"kind": "event", "label": "The family receives a loan they were not eligible for"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "5 members of the indebted family"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "5 members of the indebted family"}]} +{"node": {"kind": "event", "label": "The family's total debt increases"}, "links": [{"link": {"kind": "utility", "value": "-45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "5 members of the indebted family"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "5 members of the indebted family"}]} +{"node": {"kind": "event", "label": "The family avoids selling their second car"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "5 members of the indebted family"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "5 members of the indebted family"}]} +{"node": {"kind": "event", "label": "The family experiences short-term financial relief"}, "links": [{"link": {"kind": "utility", "value": "30"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "5 members of the indebted family"}, {"link": {"kind": "utility", "value": "2"}, "to_node": "5 members of the indebted family"}]} +{"node": {"kind": "event", "label": "I abuse the trust of other customers"}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "5 members of the indebted family"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "5 members of the indebted family"}]} +{"node": {"kind": "event", "label": "I commit fraud against the bank"}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "5 members of the indebted family"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "5 members of the indebted family"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/robinhood_8_choice_2.html b/annotated_outputs/cheung_variants/robinhood_8_choice_2.html index b9716d53..2b128344 100644 --- a/annotated_outputs/cheung_variants/robinhood_8_choice_2.html +++ b/annotated_outputs/cheung_variants/robinhood_8_choice_2.html @@ -3,8 +3,8 @@ @@ -61,98 +61,38 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "customer in debt 1", color: {background: '#279aba'}}, - {id: 3, label: "customer in debt 2", color: {background: '#279aba'}}, - {id: 4, label: "family of customer in debt\n 1", color: {background: '#279aba'}}, - {id: 5, label: "family of customer in debt\n 2", color: {background: '#279aba'}}, - {id: 6, label: "wealthy customers whose deposits/investments could\n be redirected", color: {background: '#279aba'}}, - {id: 7, label: "my superiors", color: {background: '#279aba'}}, - {id: 8, label: "do not bypass the loan\n restrictions for indebted customers", color: {background: '#ba2769'}}, - {id: 9, label: "value", color: {background: '#8e7db5'}}, - {id: 10, label: "I do not commit fraud", color: {background: '#e6c440'}}, - {id: 11, label: "I do not redirect other\n customers' deposits and investments", color: {background: '#e6c440'}}, - {id: 12, label: "The two indebted customers do\n not receive the bypassed loan\n approval", color: {background: '#e6c440'}}, - {id: 13, label: "The two indebted customers continue\n to struggle heavily", color: {background: '#e6c440'}}, - {id: 14, label: "The wealthy customers' funds remain\n untouched", color: {background: '#e6c440'}}, - {id: 15, label: "The wealthy customers' trust is\n not abused", color: {background: '#e6c440'}}, - {id: 16, label: "My superiors' trust is not\n abused", color: {background: '#e6c440'}}, - {id: 17, label: "I avoid the stressful act\n of deceiving customers and superiors", color: {background: '#e6c440'}} + {id: 2, label: "5 members of the indebted\n customer family", color: {background: '#279aba'}}, + {id: 3, label: "an unknown number of my\n bank colleagues", color: {background: '#279aba'}}, + {id: 4, label: "do nothing", color: {background: '#ba2769'}}, + {id: 5, label: "value", color: {background: '#8e7db5'}}, + {id: 6, label: "The family's account history remains\n intact", color: {background: '#e6c440'}}, + {id: 7, label: "The family does not receive\n the additional loan from the\n bank", color: {background: '#e6c440'}}, + {id: 8, label: "The bank's records remain accurate", color: {background: '#e6c440'}}, + {id: 9, label: "I do not abuse the\n trust of my colleagues", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ + {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 6, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 8, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 12, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 13, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 14, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 15, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 16, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 17, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 9, label: "28.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 13, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 14, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 15, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 16, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 17, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 5, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 6, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 7, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 5, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 6, label: "78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 7, label: "10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 1, label: "6", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 2, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 4, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 5, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 6, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 7, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 1, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 2, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 3, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 4, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 5, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 6, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 7, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 2, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 3, label: "-40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 4, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 5, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 6, label: "88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 7, label: "75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 2, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 3, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 4, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 5, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 6, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 7, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 5, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 6, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 7, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 2, label: "6", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 4, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 5, label: "6", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 6, label: "18", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 17, to: 7, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 9, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 5, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 6, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 1, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 2, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 3, label: "6", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "3", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "20", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/robinhood_8_choice_2.json b/annotated_outputs/cheung_variants/robinhood_8_choice_2.json index d8ee169e..7a530ba2 100644 --- a/annotated_outputs/cheung_variants/robinhood_8_choice_2.json +++ b/annotated_outputs/cheung_variants/robinhood_8_choice_2.json @@ -1,18 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do not bypass the loan restrictions for indebted customers"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I do not commit fraud"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not redirect other customers' deposits and investments"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The two indebted customers do not receive the bypassed loan approval"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The two indebted customers continue to struggle heavily"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The wealthy customers' funds remain untouched"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The wealthy customers' trust is not abused"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "My superiors' trust is not abused"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I avoid the stressful act of deceiving customers and superiors"}]} -{"node": {"kind": "being", "label": "customer in debt 1"}, "links": []} -{"node": {"kind": "being", "label": "customer in debt 2"}, "links": []} -{"node": {"kind": "being", "label": "family of customer in debt 1"}, "links": []} -{"node": {"kind": "being", "label": "family of customer in debt 2"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customers whose deposits/investments could be redirected"}, "links": []} -{"node": {"kind": "being", "label": "my superiors"}, "links": []} -{"node": {"kind": "action_choice", "label": "do not bypass the loan restrictions for indebted customers"}, "links": [{"link": {"kind": "v-link", "value": "28.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not commit fraud"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not redirect other customers' deposits and investments"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The two indebted customers do not receive the bypassed loan approval"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The two indebted customers continue to struggle heavily"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The wealthy customers' funds remain untouched"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The wealthy customers' trust is not abused"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My superiors' trust is not abused"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid the stressful act of deceiving customers and superiors"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family's account history remains intact"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family does not receive the additional loan from the bank"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The bank's records remain accurate"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not abuse the trust of my colleagues"}]} +{"node": {"kind": "being", "label": "5 members of the indebted customer family"}, "links": []} +{"node": {"kind": "being", "label": "an unknown number of my bank colleagues"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's account history remains intact"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family does not receive the additional loan from the bank"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The bank's records remain accurate"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not abuse the trust of my colleagues"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I do not commit fraud"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "customer in debt 1"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "customer in debt 2"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "family of customer in debt 1"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "family of customer in debt 2"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I do not redirect other customers' deposits and investments"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "customer in debt 1"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "customer in debt 2"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "family of customer in debt 1"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "family of customer in debt 2"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The two indebted customers do not receive the bypassed loan approval"}, "links": [{"link": {"kind": "utility", "value": "6"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "customer in debt 1"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "customer in debt 2"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "family of customer in debt 1"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "family of customer in debt 2"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The two indebted customers continue to struggle heavily"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "customer in debt 1"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "customer in debt 2"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "family of customer in debt 1"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "family of customer in debt 2"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The wealthy customers' funds remain untouched"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "customer in debt 1"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "customer in debt 2"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "family of customer in debt 1"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "family of customer in debt 2"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The wealthy customers' trust is not abused"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "customer in debt 1"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "customer in debt 2"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "family of customer in debt 1"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "family of customer in debt 2"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "My superiors' trust is not abused"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "customer in debt 1"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "customer in debt 2"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "family of customer in debt 1"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "family of customer in debt 2"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I avoid the stressful act of deceiving customers and superiors"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "6"}, "to_node": "customer in debt 1"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "customer in debt 2"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "family of customer in debt 1"}, {"link": {"kind": "utility", "value": "6"}, "to_node": "family of customer in debt 2"}, {"link": {"kind": "utility", "value": "18"}, "to_node": "wealthy customers whose deposits/investments could be redirected"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my superiors"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The family's account history remains intact"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "5 members of the indebted customer family"}, {"link": {"kind": "utility", "value": "6"}, "to_node": "an unknown number of my bank colleagues"}]} +{"node": {"kind": "event", "label": "The family does not receive the additional loan from the bank"}, "links": [{"link": {"kind": "utility", "value": "-45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "5 members of the indebted customer family"}, {"link": {"kind": "utility", "value": "3"}, "to_node": "an unknown number of my bank colleagues"}]} +{"node": {"kind": "event", "label": "The bank's records remain accurate"}, "links": [{"link": {"kind": "utility", "value": "10"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "5 members of the indebted customer family"}, {"link": {"kind": "utility", "value": "20"}, "to_node": "an unknown number of my bank colleagues"}]} +{"node": {"kind": "event", "label": "I do not abuse the trust of my colleagues"}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "5 members of the indebted customer family"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "an unknown number of my bank colleagues"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/robinhood_9_choice_1.json b/annotated_outputs/cheung_variants/robinhood_9_choice_1.json index 7f4b5e6d..934f8638 100644 --- a/annotated_outputs/cheung_variants/robinhood_9_choice_1.json +++ b/annotated_outputs/cheung_variants/robinhood_9_choice_1.json @@ -1,19 +1,21 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "temporarily redirect money from wealthy customers to indebted customers' bank accounts"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I commit fraud"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I abuse the trust of wealthy customers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Money is temporarily redirected from wealthy customers' deposits and investments"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Two indebted customers receive temporary funds in their bank accounts"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The credit ratings of the two indebted customers improve"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Two indebted customers become able to obtain loans"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Two indebted customers experience reduced immediate financial strain"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Wealthy customers' assets are used without their consent"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I experience reduced stress from the loan interviews"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The bank's funds and records are manipulated improperly"}]} -{"node": {"kind": "being", "label": "2 indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "family of indebted customer who would struggle heavily without a loan"}, "links": []} -{"node": {"kind": "being", "label": "other indebted customer's family"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customers whose deposits and investments would be temporarily redirected"}, "links": []} -{"node": {"kind": "being", "label": "my superiors"}, "links": []} -{"node": {"kind": "action_choice", "label": "temporarily redirect money from wealthy customers to indebted customers' bank accounts"}, "links": [{"link": {"kind": "v-link", "value": "-19.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I commit fraud"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I abuse the trust of wealthy customers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Money is temporarily redirected from wealthy customers' deposits and investments"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Two indebted customers receive temporary funds in their bank accounts"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The credit ratings of the two indebted customers improve"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Two indebted customers become able to obtain loans"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Two indebted customers experience reduced immediate financial strain"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Wealthy customers' assets are used without their consent"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I experience reduced stress from the loan interviews"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The bank's funds and records are manipulated improperly"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "temporarily redirect money from another account into the family's account"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family's account balance appears sufficient to meet the loan conditions"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family becomes eligible for the loan"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The family gets immediate relief from having to sell their second car"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The other account holder temporarily loses access to part of their money"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The other account holder is exposed to unauthorized risk to their funds"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The bank is deceived about the family's true financial position"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I breach the trust of other customers and colleagues"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I violate bank rules and fiduciary duties"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The bank's account records no longer reflect the true location of the funds"}]} +{"node": {"kind": "being", "label": "member 1 of the indebted family of five"}, "links": []} +{"node": {"kind": "being", "label": "member 2 of the indebted family of five"}, "links": []} +{"node": {"kind": "being", "label": "member 3 of the indebted family of five"}, "links": []} +{"node": {"kind": "being", "label": "member 4 of the indebted family of five"}, "links": []} +{"node": {"kind": "being", "label": "member 5 of the indebted family of five"}, "links": []} +{"node": {"kind": "being", "label": "the 1+ customer who own the other account from which money would be redirected"}, "links": []} +{"node": {"kind": "being", "label": "my other loyal customers besides the indebted family and the other-account owner"}, "links": []} +{"node": {"kind": "being", "label": "my colleagues at the bank"}, "links": []} +{"node": {"kind": "action_choice", "label": "temporarily redirect money from another account into the family's account"}, "links": [{"link": {"kind": "v-link", "value": "-20.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's account balance appears sufficient to meet the loan conditions"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family becomes eligible for the loan"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family gets immediate relief from having to sell their second car"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The other account holder temporarily loses access to part of their money"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The other account holder is exposed to unauthorized risk to their funds"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The bank is deceived about the family's true financial position"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I breach the trust of other customers and colleagues"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I violate bank rules and fiduciary duties"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The bank's account records no longer reflect the true location of the funds"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I commit fraud"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "other indebted customer's family"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I abuse the trust of wealthy customers"}, "links": [{"link": {"kind": "utility", "value": "-76"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "other indebted customer's family"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Money is temporarily redirected from wealthy customers' deposits and investments"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "other indebted customer's family"}, {"link": {"kind": "utility", "value": "-68"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Two indebted customers receive temporary funds in their bank accounts"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "other indebted customer's family"}, {"link": {"kind": "utility", "value": "-42"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The credit ratings of the two indebted customers improve"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "other indebted customer's family"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Two indebted customers become able to obtain loans"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "other indebted customer's family"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Two indebted customers experience reduced immediate financial strain"}, "links": [{"link": {"kind": "utility", "value": "10"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "other indebted customer's family"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Wealthy customers' assets are used without their consent"}, "links": [{"link": {"kind": "utility", "value": "-78"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "other indebted customer's family"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I experience reduced stress from the loan interviews"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "2"}, "to_node": "other indebted customer's family"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The bank's funds and records are manipulated improperly"}, "links": [{"link": {"kind": "utility", "value": "-78"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "other indebted customer's family"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "wealthy customers whose deposits and investments would be temporarily redirected"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "my superiors"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The family's account balance appears sufficient to meet the loan conditions"}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "40"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "40"}, "to_node": "member 2 of the indebted family of five"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "member 3 of the indebted family of five"}, {"link": {"kind": "utility", "value": "58"}, "to_node": "member 3 of the indebted family of five"}, {"link": {"kind": "utility", "value": "38"}, "to_node": "member 5 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "member 5 of the indebted family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my other loyal customers besides the indebted family and the other-account owner"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The family becomes eligible for the loan"}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "40"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "member 2 of the indebted family of five"}, {"link": {"kind": "utility", "value": "28"}, "to_node": "member 3 of the indebted family of five"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "member 3 of the indebted family of five"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "member 5 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "member 5 of the indebted family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my other loyal customers besides the indebted family and the other-account owner"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The family gets immediate relief from having to sell their second car"}, "links": [{"link": {"kind": "utility", "value": "30"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "28"}, "to_node": "member 2 of the indebted family of five"}, {"link": {"kind": "utility", "value": "24"}, "to_node": "member 3 of the indebted family of five"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "member 3 of the indebted family of five"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "member 5 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "member 5 of the indebted family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my other loyal customers besides the indebted family and the other-account owner"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The other account holder temporarily loses access to part of their money"}, "links": [{"link": {"kind": "utility", "value": "-8"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-24"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "member 2 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "member 3 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "member 3 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "member 5 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "member 5 of the indebted family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my other loyal customers besides the indebted family and the other-account owner"}, {"link": {"kind": "utility", "value": "-5"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The other account holder is exposed to unauthorized risk to their funds"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "member 2 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "member 3 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "member 3 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "member 5 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "member 5 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "my other loyal customers besides the indebted family and the other-account owner"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The bank is deceived about the family's true financial position"}, "links": [{"link": {"kind": "utility", "value": "20"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "member 2 of the indebted family of five"}, {"link": {"kind": "utility", "value": "18"}, "to_node": "member 3 of the indebted family of five"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "member 3 of the indebted family of five"}, {"link": {"kind": "utility", "value": "20"}, "to_node": "member 5 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "member 5 of the indebted family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my other loyal customers besides the indebted family and the other-account owner"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "I breach the trust of other customers and colleagues"}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "member 2 of the indebted family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "member 3 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "member 3 of the indebted family of five"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "member 5 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "member 5 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "my other loyal customers besides the indebted family and the other-account owner"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "I violate bank rules and fiduciary duties"}, "links": [{"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "member 2 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-50"}, "to_node": "member 3 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "member 3 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "member 5 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "member 5 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "my other loyal customers besides the indebted family and the other-account owner"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my colleagues at the bank"}]} +{"node": {"kind": "event", "label": "The bank's account records no longer reflect the true location of the funds"}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "member 2 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "member 3 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "member 3 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "member 5 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "member 5 of the indebted family of five"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "my other loyal customers besides the indebted family and the other-account owner"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my colleagues at the bank"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/robinhood_9_choice_2.html b/annotated_outputs/cheung_variants/robinhood_9_choice_2.html index 3ecab07a..218b9462 100644 --- a/annotated_outputs/cheung_variants/robinhood_9_choice_2.html +++ b/annotated_outputs/cheung_variants/robinhood_9_choice_2.html @@ -3,8 +3,8 @@ @@ -61,89 +61,78 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "2 indebted customers", color: {background: '#279aba'}}, - {id: 3, label: "family of indebted customer who\n would struggle heavily without a\n loan", color: {background: '#279aba'}}, - {id: 4, label: "family of the other indebted\n customer", color: {background: '#279aba'}}, - {id: 5, label: "wealthy customers whose deposits/investments could\n be temporarily redirected", color: {background: '#279aba'}}, - {id: 6, label: "my superiors", color: {background: '#279aba'}}, - {id: 7, label: "do not temporarily redirect money\n from wealthy customers to indebted\n customers' bank accounts", color: {background: '#ba2769'}}, - {id: 8, label: "value", color: {background: '#8e7db5'}}, - {id: 9, label: "I do not commit fraud", color: {background: '#e6c440'}}, - {id: 10, label: "Wealthy customers' deposits and investments\n remain untouched", color: {background: '#e6c440'}}, - {id: 11, label: "Wealthy customers' trust is not\n abused by me", color: {background: '#e6c440'}}, - {id: 12, label: "I follow bank rules", color: {background: '#e6c440'}}, - {id: 13, label: "The two indebted customers do\n not receive the temporary funds", color: {background: '#e6c440'}}, - {id: 14, label: "The two indebted customers remain\n ineligible for the loan", color: {background: '#e6c440'}}, - {id: 15, label: "The families of the two\n indebted customers struggle heavily", color: {background: '#e6c440'}}, - {id: 16, label: "I avoid the stressful act\n of secretly redirecting customer money", color: {background: '#e6c440'}} + {id: 2, label: "the indebted family who might\n seek the loan", color: {background: '#279aba'}}, + {id: 3, label: "the holder of the other\n account that could be temporarily\n redirected from", color: {background: '#279aba'}}, + {id: 4, label: "my other loyal customers, excluding\n the indebted family and the\n other-account holder", color: {background: '#279aba'}}, + {id: 5, label: "do nothing", color: {background: '#ba2769'}}, + {id: 6, label: "value", color: {background: '#8e7db5'}}, + {id: 7, label: "The family's account balance stays\n unchanged.", color: {background: '#e6c440'}}, + {id: 8, label: "The family does not qualify\n for another loan.", color: {background: '#e6c440'}}, + {id: 9, label: "The family does not receive\n the loan.", color: {background: '#e6c440'}}, + {id: 10, label: "The family remains in serious\n debt.", color: {background: '#e6c440'}}, + {id: 11, label: "The family sells their second\n car.", color: {background: '#e6c440'}}, + {id: 12, label: "The other account holder's money\n remains in that account.", color: {background: '#e6c440'}}, + {id: 13, label: "Other customers' trust is preserved.", color: {background: '#e6c440'}}, + {id: 14, label: "My colleagues' trust is preserved.", color: {background: '#e6c440'}}, + {id: 15, label: "The bank avoids an internal\n fraud incident.", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 7, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 9, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 10, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 11, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 12, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 13, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 14, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 15, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 16, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 8, label: "-0.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 13, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 14, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 15, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 16, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 4, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 5, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 6, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 5, label: "88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 6, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 5, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 6, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 1, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 2, label: "-15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 3, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 13, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 14, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 15, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 6, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 13, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 14, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 15, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "-10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 4, label: "3", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 2, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "-25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 4, label: "-3", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 1, label: "-10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 2, label: "25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 3, label: "18", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 2, label: "25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 12, to: 3, label: "25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 12, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 5, label: "70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 6, label: "42", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 13, to: 1, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 3, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 4, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 5, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 13, to: 6, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 3, label: "-88", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 4, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 5, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 14, to: 6, label: "-8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 2, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 3, label: "7", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 13, to: 4, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 1, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 2, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 14, to: 4, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 15, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 3, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 4, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 5, label: "-18", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 15, to: 6, label: "-58", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 1, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 2, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 3, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 4, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 5, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 16, to: 6, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 15, to: 2, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 15, to: 3, label: "25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 15, to: 4, label: "22", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/robinhood_9_choice_2.json b/annotated_outputs/cheung_variants/robinhood_9_choice_2.json index bd69e73d..550deddc 100644 --- a/annotated_outputs/cheung_variants/robinhood_9_choice_2.json +++ b/annotated_outputs/cheung_variants/robinhood_9_choice_2.json @@ -1,17 +1,16 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do not temporarily redirect money from wealthy customers to indebted customers' bank accounts"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not commit fraud"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Wealthy customers' deposits and investments remain untouched"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Wealthy customers' trust is not abused by me"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I follow bank rules"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The two indebted customers do not receive the temporary funds"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The two indebted customers remain ineligible for the loan"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The families of the two indebted customers struggle heavily"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I avoid the stressful act of secretly redirecting customer money"}]} -{"node": {"kind": "being", "label": "2 indebted customers"}, "links": []} -{"node": {"kind": "being", "label": "family of indebted customer who would struggle heavily without a loan"}, "links": []} -{"node": {"kind": "being", "label": "family of the other indebted customer"}, "links": []} -{"node": {"kind": "being", "label": "wealthy customers whose deposits/investments could be temporarily redirected"}, "links": []} -{"node": {"kind": "being", "label": "my superiors"}, "links": []} -{"node": {"kind": "action_choice", "label": "do not temporarily redirect money from wealthy customers to indebted customers' bank accounts"}, "links": [{"link": {"kind": "v-link", "value": "-0.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not commit fraud"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Wealthy customers' deposits and investments remain untouched"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Wealthy customers' trust is not abused by me"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I follow bank rules"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The two indebted customers do not receive the temporary funds"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The two indebted customers remain ineligible for the loan"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The families of the two indebted customers struggle heavily"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I avoid the stressful act of secretly redirecting customer money"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family's account balance stays unchanged."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family does not qualify for another loan."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family does not receive the loan."}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "The family remains in serious debt."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The family sells their second car."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The other account holder's money remains in that account."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Other customers' trust is preserved."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "My colleagues' trust is preserved."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The bank avoids an internal fraud incident."}]} +{"node": {"kind": "being", "label": "the indebted family who might seek the loan"}, "links": []} +{"node": {"kind": "being", "label": "the holder of the other account that could be temporarily redirected from"}, "links": []} +{"node": {"kind": "being", "label": "my other loyal customers, excluding the indebted family and the other-account holder"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family's account balance stays unchanged."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family does not qualify for another loan."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family does not receive the loan."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family remains in serious debt."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The family sells their second car."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The other account holder's money remains in that account."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Other customers' trust is preserved."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My colleagues' trust is preserved."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The bank avoids an internal fraud incident."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I do not commit fraud"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "family of the other indebted customer"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits/investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Wealthy customers' deposits and investments remain untouched"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "family of the other indebted customer"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "wealthy customers whose deposits/investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "Wealthy customers' trust is not abused by me"}, "links": [{"link": {"kind": "utility", "value": "70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "family of the other indebted customer"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "wealthy customers whose deposits/investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I follow bank rules"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "family of the other indebted customer"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "wealthy customers whose deposits/investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "42"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The two indebted customers do not receive the temporary funds"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "family of the other indebted customer"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "wealthy customers whose deposits/investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The two indebted customers remain ineligible for the loan"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "family of the other indebted customer"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "wealthy customers whose deposits/investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "The families of the two indebted customers struggle heavily"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "family of the other indebted customer"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "wealthy customers whose deposits/investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "-58"}, "to_node": "my superiors"}]} -{"node": {"kind": "event", "label": "I avoid the stressful act of secretly redirecting customer money"}, "links": [{"link": {"kind": "utility", "value": "72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "2 indebted customers"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "family of indebted customer who would struggle heavily without a loan"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "family of the other indebted customer"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "wealthy customers whose deposits/investments could be temporarily redirected"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my superiors"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The family's account balance stays unchanged."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "the indebted family who might seek the loan"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my other loyal customers, excluding the indebted family and the other-account holder"}]} +{"node": {"kind": "event", "label": "The family does not qualify for another loan."}, "links": [{"link": {"kind": "utility", "value": "-45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "the indebted family who might seek the loan"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my other loyal customers, excluding the indebted family and the other-account holder"}]} +{"node": {"kind": "event", "label": "The family does not receive the loan."}, "links": [{"link": {"kind": "utility", "value": "-45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the indebted family who might seek the loan"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "3"}, "to_node": "my other loyal customers, excluding the indebted family and the other-account holder"}]} +{"node": {"kind": "event", "label": "The family remains in serious debt."}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "the indebted family who might seek the loan"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "-3"}, "to_node": "my other loyal customers, excluding the indebted family and the other-account holder"}]} +{"node": {"kind": "event", "label": "The family sells their second car."}, "links": [{"link": {"kind": "utility", "value": "-10"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "the indebted family who might seek the loan"}, {"link": {"kind": "utility", "value": "18"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my other loyal customers, excluding the indebted family and the other-account holder"}]} +{"node": {"kind": "event", "label": "The other account holder's money remains in that account."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "the indebted family who might seek the loan"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my other loyal customers, excluding the indebted family and the other-account holder"}]} +{"node": {"kind": "event", "label": "Other customers' trust is preserved."}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "the indebted family who might seek the loan"}, {"link": {"kind": "utility", "value": "7"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my other loyal customers, excluding the indebted family and the other-account holder"}]} +{"node": {"kind": "event", "label": "My colleagues' trust is preserved."}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "the indebted family who might seek the loan"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my other loyal customers, excluding the indebted family and the other-account holder"}]} +{"node": {"kind": "event", "label": "The bank avoids an internal fraud incident."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "the indebted family who might seek the loan"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "the holder of the other account that could be temporarily redirected from"}, {"link": {"kind": "utility", "value": "22"}, "to_node": "my other loyal customers, excluding the indebted family and the other-account holder"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/ropeladder_1_choice_1.json b/annotated_outputs/cheung_variants/ropeladder_1_choice_1.json index fb4edfa2..5ac8e141 100644 --- a/annotated_outputs/cheung_variants/ropeladder_1_choice_1.json +++ b/annotated_outputs/cheung_variants/ropeladder_1_choice_1.json @@ -1,14 +1,12 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "break the man's fingers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man's fingers are broken by me"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "The man falls from the ladder"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man dies from the fall"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The ladder is no longer blocked"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The 19 other passengers behind the man can climb onto the deck"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "More passengers reach the deck alive"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I physically injure a man"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "I experience the immediate act of killing the man"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "break the man's fingers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man suffers severe hand injuries and intense pain."}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "The man loses his grip on the ladder and falls."}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man likely dies from the fall."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The ladder is no longer blocked."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The 19 passengers below can continue climbing toward the deck."}]} {"node": {"kind": "being", "label": "the man blocking the ladder"}, "links": []} -{"node": {"kind": "being", "label": "19 other passengers behind him on the ladder"}, "links": []} -{"node": {"kind": "action_choice", "label": "break the man's fingers"}, "links": [{"link": {"kind": "v-link", "value": "-75.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man's fingers are broken by me"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man falls from the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man dies from the fall"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The ladder is no longer blocked"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 19 other passengers behind the man can climb onto the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "More passengers reach the deck alive"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I physically injure a man"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I experience the immediate act of killing the man"}]} +{"node": {"kind": "being", "label": "the passenger who shouts to break the man's fingers"}, "links": []} +{"node": {"kind": "being", "label": "18 other passengers behind the blocked ladder"}, "links": []} +{"node": {"kind": "action_choice", "label": "break the man's fingers"}, "links": [{"link": {"kind": "v-link", "value": "-108.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man suffers severe hand injuries and intense pain."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man loses his grip on the ladder and falls."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man likely dies from the fall."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The ladder is no longer blocked."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 19 passengers below can continue climbing toward the deck."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The man's fingers are broken by me"}, "links": [{"link": {"kind": "utility", "value": "-10"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-18"}, "to_node": "19 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "The man falls from the ladder"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "19 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "The man dies from the fall"}, "links": [{"link": {"kind": "utility", "value": "-95"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "19 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "The ladder is no longer blocked"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "19 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "The 19 other passengers behind the man can climb onto the deck"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "19 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "More passengers reach the deck alive"}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "19 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "I physically injure a man"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "19 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "I experience the immediate act of killing the man"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "19 other passengers behind him on the ladder"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The man suffers severe hand injuries and intense pain."}, "links": [{"link": {"kind": "utility", "value": "-90"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "the passenger who shouts to break the man's fingers"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "18 other passengers behind the blocked ladder"}]} +{"node": {"kind": "event", "label": "The man loses his grip on the ladder and falls."}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "the passenger who shouts to break the man's fingers"}, {"link": {"kind": "utility", "value": "40"}, "to_node": "18 other passengers behind the blocked ladder"}]} +{"node": {"kind": "event", "label": "The man likely dies from the fall."}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the passenger who shouts to break the man's fingers"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "18 other passengers behind the blocked ladder"}]} +{"node": {"kind": "event", "label": "The ladder is no longer blocked."}, "links": [{"link": {"kind": "utility", "value": "30"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "the passenger who shouts to break the man's fingers"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "18 other passengers behind the blocked ladder"}]} +{"node": {"kind": "event", "label": "The 19 passengers below can continue climbing toward the deck."}, "links": [{"link": {"kind": "utility", "value": "55"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the passenger who shouts to break the man's fingers"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "18 other passengers behind the blocked ladder"}]} +{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} diff --git a/annotated_outputs/cheung_variants/ropeladder_1_choice_2.html b/annotated_outputs/cheung_variants/ropeladder_1_choice_2.html index 8165a56a..a7112127 100644 --- a/annotated_outputs/cheung_variants/ropeladder_1_choice_2.html +++ b/annotated_outputs/cheung_variants/ropeladder_1_choice_2.html @@ -3,8 +3,8 @@ @@ -61,50 +61,38 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "the immobile man on the\n ladder", color: {background: '#279aba'}}, - {id: 3, label: "19 other passengers behind him\n on the ladder", color: {background: '#279aba'}}, - {id: 4, label: "1 passenger in the crowd\n who shouts", color: {background: '#279aba'}}, - {id: 5, label: "stand there and do nothing", color: {background: '#ba2769'}}, - {id: 6, label: "value", color: {background: '#8e7db5'}}, - {id: 7, label: "The man continues blocking the\n ladder", color: {background: '#e6c440'}}, - {id: 8, label: "The passengers behind the man\n remain unable to climb past\n him", color: {background: '#e6c440'}}, - {id: 9, label: "Many passengers behind the man\n drown", color: {background: '#e6c440'}}, - {id: 10, label: "I do not injure the\n man's fingers", color: {background: '#e6c440'}}, - {id: 11, label: "The man keeps his fingers\n unbroken", color: {background: '#e6c440'}} + {id: 2, label: "the man blocking the rope\n ladder", color: {background: '#279aba'}}, + {id: 3, label: "19 passengers behind the man\n on the ladder", color: {background: '#279aba'}}, + {id: 4, label: "do nothing", color: {background: '#ba2769'}}, + {id: 5, label: "value", color: {background: '#8e7db5'}}, + {id: 6, label: "The man on the ladder\n continues blocking the way", color: {background: '#e6c440'}}, + {id: 7, label: "The 19 passengers behind the\n man cannot reach the deck", color: {background: '#e6c440'}}, + {id: 8, label: "The man on the ladder\n drowns", color: {background: '#e6c440'}}, + {id: 9, label: "The 19 passengers behind the\n man drown", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 8, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 9, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 6, label: "-15.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 4, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 6, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 8, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 9, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 5, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 6, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 1, label: "-20", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 2, label: "10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 3, label: "-25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "-80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 8, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "-15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "-68", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 4, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "-2", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "-90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 9, to: 3, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 4, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "18", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/ropeladder_1_choice_2.json b/annotated_outputs/cheung_variants/ropeladder_1_choice_2.json index d99bb8bc..0f763998 100644 --- a/annotated_outputs/cheung_variants/ropeladder_1_choice_2.json +++ b/annotated_outputs/cheung_variants/ropeladder_1_choice_2.json @@ -1,12 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "stand there and do nothing"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "The man continues blocking the ladder"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "The passengers behind the man remain unable to climb past him"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "Many passengers behind the man drown"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I do not injure the man's fingers"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "The man keeps his fingers unbroken"}]} -{"node": {"kind": "being", "label": "the immobile man on the ladder"}, "links": []} -{"node": {"kind": "being", "label": "19 other passengers behind him on the ladder"}, "links": []} -{"node": {"kind": "being", "label": "1 passenger in the crowd who shouts"}, "links": []} -{"node": {"kind": "action_choice", "label": "stand there and do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-15.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man continues blocking the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The passengers behind the man remain unable to climb past him"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Many passengers behind the man drown"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not injure the man's fingers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man keeps his fingers unbroken"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man on the ladder continues blocking the way"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The 19 passengers behind the man cannot reach the deck"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man on the ladder drowns"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The 19 passengers behind the man drown"}]} +{"node": {"kind": "being", "label": "the man blocking the rope ladder"}, "links": []} +{"node": {"kind": "being", "label": "19 passengers behind the man on the ladder"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man on the ladder continues blocking the way"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 19 passengers behind the man cannot reach the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man on the ladder drowns"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 19 passengers behind the man drown"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The man continues blocking the ladder"}, "links": [{"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the immobile man on the ladder"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "19 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "1 passenger in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "The passengers behind the man remain unable to climb past him"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "the immobile man on the ladder"}, {"link": {"kind": "utility", "value": "-68"}, "to_node": "19 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "1 passenger in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "Many passengers behind the man drown"}, "links": [{"link": {"kind": "utility", "value": "-2"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the immobile man on the ladder"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "19 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 passenger in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "I do not injure the man's fingers"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "the immobile man on the ladder"}, {"link": {"kind": "utility", "value": "18"}, "to_node": "19 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "1 passenger in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "The man keeps his fingers unbroken"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the immobile man on the ladder"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "19 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "1 passenger in the crowd who shouts"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The man on the ladder continues blocking the way"}, "links": [{"link": {"kind": "utility", "value": "-20"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "the man blocking the rope ladder"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "19 passengers behind the man on the ladder"}]} +{"node": {"kind": "event", "label": "The 19 passengers behind the man cannot reach the deck"}, "links": [{"link": {"kind": "utility", "value": "-80"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "the man blocking the rope ladder"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "19 passengers behind the man on the ladder"}]} +{"node": {"kind": "event", "label": "The man on the ladder drowns"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "the man blocking the rope ladder"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "19 passengers behind the man on the ladder"}]} +{"node": {"kind": "event", "label": "The 19 passengers behind the man drown"}, "links": [{"link": {"kind": "utility", "value": "-90"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "the man blocking the rope ladder"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "19 passengers behind the man on the ladder"}]} +{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} diff --git a/annotated_outputs/cheung_variants/ropeladder_2_choice_1.json b/annotated_outputs/cheung_variants/ropeladder_2_choice_1.json index db8ddf68..c943637d 100644 --- a/annotated_outputs/cheung_variants/ropeladder_2_choice_1.json +++ b/annotated_outputs/cheung_variants/ropeladder_2_choice_1.json @@ -1,14 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "stab the man"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I stab the man on the ladder"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man falls off the ladder"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "The man dies"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The ladder becomes unblocked"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The 19 passengers behind the man can continue climbing toward the deck"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Those 19 passengers have an increased chance of surviving"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "I experience having killed the man"}]} -{"node": {"kind": "being", "label": "the man blocking the ladder"}, "links": []} -{"node": {"kind": "being", "label": "19 other passengers behind him on the ladder"}, "links": []} -{"node": {"kind": "being", "label": "the passenger who shouts from the crowd"}, "links": []} -{"node": {"kind": "action_choice", "label": "stab the man"}, "links": [{"link": {"kind": "v-link", "value": "-43.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I stab the man on the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man falls off the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man dies"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The ladder becomes unblocked"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 19 passengers behind the man can continue climbing toward the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Those 19 passengers have an increased chance of surviving"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I experience having killed the man"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "push the man off the ladder"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man falls from the ladder"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man dies"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The ladder is no longer blocked"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The 19 passengers behind the man can climb toward the deck"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The 19 passengers behind the man avoid being trapped below the blockage"}]} +{"node": {"kind": "being", "label": "19 passengers behind the blocked man on the ladder"}, "links": []} +{"node": {"kind": "action_choice", "label": "push the man off the ladder"}, "links": [{"link": {"kind": "v-link", "value": "-88.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man falls from the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man dies"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The ladder is no longer blocked"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 19 passengers behind the man can climb toward the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 19 passengers behind the man avoid being trapped below the blockage"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I stab the man on the ladder"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "19 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "the passenger who shouts from the crowd"}]} -{"node": {"kind": "event", "label": "The man falls off the ladder"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "19 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "the passenger who shouts from the crowd"}]} -{"node": {"kind": "event", "label": "The man dies"}, "links": [{"link": {"kind": "utility", "value": "-95"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-88"}, "to_node": "19 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the passenger who shouts from the crowd"}]} -{"node": {"kind": "event", "label": "The ladder becomes unblocked"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "19 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "the passenger who shouts from the crowd"}]} -{"node": {"kind": "event", "label": "The 19 passengers behind the man can continue climbing toward the deck"}, "links": [{"link": {"kind": "utility", "value": "5"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "19 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "the passenger who shouts from the crowd"}]} -{"node": {"kind": "event", "label": "Those 19 passengers have an increased chance of surviving"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "19 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "the passenger who shouts from the crowd"}]} -{"node": {"kind": "event", "label": "I experience having killed the man"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "19 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the passenger who shouts from the crowd"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The man falls from the ladder"}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "19 passengers behind the blocked man on the ladder"}]} +{"node": {"kind": "event", "label": "The man dies"}, "links": [{"link": {"kind": "utility", "value": "-100"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "19 passengers behind the blocked man on the ladder"}]} +{"node": {"kind": "event", "label": "The ladder is no longer blocked"}, "links": [{"link": {"kind": "utility", "value": "10"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "19 passengers behind the blocked man on the ladder"}]} +{"node": {"kind": "event", "label": "The 19 passengers behind the man can climb toward the deck"}, "links": [{"link": {"kind": "utility", "value": "75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "19 passengers behind the blocked man on the ladder"}]} +{"node": {"kind": "event", "label": "The 19 passengers behind the man avoid being trapped below the blockage"}, "links": [{"link": {"kind": "utility", "value": "70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "19 passengers behind the blocked man on the ladder"}]} +{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} diff --git a/annotated_outputs/cheung_variants/ropeladder_2_choice_2.html b/annotated_outputs/cheung_variants/ropeladder_2_choice_2.html index 49141420..8e2f7619 100644 --- a/annotated_outputs/cheung_variants/ropeladder_2_choice_2.html +++ b/annotated_outputs/cheung_variants/ropeladder_2_choice_2.html @@ -3,8 +3,8 @@ @@ -61,43 +61,38 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "the immobile man blocking the\n ladder", color: {background: '#279aba'}}, - {id: 3, label: "19 other passengers behind him\n on the ladder", color: {background: '#279aba'}}, - {id: 4, label: "1 passenger who shouts from\n the crowd", color: {background: '#279aba'}}, - {id: 5, label: "stand there and do nothing", color: {background: '#ba2769'}}, - {id: 6, label: "value", color: {background: '#8e7db5'}}, - {id: 7, label: "The man remains blocking the\n ladder", color: {background: '#e6c440'}}, - {id: 8, label: "The passengers behind the man\n remain unable to climb past\n him", color: {background: '#e6c440'}}, - {id: 9, label: "Many passengers behind the man\n drown", color: {background: '#e6c440'}}, - {id: 10, label: "I do not stab the\n man", color: {background: '#e6c440'}} + {id: 2, label: "the man blocking the ladder", color: {background: '#279aba'}}, + {id: 3, label: "the 19 other passengers behind\n him on the ladder", color: {background: '#279aba'}}, + {id: 4, label: "do nothing", color: {background: '#ba2769'}}, + {id: 5, label: "value", color: {background: '#8e7db5'}}, + {id: 6, label: "The man remains frozen on\n the ladder and continues blocking\n it", color: {background: '#e6c440'}}, + {id: 7, label: "The 19 passengers behind the\n man cannot reach the deck", color: {background: '#e6c440'}}, + {id: 8, label: "The man on the ladder\n drowns", color: {background: '#e6c440'}}, + {id: 9, label: "The 19 passengers behind the\n man drown", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 6, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 8, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 9, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 6, label: "-15.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 4, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 4, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 5, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 6, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 1, label: "-40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 2, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 3, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "-80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 9, to: 1, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "-80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 9, to: 3, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 4, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/ropeladder_2_choice_2.json b/annotated_outputs/cheung_variants/ropeladder_2_choice_2.json index 291af0c4..d3c3ead4 100644 --- a/annotated_outputs/cheung_variants/ropeladder_2_choice_2.json +++ b/annotated_outputs/cheung_variants/ropeladder_2_choice_2.json @@ -1,11 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "stand there and do nothing"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "The man remains blocking the ladder"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "The passengers behind the man remain unable to climb past him"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "Many passengers behind the man drown"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not stab the man"}]} -{"node": {"kind": "being", "label": "the immobile man blocking the ladder"}, "links": []} -{"node": {"kind": "being", "label": "19 other passengers behind him on the ladder"}, "links": []} -{"node": {"kind": "being", "label": "1 passenger who shouts from the crowd"}, "links": []} -{"node": {"kind": "action_choice", "label": "stand there and do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-15.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man remains blocking the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The passengers behind the man remain unable to climb past him"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Many passengers behind the man drown"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not stab the man"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man remains frozen on the ladder and continues blocking it"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The 19 passengers behind the man cannot reach the deck"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "The man on the ladder drowns"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The 19 passengers behind the man drown"}]} +{"node": {"kind": "being", "label": "the man blocking the ladder"}, "links": []} +{"node": {"kind": "being", "label": "the 19 other passengers behind him on the ladder"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man remains frozen on the ladder and continues blocking it"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 19 passengers behind the man cannot reach the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man on the ladder drowns"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 19 passengers behind the man drown"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The man remains blocking the ladder"}, "links": [{"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "the immobile man blocking the ladder"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "19 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "1 passenger who shouts from the crowd"}]} -{"node": {"kind": "event", "label": "The passengers behind the man remain unable to climb past him"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "the immobile man blocking the ladder"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "19 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "1 passenger who shouts from the crowd"}]} -{"node": {"kind": "event", "label": "Many passengers behind the man drown"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "the immobile man blocking the ladder"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "19 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "1 passenger who shouts from the crowd"}]} -{"node": {"kind": "event", "label": "I do not stab the man"}, "links": [{"link": {"kind": "utility", "value": "65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the immobile man blocking the ladder"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "19 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "1 passenger who shouts from the crowd"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The man remains frozen on the ladder and continues blocking it"}, "links": [{"link": {"kind": "utility", "value": "-40"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the 19 other passengers behind him on the ladder"}]} +{"node": {"kind": "event", "label": "The 19 passengers behind the man cannot reach the deck"}, "links": [{"link": {"kind": "utility", "value": "-80"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the 19 other passengers behind him on the ladder"}]} +{"node": {"kind": "event", "label": "The man on the ladder drowns"}, "links": [{"link": {"kind": "utility", "value": "-100"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "the 19 other passengers behind him on the ladder"}]} +{"node": {"kind": "event", "label": "The 19 passengers behind the man drown"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "the 19 other passengers behind him on the ladder"}]} +{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} diff --git a/annotated_outputs/cheung_variants/ropeladder_3_choice_1.json b/annotated_outputs/cheung_variants/ropeladder_3_choice_1.json index 531052d9..936b2802 100644 --- a/annotated_outputs/cheung_variants/ropeladder_3_choice_1.json +++ b/annotated_outputs/cheung_variants/ropeladder_3_choice_1.json @@ -1,12 +1,11 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "push the man"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man falls from the ladder"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man dies from the fall"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The ladder is no longer blocked"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The 19 passengers behind the man can continue climbing"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "The 19 passengers reach the deck"}, {"link": {"kind": "b_link", "value": "C-I+K+"}, "to_node": "I remain on the deck"}]} -{"node": {"kind": "being", "label": "the man blocking the ladder"}, "links": []} -{"node": {"kind": "being", "label": "19 other passengers behind him on the ladder"}, "links": []} -{"node": {"kind": "action_choice", "label": "push the man"}, "links": [{"link": {"kind": "v-link", "value": "-30.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man falls from the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man dies from the fall"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The ladder is no longer blocked"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 19 passengers behind the man can continue climbing"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 19 passengers reach the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I remain on the deck"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "let the man slip off the ladder"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man below me dies or is fatally injured."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The ladder is no longer blocked."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The 19 passengers behind the man can continue climbing toward the deck."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The 19 passengers behind the man avoid being trapped behind him on the sinking ferry."}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "I experience immediate emotional distress from the man's fall."}]} +{"node": {"kind": "being", "label": "the 1 man frozen midway up the ladder"}, "links": []} +{"node": {"kind": "being", "label": "the 19 other passengers behind him on the ladder"}, "links": []} +{"node": {"kind": "action_choice", "label": "let the man slip off the ladder"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man below me dies or is fatally injured."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The ladder is no longer blocked."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 19 passengers behind the man can continue climbing toward the deck."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The 19 passengers behind the man avoid being trapped behind him on the sinking ferry."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I experience immediate emotional distress from the man's fall."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The man falls from the ladder"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "19 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "The man dies from the fall"}, "links": [{"link": {"kind": "utility", "value": "-95"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "19 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "The ladder is no longer blocked"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "19 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "The 19 passengers behind the man can continue climbing"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "19 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "The 19 passengers reach the deck"}, "links": [{"link": {"kind": "utility", "value": "5"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "19 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "I remain on the deck"}, "links": [{"link": {"kind": "utility", "value": "8"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "19 other passengers behind him on the ladder"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The man below me dies or is fatally injured."}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "the 1 man frozen midway up the ladder"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "the 19 other passengers behind him on the ladder"}]} +{"node": {"kind": "event", "label": "The ladder is no longer blocked."}, "links": [{"link": {"kind": "utility", "value": "25"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "the 1 man frozen midway up the ladder"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "the 19 other passengers behind him on the ladder"}]} +{"node": {"kind": "event", "label": "The 19 passengers behind the man can continue climbing toward the deck."}, "links": [{"link": {"kind": "utility", "value": "80"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "the 1 man frozen midway up the ladder"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "the 19 other passengers behind him on the ladder"}]} +{"node": {"kind": "event", "label": "The 19 passengers behind the man avoid being trapped behind him on the sinking ferry."}, "links": [{"link": {"kind": "utility", "value": "90"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "20"}, "to_node": "the 1 man frozen midway up the ladder"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "the 19 other passengers behind him on the ladder"}]} +{"node": {"kind": "event", "label": "I experience immediate emotional distress from the man's fall."}, "links": [{"link": {"kind": "utility", "value": "-30"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the 1 man frozen midway up the ladder"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the 19 other passengers behind him on the ladder"}]} +{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} diff --git a/annotated_outputs/cheung_variants/ropeladder_3_choice_2.html b/annotated_outputs/cheung_variants/ropeladder_3_choice_2.html index 5e2ee161..acdb39d0 100644 --- a/annotated_outputs/cheung_variants/ropeladder_3_choice_2.html +++ b/annotated_outputs/cheung_variants/ropeladder_3_choice_2.html @@ -3,8 +3,8 @@ @@ -61,44 +61,38 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "the man blocking the ladder", color: {background: '#279aba'}}, - {id: 3, label: "the 19 other passengers behind\n him on the ladder", color: {background: '#279aba'}}, - {id: 4, label: "stand there and do nothing", color: {background: '#ba2769'}}, + {id: 2, label: "the frozen man on the\n ladder", color: {background: '#279aba'}}, + {id: 3, label: "19 other passengers behind him\n on the ladder", color: {background: '#279aba'}}, + {id: 4, label: "do nothing", color: {background: '#ba2769'}}, {id: 5, label: "value", color: {background: '#8e7db5'}}, - {id: 6, label: "The man remains blocking the\n ladder", color: {background: '#e6c440'}}, - {id: 7, label: "The passengers behind the man\n remain unable to climb past\n him", color: {background: '#e6c440'}}, - {id: 8, label: "Many passengers behind the man\n drown", color: {background: '#e6c440'}}, - {id: 9, label: "I do not push the\n man off the ladder", color: {background: '#e6c440'}}, - {id: 10, label: "The man is not killed\n by being pushed from the\n ladder", color: {background: '#e6c440'}} + {id: 6, label: "The man remains frozen on\n the ladder", color: {background: '#e6c440'}}, + {id: 7, label: "The ladder remains blocked", color: {background: '#e6c440'}}, + {id: 8, label: "The passengers behind the man\n cannot reach the deck", color: {background: '#e6c440'}}, + {id: 9, label: "Nineteen passengers drown", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 6, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 8, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 9, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 5, label: "-15.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 6, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 5, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 6, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 1, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 2, label: "-10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 3, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "-2", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 1, label: "-15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 2, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 3, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "-25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/ropeladder_3_choice_2.json b/annotated_outputs/cheung_variants/ropeladder_3_choice_2.json index c7484d18..a0739488 100644 --- a/annotated_outputs/cheung_variants/ropeladder_3_choice_2.json +++ b/annotated_outputs/cheung_variants/ropeladder_3_choice_2.json @@ -1,11 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "stand there and do nothing"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "The man remains blocking the ladder"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "The passengers behind the man remain unable to climb past him"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "Many passengers behind the man drown"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not push the man off the ladder"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man is not killed by being pushed from the ladder"}]} -{"node": {"kind": "being", "label": "the man blocking the ladder"}, "links": []} -{"node": {"kind": "being", "label": "the 19 other passengers behind him on the ladder"}, "links": []} -{"node": {"kind": "action_choice", "label": "stand there and do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-15.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man remains blocking the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The passengers behind the man remain unable to climb past him"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Many passengers behind the man drown"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not push the man off the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man is not killed by being pushed from the ladder"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man remains frozen on the ladder"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The ladder remains blocked"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The passengers behind the man cannot reach the deck"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Nineteen passengers drown"}]} +{"node": {"kind": "being", "label": "the frozen man on the ladder"}, "links": []} +{"node": {"kind": "being", "label": "19 other passengers behind him on the ladder"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man remains frozen on the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The ladder remains blocked"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The passengers behind the man cannot reach the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Nineteen passengers drown"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The man remains blocking the ladder"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "the 19 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "The passengers behind the man remain unable to climb past him"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "the 19 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "Many passengers behind the man drown"}, "links": [{"link": {"kind": "utility", "value": "-2"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "the 19 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "I do not push the man off the ladder"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the 19 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "The man is not killed by being pushed from the ladder"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "the 19 other passengers behind him on the ladder"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The man remains frozen on the ladder"}, "links": [{"link": {"kind": "utility", "value": "-15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "the frozen man on the ladder"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "19 other passengers behind him on the ladder"}]} +{"node": {"kind": "event", "label": "The ladder remains blocked"}, "links": [{"link": {"kind": "utility", "value": "-25"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the frozen man on the ladder"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "19 other passengers behind him on the ladder"}]} +{"node": {"kind": "event", "label": "The passengers behind the man cannot reach the deck"}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the frozen man on the ladder"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "19 other passengers behind him on the ladder"}]} +{"node": {"kind": "event", "label": "Nineteen passengers drown"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "the frozen man on the ladder"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "19 other passengers behind him on the ladder"}]} +{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} diff --git a/annotated_outputs/cheung_variants/ropeladder_4_choice_1.json b/annotated_outputs/cheung_variants/ropeladder_4_choice_1.json index 9ea1f546..af59f908 100644 --- a/annotated_outputs/cheung_variants/ropeladder_4_choice_1.json +++ b/annotated_outputs/cheung_variants/ropeladder_4_choice_1.json @@ -1,14 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "break the man's fingers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man on the ladder experiences severe pain"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man on the ladder loses grip on the ladder"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The ladder becomes unblocked"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The five passengers behind the man can continue climbing"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "The five passengers behind the man reach the deck"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I physically injure the man on the ladder"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "I remain on the deck with access to escape"}]} -{"node": {"kind": "being", "label": "the man blocking the ladder"}, "links": []} -{"node": {"kind": "being", "label": "the 5 other passengers who would be able to climb on deck if the man's fingers are broken"}, "links": []} -{"node": {"kind": "being", "label": "the 1 remaining passenger behind the blocked man whose outcome may differ"}, "links": []} -{"node": {"kind": "action_choice", "label": "break the man's fingers"}, "links": [{"link": {"kind": "v-link", "value": "-75.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man on the ladder experiences severe pain"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man on the ladder loses grip on the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The ladder becomes unblocked"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The five passengers behind the man can continue climbing"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The five passengers behind the man reach the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I physically injure the man on the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I remain on the deck with access to escape"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "break the man's fingers"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The man feels intense pain."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man falls from the ladder."}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man dies."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The nine passengers behind the man reach the deck."}]} +{"node": {"kind": "being", "label": "the 1 man blocking the ladder"}, "links": []} +{"node": {"kind": "being", "label": "the 9 other passengers behind him trying to climb to the deck"}, "links": []} +{"node": {"kind": "action_choice", "label": "break the man's fingers"}, "links": [{"link": {"kind": "v-link", "value": "-108.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man feels intense pain."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man falls from the ladder."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man dies."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The nine passengers behind the man reach the deck."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The man on the ladder experiences severe pain"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "the 5 other passengers who would be able to climb on deck if the man's fingers are broken"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the 1 remaining passenger behind the blocked man whose outcome may differ"}]} -{"node": {"kind": "event", "label": "The man on the ladder loses grip on the ladder"}, "links": [{"link": {"kind": "utility", "value": "-72"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "the 5 other passengers who would be able to climb on deck if the man's fingers are broken"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the 1 remaining passenger behind the blocked man whose outcome may differ"}]} -{"node": {"kind": "event", "label": "The ladder becomes unblocked"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "the 5 other passengers who would be able to climb on deck if the man's fingers are broken"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "the 1 remaining passenger behind the blocked man whose outcome may differ"}]} -{"node": {"kind": "event", "label": "The five passengers behind the man can continue climbing"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "the 5 other passengers who would be able to climb on deck if the man's fingers are broken"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "the 1 remaining passenger behind the blocked man whose outcome may differ"}]} -{"node": {"kind": "event", "label": "The five passengers behind the man reach the deck"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the 5 other passengers who would be able to climb on deck if the man's fingers are broken"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the 1 remaining passenger behind the blocked man whose outcome may differ"}]} -{"node": {"kind": "event", "label": "I physically injure the man on the ladder"}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "the 5 other passengers who would be able to climb on deck if the man's fingers are broken"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "the 1 remaining passenger behind the blocked man whose outcome may differ"}]} -{"node": {"kind": "event", "label": "I remain on the deck with access to escape"}, "links": [{"link": {"kind": "utility", "value": "65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "the 5 other passengers who would be able to climb on deck if the man's fingers are broken"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the 1 remaining passenger behind the blocked man whose outcome may differ"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The man feels intense pain."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "the 1 man blocking the ladder"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the 1 man blocking the ladder"}]} +{"node": {"kind": "event", "label": "The man falls from the ladder."}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the 1 man blocking the ladder"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the 1 man blocking the ladder"}]} +{"node": {"kind": "event", "label": "The man dies."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "the 1 man blocking the ladder"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "the 1 man blocking the ladder"}]} +{"node": {"kind": "event", "label": "The nine passengers behind the man reach the deck."}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "the 1 man blocking the ladder"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "the 1 man blocking the ladder"}]} +{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} diff --git a/annotated_outputs/cheung_variants/ropeladder_4_choice_2.html b/annotated_outputs/cheung_variants/ropeladder_4_choice_2.html index 004e0719..b2c5779a 100644 --- a/annotated_outputs/cheung_variants/ropeladder_4_choice_2.html +++ b/annotated_outputs/cheung_variants/ropeladder_4_choice_2.html @@ -3,8 +3,8 @@ @@ -61,43 +61,32 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "the immobile man on the\n ladder", color: {background: '#279aba'}}, - {id: 3, label: "5 other passengers behind him\n on the ladder", color: {background: '#279aba'}}, - {id: 4, label: "the person in the crowd\n who shouts", color: {background: '#279aba'}}, - {id: 5, label: "stand there and do nothing", color: {background: '#ba2769'}}, - {id: 6, label: "value", color: {background: '#8e7db5'}}, - {id: 7, label: "The man remains blocking the\n ladder", color: {background: '#e6c440'}}, - {id: 8, label: "The passengers below remain unable\n to climb past the man", color: {background: '#e6c440'}}, - {id: 9, label: "I do not injure the\n man's fingers", color: {background: '#e6c440'}}, - {id: 10, label: "The man stays in immediate\n danger on the sinking ferry", color: {background: '#e6c440'}} + {id: 2, label: "the man frozen on the\n ladder and blocking the way", color: {background: '#279aba'}}, + {id: 3, label: "9 passengers behind the blocked\n man on the ladder", color: {background: '#279aba'}}, + {id: 4, label: "do nothing", color: {background: '#ba2769'}}, + {id: 5, label: "value", color: {background: '#8e7db5'}}, + {id: 6, label: "The man on the ladder\n remains frozen and continues blocking\n the ladder.", color: {background: '#e6c440'}}, + {id: 7, label: "Nine passengers behind the man\n are unable to climb onto\n the deck.", color: {background: '#e6c440'}}, + {id: 8, label: "Those nine passengers remain trapped\n inside the sinking ferry.", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 8, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 9, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 6, label: "-15.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 4, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "-68", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 4, label: "-58", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 4, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 6, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 8, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 5, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 6, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 1, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 2, label: "-40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "-10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/ropeladder_4_choice_2.json b/annotated_outputs/cheung_variants/ropeladder_4_choice_2.json index 95231e23..03f285ae 100644 --- a/annotated_outputs/cheung_variants/ropeladder_4_choice_2.json +++ b/annotated_outputs/cheung_variants/ropeladder_4_choice_2.json @@ -1,11 +1,9 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "stand there and do nothing"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "The man remains blocking the ladder"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "The passengers below remain unable to climb past the man"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not injure the man's fingers"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "The man stays in immediate danger on the sinking ferry"}]} -{"node": {"kind": "being", "label": "the immobile man on the ladder"}, "links": []} -{"node": {"kind": "being", "label": "5 other passengers behind him on the ladder"}, "links": []} -{"node": {"kind": "being", "label": "the person in the crowd who shouts"}, "links": []} -{"node": {"kind": "action_choice", "label": "stand there and do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-15.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man remains blocking the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The passengers below remain unable to climb past the man"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not injure the man's fingers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man stays in immediate danger on the sinking ferry"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man on the ladder remains frozen and continues blocking the ladder."}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "Nine passengers behind the man are unable to climb onto the deck."}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "Those nine passengers remain trapped inside the sinking ferry."}]} +{"node": {"kind": "being", "label": "the man frozen on the ladder and blocking the way"}, "links": []} +{"node": {"kind": "being", "label": "9 passengers behind the blocked man on the ladder"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man on the ladder remains frozen and continues blocking the ladder."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Nine passengers behind the man are unable to climb onto the deck."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Those nine passengers remain trapped inside the sinking ferry."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The man remains blocking the ladder"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the immobile man on the ladder"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "5 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "The passengers below remain unable to climb past the man"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "the immobile man on the ladder"}, {"link": {"kind": "utility", "value": "-68"}, "to_node": "5 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "-58"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "I do not injure the man's fingers"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "the immobile man on the ladder"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "5 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "The man stays in immediate danger on the sinking ferry"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the immobile man on the ladder"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "5 other passengers behind him on the ladder"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the person in the crowd who shouts"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The man on the ladder remains frozen and continues blocking the ladder."}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "the man frozen on the ladder and blocking the way"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "9 passengers behind the blocked man on the ladder"}]} +{"node": {"kind": "event", "label": "Nine passengers behind the man are unable to climb onto the deck."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "the man frozen on the ladder and blocking the way"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "9 passengers behind the blocked man on the ladder"}]} +{"node": {"kind": "event", "label": "Those nine passengers remain trapped inside the sinking ferry."}, "links": [{"link": {"kind": "utility", "value": "-95"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "the man frozen on the ladder and blocking the way"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "9 passengers behind the blocked man on the ladder"}]} +{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} diff --git a/annotated_outputs/cheung_variants/ropeladder_5_choice_1.json b/annotated_outputs/cheung_variants/ropeladder_5_choice_1.json index 4cbafca6..5d8a225c 100644 --- a/annotated_outputs/cheung_variants/ropeladder_5_choice_1.json +++ b/annotated_outputs/cheung_variants/ropeladder_5_choice_1.json @@ -1,13 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "stab the man"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I stab the man on the ladder"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "The man falls off the ladder"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "The man dies"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The ladder is no longer blocked"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "Five other passengers climb onto the deck"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "Five other passengers avoid drowning"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "I experience having killed the man"}]} -{"node": {"kind": "being", "label": "the man blocking the ladder"}, "links": []} -{"node": {"kind": "being", "label": "5 other passengers behind him on the ladder"}, "links": []} -{"node": {"kind": "action_choice", "label": "stab the man"}, "links": [{"link": {"kind": "v-link", "value": "-43.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I stab the man on the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man falls off the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man dies"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The ladder is no longer blocked"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Five other passengers climb onto the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Five other passengers avoid drowning"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I experience having killed the man"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "push the man off the ladder"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man falls off the ladder."}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man dies."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The ladder is no longer blocked."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The nine passengers behind the man can climb onto the deck."}]} +{"node": {"kind": "being", "label": "the man blocking the rope ladder"}, "links": []} +{"node": {"kind": "being", "label": "9 passengers behind the blocked man on the rope ladder"}, "links": []} +{"node": {"kind": "action_choice", "label": "push the man off the ladder"}, "links": [{"link": {"kind": "v-link", "value": "-88.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man falls off the ladder."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man dies."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The ladder is no longer blocked."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The nine passengers behind the man can climb onto the deck."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I stab the man on the ladder"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "5 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "The man falls off the ladder"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "5 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "The man dies"}, "links": [{"link": {"kind": "utility", "value": "-95"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "5 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "The ladder is no longer blocked"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "5 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "Five other passengers climb onto the deck"}, "links": [{"link": {"kind": "utility", "value": "5"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "5 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "Five other passengers avoid drowning"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "100"}, "to_node": "5 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "I experience having killed the man"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "5 other passengers behind him on the ladder"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The man falls off the ladder."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man blocking the rope ladder"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "9 passengers behind the blocked man on the rope ladder"}]} +{"node": {"kind": "event", "label": "The man dies."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "the man blocking the rope ladder"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "9 passengers behind the blocked man on the rope ladder"}]} +{"node": {"kind": "event", "label": "The ladder is no longer blocked."}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "the man blocking the rope ladder"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "9 passengers behind the blocked man on the rope ladder"}]} +{"node": {"kind": "event", "label": "The nine passengers behind the man can climb onto the deck."}, "links": [{"link": {"kind": "utility", "value": "25"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "the man blocking the rope ladder"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "9 passengers behind the blocked man on the rope ladder"}]} +{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} diff --git a/annotated_outputs/cheung_variants/ropeladder_6_choice_1.json b/annotated_outputs/cheung_variants/ropeladder_6_choice_1.json index 0318ba32..55358f1e 100644 --- a/annotated_outputs/cheung_variants/ropeladder_6_choice_1.json +++ b/annotated_outputs/cheung_variants/ropeladder_6_choice_1.json @@ -1,13 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "push the man"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man is pushed off the ladder by me"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man falls from the ladder"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man dies from the fall"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The ladder is no longer blocked"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "Five other passengers reach the deck"}, {"link": {"kind": "b_link", "value": "C-I+K+"}, "to_node": "I remain on the deck"}]} -{"node": {"kind": "being", "label": "the man blocking the ladder"}, "links": []} -{"node": {"kind": "being", "label": "the 5 other passengers who would be able to climb on deck if the man is pushed"}, "links": []} -{"node": {"kind": "being", "label": "the remaining passengers behind the blocked ladder who would likely be unable to get on deck if the man is not pushed"}, "links": []} -{"node": {"kind": "action_choice", "label": "push the man"}, "links": [{"link": {"kind": "v-link", "value": "-30.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man is pushed off the ladder by me"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man falls from the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man dies from the fall"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The ladder is no longer blocked"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Five other passengers reach the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I remain on the deck"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "let the man slip off the ladder"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "The man falls from the ladder into the water."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The ladder is no longer blocked."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The nine passengers behind the man can continue climbing up the ladder."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The nine passengers gain access to the deck."}]} +{"node": {"kind": "being", "label": "the man frozen midway up the ladder"}, "links": []} +{"node": {"kind": "being", "label": "9 other passengers behind him on the ladder"}, "links": []} +{"node": {"kind": "action_choice", "label": "let the man slip off the ladder"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man falls from the ladder into the water."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The ladder is no longer blocked."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The nine passengers behind the man can continue climbing up the ladder."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The nine passengers gain access to the deck."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The man is pushed off the ladder by me"}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "the 5 other passengers who would be able to climb on deck if the man is pushed"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the remaining passengers behind the blocked ladder who would likely be unable to get on deck if the man is not pushed"}]} -{"node": {"kind": "event", "label": "The man falls from the ladder"}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "the 5 other passengers who would be able to climb on deck if the man is pushed"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the remaining passengers behind the blocked ladder who would likely be unable to get on deck if the man is not pushed"}]} -{"node": {"kind": "event", "label": "The man dies from the fall"}, "links": [{"link": {"kind": "utility", "value": "-95"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the 5 other passengers who would be able to climb on deck if the man is pushed"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the remaining passengers behind the blocked ladder who would likely be unable to get on deck if the man is not pushed"}]} -{"node": {"kind": "event", "label": "The ladder is no longer blocked"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "the 5 other passengers who would be able to climb on deck if the man is pushed"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the remaining passengers behind the blocked ladder who would likely be unable to get on deck if the man is not pushed"}]} -{"node": {"kind": "event", "label": "Five other passengers reach the deck"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the 5 other passengers who would be able to climb on deck if the man is pushed"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the remaining passengers behind the blocked ladder who would likely be unable to get on deck if the man is not pushed"}]} -{"node": {"kind": "event", "label": "I remain on the deck"}, "links": [{"link": {"kind": "utility", "value": "8"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the 5 other passengers who would be able to climb on deck if the man is pushed"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the remaining passengers behind the blocked ladder who would likely be unable to get on deck if the man is not pushed"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The man falls from the ladder into the water."}, "links": [{"link": {"kind": "utility", "value": "-50"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-50"}, "to_node": "the man frozen midway up the ladder"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "9 other passengers behind him on the ladder"}]} +{"node": {"kind": "event", "label": "The ladder is no longer blocked."}, "links": [{"link": {"kind": "utility", "value": "20"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "the man frozen midway up the ladder"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "9 other passengers behind him on the ladder"}]} +{"node": {"kind": "event", "label": "The nine passengers behind the man can continue climbing up the ladder."}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "the man frozen midway up the ladder"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "9 other passengers behind him on the ladder"}]} +{"node": {"kind": "event", "label": "The nine passengers gain access to the deck."}, "links": [{"link": {"kind": "utility", "value": "25"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "the man frozen midway up the ladder"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "9 other passengers behind him on the ladder"}]} +{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} diff --git a/annotated_outputs/cheung_variants/ropeladder_6_choice_2.html b/annotated_outputs/cheung_variants/ropeladder_6_choice_2.html index fc3f8a26..81bd5a92 100644 --- a/annotated_outputs/cheung_variants/ropeladder_6_choice_2.html +++ b/annotated_outputs/cheung_variants/ropeladder_6_choice_2.html @@ -3,8 +3,8 @@ @@ -61,50 +61,38 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "the man frozen midway up\n the ladder", color: {background: '#279aba'}}, - {id: 3, label: "the 5 other passengers behind\n him on the ladder", color: {background: '#279aba'}}, - {id: 4, label: "stand there and do nothing", color: {background: '#ba2769'}}, + {id: 2, label: "the man frozen midway up\n the rope ladder", color: {background: '#279aba'}}, + {id: 3, label: "9 passengers behind him on\n the rope ladder", color: {background: '#279aba'}}, + {id: 4, label: "do nothing", color: {background: '#ba2769'}}, {id: 5, label: "value", color: {background: '#8e7db5'}}, - {id: 6, label: "The man remains blocking the\n ladder", color: {background: '#e6c440'}}, - {id: 7, label: "The five other passengers behind\n the man remain unable to\n climb onto the deck", color: {background: '#e6c440'}}, - {id: 8, label: "I do not push the\n man off the ladder", color: {background: '#e6c440'}}, - {id: 9, label: "The man stays on the\n ladder", color: {background: '#e6c440'}}, - {id: 10, label: "Passengers behind the man drown", color: {background: '#e6c440'}}, - {id: 11, label: "The man drowns", color: {background: '#e6c440'}} + {id: 6, label: "The immobilized man continues blocking\n the ladder", color: {background: '#e6c440'}}, + {id: 7, label: "The nine passengers below the\n man cannot reach the deck", color: {background: '#e6c440'}}, + {id: 8, label: "The nine passengers below the\n man drown", color: {background: '#e6c440'}}, + {id: 9, label: "The immobilized man drowns", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 6, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 8, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 9, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 5, label: "-15.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 6, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 9, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 5, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 6, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 1, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 2, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 3, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 1, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 2, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "-90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "-30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/ropeladder_6_choice_2.json b/annotated_outputs/cheung_variants/ropeladder_6_choice_2.json index fd94c10a..a72cbe37 100644 --- a/annotated_outputs/cheung_variants/ropeladder_6_choice_2.json +++ b/annotated_outputs/cheung_variants/ropeladder_6_choice_2.json @@ -1,12 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "stand there and do nothing"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "The man remains blocking the ladder"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The five other passengers behind the man remain unable to climb onto the deck"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not push the man off the ladder"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man stays on the ladder"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "Passengers behind the man drown"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "The man drowns"}]} -{"node": {"kind": "being", "label": "the man frozen midway up the ladder"}, "links": []} -{"node": {"kind": "being", "label": "the 5 other passengers behind him on the ladder"}, "links": []} -{"node": {"kind": "action_choice", "label": "stand there and do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-15.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man remains blocking the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The five other passengers behind the man remain unable to climb onto the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not push the man off the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man stays on the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Passengers behind the man drown"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man drowns"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The immobilized man continues blocking the ladder"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The nine passengers below the man cannot reach the deck"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The nine passengers below the man drown"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The immobilized man drowns"}]} +{"node": {"kind": "being", "label": "the man frozen midway up the rope ladder"}, "links": []} +{"node": {"kind": "being", "label": "9 passengers behind him on the rope ladder"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The immobilized man continues blocking the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The nine passengers below the man cannot reach the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The nine passengers below the man drown"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The immobilized man drowns"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The man remains blocking the ladder"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "the man frozen midway up the ladder"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "the 5 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "The five other passengers behind the man remain unable to climb onto the deck"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "the man frozen midway up the ladder"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the 5 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "I do not push the man off the ladder"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the man frozen midway up the ladder"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the 5 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "The man stays on the ladder"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the man frozen midway up the ladder"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the 5 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "Passengers behind the man drown"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man frozen midway up the ladder"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "the 5 other passengers behind him on the ladder"}]} -{"node": {"kind": "event", "label": "The man drowns"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man frozen midway up the ladder"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the 5 other passengers behind him on the ladder"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The immobilized man continues blocking the ladder"}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the man frozen midway up the rope ladder"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "9 passengers behind him on the rope ladder"}]} +{"node": {"kind": "event", "label": "The nine passengers below the man cannot reach the deck"}, "links": [{"link": {"kind": "utility", "value": "-90"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "the man frozen midway up the rope ladder"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "9 passengers behind him on the rope ladder"}]} +{"node": {"kind": "event", "label": "The nine passengers below the man drown"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "the man frozen midway up the rope ladder"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "9 passengers behind him on the rope ladder"}]} +{"node": {"kind": "event", "label": "The immobilized man drowns"}, "links": [{"link": {"kind": "utility", "value": "-100"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "the man frozen midway up the rope ladder"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "9 passengers behind him on the rope ladder"}]} +{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} diff --git a/annotated_outputs/cheung_variants/ropeladder_7_choice_1.json b/annotated_outputs/cheung_variants/ropeladder_7_choice_1.json index 40fedabe..99117ec5 100644 --- a/annotated_outputs/cheung_variants/ropeladder_7_choice_1.json +++ b/annotated_outputs/cheung_variants/ropeladder_7_choice_1.json @@ -1,13 +1,12 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "break the man's fingers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man on the ladder feels severe pain in his fingers"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man on the ladder falls from the ladder"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The passenger behind the man gains access up the ladder"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "The passenger behind the man reaches the deck"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "The passenger behind the man avoids drowning"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "I cause the man on the ladder to fall to his death"}]} -{"node": {"kind": "being", "label": "the man stuck midway up the ladder"}, "links": []} -{"node": {"kind": "being", "label": "the passenger directly behind the stuck man"}, "links": []} -{"node": {"kind": "being", "label": "the person in the crowd on deck who shouts"}, "links": []} -{"node": {"kind": "action_choice", "label": "break the man's fingers"}, "links": [{"link": {"kind": "v-link", "value": "-75.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man on the ladder feels severe pain in his fingers"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man on the ladder falls from the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The passenger behind the man gains access up the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The passenger behind the man reaches the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The passenger behind the man avoids drowning"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I cause the man on the ladder to fall to his death"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "break the man's fingers"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The man experiences intense pain."}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "The man falls from the ladder."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The ladder is no longer blocked."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The four passengers behind the man reach the deck."}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man dies from the fall."}]} +{"node": {"kind": "being", "label": "1 man blocking the ladder"}, "links": []} +{"node": {"kind": "being", "label": "4 passengers behind the blocked man on the ladder"}, "links": []} +{"node": {"kind": "being", "label": "1 passenger in the crowd below who shouts"}, "links": []} +{"node": {"kind": "action_choice", "label": "break the man's fingers"}, "links": [{"link": {"kind": "v-link", "value": "-108.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man experiences intense pain."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man falls from the ladder."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The ladder is no longer blocked."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The four passengers behind the man reach the deck."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man dies from the fall."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The man on the ladder feels severe pain in his fingers"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "-6"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "-7"}, "to_node": "the person in the crowd on deck who shouts"}]} -{"node": {"kind": "event", "label": "The man on the ladder falls from the ladder"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the person in the crowd on deck who shouts"}]} -{"node": {"kind": "event", "label": "The passenger behind the man gains access up the ladder"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "the person in the crowd on deck who shouts"}]} -{"node": {"kind": "event", "label": "The passenger behind the man reaches the deck"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "the person in the crowd on deck who shouts"}]} -{"node": {"kind": "event", "label": "The passenger behind the man avoids drowning"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "the person in the crowd on deck who shouts"}]} -{"node": {"kind": "event", "label": "I cause the man on the ladder to fall to his death"}, "links": [{"link": {"kind": "utility", "value": "-95"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the person in the crowd on deck who shouts"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The man experiences intense pain."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "1 man blocking the ladder"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "4 passengers behind the blocked man on the ladder"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "1 passenger in the crowd below who shouts"}]} +{"node": {"kind": "event", "label": "The man falls from the ladder."}, "links": [{"link": {"kind": "utility", "value": "-80"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "1 man blocking the ladder"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "4 passengers behind the blocked man on the ladder"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "1 passenger in the crowd below who shouts"}]} +{"node": {"kind": "event", "label": "The ladder is no longer blocked."}, "links": [{"link": {"kind": "utility", "value": "20"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "1 man blocking the ladder"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "4 passengers behind the blocked man on the ladder"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "1 passenger in the crowd below who shouts"}]} +{"node": {"kind": "event", "label": "The four passengers behind the man reach the deck."}, "links": [{"link": {"kind": "utility", "value": "10"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "1 man blocking the ladder"}, {"link": {"kind": "utility", "value": "80"}, "to_node": "4 passengers behind the blocked man on the ladder"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "1 passenger in the crowd below who shouts"}]} +{"node": {"kind": "event", "label": "The man dies from the fall."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "1 man blocking the ladder"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "4 passengers behind the blocked man on the ladder"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "1 passenger in the crowd below who shouts"}]} +{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} diff --git a/annotated_outputs/cheung_variants/ropeladder_7_choice_2.html b/annotated_outputs/cheung_variants/ropeladder_7_choice_2.html index e0bdc898..8a1402e8 100644 --- a/annotated_outputs/cheung_variants/ropeladder_7_choice_2.html +++ b/annotated_outputs/cheung_variants/ropeladder_7_choice_2.html @@ -3,8 +3,8 @@ @@ -61,50 +61,38 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "the man stuck midway up\n the ladder", color: {background: '#279aba'}}, - {id: 3, label: "the passenger directly behind the\n stuck man", color: {background: '#279aba'}}, - {id: 4, label: "the person in the crowd\n who shouts", color: {background: '#279aba'}}, - {id: 5, label: "stand there and do nothing", color: {background: '#ba2769'}}, - {id: 6, label: "value", color: {background: '#8e7db5'}}, - {id: 7, label: "The man on the ladder\n remains gripping the ladder", color: {background: '#e6c440'}}, - {id: 8, label: "The passenger behind the man\n remains blocked from climbing onto\n the deck", color: {background: '#e6c440'}}, - {id: 9, label: "I do not injure the\n man on the ladder with\n the crowbar", color: {background: '#e6c440'}}, - {id: 10, label: "The man on the ladder\n remains in immediate danger of\n drowning", color: {background: '#e6c440'}}, - {id: 11, label: "The passenger behind the man\n remains in immediate danger of\n drowning", color: {background: '#e6c440'}} + {id: 2, label: "the man blocking the ladder", color: {background: '#279aba'}}, + {id: 3, label: "4 other passengers behind the\n man on the ladder", color: {background: '#279aba'}}, + {id: 4, label: "do nothing", color: {background: '#ba2769'}}, + {id: 5, label: "value", color: {background: '#8e7db5'}}, + {id: 6, label: "The man on the ladder\n remains gripping the rope ladder", color: {background: '#e6c440'}}, + {id: 7, label: "The rope ladder remains blocked", color: {background: '#e6c440'}}, + {id: 8, label: "The four other passengers behind\n the man remain unable to\n climb onto the deck", color: {background: '#e6c440'}}, + {id: 9, label: "The man on the ladder\n is not directly injured by\n me", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 8, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 6, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 8, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 9, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 6, label: "-15.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 4, label: "-5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 4, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 5, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 6, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 2, label: "-10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 3, label: "-25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "-30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/ropeladder_7_choice_2.json b/annotated_outputs/cheung_variants/ropeladder_7_choice_2.json index c963c453..b5500627 100644 --- a/annotated_outputs/cheung_variants/ropeladder_7_choice_2.json +++ b/annotated_outputs/cheung_variants/ropeladder_7_choice_2.json @@ -1,12 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "stand there and do nothing"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "The man on the ladder remains gripping the ladder"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "The passenger behind the man remains blocked from climbing onto the deck"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not injure the man on the ladder with the crowbar"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "The man on the ladder remains in immediate danger of drowning"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The passenger behind the man remains in immediate danger of drowning"}]} -{"node": {"kind": "being", "label": "the man stuck midway up the ladder"}, "links": []} -{"node": {"kind": "being", "label": "the passenger directly behind the stuck man"}, "links": []} -{"node": {"kind": "being", "label": "the person in the crowd who shouts"}, "links": []} -{"node": {"kind": "action_choice", "label": "stand there and do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-15.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man on the ladder remains gripping the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The passenger behind the man remains blocked from climbing onto the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not injure the man on the ladder with the crowbar"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man on the ladder remains in immediate danger of drowning"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The passenger behind the man remains in immediate danger of drowning"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man on the ladder remains gripping the rope ladder"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The rope ladder remains blocked"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The four other passengers behind the man remain unable to climb onto the deck"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man on the ladder is not directly injured by me"}]} +{"node": {"kind": "being", "label": "the man blocking the ladder"}, "links": []} +{"node": {"kind": "being", "label": "4 other passengers behind the man on the ladder"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man on the ladder remains gripping the rope ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The rope ladder remains blocked"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The four other passengers behind the man remain unable to climb onto the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man on the ladder is not directly injured by me"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The man on the ladder remains gripping the ladder"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "The passenger behind the man remains blocked from climbing onto the deck"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "-5"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "I do not injure the man on the ladder with the crowbar"}, "links": [{"link": {"kind": "utility", "value": "65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "The man on the ladder remains in immediate danger of drowning"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "The passenger behind the man remains in immediate danger of drowning"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "the person in the crowd who shouts"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The man on the ladder remains gripping the rope ladder"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "4 other passengers behind the man on the ladder"}]} +{"node": {"kind": "event", "label": "The rope ladder remains blocked"}, "links": [{"link": {"kind": "utility", "value": "-30"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "4 other passengers behind the man on the ladder"}]} +{"node": {"kind": "event", "label": "The four other passengers behind the man remain unable to climb onto the deck"}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "4 other passengers behind the man on the ladder"}]} +{"node": {"kind": "event", "label": "The man on the ladder is not directly injured by me"}, "links": [{"link": {"kind": "utility", "value": "45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "the man blocking the ladder"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "4 other passengers behind the man on the ladder"}]} +{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} diff --git a/annotated_outputs/cheung_variants/ropeladder_8_choice_1.json b/annotated_outputs/cheung_variants/ropeladder_8_choice_1.json index 71e69c7b..69560977 100644 --- a/annotated_outputs/cheung_variants/ropeladder_8_choice_1.json +++ b/annotated_outputs/cheung_variants/ropeladder_8_choice_1.json @@ -1,12 +1,12 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "stab the man"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I stab the man on the ladder"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man on the ladder falls off the ladder"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "The passenger behind the man can climb past the blocked spot"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "The passenger behind the man reaches the deck"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I experience harming the man"}]} -{"node": {"kind": "being", "label": "the man stuck midway up the ladder"}, "links": []} -{"node": {"kind": "being", "label": "the passenger behind the stuck man"}, "links": []} -{"node": {"kind": "being", "label": "the person in the crowd who shouts"}, "links": []} -{"node": {"kind": "action_choice", "label": "stab the man"}, "links": [{"link": {"kind": "v-link", "value": "-43.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I stab the man on the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man on the ladder falls off the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The passenger behind the man can climb past the blocked spot"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The passenger behind the man reaches the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I experience harming the man"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "push the man off the ladder"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man falls from the ladder"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man is fatally injured"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The ladder is no longer blocked"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "Four other passengers reach the deck"}]} +{"node": {"kind": "being", "label": "1 man frozen on the rope ladder"}, "links": []} +{"node": {"kind": "being", "label": "4 other passengers behind him on the rope ladder"}, "links": []} +{"node": {"kind": "being", "label": "1 passenger shouting from the crowd below"}, "links": []} +{"node": {"kind": "being", "label": "unknown number of other passengers in the crowd below"}, "links": []} +{"node": {"kind": "action_choice", "label": "push the man off the ladder"}, "links": [{"link": {"kind": "v-link", "value": "-88.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man falls from the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man is fatally injured"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The ladder is no longer blocked"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Four other passengers reach the deck"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I stab the man on the ladder"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the passenger behind the stuck man"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "The man on the ladder falls off the ladder"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "the passenger behind the stuck man"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "The passenger behind the man can climb past the blocked spot"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the passenger behind the stuck man"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "The passenger behind the man reaches the deck"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the passenger behind the stuck man"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "I experience harming the man"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the passenger behind the stuck man"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "the person in the crowd who shouts"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The man falls from the ladder"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "1 man frozen on the rope ladder"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "4 other passengers behind him on the rope ladder"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "1 passenger shouting from the crowd below"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "unknown number of other passengers in the crowd below"}]} +{"node": {"kind": "event", "label": "The man is fatally injured"}, "links": [{"link": {"kind": "utility", "value": "-100"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "1 man frozen on the rope ladder"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "4 other passengers behind him on the rope ladder"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "1 passenger shouting from the crowd below"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "unknown number of other passengers in the crowd below"}]} +{"node": {"kind": "event", "label": "The ladder is no longer blocked"}, "links": [{"link": {"kind": "utility", "value": "25"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "40"}, "to_node": "1 man frozen on the rope ladder"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "4 other passengers behind him on the rope ladder"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "1 passenger shouting from the crowd below"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "unknown number of other passengers in the crowd below"}]} +{"node": {"kind": "event", "label": "Four other passengers reach the deck"}, "links": [{"link": {"kind": "utility", "value": "-10"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "1 man frozen on the rope ladder"}, {"link": {"kind": "utility", "value": "80"}, "to_node": "4 other passengers behind him on the rope ladder"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "1 passenger shouting from the crowd below"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "unknown number of other passengers in the crowd below"}]} +{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} diff --git a/annotated_outputs/cheung_variants/ropeladder_8_choice_2.html b/annotated_outputs/cheung_variants/ropeladder_8_choice_2.html index 996abfeb..f5d9a8ac 100644 --- a/annotated_outputs/cheung_variants/ropeladder_8_choice_2.html +++ b/annotated_outputs/cheung_variants/ropeladder_8_choice_2.html @@ -3,8 +3,8 @@ @@ -61,50 +61,43 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "the man stuck midway up\n the ladder", color: {background: '#279aba'}}, - {id: 3, label: "the passenger directly behind the\n stuck man on the ladder", color: {background: '#279aba'}}, - {id: 4, label: "the person in the crowd\n who shouts", color: {background: '#279aba'}}, - {id: 5, label: "stand there and do nothing", color: {background: '#ba2769'}}, + {id: 2, label: "1 man frozen and blocking\n the rope ladder", color: {background: '#279aba'}}, + {id: 3, label: "4 passengers behind the blocked\n man on the ladder", color: {background: '#279aba'}}, + {id: 4, label: "1 unidentified passenger who shouts\n from the crowd below", color: {background: '#279aba'}}, + {id: 5, label: "do nothing", color: {background: '#ba2769'}}, {id: 6, label: "value", color: {background: '#8e7db5'}}, - {id: 7, label: "The frozen man remains stuck\n on the ladder", color: {background: '#e6c440'}}, - {id: 8, label: "The passenger behind the frozen\n man remains blocked from reaching\n the deck", color: {background: '#e6c440'}}, - {id: 9, label: "I do not stab the\n frozen man", color: {background: '#e6c440'}}, - {id: 10, label: "The frozen man stays alive\n in that immediate moment", color: {background: '#e6c440'}}, - {id: 11, label: "The blocked passenger stays off\n the deck in that immediate\n moment", color: {background: '#e6c440'}} + {id: 7, label: "The man on the ladder\n remains blocking the route to\n the deck", color: {background: '#e6c440'}}, + {id: 8, label: "The four passengers behind the\n man cannot climb onto the\n deck", color: {background: '#e6c440'}}, + {id: 9, label: "The man on the ladder\n drowns", color: {background: '#e6c440'}}, + {id: 10, label: "The four passengers behind the\n man drown", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 8, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 9, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 6, label: "-15.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 8, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 9, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 10, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 6, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 4, label: "-2", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 4, label: "-8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 4, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "-30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 4, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 4, label: "-30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 4, label: "-25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 2, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 4, label: "-15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/ropeladder_8_choice_2.json b/annotated_outputs/cheung_variants/ropeladder_8_choice_2.json index 9ec08e80..f253549c 100644 --- a/annotated_outputs/cheung_variants/ropeladder_8_choice_2.json +++ b/annotated_outputs/cheung_variants/ropeladder_8_choice_2.json @@ -1,12 +1,11 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "stand there and do nothing"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "The frozen man remains stuck on the ladder"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "The passenger behind the frozen man remains blocked from reaching the deck"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not stab the frozen man"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "The frozen man stays alive in that immediate moment"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "The blocked passenger stays off the deck in that immediate moment"}]} -{"node": {"kind": "being", "label": "the man stuck midway up the ladder"}, "links": []} -{"node": {"kind": "being", "label": "the passenger directly behind the stuck man on the ladder"}, "links": []} -{"node": {"kind": "being", "label": "the person in the crowd who shouts"}, "links": []} -{"node": {"kind": "action_choice", "label": "stand there and do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-15.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The frozen man remains stuck on the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The passenger behind the frozen man remains blocked from reaching the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not stab the frozen man"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The frozen man stays alive in that immediate moment"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The blocked passenger stays off the deck in that immediate moment"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man on the ladder remains blocking the route to the deck"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The four passengers behind the man cannot climb onto the deck"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man on the ladder drowns"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The four passengers behind the man drown"}]} +{"node": {"kind": "being", "label": "1 man frozen and blocking the rope ladder"}, "links": []} +{"node": {"kind": "being", "label": "4 passengers behind the blocked man on the ladder"}, "links": []} +{"node": {"kind": "being", "label": "1 unidentified passenger who shouts from the crowd below"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man on the ladder remains blocking the route to the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The four passengers behind the man cannot climb onto the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man on the ladder drowns"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The four passengers behind the man drown"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The frozen man remains stuck on the ladder"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the passenger directly behind the stuck man on the ladder"}, {"link": {"kind": "utility", "value": "-2"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "The passenger behind the frozen man remains blocked from reaching the deck"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the passenger directly behind the stuck man on the ladder"}, {"link": {"kind": "utility", "value": "-8"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "I do not stab the frozen man"}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "the passenger directly behind the stuck man on the ladder"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "The frozen man stays alive in that immediate moment"}, "links": [{"link": {"kind": "utility", "value": "5"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "the passenger directly behind the stuck man on the ladder"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "The blocked passenger stays off the deck in that immediate moment"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "the passenger directly behind the stuck man on the ladder"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "the person in the crowd who shouts"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The man on the ladder remains blocking the route to the deck"}, "links": [{"link": {"kind": "utility", "value": "-30"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "1 man frozen and blocking the rope ladder"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "4 passengers behind the blocked man on the ladder"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "1 unidentified passenger who shouts from the crowd below"}]} +{"node": {"kind": "event", "label": "The four passengers behind the man cannot climb onto the deck"}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "1 man frozen and blocking the rope ladder"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "4 passengers behind the blocked man on the ladder"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "1 unidentified passenger who shouts from the crowd below"}]} +{"node": {"kind": "event", "label": "The man on the ladder drowns"}, "links": [{"link": {"kind": "utility", "value": "-100"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "1 man frozen and blocking the rope ladder"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "4 passengers behind the blocked man on the ladder"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "1 unidentified passenger who shouts from the crowd below"}]} +{"node": {"kind": "event", "label": "The four passengers behind the man drown"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "1 man frozen and blocking the rope ladder"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "4 passengers behind the blocked man on the ladder"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "1 unidentified passenger who shouts from the crowd below"}]} +{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} diff --git a/annotated_outputs/cheung_variants/ropeladder_9_choice_1.json b/annotated_outputs/cheung_variants/ropeladder_9_choice_1.json index cf0afa1d..98945f6d 100644 --- a/annotated_outputs/cheung_variants/ropeladder_9_choice_1.json +++ b/annotated_outputs/cheung_variants/ropeladder_9_choice_1.json @@ -1,15 +1,9 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "push the man"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I push the man off the ladder"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man falls from the ladder"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man dies"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The blocked passenger can continue climbing the ladder"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The blocked passenger reaches the deck"}, {"link": {"kind": "b_link", "value": "C+I+K-"}, "to_node": "The blocked passenger survives"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I physically harm the man"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I experience distress from pushing the man"}]} -{"node": {"kind": "being", "label": "the man stuck on the ladder"}, "links": []} -{"node": {"kind": "being", "label": "the passenger directly behind the stuck man"}, "links": []} -{"node": {"kind": "being", "label": "the person in the crowd who shouts"}, "links": []} -{"node": {"kind": "action_choice", "label": "push the man"}, "links": [{"link": {"kind": "v-link", "value": "-30.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I push the man off the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man falls from the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man dies"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The blocked passenger can continue climbing the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The blocked passenger reaches the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The blocked passenger survives"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I physically harm the man"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I experience distress from pushing the man"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "let the man slip off the ladder"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The man falls off the ladder."}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man dies."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The four passengers behind him are able to climb onto the deck."}]} +{"node": {"kind": "being", "label": "the man frozen midway up the ladder"}, "links": []} +{"node": {"kind": "being", "label": "the 4 passengers behind him on the ladder"}, "links": []} +{"node": {"kind": "action_choice", "label": "let the man slip off the ladder"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man falls off the ladder."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man dies."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The four passengers behind him are able to climb onto the deck."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "I push the man off the ladder"}, "links": [{"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the man stuck on the ladder"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "The man falls from the ladder"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the man stuck on the ladder"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "The man dies"}, "links": [{"link": {"kind": "utility", "value": "-95"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the man stuck on the ladder"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "The blocked passenger can continue climbing the ladder"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the man stuck on the ladder"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "The blocked passenger reaches the deck"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the man stuck on the ladder"}, {"link": {"kind": "utility", "value": "78"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "The blocked passenger survives"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "the man stuck on the ladder"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "I physically harm the man"}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the man stuck on the ladder"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the person in the crowd who shouts"}]} -{"node": {"kind": "event", "label": "I experience distress from pushing the man"}, "links": [{"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the man stuck on the ladder"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the passenger directly behind the stuck man"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the person in the crowd who shouts"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The man falls off the ladder."}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the man frozen midway up the ladder"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "the man frozen midway up the ladder"}]} +{"node": {"kind": "event", "label": "The man dies."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "the man frozen midway up the ladder"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "the man frozen midway up the ladder"}]} +{"node": {"kind": "event", "label": "The four passengers behind him are able to climb onto the deck."}, "links": [{"link": {"kind": "utility", "value": "25"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "the man frozen midway up the ladder"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the man frozen midway up the ladder"}]} +{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} diff --git a/annotated_outputs/cheung_variants/ropeladder_9_choice_2.html b/annotated_outputs/cheung_variants/ropeladder_9_choice_2.html index 3dece405..a91a41f7 100644 --- a/annotated_outputs/cheung_variants/ropeladder_9_choice_2.html +++ b/annotated_outputs/cheung_variants/ropeladder_9_choice_2.html @@ -61,38 +61,38 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "the man stuck midway up\n the ladder", color: {background: '#279aba'}}, - {id: 3, label: "the passenger directly behind the\n stuck man on the ladder", color: {background: '#279aba'}}, - {id: 4, label: "stand there and do nothing", color: {background: '#ba2769'}}, + {id: 2, label: "1 man frozen midway up\n the rope ladder", color: {background: '#279aba'}}, + {id: 3, label: "4 passengers behind him on\n the rope ladder", color: {background: '#279aba'}}, + {id: 4, label: "do nothing", color: {background: '#ba2769'}}, {id: 5, label: "value", color: {background: '#8e7db5'}}, - {id: 6, label: "The frozen man remains blocking\n the ladder", color: {background: '#e6c440'}}, - {id: 7, label: "The passenger behind the frozen\n man cannot climb onto the\n deck", color: {background: '#e6c440'}}, - {id: 8, label: "The passenger behind the frozen\n man drowns", color: {background: '#e6c440'}}, - {id: 9, label: "I do not physically harm\n the frozen man", color: {background: '#e6c440'}} + {id: 6, label: "The man on the ladder\n remains blocking the way.", color: {background: '#e6c440'}}, + {id: 7, label: "The four passengers below him\n are unable to climb onto\n the deck.", color: {background: '#e6c440'}}, + {id: 8, label: "The four passengers below him\n drown.", color: {background: '#e6c440'}}, + {id: 9, label: "The man on the ladder\n dies in the sinking ferry.", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 6, label: "C-I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 8, label: "C-I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 9, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 5, label: "-15.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 6, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 9, label: "C+I-K-", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 5, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 6, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 1, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 3, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "-12", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "-8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "5", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "8", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 1, label: "-10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 2, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 2, label: "-50", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "-90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-100", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/ropeladder_9_choice_2.json b/annotated_outputs/cheung_variants/ropeladder_9_choice_2.json index 7f669696..fad66b3e 100644 --- a/annotated_outputs/cheung_variants/ropeladder_9_choice_2.json +++ b/annotated_outputs/cheung_variants/ropeladder_9_choice_2.json @@ -1,10 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "stand there and do nothing"}, {"link": {"kind": "b_link", "value": "C-I-K+"}, "to_node": "The frozen man remains blocking the ladder"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The passenger behind the frozen man cannot climb onto the deck"}, {"link": {"kind": "b_link", "value": "C-I-K-"}, "to_node": "The passenger behind the frozen man drowns"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "I do not physically harm the frozen man"}]} -{"node": {"kind": "being", "label": "the man stuck midway up the ladder"}, "links": []} -{"node": {"kind": "being", "label": "the passenger directly behind the stuck man on the ladder"}, "links": []} -{"node": {"kind": "action_choice", "label": "stand there and do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-15.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The frozen man remains blocking the ladder"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The passenger behind the frozen man cannot climb onto the deck"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The passenger behind the frozen man drowns"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I do not physically harm the frozen man"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man on the ladder remains blocking the way."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The four passengers below him are unable to climb onto the deck."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The four passengers below him drown."}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "The man on the ladder dies in the sinking ferry."}]} +{"node": {"kind": "being", "label": "1 man frozen midway up the rope ladder"}, "links": []} +{"node": {"kind": "being", "label": "4 passengers behind him on the rope ladder"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man on the ladder remains blocking the way."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The four passengers below him are unable to climb onto the deck."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The four passengers below him drown."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The man on the ladder dies in the sinking ferry."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The frozen man remains blocking the ladder"}, "links": [{"link": {"kind": "utility", "value": "-12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the passenger directly behind the stuck man on the ladder"}]} -{"node": {"kind": "event", "label": "The passenger behind the frozen man cannot climb onto the deck"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-12"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the passenger directly behind the stuck man on the ladder"}]} -{"node": {"kind": "event", "label": "The passenger behind the frozen man drowns"}, "links": [{"link": {"kind": "utility", "value": "-8"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the passenger directly behind the stuck man on the ladder"}]} -{"node": {"kind": "event", "label": "I do not physically harm the frozen man"}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "the man stuck midway up the ladder"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "the passenger directly behind the stuck man on the ladder"}]} -{"version": "17f92b64d11f604bfbc30fc7d92a8fb982bcb239"} +{"node": {"kind": "event", "label": "The man on the ladder remains blocking the way."}, "links": [{"link": {"kind": "utility", "value": "-10"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "1 man frozen midway up the rope ladder"}, {"link": {"kind": "utility", "value": "-50"}, "to_node": "1 man frozen midway up the rope ladder"}]} +{"node": {"kind": "event", "label": "The four passengers below him are unable to climb onto the deck."}, "links": [{"link": {"kind": "utility", "value": "-55"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "1 man frozen midway up the rope ladder"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "1 man frozen midway up the rope ladder"}]} +{"node": {"kind": "event", "label": "The four passengers below him drown."}, "links": [{"link": {"kind": "utility", "value": "-45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "1 man frozen midway up the rope ladder"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "1 man frozen midway up the rope ladder"}]} +{"node": {"kind": "event", "label": "The man on the ladder dies in the sinking ferry."}, "links": [{"link": {"kind": "utility", "value": "-100"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-100"}, "to_node": "1 man frozen midway up the rope ladder"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "1 man frozen midway up the rope ladder"}]} +{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} diff --git a/annotated_outputs/cheung_variants/tyrannicide_1_choice_1.json b/annotated_outputs/cheung_variants/tyrannicide_1_choice_1.json index 95d495ea..11415e64 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_1_choice_1.json +++ b/annotated_outputs/cheung_variants/tyrannicide_1_choice_1.json @@ -1,12 +1,11 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "threaten to kill the dictator"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator fears for his life"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator ends his regime"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The regime's killing of opponents and ethnic targets stops"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "People who would have been killed by the regime this year stay alive"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "My accomplices and I face retaliation from the dictator and his loyalists."}]} +{"node": {"kind": "being", "label": "i, the army officer"}, "links": []} +{"node": {"kind": "being", "label": "my accomplices in the plan"}, "links": []} {"node": {"kind": "being", "label": "the dictator"}, "links": []} -{"node": {"kind": "being", "label": "my accomplices"}, "links": []} -{"node": {"kind": "being", "label": "past victims of the regime"}, "links": []} -{"node": {"kind": "action_choice", "label": "threaten to kill the dictator"}, "links": [{"link": {"kind": "v-link", "value": "-83.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator fears for his life"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator ends his regime"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime's killing of opponents and ethnic targets stops"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People who would have been killed by the regime this year stay alive"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My accomplices and I face retaliation from the dictator and his loyalists."}]} +{"node": {"kind": "being", "label": "the regime's past victims killed for their ethnicity or political views"}, "links": []} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "threaten to kill the dictator"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator is forced to end his regime"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "State killing of people for their ethnicity or political views stops"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Around a thousand people who would have been killed by the regime this year remain alive"}]} +{"node": {"kind": "action_choice", "label": "threaten to kill the dictator"}, "links": [{"link": {"kind": "v-link", "value": "-84.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator is forced to end his regime"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "State killing of people for their ethnicity or political views stops"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Around a thousand people who would have been killed by the regime this year remain alive"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The dictator fears for his life"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "20"}, "to_node": "past victims of the regime"}]} -{"node": {"kind": "event", "label": "The dictator ends his regime"}, "links": [{"link": {"kind": "utility", "value": "78"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "past victims of the regime"}]} -{"node": {"kind": "event", "label": "The regime's killing of opponents and ethnic targets stops"}, "links": [{"link": {"kind": "utility", "value": "85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "80"}, "to_node": "past victims of the regime"}]} -{"node": {"kind": "event", "label": "People who would have been killed by the regime this year stay alive"}, "links": [{"link": {"kind": "utility", "value": "65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "past victims of the regime"}]} -{"node": {"kind": "event", "label": "My accomplices and I face retaliation from the dictator and his loyalists."}, "links": [{"link": {"kind": "utility", "value": "-88"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "past victims of the regime"}]} -{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} +{"node": {"kind": "event", "label": "The dictator is forced to end his regime"}, "links": [{"link": {"kind": "utility", "value": "-45"}, "to_node": "i, the army officer"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "my accomplices in the plan"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the regime's past victims killed for their ethnicity or political views"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "State killing of people for their ethnicity or political views stops"}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i, the army officer"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my accomplices in the plan"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the regime's past victims killed for their ethnicity or political views"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "Around a thousand people who would have been killed by the regime this year remain alive"}, "links": [{"link": {"kind": "utility", "value": "-15"}, "to_node": "i, the army officer"}, {"link": {"kind": "utility", "value": "60"}, "to_node": "my accomplices in the plan"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the regime's past victims killed for their ethnicity or political views"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/tyrannicide_1_choice_2.html b/annotated_outputs/cheung_variants/tyrannicide_1_choice_2.html index 07cc5024..9b70c433 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_1_choice_2.html +++ b/annotated_outputs/cheung_variants/tyrannicide_1_choice_2.html @@ -3,8 +3,8 @@ @@ -60,57 +60,51 @@ } function return_vis_dataset() { var nodes = new vis.DataSet([ - {id: 1, label: "1 army officer", color: {background: '#279aba'}}, - {id: 2, label: "1 dictator", color: {background: '#279aba'}}, - {id: 3, label: "at least 2 accomplices", color: {background: '#279aba'}}, - {id: 4, label: "thousands of people previously killed\n by the regime because of\n their ethnicity or political views", color: {background: '#279aba'}}, - {id: 5, label: "i", color: {background: '#279aba'}}, - {id: 6, label: "do nothing", color: {background: '#ba2769'}}, - {id: 7, label: "value", color: {background: '#8e7db5'}}, - {id: 8, label: "The dictator remains in power.", color: {background: '#e6c440'}}, - {id: 9, label: "The regime continues operating.", color: {background: '#e6c440'}}, - {id: 10, label: "A thousand people are killed\n by the regime this year.", color: {background: '#e6c440'}}, - {id: 11, label: "People in the Dominican Republic\n continue to suffer persecution for\n their ethnicity or political views.", color: {background: '#e6c440'}}, - {id: 12, label: "My group's goal of starting\n a new era without civil\n war is not achieved.", color: {background: '#e6c440'}} + {id: 1, label: "i", color: {background: '#279aba'}}, + {id: 2, label: "the dictator", color: {background: '#279aba'}}, + {id: 3, label: "my accomplices in the anti-regime\n group", color: {background: '#279aba'}}, + {id: 4, label: "thousands of past victims killed\n by the regime because of\n their ethnicity or political views", color: {background: '#279aba'}}, + {id: 5, label: "do nothing", color: {background: '#ba2769'}}, + {id: 6, label: "value", color: {background: '#8e7db5'}}, + {id: 7, label: "The dictator remains in power", color: {background: '#e6c440'}}, + {id: 8, label: "The regime continues persecuting people\n for their ethnicity or political\n views", color: {background: '#e6c440'}}, + {id: 9, label: "About a thousand people are\n killed by the regime this\n year", color: {background: '#e6c440'}}, + {id: 10, label: "Dominican citizens continue living under\n the dictatorship", color: {background: '#e6c440'}}, + {id: 11, label: "My group's goal of ending\n the regime is not achieved", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 5, to: 6, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 10, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 11, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 12, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 7, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 10, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 11, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 6, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 8, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 5, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "-30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 9, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 5, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 10, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 5, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 1, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 11, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 5, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 1, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 2, label: "45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 5, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/tyrannicide_1_choice_2.json b/annotated_outputs/cheung_variants/tyrannicide_1_choice_2.json index 8b5f2766..1e174071 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_1_choice_2.json +++ b/annotated_outputs/cheung_variants/tyrannicide_1_choice_2.json @@ -1,13 +1,12 @@ -{"node": {"kind": "being", "label": "1 army officer"}, "links": []} -{"node": {"kind": "being", "label": "1 dictator"}, "links": []} -{"node": {"kind": "being", "label": "at least 2 accomplices"}, "links": []} -{"node": {"kind": "being", "label": "thousands of people previously killed by the regime because of their ethnicity or political views"}, "links": []} -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator remains in power."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The regime continues operating."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "A thousand people are killed by the regime this year."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "People in the Dominican Republic continue to suffer persecution for their ethnicity or political views."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "My group's goal of starting a new era without civil war is not achieved."}]} -{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator remains in power."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime continues operating."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "A thousand people are killed by the regime this year."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People in the Dominican Republic continue to suffer persecution for their ethnicity or political views."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My group's goal of starting a new era without civil war is not achieved."}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator remains in power"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The regime continues persecuting people for their ethnicity or political views"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "About a thousand people are killed by the regime this year"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Dominican citizens continue living under the dictatorship"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "My group's goal of ending the regime is not achieved"}]} +{"node": {"kind": "being", "label": "the dictator"}, "links": []} +{"node": {"kind": "being", "label": "my accomplices in the anti-regime group"}, "links": []} +{"node": {"kind": "being", "label": "thousands of past victims killed by the regime because of their ethnicity or political views"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator remains in power"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime continues persecuting people for their ethnicity or political views"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "About a thousand people are killed by the regime this year"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Dominican citizens continue living under the dictatorship"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My group's goal of ending the regime is not achieved"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The dictator remains in power."}, "links": [{"link": {"kind": "utility", "value": "40"}, "to_node": "1 army officer"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "1 dictator"}, {"link": {"kind": "utility", "value": "80"}, "to_node": "at least 2 accomplices"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "thousands of people previously killed by the regime because of their ethnicity or political views"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}]} -{"node": {"kind": "event", "label": "The regime continues operating."}, "links": [{"link": {"kind": "utility", "value": "55"}, "to_node": "1 army officer"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "1 dictator"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "at least 2 accomplices"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "thousands of people previously killed by the regime because of their ethnicity or political views"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}]} -{"node": {"kind": "event", "label": "A thousand people are killed by the regime this year."}, "links": [{"link": {"kind": "utility", "value": "15"}, "to_node": "1 army officer"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "1 dictator"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "at least 2 accomplices"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "thousands of people previously killed by the regime because of their ethnicity or political views"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}]} -{"node": {"kind": "event", "label": "People in the Dominican Republic continue to suffer persecution for their ethnicity or political views."}, "links": [{"link": {"kind": "utility", "value": "30"}, "to_node": "1 army officer"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "1 dictator"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "at least 2 accomplices"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "thousands of people previously killed by the regime because of their ethnicity or political views"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} -{"node": {"kind": "event", "label": "My group's goal of starting a new era without civil war is not achieved."}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "1 army officer"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "1 dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "at least 2 accomplices"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "thousands of people previously killed by the regime because of their ethnicity or political views"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}]} -{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} +{"node": {"kind": "event", "label": "The dictator remains in power"}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "my accomplices in the anti-regime group"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "thousands of past victims killed by the regime because of their ethnicity or political views"}]} +{"node": {"kind": "event", "label": "The regime continues persecuting people for their ethnicity or political views"}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "my accomplices in the anti-regime group"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "thousands of past victims killed by the regime because of their ethnicity or political views"}]} +{"node": {"kind": "event", "label": "About a thousand people are killed by the regime this year"}, "links": [{"link": {"kind": "utility", "value": "-30"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "my accomplices in the anti-regime group"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "thousands of past victims killed by the regime because of their ethnicity or political views"}]} +{"node": {"kind": "event", "label": "Dominican citizens continue living under the dictatorship"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "my accomplices in the anti-regime group"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "thousands of past victims killed by the regime because of their ethnicity or political views"}]} +{"node": {"kind": "event", "label": "My group's goal of ending the regime is not achieved"}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "my accomplices in the anti-regime group"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "thousands of past victims killed by the regime because of their ethnicity or political views"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/tyrannicide_2_choice_1.json b/annotated_outputs/cheung_variants/tyrannicide_2_choice_1.json index c96db6ef..294c1f8f 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_2_choice_1.json +++ b/annotated_outputs/cheung_variants/tyrannicide_2_choice_1.json @@ -1,11 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "capture the dictator"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator loses political power"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictatorship ends"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The regime stops killing people for their ethnicity or political views"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "People who would have been killed by the regime this year remain alive"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "My accomplices and I are exposed to danger during the operation"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator is exposed to danger during the operation"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "capture the dictator"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator loses power over the government."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The regime ends."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "Many people targeted by the regime are spared from being killed."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "I and my accomplices face immediate danger during the operation."}]} {"node": {"kind": "being", "label": "the dictator"}, "links": []} -{"node": {"kind": "action_choice", "label": "capture the dictator"}, "links": [{"link": {"kind": "v-link", "value": "-59.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator loses political power"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictatorship ends"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime stops killing people for their ethnicity or political views"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People who would have been killed by the regime this year remain alive"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My accomplices and I are exposed to danger during the operation"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator is exposed to danger during the operation"}]} +{"node": {"kind": "being", "label": "my accomplices"}, "links": []} +{"node": {"kind": "action_choice", "label": "capture the dictator"}, "links": [{"link": {"kind": "v-link", "value": "-59.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator loses power over the government."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime ends."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Many people targeted by the regime are spared from being killed."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I and my accomplices face immediate danger during the operation."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The dictator loses political power"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the dictator"}]} -{"node": {"kind": "event", "label": "The dictatorship ends"}, "links": [{"link": {"kind": "utility", "value": "70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "the dictator"}]} -{"node": {"kind": "event", "label": "The regime stops killing people for their ethnicity or political views"}, "links": [{"link": {"kind": "utility", "value": "70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "the dictator"}]} -{"node": {"kind": "event", "label": "People who would have been killed by the regime this year remain alive"}, "links": [{"link": {"kind": "utility", "value": "25"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the dictator"}]} -{"node": {"kind": "event", "label": "My accomplices and I are exposed to danger during the operation"}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "40"}, "to_node": "the dictator"}]} -{"node": {"kind": "event", "label": "The dictator is exposed to danger during the operation"}, "links": [{"link": {"kind": "utility", "value": "45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "the dictator"}]} -{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} +{"node": {"kind": "event", "label": "The dictator loses power over the government."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "the dictator"}]} +{"node": {"kind": "event", "label": "The regime ends."}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "the dictator"}]} +{"node": {"kind": "event", "label": "Many people targeted by the regime are spared from being killed."}, "links": [{"link": {"kind": "utility", "value": "75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "the dictator"}]} +{"node": {"kind": "event", "label": "I and my accomplices face immediate danger during the operation."}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "20"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "the dictator"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/tyrannicide_2_choice_2.html b/annotated_outputs/cheung_variants/tyrannicide_2_choice_2.html index d6a74cc6..be45ea11 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_2_choice_2.html +++ b/annotated_outputs/cheung_variants/tyrannicide_2_choice_2.html @@ -3,8 +3,8 @@ @@ -62,42 +62,31 @@ var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, {id: 2, label: "the dictator", color: {background: '#279aba'}}, - {id: 3, label: "my accomplices", color: {background: '#279aba'}}, - {id: 4, label: "thousands of people already killed\n by the regime because of\n their ethnicity or political views", color: {background: '#279aba'}}, - {id: 5, label: "do nothing", color: {background: '#ba2769'}}, - {id: 6, label: "value", color: {background: '#8e7db5'}}, - {id: 7, label: "The dictator remains in power.", color: {background: '#e6c440'}}, - {id: 8, label: "The regime continues to persecute\n people for their ethnicity or\n political views.", color: {background: '#e6c440'}}, - {id: 9, label: "A thousand people are killed\n by the regime this year.", color: {background: '#e6c440'}}, - {id: 10, label: "The accomplices and I avoid\n the immediate danger of trying\n to capture the dictator.", color: {background: '#e6c440'}} + {id: 3, label: "my accomplices in the plan\n to capture the dictator", color: {background: '#279aba'}}, + {id: 4, label: "do nothing", color: {background: '#ba2769'}}, + {id: 5, label: "value", color: {background: '#8e7db5'}}, + {id: 6, label: "The dictator remains in power.", color: {background: '#e6c440'}}, + {id: 7, label: "The regime continues to kill\n people for their ethnicity or\n political views.", color: {background: '#e6c440'}}, + {id: 8, label: "About a thousand people are\n killed by the regime this\n year.", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 6, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 6, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 5, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 6, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 2, label: "90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/tyrannicide_2_choice_2.json b/annotated_outputs/cheung_variants/tyrannicide_2_choice_2.json index c7dfde79..8a2dfa05 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_2_choice_2.json +++ b/annotated_outputs/cheung_variants/tyrannicide_2_choice_2.json @@ -1,11 +1,9 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator remains in power."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The regime continues to persecute people for their ethnicity or political views."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "A thousand people are killed by the regime this year."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The accomplices and I avoid the immediate danger of trying to capture the dictator."}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator remains in power."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The regime continues to kill people for their ethnicity or political views."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "About a thousand people are killed by the regime this year."}]} {"node": {"kind": "being", "label": "the dictator"}, "links": []} -{"node": {"kind": "being", "label": "my accomplices"}, "links": []} -{"node": {"kind": "being", "label": "thousands of people already killed by the regime because of their ethnicity or political views"}, "links": []} -{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator remains in power."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime continues to persecute people for their ethnicity or political views."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "A thousand people are killed by the regime this year."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The accomplices and I avoid the immediate danger of trying to capture the dictator."}]} +{"node": {"kind": "being", "label": "my accomplices in the plan to capture the dictator"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator remains in power."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime continues to kill people for their ethnicity or political views."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "About a thousand people are killed by the regime this year."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The dictator remains in power."}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "thousands of people already killed by the regime because of their ethnicity or political views"}]} -{"node": {"kind": "event", "label": "The regime continues to persecute people for their ethnicity or political views."}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "thousands of people already killed by the regime because of their ethnicity or political views"}]} -{"node": {"kind": "event", "label": "A thousand people are killed by the regime this year."}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "thousands of people already killed by the regime because of their ethnicity or political views"}]} -{"node": {"kind": "event", "label": "The accomplices and I avoid the immediate danger of trying to capture the dictator."}, "links": [{"link": {"kind": "utility", "value": "65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "thousands of people already killed by the regime because of their ethnicity or political views"}]} -{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} +{"node": {"kind": "event", "label": "The dictator remains in power."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "my accomplices in the plan to capture the dictator"}]} +{"node": {"kind": "event", "label": "The regime continues to kill people for their ethnicity or political views."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "my accomplices in the plan to capture the dictator"}]} +{"node": {"kind": "event", "label": "About a thousand people are killed by the regime this year."}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "40"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "my accomplices in the plan to capture the dictator"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/tyrannicide_3_choice_1.json b/annotated_outputs/cheung_variants/tyrannicide_3_choice_1.json index 8a207f1c..723c25b8 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_3_choice_1.json +++ b/annotated_outputs/cheung_variants/tyrannicide_3_choice_1.json @@ -1,12 +1,12 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "take the dictator into custody"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator loses liberty"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator is forced to end his regime"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "People the regime would have killed are spared from those killings"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "I face danger from the dictator's loyalists"}]} +{"node": {"kind": "being", "label": "i, the army officer"}, "links": []} {"node": {"kind": "being", "label": "the dictator"}, "links": []} -{"node": {"kind": "being", "label": "an unspecified number of my accomplices"}, "links": []} -{"node": {"kind": "being", "label": "an unspecified number of other members of my pro-change group who are not my accomplices"}, "links": []} -{"node": {"kind": "being", "label": "an unspecified number of past victims of the regime , killed because of their ethnicity or political views"}, "links": []} -{"node": {"kind": "action_choice", "label": "take the dictator into custody"}, "links": [{"link": {"kind": "v-link", "value": "-33.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator loses liberty"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator is forced to end his regime"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People the regime would have killed are spared from those killings"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "I face danger from the dictator's loyalists"}]} +{"node": {"kind": "being", "label": "my accomplices in taking the dictator into custody"}, "links": []} +{"node": {"kind": "being", "label": "people previously killed by the regime because of their ethnicity or political views"}, "links": []} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "take the dictator into custody"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator is disempowered"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The regime ends"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "People who would have been killed by the regime this year remain alive"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "My accomplices and I face immediate danger from the dictator's loyalists"}]} +{"node": {"kind": "action_choice", "label": "take the dictator into custody"}, "links": [{"link": {"kind": "v-link", "value": "-33.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator is disempowered"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime ends"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People who would have been killed by the regime this year remain alive"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My accomplices and I face immediate danger from the dictator's loyalists"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The dictator loses liberty"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "an unspecified number of my accomplices"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "an unspecified number of other members of my pro-change group who are not my accomplices"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "an unspecified number of other members of my pro-change group who are not my accomplices"}]} -{"node": {"kind": "event", "label": "The dictator is forced to end his regime"}, "links": [{"link": {"kind": "utility", "value": "70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "an unspecified number of my accomplices"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "an unspecified number of other members of my pro-change group who are not my accomplices"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "an unspecified number of other members of my pro-change group who are not my accomplices"}]} -{"node": {"kind": "event", "label": "People the regime would have killed are spared from those killings"}, "links": [{"link": {"kind": "utility", "value": "70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "an unspecified number of my accomplices"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "an unspecified number of other members of my pro-change group who are not my accomplices"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "an unspecified number of other members of my pro-change group who are not my accomplices"}]} -{"node": {"kind": "event", "label": "I face danger from the dictator's loyalists"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "60"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "an unspecified number of my accomplices"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "an unspecified number of other members of my pro-change group who are not my accomplices"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "an unspecified number of other members of my pro-change group who are not my accomplices"}]} -{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} +{"node": {"kind": "event", "label": "The dictator is disempowered"}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i, the army officer"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "my accomplices in taking the dictator into custody"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "people previously killed by the regime because of their ethnicity or political views"}, {"link": {"kind": "utility", "value": "60"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "The regime ends"}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i, the army officer"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "82"}, "to_node": "my accomplices in taking the dictator into custody"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "people previously killed by the regime because of their ethnicity or political views"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "People who would have been killed by the regime this year remain alive"}, "links": [{"link": {"kind": "utility", "value": "20"}, "to_node": "i, the army officer"}, {"link": {"kind": "utility", "value": "-50"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "my accomplices in taking the dictator into custody"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "people previously killed by the regime because of their ethnicity or political views"}, {"link": {"kind": "utility", "value": "20"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "My accomplices and I face immediate danger from the dictator's loyalists"}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i, the army officer"}, {"link": {"kind": "utility", "value": "60"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "my accomplices in taking the dictator into custody"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "people previously killed by the regime because of their ethnicity or political views"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "i"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/tyrannicide_3_choice_2.html b/annotated_outputs/cheung_variants/tyrannicide_3_choice_2.html index ae8f3b83..b733b07e 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_3_choice_2.html +++ b/annotated_outputs/cheung_variants/tyrannicide_3_choice_2.html @@ -62,43 +62,42 @@ var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, {id: 2, label: "the dictator", color: {background: '#279aba'}}, - {id: 3, label: "my accomplices", color: {background: '#279aba'}}, - {id: 4, label: "do nothing", color: {background: '#ba2769'}}, - {id: 5, label: "value", color: {background: '#8e7db5'}}, - {id: 6, label: "The dictator remains in power", color: {background: '#e6c440'}}, - {id: 7, label: "The regime continues", color: {background: '#e6c440'}}, - {id: 8, label: "People targeted for their ethnicity\n or political views remain in\n danger", color: {background: '#e6c440'}}, - {id: 9, label: "About a thousand people are\n killed by the regime this\n year", color: {background: '#e6c440'}}, - {id: 10, label: "My goal of ending the\n regime without civil war is\n not achieved", color: {background: '#e6c440'}} + {id: 3, label: "an unspecified number of accomplices\n in my group", color: {background: '#279aba'}}, + {id: 4, label: "thousands of people previously killed\n by the regime because of\n their ethnicity or political views", color: {background: '#279aba'}}, + {id: 5, label: "do nothing", color: {background: '#ba2769'}}, + {id: 6, label: "value", color: {background: '#8e7db5'}}, + {id: 7, label: "The dictator remains free and\n in power", color: {background: '#e6c440'}}, + {id: 8, label: "The regime continues operating under\n the dictator", color: {background: '#e6c440'}}, + {id: 9, label: "About a thousand people are\n killed by the regime this\n year because of their ethnicity\n or political views", color: {background: '#e6c440'}}, + {id: 10, label: "My accomplices and I fail\n to force the end of\n the regime", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 6, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 10, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 5, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 6, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 1, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 2, label: "90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 6, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 7, to: 1, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 7, to: 2, label: "90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "-30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 9, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "-78", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "-80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/tyrannicide_3_choice_2.json b/annotated_outputs/cheung_variants/tyrannicide_3_choice_2.json index beda4bc0..fa67690b 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_3_choice_2.json +++ b/annotated_outputs/cheung_variants/tyrannicide_3_choice_2.json @@ -1,11 +1,11 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator remains in power"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The regime continues"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "People targeted for their ethnicity or political views remain in danger"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "About a thousand people are killed by the regime this year"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "My goal of ending the regime without civil war is not achieved"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator remains free and in power"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The regime continues operating under the dictator"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "About a thousand people are killed by the regime this year because of their ethnicity or political views"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "My accomplices and I fail to force the end of the regime"}]} {"node": {"kind": "being", "label": "the dictator"}, "links": []} -{"node": {"kind": "being", "label": "my accomplices"}, "links": []} -{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator remains in power"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime continues"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People targeted for their ethnicity or political views remain in danger"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "About a thousand people are killed by the regime this year"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My goal of ending the regime without civil war is not achieved"}]} +{"node": {"kind": "being", "label": "an unspecified number of accomplices in my group"}, "links": []} +{"node": {"kind": "being", "label": "thousands of people previously killed by the regime because of their ethnicity or political views"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator remains free and in power"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime continues operating under the dictator"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "About a thousand people are killed by the regime this year because of their ethnicity or political views"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My accomplices and I fail to force the end of the regime"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The dictator remains in power"}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my accomplices"}]} -{"node": {"kind": "event", "label": "The regime continues"}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my accomplices"}]} -{"node": {"kind": "event", "label": "People targeted for their ethnicity or political views remain in danger"}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "my accomplices"}]} -{"node": {"kind": "event", "label": "About a thousand people are killed by the regime this year"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "my accomplices"}]} -{"node": {"kind": "event", "label": "My goal of ending the regime without civil war is not achieved"}, "links": [{"link": {"kind": "utility", "value": "-78"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "60"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my accomplices"}]} -{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} +{"node": {"kind": "event", "label": "The dictator remains free and in power"}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "an unspecified number of accomplices in my group"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "thousands of people previously killed by the regime because of their ethnicity or political views"}]} +{"node": {"kind": "event", "label": "The regime continues operating under the dictator"}, "links": [{"link": {"kind": "utility", "value": "-40"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "an unspecified number of accomplices in my group"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "thousands of people previously killed by the regime because of their ethnicity or political views"}]} +{"node": {"kind": "event", "label": "About a thousand people are killed by the regime this year because of their ethnicity or political views"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "an unspecified number of accomplices in my group"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "thousands of people previously killed by the regime because of their ethnicity or political views"}]} +{"node": {"kind": "event", "label": "My accomplices and I fail to force the end of the regime"}, "links": [{"link": {"kind": "utility", "value": "-80"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "an unspecified number of accomplices in my group"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "thousands of people previously killed by the regime because of their ethnicity or political views"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/tyrannicide_4_choice_1.json b/annotated_outputs/cheung_variants/tyrannicide_4_choice_1.json index 5ffa1a14..5fb67b23 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_4_choice_1.json +++ b/annotated_outputs/cheung_variants/tyrannicide_4_choice_1.json @@ -1,11 +1,12 @@ -{"node": {"kind": "being", "label": "1 army officer"}, "links": []} -{"node": {"kind": "being", "label": "1 dictator"}, "links": []} +{"node": {"kind": "being", "label": "i, the army officer"}, "links": []} +{"node": {"kind": "being", "label": "the dictator"}, "links": []} {"node": {"kind": "being", "label": "my accomplices"}, "links": []} -{"node": {"kind": "being", "label": "thousands of previously imprisoned people targeted for their ethnicity or political views"}, "links": []} -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "threaten to kill the dictator"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator feels threatened"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator is forced to end his regime"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "A thousand people avoid imprisonment this year"}]} -{"node": {"kind": "action_choice", "label": "threaten to kill the dictator"}, "links": [{"link": {"kind": "v-link", "value": "-84.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator feels threatened"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator is forced to end his regime"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "A thousand people avoid imprisonment this year"}]} +{"node": {"kind": "being", "label": "people previously imprisoned by the regime because of their ethnicity or political views"}, "links": []} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "threaten to kill the dictator"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator fears for his life"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator ends his regime"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "My accomplices and I face danger of retaliation"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "People who would have been imprisoned by the regime this year avoid imprisonment"}]} +{"node": {"kind": "action_choice", "label": "threaten to kill the dictator"}, "links": [{"link": {"kind": "v-link", "value": "-83.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator fears for his life"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator ends his regime"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My accomplices and I face danger of retaliation"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People who would have been imprisoned by the regime this year avoid imprisonment"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The dictator feels threatened"}, "links": [{"link": {"kind": "utility", "value": "-45"}, "to_node": "1 army officer"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "1 dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-78"}, "to_node": "thousands of previously imprisoned people targeted for their ethnicity or political views"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}]} -{"node": {"kind": "event", "label": "The dictator is forced to end his regime"}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "1 army officer"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "1 dictator"}, {"link": {"kind": "utility", "value": "60"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "thousands of previously imprisoned people targeted for their ethnicity or political views"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "i"}]} -{"node": {"kind": "event", "label": "A thousand people avoid imprisonment this year"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "1 army officer"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "1 dictator"}, {"link": {"kind": "utility", "value": "2"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "thousands of previously imprisoned people targeted for their ethnicity or political views"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} -{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} +{"node": {"kind": "event", "label": "The dictator fears for his life"}, "links": [{"link": {"kind": "utility", "value": "-25"}, "to_node": "i, the army officer"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "30"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "people previously imprisoned by the regime because of their ethnicity or political views"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "The dictator ends his regime"}, "links": [{"link": {"kind": "utility", "value": "-40"}, "to_node": "i, the army officer"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "30"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "people previously imprisoned by the regime because of their ethnicity or political views"}, {"link": {"kind": "utility", "value": "40"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "My accomplices and I face danger of retaliation"}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i, the army officer"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "people previously imprisoned by the regime because of their ethnicity or political views"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "People who would have been imprisoned by the regime this year avoid imprisonment"}, "links": [{"link": {"kind": "utility", "value": "-15"}, "to_node": "i, the army officer"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "28"}, "to_node": "people previously imprisoned by the regime because of their ethnicity or political views"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/tyrannicide_4_choice_2.html b/annotated_outputs/cheung_variants/tyrannicide_4_choice_2.html index 9da65906..eb1c466c 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_4_choice_2.html +++ b/annotated_outputs/cheung_variants/tyrannicide_4_choice_2.html @@ -63,13 +63,13 @@ {id: 1, label: "i", color: {background: '#279aba'}}, {id: 2, label: "the dictator", color: {background: '#279aba'}}, {id: 3, label: "my accomplices", color: {background: '#279aba'}}, - {id: 4, label: "people already imprisoned by the\n regime because of their ethnicity\n or political views", color: {background: '#279aba'}}, + {id: 4, label: "thousands of people previously imprisoned\n by the regime because of\n their ethnicity or political views", color: {background: '#279aba'}}, {id: 5, label: "do nothing", color: {background: '#ba2769'}}, {id: 6, label: "value", color: {background: '#8e7db5'}}, - {id: 7, label: "The dictator remains in power", color: {background: '#e6c440'}}, - {id: 8, label: "The regime continues imprisoning people\n for their ethnicity or political\n views", color: {background: '#e6c440'}}, - {id: 9, label: "A thousand people are imprisoned\n this year", color: {background: '#e6c440'}}, - {id: 10, label: "A new start for the\n country without civil war does\n not occur", color: {background: '#e6c440'}} + {id: 7, label: "The dictator remains in power.", color: {background: '#e6c440'}}, + {id: 8, label: "The regime continues.", color: {background: '#e6c440'}}, + {id: 9, label: "A thousand people are imprisoned\n this year because of their\n ethnicity or political views.", color: {background: '#e6c440'}}, + {id: 10, label: "Those imprisoned people suffer loss\n of freedom.", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, @@ -84,20 +84,20 @@ {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 7, to: 1, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 7, to: 2, label: "90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 4, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 4, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 8, to: 4, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 9, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "-10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 4, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 4, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 2, label: "40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "20", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 4, label: "-80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/tyrannicide_4_choice_2.json b/annotated_outputs/cheung_variants/tyrannicide_4_choice_2.json index 7526b65d..f6f5e8a7 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_4_choice_2.json +++ b/annotated_outputs/cheung_variants/tyrannicide_4_choice_2.json @@ -1,11 +1,11 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator remains in power"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The regime continues imprisoning people for their ethnicity or political views"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "A thousand people are imprisoned this year"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "A new start for the country without civil war does not occur"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator remains in power."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The regime continues."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "A thousand people are imprisoned this year because of their ethnicity or political views."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Those imprisoned people suffer loss of freedom."}]} {"node": {"kind": "being", "label": "the dictator"}, "links": []} {"node": {"kind": "being", "label": "my accomplices"}, "links": []} -{"node": {"kind": "being", "label": "people already imprisoned by the regime because of their ethnicity or political views"}, "links": []} -{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator remains in power"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime continues imprisoning people for their ethnicity or political views"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "A thousand people are imprisoned this year"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "A new start for the country without civil war does not occur"}]} +{"node": {"kind": "being", "label": "thousands of people previously imprisoned by the regime because of their ethnicity or political views"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator remains in power."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime continues."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "A thousand people are imprisoned this year because of their ethnicity or political views."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Those imprisoned people suffer loss of freedom."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The dictator remains in power"}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "people already imprisoned by the regime because of their ethnicity or political views"}]} -{"node": {"kind": "event", "label": "The regime continues imprisoning people for their ethnicity or political views"}, "links": [{"link": {"kind": "utility", "value": "-85"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "60"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "people already imprisoned by the regime because of their ethnicity or political views"}]} -{"node": {"kind": "event", "label": "A thousand people are imprisoned this year"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-10"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "people already imprisoned by the regime because of their ethnicity or political views"}]} -{"node": {"kind": "event", "label": "A new start for the country without civil war does not occur"}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "people already imprisoned by the regime because of their ethnicity or political views"}]} -{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} +{"node": {"kind": "event", "label": "The dictator remains in power."}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "thousands of people previously imprisoned by the regime because of their ethnicity or political views"}]} +{"node": {"kind": "event", "label": "The regime continues."}, "links": [{"link": {"kind": "utility", "value": "-30"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "thousands of people previously imprisoned by the regime because of their ethnicity or political views"}]} +{"node": {"kind": "event", "label": "A thousand people are imprisoned this year because of their ethnicity or political views."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "72"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "thousands of people previously imprisoned by the regime because of their ethnicity or political views"}]} +{"node": {"kind": "event", "label": "Those imprisoned people suffer loss of freedom."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "40"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "20"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "thousands of people previously imprisoned by the regime because of their ethnicity or political views"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/tyrannicide_5_choice_1.json b/annotated_outputs/cheung_variants/tyrannicide_5_choice_1.json index 806b8093..df8df75f 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_5_choice_1.json +++ b/annotated_outputs/cheung_variants/tyrannicide_5_choice_1.json @@ -1,10 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "capture the dictator"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator loses political power"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The regime ends"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "About a thousand people avoid imprisonment by the regime this year"}]} -{"node": {"kind": "being", "label": "the dictator"}, "links": []} -{"node": {"kind": "being", "label": "my accomplices"}, "links": []} -{"node": {"kind": "being", "label": "thousands of people previously imprisoned by the regime"}, "links": []} -{"node": {"kind": "action_choice", "label": "capture the dictator"}, "links": [{"link": {"kind": "v-link", "value": "-59.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator loses political power"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime ends"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "About a thousand people avoid imprisonment by the regime this year"}]} +{"node": {"kind": "being", "label": "i, the army officer considering the capture"}, "links": []} +{"node": {"kind": "being", "label": "my accomplices in the planned capture"}, "links": []} +{"node": {"kind": "being", "label": "people already imprisoned by the regime for their ethnicity or political views"}, "links": []} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "capture the dictator"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator loses power."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The regime ends."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "About a thousand people avoid imprisonment by the regime this year."}]} +{"node": {"kind": "action_choice", "label": "capture the dictator"}, "links": [{"link": {"kind": "v-link", "value": "-59.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator loses power."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime ends."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "About a thousand people avoid imprisonment by the regime this year."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The dictator loses political power"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "thousands of people previously imprisoned by the regime"}]} -{"node": {"kind": "event", "label": "The regime ends"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "thousands of people previously imprisoned by the regime"}]} -{"node": {"kind": "event", "label": "About a thousand people avoid imprisonment by the regime this year"}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "25"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "thousands of people previously imprisoned by the regime"}]} -{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} +{"node": {"kind": "event", "label": "The dictator loses power."}, "links": [{"link": {"kind": "utility", "value": "55"}, "to_node": "i, the army officer considering the capture"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "my accomplices in the planned capture"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "people already imprisoned by the regime for their ethnicity or political views"}, {"link": {"kind": "utility", "value": "60"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "The regime ends."}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i, the army officer considering the capture"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my accomplices in the planned capture"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "people already imprisoned by the regime for their ethnicity or political views"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "About a thousand people avoid imprisonment by the regime this year."}, "links": [{"link": {"kind": "utility", "value": "-20"}, "to_node": "i, the army officer considering the capture"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "my accomplices in the planned capture"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "people already imprisoned by the regime for their ethnicity or political views"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/tyrannicide_5_choice_2.html b/annotated_outputs/cheung_variants/tyrannicide_5_choice_2.html index 29db3c78..fc8f8e02 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_5_choice_2.html +++ b/annotated_outputs/cheung_variants/tyrannicide_5_choice_2.html @@ -3,8 +3,8 @@ @@ -61,16 +61,15 @@ function return_vis_dataset() { var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "the dictator", color: {background: '#279aba'}}, - {id: 3, label: "my accomplices", color: {background: '#279aba'}}, - {id: 4, label: "previously imprisoned people", color: {background: '#279aba'}}, + {id: 2, label: "my accomplices in the group\n seeking to capture the dictator", color: {background: '#279aba'}}, + {id: 3, label: "the dictator", color: {background: '#279aba'}}, + {id: 4, label: "the thousands of people already\n imprisoned by the regime", color: {background: '#279aba'}}, {id: 5, label: "do nothing", color: {background: '#ba2769'}}, {id: 6, label: "value", color: {background: '#8e7db5'}}, {id: 7, label: "The dictator remains in power", color: {background: '#e6c440'}}, - {id: 8, label: "The regime continues imprisoning people\n for their ethnicity or political\n views", color: {background: '#e6c440'}}, - {id: 9, label: "A thousand people are imprisoned\n by the regime this year", color: {background: '#e6c440'}}, - {id: 10, label: "Those imprisoned people lose their\n freedom and suffer imprisonment", color: {background: '#e6c440'}}, - {id: 11, label: "My accomplices and I avoid\n the immediate danger of attempting\n to capture the dictator", color: {background: '#e6c440'}} + {id: 8, label: "The regime continues", color: {background: '#e6c440'}}, + {id: 9, label: "About a thousand people are\n imprisoned this year because of\n their ethnicity or political views", color: {background: '#e6c440'}}, + {id: 10, label: "Those imprisoned people lose their\n freedom", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, @@ -78,33 +77,27 @@ {from: 1, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 10, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 6, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 7, to: 1, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 7, to: 4, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "-80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 4, label: "-82", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "-25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 4, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "-80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "-90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "-15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 4, label: "-90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 4, label: "-30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 2, label: "-25", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 4, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/tyrannicide_5_choice_2.json b/annotated_outputs/cheung_variants/tyrannicide_5_choice_2.json index 7cb7781b..9ec4e3ca 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_5_choice_2.json +++ b/annotated_outputs/cheung_variants/tyrannicide_5_choice_2.json @@ -1,12 +1,11 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator remains in power"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The regime continues imprisoning people for their ethnicity or political views"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "A thousand people are imprisoned by the regime this year"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Those imprisoned people lose their freedom and suffer imprisonment"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "My accomplices and I avoid the immediate danger of attempting to capture the dictator"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator remains in power"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The regime continues"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "About a thousand people are imprisoned this year because of their ethnicity or political views"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Those imprisoned people lose their freedom"}]} +{"node": {"kind": "being", "label": "my accomplices in the group seeking to capture the dictator"}, "links": []} {"node": {"kind": "being", "label": "the dictator"}, "links": []} -{"node": {"kind": "being", "label": "my accomplices"}, "links": []} -{"node": {"kind": "being", "label": "previously imprisoned people"}, "links": []} -{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator remains in power"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime continues imprisoning people for their ethnicity or political views"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "A thousand people are imprisoned by the regime this year"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Those imprisoned people lose their freedom and suffer imprisonment"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My accomplices and I avoid the immediate danger of attempting to capture the dictator"}]} +{"node": {"kind": "being", "label": "the thousands of people already imprisoned by the regime"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator remains in power"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime continues"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "About a thousand people are imprisoned this year because of their ethnicity or political views"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Those imprisoned people lose their freedom"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The dictator remains in power"}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "previously imprisoned people"}]} -{"node": {"kind": "event", "label": "The regime continues imprisoning people for their ethnicity or political views"}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-82"}, "to_node": "previously imprisoned people"}]} -{"node": {"kind": "event", "label": "A thousand people are imprisoned by the regime this year"}, "links": [{"link": {"kind": "utility", "value": "-25"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "60"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "previously imprisoned people"}]} -{"node": {"kind": "event", "label": "Those imprisoned people lose their freedom and suffer imprisonment"}, "links": [{"link": {"kind": "utility", "value": "-80"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "previously imprisoned people"}]} -{"node": {"kind": "event", "label": "My accomplices and I avoid the immediate danger of attempting to capture the dictator"}, "links": [{"link": {"kind": "utility", "value": "55"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "previously imprisoned people"}]} -{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} +{"node": {"kind": "event", "label": "The dictator remains in power"}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "my accomplices in the group seeking to capture the dictator"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the thousands of people already imprisoned by the regime"}]} +{"node": {"kind": "event", "label": "The regime continues"}, "links": [{"link": {"kind": "utility", "value": "-55"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "my accomplices in the group seeking to capture the dictator"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "the thousands of people already imprisoned by the regime"}]} +{"node": {"kind": "event", "label": "About a thousand people are imprisoned this year because of their ethnicity or political views"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "my accomplices in the group seeking to capture the dictator"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-30"}, "to_node": "the thousands of people already imprisoned by the regime"}]} +{"node": {"kind": "event", "label": "Those imprisoned people lose their freedom"}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "my accomplices in the group seeking to capture the dictator"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "the thousands of people already imprisoned by the regime"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/tyrannicide_6_choice_1.json b/annotated_outputs/cheung_variants/tyrannicide_6_choice_1.json index 9a9d9010..50289dfa 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_6_choice_1.json +++ b/annotated_outputs/cheung_variants/tyrannicide_6_choice_1.json @@ -1,10 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "take the dictator into custody"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator loses political power."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The regime ends."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "About a thousand people are not imprisoned by the regime this year."}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "take the dictator into custody"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator loses political power"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictatorship ends"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "People who would have been imprisoned by the regime this year avoid imprisonment"}]} {"node": {"kind": "being", "label": "the dictator"}, "links": []} {"node": {"kind": "being", "label": "my accomplices"}, "links": []} -{"node": {"kind": "being", "label": "thousands of people previously imprisoned by the regime"}, "links": []} -{"node": {"kind": "action_choice", "label": "take the dictator into custody"}, "links": [{"link": {"kind": "v-link", "value": "-33.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator loses political power."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime ends."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "About a thousand people are not imprisoned by the regime this year."}]} +{"node": {"kind": "being", "label": "thousands of people previously imprisoned by the regime because of their ethnicity or political views"}, "links": []} +{"node": {"kind": "action_choice", "label": "take the dictator into custody"}, "links": [{"link": {"kind": "v-link", "value": "-33.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator loses political power"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictatorship ends"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People who would have been imprisoned by the regime this year avoid imprisonment"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The dictator loses political power."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "thousands of people previously imprisoned by the regime"}]} -{"node": {"kind": "event", "label": "The regime ends."}, "links": [{"link": {"kind": "utility", "value": "70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "thousands of people previously imprisoned by the regime"}]} -{"node": {"kind": "event", "label": "About a thousand people are not imprisoned by the regime this year."}, "links": [{"link": {"kind": "utility", "value": "8"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "12"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "thousands of people previously imprisoned by the regime"}]} -{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} +{"node": {"kind": "event", "label": "The dictator loses political power"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "10"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "88"}, "to_node": "thousands of people previously imprisoned by the regime because of their ethnicity or political views"}]} +{"node": {"kind": "event", "label": "The dictatorship ends"}, "links": [{"link": {"kind": "utility", "value": "40"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "thousands of people previously imprisoned by the regime because of their ethnicity or political views"}]} +{"node": {"kind": "event", "label": "People who would have been imprisoned by the regime this year avoid imprisonment"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "40"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "20"}, "to_node": "thousands of people previously imprisoned by the regime because of their ethnicity or political views"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/tyrannicide_6_choice_2.html b/annotated_outputs/cheung_variants/tyrannicide_6_choice_2.html index 2b8e3950..9b08f5b1 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_6_choice_2.html +++ b/annotated_outputs/cheung_variants/tyrannicide_6_choice_2.html @@ -62,49 +62,47 @@ var nodes = new vis.DataSet([ {id: 1, label: "i", color: {background: '#279aba'}}, {id: 2, label: "the dictator", color: {background: '#279aba'}}, - {id: 3, label: "my accomplices", color: {background: '#279aba'}}, - {id: 4, label: "people already imprisoned by the\n regime", color: {background: '#279aba'}}, - {id: 5, label: "do nothing", color: {background: '#ba2769'}}, - {id: 6, label: "value", color: {background: '#8e7db5'}}, - {id: 7, label: "The dictator remains free and\n in power.", color: {background: '#e6c440'}}, - {id: 8, label: "The regime continues.", color: {background: '#e6c440'}}, - {id: 9, label: "About a thousand people are\n imprisoned by the regime this\n year.", color: {background: '#e6c440'}}, - {id: 10, label: "People are imprisoned because of\n their ethnicity or political views.", color: {background: '#e6c440'}}, - {id: 11, label: "My accomplices and I avoid\n the immediate danger of attempting\n to seize the dictator.", color: {background: '#e6c440'}} + {id: 3, label: "my accomplices in the plan\n for a new start without\n civil war", color: {background: '#279aba'}}, + {id: 4, label: "other members of the regime\n involved in maintaining the dictatorship\n and imprisoning people", color: {background: '#279aba'}}, + {id: 5, label: "people who have already been\n imprisoned by the regime because\n of their ethnicity or political\n views", color: {background: '#279aba'}}, + {id: 6, label: "do nothing", color: {background: '#ba2769'}}, + {id: 7, label: "value", color: {background: '#8e7db5'}}, + {id: 8, label: "The dictator remains in power", color: {background: '#e6c440'}}, + {id: 9, label: "The regime continues", color: {background: '#e6c440'}}, + {id: 10, label: "About a thousand people are\n imprisoned this year because of\n their ethnicity or political views", color: {background: '#e6c440'}}, + {id: 11, label: "My group does not achieve\n its goal of ending the\n regime without civil war", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 6, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 10, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 6, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 4, label: "-95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 1, to: 11, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 7, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 8, to: 2, label: "90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 4, label: "-90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 4, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "-15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "-20", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "-80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 4, label: "80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 5, label: "-85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 4, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 5, label: "-90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 2, label: "65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "-62", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 4, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 5, label: "-40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 1, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 2, label: "70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 4, label: "45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 11, to: 5, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/tyrannicide_6_choice_2.json b/annotated_outputs/cheung_variants/tyrannicide_6_choice_2.json index 5a9d194b..9ca06ff4 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_6_choice_2.json +++ b/annotated_outputs/cheung_variants/tyrannicide_6_choice_2.json @@ -1,12 +1,12 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator remains free and in power."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The regime continues."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "About a thousand people are imprisoned by the regime this year."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "People are imprisoned because of their ethnicity or political views."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "My accomplices and I avoid the immediate danger of attempting to seize the dictator."}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator remains in power"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The regime continues"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "About a thousand people are imprisoned this year because of their ethnicity or political views"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "My group does not achieve its goal of ending the regime without civil war"}]} {"node": {"kind": "being", "label": "the dictator"}, "links": []} -{"node": {"kind": "being", "label": "my accomplices"}, "links": []} -{"node": {"kind": "being", "label": "people already imprisoned by the regime"}, "links": []} -{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator remains free and in power."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime continues."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "About a thousand people are imprisoned by the regime this year."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People are imprisoned because of their ethnicity or political views."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My accomplices and I avoid the immediate danger of attempting to seize the dictator."}]} +{"node": {"kind": "being", "label": "my accomplices in the plan for a new start without civil war"}, "links": []} +{"node": {"kind": "being", "label": "other members of the regime involved in maintaining the dictatorship and imprisoning people"}, "links": []} +{"node": {"kind": "being", "label": "people who have already been imprisoned by the regime because of their ethnicity or political views"}, "links": []} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator remains in power"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime continues"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "About a thousand people are imprisoned this year because of their ethnicity or political views"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My group does not achieve its goal of ending the regime without civil war"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The dictator remains free and in power."}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-95"}, "to_node": "people already imprisoned by the regime"}]} -{"node": {"kind": "event", "label": "The regime continues."}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "people already imprisoned by the regime"}]} -{"node": {"kind": "event", "label": "About a thousand people are imprisoned by the regime this year."}, "links": [{"link": {"kind": "utility", "value": "-35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "people already imprisoned by the regime"}]} -{"node": {"kind": "event", "label": "People are imprisoned because of their ethnicity or political views."}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "people already imprisoned by the regime"}]} -{"node": {"kind": "event", "label": "My accomplices and I avoid the immediate danger of attempting to seize the dictator."}, "links": [{"link": {"kind": "utility", "value": "45"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-20"}, "to_node": "people already imprisoned by the regime"}]} -{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} +{"node": {"kind": "event", "label": "The dictator remains in power"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "my accomplices in the plan for a new start without civil war"}, {"link": {"kind": "utility", "value": "80"}, "to_node": "other members of the regime involved in maintaining the dictatorship and imprisoning people"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "people who have already been imprisoned by the regime because of their ethnicity or political views"}]} +{"node": {"kind": "event", "label": "The regime continues"}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "my accomplices in the plan for a new start without civil war"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "other members of the regime involved in maintaining the dictatorship and imprisoning people"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "people who have already been imprisoned by the regime because of their ethnicity or political views"}]} +{"node": {"kind": "event", "label": "About a thousand people are imprisoned this year because of their ethnicity or political views"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "65"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-62"}, "to_node": "my accomplices in the plan for a new start without civil war"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "other members of the regime involved in maintaining the dictatorship and imprisoning people"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "people who have already been imprisoned by the regime because of their ethnicity or political views"}]} +{"node": {"kind": "event", "label": "My group does not achieve its goal of ending the regime without civil war"}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "my accomplices in the plan for a new start without civil war"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "other members of the regime involved in maintaining the dictatorship and imprisoning people"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "people who have already been imprisoned by the regime because of their ethnicity or political views"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/tyrannicide_7_choice_1.json b/annotated_outputs/cheung_variants/tyrannicide_7_choice_1.json index 89d79753..b9a498fc 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_7_choice_1.json +++ b/annotated_outputs/cheung_variants/tyrannicide_7_choice_1.json @@ -1,11 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "threaten to kill the dictator"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator fears for his life"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator is disempowered"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator ends his regime"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "People targeted by the regime avoid this year's economic repression"}, {"link": {"kind": "b_link", "value": "C+I-K-"}, "to_node": "My accomplices and I face the stress and danger of retaliation"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "threaten to kill the dictator"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator experiences fear for his life."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator is disempowered."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator's regime ends."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "A thousand people avoid economic repression this year."}]} {"node": {"kind": "being", "label": "the dictator"}, "links": []} {"node": {"kind": "being", "label": "my accomplices"}, "links": []} -{"node": {"kind": "action_choice", "label": "threaten to kill the dictator"}, "links": [{"link": {"kind": "v-link", "value": "-84.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator fears for his life"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator is disempowered"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator ends his regime"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People targeted by the regime avoid this year's economic repression"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My accomplices and I face the stress and danger of retaliation"}]} +{"node": {"kind": "action_choice", "label": "threaten to kill the dictator"}, "links": [{"link": {"kind": "v-link", "value": "-83.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator experiences fear for his life."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator is disempowered."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator's regime ends."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "A thousand people avoid economic repression this year."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The dictator fears for his life"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "the dictator"}]} -{"node": {"kind": "event", "label": "The dictator is disempowered"}, "links": [{"link": {"kind": "utility", "value": "60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the dictator"}]} -{"node": {"kind": "event", "label": "The dictator ends his regime"}, "links": [{"link": {"kind": "utility", "value": "75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the dictator"}]} -{"node": {"kind": "event", "label": "People targeted by the regime avoid this year's economic repression"}, "links": [{"link": {"kind": "utility", "value": "70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-55"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "the dictator"}]} -{"node": {"kind": "event", "label": "My accomplices and I face the stress and danger of retaliation"}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "the dictator"}]} -{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} +{"node": {"kind": "event", "label": "The dictator experiences fear for his life."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "20"}, "to_node": "my accomplices"}]} +{"node": {"kind": "event", "label": "The dictator is disempowered."}, "links": [{"link": {"kind": "utility", "value": "65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "my accomplices"}]} +{"node": {"kind": "event", "label": "The dictator's regime ends."}, "links": [{"link": {"kind": "utility", "value": "70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "40"}, "to_node": "my accomplices"}]} +{"node": {"kind": "event", "label": "A thousand people avoid economic repression this year."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-15"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my accomplices"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/tyrannicide_7_choice_2.html b/annotated_outputs/cheung_variants/tyrannicide_7_choice_2.html index 6de60bdb..9b17698b 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_7_choice_2.html +++ b/annotated_outputs/cheung_variants/tyrannicide_7_choice_2.html @@ -3,8 +3,8 @@ @@ -60,58 +60,44 @@ } function return_vis_dataset() { var nodes = new vis.DataSet([ - {id: 1, label: "i", color: {background: '#279aba'}}, - {id: 2, label: "the dictator", color: {background: '#279aba'}}, - {id: 3, label: "1+ accomplices in my group", color: {background: '#279aba'}}, - {id: 4, label: "1000s of other people already\n kept in poverty because of\n their ethnicity or political views", color: {background: '#279aba'}}, + {id: 1, label: "i, the army officer", color: {background: '#279aba'}}, + {id: 2, label: "my accomplices in the group\n seeking to end the regime", color: {background: '#279aba'}}, + {id: 3, label: "the dictator", color: {background: '#279aba'}}, + {id: 4, label: "i", color: {background: '#279aba'}}, {id: 5, label: "do nothing", color: {background: '#ba2769'}}, {id: 6, label: "value", color: {background: '#8e7db5'}}, - {id: 7, label: "The dictator remains in power", color: {background: '#e6c440'}}, - {id: 8, label: "The regime continues", color: {background: '#e6c440'}}, - {id: 9, label: "A thousand people continue to\n be economically repressed this year", color: {background: '#e6c440'}}, - {id: 10, label: "People targeted for their ethnicity\n or political views remain under\n discriminatory rule", color: {background: '#e6c440'}}, - {id: 11, label: "Thousands of people remain in\n poverty", color: {background: '#e6c440'}}, - {id: 12, label: "My group does not disempower\n the dictator", color: {background: '#e6c440'}} + {id: 7, label: "The dictator remains in power.", color: {background: '#e6c440'}}, + {id: 8, label: "My group does not disempower\n the dictator.", color: {background: '#e6c440'}}, + {id: 9, label: "A thousand people continue to\n be economically repressed this year.", color: {background: '#e6c440'}}, + {id: 10, label: "People targeted for their ethnicity\n or political views continue to\n live in poverty.", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ - {from: 1, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 11, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 12, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 5, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 4, to: 10, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 6, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 5, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 11, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 5, to: 12, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 4, label: "-90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 3, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 4, label: "-90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "20", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 4, label: "-45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "-90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 4, label: "-90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 2, label: "30", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 3, label: "15", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 11, to: 4, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 1, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 3, label: "-72", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 12, to: 4, label: "-92", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "-80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 4, label: "-40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 1, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 4, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "-10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "-35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 1, label: "-10", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 2, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 3, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 10, to: 4, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/tyrannicide_7_choice_2.json b/annotated_outputs/cheung_variants/tyrannicide_7_choice_2.json index 16d4ff88..e93e53ef 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_7_choice_2.json +++ b/annotated_outputs/cheung_variants/tyrannicide_7_choice_2.json @@ -1,13 +1,11 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator remains in power"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The regime continues"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "A thousand people continue to be economically repressed this year"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "People targeted for their ethnicity or political views remain under discriminatory rule"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "Thousands of people remain in poverty"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "My group does not disempower the dictator"}]} +{"node": {"kind": "being", "label": "i, the army officer"}, "links": []} +{"node": {"kind": "being", "label": "my accomplices in the group seeking to end the regime"}, "links": []} {"node": {"kind": "being", "label": "the dictator"}, "links": []} -{"node": {"kind": "being", "label": "1+ accomplices in my group"}, "links": []} -{"node": {"kind": "being", "label": "1000s of other people already kept in poverty because of their ethnicity or political views"}, "links": []} -{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator remains in power"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime continues"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "A thousand people continue to be economically repressed this year"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People targeted for their ethnicity or political views remain under discriminatory rule"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "Thousands of people remain in poverty"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My group does not disempower the dictator"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator remains in power."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "My group does not disempower the dictator."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "A thousand people continue to be economically repressed this year."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "People targeted for their ethnicity or political views continue to live in poverty."}]} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator remains in power."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My group does not disempower the dictator."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "A thousand people continue to be economically repressed this year."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People targeted for their ethnicity or political views continue to live in poverty."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The dictator remains in power"}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "1+ accomplices in my group"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "1000s of other people already kept in poverty because of their ethnicity or political views"}]} -{"node": {"kind": "event", "label": "The regime continues"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "1+ accomplices in my group"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "1000s of other people already kept in poverty because of their ethnicity or political views"}]} -{"node": {"kind": "event", "label": "A thousand people continue to be economically repressed this year"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "20"}, "to_node": "1+ accomplices in my group"}, {"link": {"kind": "utility", "value": "-45"}, "to_node": "1000s of other people already kept in poverty because of their ethnicity or political views"}]} -{"node": {"kind": "event", "label": "People targeted for their ethnicity or political views remain under discriminatory rule"}, "links": [{"link": {"kind": "utility", "value": "-90"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "80"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "1+ accomplices in my group"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "1000s of other people already kept in poverty because of their ethnicity or political views"}]} -{"node": {"kind": "event", "label": "Thousands of people remain in poverty"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "30"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "1+ accomplices in my group"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "1000s of other people already kept in poverty because of their ethnicity or political views"}]} -{"node": {"kind": "event", "label": "My group does not disempower the dictator"}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-72"}, "to_node": "1+ accomplices in my group"}, {"link": {"kind": "utility", "value": "-92"}, "to_node": "1000s of other people already kept in poverty because of their ethnicity or political views"}]} -{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} +{"node": {"kind": "event", "label": "The dictator remains in power."}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i, the army officer"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "my accomplices in the group seeking to end the regime"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-40"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "My group does not disempower the dictator."}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i, the army officer"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "my accomplices in the group seeking to end the regime"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "A thousand people continue to be economically repressed this year."}, "links": [{"link": {"kind": "utility", "value": "-10"}, "to_node": "i, the army officer"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "my accomplices in the group seeking to end the regime"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"node": {"kind": "event", "label": "People targeted for their ethnicity or political views continue to live in poverty."}, "links": [{"link": {"kind": "utility", "value": "-10"}, "to_node": "i, the army officer"}, {"link": {"kind": "utility", "value": "-65"}, "to_node": "my accomplices in the group seeking to end the regime"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "i"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/tyrannicide_8_choice_1.json b/annotated_outputs/cheung_variants/tyrannicide_8_choice_1.json index 16e9e3f2..5e6fc8ed 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_8_choice_1.json +++ b/annotated_outputs/cheung_variants/tyrannicide_8_choice_1.json @@ -1,10 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "capture the dictator"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator loses freedom of movement."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator loses political power."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictatorship ends."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "People targeted by the regime for their ethnicity or political views stop being economically repressed by that regime this year."}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "capture the dictator"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator loses power"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The regime ends"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "A thousand people avoid economic repression this year"}]} {"node": {"kind": "being", "label": "the dictator"}, "links": []} -{"node": {"kind": "being", "label": "my accomplices"}, "links": []} -{"node": {"kind": "action_choice", "label": "capture the dictator"}, "links": [{"link": {"kind": "v-link", "value": "-59.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator loses freedom of movement."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator loses political power."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictatorship ends."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People targeted by the regime for their ethnicity or political views stop being economically repressed by that regime this year."}]} +{"node": {"kind": "being", "label": "my accomplices in the capture plan"}, "links": []} +{"node": {"kind": "being", "label": "other people already kept in poverty by the regime because of their ethnicity or political views"}, "links": []} +{"node": {"kind": "action_choice", "label": "capture the dictator"}, "links": [{"link": {"kind": "v-link", "value": "-59.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator loses power"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime ends"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "A thousand people avoid economic repression this year"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The dictator loses freedom of movement."}, "links": [{"link": {"kind": "utility", "value": "60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my accomplices"}]} -{"node": {"kind": "event", "label": "The dictator loses political power."}, "links": [{"link": {"kind": "utility", "value": "70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my accomplices"}]} -{"node": {"kind": "event", "label": "The dictatorship ends."}, "links": [{"link": {"kind": "utility", "value": "75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-75"}, "to_node": "my accomplices"}]} -{"node": {"kind": "event", "label": "People targeted by the regime for their ethnicity or political views stop being economically repressed by that regime this year."}, "links": [{"link": {"kind": "utility", "value": "75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "15"}, "to_node": "my accomplices"}]} -{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} +{"node": {"kind": "event", "label": "The dictator loses power"}, "links": [{"link": {"kind": "utility", "value": "60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "60"}, "to_node": "my accomplices in the capture plan"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "other people already kept in poverty by the regime because of their ethnicity or political views"}]} +{"node": {"kind": "event", "label": "The regime ends"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my accomplices in the capture plan"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "other people already kept in poverty by the regime because of their ethnicity or political views"}]} +{"node": {"kind": "event", "label": "A thousand people avoid economic repression this year"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my accomplices in the capture plan"}, {"link": {"kind": "utility", "value": "5"}, "to_node": "other people already kept in poverty by the regime because of their ethnicity or political views"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/tyrannicide_8_choice_2.html b/annotated_outputs/cheung_variants/tyrannicide_8_choice_2.html index d984c2f9..08ca81af 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_8_choice_2.html +++ b/annotated_outputs/cheung_variants/tyrannicide_8_choice_2.html @@ -3,8 +3,8 @@ @@ -65,40 +65,28 @@ {id: 3, label: "my accomplices", color: {background: '#279aba'}}, {id: 4, label: "do nothing", color: {background: '#ba2769'}}, {id: 5, label: "value", color: {background: '#8e7db5'}}, - {id: 6, label: "The dictator remains uncaptured.", color: {background: '#e6c440'}}, - {id: 7, label: "The dictatorship stays in power.", color: {background: '#e6c440'}}, - {id: 8, label: "A thousand people continue to\n be economically repressed this year.", color: {background: '#e6c440'}}, - {id: 9, label: "People targeted for their ethnicity\n or political views remain in\n poverty under the regime.", color: {background: '#e6c440'}}, - {id: 10, label: "My group's effort to end\n the regime without a civil\n war does not move forward.", color: {background: '#e6c440'}} + {id: 6, label: "The dictator remains in power", color: {background: '#e6c440'}}, + {id: 7, label: "The regime continues", color: {background: '#e6c440'}}, + {id: 8, label: "A thousand people continue to\n be economically repressed this year", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 6, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 7, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 1, to: 8, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 9, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 1, to: 10, label: "C+I-K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 5, label: "-61.0", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 6, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 4, to: 10, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 6, to: 1, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 2, label: "70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "80", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 2, label: "90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 3, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 8, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 8, to: 2, label: "55", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "35", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 1, label: "-65", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 10, to: 2, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/tyrannicide_8_choice_2.json b/annotated_outputs/cheung_variants/tyrannicide_8_choice_2.json index 1a540b9e..6b0322d8 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_8_choice_2.json +++ b/annotated_outputs/cheung_variants/tyrannicide_8_choice_2.json @@ -1,11 +1,9 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator remains uncaptured."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictatorship stays in power."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "A thousand people continue to be economically repressed this year."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "People targeted for their ethnicity or political views remain in poverty under the regime."}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "My group's effort to end the regime without a civil war does not move forward."}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator remains in power"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The regime continues"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "A thousand people continue to be economically repressed this year"}]} {"node": {"kind": "being", "label": "the dictator"}, "links": []} {"node": {"kind": "being", "label": "my accomplices"}, "links": []} -{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator remains uncaptured."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictatorship stays in power."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "A thousand people continue to be economically repressed this year."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People targeted for their ethnicity or political views remain in poverty under the regime."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My group's effort to end the regime without a civil war does not move forward."}]} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator remains in power"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime continues"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "A thousand people continue to be economically repressed this year"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The dictator remains uncaptured."}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "the dictator"}]} -{"node": {"kind": "event", "label": "The dictatorship stays in power."}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "80"}, "to_node": "the dictator"}]} -{"node": {"kind": "event", "label": "A thousand people continue to be economically repressed this year."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "the dictator"}]} -{"node": {"kind": "event", "label": "People targeted for their ethnicity or political views remain in poverty under the regime."}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "the dictator"}]} -{"node": {"kind": "event", "label": "My group's effort to end the regime without a civil war does not move forward."}, "links": [{"link": {"kind": "utility", "value": "-65"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "60"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "the dictator"}]} -{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} +{"node": {"kind": "event", "label": "The dictator remains in power"}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my accomplices"}]} +{"node": {"kind": "event", "label": "The regime continues"}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "my accomplices"}]} +{"node": {"kind": "event", "label": "A thousand people continue to be economically repressed this year"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "55"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my accomplices"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/tyrannicide_9_choice_1.json b/annotated_outputs/cheung_variants/tyrannicide_9_choice_1.json index 0ee233f4..97e46f63 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_9_choice_1.json +++ b/annotated_outputs/cheung_variants/tyrannicide_9_choice_1.json @@ -1,9 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "take the dictator into custody"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator loses political power."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The regime ends."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "A thousand people avoid economic repression by the regime this year."}]} -{"node": {"kind": "being", "label": "the dictator"}, "links": []} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "take the dictator into custody"}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator loses freedom of movement."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictator loses political power."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "The dictatorship ends."}, {"link": {"kind": "b_link", "value": "C+I+K+"}, "to_node": "A thousand people avoid economic repression this year."}]} {"node": {"kind": "being", "label": "my accomplices"}, "links": []} -{"node": {"kind": "action_choice", "label": "take the dictator into custody"}, "links": [{"link": {"kind": "v-link", "value": "-33.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator loses political power."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime ends."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "A thousand people avoid economic repression by the regime this year."}]} +{"node": {"kind": "being", "label": "the dictator"}, "links": []} +{"node": {"kind": "action_choice", "label": "take the dictator into custody"}, "links": [{"link": {"kind": "v-link", "value": "-33.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator loses freedom of movement."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator loses political power."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictatorship ends."}, {"link": {"kind": "e_link", "value": ""}, "to_node": "A thousand people avoid economic repression this year."}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The dictator loses political power."}, "links": [{"link": {"kind": "utility", "value": "60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my accomplices"}]} -{"node": {"kind": "event", "label": "The regime ends."}, "links": [{"link": {"kind": "utility", "value": "60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "my accomplices"}]} -{"node": {"kind": "event", "label": "A thousand people avoid economic repression by the regime this year."}, "links": [{"link": {"kind": "utility", "value": "12"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "-35"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "8"}, "to_node": "my accomplices"}]} -{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} +{"node": {"kind": "event", "label": "The dictator loses freedom of movement."}, "links": [{"link": {"kind": "utility", "value": "35"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "the dictator"}]} +{"node": {"kind": "event", "label": "The dictator loses political power."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "35"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-80"}, "to_node": "the dictator"}]} +{"node": {"kind": "event", "label": "The dictatorship ends."}, "links": [{"link": {"kind": "utility", "value": "70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "70"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-90"}, "to_node": "the dictator"}]} +{"node": {"kind": "event", "label": "A thousand people avoid economic repression this year."}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my accomplices"}, {"link": {"kind": "utility", "value": "-25"}, "to_node": "the dictator"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/annotated_outputs/cheung_variants/tyrannicide_9_choice_2.html b/annotated_outputs/cheung_variants/tyrannicide_9_choice_2.html index aacc50c0..5c88142a 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_9_choice_2.html +++ b/annotated_outputs/cheung_variants/tyrannicide_9_choice_2.html @@ -65,10 +65,10 @@ {id: 3, label: "my accomplices", color: {background: '#279aba'}}, {id: 4, label: "do nothing", color: {background: '#ba2769'}}, {id: 5, label: "value", color: {background: '#8e7db5'}}, - {id: 6, label: "The dictator remains in power", color: {background: '#e6c440'}}, + {id: 6, label: "The dictator remains free and\n in power", color: {background: '#e6c440'}}, {id: 7, label: "The regime continues", color: {background: '#e6c440'}}, - {id: 8, label: "A thousand people continue to\n be economically repressed this year", color: {background: '#e6c440'}}, - {id: 9, label: "My group does not achieve\n a new start for the\n country", color: {background: '#e6c440'}} + {id: 8, label: "A thousand people are economically\n repressed this year", color: {background: '#e6c440'}}, + {id: 9, label: "People targeted for their ethnicity\n or political views remain in\n poverty", color: {background: '#e6c440'}} ]); var edges = new vis.DataSet([ {from: 1, to: 4, label: "C+I+K+", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, @@ -81,18 +81,18 @@ {from: 4, to: 7, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 8, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 4, to: 9, label: "", color: {color: '#b518a8', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 1, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 6, to: 2, label: "90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 1, label: "-75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 6, to: 2, label: "95", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 6, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 1, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 7, to: 2, label: "90", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 7, to: 2, label: "85", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 7, to: 3, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 8, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 8, to: 2, label: "60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 8, to: 2, label: "40", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, {from: 8, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 1, label: "-70", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 2, label: "75", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, - {from: 9, to: 3, label: "-60", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 1, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 2, label: "45", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, + {from: 9, to: 3, label: "0", color: {color: '#62a3a2', highlight: '#f540e6'}, font: { size: 18 }, arrows: { to: { enabled: true, type: 'arrow'}}}, ]); return ([edges,nodes]) diff --git a/annotated_outputs/cheung_variants/tyrannicide_9_choice_2.json b/annotated_outputs/cheung_variants/tyrannicide_9_choice_2.json index 417b4add..3454a436 100644 --- a/annotated_outputs/cheung_variants/tyrannicide_9_choice_2.json +++ b/annotated_outputs/cheung_variants/tyrannicide_9_choice_2.json @@ -1,10 +1,10 @@ -{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator remains in power"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The regime continues"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "A thousand people continue to be economically repressed this year"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "My group does not achieve a new start for the country"}]} +{"node": {"kind": "being", "label": "i"}, "links": [{"link": {"kind": "b-link", "value": "C+I+K+"}, "to_node": "do nothing"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The dictator remains free and in power"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "The regime continues"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "A thousand people are economically repressed this year"}, {"link": {"kind": "b_link", "value": "C+I-K+"}, "to_node": "People targeted for their ethnicity or political views remain in poverty"}]} {"node": {"kind": "being", "label": "the dictator"}, "links": []} {"node": {"kind": "being", "label": "my accomplices"}, "links": []} -{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator remains in power"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime continues"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "A thousand people continue to be economically repressed this year"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "My group does not achieve a new start for the country"}]} +{"node": {"kind": "action_choice", "label": "do nothing"}, "links": [{"link": {"kind": "v-link", "value": "-61.0"}, "to_node": "value"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The dictator remains free and in power"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "The regime continues"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "A thousand people are economically repressed this year"}, {"link": {"kind": "e_link", "value": ""}, "to_node": "People targeted for their ethnicity or political views remain in poverty"}]} {"node": {"kind": "value", "label": "value"}, "links": []} -{"node": {"kind": "event", "label": "The dictator remains in power"}, "links": [{"link": {"kind": "utility", "value": "-60"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my accomplices"}]} -{"node": {"kind": "event", "label": "The regime continues"}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "90"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my accomplices"}]} -{"node": {"kind": "event", "label": "A thousand people continue to be economically repressed this year"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "60"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my accomplices"}]} -{"node": {"kind": "event", "label": "My group does not achieve a new start for the country"}, "links": [{"link": {"kind": "utility", "value": "-70"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "75"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-60"}, "to_node": "my accomplices"}]} -{"version": "6fb5583358d5de2ec98c2997165a8f02bebb18f4"} +{"node": {"kind": "event", "label": "The dictator remains free and in power"}, "links": [{"link": {"kind": "utility", "value": "-75"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "95"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my accomplices"}]} +{"node": {"kind": "event", "label": "The regime continues"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "85"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "-70"}, "to_node": "my accomplices"}]} +{"node": {"kind": "event", "label": "A thousand people are economically repressed this year"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "40"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my accomplices"}]} +{"node": {"kind": "event", "label": "People targeted for their ethnicity or political views remain in poverty"}, "links": [{"link": {"kind": "utility", "value": "0"}, "to_node": "i"}, {"link": {"kind": "utility", "value": "45"}, "to_node": "the dictator"}, {"link": {"kind": "utility", "value": "0"}, "to_node": "my accomplices"}]} +{"version": "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2"} diff --git a/run_annotation/config_cheung_v1.yml b/run_annotation/config_cheung_v1.yml index af6e1503..5c96befb 100644 --- a/run_annotation/config_cheung_v1.yml +++ b/run_annotation/config_cheung_v1.yml @@ -1,6 +1,6 @@ input_path: "scenarios_inputs/cheung_variants/" -input_file: "tyrannicide.json" -commit_hash: "6fb5583358d5de2ec98c2997165a8f02bebb18f4" +input_file: "lifeboat.json" +commit_hash: "2fa8046ddac5f5cfeaefa48cb2c225e824c9caa2" output_path: "annotated_outputs/cheung_variants/" scenario_ids: [1,2,3,4,5,6,7,8,9] write_qualtrics: false diff --git a/run_annotation/scenario_exploration_notebook_AL.ipynb b/run_annotation/scenario_exploration_notebook_AL.ipynb index a70fba4e..24f04e53 100644 --- a/run_annotation/scenario_exploration_notebook_AL.ipynb +++ b/run_annotation/scenario_exploration_notebook_AL.ipynb @@ -114,7 +114,7 @@ "outputs": [], "source": [ "#set scenario file filename\n", - "FILENAME = 'tyrannicide2.json'\n", + "FILENAME = 'tyrannicide.json'\n", "\n", "#select scenario and action choice\n", "SCENARIO_ID = 1\n", @@ -135,6 +135,44 @@ "# print(json.dumps(scenario_json, indent=4))" ] }, + { + "cell_type": "markdown", + "id": "f2f088ce", + "metadata": {}, + "source": [ + "### Pretest deontology " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "be6dbaa9", + "metadata": {}, + "outputs": [], + "source": [ + "core_process.process_values_minimal(\"get an abortion\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f9aa78ae", + "metadata": {}, + "outputs": [], + "source": [ + "core_process.process_values_minimal(\"get a vasectomy\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "26b12595", + "metadata": {}, + "outputs": [], + "source": [ + "core_process.process_values_minimal(\"use contraception\")" + ] + }, { "cell_type": "markdown", "id": "e8e522b2", @@ -213,7 +251,7 @@ "g = annotate_scenario.node.Graph()\n", "g.reset() \n", "print('Graph g initialized and reset.')\n", - "g.set_version('d6d780129095bb9540a7957befb2014ea42d92c1')\n", + "g.set_version('f423a62e5bc14af918101b6d071460049c19d25a') #this should be the latest commit hash\n", "\n" ] }, @@ -300,6 +338,66 @@ "#### Step 3. Outcome Utilities" ] }, + { + "cell_type": "code", + "execution_count": null, + "id": "c781c9c9", + "metadata": {}, + "outputs": [], + "source": [ + "events_Ziv" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "19c7cc7b", + "metadata": {}, + "outputs": [], + "source": [ + "core_process.process_util_minimal(events_I[0])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f0ada354", + "metadata": {}, + "outputs": [], + "source": [ + "core_process.process_util_minimal(events_I[1])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c3f98024", + "metadata": {}, + "outputs": [], + "source": [ + "core_process.process_util_minimal(events_I[2])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e08faa75", + "metadata": {}, + "outputs": [], + "source": [ + "core_process.process_util_minimal(events_I[4])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7b1b8bbb", + "metadata": {}, + "outputs": [], + "source": [ + "core_process.process_util_minimal(events_I[5])" + ] + }, { "cell_type": "code", "execution_count": null, @@ -370,7 +468,7 @@ ], "metadata": { "kernelspec": { - "display_name": "env-01", + "display_name": "base", "language": "python", "name": "python3" }, @@ -384,7 +482,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.16" + "version": "3.11.4" } }, "nbformat": 4, diff --git a/scenarios_inputs/cheung_variants/coworker.json b/scenarios_inputs/cheung_variants/coworker.json deleted file mode 100644 index 948a62f4..00000000 --- a/scenarios_inputs/cheung_variants/coworker.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "id": 1, - "scenario_title": "coworker", - "deontology_level": "1", - "utility_level": "3", - "text": "I had a friend named Javier who also happened to be a co-worker of mine. He worked on first shift and I am on second shift. There is a thirty minute overlap between shift changes, so I start work while first shift is still there. I realized Javier had been falsifying information on a product label code for the entire shift and also messed up an order where there should have been an allergen warning on the product. It turns out he had realized the mistake halfway through his shift, but he ultimately decided against putting all of the product on hold for inspection because he did not want to get in trouble. He told me this when I confronted him about the mistake once I’d caught it. He asked me not to tell the supervisor. If I didn't report Javier, I would put the lives of our customers at risk. But I I struggled deeply with reporting him, because I knew Javier has a family and two children, and he would definitely be fired if I reported his actions. " \ No newline at end of file diff --git a/scenarios_inputs/cheung_variants/endowment.json b/scenarios_inputs/cheung_variants/endowment.json index 4ca91046..22226617 100644 --- a/scenarios_inputs/cheung_variants/endowment.json +++ b/scenarios_inputs/cheung_variants/endowment.json @@ -7,7 +7,7 @@ "text": "After a long-term imprisonment and while awaiting a parole decision, a convicted murderer wants to organise a foundation for young victims of crime. I am the president of the agency who decides about the foundation. The founder would donate 250,000 dollars to the foundation. However, he asks that the foundation would be named after himself, helping clear his name. The family of his victim opposes such a foundation and considers it immoral. If I approve and accept the money for the foundation, crime victims will benefit from the 250,000 dollars. If I do nothing, the money will be lost.", "options": { "1": "accept the donation and name the foundation after the murderer", - "2": "do nothing", + "2": "do nothing" } }, @@ -19,7 +19,7 @@ "text": "After a long-term imprisonment and while awaiting a parole decision, a convicted thief wants to organise a foundation for young victims of crime. I am the president of the agency who decides about the foundation. The founder would donate 250,000 dollars to the foundation. However, he asks that the foundation would be named after himself, helping clear his name. His victim opposes such a foundation and considers it immoral. If I approve and accept the money for the foundation, crime victims will benefit from the 250,000 dollars. If I do nothing, the money will be lost.", "options": { "1": "accept the donation and name the foundation after the thief", - "2": "do nothing", + "2": "do nothing" } }, @@ -32,7 +32,7 @@ "text": "After a short imprisonment and while awaiting a parole decision, a man convicted of reckless driving wants to organise a foundation for young victims of highway accidents. I am the president of the agency who decides about the foundation. The founder would donate 250,000 dollars to the foundation. However, he asks that the foundation would be named after himself, helping clear his name. His victim, whose car was damaged, opposes such a foundation and considers it immoral. If I approve and accept the money for the foundation, victims of other accidents will benefit from the 250,000 dollars. If I do nothing, the money will be lost.", "options": { "1": "accept the donation and name the foundation after the reckless driver", - "2": "do nothing", + "2": "do nothing" } }, @@ -44,7 +44,7 @@ "text": "After a long-term imprisonment and while awaiting a parole decision, a convicted murderer wants to organise a foundation for young victims of crime. I am the president of the agency who decides about the foundation. The founder would donate 125,000 dollars to the foundation. However, he asks that the foundation would be named after himself, helping clear his name. The family of his victim opposes such a foundation and considers it immoral. If I approve and accept the money for the foundation, crime victims will benefit from the 125,000 dollars. If I do nothing, the money will be lost.", "options": { "1": "accept the donation and name the foundation after the murderer", - "2": "do nothing", + "2": "do nothing" } }, @@ -56,7 +56,7 @@ "text": "After a long-term imprisonment and while awaiting a parole decision, a convicted thief wants to organise a foundation for young victims of crime. I am the president of the agency who decides about the foundation. The founder would donate 125,000 dollars to the foundation. However, he asks that the foundation would be named after himself, helping clear his name. His victim opposes such a foundation and considers it immoral. If I approve and accept the money for the foundation, crime victims will benefit from the 125,000 dollars. If I do nothing, the money will be lost.", "options": { "1": "accept the donation and name the foundation after the thief", - "2": "do nothing", + "2": "do nothing" } }, @@ -69,7 +69,7 @@ "text": "After a short imprisonment and while awaiting a parole decision, a man convicted of reckless driving wants to organise a foundation for young victims of highway accidents. I am the president of the agency who decides about the foundation. The founder would donate 125,000 dollars to the foundation. However, he asks that the foundation would be named after himself, helping clear his name. His victim, whose car was damaged, opposes such a foundation and considers it immoral. If I approve and accept the money for the foundation, victims of other accidents will benefit from the 125,000 dollars. If I do nothing, the money will be lost.", "options": { "1": "accept the donation and name the foundation after the reckless driver", - "2": "do nothing", + "2": "do nothing" } }, @@ -81,7 +81,7 @@ "text": "After a long-term imprisonment and while awaiting a parole decision, a convicted murderer wants to organise a foundation for young victims of crime. I am the president of the agency who decides about the foundation. The founder would donate 65,000 dollars to the foundation. However, he asks that the foundation would be named after himself, helping clear his name. The family of his victim opposes such a foundation and considers it immoral. If I approve and accept the money for the foundation, crime victims will benefit from the 65,000 dollars. If I do nothing, the money will be lost.", "options": { "1": "accept the donation and name the foundation after the murderer", - "2": "do nothing", + "2": "do nothing" } }, @@ -93,7 +93,7 @@ "text": "After a long-term imprisonment and while awaiting a parole decision, a convicted thief wants to organise a foundation for young victims of crime. I am the president of the agency who decides about the foundation. The founder would donate 65,000 dollars to the foundation. However, he asks that the foundation would be named after himself, helping clear his name. His victim opposes such a foundation and considers it immoral. If I approve and accept the money for the foundation, crime victims will benefit from the 65,000 dollars. If I do nothing, the money will be lost.", "options": { "1": "accept the donation and name the foundation after the thief", - "2": "do nothing", + "2": "do nothing" } }, @@ -105,7 +105,7 @@ "text": "After a short imprisonment and while awaiting a parole decision, a man convicted of reckless driving wants to organise a foundation for young victims of highway accidents. I am the president of the agency who decides about the foundation. The founder would donate 65,000 dollars to the foundation. However, he asks that the foundation would be named after himself, helping clear his name. His victim, whose car was damaged, opposes such a foundation and considers it immoral. If I approve and accept the money for the foundation, victims of other accidents will benefit from the 65,000 dollars. If I do nothing, the money will be lost.", "options": { "1": "accept the donation and name the foundation after the reckless driver", - "2": "do nothing", + "2": "do nothing" } - }, + } ] \ No newline at end of file diff --git a/scenarios_inputs/cheung_variants/robinhood.json b/scenarios_inputs/cheung_variants/robinhood.json index 85e6b509..ec1c8abc 100644 --- a/scenarios_inputs/cheung_variants/robinhood.json +++ b/scenarios_inputs/cheung_variants/robinhood.json @@ -18,7 +18,7 @@ "text": "I am an employee of a bank in Germany. I have many loyal customers who trust me and my bank. Among them is one family of five who is deeply in debt and does not fulfill the conditions for being granted another loan. I see an undetectable way to delete a year of the family's account history, allowing them to qualify for the loan. At the same time, I would abuse the trust of the other customers and of my colleagues. But if I do this, I will be able to prevent the family from going bankrupt.", "options": { "1": "delete a year of the family's account history", - "2": "do nothing", + "2": "do nothing" } }, { @@ -29,7 +29,7 @@ "text": "I am an employee of a bank in Germany. I have many loyal customers who trust me and my bank. Among them is one family of five who is deeply in debt and does not fulfill the conditions for being granted another loan. I see an undetectable way to temporarily redirect money from another account into the family's account, allowing them to qualify for the loan. At the same time, I would abuse the trust of the other customers and of my colleagues. But if I do this, I will be able to prevent the family from going bankrupt.", "options": { "1": "temporarily redirect money from another account into the family's account", - "2": "do nothing", + "2": "do nothing" } }, @@ -53,7 +53,7 @@ "text": "I am an employee of a bank in Germany. I have many loyal customers who trust me and my bank. Among them is one family of five who is deeply in debt and does not fulfill the conditions for being granted another loan. I see an undetectable way to delete a year of the family's account history, allowing them to qualify for the loan. At the same time, I would abuse the trust of the other customers and of my colleagues. But if I do this, I will be able to prevent the family from taking their eldest child out of college.", "options": { "1": "delete a year of the family's account history", - "2": "do nothing", + "2": "do nothing" } }, @@ -65,7 +65,7 @@ "text": "I am an employee of a bank in Germany. I have many loyal customers who trust me and my bank. Among them is one family of five who is deeply in debt and does not fulfill the conditions for being granted another loan. I see an undetectable way to temporarily redirect money from another account into the family's account, allowing them to qualify for the loan. At the same time, I would abuse the trust of the other customers and of my colleagues. But if I do this, I will be able to prevent the family from taking their eldest child out of college.", "options": { "1": "temporarily redirect money from another account into the family's account", - "2": "do nothing", + "2": "do nothing" } }, @@ -103,8 +103,8 @@ "text": "I am an employee of a bank in Germany. I have many loyal customers who trust me and my bank. Among them is one family of five who is deeply in debt and does not fulfill the conditions for being granted another loan. I see an undetectable way to temporarily redirect money from another account into the family's account, allowing them to qualify for the loan. At the same time, I would abuse the trust of the other customers and of my colleagues. But if I do this, I will be able to prevent the family from selling their second car.", "options": { "1": "temporarily redirect money from another account into the family's account", - "2": "do nothing", + "2": "do nothing" } - }, + } ] \ No newline at end of file diff --git a/scenarios_inputs/cheung_variants/ropeladder.json b/scenarios_inputs/cheung_variants/ropeladder.json index 155b1173..3b616f56 100644 --- a/scenarios_inputs/cheung_variants/ropeladder.json +++ b/scenarios_inputs/cheung_variants/ropeladder.json @@ -7,7 +7,7 @@ "text": "It is 1987 and I am on a ferry from Belgium to England. Suddenly, the ferry starts tilting and water begins to pour in. I and many other passengers are trying to get to the deck by a rope ladder. I climb up the ladder and stand on the deck, looking at the 20 other passengers making their way up behind me. Directly below me, a man who is midway up the ladder seems frozen into immobility by fear or cold and is blocking the way. I try to speak and reach to him, but he does not react. People behind me are jostling. The ship seems to be sinking fast and the man is still blocking the ladder. I have a crowbar in my possession. From the crowd below, someone shouts that I should break the man's fingers to make him fall off. If I break the man's fingers, he will probably die from the fall, but the 19 other people will be able to climb on deck. If I do not break the man's fingers, he will probably continue blocking the way so that the people behind me will not be able to get on deck and therefore will drown.", "options": { "1": "break the man's fingers", - "2": "do nothing", + "2": "do nothing" } }, @@ -19,7 +19,7 @@ "text": "It is 1987 and I am on a ferry from Belgium to England. Suddenly, the ferry starts tilting and water begins to pour in. I and many other passengers are trying to get to the deck by a rope ladder. I climb up the ladder and stand on the deck, looking at the 20 other passengers making their way up behind me. Directly below me, a man who is midway up the ladder seems frozen into immobility by fear or cold and is blocking the way. I try to speak and reach to him, but he does not react. People behind me are jostling. The ship seems to be sinking fast and the man is still blocking the ladder. From the crowd below, someone shouts that I should push the man off the ladder. If I do this, he will probably die from the fall, but the 19 other people will be able to climb on deck. If I do not do it, he will probably continue blocking the way so that the people behind me will not be able to get on deck and therefore will drown.", "options": { "1": "push the man off the ladder", - "2": "do nothing", + "2": "do nothing" } }, @@ -44,7 +44,7 @@ "text": "It is 1987 and I am on a ferry from Belgium to England. Suddenly, the ferry starts tilting and water begins to pour in. I and many other passengers are trying to get to the deck by a rope ladder. I climb up the ladder and stand on the deck, looking at the 10 other passengers making their way up behind me. Directly below me, a man who is midway up the ladder seems frozen into immobility by fear or cold and is blocking the way. I try to speak and reach to him, but he does not react. People behind me are jostling. The ship seems to be sinking fast and the man is still blocking the ladder. I have a crowbar in my possession. From the crowd below, someone shouts that I should break the man's fingers to make him fall off. If I break the man's fingers, he will probably die from the fall, but the 9 other people will be able to climb on deck. If I do not break the man's fingers, he will probably continue blocking the way so that the people behind me will not be able to get on deck and therefore will drown.", "options": { "1": "break the man's fingers", - "2": "do nothing", + "2": "do nothing" } }, @@ -57,7 +57,7 @@ "text": "It is 1987 and I am on a ferry from Belgium to England. Suddenly, the ferry starts tilting and water begins to pour in. I and many other passengers are trying to get to the deck by a rope ladder. I climb up the ladder and stand on the deck, looking at the 10 other passengers making their way up behind me. Directly below me, a man who is midway up the ladder seems frozen into immobility by fear or cold and is blocking the way. I try to speak and reach to him, but he does not react. People behind me are jostling. The ship seems to be sinking fast and the man is still blocking the ladder. From the crowd below, someone shouts that I should push the man off the ladder. If I do this, he will probably die from the fall, but the 9 other people will be able to climb on deck. If I do not do it, he will probably continue blocking the way so the people behind me will not be able to get on deck and therefore will drown.", "options": { "1": "push the man off the ladder", - "2": "do nothing", + "2": "do nothing" } }, @@ -81,7 +81,7 @@ "text": "It is 1987 and I am on a ferry from Belgium to England. Suddenly, the ferry starts tilting and water begins to pour in. I and many other passengers are trying to get to the deck by a rope ladder. I climb up the ladder and stand on the deck, looking at the 5 other passengers making their way up behind me. Directly below me, a man who is midway up the ladder seems frozen into immobility by fear or cold and is blocking the way. I try to speak and reach to him, but he does not react. People behind me are jostling. The ship seems to be sinking fast and the man is still blocking the ladder. I have a crowbar in my possession. From the crowd below, someone shouts that I should break the man's fingers to make him fall off. If I break the man's fingers, he will probably die from the fall, but the 4 other people will be able to climb on deck. If I do not break the man's fingers, he will probably continue blocking the way so that the people behind me will not be able to get on deck and therefore will drown.", "options": { "1": "break the man's fingers", - "2": "do nothing", + "2": "do nothing" } }, { @@ -92,7 +92,7 @@ "text": "It is 1987 and I am on a ferry from Belgium to England. Suddenly, the ferry starts tilting and water begins to pour in. I and many other passengers are trying to get to the deck by a rope ladder. I climb up the ladder and stand on the deck, looking at the 5 other passengers making their way up behind me. Directly below me, a man who is midway up the ladder seems frozen into immobility by fear or cold and is blocking the way. I try to speak and reach to him, but he does not react. People behind me are jostling. The ship seems to be sinking fast and the man is still blocking the ladder. From the crowd below, someone shouts that I should push the man off the ladder. If I do this, he will probably die from the fall, but the 4 other people will be able to climb on deck. If I do not do it, he will probably continue blocking the way so that the people behind me will not be able to get on deck and therefore will drown.", "options": { "1": "push the man off the ladder", - "2": "do nothing", + "2": "do nothing" } }, { diff --git a/src/core_process.py b/src/core_process.py index d84374ec..53455a13 100644 --- a/src/core_process.py +++ b/src/core_process.py @@ -20,6 +20,7 @@ import src.node as node import src.utils as utils import src.moral_projection as moral_projection +import src.util_projection as util_projection importlib.reload(get_emb_distances) importlib.reload(prompts) importlib.reload(node) @@ -121,7 +122,12 @@ def process_values_minimal(this_act): return this_score - +def process_util_minimal(this_outcome): + + resp = util_projection.main([this_outcome]) + this_score = round(resp['projection'].iloc[0]*1000, 0) + + return this_score def process_outcomes(this_scenario, this_act): @@ -129,7 +135,7 @@ def process_outcomes(this_scenario, this_act): events = prompts.get_events(this_scenario, this_act) events_Ziv= events['results'] # remove overly similar outcomes - events_Ziv=get_emb_distances.threshold_by_sim(events_Ziv,.06, CONFIG['OAI']) + events_Ziv = get_emb_distances.threshold_by_sim(events_Ziv, .06, CONFIG.get('OAI', '')) #replace Ziv with first person pronoun. events_I = [prompts.convert_Ziv_I(x) if x.find("Ziv")>-1 else x for x in events_Ziv] diff --git a/src/embedding_utils.py b/src/embedding_utils.py index aae162f1..922d3d1d 100644 --- a/src/embedding_utils.py +++ b/src/embedding_utils.py @@ -8,8 +8,7 @@ import src.utils as utils CONFIG = utils.return_config() - -OPENAI_API_KEY = CONFIG['OAI'] +OPENAI_API_KEY = utils.resolve_openai_api_key() @@ -21,7 +20,7 @@ def get_embedding(self, text: str) -> list: class OpenAIEmbeddingModel(EmbeddingModel): def __init__(self, model_name: str = "text-embedding-3-large"): - self.api_key = OPENAI_API_KEY + self.api_key = utils.get_bearer_auth_header() self.url = "https://api.openai.com/v1/embeddings" self.model_name = model_name diff --git a/src/generic_analysis_utils.py b/src/generic_analysis_utils.py index 5adca724..63105d8e 100644 --- a/src/generic_analysis_utils.py +++ b/src/generic_analysis_utils.py @@ -1,4 +1,7 @@ - +import pandas as pd +import json + + ## FUNCTIONS TO READ IN SCENARIO JSONS def parse_filename_cheung(filename): diff --git a/src/get_emb_distances.py b/src/get_emb_distances.py index a127cec2..355ee688 100644 --- a/src/get_emb_distances.py +++ b/src/get_emb_distances.py @@ -10,6 +10,7 @@ from scipy.spatial.distance import cdist import random import typer +import src.utils as utils # set current path @@ -103,7 +104,12 @@ def threshold_by_sim(item_list,threshold,api_key): # create a new Embeddings object - E = Embedding(item_list,api_key) + if not api_key: + api_key = utils.get_bearer_auth_header() + elif not str(api_key).lower().startswith("bearer "): + api_key = f"Bearer {str(api_key).strip()}" + + E = Embedding(item_list, api_key) # emb_list = [E.get_embedding(x)['data'] for x in item_list] try: diff --git a/src/prompts.py b/src/prompts.py index df576c60..e658b166 100644 --- a/src/prompts.py +++ b/src/prompts.py @@ -3,14 +3,14 @@ def get_beings(this_scenario, this_act): - system_prompt_content = f'You are a helpful assistant who is an expert at understanding human situations. The user will describe a scenario from a first-person perspective and an action they might take. Your task is to identify each sentient being involved, including the first-person character "I". Sentient beings are entities who are alive and have the capacity to experience the world; for example, a human or an animal. List each individual being, but do not also list groups that include all of these individual beings. List groups when all members have identical experiences or outcomes; include the number of members in each group as part of its string name. Split any groups that could have divergent fates or consequences in the scenario, including after the hypothetical action is taken. For example, if the action under consideration might affect individuals in the group differently, list them as two separate groups. If you do this, do not also list the bigger group that contains these smaller groups. Return a json object with key:value pair of "results": list of beings. Please be diligent, complete, and succinct in your response.' + system_prompt_content = f'You are a helpful assistant who is an expert at understanding human situations. The user will describe a scenario from a first-person perspective and an action they might take. Your task is to identify each sentient being involved, including the first-person character "I". Sentient beings are entities who are alive and have the capacity to experience the world; for example, a human or an animal. List each individual being, or groups of beings when it makes sense to. Do not also list groups that include all of these individual beings. List groups when all members have identical experiences or outcomes; include the number of members in each group as part of its string name. Split any groups that could have divergent fates or consequences in the scenario, including after the hypothetical action is taken. For example, if the action under consideration might affect individuals in the group differently, list them as two separate groups. If you do this, do not also list the bigger group that contains these smaller groups. Return a json object with key:value pair of "results": list of beings. Please be diligent and complete in your response. Think step by step.' user_prompt_content = f'Here is my scenario: {this_scenario}. I am considering to {this_act}.' return utils.get_response_dict(system_prompt_content, user_prompt_content) def get_events(this_scenario, this_act): - system_prompt_content = f"""You are an expert at understanding human situations. A human named Ziv has described a scenario and how they decided to act. Your task is to identify all the outcomes that will probably occur as a result of Ziv's action decision, especially any impacts on sentient beings involved. Please state each outcome as the most simple, immediately occuring result, and not chains of events. Do not include any events that are simply re-statements of the action that was taken. Name the outcome only, without any qualifiers like "maybe" or "may". Describe the outcomes referring to Ziv using their name, not pronouns. Return a json object with key:value pair of "results": list of events. Please be diligent, complete, and succinct in your response.""" + system_prompt_content = f"""You are an expert at understanding human situations. A human named Ziv has described a scenario and how they decided to act. Your task is to identify all the outcomes that will probably occur as a result of Ziv's action decision, especially any impacts on sentient beings involved. Please state each outcome as the most simple, immediately occuring result, and not chains of events. Do not include any events that are simply re-statements of the action that was taken. Name the outcome only, without any qualifiers like "maybe" or "may". Describe the outcomes referring to Ziv using their name, not pronouns. Return a json object with key:value pair of "results": list of events. Please be diligent, complete, and succinct in your response. Think step by step.""" # print(system_prompt_content) user_prompt_content = f'Here is Ziv\'s scenario: {this_scenario}. Ziv decided to {this_act}. What outcomes are likely to arise a result of Ziv\'s decision?' @@ -52,7 +52,7 @@ def convert_lower(sentence): def get_impacts_Ziv_single(this_scenario, this_act, this_event, this_being): - system_prompt_content = f'You are a helpful assistant who is an expert at understanding human situations. You will be given a scenario and asked to evaluate how an event will impact the character "{this_being}". Rate the impact on this character using a scale from -100 to +100, where a rating of -100 indicates that the outcome will cause the character substantial harm, while a rating of +100 indicates that it will cause the character substantial benefit. If the outcome is not likely to affect the character very much, return a rating closer to 0. Return a json object called "score" with your rating.' + system_prompt_content = f'You are a helpful assistant who is an expert at understanding human situations. You will be given a scenario and asked to evaluate how an event will impact the character "{this_being}". Rate the impact on this character using a scale from -100 to +100, where a rating of -100 indicates that the outcome will cause the character substantial harm (e.g., the worst possible thing that could happen to them, such as a very painful death), while a rating of +100 indicates that it will cause the character substantial benefit (the best possible thing that could happen to them, such as having all of their dreams come true). If the outcome is not likely to affect the character very much, return a rating closer to 0. Return a json object called "score" with your rating.' user_prompt_content = f'Here is the scenario: {this_scenario} {this_act} Consider the possibile outcome that {convert_lower(this_event)}. How does this outcome impact the character(s) {this_being}?' @@ -62,9 +62,9 @@ def get_impacts_Ziv_single(this_scenario, this_act, this_event, this_being): def get_impacts_Ziv_single_noscene(this_event, this_being): - system_prompt_content = f'You are an expert at understanding real-world situations. You will be given an event and be asked to evaluate how it will impact a specific character in terms of overall harm or benefit. Be careful to rate only the specific impact on that character and not others. Rate the impact on using a scale from -100 to +100, where a rating of -100 indicates that the outcome will cause the character substantial harm (the worst thing that could happen to them), while a rating of +100 indicates that it will cause the character substantial benefit (the best thing that could happen to them). If the outcome is not likely to affect the character one way or the other, or if the harm and benefit are equal, return a rating of 0. Return a json object called "score" with your rating.' + system_prompt_content = f'You are an expert at understanding real-world situations. You will be given an event and be asked to evaluate how it will impact a specific character or group of characters "{this_being}". Be careful to rate only the specific impact on that character(s) and not others. Rate the impact on them using a scale from -100 to +100, where a rating of -100 indicates that the outcome will cause the character substantial harm (the worst thing that could happen to them, for example, a very painful death, bereavement, or the loss of all of their loved ones), while a rating of +100 indicates that it will cause the character substantial benefit (the best thing that could happen to them, for example, all of their wildest dreams come true, they find everlasting happiness, etc.). If the outcome is not likely to affect the character one way or the other, or if the harm and benefits overall are equal, return a rating of 0. Return a json object called "score" with your rating. Think step by step.' - user_prompt_content = f'Consider the event that {convert_lower(this_event)} How does this event impact the character(s) {this_being}?' + user_prompt_content = f'Consider the event that {convert_lower(this_event)}. How does this event impact the character(s) {this_being}?' print(user_prompt_content) # print(system_prompt_content, user_prompt_content) diff --git a/src/util_projection.py b/src/util_projection.py new file mode 100644 index 00000000..8617daeb --- /dev/null +++ b/src/util_projection.py @@ -0,0 +1,13 @@ +import embedding_utils + + + +def main(item): + + attributes_morality_high = ['love','freedom', 'hope', 'wonder', 'connection', 'bliss'] + attributes_morality_low = ['murdering','raping', 'Hitler', 'nazis', 'ransomware', 'massacres'] + this_projector = embedding_utils.EmbeddingProjector('openai') + morality_vector = this_projector.return_embedding_diff(attributes_morality_high, attributes_morality_low) + item_projection = this_projector.get_projections(item, morality_vector) + + return item_projection \ No newline at end of file diff --git a/src/utils.py b/src/utils.py index 23d3a11b..2788c167 100644 --- a/src/utils.py +++ b/src/utils.py @@ -2,7 +2,7 @@ from pyexpat import model import sys import json -from openai import OpenAI +from openai import OpenAI, APIStatusError import requests import textwrap from dotenv import dotenv_values @@ -15,12 +15,49 @@ ROOT_DIR = SCRIPT_DIR.parent load_dotenv(ROOT_DIR / ".env") config = dotenv_values(ROOT_DIR / ".env") -OPENAI_API_KEY= config['OPENAI_API_KEY'] + + +def _strip_optional_quotes(value): + value = value.strip() + if len(value) >= 2 and value[0] == value[-1] and value[0] in ["'", '"']: + return value[1:-1].strip() + return value + + +def resolve_openai_api_key(): + """Resolve API key from .env or process env, with basic normalization.""" + raw_key = ( + config.get("OPENAI_API_KEY") + or config.get("OAI") + or os.getenv("OPENAI_API_KEY") + or os.getenv("OAI") + or "" + ) + key = _strip_optional_quotes(str(raw_key or "")) + # Support both "sk-..." and "Bearer sk-..." styles in existing local configs. + if key.lower().startswith("bearer "): + key = key[7:].strip() + return key + + +OPENAI_API_KEY = resolve_openai_api_key() def return_config(): """Returns all environment variables from .env file.""" return config + +def get_bearer_auth_header(): + key = resolve_openai_api_key() + if not key: + raise ValueError("Missing OpenAI API key. Set OPENAI_API_KEY (or OAI) in .env or environment.") + if len(key) > 400: + raise ValueError( + f"OpenAI API key looks too large ({len(key)} chars). This can trigger 431 header errors. " + "Check .env and shell env values for OPENAI_API_KEY/OAI." + ) + return f"Bearer {key}" + def open_scenario(SCENARIO_DIR, FILENAME, SCENARIO_ID, ACT_ID): """ Opens a scenario file and returns its content. @@ -69,18 +106,28 @@ def reformat_impacts(impacts_df, util_data): def promptGPT(prompt_message_list, gpt_temperature=0, debug=False): + api_key = resolve_openai_api_key() + if not api_key: + raise ValueError("Missing OpenAI API key. Set OPENAI_API_KEY (or OAI) in .env or environment.") - client = OpenAI() + # Pass key explicitly so calls do not inherit unrelated process-level auth headers. + client = OpenAI(api_key=api_key) - response = client.responses.create( - model="gpt-5.4", - input=prompt_message_list, - reasoning={"effort": "medium"}, - text = { "format": { - "type": "json_object" } - }, - store= False, - ) + try: + response = client.responses.create( + model="gpt-5.4", + input=prompt_message_list, + reasoning={"effort": "medium"}, + text={"format": {"type": "json_object"}}, + store=False, + ) + except APIStatusError as e: + if e.status_code == 431: + print( + "OpenAI API 431 (headers too large). " + "Check OPENAI_API_KEY/OAI and OPENAI_ORG/OPENAI_PROJECT env vars for very large values." + ) + raise llm_resp = response.output_text