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
/* Configurable Bloom filter. * * Copyright 2025 Joaquin M Lopez Munoz. * 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) * * See https://www.boost.org/libs/bloom for library home page. */ #ifndef BOOST_BLOOM_FILTER_HPP #define BOOST_BLOOM_FILTER_HPP #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace boost{ namespace bloom{ namespace detail{ /* Mixing policies: no_mix_policy is the identity function, and * mulx64_mix_policy uses the mulx64 function from * . * * filter mixes hash results with mulx64 if the hash is not marked as * avalanching, i.e. it's not of good quality (see * ), or if std::size_t is less than 64 bits * (mixing policies promote to std::uint64_t). */ struct no_mix_policy { template /* NOLINTNEXTLINE(readability-redundant-inline-specifier) */ static inline std::uint64_t mix(const Hash& h,const T& x) { return (std::uint64_t)h(x); } }; struct mulx64_mix_policy { template /* NOLINTNEXTLINE(readability-redundant-inline-specifier) */ static inline std::uint64_t mix(const Hash& h,const T& x) { return mulx64((std::uint64_t)h(x)); } }; } /* namespace detail */ #if defined(BOOST_MSVC) #pragma warning(push) #pragma warning(disable:4714) /* marked as __forceinline not inlined */ #endif template< typename T,std::size_t K, typename Subfilter=block,std::size_t Stride=0, typename Hash=boost::hash,typename Allocator=std::allocator > class #if defined(_MSC_VER)&&_MSC_FULL_VER>=190023918 __declspec(empty_bases) /* activate EBO with multiple inheritance */ #endif filter: detail::filter_core< K,Subfilter,Stride,allocator_rebind_t >, empty_value { BOOST_BLOOM_STATIC_ASSERT_IS_CV_UNQUALIFIED_OBJECT(T); static_assert( std::is_same>::value, "Allocator's value_type must be unsigned char"); using super=detail::filter_core; using mix_policy=typename std::conditional< boost::hash_is_avalanching::value&& sizeof(std::size_t)>=sizeof(std::uint64_t), detail::no_mix_policy, detail::mulx64_mix_policy >::type; public: using value_type=T; using super::k; using subfilter=typename super::subfilter; using super::stride; using hasher=Hash; using allocator_type=Allocator; using size_type=typename super::size_type; using difference_type=typename super::difference_type; using reference=value_type&; using const_reference=const value_type&; using pointer=value_type*; using const_pointer=const value_type*; static constexpr std::size_t bulk_insert_size=super::bulk_insert_size; static constexpr std::size_t bulk_may_contain_size= super::bulk_may_contain_size; filter()=default; explicit filter( std::size_t m,const hasher& h=hasher(), const allocator_type& al=allocator_type()): super{m,al},hash_base{empty_init,h}{} filter( std::size_t n,double fpr,const hasher& h=hasher(), const allocator_type& al=allocator_type()): super{n,fpr,al},hash_base{empty_init,h}{} template filter( InputIterator first,InputIterator last, std::size_t m,const hasher& h=hasher(), const allocator_type& al=allocator_type()): filter{m,h,al} { insert(first,last); } template filter( InputIterator first,InputIterator last, std::size_t n,double fpr,const hasher& h=hasher(), const allocator_type& al=allocator_type()): filter{n,fpr,h,al} { insert(first,last); } filter(const filter&)=default; filter(filter&&)=default; template filter( InputIterator first,InputIterator last, std::size_t m,const allocator_type& al): filter{first,last,m,hasher(),al}{} template filter( InputIterator first,InputIterator last, std::size_t n,double fpr,const allocator_type& al): filter{first,last,n,fpr,hasher(),al}{} explicit filter(const allocator_type& al):filter{0,al}{} filter(const filter& x,const allocator_type& al): super{x,al},hash_base{empty_init,x.h()}{} filter(filter&& x,const allocator_type& al): super{std::move(x),al},hash_base{empty_init,std::move(x.h())}{} filter( std::initializer_list il, std::size_t m,const hasher& h=hasher(), const allocator_type& al=allocator_type()): filter{il.begin(),il.end(),m,h,al}{} filter( std::initializer_list il, std::size_t n,double fpr,const hasher& h=hasher(), const allocator_type& al=allocator_type()): filter{il.begin(),il.end(),n,fpr,h,al}{} filter(std::size_t m,const allocator_type& al): filter{m,hasher(),al}{} filter(std::size_t n,double fpr,const allocator_type& al): filter{n,fpr,hasher(),al}{} filter( std::initializer_list il, std::size_t m,const allocator_type& al): filter{il.begin(),il.end(),m,hasher(),al}{} filter( std::initializer_list il, std::size_t n,double fpr,const allocator_type& al): filter{il.begin(),il.end(),n,fpr,hasher(),al}{} filter& operator=(const filter& x) { BOOST_BLOOM_STATIC_ASSERT_IS_NOTHROW_SWAPPABLE(Hash); using std::swap; auto x_h=x.h(); super::operator=(x); swap(h(),x_h); return *this; } filter& operator=(filter&& x) noexcept(noexcept(std::declval()=(std::declval()))) { BOOST_BLOOM_STATIC_ASSERT_IS_NOTHROW_SWAPPABLE(Hash); using std::swap; super::operator=(std::move(x)); swap(h(),x.h()); return *this; } filter& operator=(std::initializer_list il) { clear(); insert(il); return *this; } using super::get_allocator; using super::capacity; using super::capacity_for; using super::fpr_for; using super::array; BOOST_FORCEINLINE void insert(const T& x) { super::insert(hash_for(x)); } template< typename U, typename H=hasher,detail::enable_if_transparent_t* =nullptr > BOOST_FORCEINLINE void insert(const U& x) { super::insert(hash_for(x)); } template void insert(InputIterator first,InputIterator last) { insert_impl( first,last, std::integral_constant< bool,detail::is_forward_iterator::value>{}); } void insert(std::initializer_list il) { insert(il.begin(),il.end()); } void swap(filter& x) noexcept(noexcept(std::declval().swap(std::declval()))) { BOOST_BLOOM_STATIC_ASSERT_IS_NOTHROW_SWAPPABLE(Hash); using std::swap; super::swap(x); swap(h(),x.h()); } using super::clear; using super::reset; filter& operator&=(const filter& x) { super::operator&=(x); return *this; } filter& operator|=(const filter& x) { super::operator|=(x); return *this; } hasher hash_function()const { return h(); } BOOST_FORCEINLINE bool may_contain(const T& x)const { return super::may_contain(hash_for(x)); } template< typename U, typename H=hasher,detail::enable_if_transparent_t* =nullptr > BOOST_FORCEINLINE bool may_contain(const U& x)const { return super::may_contain(hash_for(x)); } template void may_contain( ForwardIterator first,ForwardIterator last,F f)const { BOOST_BLOOM_STATIC_ASSERT_IS_FORWARD_ITERATOR(ForwardIterator); super::bulk_may_contain( [this,first]()mutable{return promoting_hash_for(*first++);}, static_cast(std::distance(first,last)), [&f,first](bool res)mutable{f(*first++,res);}); } private: template< typename T1,std::size_t K1,typename SF,std::size_t S,typename H,typename A > bool friend operator==( const filter& x,const filter& y); using hash_base=empty_value; const Hash& h()const{return hash_base::get();} Hash& h(){return hash_base::get();} template /* NOLINTNEXTLINE(readability-redundant-inline-specifier) */ inline std::uint64_t hash_for(const U& x)const { return mix_policy::mix(h(),x); } /* promoting_hash_for forces conversion to value_type unless Hash * is transparent. */ /* NOLINTNEXTLINE(readability-redundant-inline-specifier) */ inline std::uint64_t promoting_hash_for(const T& x)const { return hash_for(x); } template< typename U, typename H=hasher,detail::enable_if_transparent_t* =nullptr > /* NOLINTNEXTLINE(readability-redundant-inline-specifier) */ inline std::uint64_t promoting_hash_for(const U& x)const { return hash_for(x); } template void insert_impl( Iterator first,Iterator last,std::false_type /* input iterator */) { while(first!=last)insert(*first++); } template void insert_impl( Iterator first,Iterator last,std::true_type /* forward iterator */) { super::bulk_insert( [this,first]()mutable{return promoting_hash_for(*first++);}, static_cast(std::distance(first,last))); } }; template< typename T,std::size_t K,typename SF,std::size_t S,typename H,typename A > bool operator==(const filter& x,const filter& y) { using super=typename filter::super; return static_cast(x)==static_cast(y); } template< typename T,std::size_t K,typename SF,std::size_t S,typename H,typename A > bool operator!=(const filter& x,const filter& y) { return !(x==y); } template< typename T,std::size_t K,typename SF,std::size_t S,typename H,typename A > void swap(filter& x,filter& y) noexcept(noexcept(x.swap(y))) { x.swap(y); } #if defined(BOOST_MSVC) #pragma warning(pop) /* C4714 */ #endif } /* namespace bloom */ } /* namespace boost */ #endif