PHP 8.2.30
Preview: rewrite.php Size: 19.03 KB
/home/byroehnu/kingslandgroupofschools.com.ng/wp-includes/rewrite.php

<?php
/**
 * WordPress Rewrite API
 *
 * @package WordPress
 * @subpackage Rewrite
 */

/**
 * Endpoint mask that matches nothing.
 *
 * @since 2.1.0
 */
define( 'EP_NONE', 0 );

/**
 * Endpoint mask that matches post permalinks.
 *
 * @since 2.1.0
 */
define( 'EP_PERMALINK', 1 );

/**
 * Endpoint mask that matches attachment permalinks.
 *
 * @since 2.1.0
 */
define( 'EP_ATTACHMENT', 2 );

/**
 * Endpoint mask that matches any date archives.
 *
 * @since 2.1.0
 */
define( 'EP_DATE', 4 );

/**
 * Endpoint mask that matches yearly archives.
 *
 * @since 2.1.0
 */
define( 'EP_YEAR', 8 );

/**
 * Endpoint mask that matches monthly archives.
 *
 * @since 2.1.0
 */
define( 'EP_MONTH', 16 );

/**
 * Endpoint mask that matches daily archives.
 *
 * @since 2.1.0
 */
define( 'EP_DAY', 32 );

/**
 * Endpoint mask that matches the site root.
 *
 * @since 2.1.0
 */
define( 'EP_ROOT', 64 );

/**
 * Endpoint mask that matches comment feeds.
 *
 * @since 2.1.0
 */
define( 'EP_COMMENTS', 128 );

/**
 * Endpoint mask that matches searches.
 *
 * Note that this only matches a search at a "pretty" URL such as
 * `/search/my-search-term`, not `?s=my-search-term`.
 *
 * @since 2.1.0
 */
define( 'EP_SEARCH', 256 );

/**
 * Endpoint mask that matches category archives.
 *
 * @since 2.1.0
 */
define( 'EP_CATEGORIES', 512 );

/**
 * Endpoint mask that matches tag archives.
 *
 * @since 2.3.0
 */
define( 'EP_TAGS', 1024 );

/**
 * Endpoint mask that matches author archives.
 *
 * @since 2.1.0
 */
define( 'EP_AUTHORS', 2048 );

/**
 * Endpoint mask that matches pages.
 *
 * @since 2.1.0
 */
define( 'EP_PAGES', 4096 );

/**
 * Endpoint mask that matches all archive views.
 *
 * @since 3.7.0
 */
define( 'EP_ALL_ARCHIVES', EP_DATE | EP_YEAR | EP_MONTH | EP_DAY | EP_CATEGORIES | EP_TAGS | EP_AUTHORS );

/**
 * Endpoint mask that matches everything.
 *
 * @since 2.1.0
 */
define( 'EP_ALL', EP_PERMALINK | EP_ATTACHMENT | EP_ROOT | EP_COMMENTS | EP_SEARCH | EP_PAGES | EP_ALL_ARCHIVES );

/**
 * Adds a rewrite rule that transforms a URL structure to a set of query vars.
 *
 * Any value in the $after parameter that isn't 'bottom' will result in the rule
 * being placed at the top of the rewrite rules.
 *
 * @since 2.1.0
 * @since 4.4.0 Array support was added to the `$query` parameter.
 *
 * @global WP_Rewrite $wp_rewrite WordPress rewrite component.
 *
 * @param string       $regex Regular expression to match request against.
 * @param string|array $query The corresponding query vars for this rewrite rule.
 * @param string       $after Optional. Priority of the new rule. Accepts 'top'
 *                            or 'bottom'. Default 'bottom'.
 */
function add_rewrite_rule( $regex, $query, $after = 'bottom' ) {
	global $wp_rewrite;

	$wp_rewrite->add_rule( $regex, $query, $after );
}

/**
 * Adds a new rewrite tag (like %postname%).
 *
 * The `$query` parameter is optional. If it is omitted you must ensure that you call
 * this on, or before, the {@see 'init'} hook. This is because `$query` defaults to
 * `$tag=`, and for this to work a new query var has to be added.
 *
 * @since 2.1.0
 *
 * @global WP_Rewrite $wp_rewrite WordPress rewrite component.
 * @global WP         $wp         Current WordPress environment instance.
 *
 * @param string $tag   Name of the new rewrite tag.
 * @param string $regex Regular expression to substitute the tag for in rewrite rules.
 * @param string $query Optional. String to append to the rewritten query. Must end in '='. Default empty.
 */
function add_rewrite_tag( $tag, $regex, $query = '' ) {
	// Validate the tag's name.
	if ( strlen( $tag ) < 3 || '%' !== $tag[0] || '%' !== $tag[ strlen( $tag ) - 1 ] ) {
		return;
	}

	global $wp_rewrite, $wp;

	if ( empty( $query ) ) {
		$qv = trim( $tag, '%' );
		$wp->add_query_var( $qv );
		$query = $qv . '=';
	}

	$wp_rewrite->add_rewrite_tag( $tag, $regex, $query );
}

/**
 * Removes an existing rewrite tag (like %postname%).
 *
 * @since 4.5.0
 *
 * @global WP_Rewrite $wp_rewrite WordPress rewrite component.
 *
 * @param string $tag Name of the rewrite tag.
 */
function remove_rewrite_tag( $tag ) {
	global $wp_rewrite;
	$wp_rewrite->remove_rewrite_tag( $tag );
}

