Round 330

Round UUID: dd4f71f9-4f67-4df7-8fb2-a0071de145b3

Prompt:

Use the following explicit rules to classify each entity's outcome as Success or Failure:

1) If Histogen_Complex is Beta AND Sex = female AND Genetic_Class_B_Matches < 3 AND TcQ_mass ≥ 20000, then label the outcome as Failure.
2) If Histogen_Complex is Omicron AND Sex = male AND Genetic_Class_A_Matches ≥ 2 AND Genetic_Class_B_Matches ≥ 2 AND 50 ≤ Treatment_Months < 90 AND TcQ_mass ≥ 20000, then label the outcome as Failure.
3) If Histogen_Complex is Delta AND Genetic_Class_A_Matches ≤ 1 AND Genetic_Class_B_Matches ≥ 3 AND TcQ_mass ≥ 20000, then label the outcome as Success.
4) If Histogen_Complex is Delta AND Genetic_Class_A_Matches = 2 AND TcQ_mass ≥ 16000 AND Treatment_Months < 80, then label the outcome as Failure.
5) If Histogen_Complex is Omicron AND 10000 ≤ TcQ_mass < 20000 AND Treatment_Months ≥ 90, then label the outcome as Failure.
6) If Histogen_Complex is Beta AND Genetic_Class_B_Matches ≥ 3 AND TcQ_mass < 100000, then label the outcome as Failure.
7) If Histogen_Complex is Beta AND Genetic_Class_B_Matches < 3 AND TcQ_mass ≥ 20000 AND Treatment_Months ≥ 120, then label the outcome as Failure.
8) If Histogen_Complex is Beta OR Omicron AND TcQ_mass ≥ 20000, then label the outcome as Success.
9) If Histogen_Complex is Omicron AND TcQ_mass ≤ 0, then label the outcome as Failure.
10) If Histogen_Complex is Delta AND Treatment_Months < 6, then label the outcome as Failure.
11) If Histogen_Complex is Delta AND Genetic_Class_A_Matches ≥ 3 AND (TcQ_mass < 15000 OR Treatment_Months < 60), then label the outcome as Failure.
12) If Histogen_Complex is Delta AND Genetic_Class_A_Matches ≥ 3 AND TcQ_mass ≥ 15000, then label the outcome as Success.
13) If Histogen_Complex is Delta AND Genetic_Class_A_Matches = 2 AND TcQ_mass ≥ 15000 AND Treatment_Months ≥ 90, then label the outcome as Failure.
14) If Histogen_Complex is Delta AND Genetic_Class_A_Matches = 2 AND TcQ_mass ≥ 15000, then label the outcome as Success.
15) If Histogen_Complex is Delta AND Genetic_Class_A_Matches ≤ 1 AND TcQ_mass < 10000 AND Sex = female AND Treatment_Months ≥ 80, then label the outcome as Success.
16) If Histogen_Complex is Delta AND Genetic_Class_A_Matches ≤ 1 AND TcQ_mass < 10000 AND Sex = male AND Treatment_Months ≥ 120, then label the outcome as Failure.
17) If Histogen_Complex is Delta AND Genetic_Class_A_Matches ≤ 1 AND TcQ_mass < 10000 AND Sex = male, then label the outcome as Success.
18) If Histogen_Complex is Delta AND Genetic_Class_A_Matches ≤ 1 AND TcQ_mass < 10000, then label the outcome as Failure.
19) If Histogen_Complex is Beta AND Genetic_Class_B_Matches ≥ 3 AND TcQ_mass ≥ 100000, then label the outcome as Success.
20) Otherwise, label the outcome as Success.

Return only the single word "Success" or "Failure" based on these rules, without further commentary.

Apply these steps to the given row of data:
• Read the row’s Histogen_Complex, Sex, Treatment_Months, Genetic_Class_A_Matches, Genetic_Class_B_Matches, TcQ_mass, Cohort.
• Evaluate them against the rules above in order.
• As soon as you match a rule, label and stop (do not check subsequent rules).
• If none of the first nineteen rules apply, default to Success using Rule 20.

Remember: do not deviate from these rules, and do not output explanations.