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 (c) 2023-2025 Ivica Siladic, Bruno Iljazovic, Korina Simicevic // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt) // #ifndef BOOST_MQTT5_MESSAGE_DECODERS_HPP #define BOOST_MQTT5_MESSAGE_DECODERS_HPP #include #include #include #include #include #include #include #include namespace boost::mqtt5::decoders { using byte_citer = detail::byte_citer; using fixed_header = std::tuple< uint8_t, // control byte uint32_t // remaining_length >; inline std::optional decode_fixed_header( byte_citer& it, const byte_citer last ) { constexpr auto fixed_header_ = basic::byte_ >> basic::varint_; return type_parse(it, last, fixed_header_); } using packet_id = uint16_t; inline std::optional decode_packet_id( byte_citer& it ) { constexpr auto packet_id_ = basic::word_; return type_parse(it, it + sizeof(uint16_t), packet_id_); } using connect_message = std::tuple< std::string, // client_id, std::optional, // user_name, std::optional, // password, uint16_t, // keep_alive, bool, // clean_start, connect_props, // props, std::optional // will >; inline std::optional decode_connect( uint32_t remain_length, byte_citer& it ) { constexpr auto var_header_ = basic::utf8_ >> // MQTT basic::byte_ >> // (num 5) basic::byte_ >> // conn_flags_ basic::word_ >> // keep_alive prop::props_; const byte_citer end = it + remain_length; auto vh = type_parse(it, end, var_header_); if (!vh) return std::optional{}; auto& [mqtt_str, version, flags, keep_alive, cprops] = *vh; if (mqtt_str != "MQTT" || version != 5) return std::optional{}; bool has_will = (flags & 0b00000100); bool has_uname = (flags & 0b10000000); bool has_pwd = (flags & 0b01000000); auto payload_ = basic::utf8_ >> // client_id basic::if_(has_will)[prop::props_] >> basic::if_(has_will)[basic::utf8_] >> // will topic basic::if_(has_will)[basic::binary_] >> // will message basic::if_(has_uname)[basic::utf8_] >> // username basic::if_(has_pwd)[basic::utf8_]; // password auto pload = type_parse(it, end, payload_); if (!pload) return std::optional{}; std::optional w; if (has_will) w.emplace( std::move(*std::get<2>(*pload)), // will_topic std::move(*std::get<3>(*pload)), // will_message qos_e((flags & 0b00011000) >> 3), retain_e((flags & 0b00100000) >> 5), std::move(*std::get<1>(*pload)) // will props ); connect_message retval = { std::move(std::get<0>(*pload)), // client_id std::move(std::get<4>(*pload)), // user_name std::move(std::get<5>(*pload)), // password keep_alive, flags & 0b00000010, // clean_start std::move(cprops), // connect_props std::move(w) // will }; return std::optional { std::move(retval) }; } using connack_message = std::tuple< uint8_t, // session_present uint8_t, // connect reason code connack_props // props >; inline std::optional decode_connack( uint32_t remain_length, byte_citer& it ) { constexpr auto connack_ = basic::byte_ >> basic::byte_ >> prop::props_; return type_parse(it, it + remain_length, connack_); } using publish_message = std::tuple< std::string, // topic std::optional, // packet_id uint8_t, // dup_e, qos_e, retain_e publish_props, // publish props std::string // payload >; inline std::optional decode_publish( uint8_t control_byte, uint32_t remain_length, byte_citer& it ) { uint8_t flags = control_byte & 0b1111; auto qos = qos_e((flags >> 1) & 0b11); auto publish_ = basic::utf8_ >> basic::if_(qos != qos_e::at_most_once)[basic::word_] >> basic::attr(flags) >> prop::props_ >> basic::verbatim_; return type_parse(it, it + remain_length, publish_); } using puback_message = std::tuple< uint8_t, // puback reason code puback_props // props >; inline std::optional decode_puback( uint32_t remain_length, byte_citer& it ) { if (remain_length == 0) return puback_message {}; constexpr auto puback_ = basic::byte_ >> prop::props_; return type_parse(it, it + remain_length, puback_); } using pubrec_message = std::tuple< uint8_t, // puback reason code pubrec_props // props >; inline std::optional decode_pubrec( uint32_t remain_length, byte_citer& it ) { if (remain_length == 0) return pubrec_message {}; constexpr auto pubrec_ = basic::byte_ >> prop::props_; return type_parse(it, it + remain_length, pubrec_); } using pubrel_message = std::tuple< uint8_t, // puback reason code pubrel_props // props >; inline std::optional decode_pubrel( uint32_t remain_length, byte_citer& it ) { if (remain_length == 0) return pubrel_message {}; constexpr auto pubrel_ = basic::byte_ >> prop::props_; return type_parse(it, it + remain_length, pubrel_); } using pubcomp_message = std::tuple< uint8_t, // puback reason code pubcomp_props // props >; inline std::optional decode_pubcomp( uint32_t remain_length, byte_citer& it ) { if (remain_length == 0) return pubcomp_message {}; constexpr auto pubcomp_ = basic::byte_ >> prop::props_; return type_parse(it, it + remain_length, pubcomp_); } using subscribe_message = std::tuple< subscribe_props, std::vector> // topic filter with opts >; inline std::optional decode_subscribe( uint32_t remain_length, byte_citer& it ) { constexpr auto subscribe_ = prop::props_ >> +(basic::utf8_ >> basic::byte_); return type_parse(it, it + remain_length, subscribe_); } using suback_message = std::tuple< suback_props, std::vector // reason_codes >; inline std::optional decode_suback( uint32_t remain_length, byte_citer& it ) { constexpr auto suback_ = prop::props_ >> +basic::byte_; return type_parse(it, it + remain_length, suback_); } using unsubscribe_message = std::tuple< unsubscribe_props, std::vector // topics >; inline std::optional decode_unsubscribe( uint32_t remain_length, byte_citer& it ) { constexpr auto unsubscribe_ = prop::props_ >> +basic::utf8_; return type_parse(it, it + remain_length, unsubscribe_); } using unsuback_message = std::tuple< unsuback_props, std::vector // reason_codes >; inline std::optional decode_unsuback( uint32_t remain_length, byte_citer& it ) { constexpr auto unsuback_ = prop::props_ >> +basic::byte_; return type_parse(it, it + remain_length, unsuback_); } using disconnect_message = std::tuple< uint8_t, // reason_code disconnect_props >; inline std::optional decode_disconnect( uint32_t remain_length, byte_citer& it ) { if (remain_length == 0) return disconnect_message {}; constexpr auto disconnect_ = basic::byte_ >> prop::props_; return type_parse(it, it + remain_length, disconnect_); } using auth_message = std::tuple< uint8_t, // reason_code auth_props >; inline std::optional decode_auth( uint32_t remain_length, byte_citer& it ) { if (remain_length == 0) return auth_message {}; constexpr auto auth_ = basic::byte_ >> prop::props_; return type_parse(it, it + remain_length, auth_); } } // end namespace boost::mqtt5::decoders #endif // !BOOST_MQTT5_MESSAGE_DECODERS_HPP