/**
 * Adds a permalink structure.
 *
 * @since 3.0.0
 *
 * @see WP_Rewrite::add_permastruct()
 * @global WP_Rewrite $wp_rewrite WordPress rewrite component.
 *
 * @param string $name   Name for permalink structure.
 * @param string $struct Permalink structure.
 * @param array  $args   Optional. Arguments for building the rules from the permalink structure,
 *                       see WP_Rewrite::add_permastruct() for full details. Default empty array.
 */
function add_permastruct( $name, $struct, $args = array() ) {
	global $wp_rewrite;

	// Back-compat for the old parameters: $with_front and $ep_mask.
	if ( ! is_array( $args ) ) {
		$args = array( 'with_front' => $args );
	}

	if ( func_num_args() === 4 ) {
		$args['ep_mask'] = func_get_arg( 3 );
	}

	$wp_rewrite->add_permastruct( $name, $struct, $args );
}

/**
 * Removes a permalink structure.
 *
 * Can only be used to remove permastructs that were added using add_permastruct().
 * Built-in permastructs cannot be removed.
 *
 * @since 4.5.0
 *
 * @see WP_Rewrite::remove_permastruct()
 * @global WP_Rewrite $wp_rewrite WordPress rewrite component.
 *
 * @param string $name Name for permalink structure.
 */
function remove_permastruct( $name ) {
	global $wp_rewrite;

	$wp_rewrite->remove_permastruct( $name );
}

/**
 * Adds a new feed type like /atom1/.
 *
 * @since 2.1.0
 *
 * @global WP_Rewrite $wp_rewrite WordPress rewrite component.
 *
 * @param string   $feedname Feed name. Should not start with '_'.
 * @param callable $callback Callback to run on feed display.
 * @return string Feed action name.
 */
function add_feed( $feedname, $callback ) {
	global $wp_rewrite;

	if ( ! in_array( $feedname, $wp_rewrite->feeds, true ) ) {
		$wp_rewrite->feeds[] = $feedname;
	}

	$hook = 'do_feed_' . $feedname;

	// Remove default function hook.
	remove_action( $hook, $hook );

	add_action( $hook, $callback, 10, 2 );

	return $hook;
}

/**
 * Removes rewrite rules and then recreate rewrite rules.
 *
 * @since 3.0.0
 *
 * @global WP_Rewrite $wp_rewrite WordPress rewrite component.
 *
 * @param bool $hard Whether to update .htaccess (hard flush) or just update
 *                   rewrite_rules option (soft flush). Default is true (hard).
 */
function flush_rewrite_rules( $hard = true ) {
	global $wp_rewrite;

	if ( is_callable( array( $wp_rewrite, 'flush_rules' ) ) ) {
		$wp_rewrite->flush_rules( $hard );
	}
}

/**
 * Adds an endpoint, like /trackback/.
 *
 * Adding an endpoint creates extra rewrite rules for each of the matching
 * places specified by the provided bitmask. For example:
 *
 *     add_rewrite_endpoint( 'json', EP_PERMALINK | EP_PAGES );
 *
 * will add a new rewrite rule ending with "json(/(.*))?/?$" for every permastruct
 * that describes a permalink (post) or page. This is rewritten to "json=$match"
 * where $match is the part of the URL matched by the endpoint regex (e.g. "foo" in
 * "[permalink]/json/foo/").
 *
 * A new query var with the same name as the endpoint will also be created.
 *
 * When specifying $places ensure that you are using the EP_* constants (or a
 * combination of them using the bitwise OR operator) as their values are not
 * guaranteed to remain static (especially `EP_ALL`).
 *
 * Be sure to flush the rewrite rules - see flush_rewrite_rules() - when your plugin gets
 * activated and deactivated.
 *
 * @since 2.1.0
 * @since 4.3.0 Added support for skipping query var registration by passing `false` to `$query_var`.
 *
 * @global WP_Rewrite $wp_rewrite WordPress rewrite component.
 *
 * @param string      $name      Name of the endpoint.
 * @param int         $places    Endpoint mask describing the places the endpoint should be added.
 *                               Accepts a mask of:
 *                               - `EP_ALL`
 *                               - `EP_NONE`
 *                               - `EP_ALL_ARCHIVES`
 *                               - `EP_ATTACHMENT`
 *                               - `EP_AUTHORS`
 *                               - `EP_CATEGORIES`
 *                               - `EP_COMMENTS`
 *                               - `EP_DATE`
 *                               - `EP_DAY`
 *                               - `EP_MONTH`
 *                               - `EP_PAGES`
 *                               - `EP_PERMALINK`
 *                               - `EP_ROOT`
 *                               - `EP_SEARCH`
 *                               - `EP_TAGS`
 *                               - `EP_YEAR`
 * @param string|bool $query_var Name of the corresponding query variable. Pass `false` to skip registering a query_var
 *                               for this endpoint. Defaults to the value of `$name`.
 */
function add_rewrite_endpoint( $name, $places, $query_var = true ) {
	global $wp_rewrite;
	$wp_rewrite->add_endpoint( $name, $places, $query_var );
}

/**
 * Filters the URL base for taxonomies.
 *
 * To remove any manually prepended /index.php/.
 *
 * @access private
 * @since 2.6.0
 *
 * @param string $base The taxonomy base that we're going to filter
 * @return string
 */
function _wp_filter_taxonomy_base( $base ) {
	if ( ! empty( $base ) ) {
		$base = preg_replace( '|^/index\.php/|', '', $base );
		$base = trim( $base, '/' );
	}
	return $base;
}


