* The encoded data. *

* @param bool $strict [optional]

* Returns false if input contains character from outside the base64 * alphabet. *

* @return string|false the original data or false on failure. The returned data may be * binary. */ #[Pure] function base64_decode(string $string, bool $strict = false): string|false { } /** * Encodes data with MIME base64 * @link https://php.net/manual/en/function.base64-encode.php * @param string $string

* The data to encode. *

* @return string The encoded data, as a string. */ #[Pure] function base64_encode(string $string): string { } /** * Uuencode a string * @link https://php.net/manual/en/function.convert-uuencode.php * @param string $string

* The data to be encoded. *

* @return string the uuencoded data. */ #[Pure] function convert_uuencode(string $string): string { } /** * Decode a uuencoded string * @link https://php.net/manual/en/function.convert-uudecode.php * @param string $string

* The uuencoded data. *

* @return string|false the decoded data as a string. */ #[Pure] function convert_uudecode(string $string): string|false { } /** * Absolute value * @link https://php.net/manual/en/function.abs.php * @param int|float $num

* The numeric value to process *

* @return float|int The absolute value of number. If the * argument number is * of type float, the return type is also float, * otherwise it is integer (as float usually has a * bigger value range than integer). */ #[Pure] function abs(int|float $num): int|float { } /** * Round fractions up * @link https://php.net/manual/en/function.ceil.php * @param int|float $num

* The value to round *

* @return float|false value rounded up to the next highest * integer. * The return value of ceil is still of type * float as the value range of float is * usually bigger than that of integer. */ #[Pure] #[LanguageLevelTypeAware(["8.0" => "float"], default: "float|false")] function ceil(int|float $num) { } /** * Round fractions down * @link https://php.net/manual/en/function.floor.php * @param int|float $num

* The numeric value to round *

* @return float|false value rounded to the next lowest integer. * The return value of floor is still of type * float because the value range of float is * usually bigger than that of integer. */ #[Pure] #[LanguageLevelTypeAware(["8.0" => "float"], default: "float|false")] function floor(int|float $num) { } /** * Returns the rounded value of val to specified precision (number of digits after the decimal point). * precision can also be negative or zero (default). * Note: PHP doesn't handle strings like "12,300.2" correctly by default. See converting from strings. * @link https://php.net/manual/en/function.round.php * @param int|float $num

* The value to round *

* @param int $precision [optional]

* The optional number of decimal digits to round to. *

* @param int $mode [optional]

* One of PHP_ROUND_HALF_UP, * PHP_ROUND_HALF_DOWN, * PHP_ROUND_HALF_EVEN, or * PHP_ROUND_HALF_ODD. *

* @return float The rounded value */ #[Pure] function round(int|float $num, int $precision = 0, int $mode = PHP_ROUND_HALF_UP): float { } /** * Sine * @link https://php.net/manual/en/function.sin.php * @param float $num

* A value in radians *

* @return float The sine of arg */ #[Pure] function sin(float $num): float { } /** * Cosine * @link https://php.net/manual/en/function.cos.php * @param float $num

* An angle in radians *

* @return float The cosine of arg */ #[Pure] function cos(float $num): float { } /** * Tangent * @link https://php.net/manual/en/function.tan.php * @param float $num

* The argument to process in radians *

* @return float The tangent of arg */ #[Pure] function tan(float $num): float { } /** * Arc sine * @link https://php.net/manual/en/function.asin.php * @param float $num

* The argument to process *

* @return float The arc sine of arg in radians */ #[Pure] function asin(float $num): float { } /** * Arc cosine * @link https://php.net/manual/en/function.acos.php * @param float $num

* The argument to process *

* @return float The arc cosine of arg in radians. */ #[Pure] function acos(float $num): float { } /** * Arc tangent * @link https://php.net/manual/en/function.atan.php * @param float $num

* The argument to process *

* @return float The arc tangent of arg in radians. */ #[Pure] function atan(float $num): float { } /** * Inverse hyperbolic tangent * @link https://php.net/manual/en/function.atanh.php * @param float $num

* The argument to process *

* @return float Inverse hyperbolic tangent of arg */ #[Pure] function atanh(float $num): float { } /** * Arc tangent of two variables * @link https://php.net/manual/en/function.atan2.php * @param float $y

* Dividend parameter *

* @param float $x

* Divisor parameter *

