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
// Boost.Units - A C++ library for zero-overhead dimensional analysis and // unit/quantity manipulation and conversion // // Copyright (C) 2003-2008 Matthias Christian Schabel // Copyright (C) 2007-2008 Steven Watanabe // // 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_UNITS_CONVERSION_HPP #define BOOST_UNITS_CONVERSION_HPP /// \file /// \brief Template for defining conversions between quantities. #include namespace boost { namespace units { template struct conversion_helper; #ifdef BOOST_UNITS_DOXYGEN /// Template for defining conversions between /// quantities. This template should be specialized /// for every quantity that allows conversions. /// For example, if you have a two units /// called pair and dozen you would write /// @code /// namespace boost { /// namespace units { /// template /// struct conversion_helper, quantity > /// { /// static quantity convert(const quantity& source) /// { /// return(quantity::from_value(6 * source.value())); /// } /// }; /// } /// } /// @endcode /// /// In most cases, the predefined specializations for @c unit /// and @c absolute should be sufficient, so users should rarely /// need to use this. template struct conversion_helper { static BOOST_CONSTEXPR To convert(const From&); }; #endif /// Defines the conversion factor from a base unit to any unit /// or to another base unit with the correct dimensions. Uses /// of this macro must appear at global scope. /// If the destination unit is a base unit or a unit that contains /// only one base unit which is raised to the first power (e.g. feet->meters) /// the reverse (meters->feet in this example) need not be defined explicitly. #define BOOST_UNITS_DEFINE_CONVERSION_FACTOR(Source, Destination, type_, value_) \ namespace boost { \ namespace units { \ template<> \ struct select_base_unit_converter< \ unscale::type, \ unscale::type>::type \ > \ { \ typedef Source source_type; \ typedef reduce_unit::type destination_type; \ }; \ template<> \ struct base_unit_converter::type> \ { \ BOOST_STATIC_CONSTEXPR bool is_defined = true; \ typedef type_ type; \ static BOOST_CONSTEXPR type value() { return(value_); } \ }; \ } \ } \ void boost_units_require_semicolon() /// Defines the conversion factor from a base unit to any other base /// unit with the same dimensions. Params should be a Boost.Preprocessor /// Seq of template parameters, such as (class T1)(class T2) /// All uses of must appear at global scope. The reverse conversion will /// be defined automatically. This macro is a little dangerous, because, /// unlike the non-template form, it will silently fail if either base /// unit is scaled. This is probably not an issue if both the source /// and destination types depend on the template parameters, but be aware /// that a generic conversion to kilograms is not going to work. #define BOOST_UNITS_DEFINE_CONVERSION_FACTOR_TEMPLATE(Params, Source, Destination, type_, value_) \ namespace boost { \ namespace units { \ template \ struct base_unit_converter< \ Source, \ BOOST_UNITS_MAKE_HETEROGENEOUS_UNIT(Destination, typename Source::dimension_type)\ > \ { \ BOOST_STATIC_CONSTEXPR bool is_defined = true; \ typedef type_ type; \ static BOOST_CONSTEXPR type value() { return(value_); } \ }; \ } \ } \ void boost_units_require_semicolon() /// Specifies the default conversion to be applied when /// no direct conversion is available. /// Source is a base unit. Dest is any unit with the /// same dimensions. #define BOOST_UNITS_DEFAULT_CONVERSION(Source, Dest) \ namespace boost { \ namespace units { \ template<> \ struct unscaled_get_default_conversion::type> \ { \ BOOST_STATIC_CONSTEXPR bool is_defined = true; \ typedef Dest::unit_type type; \ }; \ } \ } \ void boost_units_require_semicolon() /// Specifies the default conversion to be applied when /// no direct conversion is available. /// Params is a PP Sequence of template arguments. /// Source is a base unit. Dest is any unit with the /// same dimensions. The source must not be a scaled /// base unit. #define BOOST_UNITS_DEFAULT_CONVERSION_TEMPLATE(Params, Source, Dest) \ namespace boost { \ namespace units { \ template \ struct unscaled_get_default_conversion \ { \ BOOST_STATIC_CONSTEXPR bool is_defined = true; \ typedef typename Dest::unit_type type; \ }; \ } \ } \ void boost_units_require_semicolon() /// INTERNAL ONLY /// Users should not create their units in namespace boost::units. /// If we want to make this public it needs to allow better control over /// the namespaces. --SJW. /// template that defines a base_unit and conversion to another dimensionally-consistent unit #define BOOST_UNITS_DEFINE_BASE_UNIT_WITH_CONVERSIONS(namespace_, name_, name_string_, symbol_string_, factor, unit, id)\ namespace boost { \ namespace units { \ namespace namespace_ { \ struct name_ ## _base_unit \ : base_unit { \ static BOOST_CONSTEXPR const char* name() { return(name_string_); } \ static BOOST_CONSTEXPR const char* symbol() { return(symbol_string_); } \ }; \ } \ } \ } \ BOOST_UNITS_DEFINE_CONVERSION_FACTOR(namespace_::name_ ## _base_unit, unit, double, factor); \ BOOST_UNITS_DEFAULT_CONVERSION(namespace_::name_ ## _base_unit, unit) /// Find the conversion factor between two units. template inline BOOST_CONSTEXPR typename one_to_double_type< typename detail::conversion_factor_helper::type >::type conversion_factor(const FromUnit&,const ToUnit&) { return(one_to_double(detail::conversion_factor_helper::value())); } } // namespace units } // namespace boost #endif // BOOST_UNITS_CONVERSION_HPP