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
// (C) Copyright David Abrahams 2002. // (C) Copyright Jeremy Siek 2002. // (C) Copyright Thomas Witt 2002. // 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_ITERATOR_TRANSFORM_ITERATOR_23022003THW_HPP #define BOOST_ITERATOR_TRANSFORM_ITERATOR_23022003THW_HPP #include #include #include #include #include #include #include namespace boost { namespace iterators { template< typename UnaryFunction, typename Iterator, typename Reference = use_default, typename Value = use_default > class transform_iterator; namespace detail { template< typename UnaryFunc, typename Iterator > struct transform_iterator_default_reference { using type = decltype(std::declval< UnaryFunc const& >()(std::declval< typename std::iterator_traits< Iterator >::reference >())); }; // Compute the iterator_adaptor instantiation to be used for transform_iterator template< typename UnaryFunc, typename Iterator, typename Reference, typename Value > struct transform_iterator_base { private: // By default, dereferencing the iterator yields the same as // the function. using reference = detail::eval_if_default_t< Reference, transform_iterator_default_reference< UnaryFunc, Iterator > >; // To get the default for Value: remove any reference on the // result type, but retain any constness to signal // non-writability. Note that if we adopt Thomas' suggestion // to key non-writability *only* on the Reference argument, // we'd need to strip constness here as well. using cv_value_type = detail::eval_if_default_t< Value, std::remove_reference< reference > >; public: using type = iterator_adaptor< transform_iterator< UnaryFunc, Iterator, Reference, Value >, Iterator, cv_value_type, use_default, // Leave the traversal category alone reference >; }; } // namespace detail template< typename UnaryFunc, typename Iterator, typename Reference, typename Value > class transform_iterator : public detail::transform_iterator_base< UnaryFunc, Iterator, Reference, Value >::type, private boost::empty_value< UnaryFunc > { friend class iterator_core_access; private: using super_t = typename detail::transform_iterator_base< UnaryFunc, Iterator, Reference, Value >::type; using functor_base = boost::empty_value< UnaryFunc >; public: transform_iterator() = default; transform_iterator(Iterator const& x, UnaryFunc f) : super_t(x), functor_base(boost::empty_init_t{}, f) {} // don't provide this constructor if UnaryFunc is a // function pointer type, since it will be 0. Too dangerous. template< bool Requires = std::is_class< UnaryFunc >::value, typename = typename std::enable_if< Requires >::type > explicit transform_iterator(Iterator const& x) : super_t(x) {} template< typename OtherUnaryFunction, typename OtherIterator, typename OtherReference, typename OtherValue, typename = enable_if_convertible_t< OtherIterator, Iterator >, typename = enable_if_convertible_t< OtherUnaryFunction, UnaryFunc > > transform_iterator(transform_iterator< OtherUnaryFunction, OtherIterator, OtherReference, OtherValue > const& t) : super_t(t.base()), functor_base(boost::empty_init_t{}, t.functor()) {} UnaryFunc functor() const { return functor_base::get(); } private: typename super_t::reference dereference() const { return functor_base::get()(*this->base()); } }; template< typename UnaryFunc, typename Iterator > inline transform_iterator< UnaryFunc, Iterator > make_transform_iterator(Iterator it, UnaryFunc fun) { return transform_iterator< UnaryFunc, Iterator >(it, fun); } // Version which allows explicit specification of the UnaryFunc // type. // // This generator is not provided if UnaryFunc is a function // pointer type, because it's too dangerous: the default-constructed // function pointer in the iterator be 0, leading to a runtime // crash. template< typename UnaryFunc, typename Iterator > inline typename std::enable_if< std::is_class< UnaryFunc >::value, // We should probably find a cheaper test than is_class<> transform_iterator< UnaryFunc, Iterator > >::type make_transform_iterator(Iterator it) { return transform_iterator< UnaryFunc, Iterator >(it); } } // namespace iterators using iterators::transform_iterator; using iterators::make_transform_iterator; } // namespace boost #endif // BOOST_ITERATOR_TRANSFORM_ITERATOR_23022003THW_HPP