    <script>
    jQuery(function($) {
        const birthYearGroups = {"2022":"Tiny Tot","2021":"Tiny Tot","2020":"U6","2019":"U7","2018":"U8","2017":"U9","2016":"U10","2015":"U11","2014":"U12","2013":"U13","2012":"U14","2011":"U15","2010":"U16","2009":"U17"};
        const $dobField = $('#input_7_3');
        const $ageGroupField = $('#input_7_4');
        const $submitButtons = $('#gform_submit_button_7, #gform_7 input[type="submit"], #gform_7 .gform_button');
        const $form = $('#gform_7');

        // Event mappings based on age groups (matching exact HTML values)
        const eventMappings = {
            'U6': ['Shot put', '100m', '70m', 'Long jump'],
            'U7': ['Long jump', '100m', '70m', 'Shot put', '200m'],
            'U8': ['100m', '70m', 'Shot put', '200m', 'Long jump'],
            'U9': ['100m', 'Discus', 'High jump', '800m', '200m', '60m Hurdles'],
            'U10': ['100m', 'Shot put', 'High jump', '200m', '800m', '60m Hurdles'],
            'U11': ['Shot put', '100m', 'High jump', 'Discus', '200m', '800m', '80m Hurdles'],
            'U12': ['800m', '100m', 'Long jump', '200m', 'Shot put', '80m Hurdles'],
            'U13': ['800m', 'Discus', '100m', '200m', 'High jump', '80m Hurdles'],
            'U14': ['800m', 'Shot put', '200m', '100m', 'Long jump', 'Girls 80m Hurdles / Boys 90m Hurdles'],
            'U15': ['800m', 'High jump', '100m', 'Shot put', 'Girls 90m Hurdles / Boys 100m Hurdles'],
            'U16': ['800m', 'High jump', '100m', 'Discus', 'Girls 90m Hurdles / Boys 100m Hurdles'],
            'U17': ['800m', 'High jump', '100m', 'Shot put', 'Girls 100m Hurdles / Boys 110m Hurdles']
        };

        // Selection limits for each age group
        const selectionLimits = {
            'U6': 4,
            'U7': 4,
            'U8': 4,
            'U9': 5,
            'U10': 5,
            'U11': 5,
            'U12': 5,
            'U13': 5,
            'U14': 5,
            'U15': 4,
            'U16': 4,
            'U17': 4
        };

        function makeAgeGroupReadOnly() {
            if ($ageGroupField.is('select')) {
                $ageGroupField.prop('disabled', true);
            } else if ($ageGroupField.is('input[type="text"]')) {
                $ageGroupField.prop('readonly', true);
            } else if ($ageGroupField.is('input[type="radio"]')) {
                $('input[name="input_4"]').prop('disabled', true);
            }
        }
        function makeAgeGroupEditable() {
            if ($ageGroupField.is('select')) {
                $ageGroupField.prop('disabled', false);
            } else if ($ageGroupField.is('input[type="text"]')) {
                $ageGroupField.prop('readonly', false);
            } else if ($ageGroupField.is('input[type="radio"]')) {
                $('input[name="input_4"]').prop('disabled', false);
            }
        }
        function toggleSubmit(disable, message = '') {
            if (disable) {
                if (!$submitButtons.prop('disabled')) {
                    $submitButtons.prop('disabled', true).addClass('btn-disabled');
                    if (!$('#submit-disabled-message').length) {
                        $submitButtons.after('<div id="submit-disabled-message">' + (message || 'Form submission is disabled.') + '</div>');
                    }
                }
            } else {
                $submitButtons.prop('disabled', false).removeClass('btn-disabled');
                $('#submit-disabled-message').remove();
            }
        }
        function showWarning(message, isError = false) {
            $('#age-group-warning').remove();
            if (message) {
                $('#field_7_4').append('<div id="age-group-warning" class="' + (isError ? 'gfield_error' : 'gfield_warning') + '">' + message + '</div>');
            }
        }
        function updateSelectionCounter(ageGroup) {
            const limit = selectionLimits[ageGroup] || 0;
            const $visibleCheckboxes = $('#field_7_8 .gchoice:visible input[type="checkbox"]');
            const selectedCount = $visibleCheckboxes.filter(':checked').length;

            // Remove existing counter and message
            $('#selection-counter').remove();
            $('#selection-limit-message').remove();

            if (limit > 0) {
                // Add counter
                const counterClass = selectedCount >= limit ? 'counter-limit-reached' : 'counter-normal';
                const counterHtml = '<div id="selection-counter" class="checkbox-counter ' + counterClass + '">Selected: ' + selectedCount + ' / ' + limit + '</div>';
                $('#field_7_8').prepend(counterHtml);

                const messageHtml = '<div id="selection-limit-message" class="checkbox-limit-message">Select up to ' + limit + ' events for this age group.</div>';
                $('#field_7_8').append(messageHtml);

                // Enable/disable checkboxes based on limit
                if (selectedCount >= limit) {
                    $visibleCheckboxes.each(function() {
                        if (!$(this).is(':checked')) {
                            $(this).closest('.gchoice').addClass('gfield_disabled_checkbox');
                            $(this).prop('disabled', true);
                        }
                    });
                } else {
                    $visibleCheckboxes.each(function() {
                        $(this).closest('.gchoice').removeClass('gfield_disabled_checkbox');
                        $(this).prop('disabled', false);
                    });
                }
            }
        }

        function updateEventChoices(ageGroup) {
            const $eventChoices = $('#field_7_8 .gchoice');

            // Hide all choices initially and uncheck them
            $eventChoices.each(function() {
                $(this).hide();
                $(this).find('input[type="checkbox"]').prop('checked', false);
            });

            if (!ageGroup || ageGroup === '' || ageGroup === 'No Events Available') {
                return;
            }

            const eventsToShow = eventMappings[ageGroup] || [];

            if (eventsToShow.length > 0) {
                $eventChoices.each(function() {
                    const $choice = $(this);
                    const $label = $choice.find('label');
                    const labelText = $label.text().trim();

                    const shouldShow = eventsToShow.some(event => {
                        const labelLower = labelText.toLowerCase().trim();
                        const eventLower = event.toLowerCase().trim();
                        if (labelLower === eventLower) return true;
                        if (labelLower.includes('hurdles')) {
                            return labelLower === eventLower;
                        }
                        if (!eventLower.includes('hurdles')) {
                            return labelLower === eventLower;
                        }
                        return false;
                    });

                    if (shouldShow) {
                        $choice.show();
                    }
                });
            }
            updateSelectionCounter(ageGroup);
        }

        function getAgeGroup(dateString) {
            if (!dateString) return { group: '', warning: '', disable: false };
            const birthYear = new Date(dateString).getFullYear();
            const currentYear = new Date().getFullYear();
            if (birthYear > currentYear) return { group: '', warning: 'Invalid date: Birth year cannot be in the future.', disable: true, isError: true, msg: 'Cannot submit with future birth date.' };
            if (birthYear < 1900) return { group: '', warning: 'Invalid date: Please enter a valid birth year.', disable: true, isError: true, msg: 'Cannot submit with invalid birth date.' };
            if (birthYearGroups[birthYear]) return { group: birthYearGroups[birthYear], warning: '', disable: false };
            if (birthYear < 2009) return { group: 'No Events Available', warning: 'Athlete too old for youth events.', disable: true, msg: 'Cannot register: Over maximum age.' };
            if (birthYear > 2022) return { group: 'No Events Available', warning: 'Athlete too young for events.', disable: true, msg: 'Cannot register: Under minimum age.' };
            return { group: 'No Events Available', warning: 'No events available.', disable: true, msg: 'Cannot register for this age group.' };
        }

        function clearAgeGroupValue() {
            makeAgeGroupEditable();

            if ($ageGroupField.is('select') || $ageGroupField.is('input[type="text"]')) {
                $ageGroupField.val('');
            } else if ($ageGroupField.is('input[type="radio"]')) {
                $('input[name="input_4"]').prop('checked', false);
            }

            showWarning('');
            toggleSubmit(false);
            updateEventChoices('');
            $ageGroupField.trigger('change');

            setTimeout(makeAgeGroupReadOnly, 50);
        }

        function populateAgeGroup() {
            const dobValue = $dobField.val();
            const result = getAgeGroup(dobValue);

            makeAgeGroupEditable();

            if (dobValue && result.group) {
                if ($ageGroupField.is('select') || $ageGroupField.is('input[type="text"]')) {
                    $ageGroupField.val(result.group);
                } else if ($ageGroupField.is('input[type="radio"]')) {
                    $('input[name="input_4"][value="' + result.group + '"]').prop('checked', true);
                }
                updateEventChoices(result.group);
                $ageGroupField.trigger('change');
            } else if (!dobValue) {
                if ($ageGroupField.is('select') || $ageGroupField.is('input[type="text"]')) {
                    $ageGroupField.val('');
                } else if ($ageGroupField.is('input[type="radio"]')) {
                    $('input[name="input_4"]').prop('checked', false);
                }
                updateEventChoices('');
                $ageGroupField.trigger('change');
            }

            showWarning(result.warning, result.isError);
            toggleSubmit(result.disable, result.msg);

            setTimeout(makeAgeGroupReadOnly, 50);
        }

        // Event handlers
        $dobField.on('change blur', populateAgeGroup);

        // Handle checkbox selection changes
        $(document).on('change', '#field_7_8 input[type="checkbox"]', function() {
            const currentAgeGroup = $ageGroupField.val();
            if (currentAgeGroup) {
                updateSelectionCounter(currentAgeGroup);
            }
        });

        $form.on('submit', function(e) {
            if ($submitButtons.prop('disabled')) {
                e.preventDefault();
                alert('Form cannot be submitted. Please check the age group requirements.');
            }
        });

        // Initialize
        makeAgeGroupReadOnly();
        updateEventChoices('');
        setTimeout(populateAgeGroup, 300);
    });
    </script>
    <style>
    #input_7_4:disabled, 
    #input_7_4[readonly],
    input[name="input_4"]:disabled + label {
        background-color: #f5f5f5 !important;
        cursor: not-allowed !important;
    }
    .gfield_warning { background:#fff3cd !important; border:1px solid #ffeaa7 !important; color:#856404 !important; margin-top:10px; padding:10px; border-radius:4px; font-size:14px; }
    .gfield_error { background:#f8d7da !important; border:1px solid #f5c6cb !important; color:#721c24 !important; margin-top:10px; padding:10px; border-radius:4px; font-size:14px; }
    .btn-disabled { opacity:.5 !important; cursor:not-allowed !important; background-color:#ccc !important; border-color:#ccc !important; }
    #submit-disabled-message { color:#721c24 !important; font-size:14px !important; margin-top:10px !important; font-weight:bold !important; }
    #field_7_8 .gchoice { transition: opacity 0.3s ease; }
    #field_7_8 .gchoice:hidden { display: none !important; }
    .checkbox-limit-message{color:#155724;font-size:14px;margin-top:8px;font-weight:bold;background-color:#d4edda;padding:8px 12px;border-radius:4px;border:1px solid #c3e6cb}
    .checkbox-counter{font-size:13px;margin:5px 0 10px;padding:4px 8px;border-radius:3px;display:inline-block}
    .counter-normal{color:#155724;background-color:#d4edda;border:1px solid #c3e6cb}
    .counter-limit-reached{color:#155724;background-color:#d4edda;border:1px solid #c3e6cb;font-weight:bold}
    .gfield_disabled_checkbox{opacity:.5;pointer-events:none}
    .gfield_disabled_checkbox label{color:#999!important;cursor:not-allowed!important}
    </style>
    
<script>
jQuery(function($) {
    const birthYearGroups = {"2019":"U7","2018":"U8","2017":"U9","2016":"U10","2015":"U11","2014":"U12","2013":"U13","2012":"U14","2011":"U15","2010":"U16","2009":"U17"};

    // IDs updated for form 8
    const $dobField       = $('#input_8_3');                  
    const $ageGroupField  = $('#input_8_4');                  
    const $submitButtons  = $('#gform_submit_button_8, #gform_8 input[type="submit"], #gform_8 .gform_button');
    const $form           = $('#gform_8');

    // Event mappings from your Excel (U7 has events; none for U6)
    const eventMappings = {
        'U7':  ['4 x 70m', '4 x 100m', 'Long Jump', 'Discus'],
        'U8':  ['4 x 70m', '4 x 100m', 'Long Jump', 'Shot Put'],
        'U9':  ['4 x 100m', '4 x Swedish', 'High Jump', 'Discus', 'Shot Put'],
        'U10': ['4 x 100m', '4 x Swedish', 'Long Jump', 'High Jump', 'Shot Put'],
        'U11': ['4 x 100m', '4 x Distance', 'Long Jump', 'Discus', 'Shot Put'],
        'U12': ['4 x 100m', '4 x Distance', 'Long Jump', 'High Jump', 'Discus'],
        'U13': ['4 x 100m', '4 x Distance', 'High Jump', 'Discus', 'Shot Put'],
        'U14': ['4 x 100m', '4 x Swedish', 'Long Jump', 'High Jump', 'Shot Put'],
        'U15': ['4 x 100m', '4 x Swedish', 'Long Jump', 'High Jump', 'Discus'],
        'U16': ['4 x 100m', '4 x Swedish', 'Long Jump', 'Discus', 'Shot Put'],
        'U17': ['4 x 100m', '4 x Swedish', 'Long Jump', 'Discus', 'Shot Put']
    };

    // Make Age Group read-only in the UI
    function makeAgeGroupReadOnly() {
        if ($ageGroupField.is('select')) {
            $ageGroupField.prop('disabled', true);
        } else if ($ageGroupField.is('input[type="text"]')) {
            $ageGroupField.prop('readonly', true);
        } else if ($ageGroupField.is('input[type="radio"]')) {
            $('input[name="input_4"]').prop('disabled', true);
        }
    }
    function makeAgeGroupEditable() {
        if ($ageGroupField.is('select')) {
            $ageGroupField.prop('disabled', false);
        } else if ($ageGroupField.is('input[type="text"]')) {
            $ageGroupField.prop('readonly', false);
        } else if ($ageGroupField.is('input[type="radio"]')) {
            $('input[name="input_4"]').prop('disabled', false);
        }
    }

    function toggleSubmit(disable, message = '') {
        if (disable) {
            if (!$submitButtons.prop('disabled')) {
                $submitButtons.prop('disabled', true).addClass('btn-disabled');
                if (!$('#submit-disabled-message').length) {
                    $submitButtons.after('<div id="submit-disabled-message">' + (message || 'Form submission is disabled.') + '</div>');
                }
            }
        } else {
            $submitButtons.prop('disabled', false).removeClass('btn-disabled');
            $('#submit-disabled-message').remove();
        }
    }

    function showWarning(message, isError = false) {
        $('#age-group-warning').remove();
        if (message) {
            $('#field_8_4').append('<div id="age-group-warning" class="' + (isError ? 'gfield_error' : 'gfield_warning') + '">' + message + '</div>');
        }
    }

    // Show only the events for the detected age group
    function updateEventChoices(ageGroup) {
        const $eventChoices = $('#field_8_8 .gchoice');

        // Hide all choices & uncheck when age group changes
        $eventChoices.each(function() {
            $(this).hide();
            $(this).find('input[type="checkbox"]').prop('checked', false).prop('disabled', false);
            $(this).removeClass('gfield_disabled_checkbox');
        });

        if (!ageGroup || !eventMappings[ageGroup]) return;

        const eventsToShow = eventMappings[ageGroup];

        $eventChoices.each(function() {
            const $choice   = $(this);
            const labelText = $choice.find('label').text().trim().toLowerCase();
            const shouldShow = eventsToShow.some(ev => ev.toLowerCase().trim() === labelText);
            if (shouldShow) $choice.show();
        });
    }

    // Determine age group from DOB
    function getAgeGroup(dateString) {
        if (!dateString) return { group: '', warning: '', disable: false };

        const birthYear   = new Date(dateString).getFullYear();
        const currentYear = new Date().getFullYear();

        if (birthYear > currentYear) {
            return { group: '', warning: 'Invalid date: Birth year cannot be in the future.', disable: true, isError: true, msg: 'Cannot submit with future birth date.' };
        }
        if (birthYear < 1900) {
            return { group: '', warning: 'Invalid date: Please enter a valid birth year.', disable: true, isError: true, msg: 'Cannot submit with invalid birth date.' };
        }

        // Too young (U6 and younger) – no events
        if (birthYear >= 2020) {
            return { group: 'No Events Available', warning: 'Athlete too young for events (Under 6).', disable: true, msg: 'Cannot register: Under minimum age.' };
        }

        // Valid mapped years (U7–U17)
        if (birthYearGroups[birthYear]) {
            return { group: birthYearGroups[birthYear], warning: '', disable: false };
        }

        // Too old for youth events
        if (birthYear < 2009) {
            return { group: 'No Events Available', warning: 'Athlete too old for youth events.', disable: true, msg: 'Cannot register: Over maximum age.' };
        }

        // Fallback
        return { group: 'No Events Available', warning: 'No events available for this birth year.', disable: true, msg: 'Cannot register for this age group.' };
    }

    function populateAgeGroup() {
        const dobValue = $dobField.val();
        const result   = getAgeGroup(dobValue);

        makeAgeGroupEditable();

        if (dobValue && result.group) {
            if ($ageGroupField.is('select') || $ageGroupField.is('input[type="text"]')) {
                $ageGroupField.val(result.group);
            } else if ($ageGroupField.is('input[type="radio"]')) {
                $('input[name="input_4"][value="' + result.group + '"]').prop('checked', true);
            }
            updateEventChoices(result.group);
            $ageGroupField.trigger('change');
        } else if (!dobValue) {
            if ($ageGroupField.is('select') || $ageGroupField.is('input[type="text"]')) {
                $ageGroupField.val('');
            } else if ($ageGroupField.is('input[type="radio"]')) {
                $('input[name="input_4"]').prop('checked', false);
            }
            updateEventChoices('');
            $ageGroupField.trigger('change');
        }

        showWarning(result.warning, result.isError);
        toggleSubmit(result.disable, result.msg);

        setTimeout(makeAgeGroupReadOnly, 50);
    }

    // Events
    $dobField.on('change blur', populateAgeGroup);

    $form.on('submit', function(e) {
        if ($submitButtons.prop('disabled')) {
            e.preventDefault();
            alert('Form cannot be submitted. Please check the age group requirements.');
        }
    });

    // Init
    makeAgeGroupReadOnly();
    updateEventChoices('');
    setTimeout(populateAgeGroup, 300);
});
</script>

<style>
#input_8_4:disabled,
#input_8_4[readonly],
input[name="input_4"]:disabled + label {
    background-color:#f5f5f5!important;
    cursor:not-allowed!important;
}
.gfield_warning{background:#fff3cd!important;border:1px solid #ffeaa7!important;color:#856404!important;margin-top:10px;padding:10px;border-radius:4px;font-size:14px}
.gfield_error{background:#f8d7da!important;border:1px solid #f5c6cb!important;color:#721c24!important;margin-top:10px;padding:10px;border-radius:4px;font-size:14px}
.btn-disabled{opacity:.5!important;cursor:not-allowed!important;background-color:#ccc!important;border-color:#ccc!important}
#submit-disabled-message{color:#721c24!important;font-size:14px!important;margin-top:10px!important;font-weight:bold!important}
#field_8_8 .gchoice{transition:opacity .3s ease}
#field_8_8 .gchoice:hidden{display:none!important}
</style>
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//redlandsathletics.org.au/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd http://www.google.com/schemas/sitemap-image/1.1 http://www.google.com/schemas/sitemap-image/1.1/sitemap-image.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<url>
		<loc>https://redlandsathletics.org.au/</loc>
		<lastmod>2025-09-05T07:32:51+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Bird-and-Co-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Honoured-logo-3.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/kids-running-icon.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/running.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/services-banner.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/shot-put.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/start.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/boy-sprinting-athletic-race-blue-track.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/LAQ-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/teenager-running.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/excellence.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/membership.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/man-running.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/female-long-jumper-athletics-competition-red-green-uniform.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/running.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/ATG-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Australian-Onsite-Training-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/WellnessonWellingtoon-logo.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/contact</loc>
		<lastmod>2025-07-30T03:07:28+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/placeholder-1.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/open-1.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/phone-call-1.png</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/terms-and-conditions</loc>
		<lastmod>2025-07-30T04:18:22+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/privacy-policy</loc>
		<lastmod>2025-07-30T04:19:17+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/thank-you</loc>
		<lastmod>2025-08-01T01:47:30+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-Athletics-logo.svg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/our-coaches</loc>
		<lastmod>2025-08-05T03:00:09+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/relay-baton-handoff-cutout.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/coaches.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/youth-athletics-team-huddle-track-event-1.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/junior-athletics-coaching-session.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/redlands-athletics-girls-stretching-wall-1.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/relay-baton-exchange-race.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/children-sports-day-costumes-event.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/redlands-athletics-event-briefing-track-day.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/awards/representatives-special-recognition</loc>
		<lastmod>2025-08-07T06:42:19+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Laura-McKillop.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Kyle-Bennett.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/code-of-behavior</loc>
		<lastmod>2025-08-08T03:21:44+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/athlete-support</loc>
		<lastmod>2025-08-08T04:05:31+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/work-in-progress-icon.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/celebration.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/programs/competition-events</loc>
		<lastmod>2025-08-12T06:39:30+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/LAQ-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/LA_AU_LOGO_no_bg.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Queensland-Athletics-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Australian-Athletics-logo.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/awards/annual-awards</loc>
		<lastmod>2025-08-25T23:59:19+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/awards/club-honors</loc>
		<lastmod>2025-08-26T00:11:23+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/committee-leadership</loc>
		<lastmod>2025-08-28T19:06:11+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/boy-long-jump-youth-athletics-competition.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/officiating</loc>
		<lastmod>2025-08-28T19:11:05+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Redlands-Athletics-Officials-Team-Group-Photo.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/trial-closed</loc>
		<lastmod>2025-08-28T23:40:25+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Youth-Relay-Race-with-Track-and-Field-Athletes-1.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/sponsors</loc>
		<lastmod>2025-09-01T00:01:57+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Bird-and-Co-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Honoured-logo-3.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Australian-Onsite-Training-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/ATG-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/WellnessonWellingtoon-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/VP-Kebabs.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/splitfast.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/timabara-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/JDS-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Flynn-Thai-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/cordies-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/bay-island-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/elysium-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/bcf-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Kim-Richards-1.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/sea-fuel-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/inflatable-world-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/GYG-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Clippy-Ts-Barbershop-logo-1.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Soul-Haven-Remedial-Massage-Therapy-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Shear-Diamond-Barbershop-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Teppanyaki-Bar-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Redlands-Florist-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/PPD-Hydration-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/smoked-loaded-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Fresh-Cuts-Butchery-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/The-Mailman-Cafe-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Zarraffas-Coffee-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Capalaba-Carnations-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/The-Cupcake-Effect-logo.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/The-Bean-Leaf-Cafe-cleveland-logo.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/programs</loc>
		<lastmod>2025-09-03T08:40:42+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/excellence.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/membership-card.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/running.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/young-girl-relay-runner-sprinting-1.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/programs/tiny-tots</loc>
		<lastmod>2025-09-03T09:02:07+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/boy.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/family-2.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/medal.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/kids-running-icon.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/excellence.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/membership-card.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/running.png</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/programs/senior-athletics</loc>
		<lastmod>2025-09-03T09:02:11+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/competition.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/family-2.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/network.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/rating.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/excellence.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/membership-card.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/running.png</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/register</loc>
		<lastmod>2025-09-03T09:03:53+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/qr-code-public-wizard-a-1756-1753321077.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/signup.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/discount.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/transaction.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/awards</loc>
		<lastmod>2025-09-03T09:07:43+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Redlands-Award.-1.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/work-in-progress-icon.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/award.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/celebration.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Redlands-Award-5.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Redlands-Award-12.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Redlands-Award-13.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Redlands-Award-16.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Redlands-Award-9.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Redlands-Award-11.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Redlands-Award.-2.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Redlands-Award-15.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Redlands-Award-6.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Redlands-Award-10.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Redlands-Award.-1.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/medal-ceremony-athletics.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Redlands-Award-7.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/programs/competition-events/state-level-competition</loc>
		<lastmod>2025-09-04T01:23:55+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/work-in-progress-icon.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/membership-card.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/competition.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/programs/competition-events/redlands-league-day</loc>
		<lastmod>2025-09-04T01:26:04+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/running.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/start.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/competition.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/programs/competition-events/special-club-events</loc>
		<lastmod>2025-09-04T01:26:39+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/calendar-icon.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/membership.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/competition.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/programs/junior-athletics</loc>
		<lastmod>2025-09-05T03:05:21+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/boy.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/competition.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/network.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/rating.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/excellence.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/membership-card.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/running.png</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/about</loc>
		<lastmod>2025-09-05T06:14:32+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/Child-Competing-in-Little-Athletics-Relay-Race.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/09/Older-Child-Welcomes-Toddler-During-Junior-Sports-Ceremony.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/09/Junior-Sports-Team-Smiling-with-Coach-at-Local-Event.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/coach.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/family-2.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/medal.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/clipboard.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/coach-liam-w-background.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/club-documents</loc>
		<lastmod>2025-09-15T02:01:07+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/PDF_file_icon.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/PDF_file_icon.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/PDF_file_icon.webp</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/PDF_file_icon.webp</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/carnival-nomination</loc>
		<lastmod>2025-09-22T07:10:16+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/09/Carnival-Nomination-2025-1.png</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/carnival-nomination/thank-you</loc>
		<lastmod>2025-09-25T07:14:01+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-Athletics-logo.svg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/regional-relay/thank-you</loc>
		<lastmod>2025-10-09T09:15:44+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-Athletics-logo.svg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/regional-relay</loc>
		<lastmod>2025-10-13T08:06:11+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://redlandsathletics.org.au/programs/competition-events/regional-events</loc>
		<lastmod>2025-10-14T02:15:33+00:00</lastmod>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/Redlands-featured-image.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/running.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/07/start.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://redlandsathletics.org.au/wp-content/uploads/2025/08/competition.webp</image:loc>
		</image:image>
	</url>
</urlset>
<!-- XML Sitemap generated by Yoast SEO -->