Round 262

Round UUID: 416f2895-d27c-4bc3-919c-2e37558fd5f9

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 - Extended Treatment Failure Rule**:
If Treatment_Months is greater than 150 AND TcQ_mass is greater than 30000 AND Histogen_Complex is either "Beta" or "Delta", predict FAILURE.

**RULE 3 - High Genetic A with Delta Rule**:
If Histogen_Complex is "Delta" AND Genetic_Class_A_Matches is 5 or higher AND TcQ_mass is greater than 30000, predict FAILURE.

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

**RULE 5 - High TcQ_mass with Low Treatment Rule**: 
If TcQ_mass is greater than 100000 AND Treatment_Months is less than 150, predict SUCCESS.

**RULE 6 - Beta Complex Moderate Mass Rule**: 
If Histogen_Complex is "Beta" AND TcQ_mass is between 10000 and 30000, predict SUCCESS.

**RULE 7 - Combined High Genetic Matches Rule**:
If (Genetic_Class_A_Matches + Genetic_Class_B_Matches) is 5 or higher AND TcQ_mass is greater than 20000, predict SUCCESS.

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

**RULE 9 - Omicron Male Mid-Range Rule**:
If Histogen_Complex is "Omicron" AND Sex is "male" AND TcQ_mass is between 12000 and 20000, predict SUCCESS.

**RULE 10 - Short Treatment High Mass Failure Rule**:
If Treatment_Months is less than 20 AND TcQ_mass is greater than 15000 AND TcQ_mass is less than 20000, predict FAILURE.

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

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

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