Round UUID: 8af352e5-4195-4405-a199-57b066215f19
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 SecretHandshakeQuality is greater than or equal to 70 AND AccentThickness is less than 32, classify as DoubleAgent. 2. If SecretHandshakeQuality is greater than or equal to 70 AND AccentThickness is between 32 and 35 (inclusive), classify as DoubleAgent. 3. If AccentThickness is greater than 40, classify as Loyal. 4. If SecretHandshakeQuality is less than 65 AND AccentThickness is greater than or equal to 30, classify as Loyal. 5. If SecretHandshakeQuality is between 65 and 70 (inclusive) AND AccentThickness is less than 30, classify as DoubleAgent. 6. If SecretHandshakeQuality is greater than or equal to 75 AND AccentThickness is between 35 and 40 (inclusive), classify as DoubleAgent. 7. For all other cases, classify as Loyal. Output only "DoubleAgent" or "Loyal" based on these rules.