PHP 7.4.33
Preview: compat.php Size: 17.41 KB
/home/zcziejy/ryadselyen/wp-includes-20260112071656/compat.php
<?php
/**
 * WordPress implementation for PHP functions either missing from older PHP versions or not included by default.
 *
 * This file is loaded extremely early and the functions can be relied upon by drop-ins.
 * Ergo, please ensure you do not rely on external functions when writing code for this file.
 * Only use functions built into PHP or are defined in this file and have adequate testing
 * and error suppression to ensure the file will run correctly and not break websites.
 *
 * @package PHP
 * @access private
 */

// If gettext isn't available.
if ( ! function_exists( '_' ) ) {
	/**
	 * Compat function to mimic _(), an alias of gettext().
	 *
	 * @since 0.71
	 *
	 * @see https://php.net/manual/en/function.gettext.php
	 *
	 * @param string $message The message being translated.
	 * @return string
	 */
	function _( $message ) {
		return $message;
	}
}

/**
 * Returns whether PCRE/u (PCRE_UTF8 modifier) is available for use.
 *
 * @ignore
 * @since 4.2.2
 * @since 6.9.0 Deprecated the `$set` argument.
 * @access private
 *
 * @param bool $set Deprecated. This argument is no longer used for testing purposes.
 */
function _wp_can_use_pcre_u( $set = null ) {
	static $utf8_pcre = null;

	if ( isset( $set ) ) {
		_deprecated_argument( __FUNCTION__, '6.9.0' );
	}

	if ( isset( $utf8_pcre ) ) {
		return $utf8_pcre;
	}

	$utf8_pcre = true;
	set_error_handler(
		function ( $errno, $errstr ) use ( &$utf8_pcre ) {
			if ( str_starts_with( $errstr, 'preg_match():' ) ) {
				$utf8_pcre = false;
				return true;
			}

			return false;
		},
		E_WARNING
	);

	/*
	 * Attempt to compile a PCRE pattern with the PCRE_UTF8 flag. For
	 * systems lacking Unicode support this will trigger a warning
	 * during compilation, which the error handler will intercept.
	 */
	preg_match( '//u', '' );
	restore_error_handler();

	return $utf8_pcre;
}

/**
 * Indicates if a given slug for a character set represents the UTF-8 text encoding.
 *
 * A charset is considered to represent UTF-8 if it is a case-insensitive match
 * of "UTF-8" with or without the hyphen.
 *
 * Example:
 *
 *     true  === _is_utf8_charset( 'UTF-8' );
 *     true  === _is_utf8_charset( 'utf8' );
 *     false === _is_utf8_charset( 'latin1' );
 *     false === _is_utf8_charset( 'UTF 8' );
 *
 *     // Only strings match.
 *     false === _is_utf8_charset( [ 'charset' => 'utf-8' ] );
 *
 * `is_utf8_charset` should be used outside of this file.
 *
 * @ignore
 * @since 6.6.1
 *
 * @param string $charset_slug Slug representing a text character encoding, or "charset".
 *                             E.g. "UTF-8", "Windows-1252", "ISO-8859-1", "SJIS".
 *
 * @return bool Whether the slug represents the UTF-8 encoding.
 */
function _is_utf8_charset( $charset_slug ) {
	if ( ! is_string( $charset_slug ) ) {
		return false;
	}

	return (
		0 === strcasecmp( 'UTF-8', $charset_slug ) ||
		0 === strcasecmp( 'UTF8', $charset_slug )
	);
}

if ( ! function_exists( 'mb_substr' ) ) :
	/**
	 * Compat function to mimic mb_substr().
	 *
	 * @ignore
	 * @since 3.2.0
	 *
	 * @see _mb_substr()
	 *
	 * @param string      $string   The string to extract the substring from.
	 * @param int         $start    Position to being extraction from in `$string`.
	 * @param int|null    $length   Optional. Maximum number of characters to extract from `$string`.
	 *                              Default null.
	 * @param string|null $encoding Optional. Character encoding to use. Default null.
	 * @return string Extracted substring.
	 */
	function mb_substr( $string, $start, $length = null, $encoding = null ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.stringFound
		return _mb_substr( $string, $start, $length, $encoding );
	}
