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. # # helper function that that gives primitive map functionality by treating a colon as the key-value separator, while the list semi-colon separates pairs # to use, pass the list-map in as a third parameter (see helper functions below) function(get_map_element KEY VALUE_VAR) foreach(ELEMENT_PAIR ${ARGN}) STRING(REGEX REPLACE "([^:]+):.*" "\\1" KEY_RESULT ${ELEMENT_PAIR}) if(${KEY_RESULT} STREQUAL ${KEY} ) STRING(REGEX REPLACE "[^:]+:(.*)" "\\1" VALUE_RESULT ${ELEMENT_PAIR}) set(${VALUE_VAR} "${VALUE_RESULT}" PARENT_SCOPE) return() endif() endforeach() set(${VALUE_VAR} "" PARENT_SCOPE) endfunction(get_map_element) function(get_multimap_element KEY VALUE_VAR) set(${VALUE_VAR} "" PARENT_SCOPE) set(RETURN_LIST "") foreach(ELEMENT_PAIR ${ARGN}) STRING(REGEX REPLACE "([^:]+):.*" "\\1" KEY_RESULT ${ELEMENT_PAIR}) if(${KEY_RESULT} STREQUAL ${KEY} ) STRING(REGEX REPLACE "[^:]+:(.*)" "\\1" VALUE_RESULT ${ELEMENT_PAIR}) list(APPEND RETURN_LIST "${VALUE_RESULT}") endif() endforeach() set(${VALUE_VAR} "${RETURN_LIST}" PARENT_SCOPE) endfunction(get_multimap_element) # a bunch of key-value retrieval functions for the list-maps we defined above function(get_c2j_date_for_service SERVICE_NAME C2J_DATE_VAR) get_map_element(${SERVICE_NAME} TEMP_VAR ${C2J_LIST}) set(${C2J_DATE_VAR} "${TEMP_VAR}" PARENT_SCOPE) endfunction() function(get_c2j_name_for_service SERVICE_NAME C2J_NAME_VAR) get_map_element(${SERVICE_NAME} TEMP_VAR ${C2J_SPECIAL_NAME_LIST}) if(TEMP_VAR) set(${C2J_NAME_VAR} "${TEMP_VAR}" PARENT_SCOPE) else() set(${C2J_NAME_VAR} "${SERVICE_NAME}" PARENT_SCOPE) endif() endfunction() function(get_test_projects_for_service SERVICE_NAME TEST_PROJECT_NAME_VAR) get_multimap_element(${SERVICE_NAME} TEMP_VAR ${SDK_TEST_PROJECT_LIST}) set(${TEST_PROJECT_NAME_VAR} "${TEMP_VAR}" PARENT_SCOPE) endfunction() function(get_dependencies_for_sdk PROJECT_NAME DEPENDENCY_LIST_VAR) get_map_element(${PROJECT_NAME} TEMP_VAR ${SDK_DEPENDENCY_LIST}) # "core" is the default dependency for every sdk. # Since we removed the hand-written C2J_LIST and instead auto generating it based on models, # and location of models may not exist or incorrect when SDK is installed and then source has been deleted by customers. # we end up getting an incomplete C2J_LIST when customers call find_package(AWSSDK). But C2J_LIST is only used in customers code for dependencies completing. set(${DEPENDENCY_LIST_VAR} "${TEMP_VAR},core" PARENT_SCOPE) endfunction() function(get_dependencies_for_test TEST_NAME DEPENDENCY_LIST_VAR) get_map_element(${TEST_NAME} TEMP_VAR ${TEST_DEPENDENCY_LIST}) set(${DEPENDENCY_LIST_VAR} "${TEMP_VAR}" PARENT_SCOPE) endfunction() # returns all sdks, including itself, that depend on the supplied sdk # this is kind of a reverse function of get_dependencies_for_sdk function(get_sdks_depending_on SDK_NAME DEPENDING_SDKS_VAR) set(TEMP_SDK_LIST "${SDK_NAME}") foreach(SDK_DEP ${SDK_DEPENDENCY_LIST}) STRING(REGEX REPLACE "([^:]+):.*" "\\1" KEY_RESULT ${SDK_DEP}) STRING(REGEX REPLACE "[^:]+:(.*)" "\\1" VALUE_RESULT ${SDK_DEP}) STRING(REPLACE "," ";" LIST_RESULT ${VALUE_RESULT}) list(FIND LIST_RESULT ${SDK_NAME} FIND_INDEX) if(FIND_INDEX GREATER -1) list(APPEND TEMP_SDK_LIST ${KEY_RESULT}) endif() endforeach() set(${DEPENDING_SDKS_VAR} "${TEMP_SDK_LIST}" PARENT_SCOPE) endfunction() # function that automatically picks up models from /code-generation/api-descriptions/ directory and build # C2J_LIST needed for generation, services have multiple models will use the latest model (decided by model files' date) # services have the name format abc.def.ghi will be renamed to ghi-def-abc (dot will not be accepted as Windows directory name ) # and put into C2J_SPECIAL_NAME_LIST, but rumtime.lex will be renamed to lex based on historical reason. function(build_sdk_list) file(GLOB ALL_MODEL_FILES "${CMAKE_CURRENT_SOURCE_DIR}/tools/code-generation/api-descriptions/*-[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9].normal.json") foreach(model IN LISTS ALL_MODEL_FILES) get_filename_component(modelName "${model}" NAME) STRING(REGEX MATCH "([0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9])" date "${modelName}") STRING(REGEX REPLACE "-[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9].normal.json" "" svc "${modelName}") #special svc name conversion, e.g: runtime.lex->lex; abc.def.ghi->ghi-def-abc if ("${svc}" STREQUAL "runtime.lex") LIST(APPEND C2J_SPECIAL_NAME_LIST "lex:runtime.lex") set(svc "lex") elseif("${svc}" STREQUAL "runtime.lex.v2") LIST(APPEND C2J_SPECIAL_NAME_LIST "lexv2-runtime:runtime.lex.v2") set(svc "lexv2-runtime") elseif("${svc}" STREQUAL "models.lex.v2") LIST(APPEND C2J_SPECIAL_NAME_LIST "lexv2-models:models.lex.v2") set(svc "lexv2-models") elseif ("${svc}" STREQUAL "transfer") LIST(APPEND C2J_SPECIAL_NAME_LIST "awstransfer:transfer") set(svc "awstransfer") elseif ("${svc}" STREQUAL "transcribe-streaming") LIST(APPEND C2J_SPECIAL_NAME_LIST "transcribestreaming:transcribe-streaming") set(svc "transcribestreaming") elseif ("${svc}" STREQUAL "streams.dynamodb") LIST(APPEND C2J_SPECIAL_NAME_LIST "dynamodbstreams:streams.dynamodb") set (svc "dynamodbstreams") elseif("${svc}" MATCHES "\\.") string(REPLACE "." ";" nameParts ${svc}) LIST(REVERSE nameParts) string(REPLACE ";" "-" tmpSvc "${nameParts}") LIST(APPEND C2J_SPECIAL_NAME_LIST "${tmpSvc}:${svc}") set(svc "${tmpSvc}") elseif("${svc}" STREQUAL "ec2") if(PLATFORM_ANDROID AND CMAKE_HOST_WIN32) # ec2 isn't building for android on windows atm due to an internal compiler error, TODO: investigate further continue() endif() elseif("${svc}" STREQUAL "s3") LIST(APPEND C2J_SPECIAL_NAME_LIST "s3-crt:s3") message(STATUS "Add s3-crt:s3 to C2J_SPECIAL_NAME_LIST") endif() get_map_element(${svc} existingDate ${C2J_LIST}) if ("${existingDate}" STREQUAL "") LIST(APPEND C2J_LIST "${svc}:${date}") if ("${svc}" STREQUAL "s3") LIST(APPEND C2J_LIST "s3-crt:${date}") endif() elseif(${existingDate} STRLESS ${date}) LIST(REMOVE_ITEM C2J_LIST "${svc}:${existingDate}") LIST(APPEND C2J_LIST "${svc}:${date}") if ("${svc}" STREQUAL "s3") LIST(REMOVE_ITEM C2J_LIST "s3-crt:${existingDate}") LIST(APPEND C2J_LIST "s3-crt:${date}") endif() endif() endforeach() set(C2J_LIST "${C2J_LIST}" PARENT_SCOPE) set(C2J_SPECIAL_NAME_LIST "${C2J_SPECIAL_NAME_LIST}" PARENT_SCOPE) endfunction() set(HIGH_LEVEL_SDK_LIST "") list(APPEND HIGH_LEVEL_SDK_LIST "access-management") list(APPEND HIGH_LEVEL_SDK_LIST "identity-management") list(APPEND HIGH_LEVEL_SDK_LIST "queues") list(APPEND HIGH_LEVEL_SDK_LIST "transfer") list(APPEND HIGH_LEVEL_SDK_LIST "s3-encryption") list(APPEND HIGH_LEVEL_SDK_LIST "text-to-speech") set(SDK_TEST_PROJECT_LIST "") list(APPEND SDK_TEST_PROJECT_LIST "cloudfront:tests/aws-cpp-sdk-cloudfront-integration-tests") list(APPEND SDK_TEST_PROJECT_LIST "cognito-identity:tests/aws-cpp-sdk-cognitoidentity-integration-tests") list(APPEND SDK_TEST_PROJECT_LIST "core:tests/aws-cpp-sdk-core-tests") list(APPEND SDK_TEST_PROJECT_LIST "dynamodb:tests/aws-cpp-sdk-dynamodb-integration-tests") list(APPEND SDK_TEST_PROJECT_LIST "dynamodb:tests/aws-cpp-sdk-dynamodb-unit-tests") list(APPEND SDK_TEST_PROJECT_LIST "ec2:tests/aws-cpp-sdk-ec2-integration-tests") list(APPEND SDK_TEST_PROJECT_LIST "elasticfilesystem:tests/aws-cpp-sdk-elasticfilesystem-integration-tests") list(APPEND SDK_TEST_PROJECT_LIST "identity-management:tests/aws-cpp-sdk-identity-management-tests") list(APPEND SDK_TEST_PROJECT_LIST "kinesis:tests/aws-cpp-sdk-kinesis-integration-tests") list(APPEND SDK_TEST_PROJECT_LIST "lambda:tests/aws-cpp-sdk-lambda-integration-tests") list(APPEND SDK_TEST_PROJECT_LIST "logs:tests/aws-cpp-sdk-logs-integration-tests") list(APPEND SDK_TEST_PROJECT_LIST "mediastore-data:tests/aws-cpp-sdk-mediastore-data-integration-tests") list(APPEND SDK_TEST_PROJECT_LIST "monitoring:tests/aws-cpp-sdk-monitoring-integration-tests") list(APPEND SDK_TEST_PROJECT_LIST "rds:tests/aws-cpp-sdk-rds-integration-tests") list(APPEND SDK_TEST_PROJECT_LIST "redshift:tests/aws-cpp-sdk-redshift-integration-tests") list(APPEND SDK_TEST_PROJECT_LIST "s3:tests/aws-cpp-sdk-s3-integration-tests") list(APPEND SDK_TEST_PROJECT_LIST "s3:tests/aws-cpp-sdk-s3-unit-tests") list(APPEND SDK_TEST_PROJECT_LIST "s3-crt:tests/aws-cpp-sdk-s3-crt-integration-tests") list(APPEND SDK_TEST_PROJECT_LIST "s3-encryption:tests/aws-cpp-sdk-s3-encryption-tests,tests/aws-cpp-sdk-s3-encryption-integration-tests") list(APPEND SDK_TEST_PROJECT_LIST "s3control:tests/aws-cpp-sdk-s3control-integration-tests") list(APPEND SDK_TEST_PROJECT_LIST "sqs:tests/aws-cpp-sdk-sqs-integration-tests") list(APPEND SDK_TEST_PROJECT_LIST "transfer:tests/aws-cpp-sdk-transfer-tests") list(APPEND SDK_TEST_PROJECT_LIST "text-to-speech:tests/aws-cpp-sdk-text-to-speech-tests,tests/aws-cpp-sdk-polly-sample") list(APPEND SDK_TEST_PROJECT_LIST "transcribestreaming:tests/aws-cpp-sdk-transcribestreaming-integ-tests") list(APPEND SDK_TEST_PROJECT_LIST "eventbridge:tests/aws-cpp-sdk-eventbridge-tests") list(APPEND SDK_TEST_PROJECT_LIST "timestream-query:tests/aws-cpp-sdk-timestream-query-integration-tests") list(APPEND SDK_TEST_PROJECT_LIST "dsql:tests/aws-cpp-sdk-dsql-unit-tests") build_sdk_list() if(EXISTS "${CMAKE_SOURCE_DIR}/generated") if(EXISTS "${CMAKE_SOURCE_DIR}/generated/tests") foreach(GENERATED_C2J_TEST IN LISTS C2J_LIST) STRING(REGEX REPLACE "([^:]+):.*" "\\1" GENERATED_C2J_TEST_RESULT ${GENERATED_C2J_TEST}) if(EXISTS "${CMAKE_SOURCE_DIR}/generated/tests/${GENERATED_C2J_TEST_RESULT}-gen-tests") list(APPEND SDK_TEST_PROJECT_LIST "${GENERATED_C2J_TEST_RESULT}:generated/tests/${GENERATED_C2J_TEST_RESULT}-gen-tests") endif() endforeach() endif() endif() set(SDK_DEPENDENCY_LIST "") list(APPEND SDK_DEPENDENCY_LIST "access-management:iam,cognito-identity,core") list(APPEND SDK_DEPENDENCY_LIST "identity-management:cognito-identity,sts,core") list(APPEND SDK_DEPENDENCY_LIST "queues:sqs,core") list(APPEND SDK_DEPENDENCY_LIST "s3-encryption:s3,kms,core") list(APPEND SDK_DEPENDENCY_LIST "text-to-speech:polly,core") list(APPEND SDK_DEPENDENCY_LIST "transfer:s3,core") set(TEST_DEPENDENCY_LIST "") list(APPEND TEST_DEPENDENCY_LIST "cognito-identity:access-management,iam,core") list(APPEND TEST_DEPENDENCY_LIST "identity-management:cognito-identity,sts,core") list(APPEND TEST_DEPENDENCY_LIST "lambda:access-management,cognito-identity,iam,kinesis,core") list(APPEND TEST_DEPENDENCY_LIST "s3-encryption:s3,kms,core") list(APPEND TEST_DEPENDENCY_LIST "s3control:s3,access-management,cognito-identity,iam,core") list(APPEND TEST_DEPENDENCY_LIST "sqs:access-management,cognito-identity,iam,core") list(APPEND TEST_DEPENDENCY_LIST "text-to-speech:polly,core") list(APPEND TEST_DEPENDENCY_LIST "transfer:s3,core") list(APPEND TEST_DEPENDENCY_LIST "logs:access-management,cognito-identity,iam,core") # make a list of the generated clients set(GENERATED_SERVICE_LIST "") foreach(GENERATED_C2J_SERVICE IN LISTS C2J_LIST) STRING(REGEX REPLACE "([^:]+):.*" "\\1" SERVICE_RESULT ${GENERATED_C2J_SERVICE}) list(APPEND GENERATED_SERVICE_LIST ${SERVICE_RESULT}) list(APPEND SDK_DEPENDENCY_LIST "${SERVICE_RESULT}:core") endforeach()