/**
 * Resolves numeric slugs that collide with date permalinks.
 *
 * Permalinks of posts with numeric slugs can sometimes look to WP_Query::parse_query()
 * like a date archive, as when your permalink structure is `/%year%/%postname%/` and
 * a post with post_name '05' has the URL `/2015/05/`.
 *
 * This function detects conflicts of this type and resolves them in favor of the
 * post permalink.
 *
 * Note that, since 4.3.0, wp_unique_post_slug() prevents the creation of post slugs
 * that would result in a date archive conflict. The resolution performed in this
 * function is primarily for legacy content, as well as cases when the admin has changed
 * the site's permalink structure in a way that introduces URL conflicts.
 *
 * @since 4.3.0
 *
 * @param array $query_vars Optional. Query variables for setting up the loop, as determined in
 *                          WP::parse_request(). Default empty array.
 * @return array Returns the original array of query vars, with date/post conflicts resolved.
 */
function wp_resolve_numeric_slug_conflicts( $query_vars = array() ) {
	if ( ! isset( $query_vars['year'] ) && ! isset( $query_vars['monthnum'] ) && ! isset( $query_vars['day'] ) ) {
		return $query_vars;
	}

	// Identify the 'postname' position in the permastruct array.
	$permastructs   = array_values( array_filter( explode( '/', get_option( 'permalink_structure' ) ) ) );
	$postname_index = array_search( '%postname%', $permastructs, true );

	if ( false === $postname_index ) {
		return $query_vars;
	}

	/*
	 * A numeric slug could be confused with a year, month, or day, depending on position. To account for
	 * the possibility of post pagination (eg 2015/2 for the second page of a post called '2015'), our
	 * `is_*` checks are generous: check for year-slug clashes when `is_year` *or* `is_month`, and check
	 * for month-slug clashes when `is_month` *or* `is_day`.
	 */
	$compare = '';
	if ( 0 === $postname_index && ( isset( $query_vars['year'] ) || isset( $query_vars['monthnum'] ) ) ) {
		$compare = 'year';
	} elseif ( $postname_index && '%year%' === $permastructs[ $postname_index - 1 ] && ( isset( $query_vars['monthnum'] ) || isset( $query_vars['day'] ) ) ) {
		$compare = 'monthnum';
	} elseif ( $postname_index && '%monthnum%' === $permastructs[ $postname_index - 1 ] && isset( $query_vars['day'] ) ) {
		$compare = 'day';
	}

	if ( ! $compare ) {
		return $query_vars;
	}

	// This is the potentially clashing slug.
	$value = '';
	if ( array_key_exists( $compare, $query_vars ) ) {
		$value = $query_vars[ $compare ];
	}

	$post = get_page_by_path( $value, OBJECT, 'post' );
	if ( ! ( $post instanceof WP_Post ) ) {
		return $query_vars;
	}

	// If the date of the post doesn't match the date specified in the URL, resolve to the date archive.
	if ( preg_match( '/^([0-9]{4})\-([0-9]{2})/', $post->post_date, $matches ) && isset( $query_vars['year'] ) && ( 'monthnum' === $compare || 'day' === $compare ) ) {
		// $matches[1] is the year the post was published.
		if ( (int) $query_vars['year'] !== (int) $matches[1] ) {
			return $query_vars;
		}

		// $matches[2] is the month the post was published.
		if ( 'day' === $compare && isset( $query_vars['monthnum'] ) && (int) $query_vars['monthnum'] !== (int) $matches[2] ) {
			return $query_vars;
		}
	}

	/*
	 * If the located post contains nextpage pagination, then the URL chunk following postname may be
	 * intended as the page number. Verify that it's a valid page before resolving to it.
	 */
	$maybe_page = '';
	if ( 'year' === $compare && isset( $query_vars['monthnum'] ) ) {
		$maybe_page = $query_vars['monthnum'];
	} elseif ( 'monthnum' === $compare && isset( $query_vars['day'] ) ) {
		$maybe_page = $query_vars['day'];
	}
	// Bug found in #11694 - 'page' was returning '/4'.
	$maybe_page = (int) trim( $maybe_page, '/' );

	$post_page_count = substr_count( $post->post_content, '<!--nextpage-->' ) + 1;

	// If the post doesn't have multiple pages, but a 'page' candidate is found, resolve to the date archive.
	if ( 1 === $post_page_count && $maybe_page ) {
		return $query_vars;
	}

	// If the post has multiple pages and the 'page' number isn't valid, resolve to the date archive.
	if ( $post_page_count > 1 && $maybe_page > $post_page_count ) {
		return $query_vars;
	}

	// If we've gotten to this point, we have a slug/date clash. First, adjust for nextpage.
	$query_vars['page'] = $maybe_page;

	// Next, unset autodetected date-related query vars.
	unset( $query_vars['year'] );
	unset( $query_vars['monthnum'] );
	unset( $query_vars['day'] );

	// Then, set the identified post.
	$query_vars['name'] = $post->post_name;

	// Finally, return the modified query vars.
	return $query_vars;
}

/**
 * Examines a URL and try to determine the post ID it represents.
 *
 * Checks are supposedly from the hosted site blog.
 *
 * @since 1.0.0
 *
 * @global WP_Rewrite $wp_rewrite WordPress rewrite component.
 * @global WP         $wp         Current WordPress environment instance.
 *
 * @param string $url Permalink to check.
 * @return int Post ID, or 0 on failure.
 */