endif;

/**
 * Internal compat function to mimic mb_substr().
 *
 * Only supports UTF-8 and non-shifting single-byte encodings. For all other encodings
 * expect the substrings to be misaligned. When the given encoding (or the `blog_charset`
 * if none is provided) isn’t UTF-8 then the function returns the output of {@see \substr()}.
 *
 * @ignore
 * @since 3.2.0
 *
 * @param string      $str      The string to extract the substring from.
 * @param int         $start    Character offset at which to start the substring extraction.
 * @param int|null    $length   Optional. Maximum number of characters to extract from `$str`.
 *                              Default null.
 * @param string|null $encoding Optional. Character encoding to use. Default null.
 * @return string Extracted substring.
 */
function _mb_substr( $str, $start, $length = null, $encoding = null ) {
	if ( null === $str ) {
		return '';
	}

	// The solution below works only for UTF-8; treat all other encodings as byte streams.
	if ( ! _is_utf8_charset( $encoding ?? get_option( 'blog_charset' ) ) ) {
		return is_null( $length ) ? substr( $str, $start ) : substr( $str, $start, $length );
	}

	$total_length = ( $start < 0 || $length < 0 )
		? _wp_utf8_codepoint_count( $str )
		: 0;

	$normalized_start = $start < 0
		? max( 0, $total_length + $start )
		: $start;

	/*
	 * The starting offset is provided as characters, which means this needs to
	 * find how many bytes that many characters occupies at the start of the string.
	 */
	$starting_byte_offset = _wp_utf8_codepoint_span( $str, 0, $normalized_start );

	$normalized_length = $length < 0
		? max( 0, $total_length - $normalized_start + $length )
		: $length;

	/*
	 * This is the main step. It finds how many bytes the given length of code points
	 * occupies in the input, starting at the byte offset calculated above.
	 */
	$byte_length = isset( $normalized_length )
		? _wp_utf8_codepoint_span( $str, $starting_byte_offset, $normalized_length )
		: ( strlen( $str ) - $starting_byte_offset );

	// The result is a normal byte-level substring using the computed ranges.
	return substr( $str, $starting_byte_offset, $byte_length );
}

if ( ! function_exists( 'mb_strlen' ) ) :
	/**
	 * Compat function to mimic mb_strlen().
	 *
	 * @ignore
	 * @since 4.2.0
	 *
	 * @see _mb_strlen()
	 *
	 * @param string      $string   The string to retrieve the character length from.
	 * @param string|null $encoding Optional. Character encoding to use. Default null.
	 * @return int String length of `$string`.
	 */
	function mb_strlen( $string, $encoding = null ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.stringFound
		return _mb_strlen( $string, $encoding );
	}
endif;

/**
 * Internal compat function to mimic mb_strlen().
 *
 * Only supports UTF-8 and non-shifting single-byte encodings. For all other
 * encodings expect the counts to be wrong. When the given encoding (or the
 * `blog_charset` if none is provided) isn’t UTF-8 then the function returns
 * the byte-count of the provided string.
 *
 * @ignore
 * @since 4.2.0
 *
 * @param string      $str      The string to retrieve the character length from.
 * @param string|null $encoding Optional. Count characters according to this encoding.
 *                              Default is to consult `blog_charset`.
 * @return int Count of code points if UTF-8, byte length otherwise.
 */
function _mb_strlen( $str, $encoding = null ) {
	return _is_utf8_charset( $encoding ?? get_option( 'blog_charset' ) )
		? _wp_utf8_codepoint_count( $str )
		: strlen( $str );
}

