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
/*! @file Defines `boost::hana::set`. Copyright Louis Dionne 2013-2022 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) */ #ifndef BOOST_HANA_SET_HPP #define BOOST_HANA_SET_HPP #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace boost { namespace hana { ////////////////////////////////////////////////////////////////////////// // set ////////////////////////////////////////////////////////////////////////// //! @cond template struct set final : detail::operators::adl> , detail::searchable_operators> { tuple storage; using hana_tag = set_tag; static constexpr std::size_t size = sizeof...(Xs); explicit constexpr set(tuple const& xs) : storage(xs) { } explicit constexpr set(tuple&& xs) : storage(static_cast&&>(xs)) { } constexpr set() = default; constexpr set(set const& other) = default; constexpr set(set&& other) = default; }; //! @endcond ////////////////////////////////////////////////////////////////////////// // Operators ////////////////////////////////////////////////////////////////////////// namespace detail { template <> struct comparable_operators { static constexpr bool value = true; }; } ////////////////////////////////////////////////////////////////////////// // make ////////////////////////////////////////////////////////////////////////// template <> struct make_impl { template static constexpr auto apply(Xs&& ...xs) { #if defined(BOOST_HANA_CONFIG_ENABLE_DEBUG_MODE) static_assert(detail::fast_and::value...>::value, "hana::make_set(xs...) requires all the 'xs' to be Comparable"); static_assert(detail::fast_and::value...>::value, "hana::make_set(xs...) requires all the 'xs' to be Hashable"); static_assert(detail::fast_and< Constant::value... >::value, "hana::make_set(xs...) requires all the 'xs' to be " "Comparable at compile-time"); static_assert(!detail::has_duplicates::value, "hana::make_set(xs...) requires all the 'xs' to be unique"); #endif return set::type...>{ hana::make_tuple(static_cast(xs)...) }; } }; ////////////////////////////////////////////////////////////////////////// // Comparable ////////////////////////////////////////////////////////////////////////// template <> struct equal_impl { template static constexpr auto equal_helper(S1 const& s1, S2 const& s2, hana::true_) { return hana::is_subset(s1, s2); } template static constexpr auto equal_helper(S1 const&, S2 const&, hana::false_) { return hana::false_c; } template static constexpr decltype(auto) apply(S1&& s1, S2&& s2) { return equal_impl::equal_helper(s1, s2, hana::bool_c< decltype(hana::length(s1.storage))::value == decltype(hana::length(s2.storage))::value >); } }; ////////////////////////////////////////////////////////////////////////// // Foldable ////////////////////////////////////////////////////////////////////////// template <> struct unpack_impl { template static constexpr decltype(auto) apply(Set&& set, F&& f) { return hana::unpack(static_cast(set).storage, static_cast(f)); } }; ////////////////////////////////////////////////////////////////////////// // Searchable ////////////////////////////////////////////////////////////////////////// template <> struct find_if_impl { template static constexpr auto apply(Xs&& xs, Pred&& pred) { return hana::find_if(static_cast(xs).storage, static_cast(pred)); } }; template <> struct any_of_impl { template struct any_of_helper { Pred const& pred; template constexpr auto operator()(X const& ...x) const { return hana::or_(pred(x)...); } constexpr auto operator()() const { return hana::false_c; } }; template static constexpr auto apply(Xs const& xs, Pred const& pred) { return hana::unpack(xs.storage, any_of_helper{pred}); } }; template <> struct is_subset_impl { template struct all_contained { Ys const& ys; template constexpr auto operator()(X const& ...x) const { return hana::bool_c()... >::value>; } }; template static constexpr auto apply(Xs const& xs, Ys const& ys) { return hana::unpack(xs, all_contained{ys}); } }; ////////////////////////////////////////////////////////////////////////// // Conversions ////////////////////////////////////////////////////////////////////////// template struct to_impl::value>> { template static constexpr decltype(auto) apply(Xs&& xs) { return hana::fold_left(static_cast(xs), hana::make_set(), hana::insert); } }; ////////////////////////////////////////////////////////////////////////// // insert ////////////////////////////////////////////////////////////////////////// template <> struct insert_impl { template static constexpr auto insert_helper(Xs&& xs, X&&, hana::true_, Indices) { return static_cast(xs); } template static constexpr auto insert_helper(Xs&& xs, X&& x, hana::false_, std::index_sequence) { return hana::make_set( hana::at_c(static_cast(xs).storage)..., static_cast(x) ); } template static constexpr auto apply(Xs&& xs, X&& x) { constexpr bool c = hana::value(); constexpr std::size_t size = std::remove_reference::type::size; return insert_helper(static_cast(xs), static_cast(x), hana::bool_c, std::make_index_sequence{}); } }; ////////////////////////////////////////////////////////////////////////// // erase_key ////////////////////////////////////////////////////////////////////////// template <> struct erase_key_impl { template static constexpr decltype(auto) apply(Xs&& xs, X&& x) { return hana::unpack( hana::remove(static_cast(xs).storage, static_cast(x)), hana::make_set ); } }; ////////////////////////////////////////////////////////////////////////// // intersection ////////////////////////////////////////////////////////////////////////// namespace detail { template struct set_insert_if_contains { Ys const& ys; template static constexpr auto helper(Result&& result, Key&& key, hana::true_) { return hana::insert(static_cast(result), static_cast(key)); } template static constexpr auto helper(Result&& result, Key&&, hana::false_) { return static_cast(result); } template constexpr auto operator()(Result&& result, Key&& key) const { constexpr bool keep = hana::value(); return set_insert_if_contains::helper(static_cast(result), static_cast(key), hana::bool_c); } }; } template <> struct intersection_impl { template static constexpr auto apply(Xs&& xs, Ys const& ys) { return hana::fold_left(static_cast(xs), hana::make_set(), detail::set_insert_if_contains{ys}); } }; ////////////////////////////////////////////////////////////////////////// // union_ ////////////////////////////////////////////////////////////////////////// template <> struct union_impl { template static constexpr auto apply(Xs&& xs, Ys&& ys) { return hana::fold_left(static_cast(xs), static_cast(ys), hana::insert); } }; ////////////////////////////////////////////////////////////////////////// // difference ////////////////////////////////////////////////////////////////////////// template <> struct difference_impl { template static constexpr auto apply(Xs&& xs, Ys&& ys) { return hana::fold_left(static_cast(ys), static_cast(xs), hana::erase_key); } }; }} // end namespace boost::hana #endif // !BOOST_HANA_SET_HPP