* @return float The arc tangent of y/x * in radians. */ #[Pure] function atan2(float $y, float $x): float { } /** * Hyperbolic sine * @link https://php.net/manual/en/function.sinh.php * @param float $num

* The argument to process *

* @return float The hyperbolic sine of arg */ #[Pure] function sinh(float $num): float { } /** * Hyperbolic cosine * @link https://php.net/manual/en/function.cosh.php * @param float $num

* The argument to process *

* @return float The hyperbolic cosine of arg */ #[Pure] function cosh(float $num): float { } /** * Hyperbolic tangent * @link https://php.net/manual/en/function.tanh.php * @param float $num

* The argument to process *

* @return float The hyperbolic tangent of arg */ #[Pure] function tanh(float $num): float { } /** * Inverse hyperbolic sine * @link https://php.net/manual/en/function.asinh.php * @param float $num

* The argument to process *

* @return float The inverse hyperbolic sine of arg */ #[Pure] function asinh(float $num): float { } /** * Inverse hyperbolic cosine * @link https://php.net/manual/en/function.acosh.php * @param float $num

* The value to process *

* @return float The inverse hyperbolic cosine of arg */ #[Pure] function acosh(float $num): float { } /** * Returns exp(number) - 1, computed in a way that is accurate even * when the value of number is close to zero * @link https://php.net/manual/en/function.expm1.php * @param float $num

* The argument to process *

* @return float 'e' to the power of arg minus one */ #[Pure] function expm1(float $num): float { } /** * Returns log(1 + number), computed in a way that is accurate even when * the value of number is close to zero * @link https://php.net/manual/en/function.log1p.php * @param float $num

* The argument to process *

* @return float log(1 + number) */ #[Pure] function log1p(float $num): float { } /** * Get value of pi * @link https://php.net/manual/en/function.pi.php * @return float The value of pi as float. */ #[Pure] function pi(): float { } /** * Finds whether a value is a legal finite number * @link https://php.net/manual/en/function.is-finite.php * @param float $num

* The value to check *

* @return bool true if val is a legal finite * number within the allowed range for a PHP float on this platform, * else false. */ #[Pure] function is_finite(float $num): bool { } /** * Finds whether a value is not a number * @link https://php.net/manual/en/function.is-nan.php * @param float $num

* The value to check *

* @return bool true if val is 'not a number', * else false. */ #[Pure] function is_nan(float $num): bool { } /** * Integer division * @link https://php.net/manual/en/function.intdiv.php * @param int $num1

Number to be divided.

* @param int $num2

Number which divides the dividend

* @return int * @since 7.0 * @throws DivisionByZeroError

if divisor is 0

* @throws ArithmeticError

if the dividend is PHP_INT_MIN and the divisor is -1

*/ #[Pure] function intdiv(int $num1, int $num2): int { } /** * Finds whether a value is infinite * @link https://php.net/manual/en/function.is-infinite.php * @param float $num

* The value to check *

* @return bool true if val is infinite, else false. */ #[Pure] function is_infinite(float $num): bool { } /** * Exponential expression * @link https://php.net/manual/en/function.pow.php * @param mixed $num

* The base to use *

* @param mixed $exponent

* The exponent *

* @return object|int|float base raised to the power of exp. * If the result can be represented as integer it will be returned as type * integer, else it will be returned as type float. * If the power cannot be computed false will be returned instead. */ #[Pure] function pow(mixed $num, mixed $exponent): object|int|float { } /** * Calculates the exponent of e * @link https://php.net/manual/en/function.exp.php * @param float $num

* The argument to process *

* @return float 'e' raised to the power of arg */ #[Pure] function exp(float $num): float { } /** * Natural logarithm * @link https://php.net/manual/en/function.log.php * @param float $num

* The value to calculate the logarithm for *

* @param float $base [optional]

* The optional logarithmic base to use * (defaults to 'e' and so to the natural logarithm). *

* @return float The logarithm of arg to * base, if given, or the * natural logarithm. */ #[Pure] function log(float $num, float $base = M_E): float { } /** * Base-10 logarithm * @link https://php.net/manual/en/function.log10.php * @param float $num

* The argument to process *

* @return float The base-10 logarithm of arg */ #[Pure] function log10(float $num): float { } /** * Square root * @link https://php.net/manual/en/function.sqrt.php * @param float $num

* The argument to process *

* @return float The square root of arg * or the special value NAN for negative numbers. */ #[Pure] function sqrt(float $num): float { } /** * Calculate the length of the hypotenuse of a right-angle triangle * @link https://php.net/manual/en/function.hypot.php * @param float $x

