Round 297

Round UUID: afbc12a2-cefd-473a-ad0b-08f3801a8646

Prompt:

You are given one entity at a time with the following fields.
• Histogen_Complex  (string)
• Sex               ("male" or "female")
• Treatment_Months  (number, can be decimal)
• Genetic_Class_A_Matches (integer ≥0)
• Genetic_Class_B_Matches (integer ≥0)
• TcQ_mass          (number, can be decimal)
• Cohort            (string)

Your task is to predict the treatment OUTCOME for that entity.
Only two outcomes are possible:
  Success
  Failure

Apply the rules below IN ORDER. As soon as a rule is satisfied, output the associated outcome and stop – do not check the lower-priority rules. The rules are designed to be mutually exclusive and to cover every possible row.

Rule 1  HIGH GENETIC BURDEN → Failure
  Let total_matches = Genetic_Class_A_Matches + Genetic_Class_B_Matches.
  If total_matches ≥ 6, predict Failure.

Rule 2  EXTREME TcQ_mass → Success
  If TcQ_mass > 200 000, predict Success.

Rule 3  MALE, DELTA VARIANT & <50k MASS → Failure
  If Sex is "male" AND Histogen_Complex == "Delta" AND TcQ_mass < 50 000, predict Failure.

Rule 4  MALE WITH VERY LOW MASS → Failure
  If Sex is "male" AND TcQ_mass < 9 000, predict Failure.

Rule 5  MALE DEFAULT → Success
  If Sex is "male", predict Success.

Rule 6  SHORT TREATMENT WINDOW FOR FEMALES → Success
  If Sex is "female" AND Treatment_Months < 24, predict Success.

Rule 7  FEMALE, BETA VARIANT WITH HIGH MASS → Success
  If Sex is "female" AND Histogen_Complex == "Beta" AND TcQ_mass ≥ 25 000, predict Success.

Rule 8  OTHERWISE → Failure
  All remaining cases are predicted as Failure.

Output exactly one word – either Success or Failure – with nothing else.