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_FILTER_ITERATOR_23022003THW_HPP #define BOOST_FILTER_ITERATOR_23022003THW_HPP #include #include #include #include #include #include namespace boost { namespace iterators { template< typename Predicate, typename Iterator > class filter_iterator; namespace detail { template< typename Predicate, typename Iterator > using filter_iterator_base_t = iterator_adaptor< filter_iterator< Predicate, Iterator >, Iterator, use_default, typename std::conditional< std::is_convertible< iterator_traversal_t< Iterator >, random_access_traversal_tag >::value, bidirectional_traversal_tag, use_default >::type >; } // namespace detail template< typename Predicate, typename Iterator > class filter_iterator : public detail::filter_iterator_base_t< Predicate, Iterator > { friend class iterator_core_access; template< typename, typename > friend class filter_iterator; private: using super_t = detail::filter_iterator_base_t< Predicate, Iterator >; // Storage class to leverage EBO, when possible struct storage : private boost::empty_value< Predicate > { using predicate_base = boost::empty_value< Predicate >; Iterator m_end; storage() = default; template< typename Iter, typename = typename std::enable_if< !std::is_same< typename std::remove_cv< typename std::remove_reference< Iter >::type >::type, storage >::value > > explicit storage(Iter&& end) : predicate_base(boost::empty_init_t{}), m_end(static_cast< Iterator&& >(end)) { } template< typename Pred, typename Iter > storage(Pred&& pred, Iter&& end) : predicate_base(boost::empty_init_t{}, static_cast< Pred&& >(pred)), m_end(static_cast< Iter&& >(end)) { } Predicate& predicate() noexcept { return predicate_base::get(); } Predicate const& predicate() const noexcept { return predicate_base::get(); } }; public: filter_iterator() = default; filter_iterator(Predicate f, Iterator x, Iterator end = Iterator()) : super_t(static_cast< Iterator&& >(x)), m_storage(static_cast< Predicate&& >(f), static_cast< Iterator&& >(end)) { satisfy_predicate(); } template< bool Requires = std::is_class< Predicate >::value, typename = typename std::enable_if< Requires >::type > filter_iterator(Iterator x, Iterator end = Iterator()) : super_t(static_cast< Iterator&& >(x)), m_storage(static_cast< Iterator&& >(end)) { satisfy_predicate(); } template< typename OtherIterator, typename = enable_if_convertible_t< OtherIterator, Iterator > > filter_iterator(filter_iterator< Predicate, OtherIterator > const& t) : super_t(t.base()), m_storage(t.m_storage.predicate(), t.m_storage.m_end) {} Predicate predicate() const { return m_storage.predicate(); } Iterator end() const { return m_storage.m_end; } private: void increment() { ++(this->base_reference()); satisfy_predicate(); } void decrement() { while (!m_storage.predicate()(*--(this->base_reference()))) {} } void satisfy_predicate() { while (this->base() != m_storage.m_end && !m_storage.predicate()(*this->base())) ++(this->base_reference()); } private: storage m_storage; }; template< typename Predicate, typename Iterator > inline filter_iterator< Predicate, Iterator > make_filter_iterator(Predicate f, Iterator x, Iterator end = Iterator()) { return filter_iterator< Predicate, Iterator >(static_cast< Predicate&& >(f), static_cast< Iterator&& >(x), static_cast< Iterator&& >(end)); } template< typename Predicate, typename Iterator > inline typename std::enable_if< std::is_class< Predicate >::value, filter_iterator< Predicate, Iterator > >::type make_filter_iterator(Iterator x, Iterator end = Iterator()) { return filter_iterator< Predicate, Iterator >(static_cast< Iterator&& >(x), static_cast< Iterator&& >(end)); } } // namespace iterators using iterators::filter_iterator; using iterators::make_filter_iterator; } // namespace boost #endif // BOOST_FILTER_ITERATOR_23022003THW_HPP