function url_to_postid( $url ) {
	global $wp_rewrite;

	/**
	 * Filters the URL to derive the post ID from.
	 *
	 * @since 2.2.0
	 *
	 * @param string $url The URL to derive the post ID from.
	 */
	$url = apply_filters( 'url_to_postid', $url );

	$url_host = parse_url( $url, PHP_URL_HOST );

	if ( is_string( $url_host ) ) {
		$url_host = str_replace( 'www.', '', $url_host );
	} else {
		$url_host = '';
	}

	$home_url_host = parse_url( home_url(), PHP_URL_HOST );

	if ( is_string( $home_url_host ) ) {
		$home_url_host = str_replace( 'www.', '', $home_url_host );
	} else {
		$home_url_host = '';
	}

	// Bail early if the URL does not belong to this site.
	if ( $url_host && $url_host !== $home_url_host ) {
		return 0;
	}

	// First, check to see if there is a 'p=N' or 'page_id=N' to match against.
	if ( preg_match( '#[?&](p|page_id|attachment_id)=(\d+)#', $url, $values ) ) {
		$id = absint( $values[2] );
		if ( $id ) {
			return $id;
		}
	}

	// Get rid of the #anchor.
	$url_split = explode( '#', $url );
	$url       = $url_split[0];

	// Get rid of URL ?query=string.
	$url_split = explode( '?', $url );
	$url       = $url_split[0];

	// Set the correct URL scheme.
	$scheme = parse_url( home_url(), PHP_URL_SCHEME );
	$url    = set_url_scheme( $url, $scheme );

	// Add 'www.' if it is absent and should be there.
	if ( str_contains( home_url(), '://www.' ) && ! str_contains( $url, '://www.' ) ) {
		$url = str_replace( '://', '://www.', $url );
	}

	// Strip 'www.' if it is present and shouldn't be.
	if ( ! str_contains( home_url(), '://www.' ) ) {
		$url = str_replace( '://www.', '://', $url );
	}

	if ( trim( $url, '/' ) === home_url() && 'page' === get_option( 'show_on_front' ) ) {
		$page_on_front = get_option( 'page_on_front' );

		if ( $page_on_front && get_post( $page_on_front ) instanceof WP_Post ) {
			return (int) $page_on_front;
		}
	}

	// Check to see if we are using rewrite rules.
	$rewrite = $wp_rewrite->wp_rewrite_rules();

	// Not using rewrite rules, and 'p=N' and 'page_id=N' methods failed, so we're out of options.
	if ( empty( $rewrite ) ) {
		return 0;
	}

	// Strip 'index.php/' if we're not using path info permalinks.
	if ( ! $wp_rewrite->using_index_permalinks() ) {
		$url = str_replace( $wp_rewrite->index . '/', '', $url );
	}

	if ( str_contains( trailingslashit( $url ), home_url( '/' ) ) ) {
		// Chop off http://domain.com/[path].
		$url = str_replace( home_url(), '', $url );
	} else {
		// Chop off /path/to/blog.
		$home_path = parse_url( home_url( '/' ) );
		$home_path = isset( $home_path['path'] ) ? $home_path['path'] : '';
		$url       = preg_replace( sprintf( '#^%s#', preg_quote( $home_path ) ), '', trailingslashit( $url ) );
	}

	// Trim leading and lagging slashes.
	$url = trim( $url, '/' );

	$request              = $url;
	$post_type_query_vars = array();

	foreach ( get_post_types( array(), 'objects' ) as $post_type => $t ) {
		if ( ! empty( $t->query_var ) ) {
			$post_type_query_vars[ $t->query_var ] = $post_type;
		}
	}

	// Look for matches.
	$request_match = $request;
	foreach ( (array) $rewrite as $match => $query ) {

		/*
		 * If the requesting file is the anchor of the match,
		 * prepend it to the path info.
		 */
		if ( ! empty( $url ) && ( $url !== $request ) && str_starts_with( $match, $url ) ) {
			$request_match = $url . '/' . $request;
		}

		if ( preg_match( "#^$match#", $request_match, $matches ) ) {

			if ( $wp_rewrite->use_verbose_page_rules && preg_match( '/pagename=\$matches\[([0-9]+)\]/', $query, $varmatch ) ) {
				// This is a verbose page match, let's check to be sure about it.
				$page = get_page_by_path( $matches[ $varmatch[1] ] );
				if ( ! $page ) {
					continue;
				}

				$post_status_obj = get_post_status_object( $page->post_status );
				if ( ! $post_status_obj->public && ! $post_status_obj->protected
					&& ! $post_status_obj->private && $post_status_obj->exclude_from_search ) {
					continue;
				}
			}

			/*
			 * Got a match.
			 * Trim the query of everything up to the '?'.
			 */
			$query = preg_replace( '!^.+\?!', '', $query );

			// Substitute the substring matches into the query.
			$query = addslashes( WP_MatchesMapRegex::apply( $query, $matches ) );

			// Filter out non-public query vars.
			global $wp;
			parse_str( $query, $query_vars );
			$query = array();
			foreach ( (array) $query_vars as $key => $value ) {
				if ( in_array( (string) $key, $wp->public_query_vars, true ) ) {
					$query[ $key ] = $value;
					if ( isset( $post_type_query_vars[ $key ] ) ) {
						$query['post_type'] = $post_type_query_vars[ $key ];
						$query['name']      = $value;
					}
				}
			}

			// Resolve conflicts between posts with numeric slugs and date archive queries.
			$query = wp_resolve_numeric_slug_conflicts( $query );

			// Do the query.
			$query = new WP_Query( $query );
			if ( ! empty( $query->posts ) && $query->is_singular ) {
				return $query->post->ID;
			} else {
				return 0;
			}
		}
	}
	return 0;
}

Directory Contents

Dirs: 30 × Files: 250

