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

class Tribe__Tickets__Attendee_Registration__Service_Provider extends \TEC\Common\Contracts\Service_Provider {

	/**
	 * Register the Attendee Info Provider singletons.
	 *
	 * @since 4.9
	 */
	public function register() {
		$this->container->singleton( 'tickets.attendee_registration', Tribe__Tickets__Attendee_Registration__Main::class );
		$this->container->singleton( 'tickets.attendee_registration.template', Tribe__Tickets__Attendee_Registration__Template::class );
		$this->container->singleton( 'tickets.attendee_registration.view', Tribe__Tickets__Attendee_Registration__View::class );
		$this->container->singleton( 'tickets.attendee_registration.rewrite', Tribe__Tickets__Attendee_Registration__Rewrite::class );
		$this->container->singleton( 'tickets.attendee_registration.meta', Tribe__Tickets__Attendee_Registration__Meta::class );
		$this->container->singleton( 'tickets.attendee_registration.shortcode', Tribe__Tickets__Attendee_Registration__Shortcode::class );
		$this->container->singleton( 'tickets.attendee_registration.modal', Tribe__Tickets__Attendee_Registration__Modal::class );

		$this->hooks();
	}

	/**
	 * Add actions and filters for the Attendee Info classes.
	 *
	 * @since 4.9
	 * @since 5.0.3 Bail if ETP is not active.
	 */
	public function hooks() {
		// Only run the code if Event Tickets Plus is active.
		if ( ! class_exists( 'Tribe__Tickets_Plus__Main' ) ) {
			return;
		}

		$this->add_attendee_registration_template_hook();

		add_action( 'init', [ $this, 'add_attendee_registration_shortcode_hook' ] );
		add_action( 'init', [ $this, 'add_attendee_registration_modal_hook' ] );
		add_action( 'init', [ $this, 'add_rewrite_tags' ] );
		add_action( 'tribe_tickets_pre_rewrite', [ $this, 'generate_core_rules' ] );

		add_filter( 'generate_rewrite_rules', [ $this, 'filter_generate' ] );
		add_filter( 'rewrite_rules_array', [ $this, 'remove_percent_placeholders' ], 25 );
		add_filter( 'tribe_tickets_commerce_paypal_add_to_cart_args', [ $this, 'add_product_delete_to_paypal_url' ], 10, 1 );
	}

	/**
	 * Initialize the template class.
	 *
	 * @since 5.0.3
	 */
	public function add_attendee_registration_template_hook() {
		try {
			$this->container->make( 'tickets.attendee_registration.template' )->hook();
		} catch ( \Exception $e ) {
			// Do nothing.
		}
	}

	/**
	 * Setup shortcodes for the attendee registration template.
	 *
	 * @since 5.0.3
	 */
	public function add_attendee_registration_shortcode_hook() {
		try {
			$this->container->make( 'tickets.attendee_registration.shortcode' )->hook();
		} catch ( \Exception $e ) {
			// Do nothing.
		}
	}

	/**
	 * Setup Modal Cart Template.
	 *
	 * @since 5.0.3
	 */
	public function add_attendee_registration_modal_hook() {
		try {
			$this->container->make( 'tickets.attendee_registration.modal' )->hook();
		} catch ( \Exception $e ) {
			// Do nothing.
		}
	}

	/**
	 * Add attendee-registration rewrite tag.
	 *
	 * @since 5.0.3
	 */
	public function add_rewrite_tags() {
		try {
			$this->container->make( 'tickets.attendee_registration.rewrite' )->add_rewrite_tags();
		} catch ( \Exception $e ) {
			// Do nothing.
		}
	}

	/**
	 * Sets up the rules required by Event Tickets.
	 *
	 * @since 5.0.3
	 *
	 * @param Tribe__Tickets__Attendee_Registration__Rewrite $rewrite The rewrite instance.
	 */
	public function generate_core_rules( Tribe__Tickets__Attendee_Registration__Rewrite $rewrite ) {
		try {
			$this->container->make( 'tickets.attendee_registration.rewrite' )->generate_core_rules( $rewrite );
		} catch ( \Exception $e ) {
			// Do nothing.
		}
	}

	/**
	 * Generate the Rewrite Rules.
	 *
	 * @since 5.0.3
	 *
	 * @param WP_Rewrite $wp_rewrite WordPress rewrite that will be modified.
	 */
	public function filter_generate( WP_Rewrite $wp_rewrite ) {
		try {
			$this->container->make( 'tickets.attendee_registration.rewrite' )->filter_generate( $wp_rewrite );
		} catch ( \Exception $e ) {
			// Do nothing.
		}
	}

	/**
	 * Remove percentage sign placeholders from the array of rewrite rules.
	 *
	 * @since 5.0.3
	 *
	 * @param array $rules The rewrite rules.
	 *
	 * @return array
	 */
	public function remove_percent_placeholders( array $rule