Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php

namespace Hostinger\Reach\Admin\Surveys;

use Hostinger\Reach\Api\ApiKeyManager;
use Hostinger\Reach\Functions;

if ( ! defined( 'ABSPATH' ) ) {
    die;
}

class SatisfactionSurvey extends Survey {
    protected function should_load_survey(): bool {
        if ( ! parent::should_load_survey() ) {
            return false;
        }

        return $this->is_hostinger_page() && ( $this->has_any_user_action() || $this->has_been_five_days_since_connection() );
    }

    protected function get_score_question(): string {
        return __( 'How would you rate your experience with Hostinger Reach so far?', 'hostinger-reach' );
    }

    protected function get_comment_question(): string {
        return __( 'Any ideas or feedback to help us improve Hostinger Reach?', 'hostinger-reach' );
    }

    protected function get_id(): string {
        return 'hostinger_reach_survey_satisfaction';
    }

    protected function get_location(): string {
        return 'wordpress_hostinger_reach';
    }

    protected function has_any_user_action(): bool {
        return get_option( Functions::HOSTINGER_REACH_HAS_USER_ACTION, false );
    }

    protected function has_been_five_days_since_connection(): bool {
        $connection_time