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 2005-2007 Adobe Systems Incorporated // Copyright 2019 Mateusz Loskot // // 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_GIL_BIT_ALIGNED_PIXEL_REFERENCE_HPP #define BOOST_GIL_BIT_ALIGNED_PIXEL_REFERENCE_HPP #include #include #include #include #include #include #include namespace boost { namespace gil { /// A model of a heterogeneous pixel that is not byte aligned. /// Examples are bitmap (1-bit pixels) or 6-bit RGB (222). ///////////////////////////// // bit_range // // Represents a range of bits that can span multiple consecutive bytes. The range has a size fixed at compile time, but the offset is specified at run time. ///////////////////////////// template class bit_range { public: using byte_t = mp11::mp_if_c; using difference_type = std::ptrdiff_t; template friend class bit_range; private: byte_t* _current_byte; // the starting byte of the bit range int _bit_offset; // offset from the beginning of the current byte. 0<=_bit_offset<=7 public: bit_range() : _current_byte(nullptr), _bit_offset(0) {} bit_range(byte_t* current_byte, int bit_offset) : _current_byte(current_byte) , _bit_offset(bit_offset) { BOOST_ASSERT(bit_offset >= 0 && bit_offset < 8); } bit_range(bit_range const& br) : _current_byte(br._current_byte), _bit_offset(br._bit_offset) {} template bit_range(const bit_range& br) : _current_byte(br._current_byte), _bit_offset(br._bit_offset) {} auto operator=(bit_range const& br) -> bit_range& { _current_byte = br._current_byte; _bit_offset=br._bit_offset; return *this; } bool operator==(bit_range const& br) const { return _current_byte==br._current_byte && _bit_offset==br._bit_offset; } auto operator++() -> bit_range& { _current_byte += (_bit_offset+RangeSize) / 8; _bit_offset = (_bit_offset+RangeSize) % 8; return *this; } auto operator--() -> bit_range& { bit_advance(-RangeSize); return *this; } void bit_advance(difference_type num_bits) { int new_offset = int(_bit_offset+num_bits); _current_byte += new_offset / 8; _bit_offset = new_offset % 8; if (_bit_offset<0) { _bit_offset+=8; --_current_byte; } } auto bit_distance_to(bit_range const& b) const -> difference_type { return (b.current_byte() - current_byte())*8 + b.bit_offset()-bit_offset(); } auto current_byte() const -> byte_t* { return _current_byte; } auto bit_offset() const -> int { return _bit_offset; } }; /// \defgroup ColorBaseModelNonAlignedPixel bit_aligned_pixel_reference /// \ingroup ColorBaseModel /// \brief A heterogeneous color base representing pixel that may not be byte aligned, i.e. it may correspond to a bit range that does not start/end at a byte boundary. Models ColorBaseConcept. /// /// \defgroup PixelModelNonAlignedPixel bit_aligned_pixel_reference /// \ingroup PixelModel /// \brief A heterogeneous pixel reference used to represent non-byte-aligned pixels. Models PixelConcept /// /// Example: /// \code /// unsigned char data=0; /// /// // A mutable reference to a 6-bit BGR pixel in "123" format (1 bit for red, 2 bits for green, 3 bits for blue) /// using rgb123_ref_t = bit_aligned_pixel_reference, rgb_layout_t, true> const; /// /// // create the pixel reference at bit offset 2 /// // (i.e. red = [2], green = [3,4], blue = [5,6,7] bits) /// rgb123_ref_t ref(&data, 2); /// get_color(ref, red_t()) = 1; /// assert(data == 0x04); /// get_color(ref, green_t()) = 3; /// assert(data == 0x1C); /// get_color(ref, blue_t()) = 7; /// assert(data == 0xFC); /// \endcode /// /// \ingroup ColorBaseModelNonAlignedPixel PixelModelNonAlignedPixel PixelBasedModel /// \brief Heterogeneous pixel reference corresponding to non-byte-aligned bit range. Models ColorBaseConcept, PixelConcept, PixelBasedConcept /// /// \tparam BitField /// \tparam ChannelBitSizes Boost.MP11-compatible list of integral types defining the number of bits for each channel. For example, for 565RGB, mp_list_c /// \tparam Layout /// \tparam IsMutable template struct bit_aligned_pixel_reference { static constexpr int bit_size = mp11::mp_fold < ChannelBitSizes, std::integral_constant, mp11::mp_plus >::value; using bit_range_t = boost::gil::bit_range; using bitfield_t = BitField; using data_ptr_t = mp11::mp_if_c; using layout_t = Layout; using value_type = typename packed_pixel_type::type; using reference = const bit_aligned_pixel_reference; using const_reference = bit_aligned_pixel_reference const; static constexpr bool is_mutable = IsMutable; bit_aligned_pixel_reference(){} bit_aligned_pixel_reference(data_ptr_t data_ptr, int bit_offset) : _bit_range(data_ptr, bit_offset) {} explicit bit_aligned_pixel_reference(bit_range_t const& bit_range) : _bit_range(bit_range) {} template bit_aligned_pixel_reference(bit_aligned_pixel_reference const& p) : _bit_range(p._bit_range) {} // Grayscale references can be constructed from the channel reference explicit bit_aligned_pixel_reference(typename kth_element_type::type const channel0) : _bit_range(static_cast(&channel0), channel0.first_bit()) { static_assert(num_channels::value == 1, ""); } // Construct from another compatible pixel type bit_aligned_pixel_reference(bit_aligned_pixel_reference const& p) : _bit_range(p._bit_range) {} // TODO: Why p by non-const reference? template bit_aligned_pixel_reference(packed_pixel& p) : _bit_range(static_cast(&gil::at_c<0>(p)), gil::at_c<0>(p).first_bit()) { check_compatible>(); } auto operator=(bit_aligned_pixel_reference const& p) const -> bit_aligned_pixel_reference const& { static_copy(p, *this); return *this; } template auto operator=(P const& p) const -> bit_aligned_pixel_reference const& { assign(p, is_pixel