Name Size Perms Modified Actions
- drwxr-xr-x 2026-03-16 08:30:52
Edit Download
assets DIR
- drwxr-xr-x 2026-03-16 08:30:52
Edit Download
- drwxr-xr-x 2026-03-16 08:30:52
Edit Download
- drwxr-xr-x 2026-03-16 08:30:52
Edit Download
- drwxr-xr-x 2026-03-16 08:30:52
Edit Download
blocks DIR
- drwxr-xr-x 2026-03-16 08:30:52
Edit Download
- drwxr-xr-x 2026-03-16 08:30:53
Edit Download
css DIR
- drwxr-xr-x 2026-03-16 08:30:53
Edit Download
customize DIR
- drwxr-xr-x 2026-03-16 08:30:53
Edit Download
fonts DIR
- drwxr-xr-x 2026-03-16 08:30:53
Edit Download
html-api DIR
- drwxr-xr-x 2026-03-16 08:30:53
Edit Download
ID3 DIR
- drwxr-xr-x 2026-03-16 08:30:52
Edit Download
images DIR
- drwxr-xr-x 2026-03-16 08:30:53
Edit Download
- drwxr-xr-x 2026-03-16 08:30:53
Edit Download
IXR DIR
- drwxr-xr-x 2026-03-16 08:30:52
Edit Download
js DIR
- drwxr-xr-x 2026-03-16 08:30:53
Edit Download
l10n DIR
- drwxr-xr-x 2026-03-16 08:30:53
Edit Download
- drwxr-xr-x 2026-03-16 08:30:53
Edit Download
PHPMailer DIR
- drwxr-xr-x 2026-03-16 08:30:52
Edit Download
pomo DIR
- drwxr-xr-x 2026-03-16 08:30:53
Edit Download
Requests DIR
- drwxr-xr-x 2026-03-16 08:30:52
Edit Download
rest-api DIR
- drwxr-xr-x 2026-03-16 08:30:53
Edit Download
SimplePie DIR
- drwxr-xr-x 2026-03-16 08:30:52
Edit Download
sitemaps DIR
- drwxr-xr-x 2026-03-16 08:30:53
Edit Download
- drwxr-xr-x 2026-03-16 08:30:53
Edit Download
- drwxr-xr-x 2026-03-16 08:30:53
Edit Download
Text DIR
- drwxr-xr-x 2026-03-16 08:30:52
Edit Download
- drwxr-xr-x 2026-03-16 08:30:53
Edit Download
widgets DIR
- drwxr-xr-x 2026-03-16 08:30:53
Edit Download
xe6c8dd DIR
- drwxr-xr-x 2026-03-24 14:04:45
Edit Download
23.80 KB lrw-r--r-- 2025-11-04 21:34:38
Edit Download
7.80 KB lrw-r--r-- 2025-11-17 15:58:28
Edit Download
36.10 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
11.90 KB lrw-r--r-- 2025-09-03 16:18:32
Edit Download
18.94 KB lrw-r--r-- 2025-10-24 08:04:26
Edit Download
7.35 KB lrw-r--r-- 2025-10-20 12:52:24
Edit Download
28.60 KB lrw-r--r-- 2025-09-29 12:59:32
Edit Download
316 B lrw-r--r-- 2021-08-11 13:08:02
Edit Download
12.90 KB lrw-r--r-- 2024-11-30 03:46:22
Edit Download
61.02 KB lrw-r--r-- 2025-11-07 17:42:34
Edit Download
15.00 KB lrw-r--r-- 2025-11-07 17:42:34
Edit Download
112.05 KB lrw-r--r-- 2025-10-21 15:32:36
Edit Download
12.47 KB lrw-r--r-- 2025-03-20 03:15:36
Edit Download
15.07 KB lrw-r--r-- 2024-03-23 18:20:12
Edit Download
9.84 KB lrw-r--r-- 2025-09-01 01:43:30
Edit Download
13.17 KB lrw-r--r-- 2025-04-30 02:44:38
Edit Download
33.83 KB lrw-r--r-- 2025-11-04 23:31:30
Edit Download
42.63 KB lrw-r--r-- 2026-02-04 03:20:36
Edit Download
55.71 KB lrw-r--r-- 2025-06-03 20:51:34
Edit Download
12.53 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
28.92 KB lrw-r--r-- 2024-04-26 19:02:14
Edit Download
539 B lrw-r--r-- 2024-10-01 02:50:20
Edit Download
367 B lrw-r--r-- 2022-06-17 15:20:14
Edit Download
2.55 KB lrw-r--r-- 2025-01-23 00:48:26
Edit Download
42.65 KB lrw-r--r-- 2025-08-25 17:10:30
Edit Download
401 B lrw-r--r-- 2022-06-17 15:20:14
Edit Download
6.61 KB lrw-r--r-- 2024-09-18 01:08:16
Edit Download
664 B lrw-r--r-- 2020-07-21 16:58:02
Edit Download
20.63 KB lrw-r--r-- 2024-10-26 00:26:20
Edit Download
2.18 KB lrw-r--r-- 2023-04-05 17:12:26
Edit Download
453 B lrw-r--r-- 2024-10-01 02:50:20
Edit Download
457 B lrw-r--r-- 2021-01-26 18:45:58
Edit Download
36.83 KB lrw-r--r-- 2023-02-03 18:35:20
Edit Download
2.41 KB lrw-r--r-- 2023-09-14 16:46:20
Edit Download
8.28 KB lrw-r--r-- 2023-09-08 13:32:24
Edit Download
13.89 KB lrw-r--r-- 2024-03-18 19:46:14
Edit Download
11.76 KB lrw-r--r-- 2025-01-22 02:26:24
Edit Download
2.65 KB lrw-r--r-- 2023-09-14 16:46:20
Edit Download
7.43 KB lrw-r--r-- 2023-09-14 16:46:20
Edit Download
17.46 KB lrw-r--r-- 2024-07-18 04:52:18
Edit Download
5.14 KB lrw-r--r-- 2022-09-12 19:47:14
Edit Download
16.70 KB lrw-r--r-- 2025-04-03 17:53:28
Edit Download
8.28 KB lrw-r--r-- 2025-10-06 15:31:34
Edit Download
2.92 KB lrw-r--r-- 2025-09-29 01:56:28
Edit Download
1.32 KB lrw-r--r-- 2022-09-12 19:47:14
Edit Download
4.60 KB lrw-r--r-- 2025-08-07 18:47:34
Edit Download
11.62 KB lrw-r--r-- 2025-03-06 03:17:24
Edit Download
2.50 KB lrw-r--r-- 2025-10-21 11:14:02
Edit Download
1.97 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
11.25 KB lrw-r--r-- 2025-10-21 11:14:02
Edit Download
5.32 KB lrw-r--r-- 2025-10-06 15:31:34
Edit Download
10.99 KB lrw-r--r-- 2026-03-11 03:24:16
Edit Download
68.32 KB lrw-r--r-- 2026-02-04 03:20:36
Edit Download
6.34 KB lrw-r--r-- 2025-10-06 15:31:34
Edit Download
5.49 KB lrw-r--r-- 2025-03-04 18:06:28
Edit Download
1.99 KB lrw-r--r-- 2024-09-20 06:07:12
Edit Download
7.02 KB lrw-r--r-- 2025-10-30 20:03:32
Edit Download
4.91 KB lrw-r--r-- 2025-09-29 20:29:36
Edit Download
16.86 KB lrw-r--r-- 2024-05-02 04:01:10
Edit Download
24.23 KB lrw-r--r-- 2025-10-20 13:20:28
Edit Download
3.97 KB lrw-r--r-- 2025-06-19 00:39:52
Edit Download
47.66 KB lrw-r--r-- 2025-10-31 22:57:30
Edit Download
9.22 KB lrw-r--r-- 2025-02-11 18:40:30
Edit Download
25.51 KB lrw-r--r-- 2025-09-07 06:47:36
Edit Download
198.38 KB lrw-r--r-- 2025-10-07 05:24:36
Edit Download
56.65 KB lrw-r--r-- 2025-10-07 05:24:36
Edit Download
10.46 KB lrw-r--r-- 2025-01-23 00:48:26
Edit Download
10.95 KB lrw-r--r-- 2024-10-13 23:09:12
Edit Download
29.26 KB lrw-r--r-- 2025-01-23 00:48:26
Edit Download
70.91 KB lrw-r--r-- 2025-10-07 05:24:36
Edit Download
35.30 KB lrw-r--r-- 2025-11-11 01:28:32
Edit Download
16.61 KB lrw-r--r-- 2026-02-04 03:20:36
Edit Download
2.57 KB lrw-r--r-- 2025-10-14 09:47:32
Edit Download
39.83 KB lrw-r--r-- 2024-06-14 16:18:12
Edit Download
70.64 KB lrw-r--r-- 2025-04-25 02:22:30
Edit Download
15.56 KB lrw-r--r-- 2025-04-10 17:47:26
Edit Download
7.33 KB lrw-r--r-- 2023-02-21 21:39:20
Edit Download
253 B lrw-r--r-- 2024-09-27 23:28:14
Edit Download
7.96 KB lrw-r--r-- 2024-10-22 14:16:16
Edit Download
3.23 KB lrw-r--r-- 2025-07-31 03:03:30
Edit Download
969 B lrw-r--r-- 2024-10-01 02:50:20
Edit Download
16.28 KB lrw-r--r-- 2025-11-04 04:47:34
Edit Download
7.22 KB lrw-r--r-- 2023-06-24 21:17:24
Edit Download
12.95 KB lrw-r--r-- 2025-09-03 16:18:32
Edit Download
6.53 KB lrw-r--r-- 2023-06-22 18:57:24
Edit Download
3.42 KB lrw-r--r-- 2026-03-11 03:24:16
Edit Download
5.84 KB lrw-r--r-- 2023-06-22 18:36:26
Edit Download
1.97 KB lrw-r--r-- 2022-12-16 02:32:18
Edit Download
4.30 KB lrw-r--r-- 2023-10-11 11:05:26
Edit Download
2.91 KB lrw-r--r-- 2022-09-12 19:47:14
Edit Download
16.46 KB lrw-r--r-- 2023-09-21 22:29:12
Edit Download
40.60 KB lrw-r--r-- 2025-08-20 16:55:28
Edit Download
20.22 KB lrw-r--r-- 2025-09-03 16:18:32
Edit Download
36.11 KB lrw-r--r-- 2025-08-27 01:05:30
Edit Download
17.01 KB lrw-r--r-- 2025-04-28 20:37:28
Edit Download
7.27 KB lrw-r--r-- 2024-02-28 03:38:16
Edit Download
6.62 KB lrw-r--r-- 2025-05-11 21:16:30
Edit Download
16.49 KB lrw-r--r-- 2025-02-26 03:40:22
Edit Download
1.79 KB lrw-r--r-- 2024-02-06 06:25:14
Edit Download
29.82 KB lrw-r--r-- 2025-04-21 03:51:30
Edit Download
6.67 KB lrw-r--r-- 2025-10-21 19:59:34
Edit Download
8.98 KB lrw-r--r-- 2025-06-19 00:39:52
Edit Download
19.42 KB lrw-r--r-- 2025-09-01 01:43:30
Edit Download
12.01 KB lrw-r--r-- 2024-09-14 02:12:16
Edit Download
17.11 KB lrw-r--r-- 2025-04-05 02:00:28
Edit Download
6.74 KB lrw-r--r-- 2024-03-06 10:05:12
Edit Download
30.93 KB lrw-r--r-- 2025-06-25 03:40:34
Edit Download
4.99 KB lrw-r--r-- 2024-09-03 22:19:14
Edit Download
4.25 KB lrw-r--r-- 2025-10-01 17:23:28
Edit Download
24.72 KB lrw-r--r-- 2025-10-21 08:33:30
Edit Download
29.96 KB lrw-r--r-- 2025-02-09 16:09:22
Edit Download
6.34 KB lrw-r--r-- 2025-08-20 19:01:32
Edit Download
159.91 KB lrw-r--r-- 2025-10-22 10:30:30
Edit Download
6.72 KB lrw-r--r-- 2022-10-04 07:59:14
Edit Download
10.92 KB lrw-r--r-- 2023-05-02 19:45:22
Edit Download
4.77 KB lrw-r--r-- 2025-02-17 16:24:22
Edit Download
3.38 KB lrw-r--r-- 2022-09-12 19:47:14
Edit Download
11.18 KB lrw-r--r-- 2025-02-23 16:11:22
Edit Download
62.19 KB lrw-r--r-- 2025-07-15 12:22:38
Edit Download
2.46 KB lrw-r--r-- 2023-09-08 13:32:24
Edit Download
9.17 KB lrw-r--r-- 2026-02-04 03:20:36
Edit Download
32.15 KB lrw-r--r-- 2026-02-04 03:20:36
Edit Download
34.05 KB lrw-r--r-- 2026-02-04 03:20:36
Edit Download
7.15 KB lrw-r--r-- 2025-02-11 16:14:22
Edit Download
3.47 KB lrw-r--r-- 2025-09-17 02:47:32
Edit Download
1.87 KB lrw-r--r-- 2025-01-23 00:48:26
Edit Download
30.91 KB lrw-r--r-- 2025-09-01 01:43:30
Edit Download
7.29 KB lrw-r--r-- 2025-06-27 19:09:32
Edit Download
7.35 KB lrw-r--r-- 2025-02-19 03:32:22
Edit Download
12.54 KB lrw-r--r-- 2026-02-04 03:20:36
Edit Download
19.12 KB lrw-r--r-- 2025-06-16 21:08:32
Edit Download
18.12 KB lrw-r--r-- 2025-03-27 01:42:28
Edit Download
39.99 KB lrw-r--r-- 2025-10-22 20:30:32
Edit Download
5.17 KB lrw-r--r-- 2022-09-12 19:47:14
Edit Download
979 B lrw-r--r-- 2024-02-15 00:27:10
Edit Download
18.44 KB lrw-r--r-- 2025-01-23 00:48:26
Edit Download
10.24 KB lrw-r--r-- 2024-11-20 07:50:24
Edit Download
1.77 KB lrw-r--r-- 2024-06-04 15:55:14
Edit Download
34.90 KB lrw-r--r-- 2024-11-04 07:34:16
Edit Download
7.19 KB lrw-r--r-- 2024-06-06 12:02:16
Edit Download
160.50 KB lrw-r--r-- 2025-11-10 11:43:38
Edit Download
64.27 KB lrw-r--r-- 2025-09-29 01:56:28
Edit Download
27.95 KB lrw-r--r-- 2024-07-20 03:44:16
Edit Download
4.69 KB lrw-r--r-- 2025-02-19 03:32:22
Edit Download
2.94 KB lrw-r--r-- 2025-07-06 15:57:36
Edit Download
43.13 KB lrw-r--r-- 2025-09-01 01:43:30
Edit Download
2.25 KB lrw-r--r-- 2025-02-17 16:24:22
Edit Download
22.50 KB lrw-r--r-- 2025-11-11 17:53:32
Edit Download
13.01 KB lrw-r--r-- 2024-07-26 11:56:14
Edit Download
3.27 KB lrw-r--r-- 2022-09-12 19:47:14
Edit Download
18.00 KB lrw-r--r-- 2024-11-02 19:01:20
Edit Download
210.40 KB lrw-r--r-- 2025-08-21 19:00:40
Edit Download
25.86 KB lrw-r--r-- 2025-11-01 08:46:32
Edit Download
115.85 KB lrw-r--r-- 2025-11-11 01:28:32
Edit Download
373 B lrw-r--r-- 2022-09-20 18:17:12
Edit Download
343 B lrw-r--r-- 2022-09-20 18:17:12
Edit Download
338 B lrw-r--r-- 2022-09-20 18:17:12
Edit Download
100.73 KB lrw-r--r-- 2025-10-21 18:00:28
Edit Download
130.93 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
19.10 KB lrw-r--r-- 2025-10-21 18:03:28
Edit Download
17.41 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
42.14 KB lr--r--r-- 2026-03-14 00:49:45
Edit Download
400 B lrw-r--r-- 2022-06-17 15:20:14
Edit Download
11.10 KB lrw-r--r-- 2024-10-01 03:58:16
Edit Download
37.02 KB lrw-r--r-- 2025-11-11 03:51:36
Edit Download
2.24 KB lrw-r--r-- 2025-01-23 00:48:26
Edit Download
188.13 KB lrw-r--r-- 2025-10-07 10:24:44
Edit Download
338 B lrw-r--r-- 2022-06-17 15:20:14
Edit Download
38.00 KB lrw-r--r-- 2025-11-04 05:47:34
Edit Download
4.02 KB lrw-r--r-- 2023-05-02 19:45:22
Edit Download
211.28 KB lrw-r--r-- 2026-03-01 20:16:48
Edit Download
5.38 KB lrw-r--r-- 2024-03-04 17:41:10
Edit Download
3.05 KB lrw-r--r-- 2025-01-23 00:48:26
Edit Download
2.61 KB lrw-r--r-- 2020-01-29 05:45:18
Edit Download
1.16 KB lrw-r--r-- 2020-01-29 05:45:18
Edit Download
4.04 KB lrw-r--r-- 2024-03-04 17:41:10
Edit Download
3.71 KB lrw-r--r-- 2020-01-29 05:45:18
Edit Download
24.60 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
9.56 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
346.43 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
281.98 KB lr--r--r-- 2026-03-14 00:49:45
Edit Download
14.95 KB lrw-r--r-- 2025-10-17 00:01:36
Edit Download
8.44 KB lrw-r--r-- 2025-10-17 00:01:36
Edit Download
169.08 KB lrw-r--r-- 2025-12-09 13:17:26
Edit Download
20.71 KB lrw-r--r-- 2025-07-15 16:27:32
Edit Download
25.27 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
5.72 KB lrw-r--r-- 2025-02-24 18:43:24
Edit Download
4.63 KB lrw-r--r-- 2023-07-11 02:38:26
Edit Download
81.73 KB lrw-r--r-- 2026-03-11 03:24:16
Edit Download
67.18 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
156.36 KB lrw-r--r-- 2025-10-27 01:21:32
Edit Download
55.19 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
162 B lrw-r--r-- 2019-10-08 21:19:04
Edit Download
61.72 KB lrw-r--r-- 2025-09-29 03:40:36
Edit Download
216.06 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
65.00 KB lrw-r--r-- 2025-05-30 03:09:28
Edit Download
25.24 KB lrw-r--r-- 2025-01-23 00:48:26
Edit Download
4.81 KB lrw-r--r-- 2024-06-14 00:50:14
Edit Download
6.48 KB lrw-r--r-- 2023-02-24 06:23:20
Edit Download
21.25 KB lrw-r--r-- 2024-04-12 21:47:14
Edit Download
2.79 KB lrw-r--r-- 2025-10-17 21:14:32
Edit Download
89.69 KB lrw-r--r-- 2025-10-27 20:35:36
Edit Download
19.42 KB lrw-r--r-- 2025-05-26 15:20:36
Edit Download
3.69 KB lrw-r--r-- 2023-05-02 15:26:24
Edit Download
4.11 KB lrw-r--r-- 2025-08-27 17:42:30
Edit Download
40.74 KB lrw-r--r-- 2025-06-27 19:09:32
Edit Download
25.38 KB lrw-r--r-- 2025-01-23 00:48:26
Edit Download
43.31 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
102.57 KB lrw-r--r-- 2025-11-07 17:42:34
Edit Download
6.18 KB lrw-r--r-- 2025-02-04 00:52:24
Edit Download
124.47 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
35.79 KB lr--r--r-- 2026-03-14 00:49:45
Edit Download
6.94 KB lrw-r--r-- 2024-05-27 20:29:16
Edit Download
67.04 KB lrw-r--r-- 2025-05-06 02:42:28
Edit Download
10.62 KB lrw-r--r-- 2024-12-21 04:35:24
Edit Download
289.13 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
36.23 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
200 B lrw-r--r-- 2020-11-12 16:17:08
Edit Download
200 B lrw-r--r-- 2020-11-12 16:17:08
Edit Download
98.29 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
30.02 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
19.03 KB lrw-r--r-- 2025-07-11 17:16:28
Edit Download
5.06 KB lrw-r--r-- 2022-04-06 19:33:04
Edit Download
255 B lrw-r--r-- 2020-11-17 03:52:06
Edit Download
22.66 KB lrw-r--r-- 2025-09-03 16:18:32
Edit Download
154.63 KB lrw-r--r-- 2026-02-04 03:20:36
Edit Download
9.68 KB lrw-r--r-- 2025-10-21 15:32:36
Edit Download
258 B lrw-r--r-- 2020-02-06 11:33:12
Edit Download
23.49 KB lrw-r--r-- 2025-11-05 00:51:36
Edit Download
3.16 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
8.40 KB lrw-r--r-- 2025-08-27 14:34:28
Edit Download
441 B lrw-r--r-- 2020-11-12 16:17:08
Edit Download
7.39 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
172.91 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
544 B lrw-r--r-- 2023-10-01 04:22:28
Edit Download
4.33 KB lr--r--r-- 2026-03-14 00:49:45
Edit Download
35.97 KB lrw-r--r-- 2025-11-05 00:51:36
Edit Download
1.69 KB lrw-r--r-- 2026-02-04 03:20:36
Edit Download
2.84 KB lrw-r--r-- 2025-08-27 14:34:28
Edit Download
6.09 KB lrw-r--r-- 2025-11-07 17:42:34
Edit Download
8.71 KB lrw-r--r-- 2025-10-21 16:22:34
Edit Download
131.84 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
37.45 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
173.89 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
7.09 KB lrw-r--r-- 2025-10-21 06:35:32
Edit Download
6.41 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
1.08 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
69.46 KB lrw-r--r-- 2026-03-14 00:49:44
Edit Download
445 B lrw-r--r-- 2022-07-22 02:45:12
Edit Download
799 B lrw-r--r-- 2025-01-23 00:48:26
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).