if ( ! function_exists( 'utf8_encode' ) ) :
	if ( extension_loaded( 'mbstring' ) ) :
		/**
		 * Converts a string from ISO-8859-1 to UTF-8.
		 *
		 * @deprecated Use {@see \mb_convert_encoding()} instead.
		 *
		 * @since 6.9.0
		 *
		 * @param string $iso_8859_1_text Text treated as ISO-8859-1 (latin1) bytes.
		 * @return string Text converted into a UTF-8.
		 */
		function utf8_encode( $iso_8859_1_text ): string {
			_deprecated_function( __FUNCTION__, '6.9.0', 'mb_convert_encoding' );

			return mb_convert_encoding( $iso_8859_1_text, 'UTF-8', 'ISO-8859-1' );
		}

	else :
		/**
		 * @ignore
		 * @private
		 *
		 * @since 6.9.0
		 */
		function utf8_encode( $iso_8859_1_text ): string {
			_deprecated_function( __FUNCTION__, '6.9.0', 'mb_convert_encoding' );

			return _wp_utf8_encode_fallback( $iso_8859_1_text );
		}

	endif;
endif;

if ( ! function_exists( 'utf8_decode' ) ) :
	if ( extension_loaded( 'mbstring' ) ) :
		/**
		 * Converts a string from UTF-8 to ISO-8859-1.
		 *
		 * @deprecated Use {@see \mb_convert_encoding()} instead.
		 *
		 * @since 6.9.0
		 *
		 * @param string $utf8_text Text treated as UTF-8.
		 * @return string Text converted into ISO-8859-1.
		 */
		function utf8_decode( $utf8_text ): string {
			_deprecated_function( __FUNCTION__, '6.9.0', 'mb_convert_encoding' );

			return mb_convert_encoding( $utf8_text, 'ISO-8859-1', 'UTF-8' );
		}

	else :
		/**
		 * @ignore
		 * @private
		 *
		 * @since 6.9.0
		 */
		function utf8_decode( $utf8_text ): string {
			_deprecated_function( __FUNCTION__, '6.9.0', 'mb_convert_encoding' );

			return _wp_utf8_decode_fallback( $utf8_text );
		}

	endif;
endif;

// sodium_crypto_box() was introduced in PHP 7.2.
if ( ! function_exists( 'sodium_crypto_box' ) ) {
	require ABSPATH . WPINC . '/sodium_compat/autoload.php';
}

if ( ! function_exists( 'is_countable' ) ) {
	/**
	 * Polyfill for is_countable() function added in PHP 7.3.
	 *
	 * Verify that the content of a variable is an array or an object
	 * implementing the Countable interface.
	 *
	 * @since 4.9.6
	 *
	 * @param mixed $value The value to check.
	 * @return bool True if `$value` is countable, false otherwise.
	 */
	function is_countable( $value ) {
		return ( is_array( $value )
			|| $value instanceof Countable
			|| $value instanceof SimpleXMLElement
			|| $value instanceof ResourceBundle
		);
	}
}

if ( ! function_exists( 'array_key_first' ) ) {
	/**
	 * Polyfill for array_key_first() function added in PHP 7.3.
	 *
	 * Get the first key of the given array without affecting
	 * the internal array pointer.
	 *
	 * @since 5.9.0
	 *
	 * @param array $array An array.
	 * @return string|int|null The first key of array if the array
	 *                         is not empty; `null` otherwise.
	 */
	function array_key_first( array $array ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.arrayFound
		if ( empty( $array ) ) {
			return null;
		}

		foreach ( $array as $key => $value ) {
			return $key;
		}
	}
}

if ( ! function_exists( 'array_key_last' ) ) {
	/**
	 * Polyfill for `array_key_last()` function added in PHP 7.3.
	 *
	 * Get the last key of the given array without affecting the
	 * internal array pointer.
	 *
	 * @since 5.9.0
	 *
	 * @param array $array An array.
	 * @return string|int|null The last key of array if the array
	 *.                        is not empty; `null` otherwise.
	 */
	function array_key_last( array $array ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.arrayFound
		if ( empty( $array ) ) {
			return null;
		}

		end( $array );

		return key( $array );
	}
}