* Length of first side *

* @param float $y

* Length of second side *

* @return float Calculated length of the hypotenuse */ #[Pure] function hypot(float $x, float $y): float { } /** * Converts the number in degrees to the radian equivalent * @link https://php.net/manual/en/function.deg2rad.php * @param float $num

* Angular value in degrees *

* @return float The radian equivalent of number */ #[Pure] function deg2rad(float $num): float { } /** * Converts the radian number to the equivalent number in degrees * @link https://php.net/manual/en/function.rad2deg.php * @param float $num

* A radian value *

* @return float The equivalent of number in degrees */ #[Pure] function rad2deg(float $num): float { } /** * Binary to decimal * @link https://php.net/manual/en/function.bindec.php * @param string $binary_string

* The binary string to convert *

* @return int|float The decimal value of binary_string */ #[Pure] function bindec(string $binary_string): int|float { } /** * Hexadecimal to decimal * @link https://php.net/manual/en/function.hexdec.php * @param string $hex_string

* The hexadecimal string to convert *

* @return int|float The decimal representation of hex_string */ #[Pure] function hexdec(string $hex_string): int|float { } /** * Octal to decimal * @link https://php.net/manual/en/function.octdec.php * @param string $octal_string

* The octal string to convert *

* @return int|float The decimal representation of octal_string */ #[Pure] function octdec(string $octal_string): int|float { } /** * Decimal to binary * @link https://php.net/manual/en/function.decbin.php * @param int $num

* Decimal value to convert *

