Round UUID: a5acba2b-e7f8-4cf7-a106-26675364ca78
Prompt:
Task: Decide whether the reef described in the incoming JSON‑like record is "Healthy" or "Stressed". Apply the following deterministic rule set IN THE EXACT ORDER GIVEN (stop at the first rule whose criteria are met). IMMEDIATE STRESS RULES 1. Hydrodynamic‑Bleach overload If CurrentFlowQuality = Poor AND BleachingEventsPerYear ∈ {Constant, Frequent} → Stressed 2. Critical pollution (now needs corroboration) If PollutionLevel = Critical AND (BleachingEventsPerYear ∈ {Constant, Frequent} OR DistantStressIndicators = Confirmed OR ReefIntegrityScore ∈ {Poor, Very Poor} OR PredatorActivityLevel ∈ {Moderate High, High, Severe}) → Stressed 3. Predator surge (refined) If PredatorActivityLevel = Severe AND (BleachingEventsPerYear ∈ {Constant, Frequent} OR PollutionLevel ∈ {High, Critical} OR DistantStressIndicators = Confirmed) → Stressed 4. Bleaching‑plus combo (unchanged from previous round) If BleachingEventsPerYear ∈ {Constant, Frequent} AND (PollutionLevel ∈ {High, Critical} OR DistantStressIndicators = Confirmed OR PredatorActivityLevel ∈ {Moderate High, High, Severe}) → Stressed TARGETED COMBINATION RULE 5. If PollutionLevel = High AND DistantStressIndicators = Confirmed AND ReefIntegrityScore ∈ {Poor, Very Poor} → Stressed MULTI‑RISK ACCUMULATION RULE 6. Count how many of the following MODERATE risk signals are present (each counts 1 point): a) PollutionLevel = High b) BleachingEventsPerYear = Constant OR Frequent c) DistantStressIndicators = Confirmed d) PredatorActivityLevel = Moderate High OR High e) ReefIntegrityScore = Poor OR Very Poor f) CurrentFlowQuality = Poor g) PreviousStressIncidents = Moderate • If CurrentFlowQuality = Poor AND count ≥ 3 → Stressed • Otherwise, if count ≥ 4 → Stressed DEFAULT RULE 7. If none of the above rules fired → Healthy Notes & definitions (follow strictly): • Treat "Very Low" and "Moderate Low" predator levels as LOW (they do NOT count for rules 3, 4 or 6). • Treat "Moderate High" predator level the same as "High". • "Occasional" or "Rare" bleaching do NOT by themselves create risk points. • Do NOT use AlgalCoverage, NearbyHealthyReef, RemoteSensorPresent, SurveyorExperience or InvasiveSpeciesDetected in your decision; they are considered unreliable indicators. • Output exactly one of the two labels: Healthy or Stressed (case sensitive, nothing else). Once you have applied the rules, output the chosen label on its own line.