if ( ! function_exists( 'array_is_list' ) ) {
	/**
	 * Polyfill for `array_is_list()` function added in PHP 8.1.
	 *
	 * Determines if the given array is a list.
	 *
	 * An array is considered a list if its keys consist of consecutive numbers from 0 to count($array)-1.
	 *
	 * @see https://github.com/symfony/polyfill-php81/tree/main
	 *
	 * @since 6.5.0
	 *
	 * @param array<mixed> $arr The array being evaluated.
	 * @return bool True if array is a list, false otherwise.
	 */
	function array_is_list( $arr ) {
		if ( ( array() === $arr ) || ( array_values( $arr ) === $arr ) ) {
			return true;
		}

		$next_key = -1;

		foreach ( $arr as $k => $v ) {
			if ( ++$next_key !== $k ) {
				return false;
			}
		}

		return true;
	}
}

if ( ! function_exists( 'str_contains' ) ) {
	/**
	 * Polyfill for `str_contains()` function added in PHP 8.0.
	 *
	 * Performs a case-sensitive check indicating if needle is
	 * contained in haystack.
	 *
	 * @since 5.9.0
	 *
	 * @param string $haystack The string to search in.
	 * @param string $needle   The substring to search for in the `$haystack`.
	 * @return bool True if `$needle` is in `$haystack`, otherwise false.
	 */
	function str_contains( $haystack, $needle ) {
		if ( '' === $needle ) {
			return true;
		}

		return false !== strpos( $haystack, $needle );
	}
}

if ( ! function_exists( 'str_starts_with' ) ) {
	/**
	 * Polyfill for `str_starts_with()` function added in PHP 8.0.
	 *
	 * Performs a case-sensitive check indicating if
	 * the haystack begins with needle.
	 *
	 * @since 5.9.0
	 *
	 * @param string $haystack The string to search in.
	 * @param string $needle   The substring to search for in the `$haystack`.
	 * @return bool True if `$haystack` starts with `$needle`, otherwise false.
	 */
	function str_starts_with( $haystack, $needle ) {
		if ( '' === $needle ) {
			return true;
		}

		return 0 === strpos( $haystack, $needle );
	}
}

if ( ! function_exists( 'str_ends_with' ) ) {
	/**
	 * Polyfill for `str_ends_with()` function added in PHP 8.0.
	 *
	 * Performs a case-sensitive check indicating if
	 * the haystack ends with needle.
	 *
	 * @since 5.9.0
	 *
	 * @param string $haystack The string to search in.
	 * @param string $needle   The substring to search for in the `$haystack`.
	 * @return bool True if `$haystack` ends with `$needle`, otherwise false.
	 */
	function str_ends_with( $haystack, $needle ) {
		if ( '' === $haystack ) {
			return '' === $needle;
		}

		$len = strlen( $needle );

		return substr( $haystack, -$len, $len ) === $needle;
	}
}

if ( ! function_exists( 'array_find' ) ) {
	/**
	 * Polyfill for `array_find()` function added in PHP 8.4.
	 *
	 * Searches an array for the first element that passes a given callback.
	 *
	 * @since 6.8.0
	 *
	 * @param array    $array    The array to search.
	 * @param callable $callback The callback to run for each element.
	 * @return mixed|null The first element in the array that passes the `$callback`, otherwise null.
	 */
	function array_find( array $array, callable $callback ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.arrayFound
		foreach ( $array as $key => $value ) {
			if ( $callback( $value, $key ) ) {
				return $value;
			}
		}

		return null;
	}
}

if ( ! function_exists( 'array_find_key' ) ) {
	/**
	 * Polyfill for `array_find_key()` function added in PHP 8.4.
	 *
	 * Searches an array for the first key that passes a given callback.
	 *
	 * @since 6.8.0
	 *
	 * @param array    $array    The array to search.
	 * @param callable $callback The callback to run for each element.
	 * @return int|string|null The first key in the array that passes the `$callback`, otherwise null.
	 */
	function array_find_key( array $array, callable $callback ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.arrayFound
		foreach ( $array as $key => $value ) {
			if ( $callback( $value, $key ) ) {
				return $key;
			}
		}

		return null;
	}
}