()); return *this; } template bool operator==(P const& p) const { return equal(p, is_pixel

()); } template bool operator!=(P const& p) const { return !(*this==p); } auto operator->() const -> bit_aligned_pixel_reference const* { return this; } auto bit_range() const -> bit_range_t const& { return _bit_range; } private: mutable bit_range_t _bit_range; template friend struct bit_aligned_pixel_reference; template static void check_compatible() { gil_function_requires >(); } template void assign(Pixel const& p, std::true_type) const { check_compatible(); static_copy(p, *this); } template bool equal(Pixel const& p, std::true_type) const { check_compatible(); return static_equal(*this, p); } private: static void check_gray() { static_assert(std::is_same::value, ""); } template void assign(Channel const& channel, std::false_type) const { check_gray(); gil::at_c<0>(*this) = channel; } template bool equal (Channel const& channel, std::false_type) const { check_gray(); return gil::at_c<0>(*this) == channel; } }; ///////////////////////////// // ColorBasedConcept ///////////////////////////// template struct kth_element_type < bit_aligned_pixel_reference, K > { using type = packed_dynamic_channel_reference < BitField, mp11::mp_at_c::value, IsMutable > const; }; template struct kth_element_reference_type, K> : public kth_element_type, K> {}; template struct kth_element_const_reference_type, K> : public kth_element_type, K> {}; namespace detail { // returns sum of IntegralVector[0] ... IntegralVector[K-1] template struct sum_k : mp11::mp_plus < sum_k, typename mp11::mp_at_c::type > {}; template struct sum_k : std::integral_constant {}; } // namespace detail // at_c required by MutableColorBaseConcept template inline auto at_c(const bit_aligned_pixel_reference& p) -> typename kth_element_reference_type, K>::type { using pixel_t = bit_aligned_pixel_reference; using channel_t = typename kth_element_reference_type::type; using bit_range_t = typename pixel_t::bit_range_t; bit_range_t bit_range(p.bit_range()); bit_range.bit_advance(detail::sum_k::value); return channel_t(bit_range.current_byte(), bit_range.bit_offset()); } ///////////////////////////// // PixelConcept ///////////////////////////// /// Metafunction predicate that flags bit_aligned_pixel_reference as a model of PixelConcept. Required by PixelConcept template struct is_pixel > : std::true_type {}; ///////////////////////////// // PixelBasedConcept ///////////////////////////// template struct color_space_type> { using type = typename L::color_space_t; }; template struct channel_mapping_type> { using type = typename L::channel_mapping_t; }; template struct is_planar> : std::false_type {}; ///////////////////////////// // pixel_reference_type ///////////////////////////// // Constructs a homogeneous bit_aligned_pixel_reference given a channel reference template struct pixel_reference_type < packed_dynamic_channel_reference const, Layout, false, false > { private: using channel_bit_sizes_t = mp11::mp_repeat < mp11::mp_list>, mp11::mp_size >; public: using type = bit_aligned_pixel_reference; }; // Same but for the mutable case. We cannot combine the mutable // and read-only cases because this triggers ambiguity template struct pixel_reference_type < packed_dynamic_channel_reference const, Layout, false, true > { private: using channel_bit_sizes_t = mp11::mp_repeat < mp11::mp_list>, mp11::mp_size >; public: using type = bit_aligned_pixel_reference; }; } } // namespace boost::gil namespace std { // We are forced to define swap inside std namespace because on some platforms (Visual Studio 8) STL calls swap qualified. // swap with 'left bias': // - swap between proxy and anything // - swap between value type and proxy // - swap between proxy and proxy // Having three overloads allows us to swap between different (but compatible) models of PixelConcept template inline void swap(boost::gil::bit_aligned_pixel_reference const x, R& y) { boost::gil::swap_proxy::value_type>(x,y); } template inline void swap(typename boost::gil::bit_aligned_pixel_reference::value_type& x, const boost::gil::bit_aligned_pixel_reference y) { boost::gil::swap_proxy::value_type>(x,y); } template inline void swap(boost::gil::bit_aligned_pixel_reference const x, const boost::gil::bit_aligned_pixel_reference y) { boost::gil::swap_proxy::value_type>(x,y); } } // namespace std #endif