* * Range of inputs on 32-bit machines * * * * * * * * * * * * * * * * * * * * * * ... normal progression ... * * * * * * * * * * * * * * * * * * ... normal progression ... * * * * * * * * * * * *
positive numbernegative numberreturn value
00
11
210
21474836461111111111111111111111111111110
2147483647 (largest signed integer)1111111111111111111111111111111 (31 1's)
2147483648-214748364810000000000000000000000000000000
4294967294-211111111111111111111111111111110
4294967295 (largest unsigned integer)-111111111111111111111111111111111 (32 1's)
* * Range of inputs on 64-bit machines * * * * * * * * * * * * * * * * * * * * * * ... normal progression ... * * * * * * * * * * * * * * * * * * ... normal progression ... * * * * * * * * * * * *
positive numbernegative numberreturn value
00
11
210
9223372036854775806111111111111111111111111111111111111111111111111111111111111110
9223372036854775807 (largest signed integer)111111111111111111111111111111111111111111111111111111111111111 (31 1's)
-92233720368547758081000000000000000000000000000000000000000000000000000000000000000
-21111111111111111111111111111111111111111111111111111111111111110
-11111111111111111111111111111111111111111111111111111111111111111 (64 1's)
* @return string Binary string representation of number */ #[Pure] function decbin(int $num): string { } /** * Decimal to octal * @link https://php.net/manual/en/function.decoct.php * @param int $num

* Decimal value to convert *

* @return string Octal string representation of number */ #[Pure] function decoct(int $num): string { } /** * Decimal to hexadecimal * @link https://php.net/manual/en/function.dechex.php * @param int $num

* Decimal value to convert *

* @return string Hexadecimal string representation of number */ #[Pure] function dechex(int $num): string { } /** * Convert a number between arbitrary bases * @link https://php.net/manual/en/function.base-convert.php * @param string $num

* The number to convert *

* @param int $from_base

* The base number is in *

* @param int $to_base

* The base to convert number to *

* @return string number converted to base tobase */ #[Pure] function base_convert(string $num, int $from_base, int $to_base): string { } /** * Format a number with grouped thousands * @link https://php.net/manual/en/function.number-format.php * @param float $num

* The number being formatted. *

* @param int $decimals [optional]

* Sets the number of decimal points. *

* @param string|null $decimal_separator [optional] * @param string|null $thousands_separator [optional] * @return string A formatted version of number. */ #[Pure] function number_format( float $num, int $decimals = 0, ?string $decimal_separator = '.', ?string $thousands_separator = ',', ): string { } /** * Returns the floating point remainder (modulo) of the division * of the arguments * @link https://php.net/manual/en/function.fmod.php * @param float $num1

* The dividend *

* @param float $num2

* The divisor *

* @return float The floating point remainder of * x/y */ #[Pure] function fmod(float $num1, float $num2): float { } /** * Performs a floating-point division under * IEEE 754 semantics. Division by zero is considered well-defined and * will return one of Inf, -Inf or NaN. * @param float $num1 * @param float $num2 * @return float * @since 8.0 */ #[Pure] function fdiv(float $num1, float $num2): float { } /** * Converts a packed internet address to a human readable representation * @link https://php.net/manual/en/function.inet-ntop.php * @param string $ip

* A 32bit IPv4, or 128bit IPv6 address. *

* @return string|false a string representation of the address or false on failure. */ #[Pure] function inet_ntop(string $ip): string|false { } /** * Converts a human readable IP address to its packed in_addr representation * @link https://php.net/manual/en/function.inet-pton.php * @param string $ip

* A human readable IPv4 or IPv6 address. *

* @return string|false the in_addr representation of the given * address */ #[Pure] function inet_pton(string $ip): string|false { } /** * Converts a string containing an (IPv4) Internet Protocol dotted address into a long integer * @link https://php.net/manual/en/function.ip2long.php * @param string $ip

* A standard format address. *

* @return int|false the IPv4 address or false if ip_address * is invalid. */ #[Pure] function ip2long(string $ip): int|false { } /** * Converts an long integer address into a string in (IPv4) internet standard dotted format * @link https://php.net/manual/en/function.long2ip.php * @param int $ip

* A proper address representation. *

* @return string|false the Internet IP address as a string. */ #[Pure] function long2ip(int $ip): string|false { } /** * Gets the value of an environment variable * @link https://php.net/manual/en/function.getenv.php * @param string|null $name

* The variable name. *

* @param bool $local_only [optional]

* Set to true to only return local environment variables (set by the operating system or putenv). *

* @return string|array|false the value of the environment variable * varname or an associative array with all environment variables if no variable name * is provided, or false on an error. */ #[Pure(true)] function getenv( #[PhpStormStubsElementAvailable(from: '5.3', to: '7.0')] $varname, #[PhpStormStubsElementAvailable(from: '7.1')] ?string $name = null, #[PhpStormStubsElementAvailable(from: '5.6')] bool $local_only = false, ): array|string|false { } /** * Sets the value of an environment variable * @link https://php.net/manual/en/function.putenv.php * @param string $assignment

* The setting, like "FOO=BAR" *

* @return bool true on success or false on failure. */ function putenv(string $assignment): bool { } /** * Gets options from the command line argument list * @link https://php.net/manual/en/function.getopt.php * @param string $short_options Each character in this string will be used as option characters and * matched against options passed to the script starting with a single * hyphen (-). * For example, an option string "x" recognizes an * option -x. * Only a-z, A-Z and 0-9 are allowed. * @param array $long_options An array of options. Each element in this array will be used as option * strings and matched against options passed to the script starting with * two hyphens (--). * For example, an longopts element "opt" recognizes an * option --opt. * Prior to PHP5.3.0 this parameter was only available on few systems * @param int &$rest_index [optional] If the optind parameter is present, then the index where argument parsing stopped will be written to this variable. * @return string[]|false[]|false This function will return an array of option / argument pairs or false on * failure. */ function getopt( string $short_options, array $long_options = [], #[PhpStormStubsElementAvailable(from: '7.1')] &$rest_index, ): array|false { } /** * Gets system load average * @link https://php.net/manual/en/function.sys-getloadavg.php * @return array|false an array with three samples (last 1, 5 and 15 * minutes). * @since 5.1.3 */ #[Pure(true)] function sys_getloadavg(): array|false { } /** * Return current Unix timestamp with microseconds * @link https://php.net/manual/en/function.microtime.php * @param bool $as_float [optional]

* When called without the optional argument, this function returns the string * "msec sec" where sec is the current time measured in the number of * seconds since the Unix Epoch (0:00:00 January 1, 1970 GMT), and * msec is the microseconds part. * Both portions of the string are returned in units of seconds. *

*

* If the optional get_as_float is set to * true then a float (in seconds) is returned. *

* @return string|float */ #[Pure(true)] function microtime(#[TypeContract(true: "float", false: "string")] bool $as_float = false): string|float { } /** * Get current time * @link https://php.net/manual/en/function.gettimeofday.php * @param bool $as_float [optional]

* When set to true, a float instead of an array is returned. *

* @return int[]|float By default an array is returned. If return_float * is set, then a float is returned. *

*

* Array keys: * "sec" - seconds since the Unix Epoch * "usec" - microseconds * "minuteswest" - minutes west of Greenwich * "dsttime" - type of dst correction */ #[Pure(true)] #[ArrayShape(["sec" => "int", "usec" => "int", "minuteswest" => "int", "dsttime" => "int"])] function gettimeofday(#[TypeContract(true: "float", false: "int[]")] bool $as_float = false): array|float { } /** * Gets the current resource usages * @link https://php.net/manual/en/function.getrusage.php * @param int $mode

* If who is 1, getrusage will be called with * RUSAGE_CHILDREN. *

* @return array|false an associative array containing the data returned from the system * call. All entries are accessible by using their documented field names. */ #[Pure(true)] function getrusage(int $mode = 0): array|false { } /** * Generate a unique ID * @link https://php.net/manual/en/function.uniqid.php * @param string $prefix [optional]

* Can be useful, for instance, if you generate identifiers * simultaneously on several hosts that might happen to generate the * identifier at the same microsecond. *

*

* With an empty prefix, the returned string will * be 13 characters long. If more_entropy is * true, it will be 23 characters. *

* @param bool $more_entropy [optional]

* If set to true, uniqid will add additional * entropy (using the combined linear congruential generator) at the end * of the return value, which should make the results more unique. *

* @return string the unique identifier, as a string. */ function uniqid(string $prefix = "", bool $more_entropy = false): string { } /** * Convert a quoted-printable string to an 8 bit string * @link https://php.net/manual/en/function.quoted-printable-decode.php * @param string $string

* The input string. *

* @return string the 8-bit binary string. */ #[Pure] function quoted_printable_decode(string $string): string { } /** * Convert a 8 bit string to a quoted-printable string * @link https://php.net/manual/en/function.quoted-printable-encode.php * @param string $string

* The input string. *

* @return string the encoded string. */ #[Pure] function quoted_printable_encode(string $string): string { } /** * Convert from one Cyrillic character set to another * @link https://php.net/manual/en/function.convert-cyr-string.php * @param string $str

* The string to be converted. *

* @param string $from

* The source Cyrillic character set, as a single character. *

* @param string $to

* The target Cyrillic character set, as a single character. *

* @return string the converted string. * @removed 8.0 * @see mb_convert_string() * @see iconv() * @see UConverter */ #[Pure] #[Deprecated(since: '7.4', reason: 'Us mb_convert_string(), iconv() or UConverter instead.')] function convert_cyr_string(string $str, string $from, string $to): string { } /** * Gets the name of the owner of the current PHP script * @link https://php.net/manual/en/function.get-current-user.php * @return string the username as a string. */ #[Pure(true)] function get_current_user(): string { } /** * Limits the maximum execution time * @link https://php.net/manual/en/function.set-time-limit.php * @param int $seconds

* The maximum execution time, in seconds. If set to zero, no time limit * is imposed. *

* @return bool Returns TRUE on success, or FALSE on failure. */ function set_time_limit(int $seconds): bool { } /** * Gets the value of a PHP configuration option * @link https://php.net/manual/en/function.get-cfg-var.php * @param string $option

* The configuration option name. *

* @return array|string|false the current value of the PHP configuration variable specified by * option, or false if an error occurs. */ #[Pure] function get_cfg_var(string $option): array|string|false { } /** * Alias: * {@see set_magic_quotes_runtime} * @link https://php.net/manual/en/function.magic-quotes-runtime.php * @param bool $new_setting * @removed 7.0 */ #[Deprecated(since: '5.3')] function magic_quotes_runtime(bool $new_setting) { } /** * Sets the current active configuration setting of magic_quotes_runtime * @link https://php.net/manual/en/function.set-magic-quotes-runtime.php * @param bool $new_setting

* false for off, true for on. *

* @return bool true on success or false on failure. * @removed 7.0 */ #[Deprecated(reason: "This function has been DEPRECATED as of PHP 5.4.0. Raises an E_CORE_ERROR", since: "5.3")] function set_magic_quotes_runtime(bool $new_setting): bool { } /** * Gets the current configuration setting of magic quotes gpc * @link https://php.net/manual/en/function.get-magic-quotes-gpc.php * @return int 0 if magic quotes gpc are off, 1 otherwise. * @removed 8.0 */ #[Deprecated(since: '7.4')] function get_magic_quotes_gpc(): int { } /** * Gets the current active configuration setting of magic_quotes_runtime * @link https://php.net/manual/en/function.get-magic-quotes-runtime.php * @return int 0 if magic quotes runtime is off, 1 otherwise. */ #[Deprecated(since: '7.4')] function get_magic_quotes_runtime(): int { } /** * Import GET/POST/Cookie variables into the global scope * @link https://php.net/manual/en/function.import-request-variables.php * @param string $types

* Using the types parameter, you can specify * which request variables to import. You can use 'G', 'P' and 'C' * characters respectively for GET, POST and Cookie. These characters are * not case sensitive, so you can also use any combination of 'g', 'p' * and 'c'. POST includes the POST uploaded file information. *

*

* Note that the order of the letters matters, as when using * "GP", the * POST variables will overwrite GET variables with the same name. Any * other letters than GPC are discarded. *

* @param string $prefix [optional]

* Variable name prefix, prepended before all variable's name imported * into the global scope. So if you have a GET value named * "userid", and provide a prefix * "pref_", then you'll get a global variable named * $pref_userid. *

*

* Although the prefix parameter is optional, you * will get an E_NOTICE level * error if you specify no prefix, or specify an empty string as a * prefix. This is a possible security hazard. Notice level errors are * not displayed using the default error reporting level. *

* @return bool true on success or false on failure. * @removed 5.4 */ #[Deprecated(reason: "This function has been DEPRECATED as of PHP 5.3.0", since: "5.3")] function import_request_variables(string $types, $prefix = null): bool { } /** * Send an error message to the defined error handling routines * @link https://php.net/manual/en/function.error-log.php * @param string $message

* The error message that should be logged. *

* @param int $message_type

* Says where the error should go. The possible message types are as * follows: *

*

* * error_log log types * * * * * * * * * * * * * * * * * * * * *
0 * message is sent to PHP's system logger, using * the Operating System's system logging mechanism or a file, depending * on what the error_log * configuration directive is set to. This is the default option. *
1 * message is sent by email to the address in * the destination parameter. This is the only * message type where the fourth parameter, * extra_headers is used. *
2 * No longer an option. *
3 * message is appended to the file * destination. A newline is not automatically * added to the end of the message string. *
4 * message is sent directly to the SAPI logging * handler. *
*

* @param string|null $destination [optional]

* The destination. Its meaning depends on the * message_type parameter as described above. *

* @param string|null $additional_headers [optional]

* The extra headers. It's used when the message_type * parameter is set to 1. * This message type uses the same internal function as * mail does. *

* @return bool true on success or false on failure. */ function error_log(string $message, int $message_type = 0, ?string $destination, ?string $additional_headers): bool { } __halt_compiler();----SIGNATURE:----T7BY3cKK7ZV9/vWEe3a31d0J+IhIwZLk7Ww6YvWq0Zx5DxuyHYRm6LHdKWKNdrtNipAelEsRbaDgJ/oOXm7PBPhupLwh7YiGo9v6OX9UY7xSx0bHlqOSj06ZqOPNW1jq5QVcL8sUSlechi4Hr3qc37N3jCes1WNe5vqKCgMfw5iDE/V0hatssBDerKAgYi15uNPdeIoVtiVVMxrpfevjoOnPulg7G7qItUKh2mekOIlx+cjrRGTXUG0pY/ddGuN83bX9pSpdGkR271EmXIpdzqJniQXuVfwMX3EUZof2xFeBxRpAvkJbV5wEF0NWbqZPg1j5rkkIQzxjM1o1Cp6lM0xb8xG4aIpkxuV244OTdMq2Jv4LsPb3mygQVnrD7u2D60B5EaI5UxwD8tuhtT6mZm0mWNiZKUAuxyh6fYNo98eIH9gpyuyiS0WfS3W8uDIa3gnQHh5IuIB/7b4ibrtslxqkUI1KGSA2skrIKpWZZj4Zm4NNfuou2XcVtr8U6EXbfo7Pe2wCENo6NUosU7tKrPCmTQfEIEsKrOOoaF+Qqn+rWx3pJxk3yqL99vqK6F0CiCVZ/DyJdEg1h6B8vkVEzlXG1DS1VNphnNxrlUe6lOIucNaPHDDoCn9p8XlPksC3TSXShrsS6LtZjD2esNg4j3Tv1Nn8ZPPp6+FoRp9eeVc=----ATTACHMENT:----NjM0MzI0MTI2NjA4NDYzOCA3MzUzNjI3MjY0NzQ3MjY0IDEyNjY3MTAwMTkxODIzNzY=