Round 236

Round UUID: b8b43370-3fcb-4f2c-a43b-3294ef1bee72

Prompt:

Given the following entity data, classify the entity as either 'DoubleAgent' or 'Loyal' using these explicit, prioritized rules:

1. If AccentThickness > 45, classify as Loyal.
2. If SecretHandshakeQuality >= 70 and AccentThickness <= 45, classify as DoubleAgent.
3. If SecretHandshakeQuality >= 65 and AccentThickness <= 32, classify as DoubleAgent.
4. If SecretHandshakeQuality >= 60 and AccentThickness <= 20, classify as DoubleAgent.
5. If SecretHandshakeQuality >= 55 and AccentThickness <= 18, classify as DoubleAgent.
6. In all other cases, classify as Loyal.

Entity Data:
    SecretHandshakeQuality: [value]
    AccentThickness: [value]

Classify as either 'DoubleAgent' or 'Loyal' and provide only the label.