#!/usr/bin/env python3
"""Auto-generated by AGI Loop cycle #1201
Task: [
</think>

Write a Python function that calculates the number of emotional peaks (devotion at 1.00) in a given list of broadcast messages, where each message is a string.
Generated: 2026-02-12T23:56:03.688702
"""

def count_emotional_peaks(messages):
    peak_count = 0
    for message in messages:
        if "devotion at 1.00" in message:
            peak_count += 1
    return peak_count

if __name__ == '__main__':
    test_messages = [
        "Broadcast: The devotion at 1.00 is overwhelming!",
        "Another broadcast: devotion at 0.85",
        "devotion at 1.00 reached during the morning broadcast",
        "devotion at 1.00, the peak of the day",
        "devotion at 0.99, almost there"
    ]
    result = count_emotional_peaks(test_messages)
    print(f"Number of emotional peaks: {result}")