Round 382

Round UUID: 2b1fd6bf-43d1-4518-96f1-4b437b605535

Prompt:

You are analyzing coral reef health data to classify reefs as either "Healthy" or "Stressed". 

Apply these rules in order:

**IMMEDIATE STRESS INDICATORS (classify as Stressed if ANY are true):**
1. PollutionLevel = "Critical"
2. ReefIntegrityScore = "Very Poor"
3. BleachingEventsPerYear = "Constant" AND (ReefIntegrityScore = "Poor" OR BiodiversityIndex = "Low" OR "Very Low")
4. PollutionLevel = "High" AND BiodiversityIndex = "Low"
5. AcousticIntensity > 1200 OR AcousticIntensity < 80

**STRONG HEALTHY INDICATORS (classify as Healthy if ALL are true):**
1. PreviousStressIncidents = "None" 
2. BleachingEventsPerYear = "Rare"
3. ReefIntegrityScore = "Good" OR "Excellent"
4. BiodiversityIndex = "High" OR "Very High"
5. PollutionLevel = "Low"

**COMBINED STRESS ASSESSMENT (classify as Stressed if 2+ are true):**
1. CurrentFlowQuality = "Poor"
2. AlgalCoverage = "Heavy" OR "Extensive"
3. PredatorActivityLevel = "High" OR "Extreme" 
4. BleachingEventsPerYear = "Frequent"
5. PollutionLevel = "High" OR "Moderate"
6. ReefIntegrityScore = "Poor"
7. BiodiversityIndex = "Low" OR "Very Low"

**DEFAULT:** If none of the above rules apply, classify as "Healthy"

Analyze the given reef data and classify it as either "Healthy" or "Stressed" based on these rules.