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 Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace Client { enum class CoreErrors; class XmlErrorMarshaller; class JsonErrorMarshaller; enum class ErrorPayloadType { NOT_SET, XML, JSON }; enum class RetryableType { NOT_RETRYABLE, RETRYABLE, RETRYABLE_THROTTLING }; /** * Container for Error enumerations with additional exception information. Name, message, retryable etc.... */ template class AWSError { // Allow ErrorMarshaller to set error payload. friend class XmlErrorMarshaller; friend class JsonErrorMarshaller; friend class JsonErrorMarshallerQueryCompatible; template friend class AWSError; public: /** * Initializes AWSError object as empty with the error not being retryable. */ AWSError() : AWSError({}, RetryableType::NOT_RETRYABLE) {} /** * Initializes AWSError object with errorType, exceptionName, message, and retryable type. */ AWSError(ERROR_TYPE errorType, Aws::String exceptionName, Aws::String message, bool isRetryable) : AWSError(errorType, isRetryable? RetryableType::RETRYABLE : RetryableType::NOT_RETRYABLE, exceptionName, message) {} /** * Initializes AWSError object with errorType and retryable flag. ExceptionName and message are empty. */ AWSError(ERROR_TYPE errorType, bool isRetryable) : AWSError(errorType, isRetryable? RetryableType::RETRYABLE : RetryableType::NOT_RETRYABLE) {} /** * Initializes AWSError object with errorType and retryable type. ExceptionName and message are empty. */ AWSError(ERROR_TYPE errorType, RetryableType retryableType, Aws::String exceptionName = "", Aws::String message = "") : m_errorType(errorType), m_exceptionName(std::move(exceptionName)), m_message(std::move(message)), m_retryableType(retryableType) {} AWSError(AWSError&&) = default; AWSError(const AWSError&) = default; template AWSError(AWSError&& rhs) : m_errorType(static_cast(rhs.m_errorType)), m_exceptionName(std::move(rhs.m_exceptionName)), m_message(std::move(rhs.m_message)), m_remoteHostIpAddress(std::move(rhs.m_remoteHostIpAddress)), m_requestId(std::move(rhs.m_requestId)), m_responseHeaders(std::move(rhs.m_responseHeaders)), m_responseCode(rhs.m_responseCode), m_errorPayloadType(rhs.m_errorPayloadType), m_xmlPayload(std::move(rhs.m_xmlPayload)), m_jsonPayload(std::move(rhs.m_jsonPayload)), m_retryableType(rhs.m_retryableType) {} template AWSError(const AWSError& rhs) : m_errorType(static_cast(rhs.m_errorType)), m_exceptionName(rhs.m_exceptionName), m_message(rhs.m_message), m_remoteHostIpAddress(rhs.m_remoteHostIpAddress), m_requestId(rhs.m_requestId), m_responseHeaders(rhs.m_responseHeaders), m_responseCode(rhs.m_responseCode), m_errorPayloadType(rhs.m_errorPayloadType), m_xmlPayload(rhs.m_xmlPayload), m_jsonPayload(rhs.m_jsonPayload), m_retryableType(rhs.m_retryableType) {} /** * Copy assignment operator */ AWSError& operator=(const AWSError&) = default; /** * Move assignment operator */ AWSError& operator=(AWSError&&) = default; /** * Gets underlying errorType. */ inline const ERROR_TYPE GetErrorType() const { return m_errorType; } /** * Gets the underlying ExceptionName. */ inline const Aws::String& GetExceptionName() const { return m_exceptionName; } /** *Sets the underlying ExceptionName. */ inline void SetExceptionName(const Aws::String& exceptionName) { m_exceptionName = exceptionName; } /** * Gets the error message. */ #ifdef _WIN32 #pragma push_macro("GetMessage") #undef GetMessage inline const Aws::String& GetMessage() const { return m_message; } inline const Aws::String& GetMessageW() const { return GetMessage(); } inline const Aws::String& GetMessageA() const { return GetMessage(); } #pragma pop_macro("GetMessage") #else inline const Aws::String& GetMessage() const { return m_message; } #endif //#ifdef _WIN32 /** * Sets the error message */ inline void SetMessage(const Aws::String& message) { m_message = message; } /** * Gets the resolved remote host IP address. * This value is only available after DNS resolution and with CURL http client right now. * Otherwise an empty string is returned. */ inline const Aws::String& GetRemoteHostIpAddress() const { return m_remoteHostIpAddress; } /** * Sets the resolved remote host IP address. */ inline void SetRemoteHostIpAddress(const Aws::String& remoteHostIpAddress) { m_remoteHostIpAddress = remoteHostIpAddress; } /** * Gets the request ID. * This value is available after request is made and when services return it in response. * Otherwise an empty string is returned. */ inline const Aws::String& GetRequestId() const { return m_requestId; } /** * Sets the request ID. */ inline void SetRequestId(const Aws::String& requestId) { m_requestId = requestId; } /** * Returns whether or not this error is eligible for retry. */ inline bool ShouldRetry() const { return m_retryableType == RetryableType::RETRYABLE || m_retryableType == RetryableType::RETRYABLE_THROTTLING; } /** * Gets the response headers from the http response. */ inline const Aws::Http::HeaderValueCollection& GetResponseHeaders() const { return m_responseHeaders; } /** * Sets the response headers from the http response. */ inline void SetResponseHeaders(const Aws::Http::HeaderValueCollection& headers) { m_responseHeaders = headers; } /** * Tests whether or not a header exists. */ inline bool ResponseHeaderExists(const Aws::String& headerName) const { return m_responseHeaders.find(Aws::Utils::StringUtils::ToLower(headerName.c_str())) != m_responseHeaders.end(); } /** * Gets the response code from the http response */ inline Aws::Http::HttpResponseCode GetResponseCode() const { return m_responseCode; } /** * Sets the response code from the http response */ inline void SetResponseCode(Aws::Http::HttpResponseCode responseCode) { m_responseCode = responseCode; } /** * Return whether or not the error should throttle retry strategies. */ inline bool ShouldThrottle() const { return m_retryableType == RetryableType::RETRYABLE_THROTTLING; } /** * Sets the response code from the http response */ inline void SetRetryableType(const RetryableType retryableType) { m_retryableType = retryableType; } protected: inline ErrorPayloadType GetErrorPayloadType() { return m_errorPayloadType; } inline void SetXmlPayload(const Aws::Utils::Xml::XmlDocument& xmlPayload) { m_errorPayloadType = ErrorPayloadType::XML; m_xmlPayload = xmlPayload; } inline void SetXmlPayload(Aws::Utils::Xml::XmlDocument&& xmlPayload) { m_errorPayloadType = ErrorPayloadType::XML; m_xmlPayload = std::move(xmlPayload); } inline const Aws::Utils::Xml::XmlDocument& GetXmlPayload() const { assert(m_errorPayloadType != ErrorPayloadType::JSON); return m_xmlPayload; } inline void SetJsonPayload(const Aws::Utils::Json::JsonValue& jsonPayload) { m_errorPayloadType = ErrorPayloadType::JSON; m_jsonPayload = jsonPayload; } inline void SetJsonPayload(Aws::Utils::Json::JsonValue&& jsonPayload) { m_errorPayloadType = ErrorPayloadType::JSON; m_jsonPayload = std::move(jsonPayload); } inline const Aws::Utils::Json::JsonValue& GetJsonPayload() const { assert(m_errorPayloadType != ErrorPayloadType::XML); return m_jsonPayload; } ERROR_TYPE m_errorType; Aws::String m_exceptionName; Aws::String m_message; Aws::String m_remoteHostIpAddress; Aws::String m_requestId; Aws::Http::HeaderValueCollection m_responseHeaders; Aws::Http::HttpResponseCode m_responseCode = Aws::Http::HttpResponseCode::REQUEST_NOT_MADE; ErrorPayloadType m_errorPayloadType = ErrorPayloadType::NOT_SET; Aws::Utils::Xml::XmlDocument m_xmlPayload; Aws::Utils::Json::JsonValue m_jsonPayload; RetryableType m_retryableType; }; template Aws::OStream& operator << (Aws::OStream& s, const AWSError& e) { s << "HTTP response code: " << static_cast(e.GetResponseCode()) << "\n" << "Resolved remote host IP address: " << e.GetRemoteHostIpAddress() << "\n" << "Request ID: " << e.GetRequestId() << "\n" << "Exception name: " << e.GetExceptionName() << "\n" << "Error message: " << e.GetMessage() << "\n" << e.GetResponseHeaders().size() << " response headers:"; for (auto&& header : e.GetResponseHeaders()) { s << "\n" << header.first << " : " << header.second; } return s; } } // namespace Client } // namespace Aws