if ( ! function_exists( 'array_any' ) ) {
	/**
	 * Polyfill for `array_any()` function added in PHP 8.4.
	 *
	 * Checks if any element of an array passes a given callback.
	 *
	 * @since 6.8.0
	 *
	 * @param array    $array    The array to check.
	 * @param callable $callback The callback to run for each element.
	 * @return bool True if any element in the array passes the `$callback`, otherwise false.
	 */
	function array_any( array $array, callable $callback ): bool { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.arrayFound
		foreach ( $array as $key => $value ) {
			if ( $callback( $value, $key ) ) {
				return true;
			}
		}

		return false;
	}
}

if ( ! function_exists( 'array_all' ) ) {
	/**
	 * Polyfill for `array_all()` function added in PHP 8.4.
	 *
	 * Checks if all elements of an array pass a given callback.
	 *
	 * @since 6.8.0
	 *
	 * @param array    $array    The array to check.
	 * @param callable $callback The callback to run for each element.
	 * @return bool True if all elements in the array pass the `$callback`, otherwise false.
	 */
	function array_all( array $array, callable $callback ): bool { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.arrayFound
		foreach ( $array as $key => $value ) {
			if ( ! $callback( $value, $key ) ) {
				return false;
			}
		}

		return true;
	}
}

if ( ! function_exists( 'array_first' ) ) {
	/**
	 * Polyfill for `array_first()` function added in PHP 8.5.
	 *
	 * Returns the first element of an array.
	 *
	 * @since 6.9.0
	 *
	 * @param array $array The array to get the first element from.
	 * @return mixed|null The first element of the array, or null if the array is empty.
	 */
	function array_first( array $array ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.arrayFound
		if ( empty( $array ) ) {
			return null;
		}

		foreach ( $array as $value ) {
			return $value;
		}
	}
}

if ( ! function_exists( 'array_last' ) ) {
	/**
	 * Polyfill for `array_last()` function added in PHP 8.5.
	 *
	 * Returns the last element of an array.
	 *
	 * @since 6.9.0
	 *
	 * @param array $array The array to get the last element from.
	 * @return mixed|null The last element of the array, or null if the array is empty.
	 */
	function array_last( array $array ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.arrayFound
		if ( empty( $array ) ) {
			return null;
		}

		return $array[ array_key_last( $array ) ];
	}
}

// IMAGETYPE_AVIF constant is only defined in PHP 8.x or later.
if ( ! defined( 'IMAGETYPE_AVIF' ) ) {
	define( 'IMAGETYPE_AVIF', 19 );
}

// IMG_AVIF constant is only defined in PHP 8.x or later.
if ( ! defined( 'IMG_AVIF' ) ) {
	define( 'IMG_AVIF', IMAGETYPE_AVIF );
}

// IMAGETYPE_HEIF constant is only defined in PHP 8.5 or later.
if ( ! defined( 'IMAGETYPE_HEIF' ) ) {
	define( 'IMAGETYPE_HEIF', 20 );
}

Directory Contents

