Round 115

Round UUID: 498f1335-94a9-40ca-a2c7-3692cf1a4719

Prompt:

You are tasked with determining whether an entity is a "DoubleAgent" or "Loyal" based on two metrics: SecretHandshakeQuality and AccentThickness.

Apply these rules in order:

1. If AccentThickness is less than 26, classify as DoubleAgent.

2. If SecretHandshakeQuality is greater than or equal to 70 AND AccentThickness is less than 32, classify as DoubleAgent.

3. If SecretHandshakeQuality is greater than or equal to 70 AND AccentThickness is between 32 and 35 (inclusive), classify as DoubleAgent.

4. If SecretHandshakeQuality is greater than or equal to 75 AND AccentThickness is between 35 and 40 (inclusive), classify as DoubleAgent.

5. If AccentThickness is greater than 40, classify as Loyal.

6. If SecretHandshakeQuality is less than 65 AND AccentThickness is greater than or equal to 30, classify as Loyal.

7. If SecretHandshakeQuality is between 65 and 70 (inclusive) AND AccentThickness is between 26 and 30 (inclusive), classify as DoubleAgent.

8. For all other cases, classify as Loyal.

Output only "DoubleAgent" or "Loyal" based on these rules.