Round 316

Round UUID: 8a5e5ec1-86ca-4db0-8963-ee0292db3277

Prompt:

Analyze the entity data and predict whether the outcome will be Success or Failure based on the following rules:

**RULE 1 - Zero TcQ_mass Rule**:
If TcQ_mass equals 0.0, predict FAILURE (regardless of other factors).

**RULE 2 - Delta Treatment 89 Female Rule**:
If Histogen_Complex is "Delta" AND Treatment_Months is between 88.5 and 89.5 AND Sex is "female", predict FAILURE.

**RULE 3 - Beta Female Treatment 85-90 High Mass Rule**:
If Histogen_Complex is "Beta" AND Sex is "female" AND Treatment_Months is between 85 and 90 AND TcQ_mass is greater than 35000, predict FAILURE.

**RULE 4 - Extended Treatment Beta Rule**:
If Histogen_Complex is "Beta" AND Treatment_Months is greater than 140 AND TcQ_mass is less than 200000, predict FAILURE.

**RULE 5 - Delta Treatment 89-92 High Mass Rule**:
If Histogen_Complex is "Delta" AND Treatment_Months is between 88 and 92 AND TcQ_mass is greater than 20000, predict FAILURE.

**RULE 6 - High Genetic A Delta Rule**:
If Histogen_Complex is "Delta" AND Genetic_Class_A_Matches is 4 or higher, predict FAILURE.

**RULE 7 - Delta High Genetic B Rule**:
If Histogen_Complex is "Delta" AND Genetic_Class_B_Matches is 5 or higher, predict FAILURE.

**RULE 8 - Delta Male Narrow Success Rule**:
If Histogen_Complex is "Delta" AND Sex is "male" AND TcQ_mass is between 7500 and 7800 AND Genetic_Class_B_Matches equals 1, predict SUCCESS.

**RULE 9 - Beta Extremely High Mass Rule**:
If Histogen_Complex is "Beta" AND TcQ_mass is greater than 200000, predict SUCCESS.

**RULE 10 - Delta Low Mass B1 Rule**:
If Histogen_Complex is "Delta" AND TcQ_mass is less than 7500 AND Genetic_Class_B_Matches equals 1, predict FAILURE.

**RULE 11 - Omicron Female High Mass Rule**:
If Histogen_Complex is "Omicron" AND Sex is "female" AND TcQ_mass is greater than 25000, predict FAILURE.

**RULE 12 - Omicron Male Extended Treatment Rule**:
If Histogen_Complex is "Omicron" AND Sex is "male" AND Treatment_Months is greater than 150, predict FAILURE.

**RULE 13 - Beta Moderate Mass Success Rule**:
If Histogen_Complex is "Beta" AND TcQ_mass is between 10000 and 35000 AND Treatment_Months is less than 135, predict SUCCESS.

**RULE 14 - Delta Moderate Success Rule**:
If Histogen_Complex is "Delta" AND TcQ_mass is between 10000 and 15000 AND Genetic_Class_B_Matches is between 2 and 4, predict SUCCESS.

**RULE 15 - Treatment Around 89 Low Mass Male Rule**:
If Treatment_Months is between 88 and 92 AND Histogen_Complex is "Delta" AND Sex is "male" AND TcQ_mass is less than 9000, predict FAILURE.

**RULE 16 - Short Treatment High Mass Failure Rule**:
If Treatment_Months is less than 40 AND TcQ_mass is greater than 27000 AND (Genetic_Class_A_Matches + Genetic_Class_B_Matches) is 7 or higher, predict FAILURE.

**RULE 17 - High Mass Beta Success Rule**:
If TcQ_mass is between 90000 and 250000 AND Histogen_Complex is "Beta" AND Treatment_Months is less than 130, predict SUCCESS.

**RULE 18 - Omicron Male Moderate Mass Rule**:
If Histogen_Complex is "Omicron" AND Sex is "male" AND TcQ_mass is between 10000 and 27000 AND Treatment_Months is less than 150, predict SUCCESS.

**RULE 19 - Beta Treatment 135-140 Rule**:
If Histogen_Complex is "Beta" AND Treatment_Months is between 135 and 140 AND TcQ_mass is between 30000 and 40000, predict FAILURE.

**RULE 20 - Delta Male Moderate Mass B1 Success Rule**:
If Histogen_Complex is "Delta" AND Sex is "male" AND TcQ_mass is between 15000 and 25000 AND Genetic_Class_B_Matches equals 1 AND Treatment_Months is not between 88 and 92, predict SUCCESS.

**DEFAULT RULE**:
If none of the above rules apply:
- If TcQ_mass is greater than 25000 AND Histogen_Complex is not "Omicron", predict SUCCESS
- Otherwise, predict FAILURE

Apply these rules in order from 1 to 20. Use the first rule that matches. If no rules match, use the DEFAULT RULE.

Output only one word: either "Success" or "Failure".