Dirs: 29 × Files: 255
Name Size Perms Modified Actions
- drwxr-xr-x 2026-01-12 08:16:56
Edit Download
assets DIR
- drwxr-xr-x 2026-01-12 08:16:56
Edit Download
- drwxr-xr-x 2026-01-12 08:16:56
Edit Download
- drwxr-xr-x 2026-01-12 08:16:56
Edit Download
- drwxr-xr-x 2026-01-12 08:16:56
Edit Download
blocks DIR
- drwxr-xr-x 2026-01-12 08:16:57
Edit Download
- drwxr-xr-x 2026-01-12 08:16:57
Edit Download
css DIR
- drwxr-xr-x 2026-01-12 08:16:58
Edit Download
customize DIR
- drwxr-xr-x 2026-01-12 08:16:58
Edit Download
fonts DIR
- drwxr-xr-x 2026-01-12 08:16:58
Edit Download
html-api DIR
- drwxr-xr-x 2026-01-12 08:16:58
Edit Download
ID3 DIR
- drwxr-xr-x 2026-01-12 08:16:56
Edit Download
images DIR
- drwxr-xr-x 2026-01-12 08:16:58
Edit Download
- drwxr-xr-x 2026-01-12 08:16:58
Edit Download
IXR DIR
- drwxr-xr-x 2026-01-12 08:16:56
Edit Download
js DIR
- drwxr-xr-x 2026-01-12 08:16:59
Edit Download
l10n DIR
- drwxr-xr-x 2026-01-12 08:16:59
Edit Download
- drwxr-xr-x 2026-01-12 08:16:59
Edit Download
PHPMailer DIR
- drwxr-xr-x 2026-01-12 08:16:56
Edit Download
pomo DIR
- drwxr-xr-x 2026-01-12 08:16:59
Edit Download
Requests DIR
- drwxr-xr-x 2026-01-12 08:16:56
Edit Download
rest-api DIR
- drwxr-xr-x 2026-01-12 08:16:59
Edit Download
SimplePie DIR
- drwxr-xr-x 2026-01-12 08:16:56
Edit Download
sitemaps DIR
- drwxr-xr-x 2026-01-12 08:17:00
Edit Download
- drwxr-xr-x 2026-01-12 08:17:00
Edit Download
- drwxr-xr-x 2026-01-12 08:17:00
Edit Download
Text DIR
- drwxr-xr-x 2026-01-12 08:16:56
Edit Download
- drwxr-xr-x 2026-01-12 08:17:00
Edit Download
widgets DIR
- drwxr-xr-x 2026-01-12 08:17:00
Edit Download
420 B lrw-r--r-- 2026-01-09 04:01:57
Edit Download
23.80 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
7.80 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
36.10 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
11.90 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
18.94 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
7.35 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
28.60 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
316 B lrw-r--r-- 2023-01-10 22:39:09
Edit Download
12.90 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
61.02 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
15.00 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
112.05 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
12.47 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
15.07 KB lrw-r--r-- 2024-07-16 23:33:44
Edit Download
9.84 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
13.17 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
33.83 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
42.63 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
55.71 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
12.53 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
28.92 KB lrw-r--r-- 2024-05-07 23:33:56
Edit Download
539 B lrw-r--r-- 2024-11-12 22:37:30
Edit Download
367 B lrw-r--r-- 2023-01-10 22:39:13
Edit Download
2.55 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
42.65 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
401 B lrw-r--r-- 2023-01-10 22:38:54
Edit Download
6.61 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
664 B lrw-r--r-- 2023-01-10 22:39:02
Edit Download
20.63 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
2.18 KB lrw-r--r-- 2023-08-08 23:44:47
Edit Download
1.05 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
453 B lrw-r--r-- 2024-11-12 22:37:30
Edit Download
457 B lrw-r--r-- 2023-01-10 22:39:38
Edit Download
36.83 KB lrw-r--r-- 2023-03-29 23:36:04
Edit Download
2.41 KB lrw-r--r-- 2023-11-07 22:41:37
Edit Download
8.28 KB lrw-r--r-- 2023-11-07 22:41:37
Edit Download
13.89 KB lrw-r--r-- 2024-07-16 23:33:45
Edit Download
372 B lrw-r--r-- 2025-12-02 22:36:58
Edit Download
11.76 KB lrw-r--r-- 2025-04-15 23:35:17
Edit Download
2.65 KB lrw-r--r-- 2023-11-07 22:41:36
Edit Download
7.43 KB lrw-r--r-- 2023-11-07 22:41:37
Edit Download
17.46 KB lrw-r--r-- 2024-07-23 23:34:45
Edit Download
5.14 KB lrw-r--r-- 2023-01-10 22:39:28
Edit Download
16.70 KB lrw-r--r-- 2025-04-15 23:35:17
Edit Download
8.28 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
2.92 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
1.32 KB lrw-r--r-- 2023-01-10 22:38:52
Edit Download
4.60 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
11.62 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
2.50 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
1.97 KB lrw-r--r-- 2024-11-12 22:37:29
Edit Download
11.25 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
5.32 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
10.60 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
6.34 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
5.49 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
1.99 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
7.02 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
4.91 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
16.86 KB lrw-r--r-- 2024-07-16 23:33:44
Edit Download
24.23 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
3.97 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
47.66 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
9.22 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
25.51 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
198.38 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
56.65 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
10.46 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
10.95 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
29.26 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
70.91 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
35.30 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
15.02 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
2.57 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
39.83 KB lrw-r--r-- 2024-07-16 23:33:44
Edit Download
70.64 KB lrw-r--r-- 2025-04-30 23:38:18
Edit Download
15.56 KB lrw-r--r-- 2025-04-15 23:35:17
Edit Download
7.33 KB lrw-r--r-- 2023-03-29 23:36:03
Edit Download
253 B lrw-r--r-- 2024-11-12 22:37:30
Edit Download
7.96 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
3.23 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
969 B lrw-r--r-- 2024-11-12 22:37:30
Edit Download
16.28 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
7.22 KB lrw-r--r-- 2023-08-08 23:44:46
Edit Download
12.95 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
6.53 KB lrw-r--r-- 2023-08-08 23:44:46
Edit Download
3.42 KB lrw-r--r-- 2023-01-10 22:39:52
Edit Download
5.84 KB lrw-r--r-- 2023-08-08 23:44:46
Edit Download
1.97 KB lrw-r--r-- 2023-03-29 23:36:03
Edit Download
4.30 KB lrw-r--r-- 2023-11-07 22:41:37
Edit Download
2.91 KB lrw-r--r-- 2023-01-10 22:39:44
Edit Download
16.46 KB lrw-r--r-- 2023-11-07 22:41:37
Edit Download
40.60 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
20.22 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
36.11 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
17.01 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
7.27 KB lrw-r--r-- 2023-11-07 22:41:38
Edit Download
6.62 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
16.49 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
1.79 KB lrw-r--r-- 2024-04-02 23:32:49
Edit Download
29.82 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
6.67 KB lrw-r--r-- 2023-08-08 23:44:46
Edit Download
8.98 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
19.42 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
12.01 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
17.11 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
6.74 KB lrw-r--r-- 2024-07-16 23:33:45
Edit Download
30.93 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
4.99 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
4.25 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
24.72 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
29.96 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
6.34 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
159.91 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
6.72 KB lrw-r--r-- 2023-01-10 22:38:57
Edit Download
10.92 KB lrw-r--r-- 2023-08-08 23:44:47
Edit Download
4.77 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
3.38 KB lrw-r--r-- 2023-01-10 22:39:49
Edit Download
11.18 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
62.19 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
2.46 KB lrw-r--r-- 2023-11-07 22:41:37
Edit Download
9.17 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
31.13 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
33.38 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
7.15 KB lrw-r--r-- 2025-04-15 23:35:17
Edit Download
3.47 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
1.87 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
30.91 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
7.29 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
7.35 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
11.86 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
19.12 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
18.12 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
39.99 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
5.17 KB lrw-r--r-- 2023-01-10 22:39:40
Edit Download
979 B lrw-r--r-- 2024-04-02 23:32:49
Edit Download
18.44 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
10.24 KB lrw-r--r-- 2024-11-21 22:33:47
Edit Download
1.77 KB lrw-r--r-- 2024-07-16 23:33:44
Edit Download
34.90 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
7.19 KB lrw-r--r-- 2024-07-16 23:33:44
Edit Download
160.50 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
64.27 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
27.95 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
4.69 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
4.18 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
2.94 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
43.13 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
2.25 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
22.50 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
13.01 KB lrw-r--r-- 2024-09-10 23:36:21
Edit Download
348 B lrw-r--r-- 2025-12-02 22:36:58
Edit Download
3.27 KB lrw-r--r-- 2023-01-10 22:39:40
Edit Download
18.00 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
210.40 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
25.94 KB lrw-r--r-- 2026-01-09 03:56:02
Edit Download
115.85 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
373 B lrw-r--r-- 2023-01-10 22:39:24
Edit Download
343 B lrw-r--r-- 2023-01-10 22:38:58
Edit Download
338 B lrw-r--r-- 2023-01-10 22:39:39
Edit Download
100.73 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
130.93 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
17.41 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
41.98 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
400 B lrw-r--r-- 2023-01-10 22:39:26
Edit Download
11.10 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
37.02 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
2.24 KB lrw-r--r-- 2025-04-15 23:35:17
Edit Download
188.13 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
338 B lrw-r--r-- 2023-01-10 22:39:02
Edit Download
38.00 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
4.02 KB lrw-r--r-- 2023-08-08 23:44:47
Edit Download
5.38 KB lrw-r--r-- 2024-04-02 23:32:49
Edit Download
3.05 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
2.61 KB lrw-r--r-- 2023-01-10 22:39:08
Edit Download
1.16 KB lrw-r--r-- 2023-01-10 22:39:21
Edit Download
4.04 KB lrw-r--r-- 2024-04-02 23:32:49
Edit Download
3.71 KB lrw-r--r-- 2023-01-10 22:39:43
Edit Download
23.03 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
9.56 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
346.43 KB lrw-r--r-- 2025-12-27 03:23:36
Edit Download
281.84 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
14.95 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
1.02 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
8.44 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
168.95 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
20.71 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
25.27 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
5.72 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
4.18 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
4.63 KB lrw-r--r-- 2023-08-08 23:44:47
Edit Download
81.72 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
67.18 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
156.36 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
55.19 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
162 B lrw-r--r-- 2023-01-10 22:39:47
Edit Download
61.72 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
216.00 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
65.06 KB lrw-r--r-- 2025-12-02 22:37:08
Edit Download
25.24 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
4.81 KB lrw-r--r-- 2024-07-16 23:33:45
Edit Download
6.48 KB lrw-r--r-- 2023-03-29 23:36:05
Edit Download
21.25 KB lrw-r--r-- 2024-07-16 23:33:44
Edit Download
2.79 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
89.69 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
19.42 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
3.69 KB lrw-r--r-- 2023-08-08 23:44:47
Edit Download
4.11 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
40.74 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
25.38 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
43.33 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
102.57 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
6.18 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
124.45 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
35.65 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
6.94 KB lrw-r--r-- 2024-07-16 23:33:45
Edit Download
67.04 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
10.62 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
289.13 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
36.23 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
200 B lrw-r--r-- 2023-01-10 22:39:00
Edit Download
200 B lrw-r--r-- 2023-01-10 22:39:43
Edit Download
98.29 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
30.02 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
19.03 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
5.06 KB lrw-r--r-- 2023-01-10 22:39:26
Edit Download
255 B lrw-r--r-- 2023-01-10 22:39:48
Edit Download
22.66 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
150.38 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
9.68 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
258 B lrw-r--r-- 2023-01-10 22:39:07
Edit Download
23.49 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
3.16 KB lrw-r--r-- 2023-01-10 22:39:27
Edit Download
8.40 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
441 B lrw-r--r-- 2023-01-10 22:39:36
Edit Download
7.39 KB lrw-r--r-- 2024-07-16 23:33:44
Edit Download
172.91 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
544 B lrw-r--r-- 2023-11-07 22:41:36
Edit Download
3.84 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
35.97 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
1.49 KB lrw-r--r-- 2025-04-15 23:35:17
Edit Download
2.84 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
6.09 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
8.71 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
131.84 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
37.45 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
173.89 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
7.09 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
364 B lrw-r--r-- 2025-12-02 22:36:58
Edit Download
6.41 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
1.08 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
69.46 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
445 B lrw-r--r-- 2023-01-10 22:39:12
Edit Download
799 B lrw-r--r-- 2025-04-15 23:35:17
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).