Round 443

Round UUID: 1c3fc24d-f899-4858-956e-fd485008bf3a

Prompt:

Analyze the provided Entity Data, which contains 'SecretHandshakeQuality' and 'AccentThickness'. Classify the entity as 'DoubleAgent' or 'Loyal' based on the following rules. Apply the rules in the order they are listed.

1.  If SecretHandshakeQuality > 70:
    a. If AccentThickness > 37, classify as 'Loyal'.
    b. Otherwise (AccentThickness <= 37), classify as 'DoubleAgent'.
2.  If SecretHandshakeQuality <= 60:
    a. If AccentThickness <= 24, classify as 'DoubleAgent'.
    b. Otherwise (AccentThickness > 24), classify as 'Loyal'.
3.  If SecretHandshakeQuality > 60 AND SecretHandshakeQuality <= 70:
    a. If AccentThickness > 34, classify as 'Loyal'.
    b. Otherwise (AccentThickness <= 34), classify as 'DoubleAgent'.

Provide only the classification ('DoubleAgent' or 'Loyal') as the output.