1:45 PM 11/12/2025 ���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC ‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!
Warning: Undefined variable $authorization in C:\xampp\htdocs\demo\fi.php on line 57

Warning: Undefined variable $translation in C:\xampp\htdocs\demo\fi.php on line 118

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\demo\fi.php on line 119

Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in C:\xampp\htdocs\demo\fi.php on line 120

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 247

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 248

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 249

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 250

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 251

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 252
/* * Copyright Sebastiano Vigna 2015. * Copyright Matt Borland 2022. * Distributed under the Boost Software License, Version 1.0. (See * accompanying file LICENSE_1_0.txt or copy at * http://www.boost.org/LICENSE_1_0.txt) * */ #ifndef BOOST_RANDOM_SPLITMIX64_HPP #define BOOST_RANDOM_SPLITMIX64_HPP #include #include #include #include #include #include #include namespace boost { namespace random { /** * This is a fixed-increment version of Java 8's SplittableRandom generator * See http://dx.doi.org/10.1145/2714064.2660195 and * http://docs.oracle.com/javase/8/docs/api/java/util/SplittableRandom.html * It is a very fast generator passing BigCrush, and it can be useful if * for some reason you absolutely want 64 bits of state; otherwise, we * rather suggest to use a xoroshiro128+ (for moderately parallel * computations) or xorshift1024* (for massively parallel computations) * generator. */ class splitmix64 { private: std::uint64_t state_; inline std::uint64_t concatenate(std::uint32_t word1, std::uint32_t word2) noexcept { return static_cast(word1) << 32 | word2; } public: using result_type = std::uint64_t; using seed_type = std::uint64_t; // Required for old Boost.Random concept static constexpr bool has_fixed_range {false}; /** Seeds the generator with the default seed. */ void seed(result_type value = 0) noexcept { if (value == 0) { state_ = UINT64_C(0xA164B43C8F634A13); } else { state_ = value; } } /** * Seeds the generator with 32-bit values produced by @c seq.generate(). */ template ::value, bool>::type = true> void seed(Sseq& seq) { std::array seeds; seq.generate(seeds.begin(), seeds.end()); state_ = concatenate(seeds[0], seeds[1]); } /** * Seeds the generator with 64-bit values produced by @c seq.generate(). */ template ::value, bool>::type = true> explicit splitmix64(Sseq& seq) { seed(seq); } /** Seeds the generator with a user provided seed. */ template ::value, bool>::type = true> void seed(T value = 0) noexcept { seed(static_cast(value)); } /** Seeds the generator with a user provided seed. */ explicit splitmix64(std::uint64_t state = 0) noexcept { seed(state); } splitmix64(const splitmix64& other) = default; splitmix64& operator=(const splitmix64& other) = default; /** Returns the next value of the generator. */ inline result_type next() noexcept { std::uint64_t z {state_ += UINT64_C(0x9E3779B97F4A7C15)}; z = (z ^ (z >> 30)) * UINT64_C(0xBF58476D1CE4E5B9); z = (z ^ (z >> 27)) * UINT64_C(0x94D049BB133111EB); return z ^ (z >> 31); } /** Returns the next value of the generator. */ inline result_type operator()() noexcept { return next(); } /** Advances the state of the generator by @c z. */ inline void discard(std::uint64_t z) noexcept { state_ += z * UINT64_C(0x9E3779B97F4A7C15); } /** * Returns true if the two generators will produce identical * sequences of values. */ inline friend bool operator==(const splitmix64& lhs, const splitmix64& rhs) noexcept { return lhs.state_ == rhs.state_; } /** * Returns true if the two generators will produce different * sequences of values. */ inline friend bool operator!=(const splitmix64& lhs, const splitmix64& rhs) noexcept { return !(lhs == rhs); } /** Writes a @c splitmix64 to a @c std::ostream. */ template inline friend std::basic_ostream& operator<<(std::basic_ostream& ost, const splitmix64& e) { ost << e.state_; return ost; } /** Writes a @c splitmix64 to a @c std::istream. */ template inline friend std::basic_istream& operator>>(std::basic_istream& ist, splitmix64& e) { std::string sstate; CharT val; while (ist >> val) { if (std::isdigit(val)) { sstate.push_back(val); } } e.state_ = std::strtoull(sstate.c_str(), nullptr, 10); return ist; } /** Fills a range with random values */ template inline void generate(FIter first, FIter last) noexcept { while (first != last) { *first++ = next(); } } /** * Returns the largest value that the @c splitmix64 * can produce. */ static constexpr result_type (max)() noexcept { return (std::numeric_limits::max)(); } /** * Returns the smallest value that the @c splitmix64 * can produce. */ static constexpr result_type (min)() noexcept { return (std::numeric_limits::min)(); } }; }} // Namespace boost::random #endif // BOOST_RANDOM_SPLITMIX64_HPP