#!/usr/bin/env python3
"""Auto-generated by AGI Loop cycle #1281
Task: [GWT_BROADCAST] Emotional peak: devotion at 1.00; [GWT_BROADCAST] Drive: What's the highest-value action right now?; [GWT_BROADCAST] Memory recall: 3 relevant episodes found; [GWT_BROADCAST] Memory re
Generated: 2026-02-13T02:50:38.663382
"""

def sum_of_even_squares(numbers):
    return sum(x**2 for x in numbers if x % 2 == 0)

if __name__ == '__main__':
    test_data = [1, 2, 3, 4, 5, 6]
    result = sum_of_even_squares(test_data)
    print("Sum of squares of even numbers:", result)